2012-01-24 14:02:24 +01:00
|
|
|
/*
|
2013-07-12 17:19:03 +02:00
|
|
|
* nghttp2 - HTTP/2.0 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"
|
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
|
2013-07-12 17:19:03 +02:00
|
|
|
* remote_settings[NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS].
|
2012-02-08 15:45:48 +01:00
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_session_is_outgoing_concurrent_streams_max
|
|
|
|
(nghttp2_session *session)
|
2012-02-08 15:45:48 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
return session->remote_settings[NGHTTP2_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
|
2013-07-12 17:19:03 +02:00
|
|
|
* local_settings[NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS].
|
2012-05-07 17:59:26 +02:00
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_session_is_incoming_concurrent_streams_max
|
|
|
|
(nghttp2_session *session)
|
2012-05-07 17:59:26 +02:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
return session->local_settings[NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS]
|
2012-05-07 17:59:26 +02:00
|
|
|
<= session->num_incoming_streams;
|
2012-02-08 15:45:48 +01:00
|
|
|
}
|
|
|
|
|
2012-03-07 16:18:18 +01:00
|
|
|
/*
|
|
|
|
* Returns non-zero if |error| is non-fatal error.
|
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_is_non_fatal(int error)
|
2012-03-07 16:18:18 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
return error < 0 && error > NGHTTP2_ERR_FATAL;
|
2012-03-07 16:18:18 +01:00
|
|
|
}
|
|
|
|
|
2012-03-07 16:40:17 +01:00
|
|
|
/*
|
|
|
|
* Returns non-zero if |error| is fatal error.
|
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_is_fatal(int error)
|
2012-03-07 16:40:17 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
return error < NGHTTP2_ERR_FATAL;
|
2012-03-07 16:40:17 +01:00
|
|
|
}
|
|
|
|
|
2013-07-24 18:49:05 +02:00
|
|
|
/* Returns the pushed stream's priority based on the associated stream
|
|
|
|
|stream|. */
|
|
|
|
static int32_t nghttp2_pushed_stream_pri(nghttp2_stream *stream)
|
|
|
|
{
|
|
|
|
return stream->pri == NGHTTP2_PRI_LOWEST ?
|
|
|
|
(int32_t)NGHTTP2_PRI_LOWEST : stream->pri + 1;
|
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_fail_session(nghttp2_session *session,
|
2013-07-15 14:45:59 +02:00
|
|
|
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
|
|
|
{
|
|
|
|
int r;
|
|
|
|
if(stream_id == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
r = stream_id % 2;
|
2012-02-02 15:19:01 +01:00
|
|
|
return (session->server && r == 0) || (!session->server && r == 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)
|
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
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_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;
|
|
|
|
lhs = (const nghttp2_outbound_item*)lhsx;
|
|
|
|
rhs = (const nghttp2_outbound_item*)rhsx;
|
2012-01-31 14:48:09 +01:00
|
|
|
if(lhs->pri == rhs->pri) {
|
|
|
|
return (lhs->seq < rhs->seq) ? -1 : ((lhs->seq > rhs->seq) ? 1 : 0);
|
|
|
|
} else {
|
2013-07-15 14:45:59 +02:00
|
|
|
return lhs->pri - rhs->pri;
|
2012-01-31 14:48:09 +01:00
|
|
|
}
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2013-09-28 10:59:24 +02:00
|
|
|
static void nghttp2_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;
|
|
|
|
if(iframe->error_code == NGHTTP2_ERR_PAUSE) {
|
|
|
|
switch(iframe->frame.hd.type) {
|
|
|
|
case NGHTTP2_HEADERS:
|
|
|
|
nghttp2_frame_headers_free(&iframe->frame.headers);
|
|
|
|
nghttp2_hd_end_headers(&session->hd_inflater);
|
|
|
|
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);
|
|
|
|
nghttp2_hd_end_headers(&session->hd_inflater);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
iframe->state = NGHTTP2_RECV_HEAD;
|
2012-05-25 03:46:40 +02:00
|
|
|
iframe->payloadlen = iframe->buflen = iframe->off = 0;
|
2012-03-17 15:39:38 +01:00
|
|
|
iframe->headbufoff = 0;
|
2012-05-25 03:46:40 +02:00
|
|
|
iframe->error_code = 0;
|
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_session_new(nghttp2_session **session_ptr,
|
|
|
|
const nghttp2_session_callbacks *callbacks,
|
2012-04-05 18:45:39 +02:00
|
|
|
void *user_data,
|
2013-10-20 17:44:39 +02:00
|
|
|
int server)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
|
|
|
int r;
|
2013-10-20 17:44:39 +02:00
|
|
|
nghttp2_hd_side side_deflate, side_inflate;
|
2013-07-12 17:19:03 +02:00
|
|
|
*session_ptr = malloc(sizeof(nghttp2_session));
|
2012-01-24 14:02:24 +01:00
|
|
|
if(*session_ptr == NULL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
r = NGHTTP2_ERR_NOMEM;
|
2012-02-16 14:47:49 +01:00
|
|
|
goto fail_session;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
memset(*session_ptr, 0, sizeof(nghttp2_session));
|
2012-01-27 15:05:29 +01:00
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
/* next_stream_id and last_recv_stream_id are initialized in either
|
|
|
|
nghttp2_session_client_new or nghttp2_session_server_new */
|
2012-01-24 14:02:24 +01:00
|
|
|
|
2012-01-31 14:48:09 +01:00
|
|
|
(*session_ptr)->next_seq = 0;
|
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
(*session_ptr)->remote_flow_control = 1;
|
|
|
|
(*session_ptr)->local_flow_control = 1;
|
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;
|
|
|
|
|
2013-10-20 17:44:39 +02:00
|
|
|
if(server) {
|
|
|
|
(*session_ptr)->server = 1;
|
|
|
|
side_deflate = NGHTTP2_HD_SIDE_RESPONSE;
|
|
|
|
side_inflate = NGHTTP2_HD_SIDE_REQUEST;
|
|
|
|
} else {
|
|
|
|
side_deflate = NGHTTP2_HD_SIDE_REQUEST;
|
|
|
|
side_inflate = NGHTTP2_HD_SIDE_RESPONSE;
|
|
|
|
}
|
|
|
|
r = nghttp2_hd_deflate_init(&(*session_ptr)->hd_deflater, side_deflate);
|
2012-01-24 14:02:24 +01:00
|
|
|
if(r != 0) {
|
2012-02-16 14:47:49 +01:00
|
|
|
goto fail_hd_deflater;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2013-10-20 17:44:39 +02:00
|
|
|
r = nghttp2_hd_inflate_init(&(*session_ptr)->hd_inflater, side_inflate);
|
2012-01-24 14:02:24 +01:00
|
|
|
if(r != 0) {
|
2012-02-16 14:47:49 +01:00
|
|
|
goto fail_hd_inflater;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_map_init(&(*session_ptr)->streams);
|
|
|
|
r = nghttp2_pq_init(&(*session_ptr)->ob_pq, nghttp2_outbound_item_compar);
|
2012-01-24 14:02:24 +01:00
|
|
|
if(r != 0) {
|
2012-02-16 14:47:49 +01:00
|
|
|
goto fail_ob_pq;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_pq_init(&(*session_ptr)->ob_ss_pq, nghttp2_outbound_item_compar);
|
2012-02-05 16:14:19 +01:00
|
|
|
if(r != 0) {
|
2012-02-16 14:47:49 +01:00
|
|
|
goto fail_ob_ss_pq;
|
2012-02-05 16:14:19 +01:00
|
|
|
}
|
|
|
|
|
2012-02-16 15:09:06 +01:00
|
|
|
(*session_ptr)->aob.framebuf = malloc
|
2013-07-12 17:19:03 +02:00
|
|
|
(NGHTTP2_INITIAL_OUTBOUND_FRAMEBUF_LENGTH);
|
2012-02-16 12:54:30 +01:00
|
|
|
if((*session_ptr)->aob.framebuf == NULL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
r = NGHTTP2_ERR_NOMEM;
|
2012-02-16 14:47:49 +01:00
|
|
|
goto fail_aob_framebuf;
|
2012-02-16 12:54:30 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
(*session_ptr)->aob.framebufmax = NGHTTP2_INITIAL_OUTBOUND_FRAMEBUF_LENGTH;
|
2012-02-16 12:54:30 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
(*session_ptr)->nvbuf = malloc(NGHTTP2_INITIAL_NV_BUFFER_LENGTH);
|
2012-02-16 12:54:30 +01:00
|
|
|
if((*session_ptr)->nvbuf == NULL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
r = NGHTTP2_ERR_NOMEM;
|
2012-02-16 14:47:49 +01:00
|
|
|
goto fail_nvbuf;
|
2012-02-16 12:54:30 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
(*session_ptr)->nvbuflen = NGHTTP2_INITIAL_NV_BUFFER_LENGTH;
|
2012-02-16 12:54:30 +01:00
|
|
|
|
2012-03-09 16:10:11 +01:00
|
|
|
memset((*session_ptr)->remote_settings, 0,
|
|
|
|
sizeof((*session_ptr)->remote_settings));
|
2013-07-12 17:19:03 +02:00
|
|
|
(*session_ptr)->remote_settings[NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS] =
|
|
|
|
NGHTTP2_INITIAL_MAX_CONCURRENT_STREAMS;
|
|
|
|
(*session_ptr)->remote_settings[NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE] =
|
|
|
|
NGHTTP2_INITIAL_WINDOW_SIZE;
|
2012-02-05 16:14:19 +01:00
|
|
|
|
2012-03-09 16:10:11 +01:00
|
|
|
memset((*session_ptr)->local_settings, 0,
|
|
|
|
sizeof((*session_ptr)->local_settings));
|
2013-07-12 17:19:03 +02:00
|
|
|
(*session_ptr)->local_settings[NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS] =
|
|
|
|
NGHTTP2_INITIAL_MAX_CONCURRENT_STREAMS;
|
|
|
|
(*session_ptr)->local_settings[NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE] =
|
|
|
|
NGHTTP2_INITIAL_WINDOW_SIZE;
|
2012-02-25 16:12:32 +01:00
|
|
|
|
2012-01-24 14:02:24 +01:00
|
|
|
(*session_ptr)->callbacks = *callbacks;
|
|
|
|
(*session_ptr)->user_data = user_data;
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
(*session_ptr)->iframe.buf = malloc(NGHTTP2_INITIAL_INBOUND_FRAMEBUF_LENGTH);
|
2012-02-16 15:09:06 +01:00
|
|
|
if((*session_ptr)->iframe.buf == NULL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
r = NGHTTP2_ERR_NOMEM;
|
2012-02-16 15:09:06 +01:00
|
|
|
goto fail_iframe_buf;
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
(*session_ptr)->iframe.bufmax = NGHTTP2_INITIAL_INBOUND_FRAMEBUF_LENGTH;
|
2012-05-25 03:46:40 +02:00
|
|
|
|
2013-09-28 10:59:24 +02:00
|
|
|
nghttp2_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
|
|
|
|
2012-02-16 15:09:06 +01:00
|
|
|
fail_iframe_buf:
|
|
|
|
free((*session_ptr)->nvbuf);
|
2012-02-16 14:47:49 +01:00
|
|
|
fail_nvbuf:
|
|
|
|
free((*session_ptr)->aob.framebuf);
|
|
|
|
fail_aob_framebuf:
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_pq_free(&(*session_ptr)->ob_ss_pq);
|
2012-02-16 14:47:49 +01:00
|
|
|
fail_ob_ss_pq:
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_pq_free(&(*session_ptr)->ob_pq);
|
2012-02-16 14:47:49 +01:00
|
|
|
fail_ob_pq:
|
2012-09-11 17:13:02 +02:00
|
|
|
/* No need to free (*session_ptr)->streams) here. */
|
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:
|
|
|
|
free(*session_ptr);
|
|
|
|
fail_session:
|
2012-02-24 17:17:03 +01:00
|
|
|
return r;
|
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)
|
|
|
|
{
|
|
|
|
int r;
|
2012-09-14 17:47:17 +02:00
|
|
|
/* For client side session, header compression is disabled. */
|
2013-10-20 17:44:39 +02:00
|
|
|
r = nghttp2_session_new(session_ptr, callbacks, user_data, 0);
|
2012-02-01 16:19:31 +01:00
|
|
|
if(r == 0) {
|
|
|
|
/* IDs for use in client */
|
|
|
|
(*session_ptr)->next_stream_id = 1;
|
|
|
|
(*session_ptr)->last_recv_stream_id = 0;
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
int r;
|
2012-09-14 17:47:17 +02:00
|
|
|
/* Enable header compression on server side. */
|
2013-10-20 17:44:39 +02:00
|
|
|
r = nghttp2_session_new(session_ptr, callbacks, user_data, 1);
|
2012-02-01 16:19:31 +01:00
|
|
|
if(r == 0) {
|
|
|
|
/* IDs for use in client */
|
|
|
|
(*session_ptr)->next_stream_id = 2;
|
|
|
|
(*session_ptr)->last_recv_stream_id = 0;
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_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);
|
2012-05-11 15:58:12 +02:00
|
|
|
return 0;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
static void nghttp2_session_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
|
|
|
static void nghttp2_active_outbound_item_reset
|
|
|
|
(nghttp2_active_outbound_item *aob)
|
2012-02-19 15:42:25 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_outbound_item_free(aob->item);
|
2012-02-19 15:42:25 +01:00
|
|
|
free(aob->item);
|
|
|
|
aob->item = NULL;
|
|
|
|
aob->framebuflen = aob->framebufoff = 0;
|
|
|
|
}
|
|
|
|
|
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);
|
2013-09-28 10:59:24 +02:00
|
|
|
nghttp2_inbound_frame_reset(session);
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_map_each_free(&session->streams, nghttp2_free_streams, NULL);
|
|
|
|
nghttp2_session_ob_pq_free(&session->ob_pq);
|
|
|
|
nghttp2_session_ob_pq_free(&session->ob_ss_pq);
|
2013-07-19 17:08:14 +02:00
|
|
|
nghttp2_hd_deflate_free(&session->hd_deflater);
|
|
|
|
nghttp2_hd_inflate_free(&session->hd_inflater);
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_active_outbound_item_reset(&session->aob);
|
2012-02-16 12:54:30 +01:00
|
|
|
free(session->aob.framebuf);
|
|
|
|
free(session->nvbuf);
|
2012-02-16 15:09:06 +01:00
|
|
|
free(session->iframe.buf);
|
2013-07-15 14:45:59 +02:00
|
|
|
free(session);
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2013-08-09 16:40:41 +02:00
|
|
|
static int outbound_item_update_pri
|
|
|
|
(nghttp2_outbound_item *item, nghttp2_stream *stream)
|
|
|
|
{
|
|
|
|
if(item->frame_cat == NGHTTP2_CAT_CTRL) {
|
|
|
|
if(((nghttp2_frame*)item->frame)->hd.stream_id != stream->stream_id) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
switch(((nghttp2_frame*)item->frame)->hd.type) {
|
|
|
|
case NGHTTP2_HEADERS:
|
|
|
|
case NGHTTP2_PUSH_PROMISE:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(((nghttp2_data*)item->frame)->hd.stream_id != stream->stream_id) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
item->pri = stream->pri;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int update_stream_pri(void *ptr, void *arg)
|
|
|
|
{
|
|
|
|
nghttp2_outbound_item *item = (nghttp2_outbound_item*)ptr;
|
|
|
|
nghttp2_stream *stream = (nghttp2_stream*)arg;
|
|
|
|
return outbound_item_update_pri(item, stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nghttp2_session_reprioritize_stream
|
|
|
|
(nghttp2_session *session, nghttp2_stream *stream, int32_t pri)
|
|
|
|
{
|
|
|
|
if(stream->pri == pri) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
stream->pri = pri;
|
|
|
|
nghttp2_pq_update(&session->ob_pq, update_stream_pri, stream);
|
|
|
|
nghttp2_pq_update(&session->ob_ss_pq, update_stream_pri, stream);
|
|
|
|
if(stream->deferred_data) {
|
|
|
|
stream->deferred_data->pri = pri;
|
|
|
|
}
|
|
|
|
if(session->aob.item) {
|
|
|
|
outbound_item_update_pri(session->aob.item, stream);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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. */
|
2012-07-27 15:11:13 +02:00
|
|
|
int r = 0;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_outbound_item *item;
|
|
|
|
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
|
|
|
}
|
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++;
|
2013-07-15 14:45:59 +02:00
|
|
|
/* Set priority to the default value at the moment. */
|
|
|
|
item->pri = NGHTTP2_PRI_DEFAULT;
|
|
|
|
if(frame_cat == NGHTTP2_CAT_CTRL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame *frame = (nghttp2_frame*)abs_frame;
|
2013-07-24 18:49:05 +02:00
|
|
|
nghttp2_stream *stream = NULL;
|
2013-07-15 14:45:59 +02:00
|
|
|
switch(frame->hd.type) {
|
|
|
|
case NGHTTP2_HEADERS:
|
|
|
|
if(frame->hd.stream_id == -1) {
|
|
|
|
/* Initial HEADERS, which will open stream */
|
|
|
|
item->pri = frame->headers.pri;
|
|
|
|
} else {
|
|
|
|
/* Otherwise, the frame must have stream ID. We use its
|
|
|
|
priority value. */
|
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
if(stream) {
|
|
|
|
item->pri = stream->pri;
|
|
|
|
}
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
|
|
|
break;
|
2013-08-09 16:40:41 +02:00
|
|
|
case NGHTTP2_PRIORITY:
|
|
|
|
item->pri = -1;
|
2013-07-22 17:11:39 +02:00
|
|
|
break;
|
2013-08-09 16:40:41 +02:00
|
|
|
case NGHTTP2_RST_STREAM:
|
2013-07-15 14:45:59 +02:00
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
2012-03-29 16:59:51 +02:00
|
|
|
if(stream) {
|
2013-07-12 17:19:03 +02:00
|
|
|
stream->state = NGHTTP2_STREAM_CLOSING;
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
2013-08-09 16:40:41 +02:00
|
|
|
item->pri = -1;
|
2012-03-29 16:59:51 +02:00
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_SETTINGS:
|
2013-08-09 16:40:41 +02:00
|
|
|
item->pri = NGHTTP2_OB_PRI_SETTINGS;
|
2012-03-29 16:59:51 +02:00
|
|
|
break;
|
2013-08-09 16:40:41 +02:00
|
|
|
case NGHTTP2_PUSH_PROMISE:
|
2013-07-24 18:49:05 +02:00
|
|
|
/* Use priority of associated stream */
|
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
if(stream) {
|
|
|
|
item->pri = stream->pri;
|
|
|
|
}
|
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_PING:
|
2012-04-05 18:45:39 +02:00
|
|
|
/* Ping has highest priority. */
|
2013-07-12 17:19:03 +02:00
|
|
|
item->pri = NGHTTP2_OB_PRI_PING;
|
2012-03-29 16:59:51 +02:00
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_GOAWAY:
|
2012-03-29 16:59:51 +02:00
|
|
|
/* Should GOAWAY have higher priority? */
|
|
|
|
break;
|
2013-07-15 14:45:59 +02:00
|
|
|
case NGHTTP2_WINDOW_UPDATE:
|
2013-08-09 16:40:41 +02:00
|
|
|
item->pri = -1;
|
2012-03-29 16:59:51 +02:00
|
|
|
break;
|
2012-02-23 16:02:29 +01:00
|
|
|
}
|
2013-07-24 18:49:05 +02:00
|
|
|
if(frame->hd.type == NGHTTP2_HEADERS &&
|
|
|
|
(frame->hd.stream_id == -1 ||
|
|
|
|
(stream && stream->state == NGHTTP2_STREAM_RESERVED &&
|
|
|
|
session->server))) {
|
|
|
|
/* TODO If 2 HEADERS are submitted for reserved stream, then
|
|
|
|
both of them are queued into ob_ss_pq, which is not
|
|
|
|
desirable. */
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_pq_push(&session->ob_ss_pq, item);
|
2012-03-29 16:59:51 +02:00
|
|
|
} else {
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_pq_push(&session->ob_pq, item);
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
2013-07-15 14:45:59 +02:00
|
|
|
} else if(frame_cat == NGHTTP2_CAT_DATA) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_data *data_frame = (nghttp2_data*)abs_frame;
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_stream *stream;
|
|
|
|
stream = nghttp2_session_get_stream(session, data_frame->hd.stream_id);
|
2012-01-26 17:17:40 +01:00
|
|
|
if(stream) {
|
|
|
|
item->pri = stream->pri;
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_pq_push(&session->ob_pq, item);
|
2012-03-29 16:59:51 +02:00
|
|
|
} else {
|
|
|
|
/* Unreachable */
|
|
|
|
assert(0);
|
2012-02-05 16:14:19 +01:00
|
|
|
}
|
2012-01-24 14:02:24 +01:00
|
|
|
if(r != 0) {
|
|
|
|
free(item);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
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
|
|
|
{
|
|
|
|
int r;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame *frame;
|
|
|
|
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);
|
|
|
|
r = nghttp2_session_add_frame(session, NGHTTP2_CAT_CTRL, frame, NULL);
|
2012-01-25 13:31:28 +01:00
|
|
|
if(r != 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);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
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,
|
2013-07-15 14:45:59 +02:00
|
|
|
uint8_t flags, int32_t pri,
|
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
|
|
|
{
|
|
|
|
int r;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream *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
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream_init(stream, stream_id, flags, pri, initial_state,
|
2013-07-15 14:45:59 +02:00
|
|
|
!session->remote_settings
|
|
|
|
[NGHTTP2_SETTINGS_FLOW_CONTROL_OPTIONS],
|
|
|
|
!session->local_settings
|
|
|
|
[NGHTTP2_SETTINGS_FLOW_CONTROL_OPTIONS],
|
2012-03-09 16:10:11 +01:00
|
|
|
session->remote_settings
|
2013-07-12 17:19:03 +02:00
|
|
|
[NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE],
|
2013-08-08 14:12:49 +02:00
|
|
|
session->local_settings
|
|
|
|
[NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE],
|
2012-02-03 17:37:21 +01:00
|
|
|
stream_user_data);
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_map_insert(&session->streams, &stream->map_entry);
|
2012-01-24 14:02:24 +01:00
|
|
|
if(r != 0) {
|
|
|
|
free(stream);
|
2013-07-24 18:49:05 +02:00
|
|
|
return NULL;
|
2012-01-24 14:02: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
|
|
|
}
|
2012-01-28 16:16:51 +01:00
|
|
|
return stream;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2013-08-29 15:58:05 +02:00
|
|
|
/*
|
|
|
|
* Closes stream with stream ID |stream_id|. 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(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
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream *stream = nghttp2_session_get_stream(session, stream_id);
|
2013-09-05 16:17:16 +02:00
|
|
|
if(!stream) {
|
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
|
|
|
}
|
|
|
|
/* 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.
|
|
|
|
*/
|
|
|
|
/* TODO Should on_stream_close_callback be called against
|
|
|
|
NGHTTP2_STREAM_RESERVED? It is actually not opened yet. */
|
|
|
|
if(stream->state != NGHTTP2_STREAM_RESERVED) {
|
|
|
|
if(session->callbacks.on_stream_close_callback) {
|
2013-08-29 15:58:05 +02:00
|
|
|
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
|
|
|
}
|
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
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
nghttp2_map_remove(&session->streams, stream_id);
|
|
|
|
nghttp2_stream_free(stream);
|
|
|
|
free(stream);
|
|
|
|
return 0;
|
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.
|
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_predicate_stream_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.
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_STREAM_ID_NOT_AVAILABLE
|
2012-03-15 14:39:26 +01:00
|
|
|
* Stream ID has reached the maximum value. Therefore no stream ID
|
|
|
|
* is available.
|
2012-03-11 10:52:42 +01:00
|
|
|
*/
|
2013-07-25 14:07:38 +02:00
|
|
|
static int nghttp2_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
|
|
|
}
|
|
|
|
/* All 32bit signed stream IDs are spent. */
|
|
|
|
if(session->next_stream_id > INT32_MAX) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_STREAM_ID_NOT_AVAILABLE;
|
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
|
|
|
*/
|
2013-07-25 14:07:38 +02:00
|
|
|
static int nghttp2_session_predicate_response_headers_send
|
|
|
|
(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);
|
2012-03-07 16:18:18 +01:00
|
|
|
int r;
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_predicate_stream_for_send(stream);
|
2012-03-07 16:18:18 +01:00
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
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
|
|
|
|
* The session is client-side and/or stream is not reserved state
|
|
|
|
* NGHTTP2_ERR_STREAM_CLOSED
|
|
|
|
* RST_STREAM was queued for this stream.
|
|
|
|
*/
|
2013-07-25 14:07:38 +02:00
|
|
|
static int nghttp2_session_predicate_push_response_headers_send
|
|
|
|
(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);
|
|
|
|
int r;
|
|
|
|
/* TODO Should disallow HEADERS if GOAWAY has already been issued? */
|
|
|
|
r = nghttp2_predicate_stream_for_send(stream);
|
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
if(!session->server || stream->state != NGHTTP2_STREAM_RESERVED) {
|
|
|
|
/* Only server can send HEADERS for reserved streams */
|
|
|
|
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
|
|
|
*/
|
2013-07-23 14:33:28 +02:00
|
|
|
static int nghttp2_session_predicate_stream_frame_send
|
|
|
|
(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);
|
2012-03-07 16:18:18 +01:00
|
|
|
int r;
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_predicate_stream_for_send(stream);
|
2012-03-07 16:18:18 +01:00
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
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.
|
|
|
|
*/
|
|
|
|
static int nghttp2_session_predicate_headers_send(nghttp2_session *session,
|
|
|
|
int32_t stream_id)
|
|
|
|
{
|
|
|
|
return nghttp2_session_predicate_stream_frame_send(session, stream_id);
|
|
|
|
}
|
|
|
|
|
2013-07-22 17:11:39 +02:00
|
|
|
/*
|
|
|
|
* This function checks PRIORITY frame with stream ID |stream_id| can
|
|
|
|
* be sent at this time.
|
|
|
|
*/
|
|
|
|
static int nghttp2_session_predicate_priority_send
|
|
|
|
(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);
|
|
|
|
if(stream == NULL) {
|
|
|
|
return NGHTTP2_ERR_STREAM_CLOSED;
|
|
|
|
}
|
2013-10-04 15:42:34 +02:00
|
|
|
if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
2013-08-09 16:40:41 +02:00
|
|
|
return NGHTTP2_ERR_STREAM_CLOSING;
|
|
|
|
}
|
2013-10-04 15:42:34 +02:00
|
|
|
/* Sending PRIORITY to reserved state is OK */
|
|
|
|
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_STREAM_ID_NOT_AVAILABLE
|
|
|
|
* Stream ID has reached the maximum value. Therefore no stream ID
|
|
|
|
* is available.
|
|
|
|
* 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)
|
|
|
|
*/
|
|
|
|
static int nghttp2_session_predicate_push_promise_send
|
|
|
|
(nghttp2_session *session, int32_t stream_id)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
if(!session->server || nghttp2_session_is_my_stream_id(session, stream_id)) {
|
|
|
|
/* Only server is allowed to push. And associated stream must be
|
|
|
|
created from client side */
|
|
|
|
return NGHTTP2_ERR_PROTO;
|
|
|
|
}
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
|
|
|
rv = nghttp2_predicate_stream_for_send(stream);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
/* All 32bit signed stream IDs are spent. */
|
|
|
|
if(session->next_stream_id > INT32_MAX) {
|
|
|
|
return NGHTTP2_ERR_STREAM_ID_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
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
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_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
|
|
|
}
|
|
|
|
|
2013-10-27 11:22:51 +01:00
|
|
|
/*
|
|
|
|
* This function checks SETTINGS can be sent at this time.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_TOO_MANY_INFLIGHT_SETTINGS
|
|
|
|
* There is already another in-flight SETTINGS. Note that the
|
|
|
|
* current implementation only allows 1 in-flight SETTINGS frame
|
|
|
|
* without ACK flag set.
|
|
|
|
*/
|
|
|
|
static int nghttp2_session_predicate_settings_send(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
|
|
|
{
|
|
|
|
if((frame->hd.flags & NGHTTP2_FLAG_ACK) == 0 &&
|
|
|
|
session->inflight_niv != -1) {
|
|
|
|
return NGHTTP2_ERR_TOO_MANY_INFLIGHT_SETTINGS;
|
|
|
|
}
|
|
|
|
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
|
|
|
{
|
2013-09-05 16:17:16 +02:00
|
|
|
int32_t session_window_size;
|
|
|
|
int32_t stream_window_size;
|
|
|
|
int32_t window_size;
|
|
|
|
/* Take into account both connection-level flow control here */
|
2013-07-16 13:54:24 +02:00
|
|
|
if(session->remote_flow_control == 0 && stream->remote_flow_control == 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_DATA_PAYLOAD_LENGTH;
|
2013-09-05 16:17:16 +02:00
|
|
|
}
|
|
|
|
session_window_size =
|
|
|
|
session->remote_flow_control ? session->remote_window_size : INT32_MAX;
|
|
|
|
stream_window_size =
|
|
|
|
stream->remote_flow_control ? stream->remote_window_size : INT32_MAX;
|
|
|
|
window_size = nghttp2_min(session_window_size, stream_window_size);
|
|
|
|
if(window_size > 0) {
|
|
|
|
return nghttp2_min(window_size, NGHTTP2_DATA_PAYLOAD_LENGTH);
|
2012-02-25 16:12:32 +01:00
|
|
|
} else {
|
2013-09-05 16:17:16 +02: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_DEFERRED_DATA_EXIST
|
2012-03-07 16:18:18 +01:00
|
|
|
* Another DATA frame has already been deferred.
|
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);
|
2012-03-07 16:18:18 +01:00
|
|
|
int r;
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_predicate_stream_for_send(stream);
|
2012-03-07 16:18:18 +01:00
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
2012-01-27 09:09:40 +01:00
|
|
|
}
|
2012-02-19 15:42:25 +01:00
|
|
|
if(stream->deferred_data != NULL) {
|
|
|
|
/* stream->deferred_data != NULL means previously queued DATA
|
|
|
|
frame has not been sent. We don't allow new DATA frame is sent
|
|
|
|
in this case. */
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_DEFERRED_DATA_EXIST;
|
2012-02-19 15:42:25 +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
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
static ssize_t nghttp2_session_prep_frame(nghttp2_session *session,
|
|
|
|
nghttp2_outbound_item *item)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2012-07-27 15:11:13 +02:00
|
|
|
ssize_t framebuflen = 0;
|
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: {
|
2013-07-15 14:45:59 +02:00
|
|
|
if(frame->hd.stream_id == -1) {
|
|
|
|
/* initial HEADERS, which opens stream */
|
|
|
|
int r;
|
2013-07-25 13:53:30 +02:00
|
|
|
frame->headers.cat = NGHTTP2_HCAT_REQUEST;
|
2013-07-25 14:07:38 +02:00
|
|
|
r = nghttp2_session_predicate_request_headers_send(session,
|
|
|
|
&frame->headers);
|
2013-07-15 14:45:59 +02:00
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
2012-04-05 18:45:39 +02:00
|
|
|
}
|
2013-07-19 17:08:14 +02:00
|
|
|
frame->hd.stream_id = session->next_stream_id;
|
2013-07-15 14:45:59 +02:00
|
|
|
session->next_stream_id += 2;
|
2013-07-25 14:07:38 +02:00
|
|
|
} else if(nghttp2_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;
|
2013-07-25 14:07:38 +02:00
|
|
|
} else if(nghttp2_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 {
|
|
|
|
int r;
|
|
|
|
frame->headers.cat = NGHTTP2_HCAT_HEADERS;
|
|
|
|
r = nghttp2_session_predicate_headers_send(session,
|
|
|
|
frame->hd.stream_id);
|
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
|
|
|
}
|
2013-07-19 17:08:14 +02:00
|
|
|
}
|
|
|
|
framebuflen = nghttp2_frame_pack_headers(&session->aob.framebuf,
|
|
|
|
&session->aob.framebufmax,
|
|
|
|
&frame->headers,
|
|
|
|
&session->hd_deflater);
|
|
|
|
nghttp2_hd_end_headers(&session->hd_deflater);
|
|
|
|
if(framebuflen < 0) {
|
|
|
|
return framebuflen;
|
|
|
|
}
|
2013-07-25 13:53:30 +02:00
|
|
|
switch(frame->headers.cat) {
|
|
|
|
case NGHTTP2_HCAT_REQUEST: {
|
2013-07-19 17:08:14 +02:00
|
|
|
nghttp2_headers_aux_data *aux_data;
|
|
|
|
aux_data = (nghttp2_headers_aux_data*)item->aux_data;
|
|
|
|
if(nghttp2_session_open_stream
|
|
|
|
(session, frame->hd.stream_id,
|
|
|
|
frame->hd.flags,
|
|
|
|
frame->headers.pri,
|
|
|
|
NGHTTP2_STREAM_INITIAL,
|
|
|
|
aux_data ? aux_data->stream_user_data : NULL) == NULL) {
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
2013-07-15 14:45:59 +02:00
|
|
|
}
|
2013-07-25 13:53:30 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case NGHTTP2_HCAT_PUSH_RESPONSE: {
|
2013-07-24 18:49:05 +02:00
|
|
|
nghttp2_headers_aux_data *aux_data;
|
|
|
|
aux_data = (nghttp2_headers_aux_data*)item->aux_data;
|
|
|
|
if(aux_data) {
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
stream->stream_user_data = aux_data->stream_user_data;
|
|
|
|
}
|
2013-07-25 13:53:30 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
|
|
|
break;
|
2013-07-24 18:49:05 +02:00
|
|
|
}
|
2013-07-22 17:11:39 +02:00
|
|
|
case NGHTTP2_PRIORITY: {
|
|
|
|
int r;
|
|
|
|
r = nghttp2_session_predicate_priority_send
|
|
|
|
(session, frame->hd.stream_id);
|
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
framebuflen = nghttp2_frame_pack_priority(&session->aob.framebuf,
|
|
|
|
&session->aob.framebufmax,
|
|
|
|
&frame->priority);
|
|
|
|
if(framebuflen < 0) {
|
|
|
|
return framebuflen;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_RST_STREAM:
|
|
|
|
framebuflen = nghttp2_frame_pack_rst_stream(&session->aob.framebuf,
|
2012-03-29 16:59:51 +02:00
|
|
|
&session->aob.framebufmax,
|
|
|
|
&frame->rst_stream);
|
|
|
|
if(framebuflen < 0) {
|
|
|
|
return framebuflen;
|
|
|
|
}
|
|
|
|
break;
|
2013-10-27 11:22:51 +01:00
|
|
|
case NGHTTP2_SETTINGS: {
|
|
|
|
int r;
|
|
|
|
r = nghttp2_session_predicate_settings_send(session, frame);
|
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
framebuflen = nghttp2_frame_pack_settings(&session->aob.framebuf,
|
2012-02-16 12:54:30 +01:00
|
|
|
&session->aob.framebufmax,
|
2012-03-29 16:59:51 +02:00
|
|
|
&frame->settings);
|
|
|
|
if(framebuflen < 0) {
|
|
|
|
return framebuflen;
|
|
|
|
}
|
|
|
|
break;
|
2013-10-27 11:22:51 +01:00
|
|
|
}
|
2013-07-24 18:49:05 +02:00
|
|
|
case NGHTTP2_PUSH_PROMISE: {
|
|
|
|
int r;
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
r = nghttp2_session_predicate_push_promise_send(session,
|
|
|
|
frame->hd.stream_id);
|
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
frame->push_promise.promised_stream_id = session->next_stream_id;
|
|
|
|
session->next_stream_id += 2;
|
|
|
|
framebuflen = nghttp2_frame_pack_push_promise(&session->aob.framebuf,
|
|
|
|
&session->aob.framebufmax,
|
|
|
|
&frame->push_promise,
|
|
|
|
&session->hd_deflater);
|
|
|
|
nghttp2_hd_end_headers(&session->hd_deflater);
|
|
|
|
if(framebuflen < 0) {
|
|
|
|
return framebuflen;
|
|
|
|
}
|
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
assert(stream);
|
|
|
|
if(nghttp2_session_open_stream
|
|
|
|
(session, frame->push_promise.promised_stream_id,
|
|
|
|
frame->hd.flags,
|
|
|
|
nghttp2_pushed_stream_pri(stream),
|
|
|
|
NGHTTP2_STREAM_RESERVED,
|
|
|
|
NULL) == NULL) {
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_PING:
|
|
|
|
framebuflen = nghttp2_frame_pack_ping(&session->aob.framebuf,
|
2012-03-29 16:59:51 +02:00
|
|
|
&session->aob.framebufmax,
|
|
|
|
&frame->ping);
|
|
|
|
if(framebuflen < 0) {
|
|
|
|
return framebuflen;
|
|
|
|
}
|
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_WINDOW_UPDATE: {
|
2012-03-29 16:59:51 +02:00
|
|
|
int r;
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_session_predicate_window_update_send
|
2013-07-15 14:45:59 +02:00
|
|
|
(session, frame->hd.stream_id);
|
2012-03-29 16:59:51 +02:00
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
framebuflen = nghttp2_frame_pack_window_update(&session->aob.framebuf,
|
2012-03-29 16:59:51 +02:00
|
|
|
&session->aob.framebufmax,
|
|
|
|
&frame->window_update);
|
|
|
|
if(framebuflen < 0) {
|
|
|
|
return framebuflen;
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
framebuflen = nghttp2_frame_pack_goaway(&session->aob.framebuf,
|
2012-02-16 12:54:30 +01:00
|
|
|
&session->aob.framebufmax,
|
2012-03-29 16:59:51 +02:00
|
|
|
&frame->goaway);
|
|
|
|
if(framebuflen < 0) {
|
|
|
|
return framebuflen;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2013-07-12 17:19:03 +02:00
|
|
|
framebuflen = NGHTTP2_ERR_INVALID_ARGUMENT;
|
2012-01-28 11:22:38 +01:00
|
|
|
}
|
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;
|
|
|
|
nghttp2_data *data_frame;
|
2012-03-07 16:18:18 +01:00
|
|
|
int r;
|
2013-07-12 17:19:03 +02:00
|
|
|
data_frame = nghttp2_outbound_item_get_data_frame(item);
|
2013-07-15 14:45:59 +02:00
|
|
|
r = nghttp2_session_predicate_data_send(session, data_frame->hd.stream_id);
|
2012-03-07 16:18:18 +01:00
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
2012-01-27 09:09:40 +01:00
|
|
|
}
|
2013-07-15 14:45:59 +02:00
|
|
|
stream = nghttp2_session_get_stream(session, data_frame->hd.stream_id);
|
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);
|
2012-02-28 13:40:19 +01:00
|
|
|
if(next_readmax == 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream_defer_data(stream, item, NGHTTP2_DEFERRED_FLOW_CONTROL);
|
|
|
|
return NGHTTP2_ERR_DEFERRED;
|
2012-02-25 16:12:32 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
framebuflen = nghttp2_session_pack_data(session,
|
2012-02-28 13:40:19 +01:00
|
|
|
&session->aob.framebuf,
|
|
|
|
&session->aob.framebufmax,
|
|
|
|
next_readmax,
|
2012-03-29 16:59:51 +02:00
|
|
|
data_frame);
|
2013-07-12 17:19:03 +02:00
|
|
|
if(framebuflen == NGHTTP2_ERR_DEFERRED) {
|
|
|
|
nghttp2_stream_defer_data(stream, item, NGHTTP2_DEFERRED_NONE);
|
|
|
|
return NGHTTP2_ERR_DEFERRED;
|
|
|
|
} else if(framebuflen == NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE) {
|
2013-07-15 14:45:59 +02:00
|
|
|
r = nghttp2_session_add_rst_stream(session, data_frame->hd.stream_id,
|
2013-07-12 17:19:03 +02:00
|
|
|
NGHTTP2_INTERNAL_ERROR);
|
2012-05-12 11:19:05 +02:00
|
|
|
if(r == 0) {
|
|
|
|
return framebuflen;
|
|
|
|
} else {
|
|
|
|
return r;
|
|
|
|
}
|
2012-02-19 15:42:25 +01:00
|
|
|
} else if(framebuflen < 0) {
|
2012-01-26 17:17:40 +01:00
|
|
|
return framebuflen;
|
|
|
|
}
|
2012-03-29 16:59:51 +02:00
|
|
|
} else {
|
|
|
|
/* Unreachable */
|
|
|
|
assert(0);
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
return framebuflen;
|
|
|
|
}
|
|
|
|
|
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 */
|
2013-07-12 17:19:03 +02:00
|
|
|
if(nghttp2_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);
|
2013-07-12 17:19:03 +02:00
|
|
|
if(nghttp2_session_is_outgoing_concurrent_streams_max(session) ||
|
2013-07-25 14:18:13 +02:00
|
|
|
item->pri < headers_item->pri ||
|
|
|
|
(item->pri == headers_item->pri &&
|
|
|
|
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 */
|
2013-07-12 17:19:03 +02:00
|
|
|
if(nghttp2_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);
|
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);
|
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);
|
2013-07-12 17:19:03 +02:00
|
|
|
if(nghttp2_session_is_outgoing_concurrent_streams_max(session) ||
|
2013-07-25 14:18:13 +02:00
|
|
|
item->pri < headers_item->pri ||
|
|
|
|
(item->pri == headers_item->pri &&
|
|
|
|
item->seq < headers_item->seq)) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_pq_pop(&session->ob_pq);
|
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);
|
2013-07-25 14:18:13 +02:00
|
|
|
return headers_item;
|
2012-02-05 16:14:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_session_after_frame_sent(nghttp2_session *session)
|
2012-01-25 17:04:01 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_outbound_item *item = session->aob.item;
|
2013-07-15 14:45:59 +02:00
|
|
|
if(item->frame_cat == NGHTTP2_CAT_CTRL) {
|
2013-08-29 15:58:05 +02:00
|
|
|
int r;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame *frame;
|
|
|
|
frame = nghttp2_outbound_item_get_ctrl_frame(session->aob.item);
|
2013-07-15 14:45:59 +02:00
|
|
|
if(session->callbacks.on_frame_send_callback) {
|
2013-08-29 14:48:34 +02:00
|
|
|
if(session->callbacks.on_frame_send_callback(session, frame,
|
|
|
|
session->user_data) != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
2012-01-27 20:28:39 +01:00
|
|
|
}
|
2013-07-15 14:45:59 +02:00
|
|
|
switch(frame->hd.type) {
|
|
|
|
case NGHTTP2_HEADERS: {
|
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);
|
|
|
|
nghttp2_headers_aux_data *aux_data;
|
2012-03-29 16:59:51 +02:00
|
|
|
if(stream) {
|
2013-07-15 14:45:59 +02:00
|
|
|
switch(frame->headers.cat) {
|
2013-07-25 13:53:30 +02:00
|
|
|
case NGHTTP2_HCAT_REQUEST: {
|
2013-07-15 14:45:59 +02:00
|
|
|
stream->state = NGHTTP2_STREAM_OPENING;
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_WR);
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
2013-08-29 15:58:05 +02:00
|
|
|
r = nghttp2_session_close_stream_if_shut_rdwr(session, stream);
|
|
|
|
if(r != 0 && nghttp2_is_fatal(r)) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
r = 0;
|
2013-07-15 14:45:59 +02:00
|
|
|
/* 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 */
|
|
|
|
r = nghttp2_submit_data(session, NGHTTP2_FLAG_END_STREAM,
|
|
|
|
frame->hd.stream_id, aux_data->data_prd);
|
2013-08-29 15:58:05 +02:00
|
|
|
if(r != 0 &&nghttp2_is_fatal(r)) {
|
|
|
|
return r;
|
2013-07-15 14:45:59 +02:00
|
|
|
}
|
2013-08-29 15:58:05 +02:00
|
|
|
/* If r is not fatal, the only possible error is closed
|
|
|
|
stream, so we have nothing to do here. */
|
|
|
|
r = 0;
|
2013-07-15 14:45:59 +02:00
|
|
|
}
|
|
|
|
break;
|
2012-01-30 15:55:00 +01:00
|
|
|
}
|
2013-07-25 13:53:30 +02:00
|
|
|
case NGHTTP2_HCAT_RESPONSE:
|
|
|
|
case NGHTTP2_HCAT_PUSH_RESPONSE:
|
2013-07-15 14:45:59 +02:00
|
|
|
stream->state = NGHTTP2_STREAM_OPENED;
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_WR);
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
2013-08-29 15:58:05 +02:00
|
|
|
r = nghttp2_session_close_stream_if_shut_rdwr(session, stream);
|
|
|
|
if(r != 0 && nghttp2_is_fatal(r)) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
r = 0;
|
2013-07-15 14:45:59 +02:00
|
|
|
/* 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) {
|
|
|
|
r = nghttp2_submit_data(session, NGHTTP2_FLAG_END_STREAM,
|
|
|
|
frame->hd.stream_id, aux_data->data_prd);
|
2013-08-29 15:58:05 +02:00
|
|
|
if(r != 0 && nghttp2_is_fatal(r)) {
|
|
|
|
return r;
|
2013-07-15 14:45:59 +02:00
|
|
|
}
|
2013-08-29 15:58:05 +02:00
|
|
|
/* If r is not fatal, the only possible error is closed
|
|
|
|
stream, so we have nothing to do here. */
|
|
|
|
r = 0;
|
2013-07-15 14:45:59 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NGHTTP2_HCAT_HEADERS:
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_WR);
|
|
|
|
}
|
2013-08-29 15:58:05 +02:00
|
|
|
r = nghttp2_session_close_stream_if_shut_rdwr(session, stream);
|
|
|
|
if(r != 0 && nghttp2_is_fatal(r)) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
r = 0;
|
2013-07-15 14:45:59 +02:00
|
|
|
break;
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
2012-01-28 16:08:51 +01:00
|
|
|
}
|
2012-03-29 16:59:51 +02:00
|
|
|
break;
|
|
|
|
}
|
2013-07-23 14:33:28 +02:00
|
|
|
case NGHTTP2_PRIORITY:
|
2013-08-09 16:40:41 +02:00
|
|
|
/* nothing to do */
|
2013-07-22 17:11:39 +02:00
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_RST_STREAM:
|
2013-08-29 15:58:05 +02:00
|
|
|
r = nghttp2_session_close_stream(session, frame->hd.stream_id,
|
|
|
|
frame->rst_stream.error_code);
|
|
|
|
if(r != 0 && nghttp2_is_fatal(r)) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
r = 0;
|
2012-03-29 16:59:51 +02:00
|
|
|
break;
|
2013-10-27 11:22:51 +01:00
|
|
|
case NGHTTP2_SETTINGS: {
|
|
|
|
size_t i;
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_ACK) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Only update max concurrent stream here. Applying it without
|
|
|
|
ACK is safe because we can respond to the exceeding streams
|
|
|
|
with REFUSED_STREAM and client will retry later. */
|
|
|
|
for(i = frame->settings.niv; i > 0; --i) {
|
|
|
|
if(frame->settings.iv[i - 1].settings_id ==
|
|
|
|
NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS) {
|
|
|
|
session->local_settings[NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS] =
|
|
|
|
frame->settings.iv[i - 1].value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert(session->inflight_niv == -1);
|
|
|
|
session->inflight_iv = frame->settings.iv;
|
|
|
|
session->inflight_niv = frame->settings.niv;
|
|
|
|
frame->settings.iv = NULL;
|
|
|
|
frame->settings.niv = 0;
|
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:
|
|
|
|
/* nothing to do */
|
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_PING:
|
2013-07-15 14:45:59 +02:00
|
|
|
/* nothing to do */
|
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;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_WINDOW_UPDATE:
|
2013-08-09 16:46:12 +02:00
|
|
|
/* nothing to do */
|
2012-03-29 16:59:51 +02:00
|
|
|
break;
|
2012-02-23 16:02:29 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_active_outbound_item_reset(&session->aob);
|
2013-07-15 14:45:59 +02:00
|
|
|
} else if(item->frame_cat == NGHTTP2_CAT_DATA) {
|
2012-03-29 16:59:51 +02:00
|
|
|
int r;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_data *data_frame;
|
|
|
|
data_frame = nghttp2_outbound_item_get_data_frame(session->aob.item);
|
2012-03-29 16:59:51 +02:00
|
|
|
if(session->callbacks.on_data_send_callback) {
|
2013-08-29 14:55:04 +02:00
|
|
|
if(session->callbacks.on_data_send_callback
|
|
|
|
(session,
|
|
|
|
session->aob.framebuflen - NGHTTP2_FRAME_HEAD_LENGTH,
|
|
|
|
data_frame->eof ? data_frame->hd.flags :
|
|
|
|
(data_frame->hd.flags & (~NGHTTP2_FLAG_END_STREAM)),
|
|
|
|
data_frame->hd.stream_id,
|
|
|
|
session->user_data) != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
2012-03-29 16:59:51 +02:00
|
|
|
}
|
2013-07-15 14:45:59 +02:00
|
|
|
if(data_frame->eof && (data_frame->hd.flags & NGHTTP2_FLAG_END_STREAM)) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream *stream =
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_session_get_stream(session, data_frame->hd.stream_id);
|
2012-01-28 16:08:51 +01:00
|
|
|
if(stream) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_WR);
|
2013-08-29 15:58:05 +02:00
|
|
|
r = nghttp2_session_close_stream_if_shut_rdwr(session, stream);
|
|
|
|
if(r != 0 && nghttp2_is_fatal(r)) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
r = 0;
|
2012-01-27 09:22:17 +01:00
|
|
|
}
|
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) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_active_outbound_item_reset(&session->aob);
|
2012-01-26 17:17:40 +01:00
|
|
|
} else {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_outbound_item* next_item;
|
|
|
|
next_item = nghttp2_session_get_next_ob_item(session);
|
2012-02-25 16:12:32 +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. */
|
2012-05-20 10:40:29 +02:00
|
|
|
if(next_item == NULL || session->aob.item->pri <= next_item->pri) {
|
2012-02-28 13:40:19 +01:00
|
|
|
size_t next_readmax;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream *stream;
|
2013-07-15 14:45:59 +02:00
|
|
|
stream = nghttp2_session_get_stream(session, data_frame->hd.stream_id);
|
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);
|
2012-02-28 13:40:19 +01:00
|
|
|
if(next_readmax == 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream_defer_data(stream, session->aob.item,
|
|
|
|
NGHTTP2_DEFERRED_FLOW_CONTROL);
|
2012-02-25 16:12:32 +01:00
|
|
|
session->aob.item = NULL;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_active_outbound_item_reset(&session->aob);
|
2012-02-25 16:12:32 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_session_pack_data(session,
|
2012-02-28 13:40:19 +01:00
|
|
|
&session->aob.framebuf,
|
|
|
|
&session->aob.framebufmax,
|
|
|
|
next_readmax,
|
2012-03-29 16:59:51 +02:00
|
|
|
data_frame);
|
2013-07-12 17:19:03 +02:00
|
|
|
if(r == NGHTTP2_ERR_DEFERRED) {
|
|
|
|
nghttp2_stream_defer_data(stream, session->aob.item,
|
|
|
|
NGHTTP2_DEFERRED_NONE);
|
2012-02-19 15:42:25 +01:00
|
|
|
session->aob.item = NULL;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_active_outbound_item_reset(&session->aob);
|
|
|
|
} else if(r == NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE) {
|
2012-05-12 11:19:05 +02:00
|
|
|
/* Stop DATA frame chain and issue RST_STREAM to close the
|
|
|
|
stream. We don't return
|
2013-07-12 17:19:03 +02:00
|
|
|
NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE intentionally. */
|
2013-07-15 14:45:59 +02:00
|
|
|
r = nghttp2_session_add_rst_stream(session, data_frame->hd.stream_id,
|
2013-07-12 17:19:03 +02:00
|
|
|
NGHTTP2_INTERNAL_ERROR);
|
|
|
|
nghttp2_active_outbound_item_reset(&session->aob);
|
2012-05-12 11:19:05 +02:00
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
|
|
|
}
|
2012-02-19 15:42:25 +01:00
|
|
|
} else if(r < 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
/* In this context, r is either NGHTTP2_ERR_NOMEM or
|
|
|
|
NGHTTP2_ERR_CALLBACK_FAILURE */
|
|
|
|
nghttp2_active_outbound_item_reset(&session->aob);
|
2012-05-11 16:23:46 +02:00
|
|
|
return r;
|
2012-02-19 15:42:25 +01:00
|
|
|
} else {
|
|
|
|
session->aob.framebuflen = r;
|
|
|
|
session->aob.framebufoff = 0;
|
2012-02-05 16:14:19 +01:00
|
|
|
}
|
2012-01-26 17:17:40 +01:00
|
|
|
} else {
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_pq_push(&session->ob_pq, session->aob.item);
|
2012-02-05 16:14:19 +01:00
|
|
|
if(r == 0) {
|
|
|
|
session->aob.item = NULL;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_active_outbound_item_reset(&session->aob);
|
2012-02-05 16:14:19 +01:00
|
|
|
} else {
|
2012-02-23 14:49:08 +01:00
|
|
|
/* FATAL error */
|
2013-07-12 17:19:03 +02:00
|
|
|
assert(r < NGHTTP2_ERR_FATAL);
|
|
|
|
nghttp2_active_outbound_item_reset(&session->aob);
|
2012-02-05 16:14:19 +01:00
|
|
|
return r;
|
|
|
|
}
|
2012-01-26 17:17:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2012-03-29 16:59:51 +02:00
|
|
|
/* Unreachable */
|
|
|
|
assert(0);
|
2012-01-26 17:17:40 +01:00
|
|
|
}
|
|
|
|
return 0;
|
2012-01-25 17:04:01 +01:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_send(nghttp2_session *session)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
2012-01-26 17:17:40 +01:00
|
|
|
int r;
|
2012-02-05 16:14:19 +01:00
|
|
|
while(1) {
|
2012-01-24 14:02:24 +01:00
|
|
|
const uint8_t *data;
|
|
|
|
size_t datalen;
|
|
|
|
ssize_t sentlen;
|
|
|
|
if(session->aob.item == NULL) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_outbound_item *item;
|
2012-01-24 14:02:24 +01:00
|
|
|
ssize_t framebuflen;
|
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) {
|
|
|
|
break;
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
framebuflen = nghttp2_session_prep_frame(session, item);
|
2013-07-19 17:22:12 +02:00
|
|
|
if(framebuflen == NGHTTP2_ERR_DEFERRED) {
|
2012-02-19 15:42:25 +01:00
|
|
|
continue;
|
|
|
|
} else if(framebuflen < 0) {
|
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 &&
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_is_non_fatal(framebuflen)) {
|
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
|
|
|
|
(session, frame, framebuflen, session->user_data) != 0) {
|
|
|
|
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);
|
2013-07-15 14:45:59 +02:00
|
|
|
|
2013-07-23 15:47:15 +02:00
|
|
|
if(framebuflen == NGHTTP2_ERR_HEADER_COMP) {
|
2013-08-19 17:12:29 +02:00
|
|
|
/* If header compression error occurred, should terminiate
|
|
|
|
connection. */
|
2013-07-23 15:47:15 +02:00
|
|
|
framebuflen = nghttp2_session_fail_session(session,
|
|
|
|
NGHTTP2_INTERNAL_ERROR);
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
if(nghttp2_is_fatal(framebuflen)) {
|
2012-01-28 11:22:38 +01:00
|
|
|
return framebuflen;
|
|
|
|
} else {
|
2012-02-19 15:42:25 +01:00
|
|
|
continue;
|
2012-01-28 11:22:38 +01:00
|
|
|
}
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
session->aob.item = item;
|
|
|
|
session->aob.framebuflen = framebuflen;
|
2012-01-28 09:25:14 +01:00
|
|
|
/* Call before_send callback */
|
2013-07-15 14:45:59 +02:00
|
|
|
if(item->frame_cat == NGHTTP2_CAT_CTRL &&
|
|
|
|
session->callbacks.before_frame_send_callback) {
|
2013-08-29 14:45:10 +02:00
|
|
|
if(session->callbacks.before_frame_send_callback
|
|
|
|
(session,
|
|
|
|
nghttp2_outbound_item_get_ctrl_frame(item),
|
|
|
|
session->user_data) != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
2012-01-28 09:25:14 +01:00
|
|
|
}
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
data = session->aob.framebuf + session->aob.framebufoff;
|
|
|
|
datalen = session->aob.framebuflen - session->aob.framebufoff;
|
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) {
|
2012-01-24 14:02:24 +01:00
|
|
|
return 0;
|
|
|
|
} else {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
} else {
|
2013-10-18 12:43:59 +02:00
|
|
|
if(session->aob.item->frame_cat == NGHTTP2_CAT_DATA &&
|
|
|
|
session->aob.framebufoff + sentlen > NGHTTP2_FRAME_HEAD_LENGTH) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_data *frame;
|
|
|
|
nghttp2_stream *stream;
|
2013-10-18 12:43:59 +02:00
|
|
|
uint16_t len;
|
|
|
|
if(session->aob.framebufoff < NGHTTP2_FRAME_HEAD_LENGTH) {
|
|
|
|
len = session->aob.framebufoff + sentlen - NGHTTP2_FRAME_HEAD_LENGTH;
|
|
|
|
} else {
|
|
|
|
len = sentlen;
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
frame = nghttp2_outbound_item_get_data_frame(session->aob.item);
|
2013-07-15 14:45:59 +02:00
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
if(stream && stream->remote_flow_control) {
|
2013-08-08 14:12:49 +02:00
|
|
|
stream->remote_window_size -= len;
|
2013-07-16 13:54:24 +02:00
|
|
|
}
|
|
|
|
if(session->remote_flow_control) {
|
2013-08-08 18:31:15 +02:00
|
|
|
session->remote_window_size -= len;
|
2012-02-25 16:12:32 +01:00
|
|
|
}
|
|
|
|
}
|
2013-10-18 12:43:59 +02:00
|
|
|
session->aob.framebufoff += sentlen;
|
2012-01-24 14:02:24 +01:00
|
|
|
if(session->aob.framebufoff == session->aob.framebuflen) {
|
|
|
|
/* Frame has completely sent */
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_session_after_frame_sent(session);
|
2012-01-26 17:17:40 +01:00
|
|
|
if(r < 0) {
|
2012-02-23 14:49:08 +01:00
|
|
|
/* FATAL */
|
2013-07-12 17:19:03 +02:00
|
|
|
assert(r < NGHTTP2_ERR_FATAL);
|
2012-01-26 17:17:40 +01:00
|
|
|
return r;
|
|
|
|
}
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
static ssize_t nghttp2_recv(nghttp2_session *session, uint8_t *buf, size_t len)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
|
|
|
ssize_t r;
|
|
|
|
r = session->callbacks.recv_callback
|
2012-03-17 15:39:38 +01:00
|
|
|
(session, buf, len, 0, session->user_data);
|
2012-01-24 14:02:24 +01:00
|
|
|
if(r > 0) {
|
2012-03-22 18:17:48 +01:00
|
|
|
if((size_t)r > len) {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
} else if(r < 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
if(r != NGHTTP2_ERR_WOULDBLOCK && r != NGHTTP2_ERR_EOF) {
|
|
|
|
r = NGHTTP2_ERR_CALLBACK_FAILURE;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-08-29 16:03:21 +02:00
|
|
|
static int nghttp2_session_call_on_request_recv
|
2013-07-12 17:19:03 +02:00
|
|
|
(nghttp2_session *session, int32_t stream_id)
|
2012-02-07 16:10:23 +01:00
|
|
|
{
|
|
|
|
if(session->callbacks.on_request_recv_callback) {
|
2013-08-29 16:03:21 +02:00
|
|
|
if(session->callbacks.on_request_recv_callback(session, stream_id,
|
|
|
|
session->user_data) != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
2012-02-07 16:10:23 +01:00
|
|
|
}
|
2013-08-29 16:03:21 +02:00
|
|
|
return 0;
|
2012-02-07 16:10:23 +01:00
|
|
|
}
|
|
|
|
|
2013-08-29 14:03:39 +02:00
|
|
|
static int nghttp2_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);
|
2013-09-28 10:59:24 +02:00
|
|
|
if(rv == NGHTTP2_ERR_PAUSE) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Checks whether received stream_id is valid.
|
|
|
|
* This function returns 1 if it succeeds, or 0.
|
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_session_is_new_peer_stream_id(nghttp2_session *session,
|
2012-01-25 13:31:28 +01:00
|
|
|
int32_t stream_id)
|
|
|
|
{
|
2013-09-05 16:17:16 +02:00
|
|
|
if(stream_id == 0 || session->last_recv_stream_id >= stream_id) {
|
2012-01-25 13:31:28 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(session->server) {
|
2013-09-05 16:17:16 +02:00
|
|
|
return stream_id % 2 == 1;
|
2012-01-25 13:31:28 +01:00
|
|
|
} else {
|
2013-09-05 16:17:16 +02:00
|
|
|
return stream_id % 2 == 0;
|
2012-01-25 13:31:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-15 14:11:42 +01:00
|
|
|
/*
|
2013-07-25 14:18:13 +02:00
|
|
|
* Validates received HEADERS frame |frame| with NGHTTP2_HCAT_REQUEST
|
|
|
|
* or NGHTTP2_HCAT_PUSH_RESPONSE category, which both opens new
|
|
|
|
* stream.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or non-zero
|
|
|
|
* nghttp2_error_code.
|
2012-01-25 13:31:28 +01:00
|
|
|
*/
|
2013-07-25 14:18:13 +02:00
|
|
|
static int nghttp2_session_validate_request_headers(nghttp2_session *session,
|
|
|
|
nghttp2_headers *frame)
|
2012-01-25 13:31:28 +01:00
|
|
|
{
|
2013-07-12 17:19:03 +02:00
|
|
|
if(nghttp2_session_is_incoming_concurrent_streams_max(session)) {
|
2013-07-15 14:45:59 +02:00
|
|
|
/* The spec does not clearly say what to do when max concurrent
|
2012-02-08 15:45:48 +01:00
|
|
|
streams number is reached. The mod_spdy sends
|
2013-07-12 17:19:03 +02:00
|
|
|
NGHTTP2_REFUSED_STREAM and we think it is reasonable. So we
|
2012-02-08 15:45:48 +01:00
|
|
|
follow it. */
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_REFUSED_STREAM;
|
2012-02-08 15:45:48 +01:00
|
|
|
}
|
2012-01-28 14:46:12 +01:00
|
|
|
return 0;
|
2012-01-25 13:31:28 +01:00
|
|
|
}
|
|
|
|
|
2013-07-21 11:23:50 +02:00
|
|
|
static int nghttp2_session_handle_parse_error(nghttp2_session *session,
|
|
|
|
nghttp2_frame_type type,
|
|
|
|
int lib_error_code,
|
|
|
|
nghttp2_error_code error_code)
|
|
|
|
{
|
|
|
|
if(session->callbacks.on_frame_recv_parse_error_callback) {
|
2013-08-29 16:07:07 +02:00
|
|
|
if(session->callbacks.on_frame_recv_parse_error_callback
|
|
|
|
(session,
|
|
|
|
type,
|
|
|
|
session->iframe.headbuf,
|
|
|
|
sizeof(session->iframe.headbuf),
|
|
|
|
session->iframe.buf,
|
|
|
|
session->iframe.buflen,
|
|
|
|
lib_error_code,
|
|
|
|
session->user_data) != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
2013-07-21 11:23:50 +02:00
|
|
|
}
|
|
|
|
return nghttp2_session_fail_session(session, error_code);
|
|
|
|
}
|
2012-02-15 14:11:42 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_session_handle_invalid_stream
|
|
|
|
(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
|
|
|
{
|
|
|
|
int r;
|
2013-07-21 11:26:29 +02:00
|
|
|
r = nghttp2_session_add_rst_stream(session, frame->hd.stream_id, error_code);
|
2012-01-25 13:31:28 +01:00
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
2013-07-21 11:20:23 +02:00
|
|
|
/*
|
|
|
|
* Handles invalid frame which causes connection error.
|
|
|
|
*/
|
|
|
|
static int nghttp2_session_handle_invalid_connection
|
|
|
|
(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
|
|
|
}
|
|
|
|
return nghttp2_session_fail_session(session, error_code);
|
|
|
|
}
|
|
|
|
|
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_error_code error_code;
|
|
|
|
nghttp2_stream *stream;
|
2013-07-21 11:40:47 +02:00
|
|
|
if(frame->hd.stream_id == 0) {
|
2013-07-22 17:33:47 +02:00
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2013-07-21 11:40:47 +02:00
|
|
|
}
|
2013-08-24 12:28:57 +02:00
|
|
|
/* Connection error if header continuation is employed for now */
|
|
|
|
if((frame->hd.flags & NGHTTP2_FLAG_END_HEADERS) == 0) {
|
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_INTERNAL_ERROR);
|
|
|
|
}
|
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. */
|
2012-01-28 11:22:38 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2013-07-21 11:20:23 +02:00
|
|
|
if(!nghttp2_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 */
|
2013-09-05 16:17:16 +02:00
|
|
|
return nghttp2_session_handle_invalid_connection(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;
|
|
|
|
error_code = nghttp2_session_validate_request_headers(session,
|
|
|
|
&frame->headers);
|
|
|
|
if(error_code != NGHTTP2_NO_ERROR) {
|
|
|
|
return nghttp2_session_handle_invalid_stream(session, frame, error_code);
|
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,
|
|
|
|
frame->hd.flags,
|
|
|
|
frame->headers.pri,
|
|
|
|
NGHTTP2_STREAM_OPENING,
|
|
|
|
NULL);
|
|
|
|
if(!stream) {
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
rv = nghttp2_session_call_on_frame_received(session, frame);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
2013-09-28 10:59:24 +02:00
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_RD);
|
2013-09-05 16:17:16 +02:00
|
|
|
rv = nghttp2_session_call_on_request_recv(session, frame->hd.stream_id);
|
|
|
|
}
|
|
|
|
/* Here we assume that stream is not shutdown in NGHTTP2_SHUT_WR */
|
|
|
|
return rv;
|
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) {
|
2013-07-22 17:33:47 +02:00
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2013-07-21 11:40:47 +02:00
|
|
|
}
|
2013-08-24 12:28:57 +02:00
|
|
|
/* Connection error if header continuation is employed for now */
|
|
|
|
if((frame->hd.flags & NGHTTP2_FLAG_END_HEADERS) == 0) {
|
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_INTERNAL_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.
|
|
|
|
*/
|
2013-07-24 18:49:05 +02:00
|
|
|
return nghttp2_session_handle_invalid_stream(session, frame,
|
|
|
|
NGHTTP2_STREAM_CLOSED);
|
2012-01-25 15:46:07 +01:00
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
stream->state = NGHTTP2_STREAM_OPENED;
|
|
|
|
rv = nghttp2_session_call_on_frame_received(session, frame);
|
|
|
|
if(rv != 0) {
|
|
|
|
return 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(rv != 0 && nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
2013-07-24 18:49:05 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
assert(!session->server && stream->state == NGHTTP2_STREAM_RESERVED);
|
|
|
|
if(frame->hd.stream_id == 0) {
|
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2012-01-25 15:46:07 +01:00
|
|
|
}
|
2013-08-24 12:28:57 +02:00
|
|
|
/* Connection error if header continuation is employed for now */
|
|
|
|
if((frame->hd.flags & NGHTTP2_FLAG_END_HEADERS) == 0) {
|
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_INTERNAL_ERROR);
|
|
|
|
}
|
2013-07-24 18:49:05 +02:00
|
|
|
if(session->goaway_flags) {
|
|
|
|
/* We don't accept new stream after GOAWAY is sent or received. */
|
|
|
|
return 0;
|
|
|
|
}
|
2013-07-25 14:18:13 +02:00
|
|
|
rv = nghttp2_session_validate_request_headers(session, &frame->headers);
|
2013-07-24 18:49:05 +02:00
|
|
|
if(rv != 0) {
|
|
|
|
return nghttp2_session_handle_invalid_stream(session, frame, rv);
|
|
|
|
}
|
|
|
|
nghttp2_stream_promise_fulfilled(stream);
|
|
|
|
++session->num_incoming_streams;
|
2013-09-28 10:59:24 +02:00
|
|
|
rv = nghttp2_session_call_on_frame_received(session, frame);
|
|
|
|
if(rv != 0) {
|
|
|
|
return 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(rv != 0 && nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
{
|
2013-07-15 14:45:59 +02:00
|
|
|
int r = 0;
|
2013-07-21 11:40:47 +02:00
|
|
|
if(frame->hd.stream_id == 0) {
|
2013-07-22 17:33:47 +02:00
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2013-07-21 11:40:47 +02:00
|
|
|
}
|
2013-08-24 12:28:57 +02:00
|
|
|
/* Connection error if header continuation is employed for now */
|
|
|
|
if((frame->hd.flags & NGHTTP2_FLAG_END_HEADERS) == 0) {
|
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_INTERNAL_ERROR);
|
|
|
|
}
|
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. */
|
2013-08-18 17:13:22 +02:00
|
|
|
return nghttp2_session_handle_invalid_connection(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.
|
|
|
|
*/
|
2013-09-05 16:17:16 +02:00
|
|
|
return nghttp2_session_handle_invalid_stream(session, frame,
|
|
|
|
NGHTTP2_STREAM_CLOSED);
|
2012-02-08 16:27:22 +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) {
|
|
|
|
r = nghttp2_session_call_on_frame_received(session, frame);
|
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_RD);
|
|
|
|
r = nghttp2_session_close_stream_if_shut_rdwr(session, stream);
|
|
|
|
if(r != 0 && nghttp2_is_fatal(r)) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
} 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. */
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return nghttp2_session_handle_invalid_stream(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* 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) {
|
|
|
|
r = nghttp2_session_call_on_frame_received(session, frame);
|
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
r = nghttp2_session_call_on_request_recv(session,
|
|
|
|
frame->hd.stream_id);
|
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_RD);
|
|
|
|
r = nghttp2_session_close_stream_if_shut_rdwr(session, stream);
|
|
|
|
if(r != 0 && nghttp2_is_fatal(r)) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
2012-02-02 15:19:01 +01:00
|
|
|
}
|
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)
|
|
|
|
{
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
if(frame->hd.stream_id == 0) {
|
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
2013-09-05 16:17:16 +02:00
|
|
|
if(!stream) {
|
|
|
|
return 0;
|
2013-07-22 17:11:39 +02:00
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
/* Only update priority on server side for now */
|
|
|
|
if(session->server) {
|
|
|
|
nghttp2_session_reprioritize_stream(session, stream,
|
|
|
|
frame->priority.pri);
|
|
|
|
}
|
|
|
|
return nghttp2_session_call_on_frame_received(session, frame);
|
2013-07-22 17:11:39 +02:00
|
|
|
}
|
|
|
|
|
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;
|
2013-07-21 11:40:47 +02:00
|
|
|
if(frame->hd.stream_id == 0) {
|
2013-07-22 17:33:47 +02:00
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2013-07-21 11:40:47 +02:00
|
|
|
}
|
2013-08-29 14:03:39 +02:00
|
|
|
rv = nghttp2_session_call_on_frame_received(session, frame);
|
|
|
|
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);
|
|
|
|
if(rv != 0 && nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2012-01-27 19:54:53 +01:00
|
|
|
return 0;
|
2012-01-27 15:22:27 +01:00
|
|
|
}
|
|
|
|
|
2013-08-08 17:58:52 +02:00
|
|
|
static int nghttp2_update_remote_initial_window_size_func
|
|
|
|
(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;
|
|
|
|
arg = (nghttp2_update_window_size_arg*)ptr;
|
|
|
|
stream = (nghttp2_stream*)entry;
|
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) {
|
2013-08-08 17:58:52 +02:00
|
|
|
return nghttp2_session_add_rst_stream(arg->session, stream->stream_id,
|
|
|
|
NGHTTP2_FLOW_CONTROL_ERROR);
|
2013-08-08 14:12:49 +02:00
|
|
|
}
|
2012-05-11 15:58:12 +02:00
|
|
|
/* If window size gets positive, push deferred DATA frame to
|
|
|
|
outbound queue. */
|
2013-07-16 13:54:24 +02:00
|
|
|
if(stream->deferred_data &&
|
|
|
|
(stream->deferred_flags & NGHTTP2_DEFERRED_FLOW_CONTROL) &&
|
2013-08-08 14:12:49 +02:00
|
|
|
stream->remote_window_size > 0 &&
|
2013-07-16 13:54:24 +02:00
|
|
|
(arg->session->remote_flow_control == 0 ||
|
2013-08-08 18:31:15 +02:00
|
|
|
arg->session->remote_window_size > 0)) {
|
2013-07-12 17:19:03 +02:00
|
|
|
rv = nghttp2_pq_push(&arg->session->ob_pq, stream->deferred_data);
|
2013-09-05 16:17:16 +02:00
|
|
|
if(rv != 0) {
|
2012-05-11 15:58:12 +02:00
|
|
|
/* FATAL */
|
2013-07-12 17:19:03 +02:00
|
|
|
assert(rv < NGHTTP2_ERR_FATAL);
|
2012-05-11 15:58:12 +02:00
|
|
|
return rv;
|
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
nghttp2_stream_detach_deferred_data(stream);
|
2012-05-11 15:58:12 +02:00
|
|
|
}
|
|
|
|
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
|
|
|
*/
|
2013-08-08 17:58:52 +02:00
|
|
|
static int nghttp2_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;
|
2012-05-11 15:58:12 +02:00
|
|
|
arg.session = session;
|
|
|
|
arg.new_window_size = new_initial_window_size;
|
|
|
|
arg.old_window_size =
|
2013-07-12 17:19:03 +02:00
|
|
|
session->remote_settings[NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE];
|
|
|
|
return nghttp2_map_each(&session->streams,
|
2013-08-08 17:58:52 +02:00
|
|
|
nghttp2_update_remote_initial_window_size_func,
|
|
|
|
&arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int nghttp2_update_local_initial_window_size_func
|
|
|
|
(nghttp2_map_entry *entry,
|
|
|
|
void *ptr)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
nghttp2_update_window_size_arg *arg;
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
arg = (nghttp2_update_window_size_arg*)ptr;
|
|
|
|
stream = (nghttp2_stream*)entry;
|
|
|
|
if(!stream->local_flow_control) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
rv = nghttp2_stream_update_local_initial_window_size(stream,
|
|
|
|
arg->new_window_size,
|
|
|
|
arg->old_window_size);
|
|
|
|
if(rv != 0) {
|
|
|
|
return nghttp2_session_add_rst_stream(arg->session, stream->stream_id,
|
|
|
|
NGHTTP2_FLOW_CONTROL_ERROR);
|
|
|
|
}
|
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.
|
|
|
|
*/
|
|
|
|
static int nghttp2_session_update_local_initial_window_size
|
|
|
|
(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,
|
|
|
|
nghttp2_update_local_initial_window_size_func,
|
2012-05-11 15:58:12 +02:00
|
|
|
&arg);
|
2012-03-09 16:10:11 +01:00
|
|
|
}
|
|
|
|
|
2013-07-28 12:05:51 +02:00
|
|
|
static int nghttp2_disable_remote_flow_control_func(nghttp2_map_entry *entry,
|
|
|
|
void *ptr)
|
2013-07-16 11:26:57 +02:00
|
|
|
{
|
|
|
|
nghttp2_session *session;
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
session = (nghttp2_session*)ptr;
|
|
|
|
stream = (nghttp2_stream*)entry;
|
|
|
|
stream->remote_flow_control = 0;
|
|
|
|
/* If DATA frame is deferred due to flow control, push it back to
|
|
|
|
outbound queue. */
|
|
|
|
if(stream->deferred_data &&
|
|
|
|
(stream->deferred_flags & NGHTTP2_DEFERRED_FLOW_CONTROL)) {
|
|
|
|
int rv;
|
|
|
|
rv = nghttp2_pq_push(&session->ob_pq, stream->deferred_data);
|
|
|
|
if(rv == 0) {
|
|
|
|
nghttp2_stream_detach_deferred_data(stream);
|
|
|
|
} else {
|
|
|
|
/* FATAL */
|
|
|
|
assert(rv < NGHTTP2_ERR_FATAL);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-07-28 12:05:51 +02:00
|
|
|
* Disable remote side connection-level flow control and stream-level
|
|
|
|
* flow control of existing streams.
|
2013-10-27 11:22:51 +01:00
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of negative error codes.
|
|
|
|
*
|
|
|
|
* The error code is always FATAL.
|
2013-07-16 11:26:57 +02:00
|
|
|
*/
|
2013-07-28 12:05:51 +02:00
|
|
|
static int nghttp2_session_disable_remote_flow_control
|
|
|
|
(nghttp2_session *session)
|
2013-07-16 11:26:57 +02:00
|
|
|
{
|
|
|
|
session->remote_flow_control = 0;
|
|
|
|
return nghttp2_map_each(&session->streams,
|
2013-07-28 12:05:51 +02:00
|
|
|
nghttp2_disable_remote_flow_control_func, session);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int nghttp2_disable_local_flow_control_func(nghttp2_map_entry *entry,
|
|
|
|
void *ptr)
|
|
|
|
{
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
stream = (nghttp2_stream*)entry;
|
|
|
|
stream->local_flow_control = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Disable stream-level flow control in local side of existing
|
|
|
|
* streams.
|
|
|
|
*/
|
|
|
|
static void nghttp2_session_disable_local_flow_control
|
|
|
|
(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
session->local_flow_control = 0;
|
|
|
|
rv = nghttp2_map_each(&session->streams,
|
|
|
|
nghttp2_disable_local_flow_control_func, NULL);
|
|
|
|
assert(rv == 0);
|
2013-07-16 11:26:57 +02:00
|
|
|
}
|
|
|
|
|
2013-10-27 11:22:51 +01:00
|
|
|
/*
|
|
|
|
* Apply SETTINGS values |iv| having |niv| elements to the local
|
|
|
|
* settings. SETTINGS_MAX_CONCURRENT_STREAMS is not applied here
|
|
|
|
* because it has been already applied on transmission of SETTINGS
|
|
|
|
* frame.
|
|
|
|
*
|
|
|
|
* 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-07-28 12:05:51 +02:00
|
|
|
uint8_t old_flow_control =
|
|
|
|
session->local_settings[NGHTTP2_SETTINGS_FLOW_CONTROL_OPTIONS];
|
2013-08-08 17:58:52 +02:00
|
|
|
uint8_t new_flow_control = old_flow_control;
|
|
|
|
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;
|
|
|
|
case NGHTTP2_SETTINGS_FLOW_CONTROL_OPTIONS:
|
2013-08-08 17:58:52 +02:00
|
|
|
new_flow_control = iv[i].value;
|
2013-10-27 11:22:51 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(header_table_size_seen) {
|
|
|
|
if(header_table_size < 0 ||
|
|
|
|
header_table_size > NGHTTP2_MAX_HEADER_TABLE_SIZE) {
|
|
|
|
return NGHTTP2_ERR_HEADER_COMP;
|
|
|
|
}
|
|
|
|
rv = nghttp2_hd_change_table_size(&session->hd_inflater,
|
|
|
|
header_table_size);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2013-08-08 17:58:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!old_flow_control && !new_flow_control && new_initial_window_size != -1) {
|
|
|
|
rv = nghttp2_session_update_local_initial_window_size
|
|
|
|
(session,
|
|
|
|
new_initial_window_size,
|
|
|
|
session->local_settings[NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE]);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
2012-03-10 10:41:01 +01:00
|
|
|
for(i = 0; i < niv; ++i) {
|
2013-10-27 11:22:51 +01:00
|
|
|
/* SETTINGS_MAX_CONCURRENT_STREAMS has already been applied on
|
|
|
|
transmission of the SETTINGS frame. */
|
|
|
|
if(iv[i].settings_id > 0 && iv[i].settings_id <= NGHTTP2_SETTINGS_MAX &&
|
|
|
|
iv[i].settings_id != NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS) {
|
2013-08-17 16:41:04 +02:00
|
|
|
session->local_settings[iv[i].settings_id] = iv[i].value;
|
|
|
|
}
|
2012-03-10 10:41:01 +01:00
|
|
|
}
|
2013-07-28 12:05:51 +02:00
|
|
|
if(old_flow_control == 0 &&
|
|
|
|
session->local_settings[NGHTTP2_SETTINGS_FLOW_CONTROL_OPTIONS]) {
|
|
|
|
nghttp2_session_disable_local_flow_control(session);
|
|
|
|
}
|
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;
|
2013-07-12 17:19:03 +02:00
|
|
|
int check[NGHTTP2_SETTINGS_MAX+1];
|
2013-07-21 11:40:47 +02:00
|
|
|
if(frame->hd.stream_id != 0) {
|
2013-07-22 17:33:47 +02:00
|
|
|
return nghttp2_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) {
|
|
|
|
return nghttp2_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) {
|
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
error_code);
|
|
|
|
}
|
|
|
|
return nghttp2_session_call_on_frame_received(session, frame);
|
|
|
|
}
|
2012-03-09 16:10:11 +01:00
|
|
|
/* Check ID/value pairs and persist them if necessary. */
|
|
|
|
memset(check, 0, sizeof(check));
|
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];
|
2013-08-17 16:41:04 +02:00
|
|
|
/* The spec says the settings values are processed in the order
|
|
|
|
they appear in the payload. In other words, if the multiple
|
|
|
|
values for the same ID were found, use the last one and ignore
|
|
|
|
the rest. */
|
|
|
|
if(entry->settings_id > NGHTTP2_SETTINGS_MAX || entry->settings_id <= 0 ||
|
2012-03-09 16:10:11 +01:00
|
|
|
check[entry->settings_id] == 1) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
check[entry->settings_id] = 1;
|
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:
|
|
|
|
if(entry->value > NGHTTP2_MAX_HEADER_TABLE_SIZE) {
|
|
|
|
return nghttp2_session_handle_invalid_connection
|
|
|
|
(session, frame, NGHTTP2_COMPRESSION_ERROR);
|
|
|
|
}
|
|
|
|
rv = nghttp2_hd_change_table_size(&session->hd_deflater, entry->value);
|
|
|
|
if(rv != 0) {
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
} else {
|
|
|
|
return nghttp2_session_handle_invalid_connection
|
|
|
|
(session, frame, NGHTTP2_COMPRESSION_ERROR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2013-07-16 11:26:57 +02:00
|
|
|
case NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE:
|
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) */
|
2013-08-08 14:12:49 +02:00
|
|
|
if(entry->value <= NGHTTP2_MAX_WINDOW_SIZE) {
|
2013-08-08 17:58:52 +02:00
|
|
|
rv = nghttp2_session_update_remote_initial_window_size
|
|
|
|
(session, entry->value);
|
2012-05-11 15:58:12 +02:00
|
|
|
if(rv != 0) {
|
2013-08-08 14:12:49 +02:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
} else {
|
|
|
|
return nghttp2_session_handle_invalid_connection
|
|
|
|
(session, frame, NGHTTP2_FLOW_CONTROL_ERROR);
|
|
|
|
}
|
2012-05-11 15:58:12 +02:00
|
|
|
}
|
2013-07-15 17:15:04 +02:00
|
|
|
} else {
|
2013-07-21 11:20:23 +02:00
|
|
|
return nghttp2_session_handle_invalid_connection
|
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
2012-03-09 16:10:11 +01:00
|
|
|
}
|
2013-07-16 11:26:57 +02:00
|
|
|
break;
|
|
|
|
case NGHTTP2_SETTINGS_FLOW_CONTROL_OPTIONS:
|
2013-07-26 16:11:41 +02:00
|
|
|
if(entry->value & 0x1) {
|
2013-07-16 13:54:24 +02:00
|
|
|
if(session->remote_settings[entry->settings_id] == 0) {
|
2013-07-28 12:05:51 +02:00
|
|
|
rv = nghttp2_session_disable_remote_flow_control(session);
|
2013-07-16 13:54:24 +02:00
|
|
|
if(rv != 0) {
|
2013-10-27 11:22:51 +01:00
|
|
|
/* FATAL */
|
|
|
|
assert(rv < NGHTTP2_ERR_FATAL);
|
2013-07-16 13:54:24 +02:00
|
|
|
return rv;
|
|
|
|
}
|
2013-07-16 11:26:57 +02:00
|
|
|
}
|
2013-07-16 13:54:24 +02:00
|
|
|
} else if(session->remote_settings[entry->settings_id] == 1) {
|
|
|
|
/* Re-enabling flow control is subject to connection-level
|
|
|
|
error(?) */
|
2013-07-21 11:20:23 +02:00
|
|
|
return nghttp2_session_handle_invalid_connection
|
|
|
|
(session, frame, NGHTTP2_FLOW_CONTROL_ERROR);
|
2013-07-16 11:26:57 +02:00
|
|
|
}
|
|
|
|
break;
|
2012-03-09 16:10:11 +01:00
|
|
|
}
|
|
|
|
session->remote_settings[entry->settings_id] = entry->value;
|
|
|
|
}
|
2013-10-27 11:22:51 +01:00
|
|
|
if(!noack) {
|
|
|
|
rv = nghttp2_session_add_settings(session, NGHTTP2_FLAG_ACK, NULL, 0);
|
|
|
|
if(rv != 0) {
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
return nghttp2_session_handle_invalid_connection
|
|
|
|
(session, frame, NGHTTP2_INTERNAL_ERROR);
|
|
|
|
}
|
|
|
|
}
|
2013-08-29 14:03:39 +02:00
|
|
|
return nghttp2_session_call_on_frame_received(session, frame);
|
2012-01-31 17:12:26 +01:00
|
|
|
}
|
|
|
|
|
2013-07-24 18:49:05 +02:00
|
|
|
int nghttp2_session_on_push_promise_received(nghttp2_session *session,
|
|
|
|
nghttp2_frame *frame)
|
|
|
|
{
|
|
|
|
nghttp2_stream *stream;
|
2013-09-05 16:17:16 +02:00
|
|
|
nghttp2_stream *promised_stream;
|
2013-07-24 18:49:05 +02:00
|
|
|
if(session->server || frame->hd.stream_id == 0) {
|
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
2013-08-24 12:28:57 +02:00
|
|
|
/* Connection error if header continuation is employed for now */
|
|
|
|
if((frame->hd.flags & NGHTTP2_FLAG_END_PUSH_PROMISE) == 0) {
|
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_INTERNAL_ERROR);
|
|
|
|
}
|
2013-07-24 18:49:05 +02:00
|
|
|
if(session->goaway_flags) {
|
|
|
|
/* We just dicard PUSH_PROMISE after GOAWAY is sent or
|
|
|
|
received. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(!nghttp2_session_is_new_peer_stream_id
|
|
|
|
(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. */
|
2013-07-24 18:49:05 +02:00
|
|
|
return nghttp2_session_handle_invalid_connection
|
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
session->last_recv_stream_id = frame->push_promise.promised_stream_id;
|
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
2013-09-05 16:17:16 +02:00
|
|
|
if(!stream) {
|
|
|
|
return nghttp2_session_add_rst_stream
|
|
|
|
(session,
|
|
|
|
frame->push_promise.promised_stream_id,
|
|
|
|
NGHTTP2_REFUSED_STREAM);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!nghttp2_session_is_my_stream_id(session, frame->hd.stream_id)) {
|
|
|
|
return nghttp2_session_handle_invalid_connection(session, frame,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
if(stream->shut_flags & NGHTTP2_SHUT_RD) {
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
return nghttp2_session_add_rst_stream
|
|
|
|
(session,
|
|
|
|
frame->push_promise.promised_stream_id,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
if(stream->state == NGHTTP2_STREAM_CLOSING) {
|
2013-07-24 18:49:05 +02:00
|
|
|
return nghttp2_session_add_rst_stream
|
|
|
|
(session,
|
|
|
|
frame->push_promise.promised_stream_id,
|
|
|
|
NGHTTP2_REFUSED_STREAM);
|
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
promised_stream = nghttp2_session_open_stream
|
|
|
|
(session,
|
|
|
|
frame->push_promise.promised_stream_id,
|
|
|
|
frame->hd.flags,
|
|
|
|
nghttp2_pushed_stream_pri(stream),
|
|
|
|
NGHTTP2_STREAM_RESERVED,
|
|
|
|
NULL);
|
|
|
|
if(!promised_stream) {
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
return nghttp2_session_call_on_frame_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
|
|
|
{
|
|
|
|
int r = 0;
|
2013-07-21 11:40:47 +02:00
|
|
|
if(frame->hd.stream_id != 0) {
|
2013-07-22 17:33:47 +02:00
|
|
|
return nghttp2_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 */
|
2013-10-27 11:22:51 +01:00
|
|
|
r = nghttp2_session_add_ping(session, NGHTTP2_FLAG_ACK,
|
2013-07-15 14:45:59 +02:00
|
|
|
frame->ping.opaque_data);
|
2013-08-29 14:03:39 +02:00
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
|
|
|
}
|
2012-01-27 15:05:29 +01:00
|
|
|
}
|
2013-08-29 14:03:39 +02:00
|
|
|
return nghttp2_session_call_on_frame_received(session, frame);
|
2012-01-27 15:05:29 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
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;
|
2013-08-29 14:03:39 +02:00
|
|
|
return nghttp2_session_call_on_frame_received(session, frame);
|
2012-01-28 11:22:38 +01:00
|
|
|
}
|
|
|
|
|
2013-07-16 13:54:24 +02:00
|
|
|
static int nghttp2_push_back_deferred_data_func(nghttp2_map_entry *entry,
|
|
|
|
void *ptr)
|
|
|
|
{
|
|
|
|
nghttp2_session *session;
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
session = (nghttp2_session*)ptr;
|
|
|
|
stream = (nghttp2_stream*)entry;
|
|
|
|
/* If DATA frame is deferred due to flow control, push it back to
|
|
|
|
outbound queue. */
|
|
|
|
if(stream->deferred_data &&
|
|
|
|
(stream->deferred_flags & NGHTTP2_DEFERRED_FLOW_CONTROL) &&
|
2013-08-08 14:12:49 +02:00
|
|
|
(stream->remote_flow_control == 0 || stream->remote_window_size > 0)) {
|
2013-07-16 13:54:24 +02:00
|
|
|
int rv;
|
|
|
|
rv = nghttp2_pq_push(&session->ob_pq, stream->deferred_data);
|
|
|
|
if(rv == 0) {
|
|
|
|
nghttp2_stream_detach_deferred_data(stream);
|
|
|
|
} else {
|
|
|
|
/* FATAL */
|
|
|
|
assert(rv < NGHTTP2_ERR_FATAL);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Push back deferred DATA frames to queue if they are deferred due to
|
|
|
|
* connection-level flow control.
|
|
|
|
*/
|
|
|
|
static int nghttp2_session_push_back_deferred_data(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
return nghttp2_map_each(&session->streams,
|
|
|
|
nghttp2_push_back_deferred_data_func, session);
|
|
|
|
}
|
|
|
|
|
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(session->remote_flow_control == 0) {
|
|
|
|
/* Disabling flow control by sending SETTINGS and receiving
|
|
|
|
WINDOW_UPDATE are asynchronous, so it is hard to determine
|
|
|
|
that the peer is misbehaving or not without measuring
|
|
|
|
RTT. For now, we just ignore such frames. */
|
|
|
|
return nghttp2_session_call_on_frame_received(session, frame);
|
|
|
|
}
|
|
|
|
if(NGHTTP2_MAX_WINDOW_SIZE - frame->window_update.window_size_increment <
|
|
|
|
session->remote_window_size) {
|
|
|
|
return nghttp2_session_handle_invalid_connection
|
|
|
|
(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) {
|
2013-09-28 10:59:24 +02:00
|
|
|
rv = nghttp2_session_push_back_deferred_data(session);
|
|
|
|
if(rv != 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2013-09-05 16:21:00 +02:00
|
|
|
}
|
2013-09-28 10:59:24 +02:00
|
|
|
return nghttp2_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) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(stream->state == NGHTTP2_STREAM_RESERVED) {
|
|
|
|
return nghttp2_session_handle_invalid_connection
|
|
|
|
(session, frame, NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
if(stream->remote_flow_control == 0) {
|
|
|
|
/* Same reason with connection-level flow control */
|
|
|
|
return nghttp2_session_call_on_frame_received(session, frame);
|
|
|
|
}
|
|
|
|
if(NGHTTP2_MAX_WINDOW_SIZE - frame->window_update.window_size_increment <
|
|
|
|
stream->remote_window_size) {
|
|
|
|
return nghttp2_session_handle_invalid_stream(session, frame,
|
|
|
|
NGHTTP2_FLOW_CONTROL_ERROR);
|
|
|
|
}
|
|
|
|
stream->remote_window_size += frame->window_update.window_size_increment;
|
|
|
|
if(stream->remote_window_size > 0 &&
|
|
|
|
(session->remote_flow_control == 0 ||
|
|
|
|
session->remote_window_size > 0) &&
|
|
|
|
stream->deferred_data != NULL &&
|
|
|
|
(stream->deferred_flags & NGHTTP2_DEFERRED_FLOW_CONTROL)) {
|
|
|
|
rv = nghttp2_pq_push(&session->ob_pq, stream->deferred_data);
|
2013-08-29 14:03:39 +02:00
|
|
|
if(rv != 0) {
|
2013-09-05 16:21:00 +02:00
|
|
|
/* FATAL */
|
|
|
|
assert(rv < NGHTTP2_ERR_FATAL);
|
2013-08-29 14:03:39 +02:00
|
|
|
return rv;
|
|
|
|
}
|
2013-09-05 16:21:00 +02:00
|
|
|
nghttp2_stream_detach_deferred_data(stream);
|
|
|
|
}
|
|
|
|
return nghttp2_session_call_on_frame_received(session, frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-28 16:32:37 +02:00
|
|
|
static int get_error_code_from_lib_error_code(int lib_error_code)
|
2012-05-25 06:49:18 +02:00
|
|
|
{
|
2013-07-15 14:45:59 +02:00
|
|
|
switch(lib_error_code) {
|
2013-08-28 16:32:37 +02:00
|
|
|
case NGHTTP2_ERR_HEADER_COMP:
|
|
|
|
return NGHTTP2_COMPRESSION_ERROR;
|
2012-05-25 06:49:18 +02:00
|
|
|
default:
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_PROTOCOL_ERROR;
|
2012-05-25 06:49:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-28 10:59:24 +02:00
|
|
|
/* For errors, this function returns NGHTTP2_ERR_PAUSE, or FATAL
|
|
|
|
ones. */
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_session_process_ctrl_frame(nghttp2_session *session)
|
2012-01-25 13:31:28 +01:00
|
|
|
{
|
|
|
|
int r = 0;
|
2012-01-24 14:02:24 +01:00
|
|
|
uint16_t type;
|
2013-09-28 10:59:24 +02:00
|
|
|
nghttp2_frame *frame = &session->iframe.frame;
|
2013-07-15 14:45:59 +02:00
|
|
|
type = session->iframe.headbuf[2];
|
2012-01-24 14:02:24 +01:00
|
|
|
switch(type) {
|
2013-07-15 14:45:59 +02:00
|
|
|
case NGHTTP2_HEADERS:
|
2012-05-25 03:46:40 +02:00
|
|
|
if(session->iframe.error_code == 0) {
|
2013-09-28 10:59:24 +02:00
|
|
|
r = nghttp2_frame_unpack_headers(&frame->headers,
|
2013-07-15 14:45:59 +02:00
|
|
|
session->iframe.headbuf,
|
|
|
|
sizeof(session->iframe.headbuf),
|
|
|
|
session->iframe.buf,
|
|
|
|
session->iframe.buflen,
|
2013-07-19 17:08:14 +02:00
|
|
|
&session->hd_inflater);
|
2013-07-12 17:19:03 +02:00
|
|
|
} else if(session->iframe.error_code == NGHTTP2_ERR_FRAME_TOO_LARGE) {
|
2013-07-15 14:45:59 +02:00
|
|
|
r = nghttp2_frame_unpack_headers_without_nv
|
2013-09-28 10:59:24 +02:00
|
|
|
(&frame->headers,
|
2012-05-25 06:49:18 +02:00
|
|
|
session->iframe.headbuf, sizeof(session->iframe.headbuf),
|
|
|
|
session->iframe.buf, session->iframe.buflen);
|
|
|
|
if(r == 0) {
|
|
|
|
r = session->iframe.error_code;
|
|
|
|
}
|
2012-05-25 03:46:40 +02:00
|
|
|
} else {
|
|
|
|
r = session->iframe.error_code;
|
|
|
|
}
|
2012-01-24 14:02:24 +01:00
|
|
|
if(r == 0) {
|
2013-07-24 18:49:05 +02:00
|
|
|
nghttp2_stream *stream;
|
2013-09-28 10:59:24 +02:00
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
2013-07-24 18:49:05 +02:00
|
|
|
if(stream) {
|
2013-09-28 10:59:24 +02:00
|
|
|
if(nghttp2_session_is_my_stream_id(session, frame->hd.stream_id)) {
|
2013-07-15 14:45:59 +02:00
|
|
|
if(stream->state == NGHTTP2_STREAM_OPENING) {
|
2013-09-28 10:59:24 +02:00
|
|
|
frame->headers.cat = NGHTTP2_HCAT_RESPONSE;
|
2013-07-25 14:07:38 +02:00
|
|
|
r = nghttp2_session_on_response_headers_received
|
2013-09-28 10:59:24 +02:00
|
|
|
(session, frame, stream);
|
2013-07-15 14:45:59 +02:00
|
|
|
} else {
|
2013-09-28 10:59:24 +02:00
|
|
|
frame->headers.cat = NGHTTP2_HCAT_HEADERS;
|
|
|
|
r = nghttp2_session_on_headers_received(session, frame, stream);
|
2013-07-15 14:45:59 +02:00
|
|
|
}
|
2013-07-24 18:49:05 +02:00
|
|
|
} else if(!session->server &&
|
|
|
|
stream->state == NGHTTP2_STREAM_RESERVED) {
|
2013-09-28 10:59:24 +02:00
|
|
|
frame->headers.cat = NGHTTP2_HCAT_PUSH_RESPONSE;
|
2013-07-25 14:07:38 +02:00
|
|
|
r = nghttp2_session_on_push_response_headers_received
|
2013-09-28 10:59:24 +02:00
|
|
|
(session, frame, stream);
|
2013-07-15 14:45:59 +02:00
|
|
|
} else {
|
2013-09-28 10:59:24 +02:00
|
|
|
frame->headers.cat = NGHTTP2_HCAT_HEADERS;
|
|
|
|
r = nghttp2_session_on_headers_received(session, frame, stream);
|
2013-07-15 14:45:59 +02:00
|
|
|
}
|
|
|
|
} else {
|
2013-09-28 10:59:24 +02:00
|
|
|
frame->headers.cat = NGHTTP2_HCAT_REQUEST;
|
|
|
|
r = nghttp2_session_on_request_headers_received(session, frame);
|
|
|
|
}
|
|
|
|
if(r != NGHTTP2_ERR_PAUSE) {
|
|
|
|
nghttp2_frame_headers_free(&frame->headers);
|
|
|
|
nghttp2_hd_end_headers(&session->hd_inflater);
|
2013-07-12 17:19:03 +02:00
|
|
|
}
|
|
|
|
} else if(nghttp2_is_non_fatal(r)) {
|
2013-08-28 16:32:37 +02:00
|
|
|
r = nghttp2_session_handle_parse_error
|
|
|
|
(session, type, r, get_error_code_from_lib_error_code(r));
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
break;
|
2013-07-22 17:11:39 +02:00
|
|
|
case NGHTTP2_PRIORITY:
|
2013-09-28 10:59:24 +02:00
|
|
|
r = nghttp2_frame_unpack_priority(&frame->priority,
|
2013-07-22 17:11:39 +02:00
|
|
|
session->iframe.headbuf,
|
|
|
|
sizeof(session->iframe.headbuf),
|
|
|
|
session->iframe.buf,
|
|
|
|
session->iframe.buflen);
|
|
|
|
if(r == 0) {
|
2013-09-28 10:59:24 +02:00
|
|
|
r = nghttp2_session_on_priority_received(session, frame);
|
|
|
|
if(r != NGHTTP2_ERR_PAUSE) {
|
|
|
|
nghttp2_frame_priority_free(&frame->priority);
|
|
|
|
}
|
2013-07-22 17:11:39 +02:00
|
|
|
} else if(nghttp2_is_non_fatal(r)) {
|
|
|
|
r = nghttp2_session_handle_parse_error(session, type, r,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_RST_STREAM:
|
2013-09-28 10:59:24 +02:00
|
|
|
r = nghttp2_frame_unpack_rst_stream(&frame->rst_stream,
|
2012-01-27 15:22:27 +01:00
|
|
|
session->iframe.headbuf,
|
|
|
|
sizeof(session->iframe.headbuf),
|
|
|
|
session->iframe.buf,
|
2012-05-25 03:46:40 +02:00
|
|
|
session->iframe.buflen);
|
2012-01-27 15:22:27 +01:00
|
|
|
if(r == 0) {
|
2013-09-28 10:59:24 +02:00
|
|
|
r = nghttp2_session_on_rst_stream_received(session, frame);
|
|
|
|
if(r != NGHTTP2_ERR_PAUSE) {
|
|
|
|
nghttp2_frame_rst_stream_free(&frame->rst_stream);
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
} else if(nghttp2_is_non_fatal(r)) {
|
2013-07-21 11:23:50 +02:00
|
|
|
r = nghttp2_session_handle_parse_error(session, type, r,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2012-01-27 15:22:27 +01:00
|
|
|
}
|
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_SETTINGS:
|
2013-09-28 10:59:24 +02:00
|
|
|
r = nghttp2_frame_unpack_settings(&frame->settings,
|
2012-01-31 17:12:26 +01:00
|
|
|
session->iframe.headbuf,
|
|
|
|
sizeof(session->iframe.headbuf),
|
|
|
|
session->iframe.buf,
|
2012-05-25 03:46:40 +02:00
|
|
|
session->iframe.buflen);
|
2012-01-31 17:12:26 +01:00
|
|
|
if(r == 0) {
|
2013-10-27 11:22:51 +01:00
|
|
|
r = nghttp2_session_on_settings_received(session, frame, 0 /* ACK */);
|
2013-09-28 10:59:24 +02:00
|
|
|
if(r != NGHTTP2_ERR_PAUSE) {
|
|
|
|
nghttp2_frame_settings_free(&frame->settings);
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
} else if(nghttp2_is_non_fatal(r)) {
|
2013-07-21 11:23:50 +02:00
|
|
|
r = nghttp2_session_handle_parse_error(session, type, r,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2012-01-31 17:12:26 +01:00
|
|
|
}
|
|
|
|
break;
|
2013-07-24 18:49:05 +02:00
|
|
|
case NGHTTP2_PUSH_PROMISE:
|
|
|
|
if(session->iframe.error_code == 0) {
|
2013-09-28 10:59:24 +02:00
|
|
|
r = nghttp2_frame_unpack_push_promise(&frame->push_promise,
|
2013-07-24 18:49:05 +02:00
|
|
|
session->iframe.headbuf,
|
|
|
|
sizeof(session->iframe.headbuf),
|
|
|
|
session->iframe.buf,
|
|
|
|
session->iframe.buflen,
|
|
|
|
&session->hd_inflater);
|
|
|
|
} else {
|
|
|
|
r = session->iframe.error_code;
|
|
|
|
}
|
|
|
|
if(r == 0) {
|
2013-09-28 10:59:24 +02:00
|
|
|
r = nghttp2_session_on_push_promise_received(session, frame);
|
|
|
|
if(r != NGHTTP2_ERR_PAUSE) {
|
|
|
|
nghttp2_frame_push_promise_free(&frame->push_promise);
|
|
|
|
nghttp2_hd_end_headers(&session->hd_inflater);
|
|
|
|
}
|
2013-07-24 18:49:05 +02:00
|
|
|
} else if(nghttp2_is_non_fatal(r)) {
|
2013-08-28 16:32:37 +02:00
|
|
|
r = nghttp2_session_handle_parse_error
|
|
|
|
(session, type, r, get_error_code_from_lib_error_code(r));
|
2013-07-24 18:49:05 +02:00
|
|
|
}
|
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_PING:
|
2013-09-28 10:59:24 +02:00
|
|
|
r = nghttp2_frame_unpack_ping(&frame->ping,
|
2012-01-27 15:05:29 +01:00
|
|
|
session->iframe.headbuf,
|
|
|
|
sizeof(session->iframe.headbuf),
|
|
|
|
session->iframe.buf,
|
2012-05-25 03:46:40 +02:00
|
|
|
session->iframe.buflen);
|
2012-01-27 15:05:29 +01:00
|
|
|
if(r == 0) {
|
2013-09-28 10:59:24 +02:00
|
|
|
r = nghttp2_session_on_ping_received(session, frame);
|
|
|
|
if(r != NGHTTP2_ERR_PAUSE) {
|
|
|
|
nghttp2_frame_ping_free(&frame->ping);
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
} else if(nghttp2_is_non_fatal(r)) {
|
2013-07-21 11:23:50 +02:00
|
|
|
r = nghttp2_session_handle_parse_error(session, type, r,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2012-01-27 15:05:29 +01:00
|
|
|
}
|
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_GOAWAY:
|
2013-09-28 10:59:24 +02:00
|
|
|
r = nghttp2_frame_unpack_goaway(&frame->goaway,
|
2012-01-28 11:22:38 +01:00
|
|
|
session->iframe.headbuf,
|
|
|
|
sizeof(session->iframe.headbuf),
|
|
|
|
session->iframe.buf,
|
2012-05-25 03:46:40 +02:00
|
|
|
session->iframe.buflen);
|
2012-01-28 11:22:38 +01:00
|
|
|
if(r == 0) {
|
2013-09-28 10:59:24 +02:00
|
|
|
r = nghttp2_session_on_goaway_received(session, frame);
|
|
|
|
if(r != NGHTTP2_ERR_PAUSE) {
|
|
|
|
nghttp2_frame_goaway_free(&frame->goaway);
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
} else if(nghttp2_is_non_fatal(r)) {
|
2013-07-21 11:23:50 +02:00
|
|
|
r = nghttp2_session_handle_parse_error(session, type, r,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2012-01-27 11:10:13 +01:00
|
|
|
}
|
|
|
|
break;
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_WINDOW_UPDATE:
|
2013-09-28 10:59:24 +02:00
|
|
|
r = nghttp2_frame_unpack_window_update(&frame->window_update,
|
2012-02-25 16:12:32 +01:00
|
|
|
session->iframe.headbuf,
|
|
|
|
sizeof(session->iframe.headbuf),
|
|
|
|
session->iframe.buf,
|
2012-05-25 03:46:40 +02:00
|
|
|
session->iframe.buflen);
|
2012-02-25 16:12:32 +01:00
|
|
|
if(r == 0) {
|
2013-09-28 10:59:24 +02:00
|
|
|
r = nghttp2_session_on_window_update_received(session, frame);
|
|
|
|
if(r != NGHTTP2_ERR_PAUSE) {
|
|
|
|
nghttp2_frame_window_update_free(&frame->window_update);
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
} else if(nghttp2_is_non_fatal(r)) {
|
2013-07-21 11:23:50 +02:00
|
|
|
r = nghttp2_session_handle_parse_error(session, type, r,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
2012-04-05 18:45:39 +02:00
|
|
|
}
|
|
|
|
break;
|
2012-05-09 15:41:08 +02:00
|
|
|
default:
|
|
|
|
/* Unknown frame */
|
2013-07-15 14:45:59 +02:00
|
|
|
if(session->callbacks.on_unknown_frame_recv_callback) {
|
2013-08-29 16:10:18 +02:00
|
|
|
if(session->callbacks.on_unknown_frame_recv_callback
|
|
|
|
(session,
|
|
|
|
session->iframe.headbuf,
|
|
|
|
sizeof(session->iframe.headbuf),
|
|
|
|
session->iframe.buf,
|
|
|
|
session->iframe.buflen,
|
|
|
|
session->user_data) != 0) {
|
|
|
|
r = NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
2012-05-09 15:41:08 +02:00
|
|
|
}
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2013-09-28 10:59:24 +02:00
|
|
|
if(r == NGHTTP2_ERR_PAUSE) {
|
|
|
|
session->iframe.error_code = NGHTTP2_ERR_PAUSE;
|
|
|
|
return r;
|
|
|
|
} else if(nghttp2_is_fatal(r)) {
|
2012-01-25 13:31:28 +01:00
|
|
|
return r;
|
2012-01-25 15:46:07 +01:00
|
|
|
} else {
|
|
|
|
return 0;
|
2012-01-25 13:31:28 +01:00
|
|
|
}
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_on_data_received(nghttp2_session *session,
|
2013-07-15 14:45:59 +02:00
|
|
|
uint16_t length, uint8_t flags,
|
2012-01-29 08:27:00 +01:00
|
|
|
int32_t stream_id)
|
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;
|
2013-07-15 14:45:59 +02: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. */
|
|
|
|
return nghttp2_session_fail_session(session, NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
2013-09-05 16:17:16 +02:00
|
|
|
if(!stream) {
|
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
if(stream->state == NGHTTP2_STREAM_RESERVED) {
|
|
|
|
/* reserved and receiving DATA is connection error */
|
|
|
|
return nghttp2_session_fail_session(session, NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
if(stream->shut_flags & NGHTTP2_SHUT_RD) {
|
|
|
|
/* 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.
|
|
|
|
*/
|
|
|
|
if(stream->state != NGHTTP2_STREAM_CLOSING) {
|
|
|
|
return nghttp2_session_add_rst_stream(session, stream_id,
|
|
|
|
NGHTTP2_STREAM_CLOSED);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(nghttp2_session_is_my_stream_id(session, stream_id)) {
|
|
|
|
if(stream->state == NGHTTP2_STREAM_OPENED) {
|
|
|
|
if(session->callbacks.on_data_recv_callback) {
|
|
|
|
if(session->callbacks.on_data_recv_callback
|
|
|
|
(session, length, flags, stream_id, session->user_data) != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2012-02-07 16:10:23 +01:00
|
|
|
}
|
2012-01-28 14:46:12 +01:00
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
} else if(stream->state != NGHTTP2_STREAM_CLOSING) {
|
|
|
|
return nghttp2_session_add_rst_stream(session, stream_id,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
}
|
|
|
|
} else if(stream->state != NGHTTP2_STREAM_CLOSING) {
|
|
|
|
/* It is OK if this is remote peer initiated stream and we did
|
|
|
|
not receive END_STREAM unless stream is in
|
|
|
|
NGHTTP2_STREAM_CLOSING state. This is a race condition. */
|
|
|
|
if(session->callbacks.on_data_recv_callback) {
|
|
|
|
if(session->callbacks.on_data_recv_callback
|
|
|
|
(session, length, flags, stream_id, session->user_data) != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2012-01-29 08:27:00 +01:00
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
}
|
|
|
|
if(flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
rv = nghttp2_session_call_on_request_recv(session, stream_id);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
2013-08-10 08:13:53 +02:00
|
|
|
}
|
2012-01-28 14:46:12 +01:00
|
|
|
}
|
|
|
|
}
|
2013-09-05 16:17:16 +02:00
|
|
|
if(flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_RD);
|
|
|
|
rv = nghttp2_session_close_stream_if_shut_rdwr(session, stream);
|
|
|
|
if(rv != 0 && nghttp2_is_fatal(rv)) {
|
|
|
|
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. */
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_session_process_data_frame(nghttp2_session *session)
|
2012-01-29 08:27:00 +01:00
|
|
|
{
|
|
|
|
int r;
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_frame_hd hd;
|
|
|
|
nghttp2_frame_unpack_frame_hd(&hd, session->iframe.headbuf);
|
|
|
|
r = nghttp2_session_on_data_received(session, hd.length, hd.flags,
|
|
|
|
hd.stream_id);
|
2013-07-12 17:19:03 +02:00
|
|
|
if(nghttp2_is_fatal(r)) {
|
2012-01-28 14:46:12 +01:00
|
|
|
return r;
|
|
|
|
} else {
|
|
|
|
return 0;
|
2012-01-27 19:54:53 +01:00
|
|
|
}
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
|
2013-08-08 17:58:52 +02:00
|
|
|
/*
|
|
|
|
* If the resulting recv_window_size is strictly larger than
|
|
|
|
* NGHTTP2_MAX_WINDOW_SIZE, return NGHTTP2_ERR_FLOW_CONTROL.
|
|
|
|
*/
|
|
|
|
static int adjust_recv_window_size(int32_t *recv_window_size_ptr,
|
|
|
|
int32_t delta)
|
2013-07-16 13:54:24 +02:00
|
|
|
{
|
2013-08-08 17:58:52 +02:00
|
|
|
if(*recv_window_size_ptr > NGHTTP2_MAX_WINDOW_SIZE - delta) {
|
|
|
|
return NGHTTP2_ERR_FLOW_CONTROL;
|
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.
|
|
|
|
*/
|
2013-08-07 15:02:30 +02:00
|
|
|
static int nghttp2_session_update_recv_stream_window_size
|
|
|
|
(nghttp2_session *session,
|
|
|
|
nghttp2_stream *stream,
|
|
|
|
int32_t delta_size)
|
|
|
|
{
|
2013-08-08 17:58:52 +02:00
|
|
|
int rv;
|
|
|
|
rv = adjust_recv_window_size(&stream->recv_window_size, delta_size);
|
|
|
|
if(rv != 0) {
|
|
|
|
return nghttp2_session_add_rst_stream(session, stream->stream_id,
|
|
|
|
NGHTTP2_ERR_FLOW_CONTROL);
|
|
|
|
}
|
2013-08-08 18:23:39 +02:00
|
|
|
if(!(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.
|
|
|
|
*/
|
|
|
|
static int nghttp2_session_update_recv_connection_window_size
|
|
|
|
(nghttp2_session *session,
|
|
|
|
int32_t delta_size)
|
|
|
|
{
|
2013-08-08 17:58:52 +02:00
|
|
|
int rv;
|
|
|
|
rv = adjust_recv_window_size(&session->recv_window_size, delta_size);
|
|
|
|
if(rv != 0) {
|
|
|
|
return nghttp2_session_fail_session(session, NGHTTP2_ERR_FLOW_CONTROL);
|
|
|
|
}
|
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
|
|
|
/*
|
|
|
|
* Returns nonzero if the reception of DATA for stream |stream_id| is
|
|
|
|
* allowed.
|
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
static int nghttp2_session_check_data_recv_allowed(nghttp2_session *session,
|
2012-06-14 15:39:44 +02: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-06-14 15:39:44 +02:00
|
|
|
if(stream) {
|
2013-07-12 17:19:03 +02:00
|
|
|
if((stream->shut_flags & NGHTTP2_SHUT_RD) == 0) {
|
|
|
|
if(nghttp2_session_is_my_stream_id(session, stream_id)) {
|
|
|
|
if(stream->state == NGHTTP2_STREAM_OPENED) {
|
2012-06-14 15:39:44 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2013-08-19 17:11:08 +02:00
|
|
|
} else if(stream->state != NGHTTP2_STREAM_CLOSING &&
|
|
|
|
stream->state != NGHTTP2_STREAM_RESERVED) {
|
2012-06-14 15:39:44 +02:00
|
|
|
/* It is OK if this is remote peer initiated stream and we did
|
2013-07-25 14:18:13 +02:00
|
|
|
not receive END_STREAM unless stream is in
|
|
|
|
NGHTTP2_STREAM_CLOSING state. This is a race condition. */
|
2013-08-19 17:11:08 +02:00
|
|
|
/* But DATA must not be received in reserved state */
|
2012-06-14 15:39:44 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-28 10:59:24 +02:00
|
|
|
int nghttp2_session_continue(nghttp2_session *session)
|
|
|
|
{
|
|
|
|
nghttp2_frame *frame = &session->iframe.frame;
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
int rv = 0;
|
|
|
|
if(session->iframe.error_code != NGHTTP2_ERR_PAUSE) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
switch(frame->hd.type) {
|
|
|
|
case NGHTTP2_DATA:
|
|
|
|
/* To call on_data_recv_callback */
|
|
|
|
return nghttp2_session_mem_recv(session, NULL, 0);
|
|
|
|
case NGHTTP2_HEADERS:
|
|
|
|
switch(frame->headers.cat) {
|
|
|
|
case NGHTTP2_HCAT_REQUEST:
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
rv = nghttp2_session_call_on_request_recv(session, frame->hd.stream_id);
|
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_RD);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NGHTTP2_HCAT_RESPONSE:
|
|
|
|
case NGHTTP2_HCAT_PUSH_RESPONSE:
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
stream = nghttp2_session_get_stream(session, frame->hd.stream_id);
|
|
|
|
/* 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)) {
|
|
|
|
rv = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NGHTTP2_HCAT_HEADERS:
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
if(!nghttp2_session_is_my_stream_id(session, frame->hd.stream_id)) {
|
|
|
|
rv = nghttp2_session_call_on_request_recv(session,
|
|
|
|
frame->hd.stream_id);
|
|
|
|
if(rv != 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stream = nghttp2_session_get_stream(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)) {
|
|
|
|
rv = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NGHTTP2_RST_STREAM:
|
|
|
|
rv = nghttp2_session_close_stream(session, frame->hd.stream_id,
|
|
|
|
frame->rst_stream.error_code);
|
|
|
|
if(!nghttp2_is_fatal(rv)) {
|
|
|
|
rv = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
nghttp2_inbound_frame_reset(session);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2012-03-17 15:39:38 +01:00
|
|
|
const uint8_t *inmark, *inlimit;
|
|
|
|
inmark = in;
|
|
|
|
inlimit = in+inlen;
|
2012-01-24 14:02:24 +01:00
|
|
|
while(1) {
|
|
|
|
ssize_t r;
|
2013-07-12 17:19:03 +02:00
|
|
|
if(session->iframe.state == NGHTTP2_RECV_HEAD) {
|
2012-03-17 15:39:38 +01:00
|
|
|
size_t remheadbytes;
|
|
|
|
size_t readlen;
|
|
|
|
size_t bufavail = inlimit-inmark;
|
|
|
|
if(bufavail == 0) {
|
|
|
|
break;
|
|
|
|
}
|
2013-07-15 14:45:59 +02:00
|
|
|
remheadbytes = NGHTTP2_FRAME_HEAD_LENGTH - session->iframe.headbufoff;
|
2013-07-12 17:19:03 +02:00
|
|
|
readlen = nghttp2_min(remheadbytes, bufavail);
|
2012-03-17 15:39:38 +01:00
|
|
|
memcpy(session->iframe.headbuf+session->iframe.headbufoff,
|
|
|
|
inmark, readlen);
|
|
|
|
inmark += readlen;
|
|
|
|
session->iframe.headbufoff += readlen;
|
2013-07-15 14:45:59 +02:00
|
|
|
if(session->iframe.headbufoff == NGHTTP2_FRAME_HEAD_LENGTH) {
|
2013-07-12 17:19:03 +02:00
|
|
|
session->iframe.state = NGHTTP2_RECV_PAYLOAD;
|
2012-05-25 03:46:40 +02:00
|
|
|
session->iframe.payloadlen =
|
2013-07-15 14:45:59 +02:00
|
|
|
nghttp2_get_uint16(&session->iframe.headbuf[0]);
|
2013-08-27 19:13:57 +02:00
|
|
|
/* TODO Make payloadlen configurable up to
|
|
|
|
NGHTTP2_MAX_FRAME_LENGTH */
|
|
|
|
if(session->iframe.payloadlen > NGHTTP2_MAX_HTTP_FRAME_LENGTH) {
|
|
|
|
session->iframe.error_code = NGHTTP2_ERR_FRAME_TOO_LARGE;
|
|
|
|
session->iframe.state = NGHTTP2_RECV_PAYLOAD_IGN;
|
|
|
|
/* Make inflater fail forcibly to disallow reception of
|
|
|
|
further HEADERS or PUSH_PROMISE */
|
|
|
|
session->hd_inflater.bad = 1;
|
|
|
|
/* Just tear down session for now */
|
2013-10-27 11:31:24 +01:00
|
|
|
r = nghttp2_session_fail_session(session, NGHTTP2_FRAME_SIZE_ERROR);
|
2013-08-27 19:13:57 +02:00
|
|
|
if(r != 0) {
|
|
|
|
/* FATAL */
|
|
|
|
assert(r < NGHTTP2_ERR_FATAL);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
} else if(!nghttp2_frame_is_data_frame(session->iframe.headbuf)) {
|
|
|
|
/* non-DATA frame */
|
2013-07-19 17:08:14 +02:00
|
|
|
ssize_t buflen = session->iframe.payloadlen;
|
2012-05-25 03:46:40 +02:00
|
|
|
session->iframe.buflen = buflen;
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_reserve_buffer(&session->iframe.buf,
|
2012-03-17 15:39:38 +01:00
|
|
|
&session->iframe.bufmax,
|
2012-05-25 03:46:40 +02:00
|
|
|
buflen);
|
2012-03-17 15:39:38 +01:00
|
|
|
if(r != 0) {
|
|
|
|
/* FATAL */
|
2013-07-12 17:19:03 +02:00
|
|
|
assert(r < NGHTTP2_ERR_FATAL);
|
2012-01-24 14:02:24 +01:00
|
|
|
return r;
|
|
|
|
}
|
2012-06-14 15:39:44 +02:00
|
|
|
} else {
|
|
|
|
/* Check stream is open. If it is not open or closing,
|
|
|
|
ignore payload. */
|
|
|
|
int32_t stream_id;
|
2013-07-15 14:45:59 +02:00
|
|
|
stream_id = nghttp2_get_uint32(&session->iframe.headbuf[4]) &
|
|
|
|
NGHTTP2_STREAM_ID_MASK;
|
2013-07-12 17:19:03 +02:00
|
|
|
if(!nghttp2_session_check_data_recv_allowed(session, stream_id)) {
|
|
|
|
session->iframe.state = NGHTTP2_RECV_PAYLOAD_IGN;
|
2012-06-14 15:39:44 +02:00
|
|
|
}
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
} else {
|
2012-03-17 15:39:38 +01:00
|
|
|
break;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
if(session->iframe.state == NGHTTP2_RECV_PAYLOAD ||
|
|
|
|
session->iframe.state == NGHTTP2_RECV_PAYLOAD_IGN) {
|
2012-05-25 03:46:40 +02:00
|
|
|
size_t rempayloadlen;
|
2012-01-24 14:02:24 +01:00
|
|
|
size_t bufavail, readlen;
|
2012-02-25 16:12:32 +01:00
|
|
|
int32_t data_stream_id = 0;
|
2013-07-15 14:45:59 +02:00
|
|
|
uint8_t data_flags = NGHTTP2_FLAG_NONE;
|
2012-05-25 03:46:40 +02:00
|
|
|
|
|
|
|
rempayloadlen = session->iframe.payloadlen - session->iframe.off;
|
|
|
|
bufavail = inlimit - inmark;
|
2012-03-17 15:39:38 +01:00
|
|
|
if(rempayloadlen > 0 && bufavail == 0) {
|
|
|
|
break;
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
readlen = nghttp2_min(bufavail, rempayloadlen);
|
2013-07-19 17:08:14 +02:00
|
|
|
if(!nghttp2_frame_is_data_frame(session->iframe.headbuf)) {
|
2013-07-12 17:19:03 +02:00
|
|
|
if(session->iframe.state != NGHTTP2_RECV_PAYLOAD_IGN) {
|
2012-05-25 06:49:18 +02:00
|
|
|
memcpy(session->iframe.buf+session->iframe.off, inmark, readlen);
|
|
|
|
}
|
2012-02-25 16:12:32 +01:00
|
|
|
} else {
|
2013-10-03 15:51:58 +02:00
|
|
|
data_stream_id = nghttp2_get_uint32(&session->iframe.headbuf[4]) &
|
|
|
|
NGHTTP2_STREAM_ID_MASK;
|
|
|
|
data_flags = session->iframe.headbuf[3];
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
session->iframe.off += readlen;
|
2012-03-17 15:39:38 +01:00
|
|
|
inmark += readlen;
|
2012-02-25 16:12:32 +01:00
|
|
|
|
2013-08-07 15:02:30 +02:00
|
|
|
if(nghttp2_frame_is_data_frame(session->iframe.headbuf) && readlen > 0) {
|
|
|
|
if(session->local_flow_control) {
|
|
|
|
/* Update connection-level flow control window for ignored
|
|
|
|
DATA frame too */
|
|
|
|
r = nghttp2_session_update_recv_connection_window_size
|
|
|
|
(session, readlen);
|
2012-02-25 16:12:32 +01:00
|
|
|
if(r < 0) {
|
|
|
|
/* FATAL */
|
2013-07-12 17:19:03 +02:00
|
|
|
assert(r < NGHTTP2_ERR_FATAL);
|
2012-02-25 16:12:32 +01:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
}
|
2013-08-07 15:02:30 +02:00
|
|
|
if(session->iframe.state != NGHTTP2_RECV_PAYLOAD_IGN &&
|
|
|
|
(session->iframe.payloadlen != session->iframe.off ||
|
|
|
|
(data_flags & NGHTTP2_FLAG_END_STREAM) == 0)) {
|
|
|
|
nghttp2_stream *stream;
|
|
|
|
stream = nghttp2_session_get_stream(session, data_stream_id);
|
|
|
|
if(stream && stream->local_flow_control) {
|
|
|
|
r = nghttp2_session_update_recv_stream_window_size
|
|
|
|
(session, stream, readlen);
|
|
|
|
if(r < 0) {
|
|
|
|
/* FATAL */
|
|
|
|
assert(r < NGHTTP2_ERR_FATAL);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-09-28 10:59:24 +02:00
|
|
|
/* For data frame, We don't buffer data. Instead, just pass
|
|
|
|
received data to callback function. */
|
|
|
|
if(session->iframe.state != NGHTTP2_RECV_PAYLOAD_IGN) {
|
|
|
|
if(session->callbacks.on_data_chunk_recv_callback) {
|
|
|
|
r = session->callbacks.on_data_chunk_recv_callback
|
|
|
|
(session,
|
|
|
|
data_flags,
|
|
|
|
data_stream_id,
|
|
|
|
inmark - readlen,
|
|
|
|
readlen,
|
|
|
|
session->user_data);
|
|
|
|
if(r == NGHTTP2_ERR_PAUSE) {
|
|
|
|
/* Set type to NGHTTP2_DATA, so that we can see what was
|
|
|
|
paused in nghttp2_session_continue() */
|
|
|
|
session->iframe.error_code = NGHTTP2_ERR_PAUSE;
|
|
|
|
session->iframe.frame.hd.type = NGHTTP2_DATA;
|
|
|
|
return inmark - in;
|
|
|
|
}
|
|
|
|
if(r != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* TODO We need on_ignored_data_chunk_recv_callback, for
|
|
|
|
ingored DATA frame, so that the application can calculate
|
|
|
|
connection-level window size. */
|
2012-02-25 16:12:32 +01:00
|
|
|
}
|
2012-05-25 03:46:40 +02:00
|
|
|
if(session->iframe.payloadlen == session->iframe.off) {
|
2013-08-27 19:13:57 +02:00
|
|
|
if(session->iframe.error_code != NGHTTP2_ERR_FRAME_TOO_LARGE) {
|
|
|
|
if(!nghttp2_frame_is_data_frame(session->iframe.headbuf)) {
|
|
|
|
/* TODO Introduce callback which is invoked when payload is
|
|
|
|
ignored, especially for frame too large */
|
|
|
|
r = nghttp2_session_process_ctrl_frame(session);
|
|
|
|
} else {
|
|
|
|
r = nghttp2_session_process_data_frame(session);
|
|
|
|
}
|
2013-09-28 10:59:24 +02:00
|
|
|
if(r == NGHTTP2_ERR_PAUSE) {
|
|
|
|
return inmark - in;
|
|
|
|
}
|
2013-08-27 19:13:57 +02:00
|
|
|
if(r < 0) {
|
|
|
|
/* FATAL */
|
|
|
|
assert(r < NGHTTP2_ERR_FATAL);
|
|
|
|
return r;
|
|
|
|
}
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
2013-09-28 10:59:24 +02:00
|
|
|
nghttp2_inbound_frame_reset(session);
|
2012-01-24 14:02:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-03-17 15:39:38 +01:00
|
|
|
return inmark-in;
|
|
|
|
}
|
|
|
|
|
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;
|
2013-07-12 17:19:03 +02:00
|
|
|
readlen = nghttp2_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
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_want_read(nghttp2_session *session)
|
2012-01-24 14:02:24 +01:00
|
|
|
{
|
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;
|
|
|
|
}
|
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. */
|
2013-07-12 17:19:03 +02:00
|
|
|
return !session->goaway_flags || nghttp2_map_size(&session->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
|
|
|
{
|
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;
|
|
|
|
}
|
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) &&
|
|
|
|
!nghttp2_session_is_outgoing_concurrent_streams_max(session))) &&
|
|
|
|
(!session->goaway_flags || nghttp2_map_size(&session->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
|
|
|
{
|
|
|
|
int r;
|
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);
|
|
|
|
r = nghttp2_session_add_frame(session, NGHTTP2_CAT_CTRL, frame, NULL);
|
2012-01-27 15:05:29 +01:00
|
|
|
if(r != 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);
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
uint8_t *opaque_data, size_t opaque_data_len)
|
2012-01-28 11:22:38 +01:00
|
|
|
{
|
|
|
|
int r;
|
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) {
|
|
|
|
if(opaque_data_len > UINT16_MAX - 8) {
|
|
|
|
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);
|
|
|
|
r = nghttp2_session_add_frame(session, NGHTTP2_CAT_CTRL, frame, NULL);
|
2012-01-28 11:22:38 +01:00
|
|
|
if(r != 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);
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
int r;
|
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);
|
|
|
|
r = nghttp2_session_add_frame(session, NGHTTP2_CAT_CTRL, frame, NULL);
|
2012-02-25 16:12:32 +01:00
|
|
|
if(r != 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);
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
int r;
|
|
|
|
if(!nghttp2_iv_check(iv, niv,
|
|
|
|
session->local_settings
|
|
|
|
[NGHTTP2_SETTINGS_FLOW_CONTROL_OPTIONS])) {
|
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
|
|
|
}
|
|
|
|
frame = malloc(sizeof(nghttp2_frame));
|
|
|
|
if(frame == NULL) {
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
iv_copy = nghttp2_frame_iv_copy(iv, niv);
|
|
|
|
if(iv_copy == NULL) {
|
|
|
|
free(frame);
|
|
|
|
return NGHTTP2_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
nghttp2_frame_settings_init(&frame->settings, flags, iv_copy, niv);
|
|
|
|
r = nghttp2_session_add_frame(session, NGHTTP2_CAT_CTRL, frame, NULL);
|
|
|
|
if(r != 0) {
|
|
|
|
/* The only expected error is fatal one */
|
|
|
|
assert(r < NGHTTP2_ERR_FATAL);
|
|
|
|
nghttp2_frame_settings_free(&frame->settings);
|
|
|
|
free(frame);
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
ssize_t nghttp2_session_pack_data(nghttp2_session *session,
|
2012-02-16 12:54:30 +01:00
|
|
|
uint8_t **buf_ptr, size_t *buflen_ptr,
|
2012-02-22 15:58:33 +01:00
|
|
|
size_t datamax,
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_data *frame)
|
2012-01-26 17:17:40 +01:00
|
|
|
{
|
2012-02-22 15:58:33 +01:00
|
|
|
ssize_t framelen = datamax+8, r;
|
2012-08-23 19:15:57 +02:00
|
|
|
int eof_flags;
|
2012-02-22 15:58:33 +01:00
|
|
|
uint8_t flags;
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_reserve_buffer(buf_ptr, buflen_ptr, framelen);
|
2012-02-16 12:54:30 +01:00
|
|
|
if(r != 0) {
|
|
|
|
return r;
|
2012-01-26 17:17:40 +01:00
|
|
|
}
|
2012-08-23 19:15:57 +02:00
|
|
|
eof_flags = 0;
|
2012-01-26 17:17:40 +01:00
|
|
|
r = frame->data_prd.read_callback
|
2013-07-15 14:45:59 +02:00
|
|
|
(session, frame->hd.stream_id, (*buf_ptr)+8, datamax,
|
2012-08-23 19:15:57 +02:00
|
|
|
&eof_flags, &frame->data_prd.source, session->user_data);
|
2013-07-12 17:19:03 +02:00
|
|
|
if(r == NGHTTP2_ERR_DEFERRED || r == NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE) {
|
2012-01-26 17:17:40 +01:00
|
|
|
return r;
|
2012-05-11 16:23:46 +02:00
|
|
|
} else if(r < 0 || datamax < (size_t)r) {
|
|
|
|
/* 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
|
|
|
}
|
2013-07-15 14:45:59 +02:00
|
|
|
memset(*buf_ptr, 0, NGHTTP2_FRAME_HEAD_LENGTH);
|
|
|
|
nghttp2_put_uint16be(&(*buf_ptr)[0], r);
|
2012-02-22 15:58:33 +01:00
|
|
|
flags = 0;
|
2012-08-23 19:15:57 +02:00
|
|
|
if(eof_flags) {
|
2012-02-16 15:38:19 +01:00
|
|
|
frame->eof = 1;
|
2013-07-15 14:45:59 +02:00
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
flags |= NGHTTP2_FLAG_END_STREAM;
|
2012-02-16 15:38:19 +01:00
|
|
|
}
|
2012-01-26 17:17:40 +01:00
|
|
|
}
|
2013-07-15 14:45:59 +02:00
|
|
|
(*buf_ptr)[3] = flags;
|
|
|
|
nghttp2_put_uint32be(&(*buf_ptr)[4], frame->hd.stream_id);
|
2012-01-26 17:17:40 +01:00
|
|
|
return r+8;
|
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-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
|
|
|
{
|
|
|
|
int r;
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream *stream;
|
|
|
|
stream = nghttp2_session_get_stream(session, stream_id);
|
2012-02-25 16:12:32 +01:00
|
|
|
if(stream == NULL || stream->deferred_data == NULL ||
|
2013-07-12 17:19:03 +02:00
|
|
|
(stream->deferred_flags & NGHTTP2_DEFERRED_FLOW_CONTROL)) {
|
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
2012-02-19 15:42:25 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
r = nghttp2_pq_push(&session->ob_pq, stream->deferred_data);
|
2012-02-19 15:42:25 +01:00
|
|
|
if(r == 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_stream_detach_deferred_data(stream);
|
2012-02-19 15:42:25 +01:00
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
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-07-12 17:19:03 +02:00
|
|
|
int nghttp2_session_set_option(nghttp2_session *session,
|
2012-05-08 15:59:34 +02:00
|
|
|
int optname, void *optval, size_t optlen)
|
|
|
|
{
|
|
|
|
switch(optname) {
|
2013-08-08 18:23:39 +02:00
|
|
|
case NGHTTP2_OPT_NO_AUTO_STREAM_WINDOW_UPDATE:
|
|
|
|
case NGHTTP2_OPT_NO_AUTO_CONNECTION_WINDOW_UPDATE: {
|
|
|
|
int flag;
|
|
|
|
if(optname == NGHTTP2_OPT_NO_AUTO_STREAM_WINDOW_UPDATE) {
|
|
|
|
flag = NGHTTP2_OPTMASK_NO_AUTO_STREAM_WINDOW_UPDATE;
|
|
|
|
} else {
|
|
|
|
flag = NGHTTP2_OPTMASK_NO_AUTO_CONNECTION_WINDOW_UPDATE;
|
|
|
|
}
|
2012-05-08 15:59:34 +02:00
|
|
|
if(optlen == sizeof(int)) {
|
|
|
|
int intval = *(int*)optval;
|
|
|
|
if(intval) {
|
2013-08-08 18:23:39 +02:00
|
|
|
session->opt_flags |= flag;
|
2012-05-08 15:59:34 +02:00
|
|
|
} else {
|
2013-08-08 18:23:39 +02:00
|
|
|
session->opt_flags &= ~flag;
|
2012-05-08 15:59:34 +02:00
|
|
|
}
|
|
|
|
} else {
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
2012-05-08 15:59:34 +02:00
|
|
|
}
|
|
|
|
break;
|
2013-08-08 18:23:39 +02:00
|
|
|
}
|
2013-09-14 12:41:49 +02:00
|
|
|
case NGHTTP2_OPT_PEER_MAX_CONCURRENT_STREAMS: {
|
|
|
|
ssize_t sszval;
|
|
|
|
if(optlen != sizeof(ssize_t)) {
|
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
|
|
|
}
|
|
|
|
sszval = *(ssize_t*)optval;
|
|
|
|
if(sszval <= 0) {
|
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
|
|
|
}
|
|
|
|
session->remote_settings[NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS] =
|
|
|
|
sszval;
|
|
|
|
break;
|
|
|
|
}
|
2012-05-08 15:59:34 +02:00
|
|
|
default:
|
2013-07-12 17:19:03 +02:00
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
2012-05-08 15:59:34 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
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;
|
|
|
|
int max_conn_val_seen = 0;
|
|
|
|
int ini_win_size_seen = 0;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if((!session->server && session->next_stream_id != 1) ||
|
|
|
|
(session->server && session->last_recv_stream_id >= 1)) {
|
|
|
|
return NGHTTP2_ERR_PROTO;
|
|
|
|
}
|
|
|
|
if(settings_payloadlen % 8) {
|
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
|
|
|
}
|
|
|
|
rv = nghttp2_frame_unpack_settings_payload(&iv, &niv, settings_payload,
|
|
|
|
settings_payloadlen);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
for(i = 0; i < niv; ++i) {
|
|
|
|
if(iv[i].settings_id == NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS) {
|
|
|
|
max_conn_val_seen = 1;
|
|
|
|
} else if(iv[i].settings_id == NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE) {
|
|
|
|
ini_win_size_seen = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!max_conn_val_seen || !ini_win_size_seen) {
|
|
|
|
free(iv);
|
|
|
|
return NGHTTP2_ERR_PROTO;
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
stream = nghttp2_session_open_stream(session, 1, NGHTTP2_FLAG_END_STREAM,
|
|
|
|
0, NGHTTP2_STREAM_OPENING,
|
|
|
|
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;
|
|
|
|
} else {
|
|
|
|
nghttp2_stream_shutdown(stream, NGHTTP2_SHUT_WR);
|
|
|
|
session->next_stream_id += 2;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|