nghttp2/lib/nghttp2_helper.c

219 lines
6.8 KiB
C
Raw Normal View History

/*
2013-07-12 17:19:03 +02:00
* nghttp2 - HTTP/2.0 C Library
*
* 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_helper.h"
#include <assert.h>
#include <string.h>
2013-07-12 17:19:03 +02:00
#include "nghttp2_net.h"
2013-07-12 17:19:03 +02:00
void nghttp2_put_uint16be(uint8_t *buf, uint16_t n)
{
uint16_t x = htons(n);
memcpy(buf, &x, sizeof(uint16_t));
}
2013-07-12 17:19:03 +02:00
void nghttp2_put_uint32be(uint8_t *buf, uint32_t n)
{
uint32_t x = htonl(n);
memcpy(buf, &x, sizeof(uint32_t));
}
2013-07-12 17:19:03 +02:00
uint16_t nghttp2_get_uint16(const uint8_t *data)
{
uint16_t n;
memcpy(&n, data, sizeof(uint16_t));
return ntohs(n);
}
2013-07-12 17:19:03 +02:00
uint32_t nghttp2_get_uint32(const uint8_t *data)
{
uint32_t n;
memcpy(&n, data, sizeof(uint32_t));
return ntohl(n);
}
2013-07-12 17:19:03 +02:00
int nghttp2_reserve_buffer(uint8_t **buf_ptr, size_t *buflen_ptr,
size_t min_length)
{
if(min_length > *buflen_ptr) {
uint8_t *temp;
min_length = (min_length+4095)/4096*4096;
2013-07-16 15:22:57 +02:00
temp = realloc(*buf_ptr, min_length);
if(temp == NULL) {
2013-07-12 17:19:03 +02:00
return NGHTTP2_ERR_NOMEM;
} else {
*buf_ptr = temp;
*buflen_ptr = min_length;
}
}
return 0;
}
2012-05-09 16:01:46 +02:00
2013-07-19 09:50:31 +02:00
void* nghttp2_memdup(const void* src, size_t n)
{
void* dest = malloc(n);
if(dest == NULL) {
return NULL;
}
memcpy(dest, src, n);
return dest;
}
2013-07-19 17:08:14 +02:00
void nghttp2_downcase(uint8_t *s, size_t len)
{
size_t i;
for(i = 0; i < len; ++i) {
if('A' <= s[i] && s[i] <= 'Z') {
s[i] += 'a'-'A';
}
}
}
int nghttp2_adjust_local_window_size(int32_t *local_window_size_ptr,
int32_t *recv_window_size_ptr,
int32_t *recv_reduction_ptr,
int32_t *delta_ptr)
{
if(*delta_ptr > 0) {
int32_t new_recv_window_size =
nghttp2_max(0, *recv_window_size_ptr) - *delta_ptr;
if(new_recv_window_size < 0) {
/* The delta size is strictly more than received bytes. Increase
local_window_size by that difference. */
int32_t recv_reduction_diff;
if(*local_window_size_ptr >
NGHTTP2_MAX_WINDOW_SIZE + new_recv_window_size) {
return NGHTTP2_ERR_FLOW_CONTROL;
}
*local_window_size_ptr -= new_recv_window_size;
/* If there is recv_reduction due to earlier window_size
reduction, we have to adjust it too. */
recv_reduction_diff = nghttp2_min(*recv_reduction_ptr,
-new_recv_window_size);
*recv_reduction_ptr -= recv_reduction_diff;
if(*recv_window_size_ptr < 0) {
*recv_window_size_ptr += recv_reduction_diff;
} else {
/* If *recv_window_size_ptr > 0, then those bytes are
considered to be backed to the remote peer (by
WINDOW_UPDATE with the adjusted *delta_ptr), so it is
effectively 0 now. */
*recv_window_size_ptr = recv_reduction_diff;
}
/* recv_reduction_diff must be paied from *delta_ptr, since it
was added in window size reduction (see below). */
*delta_ptr -= recv_reduction_diff;
} else {
*recv_window_size_ptr = new_recv_window_size;
}
return 0;
} else {
if(*local_window_size_ptr + *delta_ptr < 0 ||
*recv_window_size_ptr < INT32_MIN - *delta_ptr ||
*recv_reduction_ptr > INT32_MAX + *delta_ptr) {
return NGHTTP2_ERR_FLOW_CONTROL;
}
/* Decreasing local window size. Note that we achieve this without
noticing to the remote peer. To do this, we cut
recv_window_size by -delta. This means that we don't send
WINDOW_UPDATE for -delta bytes. */
*local_window_size_ptr += *delta_ptr;
*recv_window_size_ptr += *delta_ptr;
*recv_reduction_ptr -= *delta_ptr;
*delta_ptr = 0;
}
return 0;
}
int nghttp2_should_send_window_update(int32_t local_window_size,
int32_t recv_window_size)
{
return recv_window_size >= local_window_size / 2;
}
2013-07-12 17:19:03 +02:00
const char* nghttp2_strerror(int error_code)
2012-05-09 16:01:46 +02:00
{
switch(error_code) {
case 0:
return "Success";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_INVALID_ARGUMENT:
2012-05-09 16:01:46 +02:00
return "Invalid argument";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_UNSUPPORTED_VERSION:
2012-05-09 16:01:46 +02:00
return "Unsupported SPDY version";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_WOULDBLOCK:
2012-05-09 16:01:46 +02:00
return "Operation would block";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_PROTO:
2012-05-09 16:01:46 +02:00
return "Protocol error";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_INVALID_FRAME:
2012-05-09 16:01:46 +02:00
return "Invalid frame octets";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_EOF:
2012-05-09 16:01:46 +02:00
return "EOF";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_DEFERRED:
2012-05-09 16:01:46 +02:00
return "Data transfer deferred";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_STREAM_ID_NOT_AVAILABLE:
2012-05-09 16:01:46 +02:00
return "No more Stream ID available";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_STREAM_CLOSED:
2012-05-09 16:01:46 +02:00
return "Stream was already closed or invalid";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_STREAM_CLOSING:
2012-05-09 16:01:46 +02:00
return "Stream is closing";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_STREAM_SHUT_WR:
2012-05-09 16:01:46 +02:00
return "The transmission is not allowed for this stream";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_INVALID_STREAM_ID:
2012-05-09 16:01:46 +02:00
return "Stream ID is invalid";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_INVALID_STREAM_STATE:
2012-05-09 16:01:46 +02:00
return "Invalid stream state";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_DEFERRED_DATA_EXIST:
2012-05-09 16:01:46 +02:00
return "Another DATA frame has already been deferred";
2013-07-15 14:45:59 +02:00
case NGHTTP2_ERR_START_STREAM_NOT_ALLOWED:
2013-08-03 16:45:10 +02:00
return "request HEADERS is not allowed";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_GOAWAY_ALREADY_SENT:
2012-05-09 16:01:46 +02:00
return "GOAWAY has already been sent";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_INVALID_HEADER_BLOCK:
2012-05-09 16:01:46 +02:00
return "Invalid header block";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_INVALID_STATE:
2012-05-09 16:01:46 +02:00
return "Invalid state";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_GZIP:
2012-05-09 16:01:46 +02:00
return "Gzip error";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE:
return "The user callback function failed due to the temporal error";
case NGHTTP2_ERR_FRAME_SIZE_ERROR:
return "The length of the frame is invalid";
2013-07-19 17:08:14 +02:00
case NGHTTP2_ERR_HEADER_COMP:
return "Header compression/decompression error";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_NOMEM:
2012-05-09 16:01:46 +02:00
return "Out of memory";
2013-07-12 17:19:03 +02:00
case NGHTTP2_ERR_CALLBACK_FAILURE:
2012-05-09 16:01:46 +02:00
return "The user callback function failed";
default:
return "Unknown error code";
}
}
2013-12-14 15:49:16 +01:00
void nghttp2_free(void *ptr)
{
free(ptr);
}