2013-07-19 09:50:31 +02:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2013-07-19 09:50:31 +02:00
|
|
|
*
|
|
|
|
* Copyright (c) 2013 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.
|
|
|
|
*/
|
2014-02-13 15:22:52 +01:00
|
|
|
#ifndef NGHTTP2_HD_H
|
|
|
|
#define NGHTTP2_HD_H
|
2013-07-19 09:50:31 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2014-11-27 15:39:04 +01:00
|
|
|
#include <config.h>
|
2013-07-19 09:50:31 +02:00
|
|
|
#endif /* HAVE_CONFIG_H */
|
|
|
|
|
|
|
|
#include <nghttp2/nghttp2.h>
|
|
|
|
|
2014-01-25 10:24:15 +01:00
|
|
|
#include "nghttp2_hd_huffman.h"
|
2014-03-10 17:47:38 +01:00
|
|
|
#include "nghttp2_buf.h"
|
2014-12-07 15:07:13 +01:00
|
|
|
#include "nghttp2_mem.h"
|
2016-03-12 05:23:12 +01:00
|
|
|
#include "nghttp2_rcbuf.h"
|
2014-01-25 10:24:15 +01:00
|
|
|
|
2014-05-11 14:38:30 +02:00
|
|
|
#define NGHTTP2_HD_DEFAULT_MAX_BUFFER_SIZE NGHTTP2_DEFAULT_HEADER_TABLE_SIZE
|
2013-07-19 09:50:31 +02:00
|
|
|
#define NGHTTP2_HD_ENTRY_OVERHEAD 32
|
|
|
|
|
2014-05-28 16:02:23 +02:00
|
|
|
/* The maximum length of one name/value pair. This is the sum of the
|
|
|
|
length of name and value. This is not specified by the spec. We
|
|
|
|
just chose the arbitrary size */
|
2014-06-28 04:04:41 +02:00
|
|
|
#define NGHTTP2_HD_MAX_NV 65536
|
2014-01-25 10:24:15 +01:00
|
|
|
|
2013-10-25 18:01:28 +02:00
|
|
|
/* Default size of maximum table buffer size for encoder. Even if
|
|
|
|
remote decoder notifies larger buffer size for its decoding,
|
|
|
|
encoder only uses the memory up to this value. */
|
2013-10-28 16:42:08 +01:00
|
|
|
#define NGHTTP2_HD_DEFAULT_MAX_DEFLATE_BUFFER_SIZE (1 << 12)
|
2013-10-25 18:01:28 +02:00
|
|
|
|
2014-07-16 16:04:00 +02:00
|
|
|
/* Exported for unit test */
|
2015-04-15 15:32:11 +02:00
|
|
|
#define NGHTTP2_STATIC_TABLE_LENGTH 61
|
|
|
|
|
2015-04-18 09:47:46 +02:00
|
|
|
/* Generated by genlibtokenlookup.py */
|
2015-04-15 15:32:11 +02:00
|
|
|
typedef enum {
|
|
|
|
NGHTTP2_TOKEN__AUTHORITY = 0,
|
|
|
|
NGHTTP2_TOKEN__METHOD = 1,
|
|
|
|
NGHTTP2_TOKEN__PATH = 3,
|
|
|
|
NGHTTP2_TOKEN__SCHEME = 5,
|
|
|
|
NGHTTP2_TOKEN__STATUS = 7,
|
|
|
|
NGHTTP2_TOKEN_ACCEPT_CHARSET = 14,
|
|
|
|
NGHTTP2_TOKEN_ACCEPT_ENCODING = 15,
|
|
|
|
NGHTTP2_TOKEN_ACCEPT_LANGUAGE = 16,
|
|
|
|
NGHTTP2_TOKEN_ACCEPT_RANGES = 17,
|
|
|
|
NGHTTP2_TOKEN_ACCEPT = 18,
|
|
|
|
NGHTTP2_TOKEN_ACCESS_CONTROL_ALLOW_ORIGIN = 19,
|
|
|
|
NGHTTP2_TOKEN_AGE = 20,
|
|
|
|
NGHTTP2_TOKEN_ALLOW = 21,
|
|
|
|
NGHTTP2_TOKEN_AUTHORIZATION = 22,
|
|
|
|
NGHTTP2_TOKEN_CACHE_CONTROL = 23,
|
|
|
|
NGHTTP2_TOKEN_CONTENT_DISPOSITION = 24,
|
|
|
|
NGHTTP2_TOKEN_CONTENT_ENCODING = 25,
|
|
|
|
NGHTTP2_TOKEN_CONTENT_LANGUAGE = 26,
|
|
|
|
NGHTTP2_TOKEN_CONTENT_LENGTH = 27,
|
|
|
|
NGHTTP2_TOKEN_CONTENT_LOCATION = 28,
|
|
|
|
NGHTTP2_TOKEN_CONTENT_RANGE = 29,
|
|
|
|
NGHTTP2_TOKEN_CONTENT_TYPE = 30,
|
|
|
|
NGHTTP2_TOKEN_COOKIE = 31,
|
|
|
|
NGHTTP2_TOKEN_DATE = 32,
|
|
|
|
NGHTTP2_TOKEN_ETAG = 33,
|
|
|
|
NGHTTP2_TOKEN_EXPECT = 34,
|
|
|
|
NGHTTP2_TOKEN_EXPIRES = 35,
|
|
|
|
NGHTTP2_TOKEN_FROM = 36,
|
|
|
|
NGHTTP2_TOKEN_HOST = 37,
|
|
|
|
NGHTTP2_TOKEN_IF_MATCH = 38,
|
|
|
|
NGHTTP2_TOKEN_IF_MODIFIED_SINCE = 39,
|
|
|
|
NGHTTP2_TOKEN_IF_NONE_MATCH = 40,
|
|
|
|
NGHTTP2_TOKEN_IF_RANGE = 41,
|
|
|
|
NGHTTP2_TOKEN_IF_UNMODIFIED_SINCE = 42,
|
|
|
|
NGHTTP2_TOKEN_LAST_MODIFIED = 43,
|
|
|
|
NGHTTP2_TOKEN_LINK = 44,
|
|
|
|
NGHTTP2_TOKEN_LOCATION = 45,
|
|
|
|
NGHTTP2_TOKEN_MAX_FORWARDS = 46,
|
|
|
|
NGHTTP2_TOKEN_PROXY_AUTHENTICATE = 47,
|
|
|
|
NGHTTP2_TOKEN_PROXY_AUTHORIZATION = 48,
|
|
|
|
NGHTTP2_TOKEN_RANGE = 49,
|
|
|
|
NGHTTP2_TOKEN_REFERER = 50,
|
|
|
|
NGHTTP2_TOKEN_REFRESH = 51,
|
|
|
|
NGHTTP2_TOKEN_RETRY_AFTER = 52,
|
|
|
|
NGHTTP2_TOKEN_SERVER = 53,
|
|
|
|
NGHTTP2_TOKEN_SET_COOKIE = 54,
|
|
|
|
NGHTTP2_TOKEN_STRICT_TRANSPORT_SECURITY = 55,
|
|
|
|
NGHTTP2_TOKEN_TRANSFER_ENCODING = 56,
|
|
|
|
NGHTTP2_TOKEN_USER_AGENT = 57,
|
|
|
|
NGHTTP2_TOKEN_VARY = 58,
|
|
|
|
NGHTTP2_TOKEN_VIA = 59,
|
|
|
|
NGHTTP2_TOKEN_WWW_AUTHENTICATE = 60,
|
2016-03-12 07:54:48 +01:00
|
|
|
NGHTTP2_TOKEN_TE,
|
2015-04-15 15:32:11 +02:00
|
|
|
NGHTTP2_TOKEN_CONNECTION,
|
|
|
|
NGHTTP2_TOKEN_KEEP_ALIVE,
|
|
|
|
NGHTTP2_TOKEN_PROXY_CONNECTION,
|
2016-02-19 16:48:18 +01:00
|
|
|
NGHTTP2_TOKEN_UPGRADE,
|
2015-04-15 15:32:11 +02:00
|
|
|
} nghttp2_token;
|
2014-07-16 16:04:00 +02:00
|
|
|
|
2015-09-14 18:05:41 +02:00
|
|
|
struct nghttp2_hd_entry;
|
|
|
|
typedef struct nghttp2_hd_entry nghttp2_hd_entry;
|
|
|
|
|
2016-03-12 05:23:12 +01:00
|
|
|
typedef struct {
|
|
|
|
/* The buffer containing header field name. NULL-termination is
|
|
|
|
guaranteed. */
|
|
|
|
nghttp2_rcbuf *name;
|
|
|
|
/* The buffer containing header field value. NULL-termination is
|
|
|
|
guaranteed. */
|
|
|
|
nghttp2_rcbuf *value;
|
|
|
|
/* nghttp2_token value for name. It could be -1 if we have no token
|
|
|
|
for that header field name. */
|
|
|
|
int32_t token;
|
|
|
|
/* Bitwise OR of one or more of nghttp2_nv_flag. */
|
|
|
|
uint8_t flags;
|
|
|
|
} nghttp2_hd_nv;
|
|
|
|
|
2015-09-14 18:05:41 +02:00
|
|
|
struct nghttp2_hd_entry {
|
2016-03-12 05:23:12 +01:00
|
|
|
/* The header field name/value pair */
|
|
|
|
nghttp2_hd_nv nv;
|
|
|
|
/* This is solely for nghttp2_hd_{deflate,inflate}_get_table_entry
|
|
|
|
APIs to keep backward compatibility. */
|
|
|
|
nghttp2_nv cnv;
|
2015-09-14 18:05:41 +02:00
|
|
|
/* The next entry which shares same bucket in hash table. */
|
|
|
|
nghttp2_hd_entry *next;
|
|
|
|
/* The sequence number. We will increment it by one whenever we
|
|
|
|
store nghttp2_hd_entry to dynamic header table. */
|
|
|
|
uint32_t seq;
|
|
|
|
/* The hash value for header name (nv.name). */
|
|
|
|
uint32_t hash;
|
|
|
|
};
|
2013-07-19 09:50:31 +02:00
|
|
|
|
2016-03-12 05:23:12 +01:00
|
|
|
/* The entry used for static header table. */
|
|
|
|
typedef struct {
|
|
|
|
nghttp2_rcbuf name;
|
|
|
|
nghttp2_rcbuf value;
|
|
|
|
nghttp2_nv cnv;
|
|
|
|
int32_t token;
|
|
|
|
uint32_t hash;
|
|
|
|
} nghttp2_hd_static_entry;
|
|
|
|
|
2013-10-12 14:49:01 +02:00
|
|
|
typedef struct {
|
|
|
|
nghttp2_hd_entry **buffer;
|
|
|
|
size_t mask;
|
|
|
|
size_t first;
|
|
|
|
size_t len;
|
|
|
|
} nghttp2_hd_ringbuf;
|
|
|
|
|
2014-01-25 10:24:15 +01:00
|
|
|
typedef enum {
|
|
|
|
NGHTTP2_HD_OPCODE_NONE,
|
|
|
|
NGHTTP2_HD_OPCODE_INDEXED,
|
|
|
|
NGHTTP2_HD_OPCODE_NEWNAME,
|
|
|
|
NGHTTP2_HD_OPCODE_INDNAME
|
|
|
|
} nghttp2_hd_opcode;
|
|
|
|
|
|
|
|
typedef enum {
|
2015-07-21 17:11:23 +02:00
|
|
|
NGHTTP2_HD_STATE_EXPECT_TABLE_SIZE,
|
|
|
|
NGHTTP2_HD_STATE_INFLATE_START,
|
2014-01-25 10:24:15 +01:00
|
|
|
NGHTTP2_HD_STATE_OPCODE,
|
2014-02-13 15:22:52 +01:00
|
|
|
NGHTTP2_HD_STATE_READ_TABLE_SIZE,
|
2014-01-25 10:24:15 +01:00
|
|
|
NGHTTP2_HD_STATE_READ_INDEX,
|
|
|
|
NGHTTP2_HD_STATE_NEWNAME_CHECK_NAMELEN,
|
|
|
|
NGHTTP2_HD_STATE_NEWNAME_READ_NAMELEN,
|
|
|
|
NGHTTP2_HD_STATE_NEWNAME_READ_NAMEHUFF,
|
|
|
|
NGHTTP2_HD_STATE_NEWNAME_READ_NAME,
|
|
|
|
NGHTTP2_HD_STATE_CHECK_VALUELEN,
|
|
|
|
NGHTTP2_HD_STATE_READ_VALUELEN,
|
|
|
|
NGHTTP2_HD_STATE_READ_VALUEHUFF,
|
2014-04-30 16:36:44 +02:00
|
|
|
NGHTTP2_HD_STATE_READ_VALUE
|
2014-01-25 10:24:15 +01:00
|
|
|
} nghttp2_hd_inflate_state;
|
|
|
|
|
2015-04-14 18:21:27 +02:00
|
|
|
typedef enum {
|
|
|
|
NGHTTP2_HD_WITH_INDEXING,
|
|
|
|
NGHTTP2_HD_WITHOUT_INDEXING,
|
|
|
|
NGHTTP2_HD_NEVER_INDEXING
|
|
|
|
} nghttp2_hd_indexing_mode;
|
|
|
|
|
2013-07-19 09:50:31 +02:00
|
|
|
typedef struct {
|
2013-10-24 15:09:40 +02:00
|
|
|
/* dynamic header table */
|
2013-10-12 14:49:01 +02:00
|
|
|
nghttp2_hd_ringbuf hd_table;
|
2014-12-07 15:07:13 +01:00
|
|
|
/* Memory allocator */
|
|
|
|
nghttp2_mem *mem;
|
2013-11-16 08:33:38 +01:00
|
|
|
/* Abstract buffer size of hd_table as described in the spec. This
|
|
|
|
is the sum of length of name/value in hd_table +
|
|
|
|
NGHTTP2_HD_ENTRY_OVERHEAD bytes overhead per each entry. */
|
|
|
|
size_t hd_table_bufsize;
|
2014-02-13 15:22:52 +01:00
|
|
|
/* The effective header table size. */
|
2013-10-25 18:01:28 +02:00
|
|
|
size_t hd_table_bufsize_max;
|
2015-09-14 18:05:41 +02:00
|
|
|
/* Next sequence number for nghttp2_hd_entry */
|
|
|
|
uint32_t next_seq;
|
2013-11-16 08:33:38 +01:00
|
|
|
/* If inflate/deflate error occurred, this value is set to 1 and
|
|
|
|
further invocation of inflate/deflate will fail with
|
|
|
|
NGHTTP2_ERR_HEADER_COMP. */
|
2013-07-25 18:34:28 +02:00
|
|
|
uint8_t bad;
|
2014-01-26 09:53:04 +01:00
|
|
|
} nghttp2_hd_context;
|
|
|
|
|
2015-09-14 18:05:41 +02:00
|
|
|
#define HD_MAP_SIZE 128
|
|
|
|
|
|
|
|
typedef struct { nghttp2_hd_entry *table[HD_MAP_SIZE]; } nghttp2_hd_map;
|
|
|
|
|
2014-05-13 16:42:55 +02:00
|
|
|
struct nghttp2_hd_deflater {
|
2014-01-26 09:53:04 +01:00
|
|
|
nghttp2_hd_context ctx;
|
2015-09-14 18:05:41 +02:00
|
|
|
nghttp2_hd_map map;
|
2014-02-13 15:22:52 +01:00
|
|
|
/* The upper limit of the header table size the deflater accepts. */
|
|
|
|
size_t deflate_hd_table_bufsize_max;
|
2014-07-25 15:55:45 +02:00
|
|
|
/* Minimum header table size notified in the next context update */
|
|
|
|
size_t min_hd_table_bufsize_max;
|
2014-05-11 14:25:27 +02:00
|
|
|
/* If nonzero, send header table size using encoding context update
|
|
|
|
in the next deflate process */
|
|
|
|
uint8_t notify_table_size_change;
|
2014-05-13 16:42:55 +02:00
|
|
|
};
|
2014-01-26 09:53:04 +01:00
|
|
|
|
2014-04-29 08:53:46 +02:00
|
|
|
struct nghttp2_hd_inflater {
|
2014-01-26 09:53:04 +01:00
|
|
|
nghttp2_hd_context ctx;
|
|
|
|
/* Stores current state of huffman decoding */
|
2014-01-25 10:24:15 +01:00
|
|
|
nghttp2_hd_huff_decode_context huff_decode_ctx;
|
2016-03-12 05:23:12 +01:00
|
|
|
/* header buffer */
|
|
|
|
nghttp2_buf namebuf, valuebuf;
|
|
|
|
nghttp2_rcbuf *namercbuf, *valuercbuf;
|
|
|
|
/* Pointer to the name/value pair which are used in the current
|
|
|
|
header emission. */
|
|
|
|
nghttp2_rcbuf *nv_name_keep, *nv_value_keep;
|
2014-01-26 09:53:04 +01:00
|
|
|
/* The number of bytes to read */
|
2014-07-22 15:38:18 +02:00
|
|
|
size_t left;
|
2014-01-26 09:53:04 +01:00
|
|
|
/* The index in indexed repr or indexed name */
|
|
|
|
size_t index;
|
2014-02-13 15:22:52 +01:00
|
|
|
/* The maximum header table size the inflater supports. This is the
|
|
|
|
same value transmitted in SETTINGS_HEADER_TABLE_SIZE */
|
|
|
|
size_t settings_hd_table_bufsize_max;
|
2015-10-24 10:27:24 +02:00
|
|
|
/* Minimum header table size set by nghttp2_hd_inflate_change_table_size */
|
|
|
|
size_t min_hd_table_bufsize_max;
|
2014-07-21 18:50:29 +02:00
|
|
|
/* The number of next shift to decode integer */
|
|
|
|
size_t shift;
|
2014-01-25 10:24:15 +01:00
|
|
|
nghttp2_hd_opcode opcode;
|
2014-01-26 09:53:04 +01:00
|
|
|
nghttp2_hd_inflate_state state;
|
|
|
|
/* nonzero if string is huffman encoded */
|
2014-01-25 10:24:15 +01:00
|
|
|
uint8_t huffman_encoded;
|
2014-01-26 09:53:04 +01:00
|
|
|
/* nonzero if deflater requires that current entry is indexed */
|
2014-01-25 10:24:15 +01:00
|
|
|
uint8_t index_required;
|
2014-04-01 18:25:44 +02:00
|
|
|
/* nonzero if deflater requires that current entry must not be
|
|
|
|
indexed */
|
|
|
|
uint8_t no_index;
|
2014-04-29 08:53:46 +02:00
|
|
|
};
|
2013-07-19 09:50:31 +02:00
|
|
|
|
|
|
|
/*
|
2016-03-12 05:23:12 +01:00
|
|
|
* Initializes the |ent| members. The reference counts of nv->name
|
|
|
|
* and nv->value are increased by one for each.
|
2013-07-19 09:50:31 +02:00
|
|
|
*/
|
2016-03-12 05:23:12 +01:00
|
|
|
void nghttp2_hd_entry_init(nghttp2_hd_entry *ent, nghttp2_hd_nv *nv);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
2016-03-12 05:23:12 +01:00
|
|
|
/*
|
|
|
|
* This function decreases the reference counts of nv->name and
|
|
|
|
* nv->value.
|
|
|
|
*/
|
|
|
|
void nghttp2_hd_entry_free(nghttp2_hd_entry *ent);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Initializes |deflater| for deflating name/values pairs.
|
|
|
|
*
|
2013-10-25 18:01:28 +02:00
|
|
|
* The encoder only uses up to
|
2013-10-28 16:42:08 +01:00
|
|
|
* NGHTTP2_HD_DEFAULT_MAX_DEFLATE_BUFFER_SIZE bytes for header table
|
2013-10-25 18:01:28 +02:00
|
|
|
* even if the larger value is specified later in
|
|
|
|
* nghttp2_hd_change_table_size().
|
|
|
|
*
|
2013-07-19 09:50:31 +02:00
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
*/
|
2014-12-07 15:07:13 +01:00
|
|
|
int nghttp2_hd_deflate_init(nghttp2_hd_deflater *deflater, nghttp2_mem *mem);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
2013-10-25 18:01:28 +02:00
|
|
|
/*
|
|
|
|
* Initializes |deflater| for deflating name/values pairs.
|
|
|
|
*
|
2013-10-28 16:42:08 +01:00
|
|
|
* The encoder only uses up to |deflate_hd_table_bufsize_max| bytes
|
|
|
|
* for header table even if the larger value is specified later in
|
2013-10-25 18:01:28 +02:00
|
|
|
* nghttp2_hd_change_table_size().
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
*/
|
2014-01-26 09:53:04 +01:00
|
|
|
int nghttp2_hd_deflate_init2(nghttp2_hd_deflater *deflater,
|
2014-12-07 15:07:13 +01:00
|
|
|
size_t deflate_hd_table_bufsize_max,
|
|
|
|
nghttp2_mem *mem);
|
2013-10-13 12:24:21 +02:00
|
|
|
|
2013-07-19 09:50:31 +02:00
|
|
|
/*
|
|
|
|
* Deallocates any resources allocated for |deflater|.
|
|
|
|
*/
|
2014-01-26 09:53:04 +01:00
|
|
|
void nghttp2_hd_deflate_free(nghttp2_hd_deflater *deflater);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
|
|
|
/*
|
2013-07-19 17:28:25 +02:00
|
|
|
* Deflates the |nva|, which has the |nvlen| name/value pairs, into
|
2014-03-13 14:11:02 +01:00
|
|
|
* the |bufs|.
|
2013-07-19 09:50:31 +02:00
|
|
|
*
|
2014-03-13 14:11:02 +01:00
|
|
|
* This function expands |bufs| as necessary to store the result. If
|
|
|
|
* buffers is full and the process still requires more space, this
|
|
|
|
* funtion fails and returns NGHTTP2_ERR_HEADER_COMP.
|
2013-07-19 09:50:31 +02:00
|
|
|
*
|
2014-03-13 14:11:02 +01:00
|
|
|
* After this function returns, it is safe to delete the |nva|.
|
2013-09-03 14:41:22 +02:00
|
|
|
*
|
2014-03-13 14:11:02 +01:00
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
2013-07-19 09:50:31 +02:00
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
2013-07-19 17:28:25 +02:00
|
|
|
* NGHTTP2_ERR_HEADER_COMP
|
|
|
|
* Deflation process has failed.
|
2014-05-12 14:48:00 +02:00
|
|
|
* NGHTTP2_ERR_BUFFER_ERROR
|
|
|
|
* Out of buffer space.
|
2013-07-19 09:50:31 +02:00
|
|
|
*/
|
2014-05-13 16:42:55 +02:00
|
|
|
int nghttp2_hd_deflate_hd_bufs(nghttp2_hd_deflater *deflater,
|
2014-11-27 15:39:04 +01:00
|
|
|
nghttp2_bufs *bufs, const nghttp2_nv *nva,
|
|
|
|
size_t nvlen);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
|
|
|
/*
|
2014-04-29 08:53:46 +02:00
|
|
|
* Initializes |inflater| for inflating name/values pairs.
|
2014-01-16 15:41:13 +01:00
|
|
|
*
|
2014-04-29 08:53:46 +02:00
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
2013-07-19 09:50:31 +02:00
|
|
|
*
|
2014-04-29 08:53:46 +02:00
|
|
|
* :enum:`NGHTTP2_ERR_NOMEM`
|
2013-07-19 09:50:31 +02:00
|
|
|
* Out of memory.
|
|
|
|
*/
|
2014-12-07 15:07:13 +01:00
|
|
|
int nghttp2_hd_inflate_init(nghttp2_hd_inflater *inflater, nghttp2_mem *mem);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
|
|
|
/*
|
2014-04-29 08:53:46 +02:00
|
|
|
* Deallocates any resources allocated for |inflater|.
|
2013-07-19 09:50:31 +02:00
|
|
|
*/
|
2014-04-29 08:53:46 +02:00
|
|
|
void nghttp2_hd_inflate_free(nghttp2_hd_inflater *inflater);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
2015-04-15 15:32:11 +02:00
|
|
|
/*
|
2016-03-12 05:23:12 +01:00
|
|
|
* Similar to nghttp2_hd_inflate_hd(), but this takes nghttp2_hd_nv
|
|
|
|
* instead of nghttp2_nv as output parameter |nv_out|. Other than
|
|
|
|
* that return values and semantics are the same as
|
|
|
|
* nghttp2_hd_inflate_hd().
|
2015-04-15 15:32:11 +02:00
|
|
|
*/
|
|
|
|
ssize_t nghttp2_hd_inflate_hd2(nghttp2_hd_inflater *inflater,
|
2016-03-12 05:23:12 +01:00
|
|
|
nghttp2_hd_nv *nv_out, int *inflate_flags,
|
|
|
|
uint8_t *in, size_t inlen, int in_final);
|
2015-04-15 15:32:11 +02:00
|
|
|
|
2013-07-19 09:50:31 +02:00
|
|
|
/* For unittesting purpose */
|
2014-03-13 14:11:02 +01:00
|
|
|
int nghttp2_hd_emit_indname_block(nghttp2_bufs *bufs, size_t index,
|
2015-04-14 18:21:27 +02:00
|
|
|
nghttp2_nv *nv, int indexing_mode);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
|
|
|
/* For unittesting purpose */
|
2014-03-13 14:11:02 +01:00
|
|
|
int nghttp2_hd_emit_newname_block(nghttp2_bufs *bufs, nghttp2_nv *nv,
|
2015-04-14 18:21:27 +02:00
|
|
|
int indexing_mode);
|
2014-02-13 15:22:52 +01:00
|
|
|
|
|
|
|
/* For unittesting purpose */
|
2014-03-13 14:11:02 +01:00
|
|
|
int nghttp2_hd_emit_table_size(nghttp2_bufs *bufs, size_t table_size);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
2013-10-12 14:49:01 +02:00
|
|
|
/* For unittesting purpose */
|
2016-03-12 05:23:12 +01:00
|
|
|
nghttp2_hd_nv nghttp2_hd_table_get(nghttp2_hd_context *context, size_t index);
|
2013-10-12 14:49:01 +02:00
|
|
|
|
2014-07-22 15:38:18 +02:00
|
|
|
/* For unittesting purpose */
|
|
|
|
ssize_t nghttp2_hd_decode_length(uint32_t *res, size_t *shift_ptr, int *final,
|
2014-11-27 15:39:04 +01:00
|
|
|
uint32_t initial, size_t shift, uint8_t *in,
|
|
|
|
uint8_t *last, size_t prefix);
|
2014-07-22 15:38:18 +02:00
|
|
|
|
2013-10-14 16:38:12 +02:00
|
|
|
/* Huffman encoding/decoding functions */
|
|
|
|
|
|
|
|
/*
|
2014-02-13 15:22:52 +01:00
|
|
|
* Counts the required bytes to encode |src| with length |len|.
|
2013-10-14 16:38:12 +02:00
|
|
|
*
|
|
|
|
* This function returns the number of required bytes to encode given
|
2013-10-21 16:56:14 +02:00
|
|
|
* data, including padding of prefix of terminal symbol code. This
|
|
|
|
* function always succeeds.
|
2013-10-14 16:38:12 +02:00
|
|
|
*/
|
2014-02-13 15:22:52 +01:00
|
|
|
size_t nghttp2_hd_huff_encode_count(const uint8_t *src, size_t len);
|
2013-10-14 16:38:12 +02:00
|
|
|
|
|
|
|
/*
|
2014-03-13 14:11:02 +01:00
|
|
|
* Encodes the given data |src| with length |srclen| to the |bufs|.
|
|
|
|
* This function expands extra buffers in |bufs| if necessary.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
* NGHTTP2_ERR_BUFFER_ERROR
|
|
|
|
* Out of buffer space.
|
2013-10-14 16:38:12 +02:00
|
|
|
*/
|
2014-11-27 15:39:04 +01:00
|
|
|
int nghttp2_hd_huff_encode(nghttp2_bufs *bufs, const uint8_t *src,
|
|
|
|
size_t srclen);
|
2013-10-14 16:38:12 +02:00
|
|
|
|
2014-02-13 15:22:52 +01:00
|
|
|
void nghttp2_hd_huff_decode_context_init(nghttp2_hd_huff_decode_context *ctx);
|
2014-01-25 10:24:15 +01:00
|
|
|
|
2013-10-14 16:38:12 +02:00
|
|
|
/*
|
2016-03-10 17:52:55 +01:00
|
|
|
* Decodes the given data |src| with length |srclen|. The |ctx| must
|
2014-01-25 10:24:15 +01:00
|
|
|
* be initialized by nghttp2_hd_huff_decode_context_init(). The result
|
2016-03-10 17:52:55 +01:00
|
|
|
* will be written to |buf|. This function assumes that |buf| has the
|
|
|
|
* enough room to store the decoded byte string.
|
2014-01-25 10:24:15 +01:00
|
|
|
*
|
|
|
|
* The caller must set the |final| to nonzero if the given input is
|
|
|
|
* the final block.
|
2013-10-14 16:38:12 +02:00
|
|
|
*
|
2014-01-25 10:24:15 +01:00
|
|
|
* This function returns the number of read bytes from the |in|.
|
2013-10-14 16:38:12 +02:00
|
|
|
*
|
2014-01-07 13:44:56 +01:00
|
|
|
* If this function fails, it returns one of the following negative
|
|
|
|
* return codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
* NGHTTP2_ERR_HEADER_COMP
|
|
|
|
* Decoding process has failed.
|
2013-10-14 16:38:12 +02:00
|
|
|
*/
|
2014-01-25 10:24:15 +01:00
|
|
|
ssize_t nghttp2_hd_huff_decode(nghttp2_hd_huff_decode_context *ctx,
|
2016-03-10 17:52:55 +01:00
|
|
|
nghttp2_buf *buf, const uint8_t *src,
|
2014-11-27 15:39:04 +01:00
|
|
|
size_t srclen, int final);
|
2013-10-14 16:38:12 +02:00
|
|
|
|
2014-02-13 15:22:52 +01:00
|
|
|
#endif /* NGHTTP2_HD_H */
|