2012-01-24 14:02:24 +01:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2012-01-24 14:02:24 +01:00
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
#include "nghttp2_session.h"
|
2012-01-24 14:02:24 +01:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
#include "nghttp2_helper.h"
|
|
|
|
#include "nghttp2_net.h"
|
2014-03-25 18:04:24 +01:00
|
|
|
#include "nghttp2_priority_spec.h"
|
2014-04-04 14:57:47 +02:00
|
|
|
#include "nghttp2_option.h"
|
2012-01-24 14:02:24 +01:00
|
|
|
|
2012-02-08 15:45:48 +01:00
|
|
|
/*
|
2012-05-07 17:59:26 +02:00
|
|
|
* Returns non-zero if the number of outgoing opened streams is larger
|
|
|
|
* than or equal to
|
2014-06-10 14:29:19 +02:00
|
|
|
* remote_settings.max_concurrent_streams.
|
2012-02-08 15:45:48 +01:00
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_is_outgoing_concurrent_streams_max
|
2013-07-12 17:19:03 +02:00
|
|
|
(nghttp2_session *session)
|
2012-02-08 15:45:48 +01:00
|
|
|
{
|
2014-06-10 14:29:19 +02:00
|
|
|
return session->remote_settings.max_concurrent_streams
|
2012-05-07 17:59:26 +02:00
|
|
|
<= session->num_outgoing_streams;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns non-zero if the number of incoming opened streams is larger
|
|
|
|
* than or equal to
|
2014-06-10 14:29:19 +02:00
|
|
|
* local_settings.max_concurrent_streams.
|
2012-05-07 17:59:26 +02:00
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_is_incoming_concurrent_streams_max
|
2013-07-12 17:19:03 +02:00
|
|
|
(nghttp2_session *session)
|
2012-05-07 17:59:26 +02:00
|
|
|
{
|
2014-06-10 14:29:19 +02:00
|
|
|
return session->local_settings.max_concurrent_streams
|
2012-05-07 17:59:26 +02:00
|
|
|
<= session->num_incoming_streams;
|
2012-02-08 15:45:48 +01:00
|
|
|
}
|
|
|
|
|
2014-02-20 14:59:29 +01:00
|
|
|
/*
|
|
|
|
* Returns non-zero if the number of incoming opened streams is larger
|
|
|
|
* than or equal to
|
|
|
|
* session->pending_local_max_concurrent_stream.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_is_incoming_concurrent_streams_pending_max
|
2014-02-20 14:59:29 +01:00
|
|
|
(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
return session->pending_local_max_concurrent_stream
|
|
|
|
<= session->num_incoming_streams;
|
|
|
|
}
|
|
|
|
|
2012-03-07 16:18:18 +01:00
|
|
|
/*
|
2014-01-18 08:25:44 +01:00
|
|
|
* Returns non-zero if |lib_error| is non-fatal error.
|
2012-03-07 16:18:18 +01:00
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int is_non_fatal(int lib_error)
|
2012-03-07 16:18:18 +01:00
|
|
|
{
|
2014-01-18 08:25:44 +01:00
|
|
|
return lib_error < 0 && lib_error > NGHTTP2_ERR_FATAL;
|
2012-03-07 16:18:18 +01:00
|
|
|
}
|
|
|
|
|
2014-01-18 08:24:44 +01:00
|
|
|
int nghttp2_is_fatal(int lib_error)
|
2012-03-07 16:40:17 +01:00
|
|
|
{
|
2014-01-18 08:24:44 +01:00
|
|
|
return lib_error < NGHTTP2_ERR_FATAL;
|
2012-03-07 16:40:17 +01:00
|
|
|
}
|
|
|
|
|
2014-01-09 14:06:38 +01:00
|
|
|
/* Returns nonzero if the |stream| is in reserved(remote) state */
|
|
|
|
static int state_reserved_remote(nghttp2_session *session,
|
|
|
|
nghttp2_stream *stream)
|
|
|
|
{
|
|
|
|
return stream->state == NGHTTP2_STREAM_RESERVED &&
|
|
|
|
!nghttp2_session_is_my_stream_id(session, stream->stream_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns nonzero if the |stream| is in reserved(local) state */
|
|
|
|
static int state_reserved_local(nghttp2_session *session,
|
|
|
|
nghttp2_stream *stream)
|
|
|
|
{
|
|
|
|
return stream->state == NGHTTP2_STREAM_RESERVED &&
|
|
|
|
nghttp2_session_is_my_stream_id(session, stream->stream_id);
|
|
|
|
}
|
|
|
|
|
2014-06-07 11:36:58 +02:00
|
|
|
/*
|
|
|
|
* Checks whether received stream_id is valid.
|
|
|
|
* This function returns 1 if it succeeds, or 0.
|
|
|
|
*/
|
|
|
|
static int session_is_new_peer_stream_id(nghttp2_session *session,
|
|
|
|
int32_t stream_id)
|
|
|
|
{
|
|
|
|
if(stream_id == 0 || session->last_recv_stream_id >= stream_id) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(session->server) {
|
|
|
|
return stream_id % 2 == 1;
|
|
|
|
} else {
|
|
|
|
return stream_id % 2 == 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int session_detect_idle_stream(nghttp2_session *session,
|
|
|
|
int32_t stream_id)
|
|
|
|
{
|
|
|
|
/* Assume that stream object with stream_id does not exist */
|
|
|
|
if(nghttp2_session_is_my_stream_id(session, stream_id)) {
|
|
|
|
if(session->next_stream_id <= (uint32_t)stream_id) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(session_is_new_peer_stream_id(session, stream_id)) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-12-25 16:23:07 +01:00
|
|
|
int nghttp2_session_terminate_session(nghttp2_session *session,
|
|
|
|
nghttp2_error_code error_code)
|
2012-03-11 11:27:33 +01:00
|
|
|
{
|
2013-08-27 19:13:57 +02:00
|
|
|
if(session->goaway_flags & NGHTTP2_GOAWAY_FAIL_ON_SEND) {
|
|
|
|
return 0;
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
session->goaway_flags |= NGHTTP2_GOAWAY_FAIL_ON_SEND;
|
2013-08-27 19:13:57 +02:00
|
|
|
if(session->goaway_flags & NGHTTP2_GOAWAY_SEND) {
|
|
|
|
return 0;
|
|
|
|
}
|
2013-10-25 15:50:24 +02:00
|
|
|
return nghttp2_submit_goaway(session, NGHTTP2_FLAG_NONE, error_code,
|
|
|
|
NULL, 0);
|
2012-03-11 11:27:33 +01:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_is_my_stream_id(nghttp2_session *session,
|
2012-02-02 15:19:01 +01:00
|
|
|
int32_t stream_id)
|
2012-01-26 17:17:40 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
int rem;
|
2012-01-26 17:17:40 +01:00
|
|
|
if(stream_id == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-02-18 16:45:20 +01:00
|
|
|
rem = stream_id & 0x1;
|
|
|
|
if(session->server) {
|
|
|
|
return rem == 0;
|
|
|
|
}
|
|
|
|
return rem == 1;
|
2012-01-26 17:17:40 +01:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream* nghttp2_session_get_stream(nghttp2_session *session,
|
2012-01-25 17:04:01 +01:00
|
|
|
int32_t stream_id)
|
2014-03-30 10:41:54 +02:00
|
|
|
{
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
|
|
|
|
stream = (nghttp2_stream*)nghttp2_map_find(&session->streams, stream_id);
|
|
|
|
|
|
|
|
if(stream == NULL || (stream->flags & NGHTTP2_STREAM_FLAG_CLOSED)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
nghttp2_stream* nghttp2_session_get_stream_raw(nghttp2_session *session,
|
|
|
|
int32_t stream_id)
|
2012-01-25 15:46:07 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
return (nghttp2_stream*)nghttp2_map_find(&session->streams, stream_id);
|
2012-01-25 15:46:07 +01:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
static int outbound_item_compar(const void *lhsx, const void *rhsx)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
const nghttp2_outbound_item *lhs, *rhs;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
lhs = (const nghttp2_outbound_item*)lhsx;
|
|
|
|
rhs = (const nghttp2_outbound_item*)rhsx;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-05-08 16:07:29 +02:00
|
|
|
if(lhs->cycle == rhs->cycle) {
|
|
|
|
if(lhs->weight == rhs->weight) {
|
|
|
|
return (lhs->seq < rhs->seq) ? -1 : ((lhs->seq > rhs->seq) ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Larger weight has higher precedence */
|
|
|
|
return rhs->weight - lhs->weight;
|
2012-01-31 14:48:09 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-05-08 16:07:29 +02:00
|
|
|
return (lhs->cycle < rhs->cycle) ? -1 : 1;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
static void session_inbound_frame_reset(nghttp2_session *session)
|
2012-03-17 15:39:38 +01:00
|
|
|
{
|
2013-09-28 10:59:24 +02:00
|
|
|
nghttp2_inbound_frame *iframe = &session->iframe;
|
2014-01-22 16:28:23 +01:00
|
|
|
/* A bit risky code, since if this function is called from
|
|
|
|
nghttp2_session_new(), we rely on the fact that
|
|
|
|
iframe->frame.hd.type is 0, so that no free is performed. */
|
|
|
|
switch(iframe->frame.hd.type) {
|
|
|
|
case NGHTTP2_HEADERS:
|
|
|
|
nghttp2_frame_headers_free(&iframe->frame.headers);
|
|
|
|
break;
|
|
|
|
case NGHTTP2_PRIORITY:
|
|
|
|
nghttp2_frame_priority_free(&iframe->frame.priority);
|
|
|
|
break;
|
|
|
|
case NGHTTP2_RST_STREAM:
|
|
|
|
nghttp2_frame_rst_stream_free(&iframe->frame.rst_stream);
|
|
|
|
break;
|
|
|
|
case NGHTTP2_SETTINGS:
|
|
|
|
nghttp2_frame_settings_free(&iframe->frame.settings);
|
|
|
|
break;
|
|
|
|
case NGHTTP2_PUSH_PROMISE:
|
|
|
|
nghttp2_frame_push_promise_free(&iframe->frame.push_promise);
|
|
|
|
break;
|
|
|
|
case NGHTTP2_PING:
|
|
|
|
nghttp2_frame_ping_free(&iframe->frame.ping);
|
|
|
|
break;
|
|
|
|
case NGHTTP2_GOAWAY:
|
|
|
|
nghttp2_frame_goaway_free(&iframe->frame.goaway);
|
|
|
|
break;
|
|
|
|
case NGHTTP2_WINDOW_UPDATE:
|
|
|
|
nghttp2_frame_window_update_free(&iframe->frame.window_update);
|
|
|
|
break;
|
2014-06-09 16:16:54 +02:00
|
|
|
case NGHTTP2_EXT_ALTSVC:
|
|
|
|
nghttp2_frame_altsvc_free(&iframe->frame.ext);
|
2014-04-01 14:47:51 +02:00
|
|
|
break;
|
2014-06-09 16:16:54 +02:00
|
|
|
case NGHTTP2_EXT_BLOCKED:
|
|
|
|
nghttp2_frame_blocked_free(&iframe->frame.ext);
|
2014-04-24 17:35:48 +02:00
|
|
|
break;
|
2013-09-28 10:59:24 +02:00
|
|
|
}
|
2014-06-09 16:16:54 +02:00
|
|
|
|
2014-01-23 13:25:49 +01:00
|
|
|
memset(&iframe->frame, 0, sizeof(nghttp2_frame));
|
2014-06-09 16:16:54 +02:00
|
|
|
memset(&iframe->ext_frame_payload, 0, sizeof(nghttp2_ext_frame_payload));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_HEAD;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
|
|
|
nghttp2_buf_wrap_init(&iframe->sbuf, iframe->raw_sbuf,
|
|
|
|
sizeof(iframe->raw_sbuf));
|
|
|
|
iframe->sbuf.mark += NGHTTP2_FRAME_HDLEN;
|
|
|
|
|
|
|
|
nghttp2_buf_free(&iframe->lbuf);
|
|
|
|
nghttp2_buf_wrap_init(&iframe->lbuf, NULL, 0);
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->niv = 0;
|
|
|
|
iframe->payloadleft = 0;
|
2014-02-08 16:35:21 +01:00
|
|
|
iframe->padlen = 0;
|
2012-05-25 03:46:40 +02:00
|
|
|
}
|
|
|
|
|
2014-06-10 14:29:19 +02:00
|
|
|
static void init_settings(nghttp2_settings_storage *settings)
|
2013-11-02 08:23:56 +01:00
|
|
|
{
|
2014-06-10 14:29:19 +02:00
|
|
|
settings->header_table_size = NGHTTP2_HD_DEFAULT_MAX_BUFFER_SIZE;
|
|
|
|
settings->enable_push = 1;
|
|
|
|
settings->max_concurrent_streams = NGHTTP2_INITIAL_MAX_CONCURRENT_STREAMS;
|
|
|
|
settings->initial_window_size = NGHTTP2_INITIAL_WINDOW_SIZE;
|
2013-11-02 08:23:56 +01:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
static void active_outbound_item_reset(nghttp2_active_outbound_item *aob)
|
2014-02-18 15:23:11 +01:00
|
|
|
{
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "send: reset nghttp2_active_outbound_item\n"));
|
|
|
|
DEBUGF(fprintf(stderr, "send: aob->item = %p\n", aob->item));
|
2014-02-18 15:23:11 +01:00
|
|
|
nghttp2_outbound_item_free(aob->item);
|
|
|
|
free(aob->item);
|
|
|
|
aob->item = NULL;
|
2014-03-13 14:11:02 +01:00
|
|
|
nghttp2_bufs_reset(&aob->framebufs);
|
2014-02-18 15:23:11 +01:00
|
|
|
aob->state = NGHTTP2_OB_POP_ITEM;
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_new(nghttp2_session **session_ptr,
|
|
|
|
const nghttp2_session_callbacks *callbacks,
|
|
|
|
void *user_data,
|
|
|
|
int server,
|
|
|
|
const nghttp2_option *option)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2014-02-13 15:22:52 +01:00
|
|
|
|
2014-03-13 15:21:04 +01:00
|
|
|
*session_ptr = calloc(1, sizeof(nghttp2_session));
|
2012-01-24 14:02:24 +01:00
|
|
|
if(*session_ptr == NULL) {
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = NGHTTP2_ERR_NOMEM;
|
2012-02-16 14:47:49 +01:00
|
|
|
goto fail_session;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2012-01-27 15:05:29 +01:00
|
|
|
|
2013-11-28 15:26:34 +01:00
|
|
|
/* next_stream_id is initialized in either
|
|
|
|
nghttp2_session_client_new2 or nghttp2_session_server_new2 */
|
2012-01-24 14:02:24 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = nghttp2_pq_init(&(*session_ptr)->ob_pq, outbound_item_compar);
|
2014-03-02 08:32:07 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
goto fail_ob_pq;
|
|
|
|
}
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = nghttp2_pq_init(&(*session_ptr)->ob_ss_pq, outbound_item_compar);
|
2014-03-02 08:32:07 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
goto fail_ob_ss_pq;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = nghttp2_hd_deflate_init(&(*session_ptr)->hd_deflater);
|
|
|
|
if(rv != 0) {
|
|
|
|
goto fail_hd_deflater;
|
|
|
|
}
|
|
|
|
rv = nghttp2_hd_inflate_init(&(*session_ptr)->hd_inflater);
|
|
|
|
if(rv != 0) {
|
|
|
|
goto fail_hd_inflater;
|
|
|
|
}
|
|
|
|
rv = nghttp2_map_init(&(*session_ptr)->streams);
|
|
|
|
if(rv != 0) {
|
|
|
|
goto fail_map;
|
|
|
|
}
|
|
|
|
|
2014-04-17 14:15:14 +02:00
|
|
|
nghttp2_stream_roots_init(&(*session_ptr)->roots);
|
|
|
|
|
2012-01-31 14:48:09 +01:00
|
|
|
(*session_ptr)->next_seq = 0;
|
2014-05-08 16:07:29 +02:00
|
|
|
(*session_ptr)->last_cycle = 1;
|
2012-01-31 14:48:09 +01:00
|
|
|
|
2013-08-08 18:31:15 +02:00
|
|
|
(*session_ptr)->remote_window_size = NGHTTP2_INITIAL_CONNECTION_WINDOW_SIZE;
|
2013-07-15 14:45:59 +02:00
|
|
|
(*session_ptr)->recv_window_size = 0;
|
2013-10-12 10:02:37 +02:00
|
|
|
(*session_ptr)->recv_reduction = 0;
|
2013-08-08 17:58:52 +02:00
|
|
|
(*session_ptr)->local_window_size = NGHTTP2_INITIAL_CONNECTION_WINDOW_SIZE;
|
2013-07-15 14:45:59 +02:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
(*session_ptr)->goaway_flags = NGHTTP2_GOAWAY_NONE;
|
2013-07-15 14:45:59 +02:00
|
|
|
(*session_ptr)->last_stream_id = 0;
|
2012-01-28 11:22:38 +01:00
|
|
|
|
2013-10-27 11:22:51 +01:00
|
|
|
(*session_ptr)->inflight_niv = -1;
|
|
|
|
|
2014-02-20 14:59:29 +01:00
|
|
|
(*session_ptr)->pending_local_max_concurrent_stream =
|
|
|
|
NGHTTP2_INITIAL_MAX_CONCURRENT_STREAMS;
|
|
|
|
|
2013-10-20 17:44:39 +02:00
|
|
|
if(server) {
|
|
|
|
(*session_ptr)->server = 1;
|
|
|
|
}
|
2012-02-05 16:14:19 +01:00
|
|
|
|
2014-06-07 11:15:36 +02:00
|
|
|
/* 1 for Pad Field. */
|
2014-03-16 07:58:21 +01:00
|
|
|
rv = nghttp2_bufs_init3(&(*session_ptr)->aob.framebufs,
|
2014-04-02 13:33:01 +02:00
|
|
|
NGHTTP2_FRAMEBUF_CHUNKLEN, 8, 1,
|
2014-06-07 11:15:36 +02:00
|
|
|
NGHTTP2_FRAME_HDLEN + 1);
|
2014-03-10 17:47:38 +01:00
|
|
|
if(rv != 0) {
|
2012-02-16 14:47:49 +01:00
|
|
|
goto fail_aob_framebuf;
|
2012-02-16 12:54:30 +01:00
|
|
|
}
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
active_outbound_item_reset(&(*session_ptr)->aob);
|
2012-02-16 12:54:30 +01:00
|
|
|
|
2014-06-10 14:29:19 +02:00
|
|
|
init_settings(&(*session_ptr)->remote_settings);
|
|
|
|
init_settings(&(*session_ptr)->local_settings);
|
2012-02-25 16:12:32 +01:00
|
|
|
|
2014-04-04 14:57:47 +02:00
|
|
|
|
|
|
|
if(option) {
|
|
|
|
if((option->opt_set_mask & NGHTTP2_OPT_NO_AUTO_STREAM_WINDOW_UPDATE) &&
|
|
|
|
option->no_auto_stream_window_update) {
|
|
|
|
|
|
|
|
(*session_ptr)->opt_flags |=
|
|
|
|
NGHTTP2_OPTMASK_NO_AUTO_STREAM_WINDOW_UPDATE;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if((option->opt_set_mask & NGHTTP2_OPT_NO_AUTO_CONNECTION_WINDOW_UPDATE) &&
|
|
|
|
option->no_auto_connection_window_update) {
|
|
|
|
|
|
|
|
(*session_ptr)->opt_flags |=
|
|
|
|
NGHTTP2_OPTMASK_NO_AUTO_CONNECTION_WINDOW_UPDATE;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if(option->opt_set_mask & NGHTTP2_OPT_PEER_MAX_CONCURRENT_STREAMS) {
|
|
|
|
|
2014-06-10 14:29:19 +02:00
|
|
|
(*session_ptr)->remote_settings.max_concurrent_streams =
|
2014-04-04 14:57:47 +02:00
|
|
|
option->peer_max_concurrent_streams;
|
|
|
|
|
|
|
|
}
|
2013-11-07 16:12:39 +01:00
|
|
|
}
|
|
|
|
|
2012-01-24 14:02:24 +01:00
|
|
|
(*session_ptr)->callbacks = *callbacks;
|
|
|
|
(*session_ptr)->user_data = user_data;
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
session_inbound_frame_reset(*session_ptr);
|
2012-02-16 15:09:06 +01:00
|
|
|
|
2012-01-24 14:02:24 +01:00
|
|
|
return 0;
|
2012-02-16 14:47:49 +01:00
|
|
|
|
|
|
|
fail_aob_framebuf:
|
2013-12-04 16:41:42 +01:00
|
|
|
nghttp2_map_free(&(*session_ptr)->streams);
|
|
|
|
fail_map:
|
2013-07-19 17:08:14 +02:00
|
|
|
nghttp2_hd_inflate_free(&(*session_ptr)->hd_inflater);
|
2012-02-16 14:47:49 +01:00
|
|
|
fail_hd_inflater:
|
2013-07-19 17:08:14 +02:00
|
|
|
nghttp2_hd_deflate_free(&(*session_ptr)->hd_deflater);
|
2012-02-16 14:47:49 +01:00
|
|
|
fail_hd_deflater:
|
2014-03-02 08:32:07 +01:00
|
|
|
nghttp2_pq_free(&(*session_ptr)->ob_ss_pq);
|
|
|
|
fail_ob_ss_pq:
|
|
|
|
nghttp2_pq_free(&(*session_ptr)->ob_pq);
|
|
|
|
fail_ob_pq:
|
2012-02-16 14:47:49 +01:00
|
|
|
free(*session_ptr);
|
|
|
|
fail_session:
|
2014-02-18 16:45:20 +01:00
|
|
|
return rv;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_client_new(nghttp2_session **session_ptr,
|
|
|
|
const nghttp2_session_callbacks *callbacks,
|
2012-02-01 16:19:31 +01:00
|
|
|
void *user_data)
|
2013-11-07 16:12:39 +01:00
|
|
|
{
|
2014-04-04 14:57:47 +02:00
|
|
|
return nghttp2_session_client_new2(session_ptr, callbacks, user_data, NULL);
|
2013-11-07 16:12:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int nghttp2_session_client_new2(nghttp2_session **session_ptr,
|
|
|
|
const nghttp2_session_callbacks *callbacks,
|
|
|
|
void *user_data,
|
2014-04-04 14:57:47 +02:00
|
|
|
const nghttp2_option *option)
|
2012-02-01 16:19:31 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2014-06-07 11:51:20 +02:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_new(session_ptr, callbacks, user_data, 0, option);
|
2014-04-04 14:57:47 +02:00
|
|
|
|
2014-02-18 16:45:20 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2012-02-01 16:19:31 +01:00
|
|
|
}
|
2014-02-18 16:45:20 +01:00
|
|
|
/* IDs for use in client */
|
|
|
|
(*session_ptr)->next_stream_id = 1;
|
|
|
|
return 0;
|
2012-02-01 16:19:31 +01:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_server_new(nghttp2_session **session_ptr,
|
|
|
|
const nghttp2_session_callbacks *callbacks,
|
2012-02-01 16:19:31 +01:00
|
|
|
void *user_data)
|
2013-11-07 16:12:39 +01:00
|
|
|
{
|
2014-04-04 14:57:47 +02:00
|
|
|
return nghttp2_session_server_new2(session_ptr, callbacks, user_data, NULL);
|
2013-11-07 16:12:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int nghttp2_session_server_new2(nghttp2_session **session_ptr,
|
|
|
|
const nghttp2_session_callbacks *callbacks,
|
|
|
|
void *user_data,
|
2014-04-04 14:57:47 +02:00
|
|
|
const nghttp2_option *option)
|
2012-02-01 16:19:31 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2014-06-07 11:51:20 +02:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_new(session_ptr, callbacks, user_data, 1, option);
|
2014-04-04 14:57:47 +02:00
|
|
|
|
2014-02-18 16:45:20 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2012-02-01 16:19:31 +01:00
|
|
|
}
|
2014-02-18 16:45:20 +01:00
|
|
|
/* IDs for use in client */
|
|
|
|
(*session_ptr)->next_stream_id = 2;
|
|
|
|
return 0;
|
2012-02-01 16:19:31 +01:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
static int free_streams(nghttp2_map_entry *entry, void *ptr)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream_free((nghttp2_stream*)entry);
|
2012-09-11 17:13:02 +02:00
|
|
|
free(entry);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
static void ob_pq_free(nghttp2_pq *pq)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
while(!nghttp2_pq_empty(pq)) {
|
|
|
|
nghttp2_outbound_item *item = (nghttp2_outbound_item*)nghttp2_pq_top(pq);
|
|
|
|
nghttp2_outbound_item_free(item);
|
2012-01-24 14:02:24 +01:00
|
|
|
free(item);
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_pq_pop(pq);
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_pq_free(pq);
|
2012-02-05 16:14:19 +01:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
void nghttp2_session_del(nghttp2_session *session)
|
2012-02-05 16:14:19 +01:00
|
|
|
{
|
|
|
|
if(session == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
2013-10-27 11:22:51 +01:00
|
|
|
free(session->inflight_iv);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-04-17 14:15:14 +02:00
|
|
|
nghttp2_stream_roots_free(&session->roots);
|
|
|
|
|
2014-03-25 18:04:24 +01:00
|
|
|
/* Have to free streams first, so that we can check
|
2014-04-02 15:55:49 +02:00
|
|
|
stream->data_item->queued */
|
2014-05-08 16:37:56 +02:00
|
|
|
nghttp2_map_each_free(&session->streams, free_streams, NULL);
|
2013-12-04 16:41:42 +01:00
|
|
|
nghttp2_map_free(&session->streams);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
ob_pq_free(&session->ob_pq);
|
|
|
|
ob_pq_free(&session->ob_ss_pq);
|
|
|
|
active_outbound_item_reset(&session->aob);
|
|
|
|
session_inbound_frame_reset(session);
|
2013-07-19 17:08:14 +02:00
|
|
|
nghttp2_hd_deflate_free(&session->hd_deflater);
|
|
|
|
nghttp2_hd_inflate_free(&session->hd_inflater);
|
2014-03-13 14:11:02 +01:00
|
|
|
nghttp2_bufs_free(&session->aob.framebufs);
|
2013-12-04 16:41:42 +01:00
|
|
|
free(session);
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2014-03-25 18:04:24 +01:00
|
|
|
int nghttp2_session_reprioritize_stream
|
|
|
|
(nghttp2_session *session, nghttp2_stream *stream,
|
|
|
|
const nghttp2_priority_spec *pri_spec)
|
2013-08-09 16:40:41 +02:00
|
|
|
{
|
2014-03-25 18:04:24 +01:00
|
|
|
int rv;
|
|
|
|
nghttp2_stream *dep_stream;
|
2014-03-29 15:17:39 +01:00
|
|
|
nghttp2_stream *root_stream;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
if(pri_spec->stream_id == stream->stream_id) {
|
|
|
|
return nghttp2_session_terminate_session(session,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
if(pri_spec->stream_id == 0) {
|
2014-03-25 18:04:24 +01:00
|
|
|
nghttp2_stream_dep_remove_subtree(stream);
|
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
/* We have to update weight after removing stream from tree */
|
|
|
|
stream->weight = pri_spec->weight;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-04-17 14:15:14 +02:00
|
|
|
if(pri_spec->exclusive &&
|
|
|
|
session->roots.num_streams <= NGHTTP2_MAX_DEP_TREE_LENGTH) {
|
|
|
|
|
|
|
|
rv = nghttp2_stream_dep_all_your_stream_are_belong_to_us
|
2014-05-08 16:07:29 +02:00
|
|
|
(stream, &session->ob_pq, session->last_cycle);
|
2014-04-17 14:15:14 +02:00
|
|
|
} else {
|
2014-05-08 16:07:29 +02:00
|
|
|
rv = nghttp2_stream_dep_make_root(stream, &session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-04-17 14:15:14 +02:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
return rv;
|
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
dep_stream = nghttp2_session_get_stream_raw(session, pri_spec->stream_id);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-04-17 14:15:14 +02:00
|
|
|
if(!dep_stream || !nghttp2_stream_in_dep_tree(dep_stream)) {
|
2014-03-25 18:04:24 +01:00
|
|
|
return 0;
|
2014-04-14 16:53:54 +02:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
if(nghttp2_stream_dep_subtree_find(stream, dep_stream)) {
|
|
|
|
DEBUGF(fprintf(stderr,
|
2014-04-24 16:44:34 +02:00
|
|
|
"stream: cycle detected, dep_stream(%p)=%d "
|
2014-04-14 16:53:54 +02:00
|
|
|
"stream(%p)=%d\n",
|
|
|
|
dep_stream, dep_stream->stream_id,
|
|
|
|
stream, stream->stream_id));
|
2014-04-24 16:44:34 +02:00
|
|
|
|
|
|
|
nghttp2_stream_dep_remove_subtree(dep_stream);
|
2014-05-08 16:07:29 +02:00
|
|
|
nghttp2_stream_dep_make_root(dep_stream, &session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-04-14 16:53:54 +02:00
|
|
|
}
|
2013-08-09 16:40:41 +02:00
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
nghttp2_stream_dep_remove_subtree(stream);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
/* We have to update weight after removing stream from tree */
|
|
|
|
stream->weight = pri_spec->weight;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
root_stream = nghttp2_stream_get_dep_root(dep_stream);
|
2014-03-29 15:17:39 +01:00
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
if(root_stream->num_substreams + stream->num_substreams >
|
|
|
|
NGHTTP2_MAX_DEP_TREE_LENGTH) {
|
2014-05-08 16:07:29 +02:00
|
|
|
rv = nghttp2_stream_dep_make_root(stream, &session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-04-14 16:53:54 +02:00
|
|
|
} else {
|
|
|
|
if(pri_spec->exclusive) {
|
|
|
|
rv = nghttp2_stream_dep_insert_subtree(dep_stream, stream,
|
2014-05-08 16:07:29 +02:00
|
|
|
&session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-03-25 18:04:24 +01:00
|
|
|
} else {
|
2014-04-14 16:53:54 +02:00
|
|
|
rv = nghttp2_stream_dep_add_subtree(dep_stream, stream,
|
2014-05-08 16:07:29 +02:00
|
|
|
&session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-03-25 18:04:24 +01:00
|
|
|
}
|
2014-04-14 16:53:54 +02:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2013-08-09 16:40:41 +02:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
return 0;
|
2013-08-09 16:40:41 +02:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_add_frame(nghttp2_session *session,
|
|
|
|
nghttp2_frame_category frame_cat,
|
2012-03-29 16:59:51 +02:00
|
|
|
void *abs_frame,
|
2012-01-29 11:07:31 +01:00
|
|
|
void *aux_data)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2013-08-09 16:40:41 +02:00
|
|
|
/* TODO Return error if stream is not found for the frame requiring
|
|
|
|
stream presence. */
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv = 0;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_outbound_item *item;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
item = malloc(sizeof(nghttp2_outbound_item));
|
2012-01-24 14:02:24 +01:00
|
|
|
if(item == NULL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_NOMEM;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2012-03-29 16:59:51 +02:00
|
|
|
item->frame_cat = frame_cat;
|
|
|
|
item->frame = abs_frame;
|
2012-01-29 11:07:31 +01:00
|
|
|
item->aux_data = aux_data;
|
2012-01-31 14:48:09 +01:00
|
|
|
item->seq = session->next_seq++;
|
2014-05-08 16:07:29 +02:00
|
|
|
/* We use cycle for DATA only */
|
|
|
|
item->cycle = 0;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
item->weight = NGHTTP2_OB_EX_WEIGHT;
|
|
|
|
item->queued = 0;
|
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
if(frame_cat == NGHTTP2_CAT_CTRL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame *frame = (nghttp2_frame*)abs_frame;
|
2014-03-25 18:04:24 +01:00
|
|
|
nghttp2_stream *stream;
|
|
|
|
|
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
switch(frame->hd.type) {
|
|
|
|
case NGHTTP2_HEADERS:
|
2014-05-09 17:13:40 +02:00
|
|
|
case NGHTTP2_PUSH_PROMISE:
|
2014-05-07 16:24:07 +02:00
|
|
|
item->weight = NGHTTP2_MAX_WEIGHT;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-07-22 17:11:39 +02:00
|
|
|
break;
|
2013-08-09 16:40:41 +02:00
|
|
|
case NGHTTP2_RST_STREAM:
|
2012-03-29 16:59:51 +02:00
|
|
|
if(stream) {
|
2014-02-20 14:59:29 +01:00
|
|
|
/* We rely on the stream state to decide whether number of
|
|
|
|
streams should be decremented or not. For purly reserved
|
|
|
|
streams, they are not counted to those numbers and we must
|
|
|
|
keep this state in order not to decrement the number. */
|
|
|
|
if(stream->state != NGHTTP2_STREAM_RESERVED) {
|
|
|
|
stream->state = NGHTTP2_STREAM_CLOSING;
|
|
|
|
}
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
2014-05-09 17:13:40 +02:00
|
|
|
|
2012-03-29 16:59:51 +02:00
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_SETTINGS:
|
2014-03-25 18:04:24 +01:00
|
|
|
item->weight = NGHTTP2_OB_SETTINGS_WEIGHT;
|
|
|
|
|
2013-07-24 18:49:05 +02:00
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_PING:
|
2012-04-05 18:45:39 +02:00
|
|
|
/* Ping has highest priority. */
|
2014-03-25 18:04:24 +01:00
|
|
|
item->weight = NGHTTP2_OB_PING_WEIGHT;
|
|
|
|
|
2012-03-29 16:59:51 +02:00
|
|
|
break;
|
2014-05-09 17:13:40 +02:00
|
|
|
default:
|
2014-04-24 17:35:48 +02:00
|
|
|
break;
|
2012-02-23 16:02:29 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-07-24 18:49:05 +02:00
|
|
|
if(frame->hd.type == NGHTTP2_HEADERS &&
|
2014-05-07 16:24:07 +02:00
|
|
|
(frame->headers.cat == NGHTTP2_HCAT_REQUEST ||
|
2014-01-09 13:39:29 +01:00
|
|
|
(stream && stream->state == NGHTTP2_STREAM_RESERVED))) {
|
|
|
|
/* We push request HEADERS and push response HEADERS to
|
|
|
|
dedicated queue because their transmission is affected by
|
|
|
|
SETTINGS_MAX_CONCURRENT_STREAMS */
|
2013-07-24 18:49:05 +02:00
|
|
|
/* TODO If 2 HEADERS are submitted for reserved stream, then
|
|
|
|
both of them are queued into ob_ss_pq, which is not
|
|
|
|
desirable. */
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = nghttp2_pq_push(&session->ob_ss_pq, item);
|
2012-03-29 16:59:51 +02:00
|
|
|
} else {
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = nghttp2_pq_push(&session->ob_pq, item);
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
item->queued = 1;
|
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
} else if(frame_cat == NGHTTP2_CAT_DATA) {
|
2014-01-27 13:22:33 +01:00
|
|
|
nghttp2_private_data *data_frame = (nghttp2_private_data*)abs_frame;
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_stream *stream;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
stream = nghttp2_session_get_stream(session, data_frame->hd.stream_id);
|
2012-01-26 17:17:40 +01:00
|
|
|
if(stream) {
|
2014-04-02 15:55:49 +02:00
|
|
|
if(stream->data_item) {
|
|
|
|
rv = NGHTTP2_ERR_DATA_EXIST;
|
|
|
|
} else {
|
2014-04-14 16:53:54 +02:00
|
|
|
item->weight = stream->effective_weight;
|
2014-05-08 16:07:29 +02:00
|
|
|
item->cycle = session->last_cycle;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-05-08 16:07:29 +02:00
|
|
|
rv = nghttp2_stream_attach_data(stream, item, &session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-04-02 15:55:49 +02:00
|
|
|
}
|
2012-01-26 17:17:40 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2012-03-29 16:59:51 +02:00
|
|
|
} else {
|
|
|
|
/* Unreachable */
|
|
|
|
assert(0);
|
2012-02-05 16:14:19 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-02-18 16:45:20 +01:00
|
|
|
if(rv != 0) {
|
2012-01-24 14:02:24 +01:00
|
|
|
free(item);
|
2014-02-18 16:45:20 +01:00
|
|
|
return rv;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2012-01-24 14:02:24 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_add_rst_stream(nghttp2_session *session,
|
2013-07-15 14:45:59 +02:00
|
|
|
int32_t stream_id,
|
|
|
|
nghttp2_error_code error_code)
|
2012-01-25 13:31:28 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame *frame;
|
2014-03-21 16:51:40 +01:00
|
|
|
nghttp2_stream *stream;
|
|
|
|
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
|
|
|
if(stream && stream->state == NGHTTP2_STREAM_CLOSING) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
frame = malloc(sizeof(nghttp2_frame));
|
2012-01-25 13:31:28 +01:00
|
|
|
if(frame == NULL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_NOMEM;
|
2012-01-25 13:31:28 +01:00
|
|
|
}
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_frame_rst_stream_init(&frame->rst_stream, stream_id, error_code);
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = nghttp2_session_add_frame(session, NGHTTP2_CAT_CTRL, frame, NULL);
|
|
|
|
if(rv != 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame_rst_stream_free(&frame->rst_stream);
|
2012-01-25 13:31:28 +01:00
|
|
|
free(frame);
|
2014-02-18 16:45:20 +01:00
|
|
|
return rv;
|
2012-01-25 13:31:28 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream* nghttp2_session_open_stream(nghttp2_session *session,
|
2012-01-28 16:16:51 +01:00
|
|
|
int32_t stream_id,
|
2014-03-25 18:04:24 +01:00
|
|
|
uint8_t flags,
|
|
|
|
nghttp2_priority_spec *pri_spec,
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream_state initial_state,
|
2012-02-03 17:37:21 +01:00
|
|
|
void *stream_user_data)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2014-03-25 18:04:24 +01:00
|
|
|
nghttp2_stream *stream;
|
|
|
|
nghttp2_stream *dep_stream;
|
2014-03-29 15:17:39 +01:00
|
|
|
nghttp2_stream *root_stream;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-03-30 10:41:54 +02:00
|
|
|
if(session->server && !nghttp2_session_is_my_stream_id(session, stream_id)) {
|
|
|
|
nghttp2_session_adjust_closed_stream(session, 1);
|
|
|
|
}
|
|
|
|
|
2014-03-25 18:04:24 +01:00
|
|
|
stream = malloc(sizeof(nghttp2_stream));
|
2012-01-24 14:02:24 +01:00
|
|
|
if(stream == NULL) {
|
2012-01-28 16:16:51 +01:00
|
|
|
return NULL;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
nghttp2_stream_init(stream, stream_id, flags, initial_state,
|
2014-04-17 14:15:14 +02:00
|
|
|
pri_spec->weight, &session->roots,
|
2014-06-10 14:29:19 +02:00
|
|
|
session->remote_settings.initial_window_size,
|
|
|
|
session->local_settings.initial_window_size,
|
2012-02-03 17:37:21 +01:00
|
|
|
stream_user_data);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = nghttp2_map_insert(&session->streams, &stream->map_entry);
|
|
|
|
if(rv != 0) {
|
2012-01-24 14:02:24 +01:00
|
|
|
free(stream);
|
2013-07-24 18:49:05 +02:00
|
|
|
return NULL;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-07-24 18:49:05 +02:00
|
|
|
if(initial_state == NGHTTP2_STREAM_RESERVED) {
|
|
|
|
if(nghttp2_session_is_my_stream_id(session, stream_id)) {
|
|
|
|
/* half closed (remote) */
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_RD);
|
|
|
|
} else {
|
|
|
|
/* half closed (local) */
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_WR);
|
|
|
|
}
|
|
|
|
/* Reserved stream does not count in the concurrent streams
|
|
|
|
limit. That is one of the DOS vector. */
|
2012-05-07 17:59:26 +02:00
|
|
|
} else {
|
2013-07-24 18:49:05 +02:00
|
|
|
if(nghttp2_session_is_my_stream_id(session, stream_id)) {
|
|
|
|
++session->num_outgoing_streams;
|
|
|
|
} else {
|
|
|
|
++session->num_incoming_streams;
|
|
|
|
}
|
2012-05-07 17:59:26 +02:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
/* We don't have to track dependency of received reserved stream */
|
|
|
|
if(stream->shut_flags & NGHTTP2_SHUT_WR) {
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
2014-04-17 14:15:14 +02:00
|
|
|
if(pri_spec->stream_id == 0) {
|
|
|
|
|
|
|
|
++session->roots.num_streams;
|
|
|
|
|
|
|
|
if(pri_spec->exclusive &&
|
|
|
|
session->roots.num_streams <= NGHTTP2_MAX_DEP_TREE_LENGTH) {
|
|
|
|
rv = nghttp2_stream_dep_all_your_stream_are_belong_to_us
|
2014-05-08 16:07:29 +02:00
|
|
|
(stream, &session->ob_pq, session->last_cycle);
|
2014-04-17 14:15:14 +02:00
|
|
|
|
|
|
|
/* Since no dpri is changed in dependency tree, the above
|
|
|
|
function call never fail. */
|
|
|
|
assert(rv == 0);
|
|
|
|
} else {
|
|
|
|
nghttp2_stream_roots_add(&session->roots, stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
dep_stream = nghttp2_session_get_stream_raw(session, pri_spec->stream_id);
|
|
|
|
|
2014-04-17 14:15:14 +02:00
|
|
|
/* If dep_stream is not part of dependency tree, we don't use it. */
|
|
|
|
if(!dep_stream || !nghttp2_stream_in_dep_tree(dep_stream)) {
|
2014-03-25 18:04:24 +01:00
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
2014-04-06 14:06:31 +02:00
|
|
|
/* TODO Client does not have to track dependencies of streams except
|
|
|
|
for those which have upload data. Currently, we just track
|
|
|
|
everything. */
|
|
|
|
|
2014-03-29 15:17:39 +01:00
|
|
|
root_stream = nghttp2_stream_get_dep_root(dep_stream);
|
|
|
|
|
|
|
|
if(root_stream->num_substreams < NGHTTP2_MAX_DEP_TREE_LENGTH) {
|
2014-04-14 16:53:54 +02:00
|
|
|
if(pri_spec->exclusive) {
|
2014-03-29 15:17:39 +01:00
|
|
|
nghttp2_stream_dep_insert(dep_stream, stream);
|
|
|
|
} else {
|
|
|
|
nghttp2_stream_dep_add(dep_stream, stream);
|
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
}
|
|
|
|
|
2012-01-28 16:16:51 +01:00
|
|
|
return stream;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_close_stream(nghttp2_session *session, int32_t stream_id,
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_error_code error_code)
|
2012-01-25 17:04:01 +01:00
|
|
|
{
|
2014-03-25 18:04:24 +01:00
|
|
|
int rv;
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
|
|
|
|
2013-09-05 16:17:16 +02:00
|
|
|
if(!stream) {
|
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
DEBUGF(fprintf(stderr, "stream: stream(%p)=%d close\n",
|
|
|
|
stream, stream->stream_id));
|
|
|
|
|
2014-04-02 15:55:49 +02:00
|
|
|
if(stream->data_item) {
|
2014-03-25 18:04:24 +01:00
|
|
|
nghttp2_outbound_item *item;
|
|
|
|
|
2014-04-02 15:55:49 +02:00
|
|
|
item = stream->data_item;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-05-08 16:07:29 +02:00
|
|
|
rv = nghttp2_stream_detach_data(stream, &session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If item is queued, it will be deleted when it is popped
|
|
|
|
(nghttp2_session_prep_frame() will fail). If session->aob.item
|
2014-05-08 16:37:56 +02:00
|
|
|
points to this item, let active_outbound_item_reset()
|
2014-03-25 18:04:24 +01:00
|
|
|
free the item. */
|
|
|
|
if(!item->queued && item != session->aob.item) {
|
|
|
|
free(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-05 16:17:16 +02:00
|
|
|
/* We call on_stream_close_callback even if stream->state is
|
|
|
|
NGHTTP2_STREAM_INITIAL. This will happen while sending request
|
|
|
|
HEADERS, a local endpoint receives RST_STREAM for that stream. It
|
|
|
|
may be PROTOCOL_ERROR, but without notifying stream closure will
|
|
|
|
hang the stream in a local endpoint.
|
|
|
|
*/
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-03-29 15:57:27 +01:00
|
|
|
if(session->callbacks.on_stream_close_callback) {
|
|
|
|
if(session->callbacks.on_stream_close_callback
|
|
|
|
(session, stream_id, error_code, session->user_data) != 0) {
|
|
|
|
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2012-01-29 15:00:33 +01:00
|
|
|
}
|
2014-03-29 15:57:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(stream->state != NGHTTP2_STREAM_RESERVED) {
|
2013-09-05 16:17:16 +02:00
|
|
|
if(nghttp2_session_is_my_stream_id(session, stream_id)) {
|
|
|
|
--session->num_outgoing_streams;
|
|
|
|
} else {
|
|
|
|
--session->num_incoming_streams;
|
2012-05-07 17:59:26 +02:00
|
|
|
}
|
2012-01-25 17:04:01 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-03-30 10:41:54 +02:00
|
|
|
/* Closes both directions just in case they are not closed yet */
|
|
|
|
stream->flags |= NGHTTP2_STREAM_FLAG_CLOSED;
|
|
|
|
|
2014-04-17 14:15:14 +02:00
|
|
|
if(session->server &&
|
|
|
|
nghttp2_stream_in_dep_tree(stream) &&
|
|
|
|
!nghttp2_session_is_my_stream_id(session, stream_id)) {
|
2014-03-30 10:41:54 +02:00
|
|
|
/* On server side, retain incoming stream object at most
|
|
|
|
MAX_CONCURRENT_STREAMS combined with the current active streams
|
|
|
|
to make dependency tree work better. */
|
|
|
|
nghttp2_session_keep_closed_stream(session, stream);
|
|
|
|
} else {
|
|
|
|
nghttp2_session_destroy_stream(session, stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nghttp2_session_destroy_stream(nghttp2_session *session,
|
|
|
|
nghttp2_stream *stream)
|
|
|
|
{
|
|
|
|
DEBUGF(fprintf(stderr, "stream: destroy closed stream(%p)=%d\n",
|
|
|
|
stream, stream->stream_id));
|
|
|
|
|
2014-03-25 18:04:24 +01:00
|
|
|
nghttp2_stream_dep_remove(stream);
|
|
|
|
|
2014-03-30 10:41:54 +02:00
|
|
|
nghttp2_map_remove(&session->streams, stream->stream_id);
|
2013-09-05 16:17:16 +02:00
|
|
|
nghttp2_stream_free(stream);
|
|
|
|
free(stream);
|
2014-03-30 10:41:54 +02:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-03-30 10:41:54 +02:00
|
|
|
void nghttp2_session_keep_closed_stream(nghttp2_session *session,
|
|
|
|
nghttp2_stream *stream)
|
|
|
|
{
|
|
|
|
DEBUGF(fprintf(stderr, "stream: keep closed stream(%p)=%d\n",
|
|
|
|
stream, stream->stream_id));
|
|
|
|
|
|
|
|
if(session->closed_stream_tail) {
|
|
|
|
session->closed_stream_tail->closed_next = stream;
|
|
|
|
} else {
|
|
|
|
session->closed_stream_head = stream;
|
|
|
|
}
|
|
|
|
session->closed_stream_tail = stream;
|
|
|
|
|
|
|
|
++session->num_closed_streams;
|
|
|
|
|
|
|
|
nghttp2_session_adjust_closed_stream(session, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nghttp2_session_adjust_closed_stream(nghttp2_session *session,
|
|
|
|
ssize_t offset)
|
|
|
|
{
|
2014-05-16 15:32:08 +02:00
|
|
|
size_t num_stream_max;
|
|
|
|
|
2014-06-10 14:29:19 +02:00
|
|
|
num_stream_max = nghttp2_min(session->local_settings.max_concurrent_streams,
|
|
|
|
session->pending_local_max_concurrent_stream);
|
2014-05-16 15:32:08 +02:00
|
|
|
|
2014-03-30 10:41:54 +02:00
|
|
|
DEBUGF(fprintf(stderr, "stream: adjusting kept closed streams "
|
|
|
|
"num_closed_streams=%zu, num_incoming_streams=%zu, "
|
2014-06-09 16:21:30 +02:00
|
|
|
"max_concurrent_streams=%zu\n",
|
2014-03-30 10:41:54 +02:00
|
|
|
session->num_closed_streams, session->num_incoming_streams,
|
2014-05-16 15:32:08 +02:00
|
|
|
num_stream_max));
|
2014-03-30 10:41:54 +02:00
|
|
|
|
|
|
|
while(session->num_closed_streams > 0 &&
|
|
|
|
session->num_closed_streams + session->num_incoming_streams + offset
|
2014-05-16 15:32:08 +02:00
|
|
|
> num_stream_max) {
|
2014-03-30 10:41:54 +02:00
|
|
|
nghttp2_stream *head_stream;
|
|
|
|
|
|
|
|
head_stream = session->closed_stream_head;
|
|
|
|
|
|
|
|
session->closed_stream_head = head_stream->closed_next;
|
|
|
|
|
|
|
|
if(session->closed_stream_tail == head_stream) {
|
|
|
|
session->closed_stream_tail = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nghttp2_session_destroy_stream(session, head_stream);
|
|
|
|
/* head_stream is now freed */
|
|
|
|
--session->num_closed_streams;
|
|
|
|
}
|
2012-01-25 17:04:01 +01:00
|
|
|
}
|
|
|
|
|
2013-08-29 15:58:05 +02:00
|
|
|
/*
|
|
|
|
* Closes stream with stream ID |stream_id| if both transmission and
|
|
|
|
* reception of the stream were disallowed. The |error_code| indicates
|
|
|
|
* the reason of the closure.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_INVALID_ARGUMENT
|
|
|
|
* The stream is not found.
|
|
|
|
* NGHTTP2_ERR_CALLBACK_FAILURE
|
|
|
|
* The callback function failed.
|
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_close_stream_if_shut_rdwr(nghttp2_session *session,
|
|
|
|
nghttp2_stream *stream)
|
2012-01-28 16:08:51 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
if((stream->shut_flags & NGHTTP2_SHUT_RDWR) == NGHTTP2_SHUT_RDWR) {
|
|
|
|
return nghttp2_session_close_stream(session, stream->stream_id,
|
2013-07-15 14:45:59 +02:00
|
|
|
NGHTTP2_NO_ERROR);
|
2012-01-28 16:08:51 +01:00
|
|
|
}
|
2013-10-04 15:42:34 +02:00
|
|
|
return 0;
|
2012-01-28 16:08:51 +01:00
|
|
|
}
|
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
/*
|
|
|
|
* Check that we can send a frame to the |stream|. This function
|
|
|
|
* returns 0 if we can send a frame to the |frame|, or one of the
|
|
|
|
* following negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_STREAM_CLOSED
|
|
|
|
* The stream is already closed.
|
|
|
|
* NGHTTP2_ERR_STREAM_SHUT_WR
|
|
|
|
* The stream is half-closed for transmission.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int stream_predicate_for_send(nghttp2_stream *stream)
|
2012-03-07 16:18:18 +01:00
|
|
|
{
|
|
|
|
if(stream == NULL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_STREAM_CLOSED;
|
2013-10-04 15:42:34 +02:00
|
|
|
}
|
|
|
|
if(stream->shut_flags & NGHTTP2_SHUT_WR) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_STREAM_SHUT_WR;
|
2012-03-07 16:18:18 +01:00
|
|
|
}
|
2013-10-04 15:42:34 +02:00
|
|
|
return 0;
|
2012-03-07 16:18:18 +01:00
|
|
|
}
|
|
|
|
|
2012-03-11 10:52:42 +01:00
|
|
|
/*
|
2013-07-15 14:45:59 +02:00
|
|
|
* This function checks HEADERS frame |frame|, which opens stream, can
|
|
|
|
* be sent at this time.
|
2012-03-11 10:52:42 +01:00
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
2013-07-15 14:45:59 +02:00
|
|
|
* NGHTTP2_ERR_START_STREAM_NOT_ALLOWED
|
|
|
|
* New stream cannot be created because GOAWAY is already sent or
|
|
|
|
* received.
|
2012-03-11 10:52:42 +01:00
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_predicate_request_headers_send
|
2013-07-15 14:45:59 +02:00
|
|
|
(nghttp2_session *session, nghttp2_headers *frame)
|
2012-03-11 10:52:42 +01:00
|
|
|
{
|
|
|
|
if(session->goaway_flags) {
|
2013-07-25 14:18:13 +02:00
|
|
|
/* When GOAWAY is sent or received, peer must not send new request
|
|
|
|
HEADERS. */
|
2013-07-15 14:45:59 +02:00
|
|
|
return NGHTTP2_ERR_START_STREAM_NOT_ALLOWED;
|
2012-03-11 10:52:42 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-01-27 09:09:40 +01:00
|
|
|
/*
|
2013-07-15 14:45:59 +02:00
|
|
|
* This function checks HEADERS, which is the first frame from the
|
|
|
|
* server, with the stream ID |stream_id| can be sent at this time.
|
2012-03-07 16:18:18 +01:00
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_STREAM_CLOSED
|
2012-03-07 16:18:18 +01:00
|
|
|
* The stream is already closed or does not exist.
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_STREAM_SHUT_WR
|
2012-03-07 16:18:18 +01:00
|
|
|
* The transmission is not allowed for this stream (e.g., a frame
|
2013-07-25 14:18:13 +02:00
|
|
|
* with END_STREAM flag set has already sent)
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_INVALID_STREAM_ID
|
2012-03-07 16:18:18 +01:00
|
|
|
* The stream ID is invalid.
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_STREAM_CLOSING
|
2012-03-07 16:18:18 +01:00
|
|
|
* RST_STREAM was queued for this stream.
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_INVALID_STREAM_STATE
|
2013-07-25 14:18:13 +02:00
|
|
|
* The state of the stream is not valid.
|
2012-01-27 09:09:40 +01:00
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_predicate_response_headers_send
|
2013-07-25 14:07:38 +02:00
|
|
|
(nghttp2_session *session, int32_t stream_id)
|
2012-01-27 09:09:40 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream *stream = nghttp2_session_get_stream(session, stream_id);
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = stream_predicate_for_send(stream);
|
2014-02-18 16:45:20 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2012-01-27 09:09:40 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
if(nghttp2_session_is_my_stream_id(session, stream_id)) {
|
|
|
|
return NGHTTP2_ERR_INVALID_STREAM_ID;
|
2013-10-04 15:42:34 +02:00
|
|
|
}
|
|
|
|
if(stream->state == NGHTTP2_STREAM_OPENING) {
|
2013-09-05 16:17:16 +02:00
|
|
|
return 0;
|
2013-10-04 15:42:34 +02:00
|
|
|
}
|
|
|
|
if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
2013-09-05 16:17:16 +02:00
|
|
|
return NGHTTP2_ERR_STREAM_CLOSING;
|
2012-01-27 09:09:40 +01:00
|
|
|
}
|
2013-10-04 15:42:34 +02:00
|
|
|
return NGHTTP2_ERR_INVALID_STREAM_STATE;
|
2012-01-27 09:09:40 +01:00
|
|
|
}
|
|
|
|
|
2013-07-24 18:49:05 +02:00
|
|
|
/*
|
|
|
|
* This function checks HEADERS for reserved stream can be sent. The
|
|
|
|
* stream |stream_id| must be reserved state and the |session| is
|
|
|
|
* server side.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_STREAM_CLOSED
|
|
|
|
* The stream is already closed.
|
|
|
|
* NGHTTP2_ERR_STREAM_SHUT_WR
|
|
|
|
* The stream is half-closed for transmission.
|
|
|
|
* NGHTTP2_ERR_PROTO
|
2014-01-09 13:39:29 +01:00
|
|
|
* The stream is not reserved state
|
2013-07-24 18:49:05 +02:00
|
|
|
* NGHTTP2_ERR_STREAM_CLOSED
|
|
|
|
* RST_STREAM was queued for this stream.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_predicate_push_response_headers_send
|
2013-07-25 14:07:38 +02:00
|
|
|
(nghttp2_session *session, int32_t stream_id)
|
2013-07-24 18:49:05 +02:00
|
|
|
{
|
|
|
|
nghttp2_stream *stream = nghttp2_session_get_stream(session, stream_id);
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2013-07-24 18:49:05 +02:00
|
|
|
/* TODO Should disallow HEADERS if GOAWAY has already been issued? */
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = stream_predicate_for_send(stream);
|
2014-02-18 16:45:20 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2013-07-24 18:49:05 +02:00
|
|
|
}
|
2014-01-09 13:39:29 +01:00
|
|
|
if(stream->state != NGHTTP2_STREAM_RESERVED) {
|
2013-07-24 18:49:05 +02:00
|
|
|
return NGHTTP2_ERR_PROTO;
|
|
|
|
}
|
|
|
|
if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
|
|
|
return NGHTTP2_ERR_STREAM_CLOSING;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-02-23 16:02:29 +01:00
|
|
|
/*
|
2013-07-23 14:33:28 +02:00
|
|
|
* This function checks frames belongs to the stream |stream_id| can
|
|
|
|
* be sent.
|
2012-03-07 16:18:18 +01:00
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_STREAM_CLOSED
|
2012-03-07 16:18:18 +01:00
|
|
|
* The stream is already closed or does not exist.
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_STREAM_SHUT_WR
|
2012-03-07 16:18:18 +01:00
|
|
|
* The transmission is not allowed for this stream (e.g., a frame
|
2013-07-25 14:18:13 +02:00
|
|
|
* with END_STREAM flag set has already sent)
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_STREAM_CLOSING
|
2012-03-07 16:18:18 +01:00
|
|
|
* RST_STREAM was queued for this stream.
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_INVALID_STREAM_STATE
|
2013-07-25 14:18:13 +02:00
|
|
|
* The state of the stream is not valid.
|
2012-02-23 16:02:29 +01:00
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_predicate_stream_frame_send
|
2013-07-23 14:33:28 +02:00
|
|
|
(nghttp2_session* session, int32_t stream_id)
|
2012-02-23 16:02:29 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream *stream = nghttp2_session_get_stream(session, stream_id);
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = stream_predicate_for_send(stream);
|
2014-02-18 16:45:20 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2012-02-23 16:02:29 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
if(nghttp2_session_is_my_stream_id(session, stream_id)) {
|
2013-10-04 15:42:34 +02:00
|
|
|
if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_STREAM_CLOSING;
|
2012-03-07 16:18:18 +01:00
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
return 0;
|
2013-10-04 15:42:34 +02:00
|
|
|
}
|
|
|
|
if(stream->state == NGHTTP2_STREAM_OPENED) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
2013-09-05 16:17:16 +02:00
|
|
|
return NGHTTP2_ERR_STREAM_CLOSING;
|
2012-02-23 16:02:29 +01:00
|
|
|
}
|
2013-10-04 15:42:34 +02:00
|
|
|
return NGHTTP2_ERR_INVALID_STREAM_STATE;
|
2012-02-23 16:02:29 +01:00
|
|
|
}
|
|
|
|
|
2013-07-23 14:33:28 +02:00
|
|
|
/*
|
|
|
|
* This function checks HEADERS, which is neither stream-opening nor
|
|
|
|
* first response header, with the stream ID |stream_id| can be sent
|
|
|
|
* at this time.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_predicate_headers_send(nghttp2_session *session,
|
|
|
|
int32_t stream_id)
|
2013-07-23 14:33:28 +02:00
|
|
|
{
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_predicate_stream_frame_send(session, stream_id);
|
2013-07-23 14:33:28 +02:00
|
|
|
}
|
|
|
|
|
2013-07-22 17:11:39 +02:00
|
|
|
/*
|
|
|
|
* This function checks PRIORITY frame with stream ID |stream_id| can
|
|
|
|
* be sent at this time.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_predicate_priority_send
|
2013-07-22 17:11:39 +02:00
|
|
|
(nghttp2_session *session, int32_t stream_id)
|
|
|
|
{
|
2013-08-09 16:40:41 +02:00
|
|
|
nghttp2_stream *stream;
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
2014-06-07 11:36:58 +02:00
|
|
|
|
2014-01-09 14:06:38 +01:00
|
|
|
/* PRIORITY must not be sent in reserved(local) */
|
2014-06-07 11:36:58 +02:00
|
|
|
if(stream) {
|
|
|
|
if(state_reserved_local(session, stream)) {
|
|
|
|
return NGHTTP2_ERR_INVALID_STREAM_STATE;
|
|
|
|
}
|
|
|
|
} else if(session_detect_idle_stream(session, stream_id)) {
|
|
|
|
return NGHTTP2_ERR_INVALID_STREAM_ID;
|
2014-01-09 14:06:38 +01:00
|
|
|
}
|
2014-06-07 11:36:58 +02:00
|
|
|
|
2013-10-04 15:42:34 +02:00
|
|
|
return 0;
|
2013-07-22 17:11:39 +02:00
|
|
|
}
|
|
|
|
|
2013-07-24 18:49:05 +02:00
|
|
|
/*
|
|
|
|
* This function checks PUSH_PROMISE frame |frame| with stream ID
|
|
|
|
* |stream_id| can be sent at this time.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_START_STREAM_NOT_ALLOWED
|
|
|
|
* New stream cannot be created because GOAWAY is already sent or
|
|
|
|
* received.
|
|
|
|
* NGHTTP2_ERR_PROTO
|
|
|
|
* The client side attempts to send PUSH_PROMISE, or the server
|
|
|
|
* sends PUSH_PROMISE for the stream not initiated by the client.
|
|
|
|
* NGHTTP2_ERR_STREAM_CLOSED
|
|
|
|
* The stream is already closed or does not exist.
|
|
|
|
* NGHTTP2_ERR_STREAM_CLOSING
|
|
|
|
* RST_STREAM was queued for this stream.
|
|
|
|
* NGHTTP2_ERR_STREAM_SHUT_WR
|
|
|
|
* The transmission is not allowed for this stream (e.g., a frame
|
|
|
|
* with END_STREAM flag set has already sent)
|
2013-11-02 08:53:06 +01:00
|
|
|
* NGHTTP2_ERR_PUSH_DISABLED
|
|
|
|
* The remote peer disabled reception of PUSH_PROMISE.
|
2013-07-24 18:49:05 +02:00
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_predicate_push_promise_send
|
2013-07-24 18:49:05 +02:00
|
|
|
(nghttp2_session *session, int32_t stream_id)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
nghttp2_stream *stream;
|
2014-02-14 08:12:04 +01:00
|
|
|
if(!session->server) {
|
|
|
|
return NGHTTP2_ERR_PROTO;
|
|
|
|
}
|
2014-01-09 13:39:29 +01:00
|
|
|
if(nghttp2_session_is_my_stream_id(session, stream_id)) {
|
|
|
|
/* The associated stream must be initiated by the remote peer */
|
2013-07-24 18:49:05 +02:00
|
|
|
return NGHTTP2_ERR_PROTO;
|
|
|
|
}
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = stream_predicate_for_send(stream);
|
2013-07-24 18:49:05 +02:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
if(session->remote_settings.enable_push == 0) {
|
2013-11-02 08:53:06 +01:00
|
|
|
return NGHTTP2_ERR_PUSH_DISABLED;
|
|
|
|
}
|
2013-07-24 18:49:05 +02:00
|
|
|
if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
|
|
|
return NGHTTP2_ERR_STREAM_CLOSING;
|
|
|
|
}
|
|
|
|
if(session->goaway_flags) {
|
|
|
|
/* When GOAWAY is sent or received, peer must not promise new
|
|
|
|
stream ID */
|
|
|
|
return NGHTTP2_ERR_START_STREAM_NOT_ALLOWED;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-02-25 16:12:32 +01:00
|
|
|
/*
|
2012-03-07 16:18:18 +01:00
|
|
|
* This function checks WINDOW_UPDATE with the stream ID |stream_id|
|
2013-07-25 14:18:13 +02:00
|
|
|
* can be sent at this time. Note that END_STREAM flag of the previous
|
|
|
|
* frame does not affect the transmission of the WINDOW_UPDATE frame.
|
2012-03-07 16:18:18 +01:00
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_STREAM_CLOSED
|
2012-03-07 16:18:18 +01:00
|
|
|
* The stream is already closed or does not exist.
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_STREAM_CLOSING
|
2012-03-07 16:18:18 +01:00
|
|
|
* RST_STREAM was queued for this stream.
|
2013-10-04 14:59:44 +02:00
|
|
|
* NGHTTP2_ERR_INVALID_STREAM_STATE
|
|
|
|
* The state of the stream is not valid.
|
2012-02-25 16:12:32 +01:00
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_predicate_window_update_send
|
2013-07-15 14:45:59 +02:00
|
|
|
(nghttp2_session *session, int32_t stream_id)
|
2012-02-25 16:12:32 +01:00
|
|
|
{
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_stream *stream;
|
|
|
|
if(stream_id == 0) {
|
|
|
|
/* Connection-level window update */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
2012-02-25 16:12:32 +01:00
|
|
|
if(stream == NULL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_STREAM_CLOSED;
|
2012-03-07 16:18:18 +01:00
|
|
|
}
|
2013-10-04 14:59:44 +02:00
|
|
|
if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_STREAM_CLOSING;
|
2012-02-25 16:12:32 +01:00
|
|
|
}
|
2013-10-04 14:59:44 +02:00
|
|
|
if(stream->state == NGHTTP2_STREAM_RESERVED) {
|
|
|
|
return NGHTTP2_ERR_INVALID_STREAM_STATE;
|
|
|
|
}
|
|
|
|
return 0;
|
2012-02-25 16:12:32 +01:00
|
|
|
}
|
|
|
|
|
2014-04-10 16:27:10 +02:00
|
|
|
/*
|
|
|
|
* This function checks ALTSVC with the stream ID |stream_id| can be
|
|
|
|
* sent at this time. If |stream_id| is 0, ATLSVC frame is always
|
|
|
|
* allowed to send.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_STREAM_CLOSED
|
|
|
|
* The stream is already closed or does not exist.
|
|
|
|
* NGHTTP2_ERR_STREAM_CLOSING
|
|
|
|
* RST_STREAM was queued for this stream.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_predicate_altsvc_send
|
2014-04-10 16:27:10 +02:00
|
|
|
(nghttp2_session *session, int32_t stream_id)
|
|
|
|
{
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
|
|
|
|
if(stream_id == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
|
|
|
|
|
|
|
if(stream == NULL) {
|
|
|
|
return NGHTTP2_ERR_STREAM_CLOSED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
|
|
|
return NGHTTP2_ERR_STREAM_CLOSING;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-04-24 17:35:48 +02:00
|
|
|
/*
|
|
|
|
* This function checks BLOCKED with the stream ID |stream_id| can be
|
|
|
|
* sent at this time. If |stream_id| is 0, BLOCKED frame is always
|
|
|
|
* allowed to send.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_STREAM_CLOSED
|
|
|
|
* The stream is already closed or does not exist.
|
|
|
|
* NGHTTP2_ERR_STREAM_CLOSING
|
|
|
|
* RST_STREAM was queued for this stream.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_predicate_blocked_send
|
2014-04-24 17:35:48 +02:00
|
|
|
(nghttp2_session *session, int32_t stream_id)
|
|
|
|
{
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
|
|
|
|
if(stream_id == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
|
|
|
|
|
|
|
if(stream == NULL) {
|
|
|
|
return NGHTTP2_ERR_STREAM_CLOSED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
|
|
|
return NGHTTP2_ERR_STREAM_CLOSING;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-27 11:22:51 +01:00
|
|
|
/*
|
|
|
|
* This function checks SETTINGS can be sent at this time.
|
|
|
|
*
|
2014-03-30 11:07:52 +02:00
|
|
|
* Currently this function always returns 0.
|
2013-10-27 11:22:51 +01:00
|
|
|
*/
|
|
|
|
static int nghttp2_session_predicate_settings_send(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-02-25 16:12:32 +01:00
|
|
|
/*
|
2013-07-16 13:54:24 +02:00
|
|
|
* Returns the maximum length of next data read. If the
|
|
|
|
* connection-level and/or stream-wise flow control are enabled, the
|
|
|
|
* return value takes into account those current window sizes.
|
2012-02-25 16:12:32 +01:00
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
static size_t nghttp2_session_next_data_read(nghttp2_session *session,
|
|
|
|
nghttp2_stream *stream)
|
2012-02-25 16:12:32 +01:00
|
|
|
{
|
2014-04-02 13:35:07 +02:00
|
|
|
int32_t window_size = NGHTTP2_DATA_PAYLOADLEN;
|
2014-02-11 13:35:41 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr,
|
|
|
|
"send: remote windowsize connection=%d, "
|
|
|
|
"stream(id %d)=%d\n",
|
|
|
|
session->remote_window_size,
|
|
|
|
stream->stream_id,
|
|
|
|
stream->remote_window_size));
|
2014-02-11 13:35:41 +01:00
|
|
|
|
2013-09-05 16:17:16 +02:00
|
|
|
/* Take into account both connection-level flow control here */
|
2014-02-05 16:23:20 +01:00
|
|
|
window_size = nghttp2_min(window_size, session->remote_window_size);
|
|
|
|
window_size = nghttp2_min(window_size, stream->remote_window_size);
|
2014-03-19 16:27:39 +01:00
|
|
|
|
|
|
|
DEBUGF(fprintf(stderr, "send: available window=%d\n", window_size));
|
|
|
|
|
2013-09-05 16:17:16 +02:00
|
|
|
if(window_size > 0) {
|
2013-11-12 02:48:29 +01:00
|
|
|
return window_size;
|
2012-02-25 16:12:32 +01:00
|
|
|
}
|
2013-11-12 02:48:29 +01:00
|
|
|
return 0;
|
2012-02-25 16:12:32 +01:00
|
|
|
}
|
|
|
|
|
2012-03-07 16:18:18 +01:00
|
|
|
/*
|
|
|
|
* This function checks DATA with the stream ID |stream_id| can be
|
|
|
|
* sent at this time.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_STREAM_CLOSED
|
2012-03-07 16:18:18 +01:00
|
|
|
* The stream is already closed or does not exist.
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_STREAM_SHUT_WR
|
2012-03-07 16:18:18 +01:00
|
|
|
* The transmission is not allowed for this stream (e.g., a frame
|
2013-07-25 14:18:13 +02:00
|
|
|
* with END_STREAM flag set has already sent)
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_STREAM_CLOSING
|
2012-03-07 16:18:18 +01:00
|
|
|
* RST_STREAM was queued for this stream.
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_INVALID_STREAM_STATE
|
2013-07-25 14:18:13 +02:00
|
|
|
* The state of the stream is not valid.
|
2012-03-07 16:18:18 +01:00
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_session_predicate_data_send(nghttp2_session *session,
|
2012-03-07 16:18:18 +01:00
|
|
|
int32_t stream_id)
|
2012-01-27 09:09:40 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream *stream = nghttp2_session_get_stream(session, stream_id);
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = stream_predicate_for_send(stream);
|
2014-02-18 16:45:20 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2012-01-27 09:09:40 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
if(nghttp2_session_is_my_stream_id(session, stream_id)) {
|
2013-10-04 14:59:44 +02:00
|
|
|
/* Request body data */
|
2013-07-12 17:19:03 +02:00
|
|
|
/* If stream->state is NGHTTP2_STREAM_CLOSING, RST_STREAM was
|
2012-02-14 17:07:51 +01:00
|
|
|
queued but not yet sent. In this case, we won't send DATA
|
2013-10-04 14:59:44 +02:00
|
|
|
frames. */
|
|
|
|
if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_STREAM_CLOSING;
|
2012-03-07 16:18:18 +01:00
|
|
|
}
|
2013-10-04 14:59:44 +02:00
|
|
|
if(stream->state == NGHTTP2_STREAM_RESERVED) {
|
|
|
|
return NGHTTP2_ERR_INVALID_STREAM_STATE;
|
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
return 0;
|
2013-10-04 14:59:44 +02:00
|
|
|
}
|
|
|
|
/* Response body data */
|
|
|
|
if(stream->state == NGHTTP2_STREAM_OPENED) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
2013-09-05 16:17:16 +02:00
|
|
|
return NGHTTP2_ERR_STREAM_CLOSING;
|
2012-01-27 09:09:40 +01:00
|
|
|
}
|
2013-10-04 14:59:44 +02:00
|
|
|
return NGHTTP2_ERR_INVALID_STREAM_STATE;
|
2012-01-27 09:09:40 +01:00
|
|
|
}
|
|
|
|
|
2014-02-11 07:28:44 +01:00
|
|
|
static ssize_t session_call_select_padding(nghttp2_session *session,
|
|
|
|
const nghttp2_frame *frame,
|
|
|
|
size_t max_payloadlen)
|
|
|
|
{
|
|
|
|
ssize_t rv;
|
2014-06-07 11:15:36 +02:00
|
|
|
|
|
|
|
if(frame->hd.length >= max_payloadlen) {
|
|
|
|
return frame->hd.length;
|
|
|
|
}
|
|
|
|
|
2014-02-11 07:28:44 +01:00
|
|
|
if(session->callbacks.select_padding_callback) {
|
2014-06-07 11:15:36 +02:00
|
|
|
size_t max_paddedlen;
|
|
|
|
|
|
|
|
/* 256 is maximum padding size */
|
|
|
|
max_paddedlen = nghttp2_min(frame->hd.length + 256, max_payloadlen);
|
|
|
|
|
2014-02-11 07:28:44 +01:00
|
|
|
rv = session->callbacks.select_padding_callback(session, frame,
|
2014-06-07 11:15:36 +02:00
|
|
|
max_paddedlen,
|
2014-02-11 07:28:44 +01:00
|
|
|
session->user_data);
|
2014-06-07 11:15:36 +02:00
|
|
|
if(rv < (ssize_t)frame->hd.length || rv > (ssize_t)max_paddedlen) {
|
2014-02-11 07:28:44 +01:00
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
return frame->hd.length;
|
|
|
|
}
|
|
|
|
|
2014-02-15 08:30:43 +01:00
|
|
|
/* Add padding to HEADERS or PUSH_PROMISE. We use
|
|
|
|
frame->headers.padlen in this function to use the fact that
|
|
|
|
frame->push_promise has also padlen in the same position. */
|
2014-03-13 14:11:02 +01:00
|
|
|
static int session_headers_add_pad(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
2014-02-15 08:30:43 +01:00
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
ssize_t padded_payloadlen;
|
2014-03-10 17:47:38 +01:00
|
|
|
nghttp2_active_outbound_item *aob;
|
2014-03-13 14:11:02 +01:00
|
|
|
nghttp2_bufs *framebufs;
|
|
|
|
size_t padlen;
|
2014-03-10 17:47:38 +01:00
|
|
|
|
|
|
|
aob = &session->aob;
|
2014-03-13 14:11:02 +01:00
|
|
|
framebufs = &aob->framebufs;
|
2014-02-15 08:30:43 +01:00
|
|
|
|
|
|
|
padded_payloadlen = session_call_select_padding(session, frame,
|
2014-06-07 11:15:36 +02:00
|
|
|
NGHTTP2_MAX_PAYLOADLEN);
|
2014-02-15 08:30:43 +01:00
|
|
|
if(nghttp2_is_fatal(padded_payloadlen)) {
|
|
|
|
return padded_payloadlen;
|
|
|
|
}
|
|
|
|
|
2014-03-13 14:11:02 +01:00
|
|
|
padlen = padded_payloadlen - frame->hd.length;
|
2014-02-15 08:30:43 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr,
|
|
|
|
"send: padding selected: payloadlen=%zu, padlen=%zu\n",
|
2014-03-13 14:11:02 +01:00
|
|
|
padded_payloadlen, padlen));
|
2014-02-15 08:30:43 +01:00
|
|
|
|
2014-06-07 11:15:36 +02:00
|
|
|
rv = nghttp2_frame_add_pad(framebufs, &frame->hd, padlen);
|
|
|
|
|
2014-03-13 14:11:02 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2014-02-15 08:30:43 +01:00
|
|
|
}
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-03-13 14:11:02 +01:00
|
|
|
frame->headers.padlen = padlen;
|
|
|
|
|
|
|
|
return 0;
|
2014-02-15 08:30:43 +01:00
|
|
|
}
|
|
|
|
|
2014-04-24 17:35:48 +02:00
|
|
|
/*
|
|
|
|
* Adds BLOCKED frame to outbound queue. The |stream_id| could be 0,
|
|
|
|
* which means DATA is blocked by connection level flow control.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory
|
|
|
|
*/
|
|
|
|
static int session_add_blocked(nghttp2_session *session, int32_t stream_id)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
nghttp2_frame *frame;
|
|
|
|
|
|
|
|
frame = malloc(sizeof(nghttp2_frame));
|
|
|
|
|
|
|
|
if(frame == NULL) {
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
|
2014-06-09 16:16:54 +02:00
|
|
|
frame->ext.payload = NULL;
|
|
|
|
|
|
|
|
nghttp2_frame_blocked_init(&frame->ext, stream_id);
|
2014-04-24 17:35:48 +02:00
|
|
|
|
|
|
|
rv = nghttp2_session_add_frame(session, NGHTTP2_CAT_CTRL, frame, NULL);
|
|
|
|
|
|
|
|
if(rv != 0) {
|
2014-06-09 16:16:54 +02:00
|
|
|
nghttp2_frame_blocked_free(&frame->ext);
|
2014-04-24 17:35:48 +02:00
|
|
|
free(frame);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Adds BLOCKED frame(s) to outbound queue if they are allowed to
|
|
|
|
* send. We check BLOCKED frame can be sent for connection and stream
|
|
|
|
* individually.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory
|
|
|
|
*/
|
|
|
|
static int session_consider_blocked(nghttp2_session *session,
|
|
|
|
nghttp2_stream *stream)
|
|
|
|
{
|
|
|
|
if(session->blocked_sent == 0 && session->remote_window_size <= 0) {
|
|
|
|
session->blocked_sent = 1;
|
|
|
|
|
|
|
|
return session_add_blocked(session, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(stream->blocked_sent == 0 && stream->remote_window_size <= 0) {
|
|
|
|
stream->blocked_sent = 1;
|
|
|
|
|
|
|
|
return session_add_blocked(session, stream->stream_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-10 18:15:05 +01:00
|
|
|
/*
|
|
|
|
* This function serializes frame for transmission.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of negative error
|
|
|
|
* codes, including both fatal and non-fatal ones.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_prep_frame(nghttp2_session *session,
|
|
|
|
nghttp2_outbound_item *item)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2014-04-01 14:59:26 +02:00
|
|
|
ssize_t framerv = 0;
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2014-03-10 18:15:05 +01:00
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
if(item->frame_cat == NGHTTP2_CAT_CTRL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame *frame;
|
|
|
|
frame = nghttp2_outbound_item_get_ctrl_frame(item);
|
2013-07-15 14:45:59 +02:00
|
|
|
switch(frame->hd.type) {
|
2013-07-24 18:49:05 +02:00
|
|
|
case NGHTTP2_HEADERS: {
|
2014-01-16 15:41:13 +01:00
|
|
|
nghttp2_headers_aux_data *aux_data;
|
2014-04-27 07:48:43 +02:00
|
|
|
|
2014-01-16 15:41:13 +01:00
|
|
|
aux_data = (nghttp2_headers_aux_data*)item->aux_data;
|
2014-04-27 07:48:43 +02:00
|
|
|
|
2014-05-07 16:24:07 +02:00
|
|
|
if(frame->headers.cat == NGHTTP2_HCAT_REQUEST) {
|
2014-04-27 07:48:43 +02:00
|
|
|
nghttp2_stream *stream;
|
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
/* initial HEADERS, which opens stream */
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_predicate_request_headers_send(session, &frame->headers);
|
2014-02-18 16:45:20 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2012-04-05 18:45:39 +02:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-04-27 07:48:43 +02:00
|
|
|
stream = nghttp2_session_open_stream
|
|
|
|
(session, frame->hd.stream_id,
|
|
|
|
NGHTTP2_STREAM_FLAG_NONE,
|
2014-05-07 16:40:59 +02:00
|
|
|
&frame->headers.pri_spec,
|
2014-04-27 07:48:43 +02:00
|
|
|
NGHTTP2_STREAM_INITIAL,
|
|
|
|
aux_data ? aux_data->stream_user_data : NULL);
|
|
|
|
|
|
|
|
if(stream == NULL) {
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
} else if(session_predicate_push_response_headers_send
|
2013-07-24 18:49:05 +02:00
|
|
|
(session, frame->hd.stream_id) == 0) {
|
2013-07-25 13:53:30 +02:00
|
|
|
frame->headers.cat = NGHTTP2_HCAT_PUSH_RESPONSE;
|
2014-05-11 06:53:42 +02:00
|
|
|
|
|
|
|
if(aux_data && aux_data->stream_user_data) {
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
|
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
stream->stream_user_data = aux_data->stream_user_data;
|
|
|
|
}
|
2014-05-08 16:37:56 +02:00
|
|
|
} else if(session_predicate_response_headers_send
|
2013-07-15 14:45:59 +02:00
|
|
|
(session, frame->hd.stream_id) == 0) {
|
2013-07-25 13:53:30 +02:00
|
|
|
frame->headers.cat = NGHTTP2_HCAT_RESPONSE;
|
2013-07-15 14:45:59 +02:00
|
|
|
} else {
|
|
|
|
frame->headers.cat = NGHTTP2_HCAT_HEADERS;
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_predicate_headers_send(session, frame->hd.stream_id);
|
2014-02-18 16:45:20 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2013-07-15 14:45:59 +02:00
|
|
|
}
|
2013-07-19 17:08:14 +02:00
|
|
|
}
|
2014-04-27 07:48:43 +02:00
|
|
|
|
2014-04-01 14:59:26 +02:00
|
|
|
framerv = nghttp2_frame_pack_headers(&session->aob.framebufs,
|
|
|
|
&frame->headers,
|
|
|
|
&session->hd_deflater);
|
2014-04-27 07:48:43 +02:00
|
|
|
|
2014-04-01 14:59:26 +02:00
|
|
|
if(framerv < 0) {
|
2014-05-07 16:40:59 +02:00
|
|
|
goto close_stream_return;
|
2013-07-19 17:08:14 +02:00
|
|
|
}
|
2014-03-10 17:47:38 +01:00
|
|
|
|
|
|
|
DEBUGF(fprintf(stderr,
|
2014-03-19 16:27:39 +01:00
|
|
|
"send: before padding, HEADERS serialized in %zd bytes\n",
|
2014-03-13 14:11:02 +01:00
|
|
|
nghttp2_bufs_len(&session->aob.framebufs)));
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-04-01 14:59:26 +02:00
|
|
|
framerv = session_headers_add_pad(session, frame);
|
2014-05-07 16:40:59 +02:00
|
|
|
|
2014-04-01 14:59:26 +02:00
|
|
|
if(framerv < 0) {
|
2014-05-07 16:40:59 +02:00
|
|
|
goto close_stream_return;
|
2014-02-11 07:28:44 +01:00
|
|
|
}
|
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "send: HEADERS finally serialized in %zd bytes\n",
|
2014-03-13 14:11:02 +01:00
|
|
|
nghttp2_bufs_len(&session->aob.framebufs)));
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2012-03-29 16:59:51 +02:00
|
|
|
break;
|
2014-05-07 16:40:59 +02:00
|
|
|
|
|
|
|
close_stream_return:
|
|
|
|
|
|
|
|
if(frame->headers.cat == NGHTTP2_HCAT_REQUEST &&
|
|
|
|
!nghttp2_is_fatal(framerv)) {
|
|
|
|
rv = nghttp2_session_close_stream(session, frame->hd.stream_id,
|
|
|
|
NGHTTP2_NO_ERROR);
|
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return framerv;
|
2013-07-24 18:49:05 +02:00
|
|
|
}
|
2013-07-22 17:11:39 +02:00
|
|
|
case NGHTTP2_PRIORITY: {
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_predicate_priority_send(session, frame->hd.stream_id);
|
2014-02-18 16:45:20 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2013-07-22 17:11:39 +02:00
|
|
|
}
|
2014-04-01 14:59:26 +02:00
|
|
|
framerv = nghttp2_frame_pack_priority(&session->aob.framebufs,
|
|
|
|
&frame->priority);
|
|
|
|
if(framerv < 0) {
|
|
|
|
return framerv;
|
2013-07-22 17:11:39 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_RST_STREAM:
|
2014-04-01 14:59:26 +02:00
|
|
|
framerv = nghttp2_frame_pack_rst_stream(&session->aob.framebufs,
|
|
|
|
&frame->rst_stream);
|
|
|
|
if(framerv < 0) {
|
|
|
|
return framerv;
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
|
|
|
break;
|
2013-10-27 11:22:51 +01:00
|
|
|
case NGHTTP2_SETTINGS: {
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = nghttp2_session_predicate_settings_send(session, frame);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2013-10-27 11:22:51 +01:00
|
|
|
}
|
2014-04-01 14:59:26 +02:00
|
|
|
framerv = nghttp2_frame_pack_settings(&session->aob.framebufs,
|
|
|
|
&frame->settings);
|
|
|
|
if(framerv < 0) {
|
|
|
|
return framerv;
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
|
|
|
break;
|
2013-10-27 11:22:51 +01:00
|
|
|
}
|
2013-07-24 18:49:05 +02:00
|
|
|
case NGHTTP2_PUSH_PROMISE: {
|
|
|
|
nghttp2_stream *stream;
|
2014-02-24 16:26:12 +01:00
|
|
|
nghttp2_headers_aux_data *aux_data;
|
2014-03-25 18:04:24 +01:00
|
|
|
nghttp2_priority_spec pri_spec;
|
|
|
|
|
2014-02-24 16:26:12 +01:00
|
|
|
aux_data = (nghttp2_headers_aux_data*)item->aux_data;
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_predicate_push_promise_send(session, frame->hd.stream_id);
|
2014-02-18 16:45:20 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2013-07-24 18:49:05 +02:00
|
|
|
}
|
2014-05-07 16:24:07 +02:00
|
|
|
|
2014-04-01 14:59:26 +02:00
|
|
|
framerv = nghttp2_frame_pack_push_promise(&session->aob.framebufs,
|
|
|
|
&frame->push_promise,
|
|
|
|
&session->hd_deflater);
|
|
|
|
if(framerv < 0) {
|
|
|
|
return framerv;
|
2013-07-24 18:49:05 +02:00
|
|
|
}
|
2014-04-01 14:59:26 +02:00
|
|
|
framerv = session_headers_add_pad(session, frame);
|
|
|
|
if(framerv < 0) {
|
|
|
|
return framerv;
|
2014-02-15 08:30:43 +01:00
|
|
|
}
|
|
|
|
|
2013-07-24 18:49:05 +02:00
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
assert(stream);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
/* TODO It is unclear reserved stream dpeneds on associated
|
|
|
|
stream with or without exclusive flag set */
|
2014-04-14 16:53:54 +02:00
|
|
|
nghttp2_priority_spec_init(&pri_spec, stream->stream_id,
|
|
|
|
NGHTTP2_DEFAULT_WEIGHT, 0);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-02-24 16:26:12 +01:00
|
|
|
if(!nghttp2_session_open_stream
|
2013-07-24 18:49:05 +02:00
|
|
|
(session, frame->push_promise.promised_stream_id,
|
2014-01-09 15:00:26 +01:00
|
|
|
NGHTTP2_STREAM_FLAG_PUSH,
|
2014-03-25 18:04:24 +01:00
|
|
|
&pri_spec,
|
2013-07-24 18:49:05 +02:00
|
|
|
NGHTTP2_STREAM_RESERVED,
|
2014-02-24 16:26:12 +01:00
|
|
|
aux_data ?
|
|
|
|
aux_data->stream_user_data : NULL)) {
|
2013-07-24 18:49:05 +02:00
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_PING:
|
2014-04-01 14:59:26 +02:00
|
|
|
framerv = nghttp2_frame_pack_ping(&session->aob.framebufs,
|
|
|
|
&frame->ping);
|
|
|
|
if(framerv < 0) {
|
|
|
|
return framerv;
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_WINDOW_UPDATE: {
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_predicate_window_update_send(session, frame->hd.stream_id);
|
2014-02-18 16:45:20 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
2014-04-01 14:59:26 +02:00
|
|
|
framerv = nghttp2_frame_pack_window_update(&session->aob.framebufs,
|
|
|
|
&frame->window_update);
|
|
|
|
if(framerv < 0) {
|
|
|
|
return framerv;
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_GOAWAY:
|
|
|
|
if(session->goaway_flags & NGHTTP2_GOAWAY_SEND) {
|
2012-03-29 16:59:51 +02:00
|
|
|
/* TODO The spec does not mandate that both endpoints have to
|
2013-07-15 14:45:59 +02:00
|
|
|
exchange GOAWAY. This implementation allows receiver of
|
|
|
|
first GOAWAY can sent its own GOAWAY to tell the remote
|
|
|
|
peer that last-stream-id. */
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_GOAWAY_ALREADY_SENT;
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
2014-04-01 14:59:26 +02:00
|
|
|
framerv = nghttp2_frame_pack_goaway(&session->aob.framebufs,
|
|
|
|
&frame->goaway);
|
|
|
|
if(framerv < 0) {
|
|
|
|
return framerv;
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
2014-04-01 14:47:51 +02:00
|
|
|
break;
|
2014-06-09 16:16:54 +02:00
|
|
|
case NGHTTP2_EXT_ALTSVC:
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_predicate_altsvc_send(session, frame->hd.stream_id);
|
2014-04-10 16:27:10 +02:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-04-01 14:59:26 +02:00
|
|
|
framerv = nghttp2_frame_pack_altsvc(&session->aob.framebufs,
|
2014-06-09 16:16:54 +02:00
|
|
|
&frame->ext);
|
2014-04-01 14:47:51 +02:00
|
|
|
|
2014-04-01 14:59:26 +02:00
|
|
|
if(framerv < 0) {
|
|
|
|
return framerv;
|
2014-04-01 14:47:51 +02:00
|
|
|
}
|
|
|
|
|
2014-04-24 17:35:48 +02:00
|
|
|
break;
|
2014-06-09 16:16:54 +02:00
|
|
|
case NGHTTP2_EXT_BLOCKED:
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_predicate_blocked_send(session, frame->hd.stream_id);
|
2014-04-24 17:35:48 +02:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
framerv = nghttp2_frame_pack_blocked(&session->aob.framebufs,
|
2014-06-09 16:16:54 +02:00
|
|
|
&frame->ext);
|
2014-04-24 17:35:48 +02:00
|
|
|
|
|
|
|
if(framerv < 0) {
|
|
|
|
return framerv;
|
|
|
|
}
|
|
|
|
|
2012-03-29 16:59:51 +02:00
|
|
|
break;
|
|
|
|
default:
|
2014-03-10 18:15:05 +01:00
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
2012-01-28 11:22:38 +01:00
|
|
|
}
|
2014-03-10 18:15:05 +01:00
|
|
|
return 0;
|
2013-07-15 14:45:59 +02:00
|
|
|
} else if(item->frame_cat == NGHTTP2_CAT_DATA) {
|
2012-02-28 13:40:19 +01:00
|
|
|
size_t next_readmax;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream *stream;
|
2014-01-27 13:22:33 +01:00
|
|
|
nghttp2_private_data *data_frame;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
data_frame = nghttp2_outbound_item_get_data_frame(item);
|
2014-03-25 18:04:24 +01:00
|
|
|
stream = nghttp2_session_get_stream(session, data_frame->hd.stream_id);
|
|
|
|
|
2014-04-02 15:55:49 +02:00
|
|
|
if(stream) {
|
|
|
|
assert(stream->data_item == item);
|
2014-03-25 18:04:24 +01:00
|
|
|
}
|
|
|
|
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = nghttp2_session_predicate_data_send(session, data_frame->hd.stream_id);
|
|
|
|
if(rv != 0) {
|
2014-03-25 18:04:24 +01:00
|
|
|
int rv2;
|
|
|
|
|
|
|
|
if(stream) {
|
2014-05-08 16:07:29 +02:00
|
|
|
rv2 = nghttp2_stream_detach_data(stream, &session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv2)) {
|
|
|
|
return rv2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-18 16:45:20 +01:00
|
|
|
return rv;
|
2012-01-27 09:09:40 +01:00
|
|
|
}
|
2012-02-25 16:12:32 +01:00
|
|
|
/* Assuming stream is not NULL */
|
|
|
|
assert(stream);
|
2013-07-12 17:19:03 +02:00
|
|
|
next_readmax = nghttp2_session_next_data_read(session, stream);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2012-02-28 13:40:19 +01:00
|
|
|
if(next_readmax == 0) {
|
2014-04-24 17:35:48 +02:00
|
|
|
rv = session_consider_blocked(session, stream);
|
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-04-03 08:48:19 +02:00
|
|
|
rv = nghttp2_stream_defer_data(stream,
|
|
|
|
NGHTTP2_STREAM_FLAG_DEFERRED_FLOW_CONTROL,
|
2014-05-08 16:07:29 +02:00
|
|
|
&session->ob_pq, session->last_cycle);
|
2014-04-03 08:48:19 +02:00
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-02-11 10:43:45 +01:00
|
|
|
session->aob.item = NULL;
|
2014-05-08 16:37:56 +02:00
|
|
|
active_outbound_item_reset(&session->aob);
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_DEFERRED;
|
2012-02-25 16:12:32 +01:00
|
|
|
}
|
2014-04-01 14:59:26 +02:00
|
|
|
framerv = nghttp2_session_pack_data(session,
|
|
|
|
&session->aob.framebufs,
|
|
|
|
next_readmax,
|
|
|
|
data_frame);
|
|
|
|
if(framerv == NGHTTP2_ERR_DEFERRED) {
|
2014-04-03 08:48:19 +02:00
|
|
|
rv = nghttp2_stream_defer_data(stream, NGHTTP2_STREAM_FLAG_DEFERRED_USER,
|
2014-05-08 16:07:29 +02:00
|
|
|
&session->ob_pq, session->last_cycle);
|
2014-04-03 08:48:19 +02:00
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-02-11 10:43:45 +01:00
|
|
|
session->aob.item = NULL;
|
2014-05-08 16:37:56 +02:00
|
|
|
active_outbound_item_reset(&session->aob);
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_DEFERRED;
|
2014-02-18 16:45:20 +01:00
|
|
|
}
|
2014-04-01 14:59:26 +02:00
|
|
|
if(framerv == NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE) {
|
2014-05-08 16:07:29 +02:00
|
|
|
rv = nghttp2_stream_detach_data(stream, &session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = nghttp2_session_add_rst_stream(session, data_frame->hd.stream_id,
|
|
|
|
NGHTTP2_INTERNAL_ERROR);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2012-05-12 11:19:05 +02:00
|
|
|
}
|
2014-04-01 14:59:26 +02:00
|
|
|
return framerv;
|
2012-01-26 17:17:40 +01:00
|
|
|
}
|
2014-04-01 14:59:26 +02:00
|
|
|
if(framerv < 0) {
|
|
|
|
return framerv;
|
2014-03-10 18:15:05 +01:00
|
|
|
}
|
|
|
|
return 0;
|
2012-03-29 16:59:51 +02:00
|
|
|
} else {
|
|
|
|
/* Unreachable */
|
|
|
|
assert(0);
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_outbound_item* nghttp2_session_get_ob_pq_top
|
|
|
|
(nghttp2_session *session)
|
2012-01-26 17:17:40 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
return (nghttp2_outbound_item*)nghttp2_pq_top(&session->ob_pq);
|
2012-01-26 17:17:40 +01:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_outbound_item* nghttp2_session_get_next_ob_item
|
|
|
|
(nghttp2_session *session)
|
2012-02-05 16:14:19 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
if(nghttp2_pq_empty(&session->ob_pq)) {
|
|
|
|
if(nghttp2_pq_empty(&session->ob_ss_pq)) {
|
2012-02-05 16:14:19 +01:00
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
/* Return item only when concurrent connection limit is not
|
|
|
|
reached */
|
2014-05-08 16:37:56 +02:00
|
|
|
if(session_is_outgoing_concurrent_streams_max(session)) {
|
2012-02-05 16:14:19 +01:00
|
|
|
return NULL;
|
2012-02-08 15:45:48 +01:00
|
|
|
} else {
|
2013-07-12 17:19:03 +02:00
|
|
|
return nghttp2_pq_top(&session->ob_ss_pq);
|
2012-02-05 16:14:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2013-07-12 17:19:03 +02:00
|
|
|
if(nghttp2_pq_empty(&session->ob_ss_pq)) {
|
|
|
|
return nghttp2_pq_top(&session->ob_pq);
|
2012-02-05 16:14:19 +01:00
|
|
|
} else {
|
2013-07-25 14:18:13 +02:00
|
|
|
nghttp2_outbound_item *item, *headers_item;
|
2013-07-12 17:19:03 +02:00
|
|
|
item = nghttp2_pq_top(&session->ob_pq);
|
2013-07-25 14:18:13 +02:00
|
|
|
headers_item = nghttp2_pq_top(&session->ob_ss_pq);
|
2014-05-08 16:37:56 +02:00
|
|
|
if(session_is_outgoing_concurrent_streams_max(session) ||
|
2014-03-25 18:04:24 +01:00
|
|
|
item->weight > headers_item->weight ||
|
|
|
|
(item->weight == headers_item->weight &&
|
2013-07-25 14:18:13 +02:00
|
|
|
item->seq < headers_item->seq)) {
|
2012-02-05 16:14:19 +01:00
|
|
|
return item;
|
|
|
|
} else {
|
2013-07-25 14:18:13 +02:00
|
|
|
return headers_item;
|
2012-02-05 16:14:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_outbound_item* nghttp2_session_pop_next_ob_item
|
|
|
|
(nghttp2_session *session)
|
2012-02-05 16:14:19 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
if(nghttp2_pq_empty(&session->ob_pq)) {
|
|
|
|
if(nghttp2_pq_empty(&session->ob_ss_pq)) {
|
2012-02-05 16:14:19 +01:00
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
/* Pop item only when concurrent connection limit is not
|
|
|
|
reached */
|
2014-05-08 16:37:56 +02:00
|
|
|
if(session_is_outgoing_concurrent_streams_max(session)) {
|
2012-02-08 15:45:48 +01:00
|
|
|
return NULL;
|
|
|
|
} else {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_outbound_item *item;
|
|
|
|
item = nghttp2_pq_top(&session->ob_ss_pq);
|
|
|
|
nghttp2_pq_pop(&session->ob_ss_pq);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
item->queued = 0;
|
|
|
|
|
2012-02-05 16:14:19 +01:00
|
|
|
return item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2013-07-12 17:19:03 +02:00
|
|
|
if(nghttp2_pq_empty(&session->ob_ss_pq)) {
|
|
|
|
nghttp2_outbound_item *item;
|
|
|
|
item = nghttp2_pq_top(&session->ob_pq);
|
|
|
|
nghttp2_pq_pop(&session->ob_pq);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
item->queued = 0;
|
|
|
|
|
2012-02-05 16:14:19 +01:00
|
|
|
return item;
|
|
|
|
} else {
|
2013-07-25 14:18:13 +02:00
|
|
|
nghttp2_outbound_item *item, *headers_item;
|
2013-07-12 17:19:03 +02:00
|
|
|
item = nghttp2_pq_top(&session->ob_pq);
|
2013-07-25 14:18:13 +02:00
|
|
|
headers_item = nghttp2_pq_top(&session->ob_ss_pq);
|
2014-05-08 16:37:56 +02:00
|
|
|
if(session_is_outgoing_concurrent_streams_max(session) ||
|
2014-03-25 18:04:24 +01:00
|
|
|
item->weight > headers_item->weight ||
|
|
|
|
(item->weight == headers_item->weight &&
|
2013-07-25 14:18:13 +02:00
|
|
|
item->seq < headers_item->seq)) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_pq_pop(&session->ob_pq);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
item->queued = 0;
|
|
|
|
|
2012-02-05 16:14:19 +01:00
|
|
|
return item;
|
|
|
|
} else {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_pq_pop(&session->ob_ss_pq);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
headers_item->queued = 0;
|
|
|
|
|
2013-07-25 14:18:13 +02:00
|
|
|
return headers_item;
|
2012-02-05 16:14:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-27 15:28:45 +01:00
|
|
|
static int session_call_before_frame_send(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
if(session->callbacks.before_frame_send_callback) {
|
|
|
|
rv = session->callbacks.before_frame_send_callback(session, frame,
|
|
|
|
session->user_data);
|
|
|
|
if(rv != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-27 14:13:41 +01:00
|
|
|
static int session_call_on_frame_send(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
if(session->callbacks.on_frame_send_callback) {
|
|
|
|
rv = session->callbacks.on_frame_send_callback(session, frame,
|
|
|
|
session->user_data);
|
|
|
|
if(rv != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:07:29 +02:00
|
|
|
static void session_outbound_item_cycle_weight(nghttp2_session *session,
|
|
|
|
nghttp2_outbound_item *item,
|
|
|
|
int32_t ini_weight)
|
2014-03-25 18:04:24 +01:00
|
|
|
{
|
2014-04-01 15:54:20 +02:00
|
|
|
if(item->weight == NGHTTP2_MIN_WEIGHT || item->weight > ini_weight) {
|
2014-05-08 16:07:29 +02:00
|
|
|
|
2014-03-25 18:04:24 +01:00
|
|
|
item->weight = ini_weight;
|
2014-05-08 16:07:29 +02:00
|
|
|
|
|
|
|
if(item->cycle == session->last_cycle) {
|
|
|
|
item->cycle = ++session->last_cycle;
|
|
|
|
} else {
|
|
|
|
item->cycle = session->last_cycle;
|
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
} else {
|
|
|
|
--item->weight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-23 14:49:08 +01:00
|
|
|
/*
|
|
|
|
* Called after a frame is sent.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_NOMEM
|
2012-02-23 14:49:08 +01:00
|
|
|
* Out of memory.
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_CALLBACK_FAILURE
|
2012-02-23 14:49:08 +01:00
|
|
|
* The callback function failed.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_after_frame_sent(nghttp2_session *session)
|
2012-01-25 17:04:01 +01:00
|
|
|
{
|
2014-01-27 15:00:08 +01:00
|
|
|
int rv;
|
2014-03-10 17:47:38 +01:00
|
|
|
nghttp2_active_outbound_item *aob = &session->aob;
|
|
|
|
nghttp2_outbound_item *item = aob->item;
|
2014-03-13 14:11:02 +01:00
|
|
|
nghttp2_bufs *framebufs = &aob->framebufs;
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
if(item->frame_cat == NGHTTP2_CAT_CTRL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame *frame;
|
2014-03-10 17:47:38 +01:00
|
|
|
|
|
|
|
frame = nghttp2_outbound_item_get_ctrl_frame(item);
|
|
|
|
|
2014-01-26 14:01:27 +01:00
|
|
|
if(frame->hd.type == NGHTTP2_HEADERS ||
|
|
|
|
frame->hd.type == NGHTTP2_PUSH_PROMISE) {
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-03-13 14:11:02 +01:00
|
|
|
if(nghttp2_bufs_next_present(framebufs)) {
|
|
|
|
framebufs->cur = framebufs->cur->next;
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "send: next CONTINUATION frame, %zu bytes\n",
|
2014-03-13 14:11:02 +01:00
|
|
|
nghttp2_buf_len(&framebufs->cur->buf)));
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-01-26 14:01:27 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2014-01-27 15:00:08 +01:00
|
|
|
rv = session_call_on_frame_send(session, frame);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
2012-01-27 20:28:39 +01:00
|
|
|
}
|
2013-07-15 14:45:59 +02:00
|
|
|
switch(frame->hd.type) {
|
|
|
|
case NGHTTP2_HEADERS: {
|
2014-01-27 15:00:08 +01:00
|
|
|
nghttp2_headers_aux_data *aux_data;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream *stream =
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_session_get_stream(session, frame->hd.stream_id);
|
2014-01-27 15:00:08 +01:00
|
|
|
if(!stream) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch(frame->headers.cat) {
|
|
|
|
case NGHTTP2_HCAT_REQUEST: {
|
|
|
|
stream->state = NGHTTP2_STREAM_OPENING;
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_WR);
|
2012-01-30 15:55:00 +01:00
|
|
|
}
|
2014-01-27 15:00:08 +01:00
|
|
|
rv = nghttp2_session_close_stream_if_shut_rdwr(session, stream);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
/* We assume aux_data is a pointer to nghttp2_headers_aux_data */
|
|
|
|
aux_data = (nghttp2_headers_aux_data*)item->aux_data;
|
|
|
|
if(aux_data && aux_data->data_prd) {
|
|
|
|
/* nghttp2_submit_data() makes a copy of aux_data->data_prd */
|
|
|
|
rv = nghttp2_submit_data(session, NGHTTP2_FLAG_END_STREAM,
|
|
|
|
frame->hd.stream_id, aux_data->data_prd);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
2013-07-15 14:45:59 +02:00
|
|
|
}
|
2014-04-02 15:55:49 +02:00
|
|
|
/* TODO nghttp2_submit_data() may fail if stream has already
|
|
|
|
DATA frame item. We might have to handle it here. */
|
2014-01-27 15:00:08 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case NGHTTP2_HCAT_PUSH_RESPONSE:
|
2014-02-20 14:59:29 +01:00
|
|
|
++session->num_outgoing_streams;
|
|
|
|
/* Fall through */
|
|
|
|
case NGHTTP2_HCAT_RESPONSE:
|
2014-01-27 15:00:08 +01:00
|
|
|
stream->state = NGHTTP2_STREAM_OPENED;
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_WR);
|
|
|
|
}
|
|
|
|
rv = nghttp2_session_close_stream_if_shut_rdwr(session, stream);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
/* We assume aux_data is a pointer to nghttp2_headers_aux_data */
|
|
|
|
aux_data = (nghttp2_headers_aux_data*)item->aux_data;
|
|
|
|
if(aux_data && aux_data->data_prd) {
|
|
|
|
rv = nghttp2_submit_data(session, NGHTTP2_FLAG_END_STREAM,
|
|
|
|
frame->hd.stream_id, aux_data->data_prd);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
2013-08-29 15:58:05 +02:00
|
|
|
}
|
2014-05-06 11:34:48 +02:00
|
|
|
/* TODO nghttp2_submit_data() may fail if stream has already
|
|
|
|
DATA frame item. We might have to handle it here. */
|
2014-01-27 15:00:08 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NGHTTP2_HCAT_HEADERS:
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_WR);
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
2014-01-27 15:00:08 +01:00
|
|
|
rv = nghttp2_session_close_stream_if_shut_rdwr(session, stream);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
break;
|
2012-01-28 16:08:51 +01:00
|
|
|
}
|
2012-03-29 16:59:51 +02:00
|
|
|
break;
|
|
|
|
}
|
2014-01-09 15:30:45 +01:00
|
|
|
case NGHTTP2_PRIORITY: {
|
|
|
|
nghttp2_stream *stream;
|
2014-06-07 11:36:58 +02:00
|
|
|
stream = nghttp2_session_get_stream_raw(session, frame->hd.stream_id);
|
2014-01-09 15:30:45 +01:00
|
|
|
if(!stream) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Only update priority of the stream, only if it is not pushed
|
|
|
|
stream and is initiated by local peer, or it is pushed stream
|
|
|
|
and is initiated by remote peer */
|
|
|
|
if(((stream->flags & NGHTTP2_STREAM_FLAG_PUSH) == 0 &&
|
|
|
|
nghttp2_session_is_my_stream_id(session, frame->hd.stream_id)) ||
|
|
|
|
((stream->flags & NGHTTP2_STREAM_FLAG_PUSH) &&
|
|
|
|
!nghttp2_session_is_my_stream_id(session, frame->hd.stream_id))) {
|
2014-03-25 18:04:24 +01:00
|
|
|
rv = nghttp2_session_reprioritize_stream(session, stream,
|
|
|
|
&frame->priority.pri_spec);
|
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-01-09 15:30:45 +01:00
|
|
|
}
|
2013-07-22 17:11:39 +02:00
|
|
|
break;
|
2014-01-09 15:30:45 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_RST_STREAM:
|
2014-01-27 15:00:08 +01:00
|
|
|
rv = nghttp2_session_close_stream(session, frame->hd.stream_id,
|
2013-08-29 15:58:05 +02:00
|
|
|
frame->rst_stream.error_code);
|
2014-01-27 15:00:08 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
2013-08-29 15:58:05 +02:00
|
|
|
}
|
2012-03-29 16:59:51 +02:00
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_GOAWAY:
|
|
|
|
session->goaway_flags |= NGHTTP2_GOAWAY_SEND;
|
2012-03-29 16:59:51 +02:00
|
|
|
break;
|
2014-05-09 17:13:40 +02:00
|
|
|
default:
|
2014-04-24 17:35:48 +02:00
|
|
|
break;
|
2012-02-23 16:02:29 +01:00
|
|
|
}
|
2014-05-08 16:37:56 +02:00
|
|
|
active_outbound_item_reset(&session->aob);
|
2014-01-27 15:00:08 +01:00
|
|
|
return 0;
|
2013-07-15 14:45:59 +02:00
|
|
|
} else if(item->frame_cat == NGHTTP2_CAT_DATA) {
|
2014-01-27 13:22:33 +01:00
|
|
|
nghttp2_private_data *data_frame;
|
2014-01-27 15:00:08 +01:00
|
|
|
nghttp2_outbound_item* next_item;
|
2014-02-07 15:22:17 +01:00
|
|
|
nghttp2_stream *stream;
|
2014-01-27 14:13:41 +01:00
|
|
|
|
2014-03-10 17:47:38 +01:00
|
|
|
data_frame = nghttp2_outbound_item_get_data_frame(aob->item);
|
2014-02-07 15:22:17 +01:00
|
|
|
stream = nghttp2_session_get_stream(session, data_frame->hd.stream_id);
|
|
|
|
/* We update flow control window after a frame was completely
|
|
|
|
sent. This is possible because we choose payload length not to
|
|
|
|
exceed the window */
|
2014-02-09 10:26:46 +01:00
|
|
|
session->remote_window_size -= data_frame->hd.length;
|
2014-02-07 15:22:17 +01:00
|
|
|
if(stream) {
|
2014-02-09 10:26:46 +01:00
|
|
|
stream->remote_window_size -= data_frame->hd.length;
|
2014-02-07 15:22:17 +01:00
|
|
|
}
|
|
|
|
|
2014-01-27 14:13:41 +01:00
|
|
|
if(session->callbacks.on_frame_send_callback) {
|
2014-01-27 15:28:45 +01:00
|
|
|
nghttp2_frame public_data_frame;
|
|
|
|
nghttp2_frame_data_init(&public_data_frame.data, data_frame);
|
2014-01-27 15:00:08 +01:00
|
|
|
rv = session_call_on_frame_send(session, &public_data_frame);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
2013-08-29 14:55:04 +02:00
|
|
|
}
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
2014-02-07 15:22:17 +01:00
|
|
|
|
2014-03-25 18:04:24 +01:00
|
|
|
if(stream && data_frame->eof) {
|
2014-05-08 16:07:29 +02:00
|
|
|
rv = nghttp2_stream_detach_data(stream, &session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-02-07 15:22:17 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
2012-01-27 09:22:17 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
if(data_frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_WR);
|
|
|
|
|
|
|
|
rv = nghttp2_session_close_stream_if_shut_rdwr(session, stream);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
/* stream may be NULL if it was closed */
|
|
|
|
}
|
2012-01-26 17:17:40 +01:00
|
|
|
}
|
2012-02-14 17:07:51 +01:00
|
|
|
/* If session is closed or RST_STREAM was queued, we won't send
|
|
|
|
further data. */
|
2012-03-29 16:59:51 +02:00
|
|
|
if(data_frame->eof ||
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_session_predicate_data_send(session,
|
2013-07-15 14:45:59 +02:00
|
|
|
data_frame->hd.stream_id) != 0) {
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
active_outbound_item_reset(aob);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-01-27 15:00:08 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-02-07 15:22:17 +01:00
|
|
|
/* Assuming stream is not NULL */
|
|
|
|
assert(stream);
|
2014-01-27 15:00:08 +01:00
|
|
|
next_item = nghttp2_session_get_next_ob_item(session);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-05-08 16:07:29 +02:00
|
|
|
session_outbound_item_cycle_weight(session, aob->item,
|
|
|
|
stream->effective_weight);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-01-27 15:00:08 +01:00
|
|
|
/* If priority of this stream is higher or equal to other stream
|
|
|
|
waiting at the top of the queue, we continue to send this
|
|
|
|
data. */
|
2014-03-25 18:04:24 +01:00
|
|
|
if(stream->dpri == NGHTTP2_STREAM_DPRI_TOP &&
|
2014-05-08 16:37:56 +02:00
|
|
|
(next_item == NULL || outbound_item_compar(item, next_item) < 0)) {
|
2014-01-27 15:00:08 +01:00
|
|
|
size_t next_readmax;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-01-27 15:00:08 +01:00
|
|
|
next_readmax = nghttp2_session_next_data_read(session, stream);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-01-27 15:00:08 +01:00
|
|
|
if(next_readmax == 0) {
|
2014-04-24 17:35:48 +02:00
|
|
|
rv = session_consider_blocked(session, stream);
|
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-04-03 08:48:19 +02:00
|
|
|
rv = nghttp2_stream_defer_data
|
2014-05-08 16:07:29 +02:00
|
|
|
(stream, NGHTTP2_STREAM_FLAG_DEFERRED_FLOW_CONTROL, &session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-04-03 08:48:19 +02:00
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-03-10 17:47:38 +01:00
|
|
|
aob->item = NULL;
|
2014-05-08 16:37:56 +02:00
|
|
|
active_outbound_item_reset(aob);
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-01-27 15:00:08 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2014-03-13 14:11:02 +01:00
|
|
|
|
|
|
|
nghttp2_bufs_reset(framebufs);
|
|
|
|
|
|
|
|
rv = nghttp2_session_pack_data(session, framebufs, next_readmax,
|
2014-01-27 15:00:08 +01:00
|
|
|
data_frame);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
if(rv == NGHTTP2_ERR_DEFERRED) {
|
2014-04-03 08:48:19 +02:00
|
|
|
rv = nghttp2_stream_defer_data(stream,
|
|
|
|
NGHTTP2_STREAM_FLAG_DEFERRED_USER,
|
2014-05-08 16:07:29 +02:00
|
|
|
&session->ob_pq, session->last_cycle);
|
2014-04-03 08:48:19 +02:00
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-03-10 17:47:38 +01:00
|
|
|
aob->item = NULL;
|
2014-05-08 16:37:56 +02:00
|
|
|
active_outbound_item_reset(aob);
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-01-27 15:00:08 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(rv == NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE) {
|
|
|
|
/* Stop DATA frame chain and issue RST_STREAM to close the
|
|
|
|
stream. We don't return
|
|
|
|
NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE intentionally. */
|
|
|
|
rv = nghttp2_session_add_rst_stream(session,
|
|
|
|
data_frame->hd.stream_id,
|
|
|
|
NGHTTP2_INTERNAL_ERROR);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:07:29 +02:00
|
|
|
rv = nghttp2_stream_detach_data(stream, &session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-01-27 15:00:08 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
2012-02-05 16:14:19 +01:00
|
|
|
}
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
active_outbound_item_reset(aob);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-01-27 15:00:08 +01:00
|
|
|
return 0;
|
2012-01-26 17:17:40 +01:00
|
|
|
}
|
2014-04-01 14:59:26 +02:00
|
|
|
assert(rv == 0);
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-01-27 15:00:08 +01:00
|
|
|
return 0;
|
2012-01-26 17:17:40 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
if(stream->dpri == NGHTTP2_STREAM_DPRI_TOP) {
|
|
|
|
rv = nghttp2_pq_push(&session->ob_pq, aob->item);
|
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
aob->item->queued = 1;
|
2014-01-27 15:00:08 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-03-10 17:47:38 +01:00
|
|
|
aob->item = NULL;
|
2014-05-08 16:37:56 +02:00
|
|
|
active_outbound_item_reset(&session->aob);
|
2014-01-27 15:00:08 +01:00
|
|
|
return 0;
|
2012-01-26 17:17:40 +01:00
|
|
|
}
|
2014-01-27 15:00:08 +01:00
|
|
|
/* Unreachable */
|
|
|
|
assert(0);
|
2012-01-25 17:04:01 +01:00
|
|
|
}
|
|
|
|
|
2014-02-18 15:23:11 +01:00
|
|
|
ssize_t nghttp2_session_mem_send(nghttp2_session *session,
|
|
|
|
const uint8_t **data_ptr)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2014-02-18 15:23:11 +01:00
|
|
|
int rv;
|
2014-03-10 17:47:38 +01:00
|
|
|
nghttp2_active_outbound_item *aob;
|
2014-03-13 14:11:02 +01:00
|
|
|
nghttp2_bufs *framebufs;
|
2014-03-10 17:47:38 +01:00
|
|
|
|
|
|
|
aob = &session->aob;
|
2014-03-13 14:11:02 +01:00
|
|
|
framebufs = &aob->framebufs;
|
2014-02-18 15:23:11 +01:00
|
|
|
|
|
|
|
*data_ptr = NULL;
|
|
|
|
for(;;) {
|
2014-03-10 17:47:38 +01:00
|
|
|
switch(aob->state) {
|
2014-02-18 15:23:11 +01:00
|
|
|
case NGHTTP2_OB_POP_ITEM: {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_outbound_item *item;
|
2014-02-18 15:23:11 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
item = nghttp2_session_pop_next_ob_item(session);
|
2012-02-05 16:14:19 +01:00
|
|
|
if(item == NULL) {
|
2014-02-18 15:23:11 +01:00
|
|
|
return 0;
|
2012-02-05 16:14:19 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
if(item->frame_cat == NGHTTP2_CAT_DATA) {
|
|
|
|
nghttp2_private_data *data;
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
|
|
|
|
data = nghttp2_outbound_item_get_data_frame(item);
|
|
|
|
|
|
|
|
stream = nghttp2_session_get_stream(session, data->hd.stream_id);
|
|
|
|
|
|
|
|
if(stream && stream->dpri != NGHTTP2_STREAM_DPRI_TOP) {
|
|
|
|
/* We have DATA with higher priority in queue within the
|
|
|
|
same dependency tree. */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_prep_frame(session, item);
|
2014-03-10 18:15:05 +01:00
|
|
|
if(rv == NGHTTP2_ERR_DEFERRED) {
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "send: frame transmission deferred\n"));
|
2014-02-18 15:23:11 +01:00
|
|
|
break;
|
2014-01-26 14:01:27 +01:00
|
|
|
}
|
2014-03-10 18:15:05 +01:00
|
|
|
if(rv < 0) {
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "send: frame preparation failed with %s\n",
|
2014-03-10 18:15:05 +01:00
|
|
|
nghttp2_strerror(rv)));
|
2013-07-19 17:21:07 +02:00
|
|
|
/* TODO If the error comes from compressor, the connection
|
|
|
|
must be closed. */
|
2013-07-15 14:45:59 +02:00
|
|
|
if(item->frame_cat == NGHTTP2_CAT_CTRL &&
|
|
|
|
session->callbacks.on_frame_not_send_callback &&
|
2014-05-08 16:37:56 +02:00
|
|
|
is_non_fatal(rv)) {
|
2012-03-29 16:59:51 +02:00
|
|
|
/* The library is responsible for the transmission of
|
|
|
|
WINDOW_UPDATE frame, so we don't call error callback for
|
|
|
|
it. */
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_frame *frame = nghttp2_outbound_item_get_ctrl_frame(item);
|
|
|
|
if(frame->hd.type != NGHTTP2_WINDOW_UPDATE) {
|
2013-08-29 14:51:58 +02:00
|
|
|
if(session->callbacks.on_frame_not_send_callback
|
2014-03-10 18:15:05 +01:00
|
|
|
(session, frame, rv, session->user_data) != 0) {
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
nghttp2_outbound_item_free(item);
|
|
|
|
free(item);
|
|
|
|
|
2013-08-29 14:51:58 +02:00
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
2012-03-07 16:18:18 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_outbound_item_free(item);
|
2012-01-24 14:02:24 +01:00
|
|
|
free(item);
|
2014-05-08 16:37:56 +02:00
|
|
|
active_outbound_item_reset(aob);
|
2013-07-15 14:45:59 +02:00
|
|
|
|
2014-03-10 18:15:05 +01:00
|
|
|
if(rv == NGHTTP2_ERR_HEADER_COMP) {
|
2013-08-19 17:12:29 +02:00
|
|
|
/* If header compression error occurred, should terminiate
|
|
|
|
connection. */
|
2014-03-10 18:15:05 +01:00
|
|
|
rv = nghttp2_session_terminate_session(session,
|
|
|
|
NGHTTP2_INTERNAL_ERROR);
|
2013-07-23 15:47:15 +02:00
|
|
|
}
|
2014-03-10 18:15:05 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
2012-01-28 11:22:38 +01:00
|
|
|
}
|
2014-02-18 15:23:11 +01:00
|
|
|
break;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-03-10 17:47:38 +01:00
|
|
|
aob->item = item;
|
2014-01-26 14:01:27 +01:00
|
|
|
|
2014-03-13 14:11:02 +01:00
|
|
|
nghttp2_bufs_rewind(framebufs);
|
|
|
|
|
2014-01-26 14:01:27 +01:00
|
|
|
if(item->frame_cat == NGHTTP2_CAT_CTRL) {
|
2014-03-10 17:47:38 +01:00
|
|
|
nghttp2_frame *frame;
|
|
|
|
|
|
|
|
frame = nghttp2_outbound_item_get_ctrl_frame(item);
|
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr,
|
|
|
|
"send: next frame: payloadlen=%zu, type=%u, "
|
|
|
|
"flags=0x%02x, stream_id=%d\n",
|
|
|
|
frame->hd.length, frame->hd.type, frame->hd.flags,
|
|
|
|
frame->hd.stream_id));
|
|
|
|
|
2014-02-18 15:23:11 +01:00
|
|
|
rv = session_call_before_frame_send(session, frame);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
2013-08-29 14:45:10 +02:00
|
|
|
}
|
2014-03-19 16:27:39 +01:00
|
|
|
} else {
|
|
|
|
DEBUGF(fprintf(stderr, "send: next frame: DATA\n"));
|
2012-01-28 09:25:14 +01:00
|
|
|
}
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr,
|
|
|
|
"send: start transmitting frame type=%u, length=%zd\n",
|
2014-03-13 14:11:02 +01:00
|
|
|
framebufs->cur->buf.pos[2],
|
|
|
|
framebufs->cur->buf.last - framebufs->cur->buf.pos));
|
2014-03-10 17:47:38 +01:00
|
|
|
|
|
|
|
aob->state = NGHTTP2_OB_SEND_DATA;
|
|
|
|
|
2014-02-18 15:23:11 +01:00
|
|
|
break;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-02-18 15:23:11 +01:00
|
|
|
case NGHTTP2_OB_SEND_DATA: {
|
|
|
|
size_t datalen;
|
2014-03-13 14:11:02 +01:00
|
|
|
nghttp2_buf *buf;
|
|
|
|
|
|
|
|
buf = &framebufs->cur->buf;
|
2014-02-18 15:23:11 +01:00
|
|
|
|
2014-03-13 14:11:02 +01:00
|
|
|
if(buf->pos == buf->last) {
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "send: end transmission of a frame\n"));
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-02-18 15:23:11 +01:00
|
|
|
/* Frame has completely sent */
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_after_frame_sent(session);
|
2014-02-18 15:23:11 +01:00
|
|
|
if(rv < 0) {
|
|
|
|
/* FATAL */
|
|
|
|
assert(nghttp2_is_fatal(rv));
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
/* We have already adjusted the next state */
|
|
|
|
break;
|
|
|
|
}
|
2014-02-07 15:22:17 +01:00
|
|
|
|
2014-03-13 14:11:02 +01:00
|
|
|
*data_ptr = buf->pos;
|
|
|
|
datalen = nghttp2_buf_len(buf);
|
|
|
|
|
2014-02-18 15:23:11 +01:00
|
|
|
/* We increment the offset here. If send_callback does not send
|
|
|
|
everything, we will adjust it. */
|
2014-03-13 14:11:02 +01:00
|
|
|
buf->pos += datalen;
|
2014-02-18 15:23:11 +01:00
|
|
|
|
|
|
|
return datalen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int nghttp2_session_send(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
const uint8_t *data;
|
|
|
|
ssize_t datalen;
|
|
|
|
ssize_t sentlen;
|
2014-03-13 14:11:02 +01:00
|
|
|
nghttp2_bufs *framebufs;
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-03-13 14:11:02 +01:00
|
|
|
framebufs = &session->aob.framebufs;
|
2014-02-18 15:23:11 +01:00
|
|
|
|
|
|
|
for(;;) {
|
|
|
|
datalen = nghttp2_session_mem_send(session, &data);
|
|
|
|
if(datalen <= 0) {
|
|
|
|
return datalen;
|
|
|
|
}
|
2012-01-24 14:56:26 +01:00
|
|
|
sentlen = session->callbacks.send_callback(session, data, datalen, 0,
|
2012-01-24 14:02:24 +01:00
|
|
|
session->user_data);
|
|
|
|
if(sentlen < 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
if(sentlen == NGHTTP2_ERR_WOULDBLOCK) {
|
2014-02-18 15:23:11 +01:00
|
|
|
/* Transmission canceled. Rewind the offset */
|
2014-03-13 14:11:02 +01:00
|
|
|
framebufs->cur->buf.pos -= datalen;
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2012-01-24 14:02:24 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2014-02-18 15:23:11 +01:00
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-02-18 15:23:11 +01:00
|
|
|
/* Rewind the offset to the amount of unsent bytes */
|
2014-03-13 14:11:02 +01:00
|
|
|
framebufs->cur->buf.pos -= datalen - sentlen;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
static ssize_t session_recv(nghttp2_session *session, uint8_t *buf, size_t len)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
ssize_t rv;
|
|
|
|
rv = session->callbacks.recv_callback(session, buf, len, 0,
|
|
|
|
session->user_data);
|
|
|
|
if(rv > 0) {
|
|
|
|
if((size_t)rv > len) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-02-18 16:45:20 +01:00
|
|
|
} else if(rv < 0 && rv != NGHTTP2_ERR_WOULDBLOCK && rv != NGHTTP2_ERR_EOF) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-02-18 16:45:20 +01:00
|
|
|
return rv;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_call_on_frame_received
|
2013-07-15 14:45:59 +02:00
|
|
|
(nghttp2_session *session, nghttp2_frame *frame)
|
2012-01-25 13:31:28 +01:00
|
|
|
{
|
2013-08-29 14:03:39 +02:00
|
|
|
int rv;
|
2013-07-15 14:45:59 +02:00
|
|
|
if(session->callbacks.on_frame_recv_callback) {
|
2013-08-29 14:03:39 +02:00
|
|
|
rv = session->callbacks.on_frame_recv_callback(session, frame,
|
|
|
|
session->user_data);
|
2014-01-16 15:41:13 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-29 13:23:13 +01:00
|
|
|
static int session_call_on_begin_headers(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
|
|
|
{
|
|
|
|
int rv;
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: call on_begin_headers callback stream_id=%d\n",
|
2014-01-29 13:23:13 +01:00
|
|
|
frame->hd.stream_id));
|
|
|
|
if(session->callbacks.on_begin_headers_callback) {
|
|
|
|
rv = session->callbacks.on_begin_headers_callback(session, frame,
|
|
|
|
session->user_data);
|
|
|
|
if(rv != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-16 15:41:13 +01:00
|
|
|
static int session_call_on_header(nghttp2_session *session,
|
|
|
|
const nghttp2_frame *frame,
|
|
|
|
const nghttp2_nv *nv)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
if(session->callbacks.on_header_callback) {
|
|
|
|
rv = session->callbacks.on_header_callback(session, frame,
|
|
|
|
nv->name, nv->namelen,
|
|
|
|
nv->value, nv->valuelen,
|
2014-04-01 19:10:35 +02:00
|
|
|
nv->flags,
|
2014-01-16 15:41:13 +01:00
|
|
|
session->user_data);
|
2014-01-27 17:17:23 +01:00
|
|
|
if(rv == NGHTTP2_ERR_PAUSE ||
|
|
|
|
rv == NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE) {
|
2013-09-28 10:59:24 +02:00
|
|
|
return rv;
|
|
|
|
}
|
2013-08-29 14:03:39 +02:00
|
|
|
if(rv != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
2012-01-25 13:31:28 +01:00
|
|
|
}
|
2013-08-29 14:03:39 +02:00
|
|
|
return 0;
|
2012-01-25 13:31:28 +01:00
|
|
|
}
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
/*
|
|
|
|
* Handles frame size error.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
*/
|
|
|
|
static int session_handle_frame_size_error(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
|
|
|
{
|
|
|
|
/* TODO Currently no callback is called for this error, because we
|
|
|
|
call this callback before reading any payload */
|
|
|
|
return nghttp2_session_terminate_session(session, NGHTTP2_FRAME_SIZE_ERROR);
|
2013-07-21 11:23:50 +02:00
|
|
|
}
|
2012-02-15 14:11:42 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_handle_invalid_stream
|
2013-07-12 17:19:03 +02:00
|
|
|
(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame,
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_error_code error_code)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
|
|
|
rv = nghttp2_session_add_rst_stream(session, frame->hd.stream_id, error_code);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2012-01-25 13:31:28 +01:00
|
|
|
}
|
2013-07-15 14:45:59 +02:00
|
|
|
if(session->callbacks.on_invalid_frame_recv_callback) {
|
2013-08-29 14:12:43 +02:00
|
|
|
if(session->callbacks.on_invalid_frame_recv_callback
|
|
|
|
(session, frame, error_code, session->user_data) != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
2012-01-25 13:31:28 +01:00
|
|
|
}
|
2012-01-25 15:46:07 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_inflate_handle_invalid_stream
|
2014-01-16 15:41:13 +01:00
|
|
|
(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame,
|
|
|
|
nghttp2_error_code error_code)
|
|
|
|
{
|
|
|
|
int rv;
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_handle_invalid_stream(session, frame, error_code);
|
2014-01-17 15:49:40 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
2014-01-16 15:41:13 +01:00
|
|
|
return rv;
|
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
return NGHTTP2_ERR_IGN_HEADER_BLOCK;
|
2014-01-16 15:41:13 +01:00
|
|
|
}
|
|
|
|
|
2013-07-21 11:20:23 +02:00
|
|
|
/*
|
|
|
|
* Handles invalid frame which causes connection error.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_handle_invalid_connection
|
2013-07-21 11:20:23 +02:00
|
|
|
(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame,
|
|
|
|
nghttp2_error_code error_code)
|
|
|
|
{
|
|
|
|
if(session->callbacks.on_invalid_frame_recv_callback) {
|
2013-08-29 14:12:43 +02:00
|
|
|
if(session->callbacks.on_invalid_frame_recv_callback
|
|
|
|
(session, frame, error_code, session->user_data) != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
2013-07-21 11:20:23 +02:00
|
|
|
}
|
2013-12-25 16:23:07 +01:00
|
|
|
return nghttp2_session_terminate_session(session, error_code);
|
2013-07-21 11:20:23 +02:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_inflate_handle_invalid_connection
|
2014-01-16 15:41:13 +01:00
|
|
|
(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame,
|
|
|
|
nghttp2_error_code error_code)
|
|
|
|
{
|
|
|
|
int rv;
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_handle_invalid_connection(session, frame, error_code);
|
2014-01-17 15:49:40 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
2014-01-16 15:41:13 +01:00
|
|
|
return rv;
|
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
return NGHTTP2_ERR_IGN_HEADER_BLOCK;
|
2014-01-16 15:41:13 +01:00
|
|
|
}
|
|
|
|
|
2014-03-10 17:47:38 +01:00
|
|
|
/*
|
|
|
|
* Inflates header block in the memory pointed by |in| with |inlen|
|
|
|
|
* bytes. If this function returns NGHTTP2_ERR_PAUSE, the caller must
|
|
|
|
* call this function again, until it returns 0 or one of negative
|
|
|
|
* error code. If |call_header_cb| is zero, the on_header_callback
|
|
|
|
* are not invoked and the function never return NGHTTP2_ERR_PAUSE. If
|
|
|
|
* the given |in| is the last chunk of header block, the |final| must
|
|
|
|
* be nonzero. If header block is successfully processed (which is
|
|
|
|
* indicated by the return value 0, NGHTTP2_ERR_PAUSE or
|
|
|
|
* NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE), the number of processed
|
|
|
|
* input bytes is assigned to the |*readlen_ptr|.
|
|
|
|
*
|
|
|
|
* This function return 0 if it succeeds, or one of the negative error
|
|
|
|
* codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_CALLBACK_FAILURE
|
|
|
|
* The callback function failed.
|
|
|
|
* NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE
|
|
|
|
* The callback returns this error code, indicating that this
|
|
|
|
* stream should be RST_STREAMed.
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
* NGHTTP2_ERR_PAUSE
|
|
|
|
* The callback function returned NGHTTP2_ERR_PAUSE
|
|
|
|
* NGHTTP2_ERR_HEADER_COMP
|
|
|
|
* Header decompression failed
|
|
|
|
*/
|
|
|
|
static ssize_t inflate_header_block(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame,
|
|
|
|
size_t *readlen_ptr,
|
|
|
|
uint8_t *in, size_t inlen,
|
|
|
|
int final, int call_header_cb)
|
|
|
|
{
|
|
|
|
ssize_t rv;
|
|
|
|
int inflate_flags;
|
|
|
|
nghttp2_nv nv;
|
2014-03-13 15:02:33 +01:00
|
|
|
nghttp2_stream *stream;
|
|
|
|
|
2014-03-10 17:47:38 +01:00
|
|
|
*readlen_ptr = 0;
|
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: decoding header block %zu bytes\n", inlen));
|
2014-03-10 17:47:38 +01:00
|
|
|
for(;;) {
|
|
|
|
inflate_flags = 0;
|
|
|
|
rv = nghttp2_hd_inflate_hd(&session->hd_inflater, &nv, &inflate_flags,
|
|
|
|
in, inlen, final);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
if(rv < 0) {
|
|
|
|
if(session->iframe.state == NGHTTP2_IB_READ_HEADER_BLOCK) {
|
2014-03-13 15:02:33 +01:00
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
|
|
|
|
if(stream && stream->state != NGHTTP2_STREAM_CLOSING) {
|
|
|
|
/* Adding RST_STREAM here is very important. It prevents
|
|
|
|
from invoking subsequent callbacks for the same stream
|
|
|
|
ID. */
|
|
|
|
rv = nghttp2_session_add_rst_stream(session, frame->hd.stream_id,
|
|
|
|
NGHTTP2_COMPRESSION_ERROR);
|
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
2014-03-10 17:47:38 +01:00
|
|
|
}
|
2014-03-13 15:02:33 +01:00
|
|
|
rv = nghttp2_session_terminate_session(session,
|
|
|
|
NGHTTP2_COMPRESSION_ERROR);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
2014-03-10 17:47:38 +01:00
|
|
|
return rv;
|
|
|
|
}
|
2014-03-13 15:02:33 +01:00
|
|
|
|
2014-03-10 17:47:38 +01:00
|
|
|
return NGHTTP2_ERR_HEADER_COMP;
|
|
|
|
}
|
|
|
|
in += rv;
|
|
|
|
inlen -= rv;
|
|
|
|
*readlen_ptr += rv;
|
|
|
|
if(call_header_cb && (inflate_flags & NGHTTP2_HD_INFLATE_EMIT)) {
|
|
|
|
rv = session_call_on_header(session, frame, &nv);
|
|
|
|
/* This handles NGHTTP2_ERR_PAUSE and
|
|
|
|
NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE as well */
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(inflate_flags & NGHTTP2_HD_INFLATE_FINAL) {
|
|
|
|
nghttp2_hd_inflate_end_headers(&session->hd_inflater);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if((inflate_flags & NGHTTP2_HD_INFLATE_EMIT) == 0 && inlen == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-17 14:52:30 +01:00
|
|
|
/*
|
|
|
|
* Decompress header blocks of incoming request HEADERS and also call
|
|
|
|
* additional callbacks. This function can be called again if this
|
|
|
|
* function returns NGHTTP2_ERR_PAUSE.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of negative error
|
|
|
|
* codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_CALLBACK_FAILURE
|
|
|
|
* The callback function failed.
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
*/
|
2014-01-26 07:44:43 +01:00
|
|
|
int nghttp2_session_end_request_headers_received(nghttp2_session *session,
|
2014-01-29 13:23:13 +01:00
|
|
|
nghttp2_frame *frame,
|
|
|
|
nghttp2_stream *stream)
|
2014-01-16 15:41:13 +01:00
|
|
|
{
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_RD);
|
|
|
|
}
|
|
|
|
/* Here we assume that stream is not shutdown in NGHTTP2_SHUT_WR */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-17 14:52:30 +01:00
|
|
|
/*
|
|
|
|
* Decompress header blocks of incoming (push-)response HEADERS and
|
|
|
|
* also call additional callbacks. This function can be called again
|
|
|
|
* if this function returns NGHTTP2_ERR_PAUSE.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of negative error
|
|
|
|
* codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_CALLBACK_FAILURE
|
|
|
|
* The callback function failed.
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
*/
|
2014-01-26 07:44:43 +01:00
|
|
|
int nghttp2_session_end_response_headers_received(nghttp2_session *session,
|
2014-01-29 13:23:13 +01:00
|
|
|
nghttp2_frame *frame,
|
|
|
|
nghttp2_stream *stream)
|
2014-01-16 15:41:13 +01:00
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
/* This is the last frame of this stream, so disallow
|
|
|
|
further receptions. */
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_RD);
|
|
|
|
rv = nghttp2_session_close_stream_if_shut_rdwr(session, stream);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-17 14:52:30 +01:00
|
|
|
/*
|
|
|
|
* Decompress header blocks of incoming HEADERS and also call
|
|
|
|
* additional callbacks. This function can be called again if this
|
|
|
|
* function returns NGHTTP2_ERR_PAUSE.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of negative error
|
|
|
|
* codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_CALLBACK_FAILURE
|
|
|
|
* The callback function failed.
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
*/
|
2014-01-26 07:44:43 +01:00
|
|
|
int nghttp2_session_end_headers_received(nghttp2_session *session,
|
2014-01-29 13:23:13 +01:00
|
|
|
nghttp2_frame *frame,
|
|
|
|
nghttp2_stream *stream)
|
2014-01-16 15:41:13 +01:00
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
if(!nghttp2_session_is_my_stream_id(session, frame->hd.stream_id)) {
|
|
|
|
}
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_RD);
|
|
|
|
rv = nghttp2_session_close_stream_if_shut_rdwr(session, stream);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-29 13:23:13 +01:00
|
|
|
static int session_after_header_block_received(nghttp2_session *session)
|
2014-01-26 07:44:43 +01:00
|
|
|
{
|
2014-01-29 13:23:13 +01:00
|
|
|
int rv;
|
2014-01-26 07:44:43 +01:00
|
|
|
nghttp2_frame *frame = &session->iframe.frame;
|
2014-01-29 13:23:13 +01:00
|
|
|
nghttp2_stream *stream;
|
|
|
|
|
2014-03-13 14:49:37 +01:00
|
|
|
/* We don't call on_frame_recv_callback if stream has been closed
|
|
|
|
already or being closed. */
|
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
if(!stream || stream->state == NGHTTP2_STREAM_CLOSING) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_call_on_frame_received(session, frame);
|
2014-01-29 13:23:13 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-13 14:49:37 +01:00
|
|
|
|
2014-01-29 13:23:13 +01:00
|
|
|
if(frame->hd.type != NGHTTP2_HEADERS) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-03-13 14:49:37 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
switch(frame->headers.cat) {
|
|
|
|
case NGHTTP2_HCAT_REQUEST:
|
2014-01-29 13:23:13 +01:00
|
|
|
return nghttp2_session_end_request_headers_received
|
|
|
|
(session, frame, stream);
|
2014-01-26 07:44:43 +01:00
|
|
|
case NGHTTP2_HCAT_RESPONSE:
|
|
|
|
case NGHTTP2_HCAT_PUSH_RESPONSE:
|
2014-01-29 13:23:13 +01:00
|
|
|
return nghttp2_session_end_response_headers_received
|
|
|
|
(session, frame, stream);
|
2014-01-26 07:44:43 +01:00
|
|
|
case NGHTTP2_HCAT_HEADERS:
|
2014-01-29 13:23:13 +01:00
|
|
|
return nghttp2_session_end_headers_received(session, frame, stream);
|
2014-01-26 07:44:43 +01:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-25 14:07:38 +02:00
|
|
|
int nghttp2_session_on_request_headers_received(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
2012-01-25 15:46:07 +01:00
|
|
|
{
|
2013-09-05 16:17:16 +02:00
|
|
|
int rv = 0;
|
|
|
|
nghttp2_stream *stream;
|
2013-07-21 11:40:47 +02:00
|
|
|
if(frame->hd.stream_id == 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_connection
|
2014-01-16 15:41:13 +01:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
2013-07-21 11:40:47 +02:00
|
|
|
}
|
2012-01-28 11:22:38 +01:00
|
|
|
if(session->goaway_flags) {
|
2013-07-15 14:45:59 +02:00
|
|
|
/* We don't accept new stream after GOAWAY is sent or received. */
|
2014-01-26 07:44:43 +01:00
|
|
|
return NGHTTP2_ERR_IGN_HEADER_BLOCK;
|
2012-01-28 11:22:38 +01:00
|
|
|
}
|
2014-05-08 16:37:56 +02:00
|
|
|
if(!session_is_new_peer_stream_id(session, frame->hd.stream_id)) {
|
2013-07-15 14:45:59 +02:00
|
|
|
/* The spec says if an endpoint receives a HEADERS with invalid
|
|
|
|
stream ID, it MUST issue connection error with error code
|
2012-03-11 11:27:33 +01:00
|
|
|
PROTOCOL_ERROR */
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_connection
|
2014-01-16 15:41:13 +01:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
2013-07-15 14:45:59 +02:00
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
session->last_recv_stream_id = frame->hd.stream_id;
|
2014-01-16 15:41:13 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
if(session_is_incoming_concurrent_streams_max(session)) {
|
|
|
|
return session_inflate_handle_invalid_connection
|
2014-02-20 14:59:29 +01:00
|
|
|
(session, frame, NGHTTP2_ENHANCE_YOUR_CALM);
|
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
if(frame->headers.pri_spec.stream_id == frame->hd.stream_id) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_connection
|
2014-03-25 18:04:24 +01:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
if(session_is_incoming_concurrent_streams_pending_max(session)) {
|
|
|
|
return session_inflate_handle_invalid_stream
|
2014-02-20 14:59:29 +01:00
|
|
|
(session, frame, NGHTTP2_REFUSED_STREAM);
|
2012-01-25 15:46:07 +01:00
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
|
|
|
|
stream = nghttp2_session_open_stream(session,
|
|
|
|
frame->hd.stream_id,
|
2014-01-09 15:00:26 +01:00
|
|
|
NGHTTP2_STREAM_FLAG_NONE,
|
2014-03-25 18:04:24 +01:00
|
|
|
&frame->headers.pri_spec,
|
2013-09-05 16:17:16 +02:00
|
|
|
NGHTTP2_STREAM_OPENING,
|
|
|
|
NULL);
|
|
|
|
if(!stream) {
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
2013-11-28 15:26:34 +01:00
|
|
|
session->last_proc_stream_id = session->last_recv_stream_id;
|
2014-01-29 13:23:13 +01:00
|
|
|
rv = session_call_on_begin_headers(session, frame);
|
2013-09-05 16:17:16 +02:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
return 0;
|
2012-01-25 15:46:07 +01:00
|
|
|
}
|
|
|
|
|
2013-07-25 14:07:38 +02:00
|
|
|
int nghttp2_session_on_response_headers_received(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame,
|
|
|
|
nghttp2_stream *stream)
|
2012-01-25 15:46:07 +01:00
|
|
|
{
|
2013-08-29 14:03:39 +02:00
|
|
|
int rv;
|
2013-07-24 18:49:05 +02:00
|
|
|
/* This function is only called if stream->state ==
|
|
|
|
NGHTTP2_STREAM_OPENING and stream_id is local side initiated. */
|
|
|
|
assert(stream->state == NGHTTP2_STREAM_OPENING &&
|
|
|
|
nghttp2_session_is_my_stream_id(session, frame->hd.stream_id));
|
2013-07-21 11:40:47 +02:00
|
|
|
if(frame->hd.stream_id == 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_connection
|
2014-01-16 15:41:13 +01:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
2013-07-21 11:40:47 +02:00
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
if(stream->shut_flags & NGHTTP2_SHUT_RD) {
|
2013-07-15 14:45:59 +02:00
|
|
|
/* half closed (remote): from the spec:
|
|
|
|
|
|
|
|
If an endpoint receives additional frames for a stream that is
|
|
|
|
in this state it MUST respond with a stream error (Section
|
|
|
|
5.4.2) of type STREAM_CLOSED.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_stream
|
2014-01-16 15:41:13 +01:00
|
|
|
(session, frame, NGHTTP2_STREAM_CLOSED);
|
2013-12-25 15:38:55 +01:00
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
stream->state = NGHTTP2_STREAM_OPENED;
|
2014-01-29 13:23:13 +01:00
|
|
|
rv = session_call_on_begin_headers(session, frame);
|
2013-09-05 16:17:16 +02:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
return 0;
|
2013-07-24 18:49:05 +02:00
|
|
|
}
|
|
|
|
|
2013-07-25 14:07:38 +02:00
|
|
|
int nghttp2_session_on_push_response_headers_received(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame,
|
|
|
|
nghttp2_stream *stream)
|
2013-07-24 18:49:05 +02:00
|
|
|
{
|
|
|
|
int rv = 0;
|
2014-01-09 13:39:29 +01:00
|
|
|
assert(stream->state == NGHTTP2_STREAM_RESERVED);
|
2013-07-24 18:49:05 +02:00
|
|
|
if(frame->hd.stream_id == 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_connection
|
2014-01-16 15:41:13 +01:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
2012-01-25 15:46:07 +01:00
|
|
|
}
|
2013-07-24 18:49:05 +02:00
|
|
|
if(session->goaway_flags) {
|
|
|
|
/* We don't accept new stream after GOAWAY is sent or received. */
|
2014-01-26 07:44:43 +01:00
|
|
|
return NGHTTP2_ERR_IGN_HEADER_BLOCK;
|
2013-12-25 15:38:55 +01:00
|
|
|
}
|
2014-02-20 14:59:29 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
if(session_is_incoming_concurrent_streams_max(session)) {
|
|
|
|
return session_inflate_handle_invalid_connection
|
2014-02-20 14:59:29 +01:00
|
|
|
(session, frame, NGHTTP2_ENHANCE_YOUR_CALM);
|
2013-07-24 18:49:05 +02:00
|
|
|
}
|
2014-05-08 16:37:56 +02:00
|
|
|
if(session_is_incoming_concurrent_streams_pending_max(session)) {
|
|
|
|
return session_inflate_handle_invalid_stream
|
2014-02-20 14:59:29 +01:00
|
|
|
(session, frame, NGHTTP2_REFUSED_STREAM);
|
|
|
|
}
|
|
|
|
|
2013-07-24 18:49:05 +02:00
|
|
|
nghttp2_stream_promise_fulfilled(stream);
|
|
|
|
++session->num_incoming_streams;
|
2014-01-29 13:23:13 +01:00
|
|
|
rv = session_call_on_begin_headers(session, frame);
|
2013-09-28 10:59:24 +02:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
return 0;
|
2012-01-25 13:31:28 +01:00
|
|
|
}
|
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
int nghttp2_session_on_headers_received(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame,
|
|
|
|
nghttp2_stream *stream)
|
2012-01-27 15:22:27 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv = 0;
|
2013-07-21 11:40:47 +02:00
|
|
|
if(frame->hd.stream_id == 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_connection
|
2014-01-16 15:41:13 +01:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
2013-07-21 11:40:47 +02:00
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
if(stream->state == NGHTTP2_STREAM_RESERVED) {
|
|
|
|
/* reserved. The valid push response HEADERS is processed by
|
|
|
|
nghttp2_session_on_push_response_headers_received(). This
|
2013-08-18 17:41:03 +02:00
|
|
|
generic HEADERS is called invalid cases for HEADERS against
|
|
|
|
reserved state. */
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_connection
|
2014-01-16 15:41:13 +01:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
2013-09-05 16:17:16 +02:00
|
|
|
}
|
|
|
|
if((stream->shut_flags & NGHTTP2_SHUT_RD)) {
|
2013-07-15 14:45:59 +02:00
|
|
|
/* half closed (remote): from the spec:
|
|
|
|
|
|
|
|
If an endpoint receives additional frames for a stream that is
|
|
|
|
in this state it MUST respond with a stream error (Section
|
|
|
|
5.4.2) of type STREAM_CLOSED.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_stream
|
2014-01-16 15:41:13 +01:00
|
|
|
(session, frame, NGHTTP2_STREAM_CLOSED);
|
2013-12-25 15:38:55 +01:00
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
if(nghttp2_session_is_my_stream_id(session, frame->hd.stream_id)) {
|
|
|
|
if(stream->state == NGHTTP2_STREAM_OPENED) {
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = session_call_on_begin_headers(session, frame);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2013-09-05 16:17:16 +02:00
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
return 0;
|
2013-09-05 16:17:16 +02:00
|
|
|
} else if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
|
|
|
/* This is race condition. NGHTTP2_STREAM_CLOSING indicates
|
|
|
|
that we queued RST_STREAM but it has not been sent. It will
|
|
|
|
eventually sent, so we just ignore this frame. */
|
2014-01-26 07:44:43 +01:00
|
|
|
return NGHTTP2_ERR_IGN_HEADER_BLOCK;
|
2013-09-05 16:17:16 +02:00
|
|
|
} else {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_stream
|
2014-01-16 15:41:13 +01:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
2013-09-05 16:17:16 +02:00
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
}
|
|
|
|
/* If this is remote peer initiated stream, it is OK unless it
|
|
|
|
has sent END_STREAM frame already. But if stream is in
|
|
|
|
NGHTTP2_STREAM_CLOSING, we discard the frame. This is a race
|
|
|
|
condition. */
|
|
|
|
if(stream->state != NGHTTP2_STREAM_CLOSING) {
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = session_call_on_begin_headers(session, frame);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2014-01-26 07:44:43 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return NGHTTP2_ERR_IGN_HEADER_BLOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int session_process_headers_frame(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
nghttp2_inbound_frame *iframe = &session->iframe;
|
|
|
|
nghttp2_frame *frame = &iframe->frame;
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
|
|
|
|
rv = nghttp2_frame_unpack_headers_payload(&frame->headers,
|
2014-03-22 10:27:38 +01:00
|
|
|
iframe->sbuf.pos,
|
|
|
|
nghttp2_buf_len(&iframe->sbuf));
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return nghttp2_session_terminate_session(session, NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
if(!stream) {
|
|
|
|
frame->headers.cat = NGHTTP2_HCAT_REQUEST;
|
|
|
|
return nghttp2_session_on_request_headers_received(session, frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(nghttp2_session_is_my_stream_id(session, frame->hd.stream_id)) {
|
|
|
|
if(stream->state == NGHTTP2_STREAM_OPENING) {
|
|
|
|
frame->headers.cat = NGHTTP2_HCAT_RESPONSE;
|
|
|
|
return nghttp2_session_on_response_headers_received(session, frame,
|
|
|
|
stream);
|
2013-09-05 16:17:16 +02:00
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
frame->headers.cat = NGHTTP2_HCAT_HEADERS;
|
|
|
|
return nghttp2_session_on_headers_received(session, frame, stream);
|
2012-02-02 15:19:01 +01:00
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
if(stream->state == NGHTTP2_STREAM_RESERVED) {
|
|
|
|
frame->headers.cat = NGHTTP2_HCAT_PUSH_RESPONSE;
|
|
|
|
return nghttp2_session_on_push_response_headers_received(session, frame,
|
|
|
|
stream);
|
|
|
|
}
|
|
|
|
frame->headers.cat = NGHTTP2_HCAT_HEADERS;
|
|
|
|
return nghttp2_session_on_headers_received(session, frame, stream);
|
2013-07-15 14:45:59 +02:00
|
|
|
}
|
|
|
|
|
2013-07-22 17:11:39 +02:00
|
|
|
int nghttp2_session_on_priority_received(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
|
|
|
{
|
2014-03-25 18:04:24 +01:00
|
|
|
int rv;
|
2013-07-22 17:11:39 +02:00
|
|
|
nghttp2_stream *stream;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-07-22 17:11:39 +02:00
|
|
|
if(frame->hd.stream_id == 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2013-07-22 17:11:39 +02:00
|
|
|
}
|
2014-06-07 11:36:58 +02:00
|
|
|
stream = nghttp2_session_get_stream_raw(session, frame->hd.stream_id);
|
2013-09-05 16:17:16 +02:00
|
|
|
if(!stream) {
|
2014-02-01 08:05:58 +01:00
|
|
|
if(session_detect_idle_stream(session, frame->hd.stream_id)) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2014-02-01 08:05:58 +01:00
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
return 0;
|
2013-07-22 17:11:39 +02:00
|
|
|
}
|
2014-01-09 14:06:38 +01:00
|
|
|
if(state_reserved_remote(session, stream)) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2014-01-09 14:06:38 +01:00
|
|
|
}
|
2014-01-09 15:30:45 +01:00
|
|
|
/* Only update priority of the stream, only if it is not pushed
|
|
|
|
stream and is initiated by remote peer, or it is pushed stream
|
|
|
|
and is initiated by local peer */
|
|
|
|
if(((stream->flags & NGHTTP2_STREAM_FLAG_PUSH) == 0 &&
|
|
|
|
!nghttp2_session_is_my_stream_id(session, frame->hd.stream_id)) ||
|
|
|
|
((stream->flags & NGHTTP2_STREAM_FLAG_PUSH) &&
|
|
|
|
nghttp2_session_is_my_stream_id(session, frame->hd.stream_id))) {
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
rv = nghttp2_session_reprioritize_stream(session, stream,
|
|
|
|
&frame->priority.pri_spec);
|
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
}
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_call_on_frame_received(session, frame);
|
2013-07-22 17:11:39 +02:00
|
|
|
}
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
static int session_process_priority_frame(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
nghttp2_inbound_frame *iframe = &session->iframe;
|
|
|
|
nghttp2_frame *frame = &iframe->frame;
|
|
|
|
|
|
|
|
nghttp2_frame_unpack_priority_payload(&frame->priority,
|
2014-03-22 10:27:38 +01:00
|
|
|
iframe->sbuf.pos,
|
|
|
|
nghttp2_buf_len(&iframe->sbuf));
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
return nghttp2_session_on_priority_received(session, frame);
|
|
|
|
}
|
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
int nghttp2_session_on_rst_stream_received(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
|
|
|
{
|
2013-08-29 14:03:39 +02:00
|
|
|
int rv;
|
2014-02-01 08:05:58 +01:00
|
|
|
nghttp2_stream *stream;
|
2013-07-21 11:40:47 +02:00
|
|
|
if(frame->hd.stream_id == 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2013-07-21 11:40:47 +02:00
|
|
|
}
|
2014-02-01 08:05:58 +01:00
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
if(!stream) {
|
|
|
|
if(session_detect_idle_stream(session, frame->hd.stream_id)) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2014-02-01 08:05:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_call_on_frame_received(session, frame);
|
2013-08-29 14:03:39 +02:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
2013-08-29 15:58:05 +02:00
|
|
|
rv = nghttp2_session_close_stream(session, frame->hd.stream_id,
|
|
|
|
frame->rst_stream.error_code);
|
2014-03-25 18:04:24 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
2013-08-29 15:58:05 +02:00
|
|
|
return rv;
|
|
|
|
}
|
2012-01-27 19:54:53 +01:00
|
|
|
return 0;
|
2012-01-27 15:22:27 +01:00
|
|
|
}
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
static int session_process_rst_stream_frame(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
nghttp2_inbound_frame *iframe = &session->iframe;
|
|
|
|
nghttp2_frame *frame = &iframe->frame;
|
|
|
|
|
|
|
|
nghttp2_frame_unpack_rst_stream_payload(&frame->rst_stream,
|
2014-03-22 10:27:38 +01:00
|
|
|
iframe->sbuf.pos,
|
|
|
|
nghttp2_buf_len(&iframe->sbuf));
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
return nghttp2_session_on_rst_stream_received(session, frame);
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
static int update_remote_initial_window_size_func
|
2014-03-25 18:04:24 +01:00
|
|
|
(nghttp2_map_entry *entry, void *ptr)
|
2012-03-09 16:10:11 +01:00
|
|
|
{
|
2013-08-08 14:12:49 +02:00
|
|
|
int rv;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_update_window_size_arg *arg;
|
|
|
|
nghttp2_stream *stream;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
arg = (nghttp2_update_window_size_arg*)ptr;
|
|
|
|
stream = (nghttp2_stream*)entry;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-08-08 14:12:49 +02:00
|
|
|
rv = nghttp2_stream_update_remote_initial_window_size(stream,
|
|
|
|
arg->new_window_size,
|
|
|
|
arg->old_window_size);
|
|
|
|
if(rv != 0) {
|
2014-02-14 08:08:39 +01:00
|
|
|
return nghttp2_session_terminate_session(arg->session,
|
|
|
|
NGHTTP2_FLOW_CONTROL_ERROR);
|
2013-08-08 14:12:49 +02:00
|
|
|
}
|
2014-04-24 17:35:48 +02:00
|
|
|
|
|
|
|
if(stream->remote_window_size > 0) {
|
|
|
|
stream->blocked_sent = 0;
|
|
|
|
}
|
|
|
|
|
2012-05-11 15:58:12 +02:00
|
|
|
/* If window size gets positive, push deferred DATA frame to
|
|
|
|
outbound queue. */
|
2014-04-02 15:55:49 +02:00
|
|
|
if(nghttp2_stream_check_deferred_by_flow_control(stream) &&
|
2013-08-08 14:12:49 +02:00
|
|
|
stream->remote_window_size > 0 &&
|
2014-02-05 16:23:20 +01:00
|
|
|
arg->session->remote_window_size > 0) {
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-05-08 16:07:29 +02:00
|
|
|
rv = nghttp2_stream_resume_deferred_data(stream, &arg->session->ob_pq,
|
|
|
|
arg->session->last_cycle);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
2012-05-11 15:58:12 +02:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
2012-03-09 16:10:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-08-08 17:58:52 +02:00
|
|
|
* Updates the remote initial window size of all active streams. If
|
|
|
|
* error occurs, all streams may not be updated.
|
2012-05-11 15:58:12 +02:00
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_NOMEM
|
2012-05-11 15:58:12 +02:00
|
|
|
* Out of memory.
|
2012-03-09 16:10:11 +01:00
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_update_remote_initial_window_size
|
2013-07-12 17:19:03 +02:00
|
|
|
(nghttp2_session *session,
|
2012-03-09 16:10:11 +01:00
|
|
|
int32_t new_initial_window_size)
|
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_update_window_size_arg arg;
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2012-05-11 15:58:12 +02:00
|
|
|
arg.session = session;
|
|
|
|
arg.new_window_size = new_initial_window_size;
|
2014-06-10 14:29:19 +02:00
|
|
|
arg.old_window_size = session->remote_settings.initial_window_size;
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
return nghttp2_map_each(&session->streams,
|
2014-05-08 16:37:56 +02:00
|
|
|
update_remote_initial_window_size_func,
|
2013-08-08 17:58:52 +02:00
|
|
|
&arg);
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
static int update_local_initial_window_size_func
|
|
|
|
(nghttp2_map_entry *entry, void *ptr)
|
2013-08-08 17:58:52 +02:00
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
nghttp2_update_window_size_arg *arg;
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
arg = (nghttp2_update_window_size_arg*)ptr;
|
|
|
|
stream = (nghttp2_stream*)entry;
|
|
|
|
rv = nghttp2_stream_update_local_initial_window_size(stream,
|
|
|
|
arg->new_window_size,
|
|
|
|
arg->old_window_size);
|
|
|
|
if(rv != 0) {
|
2014-02-14 08:08:39 +01:00
|
|
|
return nghttp2_session_terminate_session(arg->session,
|
|
|
|
NGHTTP2_FLOW_CONTROL_ERROR);
|
2013-08-08 17:58:52 +02:00
|
|
|
}
|
2013-08-08 18:23:39 +02:00
|
|
|
if(!(arg->session->opt_flags &
|
|
|
|
NGHTTP2_OPTMASK_NO_AUTO_STREAM_WINDOW_UPDATE)) {
|
2013-08-08 17:58:52 +02:00
|
|
|
if(nghttp2_should_send_window_update(stream->local_window_size,
|
|
|
|
stream->recv_window_size)) {
|
|
|
|
rv = nghttp2_session_add_window_update(arg->session,
|
|
|
|
NGHTTP2_FLAG_NONE,
|
|
|
|
stream->stream_id,
|
|
|
|
stream->recv_window_size);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
stream->recv_window_size = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Updates the local initial window size of all active streams. If
|
|
|
|
* error occurs, all streams may not be updated.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_update_local_initial_window_size
|
2013-08-08 17:58:52 +02:00
|
|
|
(nghttp2_session *session,
|
|
|
|
int32_t new_initial_window_size,
|
|
|
|
int32_t old_initial_window_size)
|
|
|
|
{
|
|
|
|
nghttp2_update_window_size_arg arg;
|
|
|
|
arg.session = session;
|
|
|
|
arg.new_window_size = new_initial_window_size;
|
|
|
|
arg.old_window_size = old_initial_window_size;
|
|
|
|
return nghttp2_map_each(&session->streams,
|
2014-05-08 16:37:56 +02:00
|
|
|
update_local_initial_window_size_func,
|
2012-05-11 15:58:12 +02:00
|
|
|
&arg);
|
2012-03-09 16:10:11 +01:00
|
|
|
}
|
|
|
|
|
2013-10-27 11:22:51 +01:00
|
|
|
/*
|
|
|
|
* Apply SETTINGS values |iv| having |niv| elements to the local
|
2014-05-12 14:28:49 +02:00
|
|
|
* settings. We assumes that all values in |iv| is correct, since we
|
|
|
|
* validated them in nghttp2_session_add_settings() already.
|
2013-10-27 11:22:51 +01:00
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_HEADER_COMP
|
|
|
|
* The header table size is out of range
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory
|
|
|
|
*/
|
2013-08-08 17:58:52 +02:00
|
|
|
int nghttp2_session_update_local_settings(nghttp2_session *session,
|
|
|
|
nghttp2_settings_entry *iv,
|
|
|
|
size_t niv)
|
2012-03-10 10:41:01 +01:00
|
|
|
{
|
2013-08-08 17:58:52 +02:00
|
|
|
int rv;
|
2012-03-22 18:17:48 +01:00
|
|
|
size_t i;
|
2013-08-08 17:58:52 +02:00
|
|
|
int32_t new_initial_window_size = -1;
|
2013-10-27 11:22:51 +01:00
|
|
|
int32_t header_table_size = -1;
|
|
|
|
uint8_t header_table_size_seen = 0;
|
2013-08-17 16:41:04 +02:00
|
|
|
/* Use the value last seen. */
|
2013-08-08 17:58:52 +02:00
|
|
|
for(i = 0; i < niv; ++i) {
|
2013-10-27 11:22:51 +01:00
|
|
|
switch(iv[i].settings_id) {
|
|
|
|
case NGHTTP2_SETTINGS_HEADER_TABLE_SIZE:
|
|
|
|
header_table_size_seen = 1;
|
|
|
|
header_table_size = iv[i].value;
|
|
|
|
break;
|
|
|
|
case NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE:
|
2013-08-08 17:58:52 +02:00
|
|
|
new_initial_window_size = iv[i].value;
|
2013-10-27 11:22:51 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(header_table_size_seen) {
|
2014-02-13 15:22:52 +01:00
|
|
|
rv = nghttp2_hd_inflate_change_table_size(&session->hd_inflater,
|
|
|
|
header_table_size);
|
2013-10-27 11:22:51 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2013-08-08 17:58:52 +02:00
|
|
|
}
|
|
|
|
}
|
2014-02-05 16:23:20 +01:00
|
|
|
if(new_initial_window_size != -1) {
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_update_local_initial_window_size
|
2013-08-08 17:58:52 +02:00
|
|
|
(session,
|
|
|
|
new_initial_window_size,
|
2014-06-10 14:29:19 +02:00
|
|
|
session->local_settings.initial_window_size);
|
2013-08-08 17:58:52 +02:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2012-03-10 10:41:01 +01:00
|
|
|
for(i = 0; i < niv; ++i) {
|
2014-06-10 14:29:19 +02:00
|
|
|
switch(iv[i].settings_id) {
|
|
|
|
case NGHTTP2_SETTINGS_HEADER_TABLE_SIZE:
|
|
|
|
session->local_settings.header_table_size = iv[i].value;
|
|
|
|
break;
|
|
|
|
case NGHTTP2_SETTINGS_ENABLE_PUSH:
|
|
|
|
session->local_settings.enable_push = iv[i].value;
|
|
|
|
break;
|
|
|
|
case NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS:
|
|
|
|
session->local_settings.max_concurrent_streams = iv[i].value;
|
|
|
|
break;
|
|
|
|
case NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE:
|
|
|
|
session->local_settings.initial_window_size = iv[i].value;
|
|
|
|
break;
|
2013-08-17 16:41:04 +02:00
|
|
|
}
|
2012-03-10 10:41:01 +01:00
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2014-02-20 14:59:29 +01:00
|
|
|
session->pending_local_max_concurrent_stream =
|
|
|
|
NGHTTP2_INITIAL_MAX_CONCURRENT_STREAMS;
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2013-08-08 17:58:52 +02:00
|
|
|
return 0;
|
2012-03-10 10:41:01 +01:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_on_settings_received(nghttp2_session *session,
|
2013-10-27 11:22:51 +01:00
|
|
|
nghttp2_frame *frame,
|
|
|
|
int noack)
|
2012-01-31 17:12:26 +01:00
|
|
|
{
|
2012-05-11 15:58:12 +02:00
|
|
|
int rv;
|
2013-08-17 16:41:04 +02:00
|
|
|
int i;
|
2014-06-10 14:29:19 +02:00
|
|
|
int header_table_size_seen = 0;
|
|
|
|
int enable_push_seen = 0;
|
|
|
|
int max_concurrent_streams_seen = 0;
|
|
|
|
int initial_window_size_seen = 0;
|
|
|
|
|
2013-07-21 11:40:47 +02:00
|
|
|
if(frame->hd.stream_id != 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2013-07-21 11:40:47 +02:00
|
|
|
}
|
2013-10-27 11:22:51 +01:00
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_ACK) {
|
|
|
|
if(frame->settings.niv != 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection
|
2013-10-27 11:31:24 +01:00
|
|
|
(session, frame, NGHTTP2_FRAME_SIZE_ERROR);
|
2013-10-27 11:22:51 +01:00
|
|
|
}
|
|
|
|
if(session->inflight_niv == -1) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2013-10-27 11:22:51 +01:00
|
|
|
}
|
|
|
|
rv = nghttp2_session_update_local_settings(session, session->inflight_iv,
|
|
|
|
session->inflight_niv);
|
|
|
|
free(session->inflight_iv);
|
|
|
|
session->inflight_iv = NULL;
|
|
|
|
session->inflight_niv = -1;
|
|
|
|
if(rv != 0) {
|
|
|
|
nghttp2_error_code error_code = NGHTTP2_INTERNAL_ERROR;
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
if(rv == NGHTTP2_ERR_HEADER_COMP) {
|
|
|
|
error_code = NGHTTP2_COMPRESSION_ERROR;
|
|
|
|
}
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection(session, frame, error_code);
|
2013-10-27 11:22:51 +01:00
|
|
|
}
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_call_on_frame_received(session, frame);
|
2013-10-27 11:22:51 +01:00
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2013-08-17 16:41:04 +02:00
|
|
|
for(i = (int)frame->settings.niv - 1; i >= 0; --i) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_settings_entry *entry = &frame->settings.iv[i];
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2013-08-17 16:41:04 +02:00
|
|
|
/* The spec says the settings values are processed in the order
|
2014-06-10 14:29:19 +02:00
|
|
|
they appear in the payload. In other words, if the multiple
|
2013-08-17 16:41:04 +02:00
|
|
|
values for the same ID were found, use the last one and ignore
|
|
|
|
the rest. */
|
2013-07-16 11:26:57 +02:00
|
|
|
switch(entry->settings_id) {
|
2013-10-27 11:22:51 +01:00
|
|
|
case NGHTTP2_SETTINGS_HEADER_TABLE_SIZE:
|
2014-06-10 14:29:19 +02:00
|
|
|
if(header_table_size_seen) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
header_table_size_seen = 1;
|
|
|
|
|
2013-10-27 11:22:51 +01:00
|
|
|
if(entry->value > NGHTTP2_MAX_HEADER_TABLE_SIZE) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection
|
2013-10-27 11:22:51 +01:00
|
|
|
(session, frame, NGHTTP2_COMPRESSION_ERROR);
|
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2014-02-13 15:22:52 +01:00
|
|
|
rv = nghttp2_hd_deflate_change_table_size(&session->hd_deflater,
|
|
|
|
entry->value);
|
2013-10-27 11:22:51 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
} else {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection
|
2013-10-27 11:22:51 +01:00
|
|
|
(session, frame, NGHTTP2_COMPRESSION_ERROR);
|
|
|
|
}
|
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
|
|
|
|
session->remote_settings.header_table_size = entry->value;
|
|
|
|
|
2013-10-27 11:22:51 +01:00
|
|
|
break;
|
2014-02-06 13:38:16 +01:00
|
|
|
case NGHTTP2_SETTINGS_ENABLE_PUSH:
|
2014-06-10 14:29:19 +02:00
|
|
|
if(enable_push_seen) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
enable_push_seen = 1;
|
|
|
|
|
2014-02-06 13:38:16 +01:00
|
|
|
if(entry->value != 0 && entry->value != 1) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection
|
2014-02-06 13:38:16 +01:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2014-05-01 01:38:28 +02:00
|
|
|
if(!session->server && entry->value != 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection
|
2014-04-04 13:36:09 +02:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
|
|
|
|
session->remote_settings.enable_push = entry->value;
|
|
|
|
|
|
|
|
break;
|
|
|
|
case NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS:
|
|
|
|
if(max_concurrent_streams_seen) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
max_concurrent_streams_seen = 1;
|
|
|
|
|
|
|
|
session->remote_settings.max_concurrent_streams = entry->value;
|
|
|
|
|
2014-02-06 13:38:16 +01:00
|
|
|
break;
|
2013-07-16 11:26:57 +02:00
|
|
|
case NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE:
|
2014-06-10 14:29:19 +02:00
|
|
|
if(initial_window_size_seen) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
initial_window_size_seen = 1;
|
|
|
|
|
2012-03-09 16:10:11 +01:00
|
|
|
/* Update the initial window size of the all active streams */
|
|
|
|
/* Check that initial_window_size < (1u << 31) */
|
2014-02-06 13:38:16 +01:00
|
|
|
if(entry->value > NGHTTP2_MAX_WINDOW_SIZE) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection
|
2014-02-06 13:38:16 +01:00
|
|
|
(session, frame, NGHTTP2_FLOW_CONTROL_ERROR);
|
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_update_remote_initial_window_size(session, entry->value);
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2014-02-06 13:38:16 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2014-02-06 13:38:16 +01:00
|
|
|
if(rv != 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection
|
2014-02-06 13:38:16 +01:00
|
|
|
(session, frame, NGHTTP2_FLOW_CONTROL_ERROR);
|
2012-03-09 16:10:11 +01:00
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
|
|
|
|
session->remote_settings.initial_window_size = entry->value;
|
|
|
|
|
2013-07-16 11:26:57 +02:00
|
|
|
break;
|
2012-03-09 16:10:11 +01:00
|
|
|
}
|
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2013-10-27 11:22:51 +01:00
|
|
|
if(!noack) {
|
|
|
|
rv = nghttp2_session_add_settings(session, NGHTTP2_FLAG_ACK, NULL, 0);
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2013-10-27 11:22:51 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection
|
2013-10-27 11:22:51 +01:00
|
|
|
(session, frame, NGHTTP2_INTERNAL_ERROR);
|
|
|
|
}
|
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_call_on_frame_received(session, frame);
|
2012-01-31 17:12:26 +01:00
|
|
|
}
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
static int session_process_settings_frame(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
nghttp2_inbound_frame *iframe = &session->iframe;
|
|
|
|
nghttp2_frame *frame = &iframe->frame;
|
|
|
|
|
2014-01-26 08:46:18 +01:00
|
|
|
rv = nghttp2_frame_unpack_settings_payload(&frame->settings,
|
|
|
|
iframe->iv, iframe->niv);
|
2014-01-26 07:44:43 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
assert(nghttp2_is_fatal(rv));
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
return nghttp2_session_on_settings_received(session, frame, 0 /* ACK */);
|
|
|
|
}
|
|
|
|
|
2013-07-24 18:49:05 +02:00
|
|
|
int nghttp2_session_on_push_promise_received(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
|
|
|
{
|
2014-01-16 15:41:13 +01:00
|
|
|
int rv;
|
2013-07-24 18:49:05 +02:00
|
|
|
nghttp2_stream *stream;
|
2013-09-05 16:17:16 +02:00
|
|
|
nghttp2_stream *promised_stream;
|
2014-03-25 18:04:24 +01:00
|
|
|
nghttp2_priority_spec pri_spec;
|
|
|
|
|
2014-01-09 13:39:29 +01:00
|
|
|
if(frame->hd.stream_id == 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_connection
|
2014-01-16 15:41:13 +01:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
2013-07-24 18:49:05 +02:00
|
|
|
}
|
2014-06-10 14:29:19 +02:00
|
|
|
if(session->server || session->local_settings.enable_push == 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_connection
|
2014-01-16 15:41:13 +01:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
2013-11-02 08:53:06 +01:00
|
|
|
}
|
2013-07-24 18:49:05 +02:00
|
|
|
if(session->goaway_flags) {
|
|
|
|
/* We just dicard PUSH_PROMISE after GOAWAY is sent or
|
|
|
|
received. */
|
2014-01-26 07:44:43 +01:00
|
|
|
return NGHTTP2_ERR_IGN_HEADER_BLOCK;
|
2013-07-24 18:49:05 +02:00
|
|
|
}
|
2014-05-08 16:37:56 +02:00
|
|
|
if(!session_is_new_peer_stream_id
|
2013-07-24 18:49:05 +02:00
|
|
|
(session, frame->push_promise.promised_stream_id)) {
|
2013-08-17 15:34:57 +02:00
|
|
|
/* The spec says if an endpoint receives a PUSH_PROMISE with
|
|
|
|
illegal stream ID is subject to a connection error of type
|
|
|
|
PROTOCOL_ERROR. */
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_connection
|
2013-07-24 18:49:05 +02:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
session->last_recv_stream_id = frame->push_promise.promised_stream_id;
|
2014-01-19 16:01:10 +01:00
|
|
|
if(!nghttp2_session_is_my_stream_id(session, frame->hd.stream_id)) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_connection
|
2014-01-19 16:01:10 +01:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
2013-07-24 18:49:05 +02:00
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
2014-01-19 16:01:10 +01:00
|
|
|
if(!stream || stream->state == NGHTTP2_STREAM_CLOSING) {
|
2014-02-01 08:05:58 +01:00
|
|
|
if(!stream) {
|
|
|
|
if(session_detect_idle_stream(session, frame->hd.stream_id)) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_inflate_handle_invalid_connection
|
2014-02-01 08:05:58 +01:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
rv = nghttp2_session_add_rst_stream
|
2014-01-16 15:41:13 +01:00
|
|
|
(session, frame->push_promise.promised_stream_id,
|
2013-09-05 16:17:16 +02:00
|
|
|
NGHTTP2_REFUSED_STREAM);
|
2014-01-16 15:41:13 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
return NGHTTP2_ERR_IGN_HEADER_BLOCK;
|
|
|
|
}
|
|
|
|
if(stream->shut_flags & NGHTTP2_SHUT_RD) {
|
2013-09-05 16:17:16 +02:00
|
|
|
if(session->callbacks.on_invalid_frame_recv_callback) {
|
|
|
|
if(session->callbacks.on_invalid_frame_recv_callback
|
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR, session->user_data) != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2013-07-24 18:49:05 +02:00
|
|
|
}
|
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
rv = nghttp2_session_add_rst_stream
|
2014-01-16 15:41:13 +01:00
|
|
|
(session, frame->push_promise.promised_stream_id,
|
2013-09-05 16:17:16 +02:00
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2014-01-26 07:44:43 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
return NGHTTP2_ERR_IGN_HEADER_BLOCK;
|
2013-09-05 16:17:16 +02:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
/* TODO It is unclear reserved stream dpeneds on associated
|
|
|
|
stream with or without exclusive flag set */
|
2014-04-14 16:53:54 +02:00
|
|
|
nghttp2_priority_spec_init(&pri_spec, stream->stream_id,
|
|
|
|
NGHTTP2_DEFAULT_WEIGHT, 0);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-09-05 16:17:16 +02:00
|
|
|
promised_stream = nghttp2_session_open_stream
|
|
|
|
(session,
|
|
|
|
frame->push_promise.promised_stream_id,
|
2014-01-09 15:00:26 +01:00
|
|
|
NGHTTP2_STREAM_FLAG_PUSH,
|
2014-03-25 18:04:24 +01:00
|
|
|
&pri_spec,
|
2013-09-05 16:17:16 +02:00
|
|
|
NGHTTP2_STREAM_RESERVED,
|
|
|
|
NULL);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-09-05 16:17:16 +02:00
|
|
|
if(!promised_stream) {
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-11-28 15:26:34 +01:00
|
|
|
session->last_proc_stream_id = session->last_recv_stream_id;
|
2014-01-29 13:23:13 +01:00
|
|
|
rv = session_call_on_begin_headers(session, frame);
|
2014-01-16 15:41:13 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int session_process_push_promise_frame(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
nghttp2_inbound_frame *iframe = &session->iframe;
|
|
|
|
nghttp2_frame *frame = &iframe->frame;
|
|
|
|
|
2014-03-22 10:27:38 +01:00
|
|
|
rv = nghttp2_frame_unpack_push_promise_payload
|
|
|
|
(&frame->push_promise,
|
|
|
|
iframe->sbuf.pos, nghttp2_buf_len(&iframe->sbuf));
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return nghttp2_session_terminate_session(session, NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
return nghttp2_session_on_push_promise_received(session, frame);
|
2013-07-24 18:49:05 +02:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_on_ping_received(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
2012-01-27 15:05:29 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv = 0;
|
2013-07-21 11:40:47 +02:00
|
|
|
if(frame->hd.stream_id != 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2013-07-21 11:40:47 +02:00
|
|
|
}
|
2013-10-27 11:22:51 +01:00
|
|
|
if((frame->hd.flags & NGHTTP2_FLAG_ACK) == 0) {
|
2013-07-15 14:45:59 +02:00
|
|
|
/* Peer sent ping, so ping it back */
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = nghttp2_session_add_ping(session, NGHTTP2_FLAG_ACK,
|
|
|
|
frame->ping.opaque_data);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2013-08-29 14:03:39 +02:00
|
|
|
}
|
2012-01-27 15:05:29 +01:00
|
|
|
}
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_call_on_frame_received(session, frame);
|
2012-01-27 15:05:29 +01:00
|
|
|
}
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
static int session_process_ping_frame(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
nghttp2_inbound_frame *iframe = &session->iframe;
|
|
|
|
nghttp2_frame *frame = &iframe->frame;
|
|
|
|
|
|
|
|
nghttp2_frame_unpack_ping_payload(&frame->ping,
|
2014-03-22 10:27:38 +01:00
|
|
|
iframe->sbuf.pos,
|
|
|
|
nghttp2_buf_len(&iframe->sbuf));
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
return nghttp2_session_on_ping_received(session, frame);
|
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_on_goaway_received(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
2012-01-28 11:22:38 +01:00
|
|
|
{
|
2014-01-18 16:37:45 +01:00
|
|
|
if(frame->hd.stream_id != 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2014-01-18 16:37:45 +01:00
|
|
|
}
|
2013-07-15 14:45:59 +02:00
|
|
|
session->last_stream_id = frame->goaway.last_stream_id;
|
2013-07-12 17:19:03 +02:00
|
|
|
session->goaway_flags |= NGHTTP2_GOAWAY_RECV;
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_call_on_frame_received(session, frame);
|
2012-01-28 11:22:38 +01:00
|
|
|
}
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
static int session_process_goaway_frame(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
nghttp2_inbound_frame *iframe = &session->iframe;
|
|
|
|
nghttp2_frame *frame = &iframe->frame;
|
|
|
|
|
|
|
|
nghttp2_frame_unpack_goaway_payload(&frame->goaway,
|
2014-03-22 10:27:38 +01:00
|
|
|
iframe->sbuf.pos,
|
2014-03-22 10:59:59 +01:00
|
|
|
nghttp2_buf_len(&iframe->sbuf),
|
|
|
|
iframe->lbuf.pos,
|
|
|
|
nghttp2_buf_len(&iframe->lbuf));
|
|
|
|
|
|
|
|
nghttp2_buf_wrap_init(&iframe->lbuf, NULL, 0);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
return nghttp2_session_on_goaway_received(session, frame);
|
|
|
|
}
|
|
|
|
|
2014-04-01 14:47:51 +02:00
|
|
|
int nghttp2_session_on_altsvc_received(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
|
|
|
{
|
|
|
|
/* ALTSVC is exptected to be received by client only. We have
|
|
|
|
already rejected ALTSVC if it is received by server. */
|
|
|
|
if(frame->hd.stream_id != 0 &&
|
|
|
|
!nghttp2_session_is_my_stream_id(session, frame->hd.stream_id)) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2014-04-01 14:47:51 +02:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_call_on_frame_received(session, frame);
|
2014-04-01 14:47:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int session_process_altsvc_frame(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
nghttp2_inbound_frame *iframe = &session->iframe;
|
|
|
|
nghttp2_frame *frame = &iframe->frame;
|
|
|
|
int rv;
|
|
|
|
|
2014-06-09 16:16:54 +02:00
|
|
|
frame->ext.payload = &iframe->ext_frame_payload;
|
|
|
|
|
|
|
|
rv = nghttp2_frame_unpack_altsvc_payload(&frame->ext,
|
2014-04-01 14:47:51 +02:00
|
|
|
iframe->sbuf.pos,
|
|
|
|
nghttp2_buf_len(&iframe->sbuf),
|
|
|
|
iframe->lbuf.pos,
|
|
|
|
nghttp2_buf_len(&iframe->lbuf));
|
|
|
|
|
|
|
|
if(rv != 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_FRAME_SIZE_ERROR);
|
2014-04-01 14:47:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
nghttp2_buf_wrap_init(&iframe->lbuf, NULL, 0);
|
|
|
|
|
|
|
|
return nghttp2_session_on_altsvc_received(session, frame);
|
|
|
|
}
|
|
|
|
|
2014-04-24 17:35:48 +02:00
|
|
|
int nghttp2_session_on_blocked_received(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
|
|
|
{
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_call_on_frame_received(session, frame);
|
2014-04-24 17:35:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int session_process_blocked_frame(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
nghttp2_inbound_frame *iframe = &session->iframe;
|
|
|
|
nghttp2_frame *frame = &iframe->frame;
|
|
|
|
|
2014-06-09 16:16:54 +02:00
|
|
|
frame->ext.payload = NULL;
|
|
|
|
|
2014-04-24 17:35:48 +02:00
|
|
|
return nghttp2_session_on_blocked_received(session, frame);
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
static int push_back_deferred_data_func(nghttp2_map_entry *entry, void *ptr)
|
2013-07-16 13:54:24 +02:00
|
|
|
{
|
2014-03-25 18:04:24 +01:00
|
|
|
int rv;
|
2013-07-16 13:54:24 +02:00
|
|
|
nghttp2_session *session;
|
|
|
|
nghttp2_stream *stream;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-07-16 13:54:24 +02:00
|
|
|
session = (nghttp2_session*)ptr;
|
|
|
|
stream = (nghttp2_stream*)entry;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2013-07-16 13:54:24 +02:00
|
|
|
/* If DATA frame is deferred due to flow control, push it back to
|
|
|
|
outbound queue. */
|
2014-04-02 15:55:49 +02:00
|
|
|
if(nghttp2_stream_check_deferred_by_flow_control(stream) &&
|
2014-02-05 16:23:20 +01:00
|
|
|
stream->remote_window_size > 0) {
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-05-08 16:07:29 +02:00
|
|
|
rv = nghttp2_stream_resume_deferred_data(stream, &session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
2013-07-16 13:54:24 +02:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Push back deferred DATA frames to queue if they are deferred due to
|
|
|
|
* connection-level flow control.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_push_back_deferred_data(nghttp2_session *session)
|
2013-07-16 13:54:24 +02:00
|
|
|
{
|
|
|
|
return nghttp2_map_each(&session->streams,
|
2014-05-08 16:37:56 +02:00
|
|
|
push_back_deferred_data_func, session);
|
2013-07-16 13:54:24 +02:00
|
|
|
}
|
|
|
|
|
2013-09-05 16:21:00 +02:00
|
|
|
static int session_on_connection_window_update_received
|
|
|
|
(nghttp2_session *session, nghttp2_frame *frame)
|
2012-02-25 16:12:32 +01:00
|
|
|
{
|
2013-08-29 14:03:39 +02:00
|
|
|
int rv;
|
2013-09-05 16:21:00 +02:00
|
|
|
/* Handle connection-level flow control */
|
|
|
|
if(NGHTTP2_MAX_WINDOW_SIZE - frame->window_update.window_size_increment <
|
|
|
|
session->remote_window_size) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection
|
2013-09-05 16:21:00 +02:00
|
|
|
(session, frame, NGHTTP2_FLOW_CONTROL_ERROR);
|
|
|
|
}
|
|
|
|
session->remote_window_size += frame->window_update.window_size_increment;
|
|
|
|
/* To queue the DATA deferred by connection-level flow-control, we
|
|
|
|
have to check all streams. Bad. */
|
|
|
|
if(session->remote_window_size > 0) {
|
2014-04-24 17:35:48 +02:00
|
|
|
session->blocked_sent = 0;
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_push_back_deferred_data(session);
|
2013-09-28 10:59:24 +02:00
|
|
|
if(rv != 0) {
|
2013-11-12 02:44:04 +01:00
|
|
|
/* FATAL */
|
|
|
|
assert(rv < NGHTTP2_ERR_FATAL);
|
|
|
|
return rv;
|
2013-09-28 10:59:24 +02:00
|
|
|
}
|
2013-09-05 16:21:00 +02:00
|
|
|
}
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_call_on_frame_received(session, frame);
|
2013-09-05 16:21:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int session_on_stream_window_update_received
|
|
|
|
(nghttp2_session *session, nghttp2_frame *frame)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
if(!stream) {
|
2014-02-01 08:05:58 +01:00
|
|
|
if(session_detect_idle_stream(session, frame->hd.stream_id)) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2014-02-01 08:05:58 +01:00
|
|
|
}
|
2013-09-05 16:21:00 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(stream->state == NGHTTP2_STREAM_RESERVED) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_connection
|
2013-09-05 16:21:00 +02:00
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
if(NGHTTP2_MAX_WINDOW_SIZE - frame->window_update.window_size_increment <
|
|
|
|
stream->remote_window_size) {
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_handle_invalid_stream(session, frame,
|
|
|
|
NGHTTP2_FLOW_CONTROL_ERROR);
|
2013-09-05 16:21:00 +02:00
|
|
|
}
|
|
|
|
stream->remote_window_size += frame->window_update.window_size_increment;
|
2014-04-24 17:35:48 +02:00
|
|
|
|
|
|
|
if(stream->remote_window_size > 0) {
|
|
|
|
stream->blocked_sent = 0;
|
|
|
|
}
|
|
|
|
|
2013-09-05 16:21:00 +02:00
|
|
|
if(stream->remote_window_size > 0 &&
|
2014-02-05 16:23:20 +01:00
|
|
|
session->remote_window_size > 0 &&
|
2014-04-02 15:55:49 +02:00
|
|
|
nghttp2_stream_check_deferred_by_flow_control(stream)) {
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-05-08 16:07:29 +02:00
|
|
|
rv = nghttp2_stream_resume_deferred_data(stream, &session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
2013-08-29 14:03:39 +02:00
|
|
|
return rv;
|
|
|
|
}
|
2013-09-05 16:21:00 +02:00
|
|
|
}
|
2014-05-08 16:37:56 +02:00
|
|
|
return session_call_on_frame_received(session, frame);
|
2013-09-05 16:21:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int nghttp2_session_on_window_update_received(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
|
|
|
{
|
|
|
|
if(frame->hd.stream_id == 0) {
|
|
|
|
return session_on_connection_window_update_received(session, frame);
|
2013-07-15 14:45:59 +02:00
|
|
|
} else {
|
2013-09-05 16:21:00 +02:00
|
|
|
return session_on_stream_window_update_received(session, frame);
|
2012-02-25 16:12:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
static int session_process_window_update_frame(nghttp2_session *session)
|
2012-05-25 06:49:18 +02:00
|
|
|
{
|
2014-01-26 07:44:43 +01:00
|
|
|
nghttp2_inbound_frame *iframe = &session->iframe;
|
|
|
|
nghttp2_frame *frame = &iframe->frame;
|
2012-05-25 06:49:18 +02:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
nghttp2_frame_unpack_window_update_payload(&frame->window_update,
|
2014-03-22 10:27:38 +01:00
|
|
|
iframe->sbuf.pos,
|
|
|
|
nghttp2_buf_len(&iframe->sbuf));
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
return nghttp2_session_on_window_update_received(session, frame);
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
/* static int get_error_code_from_lib_error_code(int lib_error_code) */
|
|
|
|
/* { */
|
|
|
|
/* switch(lib_error_code) { */
|
|
|
|
/* case NGHTTP2_ERR_HEADER_COMP: */
|
|
|
|
/* return NGHTTP2_COMPRESSION_ERROR; */
|
|
|
|
/* case NGHTTP2_ERR_FRAME_SIZE_ERROR: */
|
|
|
|
/* return NGHTTP2_FRAME_SIZE_ERROR; */
|
|
|
|
/* default: */
|
|
|
|
/* return NGHTTP2_PROTOCOL_ERROR; */
|
|
|
|
/* } */
|
|
|
|
/* } */
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_on_data_received(nghttp2_session *session,
|
2014-01-27 14:13:41 +01:00
|
|
|
nghttp2_frame *frame)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2013-09-05 16:17:16 +02:00
|
|
|
int rv = 0;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream *stream;
|
2014-01-26 07:44:43 +01:00
|
|
|
|
2014-03-13 14:49:37 +01:00
|
|
|
/* We don't call on_frame_recv_callback if stream has been closed
|
|
|
|
already or being closed. */
|
2014-01-27 14:13:41 +01:00
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
2014-03-13 14:49:37 +01:00
|
|
|
if(!stream || stream->state == NGHTTP2_STREAM_CLOSING) {
|
2013-09-05 16:17:16 +02:00
|
|
|
/* This should be treated as stream error, but it results in lots
|
|
|
|
of RST_STREAM. So just ignore frame against nonexistent stream
|
|
|
|
for now. */
|
|
|
|
return 0;
|
|
|
|
}
|
2014-03-13 14:49:37 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_call_on_frame_received(session, frame);
|
2014-03-13 14:49:37 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-01-27 14:13:41 +01:00
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
2013-09-05 16:17:16 +02:00
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_RD);
|
|
|
|
rv = nghttp2_session_close_stream_if_shut_rdwr(session, stream);
|
2014-01-26 07:44:43 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
2013-09-05 16:17:16 +02:00
|
|
|
return rv;
|
|
|
|
}
|
2012-01-28 14:46:12 +01:00
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
return 0;
|
2012-01-29 08:27:00 +01:00
|
|
|
}
|
|
|
|
|
2012-02-23 14:49:08 +01:00
|
|
|
/* For errors, this function only returns FATAL error. */
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_process_data_frame(nghttp2_session *session)
|
2012-01-29 08:27:00 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2014-01-27 14:13:41 +01:00
|
|
|
nghttp2_frame *public_data_frame = &session->iframe.frame;
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = nghttp2_session_on_data_received(session, public_data_frame);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
2012-01-27 19:54:53 +01:00
|
|
|
}
|
2014-02-18 16:45:20 +01:00
|
|
|
return 0;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2013-08-08 17:58:52 +02:00
|
|
|
/*
|
2013-10-29 13:53:50 +01:00
|
|
|
* Now we have SETTINGS synchronization, flow control error can be
|
|
|
|
* detected strictly. If DATA frame is received with length > 0 and
|
2014-01-20 11:50:11 +01:00
|
|
|
* current received window size + delta length is strictly larger than
|
|
|
|
* local window size, it is subject to FLOW_CONTROL_ERROR, so return
|
|
|
|
* -1. Note that local_window_size is calculated after SETTINGS ACK is
|
|
|
|
* received from peer, so peer must honor this limit. If the resulting
|
2013-10-29 13:53:50 +01:00
|
|
|
* recv_window_size is strictly larger than NGHTTP2_MAX_WINDOW_SIZE,
|
|
|
|
* return -1 too.
|
2013-08-08 17:58:52 +02:00
|
|
|
*/
|
|
|
|
static int adjust_recv_window_size(int32_t *recv_window_size_ptr,
|
2013-10-29 13:53:50 +01:00
|
|
|
int32_t delta,
|
|
|
|
int32_t local_window_size)
|
2013-07-16 13:54:24 +02:00
|
|
|
{
|
2014-01-20 11:50:11 +01:00
|
|
|
if(*recv_window_size_ptr > local_window_size - delta ||
|
2013-10-29 13:53:50 +01:00
|
|
|
*recv_window_size_ptr > NGHTTP2_MAX_WINDOW_SIZE - delta) {
|
|
|
|
return -1;
|
2013-07-16 13:54:24 +02:00
|
|
|
}
|
2013-08-08 17:58:52 +02:00
|
|
|
*recv_window_size_ptr += delta;
|
|
|
|
return 0;
|
2013-07-16 13:54:24 +02:00
|
|
|
}
|
|
|
|
|
2012-02-25 16:12:32 +01:00
|
|
|
/*
|
2013-08-07 15:02:30 +02:00
|
|
|
* Accumulates received bytes |delta_size| for stream-level flow
|
|
|
|
* control and decides whether to send WINDOW_UPDATE to that
|
2013-08-08 18:23:39 +02:00
|
|
|
* stream. If NGHTTP2_OPT_NO_AUTO_STREAM_WINDOW_UPDATE is set,
|
|
|
|
* WINDOW_UPDATE will not be sent.
|
2012-02-25 16:12:32 +01:00
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_NOMEM
|
2012-02-25 16:12:32 +01:00
|
|
|
* Out of memory.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_update_recv_stream_window_size
|
2013-08-07 15:02:30 +02:00
|
|
|
(nghttp2_session *session,
|
|
|
|
nghttp2_stream *stream,
|
2014-02-11 13:30:44 +01:00
|
|
|
int32_t delta_size,
|
|
|
|
int send_window_update)
|
2013-08-07 15:02:30 +02:00
|
|
|
{
|
2013-08-08 17:58:52 +02:00
|
|
|
int rv;
|
2013-10-29 13:53:50 +01:00
|
|
|
rv = adjust_recv_window_size(&stream->recv_window_size, delta_size,
|
|
|
|
stream->local_window_size);
|
2013-08-08 17:58:52 +02:00
|
|
|
if(rv != 0) {
|
|
|
|
return nghttp2_session_add_rst_stream(session, stream->stream_id,
|
2013-10-29 13:53:50 +01:00
|
|
|
NGHTTP2_FLOW_CONTROL_ERROR);
|
2013-08-08 17:58:52 +02:00
|
|
|
}
|
2014-02-11 13:30:44 +01:00
|
|
|
/* We don't have to send WINDOW_UPDATE if the data received is the
|
|
|
|
last chunk in the incoming stream. */
|
|
|
|
if(send_window_update &&
|
|
|
|
!(session->opt_flags & NGHTTP2_OPTMASK_NO_AUTO_STREAM_WINDOW_UPDATE)) {
|
2013-08-07 15:02:30 +02:00
|
|
|
/* We have to use local_settings here because it is the constraint
|
|
|
|
the remote endpoint should honor. */
|
2013-08-08 17:58:52 +02:00
|
|
|
if(nghttp2_should_send_window_update(stream->local_window_size,
|
|
|
|
stream->recv_window_size)) {
|
|
|
|
rv = nghttp2_session_add_window_update(session,
|
2013-08-07 15:02:30 +02:00
|
|
|
NGHTTP2_FLAG_NONE,
|
|
|
|
stream->stream_id,
|
|
|
|
stream->recv_window_size);
|
2013-08-08 17:58:52 +02:00
|
|
|
if(rv == 0) {
|
2013-08-07 15:02:30 +02:00
|
|
|
stream->recv_window_size = 0;
|
|
|
|
} else {
|
2013-08-08 17:58:52 +02:00
|
|
|
return rv;
|
2012-02-25 16:12:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-07 15:02:30 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Accumulates received bytes |delta_size| for connection-level flow
|
|
|
|
* control and decides whether to send WINDOW_UPDATE to the
|
2013-08-08 18:23:39 +02:00
|
|
|
* connection. If NGHTTP2_OPT_NO_AUTO_CONNECTION_WINDOW_UPDATE is
|
|
|
|
* set, WINDOW_UPDATE will not be sent.
|
2013-08-07 15:02:30 +02:00
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_update_recv_connection_window_size
|
2013-08-07 15:02:30 +02:00
|
|
|
(nghttp2_session *session,
|
|
|
|
int32_t delta_size)
|
|
|
|
{
|
2013-08-08 17:58:52 +02:00
|
|
|
int rv;
|
2013-10-29 13:53:50 +01:00
|
|
|
rv = adjust_recv_window_size(&session->recv_window_size, delta_size,
|
|
|
|
session->local_window_size);
|
2013-08-08 17:58:52 +02:00
|
|
|
if(rv != 0) {
|
2013-12-25 16:23:07 +01:00
|
|
|
return nghttp2_session_terminate_session(session,
|
|
|
|
NGHTTP2_FLOW_CONTROL_ERROR);
|
2013-08-08 17:58:52 +02:00
|
|
|
}
|
2013-08-08 18:23:39 +02:00
|
|
|
if(!(session->opt_flags &
|
|
|
|
NGHTTP2_OPTMASK_NO_AUTO_CONNECTION_WINDOW_UPDATE)) {
|
2013-08-08 17:58:52 +02:00
|
|
|
if(nghttp2_should_send_window_update(session->local_window_size,
|
|
|
|
session->recv_window_size)) {
|
2013-08-07 15:02:30 +02:00
|
|
|
/* Use stream ID 0 to update connection-level flow control
|
|
|
|
window */
|
2013-08-08 17:58:52 +02:00
|
|
|
rv = nghttp2_session_add_window_update(session,
|
2013-08-07 15:02:30 +02:00
|
|
|
NGHTTP2_FLAG_NONE,
|
|
|
|
0,
|
|
|
|
session->recv_window_size);
|
2013-08-08 17:58:52 +02:00
|
|
|
if(rv == 0) {
|
2013-08-07 15:02:30 +02:00
|
|
|
session->recv_window_size = 0;
|
|
|
|
} else {
|
2013-08-08 17:58:52 +02:00
|
|
|
return rv;
|
2013-07-16 13:54:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-02-25 16:12:32 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-06-14 15:39:44 +02:00
|
|
|
/*
|
2014-01-26 07:44:43 +01:00
|
|
|
* Checks that we can receive the DATA frame for stream, which is
|
|
|
|
* indicated by |session->iframe.frame.hd.stream_id|. If it is a
|
|
|
|
* connection error situation, GOAWAY frame will be issued by this
|
|
|
|
* function.
|
|
|
|
*
|
|
|
|
* If the DATA frame is allowed, returns 0.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_IGN_PAYLOAD
|
|
|
|
* The reception of DATA frame is connection error; or should be
|
|
|
|
* ignored.
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
2012-06-14 15:39:44 +02:00
|
|
|
*/
|
2014-05-08 16:37:56 +02:00
|
|
|
static int session_on_data_received_fail_fast(nghttp2_session *session)
|
2012-06-14 15:39:44 +02:00
|
|
|
{
|
2014-01-26 07:44:43 +01:00
|
|
|
int rv;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream *stream;
|
2014-04-24 18:27:18 +02:00
|
|
|
nghttp2_inbound_frame *iframe;
|
|
|
|
int32_t stream_id;
|
|
|
|
|
|
|
|
iframe = &session->iframe;
|
|
|
|
stream_id = iframe->frame.hd.stream_id;
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(stream_id == 0) {
|
|
|
|
/* The spec says that if a DATA frame is received whose stream ID
|
|
|
|
is 0, the recipient MUST respond with a connection error of
|
|
|
|
type PROTOCOL_ERROR. */
|
|
|
|
goto fail;
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
2014-01-26 07:44:43 +01:00
|
|
|
if(!stream) {
|
2014-02-01 08:05:58 +01:00
|
|
|
if(session_detect_idle_stream(session, stream_id)) {
|
|
|
|
goto fail;
|
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
return NGHTTP2_ERR_IGN_PAYLOAD;
|
|
|
|
}
|
|
|
|
if(stream->shut_flags & NGHTTP2_SHUT_RD) {
|
|
|
|
goto fail;
|
|
|
|
}
|
2014-04-24 18:27:18 +02:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(nghttp2_session_is_my_stream_id(session, stream_id)) {
|
|
|
|
if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
|
|
|
return NGHTTP2_ERR_IGN_PAYLOAD;
|
|
|
|
}
|
|
|
|
if(stream->state != NGHTTP2_STREAM_OPENED) {
|
|
|
|
goto fail;
|
2012-06-14 15:39:44 +02:00
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(stream->state == NGHTTP2_STREAM_RESERVED) {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
|
|
|
return NGHTTP2_ERR_IGN_PAYLOAD;
|
2012-06-14 15:39:44 +02:00
|
|
|
}
|
|
|
|
return 0;
|
2014-01-26 07:44:43 +01:00
|
|
|
fail:
|
|
|
|
rv = nghttp2_session_terminate_session(session, NGHTTP2_PROTOCOL_ERROR);
|
2014-02-01 08:05:58 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
2014-01-26 07:44:43 +01:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
return NGHTTP2_ERR_IGN_PAYLOAD;
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t inbound_frame_payload_readlen(nghttp2_inbound_frame *iframe,
|
|
|
|
const uint8_t *in,
|
|
|
|
const uint8_t *last)
|
|
|
|
{
|
|
|
|
return nghttp2_min((size_t)(last - in), iframe->payloadleft);
|
|
|
|
}
|
|
|
|
|
2014-02-11 08:33:07 +01:00
|
|
|
/*
|
2014-03-22 10:27:38 +01:00
|
|
|
* Resets iframe->sbuf and advance its mark pointer by |left| bytes.
|
2014-02-11 08:33:07 +01:00
|
|
|
*/
|
2014-03-22 10:27:38 +01:00
|
|
|
static void inbound_frame_set_mark(nghttp2_inbound_frame *iframe, size_t left)
|
2014-02-11 08:33:07 +01:00
|
|
|
{
|
2014-03-22 10:27:38 +01:00
|
|
|
nghttp2_buf_reset(&iframe->sbuf);
|
|
|
|
iframe->sbuf.mark += left;
|
2014-02-11 08:33:07 +01:00
|
|
|
}
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
static size_t inbound_frame_buf_read(nghttp2_inbound_frame *iframe,
|
|
|
|
const uint8_t *in, const uint8_t *last)
|
|
|
|
{
|
2014-03-22 10:27:38 +01:00
|
|
|
size_t readlen;
|
|
|
|
|
|
|
|
readlen = nghttp2_min(last - in,
|
|
|
|
nghttp2_buf_mark_avail(&iframe->sbuf));
|
|
|
|
|
|
|
|
iframe->sbuf.last = nghttp2_cpymem(iframe->sbuf.last, in, readlen);
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
return readlen;
|
2012-06-14 15:39:44 +02:00
|
|
|
}
|
|
|
|
|
2014-01-17 14:52:30 +01:00
|
|
|
/*
|
2014-03-22 10:27:38 +01:00
|
|
|
* Unpacks SETTINGS entry in iframe->sbuf.
|
2014-01-17 14:52:30 +01:00
|
|
|
*
|
2014-01-26 07:44:43 +01:00
|
|
|
* This function returns 0 if it succeeds, or -1.
|
2014-01-17 14:52:30 +01:00
|
|
|
*/
|
2014-01-26 07:44:43 +01:00
|
|
|
static int inbound_frame_set_settings_entry(nghttp2_inbound_frame *iframe)
|
2013-09-28 10:59:24 +02:00
|
|
|
{
|
2014-01-26 07:44:43 +01:00
|
|
|
nghttp2_settings_entry iv;
|
|
|
|
size_t i;
|
|
|
|
|
2014-03-22 10:27:38 +01:00
|
|
|
nghttp2_frame_unpack_settings_entry(&iv, iframe->sbuf.pos);
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
switch(iv.settings_id) {
|
|
|
|
case NGHTTP2_SETTINGS_HEADER_TABLE_SIZE:
|
|
|
|
case NGHTTP2_SETTINGS_ENABLE_PUSH:
|
|
|
|
case NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS:
|
|
|
|
case NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE:
|
2013-09-28 10:59:24 +02:00
|
|
|
break;
|
|
|
|
default:
|
2014-06-09 16:21:30 +02:00
|
|
|
DEBUGF(fprintf(stderr, "recv: ignore unknown settings id=0x%02x\n",
|
|
|
|
iv.settings_id));
|
2014-01-26 07:44:43 +01:00
|
|
|
return -1;
|
2013-09-28 10:59:24 +02:00
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
for(i = 0; i < iframe->niv; ++i) {
|
|
|
|
if(iframe->iv[i].settings_id == iv.settings_id) {
|
|
|
|
iframe->iv[i] = iv;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(i == iframe->niv) {
|
|
|
|
iframe->iv[iframe->niv++] = iv;
|
2014-01-17 15:49:40 +01:00
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-17 15:49:40 +01:00
|
|
|
return 0;
|
2013-09-28 10:59:24 +02:00
|
|
|
}
|
|
|
|
|
2014-02-08 10:02:57 +01:00
|
|
|
/*
|
2014-06-07 11:15:36 +02:00
|
|
|
* Checks PADDED flags and set iframe->sbuf to read them accordingly.
|
|
|
|
* If padding is set, this function returns 1. If no padding is set,
|
|
|
|
* this function returns 0. On error, returns -1.
|
2014-02-08 10:02:57 +01:00
|
|
|
*/
|
2014-02-08 16:35:21 +01:00
|
|
|
static int inbound_frame_handle_pad(nghttp2_inbound_frame *iframe,
|
|
|
|
nghttp2_frame_hd *hd)
|
2014-02-08 10:02:57 +01:00
|
|
|
{
|
2014-06-07 11:15:36 +02:00
|
|
|
if(hd->flags & NGHTTP2_FLAG_PADDED) {
|
2014-02-15 08:30:43 +01:00
|
|
|
if(hd->length < 1) {
|
|
|
|
return -1;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
inbound_frame_set_mark(iframe, 1);
|
2014-02-08 10:02:57 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: no padding in payload\n"));
|
2014-02-08 10:02:57 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-02-08 16:35:21 +01:00
|
|
|
/*
|
|
|
|
* Computes number of padding based on flags. This function returns
|
|
|
|
* the calculated length if it succeeds, or -1.
|
|
|
|
*/
|
|
|
|
static ssize_t inbound_frame_compute_pad(nghttp2_inbound_frame *iframe)
|
|
|
|
{
|
|
|
|
size_t padlen;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-06-07 11:15:36 +02:00
|
|
|
/* 1 for Pad Length field */
|
|
|
|
padlen = iframe->sbuf.pos[0] + 1;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: padlen=%zu\n", padlen));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-11 07:28:44 +01:00
|
|
|
/* We cannot use iframe->frame.hd.length because of CONTINUATION */
|
2014-06-07 11:15:36 +02:00
|
|
|
if(padlen - 1 > iframe->payloadleft) {
|
2014-02-08 16:35:21 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-08 16:35:21 +01:00
|
|
|
iframe->padlen = padlen;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-08 16:35:21 +01:00
|
|
|
return padlen;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function returns the effective payload length in the data of
|
|
|
|
* length |readlen| when the remaning payload is |payloadleft|. The
|
|
|
|
* |payloadleft| does not include |readlen|. If padding was started
|
|
|
|
* strictly before this data chunk, this function returns -1.
|
|
|
|
*/
|
|
|
|
static ssize_t inbound_frame_effective_readlen(nghttp2_inbound_frame *iframe,
|
|
|
|
size_t payloadleft,
|
|
|
|
size_t readlen)
|
|
|
|
{
|
|
|
|
size_t trail_padlen = nghttp2_frame_trail_padlen(&iframe->frame,
|
|
|
|
iframe->padlen);
|
|
|
|
|
|
|
|
if(trail_padlen > payloadleft) {
|
|
|
|
size_t padlen;
|
|
|
|
padlen = trail_padlen - payloadleft;
|
|
|
|
if(readlen < padlen) {
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
return readlen - padlen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return readlen;
|
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
ssize_t nghttp2_session_mem_recv(nghttp2_session *session,
|
2012-03-17 15:39:38 +01:00
|
|
|
const uint8_t *in, size_t inlen)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2014-01-26 07:44:43 +01:00
|
|
|
const uint8_t *first = in, *last = in + inlen;
|
|
|
|
nghttp2_inbound_frame *iframe = &session->iframe;
|
|
|
|
size_t readlen;
|
|
|
|
int rv;
|
|
|
|
int busy = 0;
|
2014-01-26 12:31:28 +01:00
|
|
|
nghttp2_frame_hd cont_hd;
|
2014-02-11 13:30:44 +01:00
|
|
|
nghttp2_stream *stream;
|
2014-03-25 18:04:24 +01:00
|
|
|
size_t pri_fieldlen;
|
2014-01-26 07:44:43 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr,
|
|
|
|
"recv: connection recv_window_size=%d, local_window=%d\n",
|
2014-02-11 13:35:41 +01:00
|
|
|
session->recv_window_size, session->local_window_size));
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
for(;;) {
|
|
|
|
switch(iframe->state) {
|
|
|
|
case NGHTTP2_IB_READ_HEAD:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: [IB_READ_HEAD]\n"));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
readlen = inbound_frame_buf_read(iframe, in, last);
|
|
|
|
in += readlen;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
|
|
|
if(nghttp2_buf_mark_avail(&iframe->sbuf)) {
|
2014-01-26 07:44:43 +01:00
|
|
|
return in - first;
|
|
|
|
}
|
2014-01-26 12:31:28 +01:00
|
|
|
|
2014-03-22 10:27:38 +01:00
|
|
|
nghttp2_frame_unpack_frame_hd(&iframe->frame.hd, iframe->sbuf.pos);
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->payloadleft = iframe->frame.hd.length;
|
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr,
|
|
|
|
"recv: payloadlen=%zu, type=%u, flags=0x%02x, "
|
|
|
|
"stream_id=%d\n",
|
|
|
|
iframe->frame.hd.length,
|
|
|
|
iframe->frame.hd.type,
|
|
|
|
iframe->frame.hd.flags,
|
|
|
|
iframe->frame.hd.stream_id));
|
2014-02-14 17:34:04 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
switch(iframe->frame.hd.type) {
|
|
|
|
case NGHTTP2_DATA: {
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: DATA\n"));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-05 15:25:42 +01:00
|
|
|
iframe->frame.hd.flags &= (NGHTTP2_FLAG_END_STREAM |
|
|
|
|
NGHTTP2_FLAG_END_SEGMENT |
|
2014-06-07 11:15:36 +02:00
|
|
|
NGHTTP2_FLAG_PADDED);
|
2014-01-26 07:44:43 +01:00
|
|
|
/* Check stream is open. If it is not open or closing,
|
|
|
|
ignore payload. */
|
|
|
|
busy = 1;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_on_data_received_fail_fast(session);
|
2014-01-26 07:44:43 +01:00
|
|
|
if(rv == NGHTTP2_ERR_IGN_PAYLOAD) {
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: DATA not allowed stream_id=%d\n",
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->frame.hd.stream_id));
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_DATA;
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-08 16:35:21 +01:00
|
|
|
rv = inbound_frame_handle_pad(iframe, &iframe->frame.hd);
|
2014-02-08 10:02:57 +01:00
|
|
|
if(rv < 0) {
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_DATA;
|
|
|
|
rv = nghttp2_session_terminate_session(session,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-08 10:02:57 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
2014-02-07 15:22:17 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-11 08:24:21 +01:00
|
|
|
if(rv == 1) {
|
2014-02-12 13:35:40 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_PAD_DATA;
|
2014-02-07 15:22:17 +01:00
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-11 08:24:21 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_DATA;
|
2012-03-17 15:39:38 +01:00
|
|
|
break;
|
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
case NGHTTP2_HEADERS:
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-03-22 10:27:38 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: HEADERS\n"));
|
|
|
|
|
2014-03-05 15:25:42 +01:00
|
|
|
iframe->frame.hd.flags &= (NGHTTP2_FLAG_END_STREAM |
|
|
|
|
NGHTTP2_FLAG_END_SEGMENT |
|
|
|
|
NGHTTP2_FLAG_END_HEADERS |
|
2014-06-07 11:15:36 +02:00
|
|
|
NGHTTP2_FLAG_PADDED |
|
2014-04-14 16:53:54 +02:00
|
|
|
NGHTTP2_FLAG_PRIORITY);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-08 16:35:21 +01:00
|
|
|
rv = inbound_frame_handle_pad(iframe, &iframe->frame.hd);
|
2014-04-14 16:53:54 +02:00
|
|
|
if(rv < 0) {
|
2014-02-08 16:35:21 +01:00
|
|
|
busy = 1;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-08 16:35:21 +01:00
|
|
|
iframe->state = NGHTTP2_IB_IGN_PAYLOAD;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-08 16:35:21 +01:00
|
|
|
rv = nghttp2_session_terminate_session(session,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-08 16:35:21 +01:00
|
|
|
if(rv == 1) {
|
2014-02-11 08:24:21 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_NBYTE;
|
2014-02-08 16:35:21 +01:00
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-25 18:04:24 +01:00
|
|
|
pri_fieldlen = nghttp2_frame_priority_len(iframe->frame.hd.flags);
|
|
|
|
|
|
|
|
if(pri_fieldlen > 0) {
|
|
|
|
if(iframe->payloadleft < pri_fieldlen) {
|
2014-01-26 07:44:43 +01:00
|
|
|
busy = 1;
|
|
|
|
iframe->state = NGHTTP2_IB_FRAME_SIZE_ERROR;
|
|
|
|
break;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_NBYTE;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-25 18:04:24 +01:00
|
|
|
inbound_frame_set_mark(iframe, pri_fieldlen);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
rv = session_process_headers_frame(session);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
busy = 1;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-30 13:26:18 +01:00
|
|
|
if(rv == NGHTTP2_ERR_IGN_HEADER_BLOCK) {
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_HEADER_BLOCK;
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_HEADER_BLOCK;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
case NGHTTP2_PRIORITY:
|
2014-03-25 18:04:24 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: PRIORITY\n"));
|
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
iframe->frame.hd.flags = NGHTTP2_FLAG_NONE;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-05-22 14:41:43 +02:00
|
|
|
if(iframe->payloadleft != NGHTTP2_PRIORITY_SPECLEN) {
|
2014-03-25 18:04:24 +01:00
|
|
|
busy = 1;
|
|
|
|
|
|
|
|
iframe->state = NGHTTP2_IB_FRAME_SIZE_ERROR;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
iframe->state = NGHTTP2_IB_READ_NBYTE;
|
|
|
|
|
2014-05-22 14:41:43 +02:00
|
|
|
inbound_frame_set_mark(iframe, NGHTTP2_PRIORITY_SPECLEN);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
break;
|
2014-01-26 07:44:43 +01:00
|
|
|
case NGHTTP2_RST_STREAM:
|
|
|
|
case NGHTTP2_WINDOW_UPDATE:
|
2014-02-11 13:35:41 +01:00
|
|
|
#ifdef DEBUGBUILD
|
|
|
|
switch(iframe->frame.hd.type) {
|
|
|
|
case NGHTTP2_RST_STREAM:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: RST_STREAM\n"));
|
2014-02-11 13:35:41 +01:00
|
|
|
break;
|
|
|
|
case NGHTTP2_WINDOW_UPDATE:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: WINDOW_UPDATE\n"));
|
2014-02-11 13:35:41 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif /* DEBUGBUILD */
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-05 15:25:42 +01:00
|
|
|
iframe->frame.hd.flags = NGHTTP2_FLAG_NONE;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(iframe->payloadleft != 4) {
|
|
|
|
busy = 1;
|
|
|
|
iframe->state = NGHTTP2_IB_FRAME_SIZE_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_NBYTE;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
|
|
|
inbound_frame_set_mark(iframe, 4);
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
case NGHTTP2_SETTINGS:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: SETTINGS\n"));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-05 15:25:42 +01:00
|
|
|
iframe->frame.hd.flags &= NGHTTP2_FLAG_ACK;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-06 14:06:42 +01:00
|
|
|
if((iframe->frame.hd.length % NGHTTP2_FRAME_SETTINGS_ENTRY_LENGTH) ||
|
2014-01-26 07:44:43 +01:00
|
|
|
((iframe->frame.hd.flags & NGHTTP2_FLAG_ACK) &&
|
|
|
|
iframe->payloadleft > 0)) {
|
|
|
|
busy = 1;
|
|
|
|
iframe->state = NGHTTP2_IB_FRAME_SIZE_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_SETTINGS;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(iframe->payloadleft) {
|
2014-03-22 10:27:38 +01:00
|
|
|
inbound_frame_set_mark(iframe, NGHTTP2_FRAME_SETTINGS_ENTRY_LENGTH);
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
busy = 1;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
|
|
|
inbound_frame_set_mark(iframe, 0);
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
case NGHTTP2_PUSH_PROMISE:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: PUSH_PROMISE\n"));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-05 15:25:42 +01:00
|
|
|
iframe->frame.hd.flags &= (NGHTTP2_FLAG_END_HEADERS |
|
2014-06-07 11:15:36 +02:00
|
|
|
NGHTTP2_FLAG_PADDED);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-15 08:30:43 +01:00
|
|
|
rv = inbound_frame_handle_pad(iframe, &iframe->frame.hd);
|
|
|
|
if(rv < 0) {
|
|
|
|
busy = 1;
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_PAYLOAD;
|
|
|
|
rv = nghttp2_session_terminate_session(session,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-15 08:30:43 +01:00
|
|
|
if(rv == 1) {
|
|
|
|
iframe->state = NGHTTP2_IB_READ_NBYTE;
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(iframe->payloadleft < 4) {
|
|
|
|
busy = 1;
|
|
|
|
iframe->state = NGHTTP2_IB_FRAME_SIZE_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_NBYTE;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
|
|
|
inbound_frame_set_mark(iframe, 4);
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
case NGHTTP2_PING:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: PING\n"));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-05 15:25:42 +01:00
|
|
|
iframe->frame.hd.flags &= NGHTTP2_FLAG_ACK;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(iframe->payloadleft != 8) {
|
|
|
|
busy = 1;
|
|
|
|
iframe->state = NGHTTP2_IB_FRAME_SIZE_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_NBYTE;
|
2014-03-22 10:27:38 +01:00
|
|
|
inbound_frame_set_mark(iframe, 8);
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
case NGHTTP2_GOAWAY:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: GOAWAY\n"));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-05 15:25:42 +01:00
|
|
|
iframe->frame.hd.flags = NGHTTP2_FLAG_NONE;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(iframe->payloadleft < 8) {
|
|
|
|
busy = 1;
|
|
|
|
iframe->state = NGHTTP2_IB_FRAME_SIZE_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_NBYTE;
|
2014-03-22 10:27:38 +01:00
|
|
|
inbound_frame_set_mark(iframe, 8);
|
|
|
|
|
2014-06-07 09:30:55 +02:00
|
|
|
break;
|
|
|
|
case NGHTTP2_CONTINUATION:
|
|
|
|
DEBUGF(fprintf(stderr, "recv: unexpected CONTINUATION\n"));
|
|
|
|
|
|
|
|
/* Receiving CONTINUATION in this state are subject to
|
|
|
|
connection error of type PROTOCOL_ERROR */
|
|
|
|
rv = nghttp2_session_terminate_session(session,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
busy = 1;
|
|
|
|
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_PAYLOAD;
|
|
|
|
|
2014-04-01 14:47:51 +02:00
|
|
|
break;
|
2014-06-09 16:16:54 +02:00
|
|
|
case NGHTTP2_EXT_ALTSVC:
|
2014-04-01 14:47:51 +02:00
|
|
|
DEBUGF(fprintf(stderr, "recv: ALTSVC\n"));
|
|
|
|
|
|
|
|
iframe->frame.hd.flags = NGHTTP2_FLAG_NONE;
|
|
|
|
|
|
|
|
if(session->server) {
|
|
|
|
rv = nghttp2_session_terminate_session(session,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
busy = 1;
|
|
|
|
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_PAYLOAD;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-05-22 14:36:12 +02:00
|
|
|
if(iframe->payloadleft < NGHTTP2_ALTSVC_MINLEN) {
|
2014-04-01 14:47:51 +02:00
|
|
|
busy = 1;
|
|
|
|
|
|
|
|
iframe->state = NGHTTP2_IB_FRAME_SIZE_ERROR;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
iframe->state = NGHTTP2_IB_READ_NBYTE;
|
2014-05-22 14:36:12 +02:00
|
|
|
inbound_frame_set_mark(iframe, NGHTTP2_ALTSVC_FIXED_PARTLEN);
|
2014-04-01 14:47:51 +02:00
|
|
|
|
2014-04-24 17:35:48 +02:00
|
|
|
break;
|
2014-06-09 16:16:54 +02:00
|
|
|
case NGHTTP2_EXT_BLOCKED:
|
2014-04-24 17:35:48 +02:00
|
|
|
DEBUGF(fprintf(stderr, "recv: BLOCKED\n"));
|
|
|
|
|
|
|
|
iframe->frame.hd.flags = NGHTTP2_FLAG_NONE;
|
|
|
|
|
|
|
|
if(iframe->payloadleft != 0) {
|
|
|
|
busy = 1;
|
|
|
|
|
|
|
|
iframe->state = NGHTTP2_IB_FRAME_SIZE_ERROR;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = session_process_blocked_frame(session);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
session_inbound_frame_reset(session);
|
2014-04-24 17:35:48 +02:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
2014-02-06 13:42:49 +01:00
|
|
|
default:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: unknown frame\n"));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-06-07 09:30:55 +02:00
|
|
|
/* Silently ignore unknown frame type. */
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 12:31:28 +01:00
|
|
|
busy = 1;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 12:31:28 +01:00
|
|
|
iframe->state = NGHTTP2_IB_IGN_PAYLOAD;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 12:31:28 +01:00
|
|
|
break;
|
2014-01-26 07:44:43 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NGHTTP2_IB_READ_NBYTE:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: [IB_READ_NBYTE]\n"));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
readlen = inbound_frame_buf_read(iframe, in, last);
|
|
|
|
in += readlen;
|
|
|
|
iframe->payloadleft -= readlen;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
|
|
|
DEBUGF(fprintf(stderr, "recv: readlen=%zu, payloadleft=%zu, left=%zd\n",
|
|
|
|
readlen, iframe->payloadleft,
|
|
|
|
nghttp2_buf_mark_avail(&iframe->sbuf)));
|
|
|
|
|
|
|
|
if(nghttp2_buf_mark_avail(&iframe->sbuf)) {
|
2014-01-26 07:44:43 +01:00
|
|
|
return in - first;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
switch(iframe->frame.hd.type) {
|
|
|
|
case NGHTTP2_HEADERS:
|
2014-02-08 16:35:21 +01:00
|
|
|
if(iframe->padlen == 0 &&
|
2014-06-07 11:15:36 +02:00
|
|
|
iframe->frame.hd.flags & NGHTTP2_FLAG_PADDED) {
|
2014-02-08 16:35:21 +01:00
|
|
|
rv = inbound_frame_compute_pad(iframe);
|
|
|
|
if(rv < 0) {
|
|
|
|
busy = 1;
|
|
|
|
rv = nghttp2_session_terminate_session(session,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_PAYLOAD;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
iframe->frame.headers.padlen = rv;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
pri_fieldlen = nghttp2_frame_priority_len(iframe->frame.hd.flags);
|
|
|
|
|
|
|
|
if(pri_fieldlen > 0) {
|
|
|
|
if(iframe->payloadleft < pri_fieldlen) {
|
2014-02-08 16:35:21 +01:00
|
|
|
busy = 1;
|
|
|
|
iframe->state = NGHTTP2_IB_FRAME_SIZE_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
iframe->state = NGHTTP2_IB_READ_NBYTE;
|
2014-03-25 18:04:24 +01:00
|
|
|
inbound_frame_set_mark(iframe, pri_fieldlen);
|
2014-02-08 16:35:21 +01:00
|
|
|
break;
|
2014-04-14 16:53:54 +02:00
|
|
|
} else {
|
|
|
|
/* Truncate buffers used for padding spec */
|
|
|
|
inbound_frame_set_mark(iframe, 0);
|
2014-02-08 16:35:21 +01:00
|
|
|
}
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
rv = session_process_headers_frame(session);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
busy = 1;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(rv == NGHTTP2_ERR_IGN_HEADER_BLOCK) {
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_HEADER_BLOCK;
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_HEADER_BLOCK;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
case NGHTTP2_PRIORITY:
|
|
|
|
rv = session_process_priority_frame(session);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
session_inbound_frame_reset(session);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
case NGHTTP2_RST_STREAM:
|
|
|
|
rv = session_process_rst_stream_frame(session);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
session_inbound_frame_reset(session);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
case NGHTTP2_PUSH_PROMISE:
|
2014-02-15 08:30:43 +01:00
|
|
|
if(iframe->padlen == 0 &&
|
2014-06-07 11:15:36 +02:00
|
|
|
iframe->frame.hd.flags & NGHTTP2_FLAG_PADDED) {
|
2014-02-15 08:30:43 +01:00
|
|
|
rv = inbound_frame_compute_pad(iframe);
|
|
|
|
if(rv < 0) {
|
|
|
|
busy = 1;
|
|
|
|
rv = nghttp2_session_terminate_session(session,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_PAYLOAD;
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-15 08:30:43 +01:00
|
|
|
iframe->frame.push_promise.padlen = rv;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-15 08:30:43 +01:00
|
|
|
if(iframe->payloadleft < 4) {
|
|
|
|
busy = 1;
|
|
|
|
iframe->state = NGHTTP2_IB_FRAME_SIZE_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-15 08:30:43 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_NBYTE;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
|
|
|
inbound_frame_set_mark(iframe, 4);
|
|
|
|
|
2014-02-15 08:30:43 +01:00
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
rv = session_process_push_promise_frame(session);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
busy = 1;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(rv == NGHTTP2_ERR_IGN_HEADER_BLOCK) {
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_HEADER_BLOCK;
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_HEADER_BLOCK;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
case NGHTTP2_PING:
|
|
|
|
rv = session_process_ping_frame(session);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
session_inbound_frame_reset(session);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
2014-03-22 10:59:59 +01:00
|
|
|
case NGHTTP2_GOAWAY: {
|
|
|
|
size_t debuglen;
|
|
|
|
|
|
|
|
/* 8 is Last-stream-ID + Error Code */
|
|
|
|
debuglen = iframe->frame.hd.length - 8;
|
|
|
|
|
|
|
|
if(debuglen > 0) {
|
|
|
|
iframe->raw_lbuf = malloc(debuglen);
|
|
|
|
|
|
|
|
if(iframe->raw_lbuf == NULL) {
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
nghttp2_buf_wrap_init(&iframe->lbuf, iframe->raw_lbuf, debuglen);
|
|
|
|
}
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
busy = 1;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_GOAWAY_DEBUG;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
2014-03-22 10:59:59 +01:00
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
case NGHTTP2_WINDOW_UPDATE:
|
|
|
|
rv = session_process_window_update_frame(session);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
session_inbound_frame_reset(session);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
2014-06-09 16:16:54 +02:00
|
|
|
case NGHTTP2_EXT_ALTSVC: {
|
2014-04-01 14:47:51 +02:00
|
|
|
size_t varlen;
|
|
|
|
|
2014-05-22 14:36:12 +02:00
|
|
|
varlen = iframe->frame.hd.length - NGHTTP2_ALTSVC_FIXED_PARTLEN;
|
2014-04-01 14:47:51 +02:00
|
|
|
|
2014-04-30 15:40:43 +02:00
|
|
|
if(varlen > 0) {
|
|
|
|
iframe->raw_lbuf = malloc(varlen);
|
2014-04-01 14:47:51 +02:00
|
|
|
|
2014-04-30 15:40:43 +02:00
|
|
|
if(iframe->raw_lbuf == NULL) {
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
2014-04-01 14:47:51 +02:00
|
|
|
|
2014-04-30 15:40:43 +02:00
|
|
|
nghttp2_buf_wrap_init(&iframe->lbuf, iframe->raw_lbuf, varlen);
|
|
|
|
}
|
2014-04-01 14:47:51 +02:00
|
|
|
|
|
|
|
busy = 1;
|
|
|
|
|
|
|
|
iframe->state = NGHTTP2_IB_READ_ALTSVC;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
default:
|
|
|
|
/* This is unknown frame */
|
2014-05-08 16:37:56 +02:00
|
|
|
session_inbound_frame_reset(session);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NGHTTP2_IB_READ_HEADER_BLOCK:
|
2014-02-08 16:35:21 +01:00
|
|
|
case NGHTTP2_IB_IGN_HEADER_BLOCK: {
|
|
|
|
ssize_t data_readlen;
|
2014-02-07 16:32:50 +01:00
|
|
|
#ifdef DEBUGBUILD
|
|
|
|
if(iframe->state == NGHTTP2_IB_READ_HEADER_BLOCK) {
|
2014-03-19 16:27:39 +01:00
|
|
|
fprintf(stderr, "recv: [IB_READ_HEADER_BLOCK]\n");
|
2014-02-07 16:32:50 +01:00
|
|
|
} else {
|
2014-03-19 16:27:39 +01:00
|
|
|
fprintf(stderr, "recv: [IB_IGN_HEADER_BLOCK]\n");
|
2014-02-07 16:32:50 +01:00
|
|
|
}
|
|
|
|
#endif /* DEBUGBUILD */
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
readlen = inbound_frame_payload_readlen(iframe, in, last);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: readlen=%zu, payloadleft=%zu\n",
|
2014-02-07 16:32:50 +01:00
|
|
|
readlen, iframe->payloadleft - readlen));
|
2014-02-08 16:35:21 +01:00
|
|
|
|
|
|
|
data_readlen = inbound_frame_effective_readlen
|
|
|
|
(iframe, iframe->payloadleft - readlen, readlen);
|
|
|
|
if(data_readlen >= 0) {
|
|
|
|
size_t trail_padlen;
|
|
|
|
size_t hd_proclen = 0;
|
|
|
|
trail_padlen = nghttp2_frame_trail_padlen(&iframe->frame,
|
|
|
|
iframe->padlen);
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: block final=%d\n",
|
2014-02-08 16:35:21 +01:00
|
|
|
(iframe->frame.hd.flags &
|
|
|
|
NGHTTP2_FLAG_END_HEADERS) &&
|
|
|
|
iframe->payloadleft - data_readlen == trail_padlen));
|
|
|
|
|
|
|
|
rv = inflate_header_block
|
|
|
|
(session, &iframe->frame, &hd_proclen,
|
|
|
|
(uint8_t*)in, data_readlen,
|
|
|
|
(iframe->frame.hd.flags &
|
|
|
|
NGHTTP2_FLAG_END_HEADERS) &&
|
|
|
|
iframe->payloadleft - data_readlen == trail_padlen,
|
|
|
|
iframe->state == NGHTTP2_IB_READ_HEADER_BLOCK);
|
|
|
|
|
2014-01-27 17:17:23 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-02-08 16:35:21 +01:00
|
|
|
|
|
|
|
if(rv == NGHTTP2_ERR_PAUSE) {
|
|
|
|
in += hd_proclen;
|
|
|
|
iframe->payloadleft -= hd_proclen;
|
|
|
|
|
|
|
|
return in - first;
|
2014-01-26 07:44:43 +01:00
|
|
|
}
|
2014-02-08 16:35:21 +01:00
|
|
|
|
|
|
|
in += readlen;
|
|
|
|
iframe->payloadleft -= readlen;
|
|
|
|
|
|
|
|
if(rv == NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE) {
|
|
|
|
/* The application says no more headers. We decompress the
|
|
|
|
rest of the header block but not invoke on_header_callback
|
|
|
|
and on_frame_recv_callback. */
|
|
|
|
rv = nghttp2_session_add_rst_stream(session,
|
|
|
|
iframe->frame.hd.stream_id,
|
|
|
|
NGHTTP2_INTERNAL_ERROR);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
busy = 1;
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_HEADER_BLOCK;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(rv == NGHTTP2_ERR_HEADER_COMP) {
|
|
|
|
/* GOAWAY is already issued */
|
|
|
|
if(iframe->payloadleft == 0) {
|
2014-05-08 16:37:56 +02:00
|
|
|
session_inbound_frame_reset(session);
|
2014-02-08 16:35:21 +01:00
|
|
|
} else {
|
|
|
|
busy = 1;
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_PAYLOAD;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
in += readlen;
|
|
|
|
iframe->payloadleft -= readlen;
|
2014-01-26 07:44:43 +01:00
|
|
|
}
|
2014-02-08 16:35:21 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(iframe->payloadleft) {
|
|
|
|
break;
|
|
|
|
}
|
2014-03-14 13:53:03 +01:00
|
|
|
|
2014-01-26 12:31:28 +01:00
|
|
|
if((iframe->frame.hd.flags & NGHTTP2_FLAG_END_HEADERS) == 0) {
|
2014-03-22 10:27:38 +01:00
|
|
|
|
|
|
|
inbound_frame_set_mark(iframe, NGHTTP2_FRAME_HDLEN);
|
|
|
|
|
2014-02-08 16:35:21 +01:00
|
|
|
iframe->padlen = 0;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 12:31:28 +01:00
|
|
|
if(iframe->state == NGHTTP2_IB_READ_HEADER_BLOCK) {
|
|
|
|
iframe->state = NGHTTP2_IB_EXPECT_CONTINUATION;
|
|
|
|
} else {
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_CONTINUATION;
|
|
|
|
}
|
|
|
|
} else {
|
2014-02-08 16:35:21 +01:00
|
|
|
if(iframe->state == NGHTTP2_IB_READ_HEADER_BLOCK) {
|
|
|
|
rv = session_after_header_block_received(session);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
2014-05-08 16:37:56 +02:00
|
|
|
session_inbound_frame_reset(session);
|
2014-01-26 12:31:28 +01:00
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
2014-02-08 16:35:21 +01:00
|
|
|
}
|
2014-01-26 07:44:43 +01:00
|
|
|
case NGHTTP2_IB_IGN_PAYLOAD:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: [IB_IGN_PAYLOAD]\n"));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
readlen = inbound_frame_payload_readlen(iframe, in, last);
|
|
|
|
iframe->payloadleft -= readlen;
|
|
|
|
in += readlen;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: readlen=%zu, payloadleft=%zu\n",
|
2014-02-07 16:32:50 +01:00
|
|
|
readlen, iframe->payloadleft));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(iframe->payloadleft) {
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-29 15:53:53 +01:00
|
|
|
switch(iframe->frame.hd.type) {
|
|
|
|
case NGHTTP2_HEADERS:
|
|
|
|
case NGHTTP2_PUSH_PROMISE:
|
2014-06-07 09:30:55 +02:00
|
|
|
case NGHTTP2_CONTINUATION:
|
2014-03-29 15:53:53 +01:00
|
|
|
/* Mark inflater bad so that we won't perform further decoding */
|
|
|
|
session->hd_inflater.ctx.bad = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
session_inbound_frame_reset(session);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
case NGHTTP2_IB_FRAME_SIZE_ERROR:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: [IB_FRAME_SIZE_ERROR]\n"));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
rv = session_handle_frame_size_error(session, &iframe->frame);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
busy = 1;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->state = NGHTTP2_IB_IGN_PAYLOAD;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
case NGHTTP2_IB_READ_SETTINGS:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: [IB_READ_SETTINGS]\n"));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
readlen = inbound_frame_buf_read(iframe, in, last);
|
|
|
|
iframe->payloadleft -= readlen;
|
|
|
|
in += readlen;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: readlen=%zu, payloadleft=%zu\n",
|
2014-02-07 16:32:50 +01:00
|
|
|
readlen, iframe->payloadleft));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
|
|
|
if(nghttp2_buf_mark_avail(&iframe->sbuf)) {
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(readlen > 0) {
|
2014-06-07 09:41:36 +02:00
|
|
|
inbound_frame_set_settings_entry(iframe);
|
2014-01-26 07:44:43 +01:00
|
|
|
}
|
|
|
|
if(iframe->payloadleft) {
|
2014-03-22 10:27:38 +01:00
|
|
|
inbound_frame_set_mark(iframe, NGHTTP2_FRAME_SETTINGS_ENTRY_LENGTH);
|
2012-03-17 15:39:38 +01:00
|
|
|
break;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
rv = session_process_settings_frame(session);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
session_inbound_frame_reset(session);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
case NGHTTP2_IB_READ_GOAWAY_DEBUG:
|
2014-04-01 14:47:51 +02:00
|
|
|
case NGHTTP2_IB_READ_ALTSVC:
|
|
|
|
#ifdef DEBUGBUILD
|
|
|
|
if(iframe->state == NGHTTP2_IB_READ_GOAWAY_DEBUG) {
|
|
|
|
fprintf(stderr, "recv: [IB_READ_GOAWAY_DEBUG]\n");
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "recv: [IB_READ_ALTSVC]\n");
|
|
|
|
}
|
|
|
|
#endif /* DEBUGBUILD */
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
readlen = inbound_frame_payload_readlen(iframe, in, last);
|
2014-03-22 10:59:59 +01:00
|
|
|
|
|
|
|
iframe->lbuf.last = nghttp2_cpymem(iframe->lbuf.last, in, readlen);
|
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
iframe->payloadleft -= readlen;
|
|
|
|
in += readlen;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: readlen=%zu, payloadleft=%zu\n",
|
2014-02-07 16:32:50 +01:00
|
|
|
readlen, iframe->payloadleft));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(iframe->payloadleft) {
|
2014-03-22 10:59:59 +01:00
|
|
|
assert(nghttp2_buf_avail(&iframe->lbuf) > 0);
|
|
|
|
|
2012-03-17 15:39:38 +01:00
|
|
|
break;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-04-01 14:47:51 +02:00
|
|
|
if(iframe->state == NGHTTP2_IB_READ_GOAWAY_DEBUG) {
|
|
|
|
rv = session_process_goaway_frame(session);
|
|
|
|
} else {
|
|
|
|
rv = session_process_altsvc_frame(session);
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
session_inbound_frame_reset(session);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
2014-01-26 12:31:28 +01:00
|
|
|
case NGHTTP2_IB_EXPECT_CONTINUATION:
|
2014-02-11 08:24:21 +01:00
|
|
|
case NGHTTP2_IB_IGN_CONTINUATION:
|
2014-01-26 12:31:28 +01:00
|
|
|
#ifdef DEBUGBUILD
|
|
|
|
if(iframe->state == NGHTTP2_IB_EXPECT_CONTINUATION) {
|
2014-03-19 16:27:39 +01:00
|
|
|
fprintf(stderr, "recv: [IB_EXPECT_CONTINUATION]\n");
|
2014-01-26 12:31:28 +01:00
|
|
|
} else {
|
2014-03-19 16:27:39 +01:00
|
|
|
fprintf(stderr, "recv: [IB_IGN_CONTINUATION]\n");
|
2014-01-26 12:31:28 +01:00
|
|
|
}
|
|
|
|
#endif /* DEBUGBUILD */
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 12:31:28 +01:00
|
|
|
readlen = inbound_frame_buf_read(iframe, in, last);
|
|
|
|
in += readlen;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
|
|
|
if(nghttp2_buf_mark_avail(&iframe->sbuf)) {
|
2014-01-26 12:31:28 +01:00
|
|
|
return in - first;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
|
|
|
nghttp2_frame_unpack_frame_hd(&cont_hd, iframe->sbuf.pos);
|
2014-01-26 12:31:28 +01:00
|
|
|
iframe->payloadleft = cont_hd.length;
|
2014-02-14 17:34:04 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr,
|
|
|
|
"recv: payloadlen=%zu, type=%u, flags=0x%02x, "
|
|
|
|
"stream_id=%d\n",
|
|
|
|
cont_hd.length, cont_hd.type, cont_hd.flags,
|
|
|
|
cont_hd.stream_id));
|
2014-02-14 17:34:04 +01:00
|
|
|
|
2014-01-26 12:31:28 +01:00
|
|
|
if(cont_hd.type != NGHTTP2_CONTINUATION ||
|
|
|
|
cont_hd.stream_id != iframe->frame.hd.stream_id) {
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr,
|
|
|
|
"recv: expected stream_id=%d, type=%d, but "
|
2014-01-26 14:01:27 +01:00
|
|
|
"got stream_id=%d, type=%d\n",
|
|
|
|
iframe->frame.hd.stream_id, NGHTTP2_CONTINUATION,
|
|
|
|
cont_hd.stream_id, cont_hd.type));
|
2014-01-26 12:31:28 +01:00
|
|
|
rv = nghttp2_session_terminate_session(session,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 12:31:28 +01:00
|
|
|
busy = 1;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 12:31:28 +01:00
|
|
|
iframe->state = NGHTTP2_IB_IGN_PAYLOAD;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 12:31:28 +01:00
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-06-07 11:15:36 +02:00
|
|
|
/* CONTINUATION won't bear NGHTTP2_PADDED flag */
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-06-07 11:15:36 +02:00
|
|
|
iframe->frame.hd.flags |= cont_hd.flags & NGHTTP2_FLAG_END_HEADERS;
|
|
|
|
iframe->frame.hd.length += cont_hd.length;
|
2014-02-08 16:35:21 +01:00
|
|
|
|
2014-01-26 12:31:28 +01:00
|
|
|
busy = 1;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 12:31:28 +01:00
|
|
|
if(iframe->state == NGHTTP2_IB_EXPECT_CONTINUATION) {
|
|
|
|
iframe->state = NGHTTP2_IB_READ_HEADER_BLOCK;
|
|
|
|
} else {
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_HEADER_BLOCK;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-08 16:35:21 +01:00
|
|
|
break;
|
2014-02-12 13:35:40 +01:00
|
|
|
case NGHTTP2_IB_READ_PAD_DATA:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: [IB_READ_PAD_DATA]\n"));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-12 13:35:40 +01:00
|
|
|
readlen = inbound_frame_buf_read(iframe, in, last);
|
|
|
|
in += readlen;
|
|
|
|
iframe->payloadleft -= readlen;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: readlen=%zu, payloadleft=%zu, left=%zu\n",
|
2014-03-22 10:27:38 +01:00
|
|
|
readlen, iframe->payloadleft,
|
|
|
|
nghttp2_buf_mark_avail(&iframe->sbuf)));
|
2014-02-12 13:35:40 +01:00
|
|
|
|
2014-06-07 11:15:36 +02:00
|
|
|
/* Pad Length field is subject to flow control */
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_update_recv_connection_window_size(session, readlen);
|
2014-02-12 13:35:40 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-12 13:35:40 +01:00
|
|
|
stream = nghttp2_session_get_stream(session,
|
|
|
|
iframe->frame.hd.stream_id);
|
|
|
|
if(stream) {
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_update_recv_stream_window_size
|
2014-02-12 13:35:40 +01:00
|
|
|
(session, stream, readlen,
|
|
|
|
iframe->payloadleft ||
|
|
|
|
(iframe->frame.hd.flags & NGHTTP2_FLAG_END_STREAM) == 0);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-07 11:15:36 +02:00
|
|
|
assert(nghttp2_buf_mark_avail(&iframe->sbuf) == 0);
|
2014-02-12 13:35:40 +01:00
|
|
|
|
|
|
|
busy = 1;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-12 13:35:40 +01:00
|
|
|
rv = inbound_frame_compute_pad(iframe);
|
|
|
|
if(rv < 0) {
|
|
|
|
rv = nghttp2_session_terminate_session(session,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
iframe->state = NGHTTP2_IB_IGN_DATA;
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-12 13:35:40 +01:00
|
|
|
iframe->frame.data.padlen = rv;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-12 13:35:40 +01:00
|
|
|
iframe->state = NGHTTP2_IB_READ_DATA;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-12 13:35:40 +01:00
|
|
|
break;
|
2014-01-26 07:44:43 +01:00
|
|
|
case NGHTTP2_IB_READ_DATA:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: [IB_READ_DATA]\n"));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
readlen = inbound_frame_payload_readlen(iframe, in, last);
|
|
|
|
iframe->payloadleft -= readlen;
|
|
|
|
in += readlen;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: readlen=%zu, payloadleft=%zu\n",
|
2014-01-26 07:44:43 +01:00
|
|
|
readlen, iframe->payloadleft));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(readlen > 0) {
|
2014-02-08 16:35:21 +01:00
|
|
|
ssize_t data_readlen;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_update_recv_connection_window_size(session, readlen);
|
2014-02-05 16:23:20 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-11 13:30:44 +01:00
|
|
|
stream = nghttp2_session_get_stream(session,
|
|
|
|
iframe->frame.hd.stream_id);
|
|
|
|
if(stream) {
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_update_recv_stream_window_size
|
2014-02-11 13:30:44 +01:00
|
|
|
(session, stream, readlen,
|
|
|
|
iframe->payloadleft ||
|
|
|
|
(iframe->frame.hd.flags & NGHTTP2_FLAG_END_STREAM) == 0);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
2013-09-28 10:59:24 +02:00
|
|
|
}
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-08 16:35:21 +01:00
|
|
|
data_readlen = inbound_frame_effective_readlen
|
|
|
|
(iframe, iframe->payloadleft, readlen);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: data_readlen=%zu\n", data_readlen));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-05-29 15:18:52 +02:00
|
|
|
if(stream && data_readlen > 0 &&
|
2014-03-19 16:27:39 +01:00
|
|
|
session->callbacks.on_data_chunk_recv_callback) {
|
2014-01-26 07:44:43 +01:00
|
|
|
rv = session->callbacks.on_data_chunk_recv_callback
|
|
|
|
(session,
|
|
|
|
iframe->frame.hd.flags,
|
|
|
|
iframe->frame.hd.stream_id,
|
|
|
|
in - readlen,
|
2014-02-07 15:22:17 +01:00
|
|
|
data_readlen,
|
2014-01-26 07:44:43 +01:00
|
|
|
session->user_data);
|
|
|
|
if(rv == NGHTTP2_ERR_PAUSE) {
|
|
|
|
return in - first;
|
2013-09-28 10:59:24 +02:00
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2013-08-27 19:13:57 +02:00
|
|
|
}
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(iframe->payloadleft) {
|
|
|
|
break;
|
|
|
|
}
|
2014-03-14 13:53:03 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_process_data_frame(session);
|
2014-01-26 07:44:43 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
session_inbound_frame_reset(session);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
case NGHTTP2_IB_IGN_DATA:
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: [IB_IGN_DATA]\n"));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
readlen = inbound_frame_payload_readlen(iframe, in, last);
|
|
|
|
iframe->payloadleft -= readlen;
|
|
|
|
in += readlen;
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "recv: readlen=%zu, payloadleft=%zu\n",
|
2014-02-07 16:32:50 +01:00
|
|
|
readlen, iframe->payloadleft));
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-02-05 16:23:20 +01:00
|
|
|
if(readlen > 0) {
|
2014-01-26 07:44:43 +01:00
|
|
|
/* Update connection-level flow control window for ignored
|
|
|
|
DATA frame too */
|
2014-05-08 16:37:56 +02:00
|
|
|
rv = session_update_recv_connection_window_size(session, readlen);
|
2014-01-26 07:44:43 +01:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(iframe->payloadleft) {
|
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-05-08 16:37:56 +02:00
|
|
|
session_inbound_frame_reset(session);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
break;
|
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
if(!busy && in == last) {
|
|
|
|
break;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
busy = 0;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
assert(in == last);
|
2014-03-22 10:27:38 +01:00
|
|
|
|
2014-01-26 07:44:43 +01:00
|
|
|
return in - first;
|
2012-03-17 15:39:38 +01:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_recv(nghttp2_session *session)
|
2012-03-17 15:39:38 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
uint8_t buf[NGHTTP2_INBOUND_BUFFER_LENGTH];
|
2012-03-17 15:39:38 +01:00
|
|
|
while(1) {
|
|
|
|
ssize_t readlen;
|
2014-05-08 16:37:56 +02:00
|
|
|
readlen = session_recv(session, buf, sizeof(buf));
|
2012-03-17 15:39:38 +01:00
|
|
|
if(readlen > 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
ssize_t proclen = nghttp2_session_mem_recv(session, buf, readlen);
|
2012-03-17 15:39:38 +01:00
|
|
|
if(proclen < 0) {
|
|
|
|
return proclen;
|
|
|
|
}
|
|
|
|
assert(proclen == readlen);
|
2013-07-12 17:19:03 +02:00
|
|
|
} else if(readlen == 0 || readlen == NGHTTP2_ERR_WOULDBLOCK) {
|
2012-03-17 15:39:38 +01:00
|
|
|
return 0;
|
2013-07-12 17:19:03 +02:00
|
|
|
} else if(readlen == NGHTTP2_ERR_EOF) {
|
2012-03-17 15:39:38 +01:00
|
|
|
return readlen;
|
|
|
|
} else if(readlen < 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2012-03-17 15:39:38 +01:00
|
|
|
}
|
|
|
|
}
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2014-05-23 15:23:38 +02:00
|
|
|
/*
|
|
|
|
* Returns the number of active streams, which includes streams in
|
|
|
|
* reserved state.
|
|
|
|
*/
|
|
|
|
static size_t session_get_num_active_streams(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
return nghttp2_map_size(&session->streams) - session->num_closed_streams;
|
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_want_read(nghttp2_session *session)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2014-05-23 15:23:38 +02:00
|
|
|
size_t num_active_streams;
|
|
|
|
|
2012-02-18 13:55:40 +01:00
|
|
|
/* If these flags are set, we don't want to read. The application
|
|
|
|
should drop the connection. */
|
2013-07-12 17:19:03 +02:00
|
|
|
if((session->goaway_flags & NGHTTP2_GOAWAY_FAIL_ON_SEND) &&
|
|
|
|
(session->goaway_flags & NGHTTP2_GOAWAY_SEND)) {
|
2012-02-18 13:55:40 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2014-05-23 15:23:38 +02:00
|
|
|
|
|
|
|
num_active_streams = session_get_num_active_streams(session);
|
|
|
|
|
2012-01-29 07:11:10 +01:00
|
|
|
/* Unless GOAWAY is sent or received, we always want to read
|
2012-01-28 11:22:38 +01:00
|
|
|
incoming frames. After GOAWAY is sent or received, we are only
|
2012-01-29 07:11:10 +01:00
|
|
|
interested in active streams. */
|
2014-05-23 15:23:38 +02:00
|
|
|
return !session->goaway_flags || num_active_streams > 0;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_want_write(nghttp2_session *session)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2014-05-23 15:23:38 +02:00
|
|
|
size_t num_active_streams;
|
|
|
|
|
2012-02-18 13:55:40 +01:00
|
|
|
/* If these flags are set, we don't want to write any data. The
|
|
|
|
application should drop the connection. */
|
2013-07-12 17:19:03 +02:00
|
|
|
if((session->goaway_flags & NGHTTP2_GOAWAY_FAIL_ON_SEND) &&
|
|
|
|
(session->goaway_flags & NGHTTP2_GOAWAY_SEND)) {
|
2012-02-18 13:55:40 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2014-05-23 15:23:38 +02:00
|
|
|
|
|
|
|
num_active_streams = session_get_num_active_streams(session);
|
|
|
|
|
2012-01-29 07:11:10 +01:00
|
|
|
/*
|
|
|
|
* Unless GOAWAY is sent or received, we want to write frames if
|
2013-07-25 14:18:13 +02:00
|
|
|
* there is pending ones. If pending frame is request/push response
|
|
|
|
* HEADERS and concurrent stream limit is reached, we don't want to
|
|
|
|
* write them. After GOAWAY is sent or received, we want to write
|
2012-02-05 16:14:19 +01:00
|
|
|
* frames if there is pending ones AND there are active frames.
|
2012-01-29 07:11:10 +01:00
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
return (session->aob.item != NULL || !nghttp2_pq_empty(&session->ob_pq) ||
|
|
|
|
(!nghttp2_pq_empty(&session->ob_ss_pq) &&
|
2014-05-08 16:37:56 +02:00
|
|
|
!session_is_outgoing_concurrent_streams_max(session))) &&
|
2014-05-23 15:23:38 +02:00
|
|
|
(!session->goaway_flags || num_active_streams > 0);
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
int nghttp2_session_add_ping(nghttp2_session *session, uint8_t flags,
|
|
|
|
uint8_t *opaque_data)
|
2012-01-27 15:05:29 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame *frame;
|
|
|
|
frame = malloc(sizeof(nghttp2_frame));
|
2012-01-27 15:05:29 +01:00
|
|
|
if(frame == NULL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_NOMEM;
|
2012-01-27 15:05:29 +01:00
|
|
|
}
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_frame_ping_init(&frame->ping, flags, opaque_data);
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = nghttp2_session_add_frame(session, NGHTTP2_CAT_CTRL, frame, NULL);
|
|
|
|
if(rv != 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame_ping_free(&frame->ping);
|
2012-01-27 15:05:29 +01:00
|
|
|
free(frame);
|
2014-02-18 16:45:20 +01:00
|
|
|
return rv;
|
2012-01-27 15:05:29 +01:00
|
|
|
}
|
2014-02-18 16:45:20 +01:00
|
|
|
return 0;
|
2012-01-27 15:05:29 +01:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_add_goaway(nghttp2_session *session,
|
2013-07-15 14:45:59 +02:00
|
|
|
int32_t last_stream_id,
|
|
|
|
nghttp2_error_code error_code,
|
2014-03-22 11:05:58 +01:00
|
|
|
const uint8_t *opaque_data,
|
|
|
|
size_t opaque_data_len)
|
2012-01-28 11:22:38 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame *frame;
|
2013-07-15 14:45:59 +02:00
|
|
|
uint8_t *opaque_data_copy = NULL;
|
|
|
|
if(opaque_data_len) {
|
2014-04-01 14:55:29 +02:00
|
|
|
if(opaque_data_len + 8 > NGHTTP2_MAX_PAYLOADLEN) {
|
2013-07-15 14:45:59 +02:00
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
|
|
|
}
|
|
|
|
opaque_data_copy = malloc(opaque_data_len);
|
|
|
|
if(opaque_data_copy == NULL) {
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
memcpy(opaque_data_copy, opaque_data, opaque_data_len);
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
frame = malloc(sizeof(nghttp2_frame));
|
2012-01-28 11:22:38 +01:00
|
|
|
if(frame == NULL) {
|
2013-07-15 14:45:59 +02:00
|
|
|
free(opaque_data_copy);
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_NOMEM;
|
2012-01-28 11:22:38 +01:00
|
|
|
}
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_frame_goaway_init(&frame->goaway, last_stream_id, error_code,
|
|
|
|
opaque_data_copy, opaque_data_len);
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = nghttp2_session_add_frame(session, NGHTTP2_CAT_CTRL, frame, NULL);
|
|
|
|
if(rv != 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame_goaway_free(&frame->goaway);
|
2012-01-28 11:22:38 +01:00
|
|
|
free(frame);
|
2014-02-18 16:45:20 +01:00
|
|
|
return rv;
|
2012-01-28 11:22:38 +01:00
|
|
|
}
|
2014-02-18 16:45:20 +01:00
|
|
|
return 0;
|
2012-01-28 11:22:38 +01:00
|
|
|
}
|
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
int nghttp2_session_add_window_update(nghttp2_session *session, uint8_t flags,
|
2012-02-25 16:12:32 +01:00
|
|
|
int32_t stream_id,
|
2013-07-15 14:45:59 +02:00
|
|
|
int32_t window_size_increment)
|
2012-02-25 16:12:32 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame *frame;
|
|
|
|
frame = malloc(sizeof(nghttp2_frame));
|
2012-02-25 16:12:32 +01:00
|
|
|
if(frame == NULL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_NOMEM;
|
2012-02-25 16:12:32 +01:00
|
|
|
}
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_frame_window_update_init(&frame->window_update, flags,
|
|
|
|
stream_id, window_size_increment);
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = nghttp2_session_add_frame(session, NGHTTP2_CAT_CTRL, frame, NULL);
|
|
|
|
if(rv != 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame_window_update_free(&frame->window_update);
|
2012-02-25 16:12:32 +01:00
|
|
|
free(frame);
|
2014-02-18 16:45:20 +01:00
|
|
|
return rv;
|
2012-02-25 16:12:32 +01:00
|
|
|
}
|
2014-02-18 16:45:20 +01:00
|
|
|
return 0;
|
2012-02-25 16:12:32 +01:00
|
|
|
}
|
|
|
|
|
2013-10-27 11:22:51 +01:00
|
|
|
int nghttp2_session_add_settings(nghttp2_session *session, uint8_t flags,
|
|
|
|
const nghttp2_settings_entry *iv, size_t niv)
|
|
|
|
{
|
|
|
|
nghttp2_frame *frame;
|
|
|
|
nghttp2_settings_entry *iv_copy;
|
2014-03-30 11:07:52 +02:00
|
|
|
size_t i;
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2014-03-30 11:07:52 +02:00
|
|
|
|
|
|
|
if(flags & NGHTTP2_FLAG_ACK) {
|
|
|
|
if(niv != 0) {
|
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
|
|
|
}
|
|
|
|
} else if(session->inflight_niv != -1) {
|
|
|
|
return NGHTTP2_ERR_TOO_MANY_INFLIGHT_SETTINGS;
|
|
|
|
}
|
|
|
|
|
2014-02-05 16:23:20 +01:00
|
|
|
if(!nghttp2_iv_check(iv, niv)) {
|
2013-10-27 11:22:51 +01:00
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
|
|
|
}
|
|
|
|
frame = malloc(sizeof(nghttp2_frame));
|
|
|
|
if(frame == NULL) {
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
2014-04-30 15:40:43 +02:00
|
|
|
|
|
|
|
if(niv > 0) {
|
|
|
|
iv_copy = nghttp2_frame_iv_copy(iv, niv);
|
|
|
|
if(iv_copy == NULL) {
|
|
|
|
free(frame);
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
iv_copy = NULL;
|
2013-10-27 11:22:51 +01:00
|
|
|
}
|
2014-03-30 11:07:52 +02:00
|
|
|
|
|
|
|
if((flags & NGHTTP2_FLAG_ACK) == 0) {
|
|
|
|
if(niv > 0) {
|
|
|
|
session->inflight_iv = nghttp2_frame_iv_copy(iv, niv);
|
|
|
|
|
|
|
|
if(session->inflight_iv == NULL) {
|
|
|
|
free(iv_copy);
|
|
|
|
free(frame);
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
session->inflight_iv = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
session->inflight_niv = niv;
|
|
|
|
}
|
|
|
|
|
2013-10-27 11:22:51 +01:00
|
|
|
nghttp2_frame_settings_init(&frame->settings, flags, iv_copy, niv);
|
2014-02-18 16:45:20 +01:00
|
|
|
rv = nghttp2_session_add_frame(session, NGHTTP2_CAT_CTRL, frame, NULL);
|
|
|
|
if(rv != 0) {
|
2013-10-27 11:22:51 +01:00
|
|
|
/* The only expected error is fatal one */
|
2014-02-18 16:45:20 +01:00
|
|
|
assert(nghttp2_is_fatal(rv));
|
2014-03-30 11:07:52 +02:00
|
|
|
|
|
|
|
if((flags & NGHTTP2_FLAG_ACK) == 0) {
|
|
|
|
free(session->inflight_iv);
|
|
|
|
session->inflight_iv = NULL;
|
|
|
|
session->inflight_niv = -1;
|
|
|
|
}
|
|
|
|
|
2013-10-27 11:22:51 +01:00
|
|
|
nghttp2_frame_settings_free(&frame->settings);
|
|
|
|
free(frame);
|
2014-03-30 11:07:52 +02:00
|
|
|
|
2014-02-18 16:45:20 +01:00
|
|
|
return rv;
|
2013-10-27 11:22:51 +01:00
|
|
|
}
|
2014-03-30 11:07:52 +02:00
|
|
|
|
|
|
|
/* Extract NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS here and use
|
|
|
|
it to refuse the incoming streams with RST_STREAM. */
|
|
|
|
for(i = niv; i > 0; --i) {
|
|
|
|
if(iv[i - 1].settings_id == NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS) {
|
|
|
|
session->pending_local_max_concurrent_stream = iv[i - 1].value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-18 16:45:20 +01:00
|
|
|
return 0;
|
2013-10-27 11:22:51 +01:00
|
|
|
}
|
|
|
|
|
2014-04-01 14:59:26 +02:00
|
|
|
int nghttp2_session_pack_data(nghttp2_session *session,
|
|
|
|
nghttp2_bufs *bufs,
|
|
|
|
size_t datamax,
|
|
|
|
nghttp2_private_data *frame)
|
2012-01-26 17:17:40 +01:00
|
|
|
{
|
2014-02-08 09:46:21 +01:00
|
|
|
ssize_t rv;
|
2014-04-05 10:59:24 +02:00
|
|
|
uint32_t data_flags;
|
2012-02-22 15:58:33 +01:00
|
|
|
uint8_t flags;
|
2014-02-08 09:46:21 +01:00
|
|
|
ssize_t payloadlen;
|
2014-02-11 07:28:44 +01:00
|
|
|
ssize_t padded_payloadlen;
|
2014-03-10 17:47:38 +01:00
|
|
|
size_t padlen;
|
2014-03-13 18:23:50 +01:00
|
|
|
nghttp2_frame data_frame;
|
2014-03-10 17:47:38 +01:00
|
|
|
nghttp2_frame_hd hd;
|
2014-03-13 14:11:02 +01:00
|
|
|
nghttp2_buf *buf;
|
2014-02-11 07:28:44 +01:00
|
|
|
|
2014-03-13 14:11:02 +01:00
|
|
|
assert(bufs->head == bufs->cur);
|
2014-02-08 09:46:21 +01:00
|
|
|
|
2014-03-13 14:11:02 +01:00
|
|
|
buf = &bufs->cur->buf;
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-03-13 14:11:02 +01:00
|
|
|
/* Current max DATA length is less then buffer chunk size */
|
|
|
|
assert(nghttp2_buf_avail(buf) >= (ssize_t)datamax);
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-04-05 10:59:24 +02:00
|
|
|
data_flags = NGHTTP2_DATA_FLAG_NONE;
|
2014-02-08 09:46:21 +01:00
|
|
|
payloadlen = frame->data_prd.read_callback
|
2014-03-13 14:11:02 +01:00
|
|
|
(session, frame->hd.stream_id, buf->pos, datamax,
|
2014-04-05 10:59:24 +02:00
|
|
|
&data_flags, &frame->data_prd.source, session->user_data);
|
2014-02-08 09:46:21 +01:00
|
|
|
|
|
|
|
if(payloadlen == NGHTTP2_ERR_DEFERRED ||
|
|
|
|
payloadlen == NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE) {
|
2014-03-19 16:27:39 +01:00
|
|
|
DEBUGF(fprintf(stderr, "send: DATA postponed due to %s\n",
|
2014-02-11 13:35:41 +01:00
|
|
|
nghttp2_strerror(payloadlen)));
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-02-08 09:46:21 +01:00
|
|
|
return payloadlen;
|
|
|
|
}
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-02-08 09:46:21 +01:00
|
|
|
if(payloadlen < 0 || datamax < (size_t)payloadlen) {
|
2012-05-11 16:23:46 +02:00
|
|
|
/* This is the error code when callback is failed. */
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2012-01-26 17:17:40 +01:00
|
|
|
}
|
2014-02-07 15:22:17 +01:00
|
|
|
|
2014-03-13 14:11:02 +01:00
|
|
|
buf->last = buf->pos + payloadlen;
|
|
|
|
buf->pos -= NGHTTP2_FRAME_HDLEN;
|
2014-03-10 17:47:38 +01:00
|
|
|
|
2014-02-07 15:22:17 +01:00
|
|
|
/* Clear flags, because this may contain previous flags of previous
|
|
|
|
DATA */
|
2014-03-05 16:19:02 +01:00
|
|
|
frame->hd.flags &= (NGHTTP2_FLAG_END_STREAM | NGHTTP2_FLAG_END_SEGMENT);
|
|
|
|
flags = NGHTTP2_FLAG_NONE;
|
2014-02-07 15:22:17 +01:00
|
|
|
|
2014-04-05 10:59:24 +02:00
|
|
|
if(data_flags & NGHTTP2_DATA_FLAG_EOF) {
|
2014-02-11 07:28:44 +01:00
|
|
|
frame->eof = 1;
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
flags |= NGHTTP2_FLAG_END_STREAM;
|
2014-02-07 15:22:17 +01:00
|
|
|
}
|
2014-03-05 16:19:02 +01:00
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_SEGMENT) {
|
|
|
|
flags |= NGHTTP2_FLAG_END_SEGMENT;
|
|
|
|
}
|
2014-02-07 15:22:17 +01:00
|
|
|
}
|
|
|
|
|
2014-03-10 17:47:38 +01:00
|
|
|
/* The primary reason of data_frame is pass to the user callback */
|
2014-02-11 07:28:44 +01:00
|
|
|
data_frame.hd.length = payloadlen;
|
|
|
|
data_frame.hd.stream_id = frame->hd.stream_id;
|
|
|
|
data_frame.hd.type = NGHTTP2_DATA;
|
|
|
|
data_frame.hd.flags = flags;
|
2014-03-13 18:23:50 +01:00
|
|
|
data_frame.data.padlen = 0;
|
2014-02-11 07:28:44 +01:00
|
|
|
|
|
|
|
padded_payloadlen = session_call_select_padding(session, &data_frame,
|
|
|
|
datamax);
|
|
|
|
if(nghttp2_is_fatal(padded_payloadlen)) {
|
|
|
|
return padded_payloadlen;
|
|
|
|
}
|
2014-03-10 17:47:38 +01:00
|
|
|
|
|
|
|
padlen = padded_payloadlen - payloadlen;
|
|
|
|
|
|
|
|
hd = frame->hd;
|
2014-03-13 14:11:02 +01:00
|
|
|
hd.length = payloadlen;
|
2014-03-10 17:47:38 +01:00
|
|
|
hd.flags = flags;
|
2014-02-07 15:22:17 +01:00
|
|
|
|
2014-03-10 17:47:38 +01:00
|
|
|
nghttp2_frame_pack_frame_hd(buf->pos, &hd);
|
2014-02-07 15:22:17 +01:00
|
|
|
|
2014-06-07 11:15:36 +02:00
|
|
|
rv = nghttp2_frame_add_pad(bufs, &hd, padlen);
|
2014-03-13 14:11:02 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
frame->hd.length = hd.length;
|
|
|
|
frame->hd.flags |= hd.flags;
|
|
|
|
frame->padlen = padlen;
|
|
|
|
|
2014-04-01 14:59:26 +02:00
|
|
|
return 0;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2012-01-27 15:05:29 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
void* nghttp2_session_get_stream_user_data(nghttp2_session *session,
|
2012-02-03 17:37:21 +01:00
|
|
|
int32_t stream_id)
|
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream *stream;
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
2012-02-03 17:37:21 +01:00
|
|
|
if(stream) {
|
|
|
|
return stream->stream_user_data;
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2012-02-19 15:42:25 +01:00
|
|
|
|
2013-12-23 09:40:34 +01:00
|
|
|
int nghttp2_session_set_stream_user_data(nghttp2_session *session,
|
|
|
|
int32_t stream_id,
|
|
|
|
void *stream_user_data)
|
|
|
|
{
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
|
|
|
if(!stream) {
|
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
|
|
|
}
|
|
|
|
stream->stream_user_data = stream_user_data;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_resume_data(nghttp2_session *session, int32_t stream_id)
|
2012-02-19 15:42:25 +01:00
|
|
|
{
|
2014-02-18 16:45:20 +01:00
|
|
|
int rv;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream *stream;
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
2014-04-02 15:55:49 +02:00
|
|
|
if(stream == NULL ||
|
2014-04-02 17:01:35 +02:00
|
|
|
nghttp2_stream_check_deferred_by_flow_control(stream) ||
|
|
|
|
!nghttp2_stream_check_deferred_data(stream)) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
2012-02-19 15:42:25 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-05-08 16:07:29 +02:00
|
|
|
rv = nghttp2_stream_resume_deferred_data(stream, &session->ob_pq,
|
|
|
|
session->last_cycle);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
2012-02-19 15:42:25 +01:00
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-02-18 16:45:20 +01:00
|
|
|
return rv;
|
2012-02-19 15:42:25 +01:00
|
|
|
}
|
2012-02-25 16:12:32 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
size_t nghttp2_session_get_outbound_queue_size(nghttp2_session *session)
|
2012-03-15 15:06:28 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
return nghttp2_pq_size(&session->ob_pq)+nghttp2_pq_size(&session->ob_ss_pq);
|
2012-03-15 15:06:28 +01:00
|
|
|
}
|
2012-04-05 18:45:39 +02:00
|
|
|
|
2013-10-29 16:07:35 +01:00
|
|
|
int32_t nghttp2_session_get_stream_effective_recv_data_length
|
|
|
|
(nghttp2_session *session, int32_t stream_id)
|
|
|
|
{
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
|
|
|
if(stream == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
2013-10-29 17:58:38 +01:00
|
|
|
return stream->recv_window_size < 0 ? 0 : stream->recv_window_size;
|
2013-10-29 16:07:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t nghttp2_session_get_stream_effective_local_window_size
|
|
|
|
(nghttp2_session *session, int32_t stream_id)
|
|
|
|
{
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
|
|
|
if(stream == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return stream->local_window_size;
|
|
|
|
}
|
|
|
|
|
2013-10-29 16:51:01 +01:00
|
|
|
int32_t nghttp2_session_get_effective_recv_data_length
|
|
|
|
(nghttp2_session *session)
|
|
|
|
{
|
2013-10-29 17:58:38 +01:00
|
|
|
return session->recv_window_size < 0 ? 0 : session->recv_window_size;
|
2013-10-29 16:51:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t nghttp2_session_get_effective_local_window_size
|
|
|
|
(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
return session->local_window_size;
|
|
|
|
}
|
|
|
|
|
2014-03-21 16:34:25 +01:00
|
|
|
int32_t nghttp2_session_get_stream_remote_window_size(nghttp2_session* session,
|
|
|
|
int32_t stream_id)
|
|
|
|
{
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
|
|
|
if(stream == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nghttp2_session_next_data_read(session, stream);
|
|
|
|
}
|
|
|
|
|
2014-05-02 16:34:57 +02:00
|
|
|
uint32_t nghttp2_session_get_remote_settings(nghttp2_session *session,
|
|
|
|
nghttp2_settings_id id)
|
|
|
|
{
|
2014-06-10 14:29:19 +02:00
|
|
|
switch(id) {
|
|
|
|
case NGHTTP2_SETTINGS_HEADER_TABLE_SIZE:
|
|
|
|
return session->remote_settings.header_table_size;
|
|
|
|
case NGHTTP2_SETTINGS_ENABLE_PUSH:
|
|
|
|
return session->remote_settings.enable_push;
|
|
|
|
case NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS:
|
|
|
|
return session->remote_settings.max_concurrent_streams;
|
|
|
|
case NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE:
|
|
|
|
return session->remote_settings.initial_window_size;
|
2014-05-02 16:34:57 +02:00
|
|
|
}
|
|
|
|
|
2014-06-10 14:29:19 +02:00
|
|
|
assert(0);
|
2014-05-02 16:34:57 +02:00
|
|
|
}
|
|
|
|
|
2013-08-03 11:05:14 +02:00
|
|
|
int nghttp2_session_upgrade(nghttp2_session *session,
|
|
|
|
const uint8_t *settings_payload,
|
|
|
|
size_t settings_payloadlen,
|
|
|
|
void *stream_user_data)
|
|
|
|
{
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
nghttp2_frame frame;
|
|
|
|
nghttp2_settings_entry *iv;
|
|
|
|
size_t niv;
|
|
|
|
int rv;
|
2014-03-25 18:04:24 +01:00
|
|
|
nghttp2_priority_spec pri_spec;
|
2013-08-03 11:05:14 +02:00
|
|
|
|
|
|
|
if((!session->server && session->next_stream_id != 1) ||
|
|
|
|
(session->server && session->last_recv_stream_id >= 1)) {
|
|
|
|
return NGHTTP2_ERR_PROTO;
|
|
|
|
}
|
2014-02-06 14:06:42 +01:00
|
|
|
if(settings_payloadlen % NGHTTP2_FRAME_SETTINGS_ENTRY_LENGTH) {
|
2013-08-03 11:05:14 +02:00
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
|
|
|
}
|
2014-01-26 08:46:18 +01:00
|
|
|
rv = nghttp2_frame_unpack_settings_payload2(&iv, &niv, settings_payload,
|
|
|
|
settings_payloadlen);
|
2013-08-03 11:05:14 +02:00
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-04-04 13:23:46 +02:00
|
|
|
|
2013-08-03 11:05:14 +02:00
|
|
|
if(session->server) {
|
|
|
|
memset(&frame.hd, 0, sizeof(frame.hd));
|
|
|
|
frame.settings.iv = iv;
|
|
|
|
frame.settings.niv = niv;
|
2013-10-27 11:22:51 +01:00
|
|
|
rv = nghttp2_session_on_settings_received(session, &frame, 1 /* No ACK */);
|
2013-08-03 11:05:14 +02:00
|
|
|
} else {
|
2013-10-25 15:50:24 +02:00
|
|
|
rv = nghttp2_submit_settings(session, NGHTTP2_FLAG_NONE, iv, niv);
|
2013-08-03 11:05:14 +02:00
|
|
|
}
|
|
|
|
free(iv);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-04-14 16:53:54 +02:00
|
|
|
nghttp2_priority_spec_default_init(&pri_spec);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-01-09 15:00:26 +01:00
|
|
|
stream = nghttp2_session_open_stream(session, 1, NGHTTP2_STREAM_FLAG_NONE,
|
2014-03-25 18:04:24 +01:00
|
|
|
&pri_spec, NGHTTP2_STREAM_OPENING,
|
2013-08-03 11:05:14 +02:00
|
|
|
session->server ?
|
|
|
|
NULL : stream_user_data);
|
|
|
|
if(stream == NULL) {
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
if(session->server) {
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_RD);
|
|
|
|
session->last_recv_stream_id = 1;
|
2013-11-28 15:26:34 +01:00
|
|
|
session->last_proc_stream_id = 1;
|
2013-08-03 11:05:14 +02:00
|
|
|
} else {
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_WR);
|
|
|
|
session->next_stream_id += 2;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|