nghttp2/lib/nghttp2_submit.c

365 lines
11 KiB
C
Raw Normal View History

2013-07-12 17:19:03 +02:00
/*
* nghttp2 - HTTP/2.0 C Library
*
* Copyright (c) 2012, 2013 Tatsuhiro Tsujikawa
2013-07-12 17:19:03 +02:00
*
* 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.
*/
#include "nghttp2_submit.h"
#include <string.h>
#include <assert.h>
2013-07-12 17:19:03 +02:00
#include "nghttp2_session.h"
#include "nghttp2_frame.h"
#include "nghttp2_helper.h"
2013-07-15 14:45:59 +02:00
static int nghttp2_submit_headers_shared
2013-07-12 17:19:03 +02:00
(nghttp2_session *session,
uint8_t flags,
2013-07-15 14:45:59 +02:00
int32_t stream_id,
int32_t pri,
2013-07-12 17:19:03 +02:00
const char **nv,
const nghttp2_data_provider *data_prd,
void *stream_user_data)
{
int r;
nghttp2_frame *frame;
2013-07-19 17:08:14 +02:00
nghttp2_nv *nva_copy;
ssize_t nvlen;
2013-07-12 17:19:03 +02:00
uint8_t flags_copy;
nghttp2_data_provider *data_prd_copy = NULL;
2013-07-15 14:45:59 +02:00
nghttp2_headers_aux_data *aux_data = NULL;
if(pri < 0) {
2013-07-12 17:19:03 +02:00
return NGHTTP2_ERR_INVALID_ARGUMENT;
}
if(!nghttp2_frame_nv_check_null(nv)) {
return NGHTTP2_ERR_INVALID_ARGUMENT;
}
if(data_prd != NULL && data_prd->read_callback != NULL) {
data_prd_copy = malloc(sizeof(nghttp2_data_provider));
if(data_prd_copy == NULL) {
return NGHTTP2_ERR_NOMEM;
}
*data_prd_copy = *data_prd;
}
2013-07-15 14:45:59 +02:00
if(data_prd || stream_user_data) {
aux_data = malloc(sizeof(nghttp2_headers_aux_data));
if(aux_data == NULL) {
free(data_prd_copy);
return NGHTTP2_ERR_NOMEM;
}
aux_data->data_prd = data_prd_copy;
aux_data->stream_user_data = stream_user_data;
2013-07-12 17:19:03 +02:00
}
frame = malloc(sizeof(nghttp2_frame));
if(frame == NULL) {
free(aux_data);
free(data_prd_copy);
return NGHTTP2_ERR_NOMEM;
}
2013-07-19 17:08:14 +02:00
nvlen = nghttp2_nv_array_from_cstr(&nva_copy, nv);
if(nvlen < 0) {
2013-07-12 17:19:03 +02:00
free(frame);
free(aux_data);
free(data_prd_copy);
2013-07-19 17:08:14 +02:00
return nvlen;
2013-07-12 17:19:03 +02:00
}
2013-07-15 14:45:59 +02:00
/* TODO Implement header continuation */
flags_copy = (flags & (NGHTTP2_FLAG_END_STREAM | NGHTTP2_FLAG_PRIORITY)) |
NGHTTP2_FLAG_END_HEADERS;
nghttp2_frame_headers_init(&frame->headers, flags_copy, stream_id, pri,
2013-07-19 17:08:14 +02:00
nva_copy, nvlen);
2013-07-15 14:45:59 +02:00
r = nghttp2_session_add_frame(session, NGHTTP2_CAT_CTRL, frame,
2013-07-12 17:19:03 +02:00
aux_data);
if(r != 0) {
2013-07-15 14:45:59 +02:00
nghttp2_frame_headers_free(&frame->headers);
2013-07-12 17:19:03 +02:00
free(frame);
free(aux_data);
free(data_prd_copy);
}
return r;
}
int nghttp2_submit_headers(nghttp2_session *session, uint8_t flags,
2013-07-15 14:45:59 +02:00
int32_t stream_id, int32_t pri,
const char **nv, void *stream_user_data)
2013-07-12 17:19:03 +02:00
{
2013-07-15 14:45:59 +02:00
return nghttp2_submit_headers_shared(session, flags, stream_id,
pri, nv, NULL, stream_user_data);
2013-07-12 17:19:03 +02:00
}
2013-07-15 14:45:59 +02:00
int nghttp2_submit_ping(nghttp2_session *session, uint8_t *opaque_data)
2013-07-12 17:19:03 +02:00
{
2013-07-15 14:45:59 +02:00
return nghttp2_session_add_ping(session, NGHTTP2_FLAG_NONE, opaque_data);
2013-07-12 17:19:03 +02:00
}
int nghttp2_submit_priority(nghttp2_session *session, int32_t stream_id,
int32_t pri)
{
int r;
nghttp2_frame *frame;
nghttp2_stream *stream;
if(pri < 0) {
return NGHTTP2_ERR_INVALID_ARGUMENT;
}
stream = nghttp2_session_get_stream(session, stream_id);
if(stream == NULL) {
return NGHTTP2_ERR_STREAM_CLOSED;
}
frame = malloc(sizeof(nghttp2_frame));
if(frame == NULL) {
return NGHTTP2_ERR_NOMEM;
}
nghttp2_frame_priority_init(&frame->priority, stream_id, pri);
r = nghttp2_session_add_frame(session, NGHTTP2_CAT_CTRL, frame, NULL);
if(r != 0) {
nghttp2_frame_priority_free(&frame->priority);
free(frame);
return r;
}
/* Only update priority if the sender is client for now */
if(!session->server) {
nghttp2_session_reprioritize_stream(session, stream, pri);
}
return 0;
}
2013-07-12 17:19:03 +02:00
int nghttp2_submit_rst_stream(nghttp2_session *session, int32_t stream_id,
2013-07-15 14:45:59 +02:00
nghttp2_error_code error_code)
2013-07-12 17:19:03 +02:00
{
2013-07-15 14:45:59 +02:00
return nghttp2_session_add_rst_stream(session, stream_id, error_code);
2013-07-12 17:19:03 +02:00
}
2013-07-15 14:45:59 +02:00
int nghttp2_submit_goaway(nghttp2_session *session,
nghttp2_error_code error_code,
uint8_t *opaque_data, size_t opaque_data_len)
2013-07-12 17:19:03 +02:00
{
return nghttp2_session_add_goaway(session, session->last_recv_stream_id,
2013-07-15 14:45:59 +02:00
error_code, opaque_data, opaque_data_len);
2013-07-12 17:19:03 +02:00
}
2013-07-15 14:45:59 +02:00
int nghttp2_submit_settings(nghttp2_session *session,
2013-07-12 17:19:03 +02:00
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])) {
2013-08-03 11:05:14 +02:00
return NGHTTP2_ERR_INVALID_ARGUMENT;
2013-07-12 17:19:03 +02:00
}
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;
}
2013-07-15 14:45:59 +02:00
nghttp2_frame_settings_init(&frame->settings, iv_copy, niv);
r = nghttp2_session_update_local_settings(session, iv_copy, niv);
if(r != 0) {
nghttp2_frame_settings_free(&frame->settings);
free(frame);
return r;
}
2013-07-15 14:45:59 +02:00
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);
2013-07-12 17:19:03 +02:00
nghttp2_frame_settings_free(&frame->settings);
free(frame);
}
return r;
}
2013-07-24 18:49:05 +02:00
int nghttp2_submit_push_promise(nghttp2_session *session, uint8_t flags,
int32_t stream_id, const char **nv)
{
nghttp2_frame *frame;
nghttp2_nv *nva;
ssize_t nvlen;
uint8_t flags_copy;
int r;
if(nghttp2_session_get_stream(session, stream_id) == NULL) {
return NGHTTP2_ERR_STREAM_CLOSED;
}
2013-07-24 18:49:05 +02:00
if(!nghttp2_frame_nv_check_null(nv)) {
return NGHTTP2_ERR_INVALID_ARGUMENT;
}
frame = malloc(sizeof(nghttp2_frame));
if(frame == NULL) {
return NGHTTP2_ERR_NOMEM;
}
nvlen = nghttp2_nv_array_from_cstr(&nva, nv);
if(nvlen < 0) {
free(frame);
return nvlen;
}
/* TODO Implement header continuation */
flags_copy = NGHTTP2_FLAG_END_PUSH_PROMISE;
nghttp2_frame_push_promise_init(&frame->push_promise, flags_copy,
stream_id, -1, nva, nvlen);
r = nghttp2_session_add_frame(session, NGHTTP2_CAT_CTRL, frame, NULL);
if(r != 0) {
nghttp2_frame_push_promise_free(&frame->push_promise);
free(frame);
}
return 0;
}
2013-07-15 14:45:59 +02:00
int nghttp2_submit_window_update(nghttp2_session *session, uint8_t flags,
int32_t stream_id,
int32_t window_size_increment)
2013-07-12 17:19:03 +02:00
{
int rv;
2013-07-12 17:19:03 +02:00
nghttp2_stream *stream;
2013-08-18 15:04:09 +02:00
if(window_size_increment == 0) {
2013-07-12 17:19:03 +02:00
return NGHTTP2_ERR_INVALID_ARGUMENT;
}
2013-08-18 15:04:09 +02:00
flags = 0;
2013-07-15 14:45:59 +02:00
if(stream_id == 0) {
if(!session->local_flow_control) {
return NGHTTP2_ERR_INVALID_ARGUMENT;
}
rv = nghttp2_adjust_local_window_size(&session->local_window_size,
&session->recv_window_size,
window_size_increment);
if(rv != 0) {
return rv;
}
if(!(session->opt_flags &
NGHTTP2_OPTMASK_NO_AUTO_CONNECTION_WINDOW_UPDATE) &&
window_size_increment < 0 &&
nghttp2_should_send_window_update(session->local_window_size,
session->recv_window_size)) {
window_size_increment = session->recv_window_size;
session->recv_window_size = 0;
}
2013-07-12 17:19:03 +02:00
} else {
2013-07-15 14:45:59 +02:00
stream = nghttp2_session_get_stream(session, stream_id);
if(stream) {
if(!stream->local_flow_control) {
return NGHTTP2_ERR_INVALID_ARGUMENT;
}
rv = nghttp2_adjust_local_window_size(&stream->local_window_size,
&stream->recv_window_size,
window_size_increment);
if(rv != 0) {
return rv;
}
if(!(session->opt_flags &
NGHTTP2_OPTMASK_NO_AUTO_STREAM_WINDOW_UPDATE) &&
window_size_increment < 0 &&
nghttp2_should_send_window_update(stream->local_window_size,
stream->recv_window_size)) {
window_size_increment = stream->recv_window_size;
stream->recv_window_size = 0;
}
2013-07-15 14:45:59 +02:00
} else {
return NGHTTP2_ERR_STREAM_CLOSED;
}
2013-07-12 17:19:03 +02:00
}
if(window_size_increment > 0) {
return nghttp2_session_add_window_update(session, flags, stream_id,
window_size_increment);
}
return 0;
2013-07-12 17:19:03 +02:00
}
2013-07-15 14:45:59 +02:00
int nghttp2_submit_request(nghttp2_session *session, int32_t pri,
2013-07-12 17:19:03 +02:00
const char **nv,
const nghttp2_data_provider *data_prd,
void *stream_user_data)
{
2013-07-15 14:45:59 +02:00
uint8_t flags = NGHTTP2_FLAG_NONE;
2013-07-12 17:19:03 +02:00
if(data_prd == NULL || data_prd->read_callback == NULL) {
2013-07-15 14:45:59 +02:00
flags |= NGHTTP2_FLAG_END_STREAM;
2013-07-12 17:19:03 +02:00
}
2013-07-15 14:45:59 +02:00
if(pri != NGHTTP2_PRI_DEFAULT) {
flags |= NGHTTP2_FLAG_PRIORITY;
}
return nghttp2_submit_headers_shared(session, flags, -1, pri, nv,
data_prd, stream_user_data);
2013-07-12 17:19:03 +02:00
}
int nghttp2_submit_response(nghttp2_session *session,
int32_t stream_id, const char **nv,
const nghttp2_data_provider *data_prd)
{
2013-07-15 14:45:59 +02:00
uint8_t flags = NGHTTP2_FLAG_NONE;
if(data_prd == NULL || data_prd->read_callback == NULL) {
flags |= NGHTTP2_FLAG_END_STREAM;
2013-07-12 17:19:03 +02:00
}
2013-07-15 14:45:59 +02:00
return nghttp2_submit_headers_shared(session, flags, stream_id,
NGHTTP2_PRI_DEFAULT, nv, data_prd,
NULL);
2013-07-12 17:19:03 +02:00
}
2013-07-15 14:45:59 +02:00
int nghttp2_submit_data(nghttp2_session *session, uint8_t flags,
int32_t stream_id,
2013-07-12 17:19:03 +02:00
const nghttp2_data_provider *data_prd)
{
int r;
nghttp2_data *data_frame;
uint8_t nflags = 0;
if(nghttp2_session_get_stream(session, stream_id) == NULL) {
return NGHTTP2_ERR_STREAM_CLOSED;
}
2013-09-07 09:38:21 +02:00
data_frame = malloc(sizeof(nghttp2_data));
2013-07-12 17:19:03 +02:00
if(data_frame == NULL) {
return NGHTTP2_ERR_NOMEM;
}
2013-07-15 14:45:59 +02:00
if(flags & NGHTTP2_FLAG_END_STREAM) {
nflags |= NGHTTP2_FLAG_END_STREAM;
2013-07-12 17:19:03 +02:00
}
2013-07-15 14:45:59 +02:00
nghttp2_frame_data_init(data_frame, nflags, stream_id, data_prd);
r = nghttp2_session_add_frame(session, NGHTTP2_CAT_DATA, data_frame, NULL);
2013-07-12 17:19:03 +02:00
if(r != 0) {
nghttp2_frame_data_free(data_frame);
free(data_frame);
}
return r;
}
2013-08-03 11:05:14 +02:00
ssize_t nghttp2_pack_settings_payload(uint8_t *buf,
size_t buflen,
2013-08-03 11:05:14 +02:00
nghttp2_settings_entry *iv, size_t niv)
{
/* Assume that current flow_control_option is 0 (which means that
flow control is enabled) */
if(!nghttp2_iv_check(iv, niv, 0)) {
2013-08-03 11:05:14 +02:00
return NGHTTP2_ERR_INVALID_ARGUMENT;
}
if(buflen < (niv * 8))
return NGHTTP2_ERR_INSUFF_BUFSIZE;
2013-08-03 11:05:14 +02:00
return nghttp2_frame_pack_settings_payload(buf, iv, niv);
}