2012-01-24 14:02:24 +01:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2012-01-24 14:02:24 +01:00
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
2013-07-12 17:19:03 +02:00
|
|
|
#ifndef NGHTTP2_FRAME_H
|
|
|
|
#define NGHTTP2_FRAME_H
|
2012-01-24 14:02:24 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2018-06-09 09:21:30 +02:00
|
|
|
# include <config.h>
|
2012-01-24 14:02:24 +01:00
|
|
|
#endif /* HAVE_CONFIG_H */
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
#include <nghttp2/nghttp2.h>
|
2013-07-19 17:08:14 +02:00
|
|
|
#include "nghttp2_hd.h"
|
2014-03-10 17:47:38 +01:00
|
|
|
#include "nghttp2_buf.h"
|
2013-07-15 14:45:59 +02:00
|
|
|
|
2013-10-27 15:09:10 +01:00
|
|
|
#define NGHTTP2_STREAM_ID_MASK ((1u << 31) - 1)
|
2014-03-25 18:04:24 +01:00
|
|
|
#define NGHTTP2_PRI_GROUP_ID_MASK ((1u << 31) - 1)
|
2013-10-27 15:09:10 +01:00
|
|
|
#define NGHTTP2_PRIORITY_MASK ((1u << 31) - 1)
|
|
|
|
#define NGHTTP2_WINDOW_SIZE_INCREMENT_MASK ((1u << 31) - 1)
|
|
|
|
#define NGHTTP2_SETTINGS_ID_MASK ((1 << 24) - 1)
|
|
|
|
|
2014-03-13 14:11:02 +01:00
|
|
|
/* The number of bytes of frame header. */
|
2014-07-09 15:40:31 +02:00
|
|
|
#define NGHTTP2_FRAME_HDLEN 9
|
2014-03-13 14:11:02 +01:00
|
|
|
|
2014-07-27 09:58:04 +02:00
|
|
|
#define NGHTTP2_MAX_FRAME_SIZE_MAX ((1 << 24) - 1)
|
|
|
|
#define NGHTTP2_MAX_FRAME_SIZE_MIN (1 << 14)
|
|
|
|
|
2014-07-09 15:40:31 +02:00
|
|
|
#define NGHTTP2_MAX_PAYLOADLEN 16384
|
2022-01-13 21:21:56 +01:00
|
|
|
/* The one frame buffer length for transmission. We may use several of
|
2014-06-07 11:15:36 +02:00
|
|
|
them to support CONTINUATION. To account for Pad Length field, we
|
|
|
|
allocate extra 1 byte, which saves extra large memcopying. */
|
2014-11-27 15:39:04 +01:00
|
|
|
#define NGHTTP2_FRAMEBUF_CHUNKLEN \
|
2014-06-07 11:15:36 +02:00
|
|
|
(NGHTTP2_FRAME_HDLEN + 1 + NGHTTP2_MAX_PAYLOADLEN)
|
2012-01-25 13:35:48 +01:00
|
|
|
|
2015-02-11 16:09:18 +01:00
|
|
|
/* The default length of DATA frame payload. */
|
|
|
|
#define NGHTTP2_DATA_PAYLOADLEN NGHTTP2_MAX_FRAME_SIZE_MIN
|
2012-01-27 10:21:14 +01:00
|
|
|
|
2016-06-14 17:00:30 +02:00
|
|
|
/* Maximum headers block size to send, calculated using
|
|
|
|
nghttp2_hd_deflate_bound(). This is the default value, and can be
|
2021-08-19 19:14:58 +02:00
|
|
|
overridden by nghttp2_option_set_max_send_header_block_length(). */
|
2014-07-02 15:25:32 +02:00
|
|
|
#define NGHTTP2_MAX_HEADERSLEN 65536
|
|
|
|
|
2014-02-06 14:06:42 +01:00
|
|
|
/* The number of bytes for each SETTINGS entry */
|
2014-06-07 09:37:29 +02:00
|
|
|
#define NGHTTP2_FRAME_SETTINGS_ENTRY_LENGTH 6
|
2014-02-06 14:06:42 +01:00
|
|
|
|
2014-05-22 14:41:43 +02:00
|
|
|
/* Length of priority related fields in HEADERS/PRIORITY frames */
|
|
|
|
#define NGHTTP2_PRIORITY_SPECLEN 5
|
2014-05-22 14:36:12 +02:00
|
|
|
|
2014-08-24 17:32:44 +02:00
|
|
|
/* Maximum length of padding in bytes. */
|
|
|
|
#define NGHTTP2_MAX_PADLEN 256
|
|
|
|
|
2014-06-09 16:16:54 +02:00
|
|
|
/* Union of extension frame payload */
|
2017-11-23 06:19:12 +01:00
|
|
|
typedef union {
|
|
|
|
nghttp2_ext_altsvc altsvc;
|
2018-05-10 03:57:02 +02:00
|
|
|
nghttp2_ext_origin origin;
|
2017-11-23 06:19:12 +01:00
|
|
|
} nghttp2_ext_frame_payload;
|
2014-06-09 16:16:54 +02:00
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
void nghttp2_frame_pack_frame_hd(uint8_t *buf, const nghttp2_frame_hd *hd);
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
void nghttp2_frame_unpack_frame_hd(nghttp2_frame_hd *hd, const uint8_t *buf);
|
2012-03-26 16:19:58 +02:00
|
|
|
|
2014-08-28 16:30:42 +02:00
|
|
|
/**
|
|
|
|
* Initializes frame header |hd| with given parameters. Reserved bit
|
|
|
|
* is set to 0.
|
|
|
|
*/
|
2014-11-27 15:39:04 +01:00
|
|
|
void nghttp2_frame_hd_init(nghttp2_frame_hd *hd, size_t length, uint8_t type,
|
|
|
|
uint8_t flags, int32_t stream_id);
|
2014-08-28 16:30:42 +02:00
|
|
|
|
2014-03-25 18:04:24 +01:00
|
|
|
/**
|
|
|
|
* Returns the number of priority field depending on the |flags|. If
|
|
|
|
* |flags| has neither NGHTTP2_FLAG_PRIORITY_GROUP nor
|
|
|
|
* NGHTTP2_FLAG_PRIORITY_DEPENDENCY set, return 0.
|
|
|
|
*/
|
|
|
|
size_t nghttp2_frame_priority_len(uint8_t flags);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Packs the |pri_spec| in |buf|. This function assumes |buf| has
|
|
|
|
* enough space for serialization.
|
|
|
|
*/
|
|
|
|
void nghttp2_frame_pack_priority_spec(uint8_t *buf,
|
|
|
|
const nghttp2_priority_spec *pri_spec);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unpacks the priority specification from payload |payload| of length
|
|
|
|
* |payloadlen| to |pri_spec|. The |flags| is used to determine what
|
|
|
|
* kind of priority specification is in |payload|. This function
|
|
|
|
* assumes the |payload| contains whole priority specification.
|
|
|
|
*/
|
|
|
|
void nghttp2_frame_unpack_priority_spec(nghttp2_priority_spec *pri_spec,
|
2017-03-11 09:46:39 +01:00
|
|
|
const uint8_t *payload);
|
2014-03-25 18:04:24 +01:00
|
|
|
|
2014-01-16 15:41:13 +01:00
|
|
|
/*
|
|
|
|
* Returns the offset from the HEADERS frame payload where the
|
|
|
|
* compressed header block starts. The frame payload does not include
|
|
|
|
* frame header.
|
|
|
|
*/
|
|
|
|
size_t nghttp2_frame_headers_payload_nv_offset(nghttp2_headers *frame);
|
|
|
|
|
2012-01-24 14:02:24 +01:00
|
|
|
/*
|
2014-03-13 14:11:02 +01:00
|
|
|
* Packs HEADERS frame |frame| in wire format and store it in |bufs|.
|
|
|
|
* This function expands |bufs| as necessary to store frame.
|
2012-02-16 12:54:30 +01:00
|
|
|
*
|
2014-03-13 14:11:02 +01:00
|
|
|
* The caller must make sure that nghttp2_bufs_reset(bufs) is called
|
|
|
|
* before calling this function.
|
2014-02-08 16:35:21 +01:00
|
|
|
*
|
2012-02-21 15:56:51 +01:00
|
|
|
* frame->hd.length is assigned after length is determined during
|
2014-05-06 11:02:26 +02:00
|
|
|
* packing process. CONTINUATION frames are also serialized in this
|
2014-03-13 14:11:02 +01:00
|
|
|
* function. This function does not handle padding.
|
2012-02-21 15:56:51 +01:00
|
|
|
*
|
2014-03-13 14:11:02 +01:00
|
|
|
* This function returns 0 if it succeeds, or returns one of the
|
2014-02-08 16:35:21 +01:00
|
|
|
* following negative error codes:
|
2012-02-21 15:56:51 +01:00
|
|
|
*
|
2013-07-19 17:08:14 +02:00
|
|
|
* NGHTTP2_ERR_HEADER_COMP
|
2012-02-21 15:56:51 +01:00
|
|
|
* The deflate operation failed.
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_NOMEM
|
2012-02-21 15:56:51 +01:00
|
|
|
* Out of memory.
|
2012-01-24 14:02:24 +01:00
|
|
|
*/
|
2014-11-27 15:39:04 +01:00
|
|
|
int nghttp2_frame_pack_headers(nghttp2_bufs *bufs, nghttp2_headers *frame,
|
2014-03-13 14:11:02 +01:00
|
|
|
nghttp2_hd_deflater *deflater);
|
2012-01-24 14:02:24 +01:00
|
|
|
|
2012-05-25 06:49:18 +02:00
|
|
|
/*
|
2014-05-06 11:02:26 +02:00
|
|
|
* Unpacks HEADERS frame byte sequence into |frame|. This function
|
2014-04-14 16:53:54 +02:00
|
|
|
* only unapcks bytes that come before name/value header block and
|
2014-06-07 11:15:36 +02:00
|
|
|
* after possible Pad Length field.
|
2012-05-25 06:49:18 +02:00
|
|
|
*
|
2014-05-06 11:02:26 +02:00
|
|
|
* This function always succeeds and returns 0.
|
2012-05-25 06:49:18 +02:00
|
|
|
*/
|
2014-01-26 07:44:43 +01:00
|
|
|
int nghttp2_frame_unpack_headers_payload(nghttp2_headers *frame,
|
2017-03-11 09:46:39 +01:00
|
|
|
const uint8_t *payload);
|
2014-01-26 07:44:43 +01:00
|
|
|
|
2012-01-24 14:02:24 +01:00
|
|
|
/*
|
2013-07-15 14:45:59 +02:00
|
|
|
* Packs PRIORITY frame |frame| in wire format and store it in
|
2014-03-13 14:11:02 +01:00
|
|
|
* |bufs|.
|
|
|
|
*
|
|
|
|
* The caller must make sure that nghttp2_bufs_reset(bufs) is called
|
|
|
|
* before calling this function.
|
2012-03-26 16:19:58 +02:00
|
|
|
*
|
2014-05-06 11:02:26 +02:00
|
|
|
* This function always succeeds and returns 0.
|
2012-01-24 14:02:24 +01:00
|
|
|
*/
|
2014-11-27 15:39:04 +01:00
|
|
|
int nghttp2_frame_pack_priority(nghttp2_bufs *bufs, nghttp2_priority *frame);
|
2012-01-24 14:02:24 +01:00
|
|
|
|
2012-05-25 06:49:18 +02:00
|
|
|
/*
|
2013-07-15 14:45:59 +02:00
|
|
|
* Unpacks PRIORITY wire format into |frame|.
|
2012-05-25 06:49:18 +02:00
|
|
|
*/
|
2014-01-26 07:44:43 +01:00
|
|
|
void nghttp2_frame_unpack_priority_payload(nghttp2_priority *frame,
|
2017-03-11 09:46:39 +01:00
|
|
|
const uint8_t *payload);
|
2014-01-26 07:44:43 +01:00
|
|
|
|
2012-01-27 11:35:05 +01:00
|
|
|
/*
|
2013-07-15 14:45:59 +02:00
|
|
|
* Packs RST_STREAM frame |frame| in wire frame format and store it in
|
2014-03-13 14:11:02 +01:00
|
|
|
* |bufs|.
|
|
|
|
*
|
|
|
|
* The caller must make sure that nghttp2_bufs_reset(bufs) is called
|
|
|
|
* before calling this function.
|
2012-02-21 15:56:51 +01:00
|
|
|
*
|
2014-05-06 11:02:26 +02:00
|
|
|
* This function always succeeds and returns 0.
|
2012-01-27 11:35:05 +01:00
|
|
|
*/
|
2014-03-13 14:11:02 +01:00
|
|
|
int nghttp2_frame_pack_rst_stream(nghttp2_bufs *bufs,
|
|
|
|
nghttp2_rst_stream *frame);
|
2012-01-27 11:35:05 +01:00
|
|
|
|
|
|
|
/*
|
2013-07-15 14:45:59 +02:00
|
|
|
* Unpacks RST_STREAM frame byte sequence into |frame|.
|
2012-01-27 11:35:05 +01:00
|
|
|
*/
|
2014-01-26 07:44:43 +01:00
|
|
|
void nghttp2_frame_unpack_rst_stream_payload(nghttp2_rst_stream *frame,
|
2017-03-11 09:46:39 +01:00
|
|
|
const uint8_t *payload);
|
2014-01-26 07:44:43 +01:00
|
|
|
|
2012-01-28 11:22:38 +01:00
|
|
|
/*
|
2013-07-15 14:45:59 +02:00
|
|
|
* Packs SETTINGS frame |frame| in wire format and store it in
|
2014-03-13 14:11:02 +01:00
|
|
|
* |bufs|.
|
2012-02-21 15:56:51 +01:00
|
|
|
*
|
2014-03-13 14:11:02 +01:00
|
|
|
* The caller must make sure that nghttp2_bufs_reset(bufs) is called
|
|
|
|
* before calling this function.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or returns one of the
|
|
|
|
* following negative error codes:
|
2012-02-21 15:56:51 +01:00
|
|
|
*
|
2014-03-13 14:11:02 +01:00
|
|
|
* NGHTTP2_ERR_FRAME_SIZE_ERROR
|
|
|
|
* The length of the frame is too large.
|
2012-01-28 11:22:38 +01:00
|
|
|
*/
|
2014-03-13 14:11:02 +01:00
|
|
|
int nghttp2_frame_pack_settings(nghttp2_bufs *bufs, nghttp2_settings *frame);
|
2012-01-28 11:22:38 +01:00
|
|
|
|
2013-08-03 11:05:14 +02:00
|
|
|
/*
|
|
|
|
* Packs the |iv|, which includes |niv| entries, in the |buf|,
|
|
|
|
* assuming the |buf| has at least 8 * |niv| bytes.
|
|
|
|
*
|
|
|
|
* Returns the number of bytes written into the |buf|.
|
|
|
|
*/
|
|
|
|
size_t nghttp2_frame_pack_settings_payload(uint8_t *buf,
|
2013-09-09 14:30:39 +02:00
|
|
|
const nghttp2_settings_entry *iv,
|
2013-08-03 11:05:14 +02:00
|
|
|
size_t niv);
|
|
|
|
|
2014-01-26 08:46:18 +01:00
|
|
|
void nghttp2_frame_unpack_settings_entry(nghttp2_settings_entry *iv,
|
|
|
|
const uint8_t *payload);
|
|
|
|
|
2012-01-28 11:22:38 +01:00
|
|
|
/*
|
2016-04-10 09:36:04 +02:00
|
|
|
* Initializes payload of frame->settings. The |frame| takes
|
|
|
|
* ownership of |iv|.
|
2012-01-27 10:21:14 +01:00
|
|
|
*/
|
2016-04-10 09:36:04 +02:00
|
|
|
void nghttp2_frame_unpack_settings_payload(nghttp2_settings *frame,
|
|
|
|
nghttp2_settings_entry *iv,
|
|
|
|
size_t niv);
|
2014-01-26 07:44:43 +01:00
|
|
|
|
2013-08-03 11:05:14 +02:00
|
|
|
/*
|
|
|
|
* Unpacks SETTINGS payload into |*iv_ptr|. The number of entries are
|
|
|
|
* assigned to the |*niv_ptr|. This function allocates enough memory
|
|
|
|
* to store the result in |*iv_ptr|. The caller is responsible to free
|
|
|
|
* |*iv_ptr| after its use.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
*/
|
2014-01-26 08:46:18 +01:00
|
|
|
int nghttp2_frame_unpack_settings_payload2(nghttp2_settings_entry **iv_ptr,
|
|
|
|
size_t *niv_ptr,
|
|
|
|
const uint8_t *payload,
|
2014-12-07 15:07:13 +01:00
|
|
|
size_t payloadlen, nghttp2_mem *mem);
|
2013-08-03 11:05:14 +02:00
|
|
|
|
2013-07-24 18:49:05 +02:00
|
|
|
/*
|
|
|
|
* Packs PUSH_PROMISE frame |frame| in wire format and store it in
|
2014-03-13 14:11:02 +01:00
|
|
|
* |bufs|. This function expands |bufs| as necessary to store
|
|
|
|
* frame.
|
2013-07-24 18:49:05 +02:00
|
|
|
*
|
2014-03-13 14:11:02 +01:00
|
|
|
* The caller must make sure that nghttp2_bufs_reset(bufs) is called
|
|
|
|
* before calling this function.
|
2014-02-15 08:30:43 +01:00
|
|
|
*
|
2013-07-24 18:49:05 +02:00
|
|
|
* frame->hd.length is assigned after length is determined during
|
2014-05-06 11:02:26 +02:00
|
|
|
* packing process. CONTINUATION frames are also serialized in this
|
2014-03-13 14:11:02 +01:00
|
|
|
* function. This function does not handle padding.
|
2013-07-24 18:49:05 +02:00
|
|
|
*
|
2014-03-13 14:11:02 +01:00
|
|
|
* This function returns 0 if it succeeds, or returns one of the
|
2014-02-15 08:30:43 +01:00
|
|
|
* following negative error codes:
|
|
|
|
*
|
2013-07-24 18:49:05 +02:00
|
|
|
* NGHTTP2_ERR_HEADER_COMP
|
|
|
|
* The deflate operation failed.
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
*/
|
2014-03-13 14:11:02 +01:00
|
|
|
int nghttp2_frame_pack_push_promise(nghttp2_bufs *bufs,
|
|
|
|
nghttp2_push_promise *frame,
|
|
|
|
nghttp2_hd_deflater *deflater);
|
2013-07-24 18:49:05 +02:00
|
|
|
|
|
|
|
/*
|
2014-05-06 11:02:26 +02:00
|
|
|
* Unpacks PUSH_PROMISE frame byte sequence into |frame|. This
|
|
|
|
* function only unapcks bytes that come before name/value header
|
2014-06-07 11:15:36 +02:00
|
|
|
* block and after possible Pad Length field.
|
2013-07-24 18:49:05 +02:00
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
2014-01-26 08:46:18 +01:00
|
|
|
* NGHTTP2_ERR_PROTO
|
|
|
|
* TODO END_HEADERS flag is not set
|
2013-07-24 18:49:05 +02:00
|
|
|
*/
|
2014-01-26 07:44:43 +01:00
|
|
|
int nghttp2_frame_unpack_push_promise_payload(nghttp2_push_promise *frame,
|
2017-03-11 09:46:39 +01:00
|
|
|
const uint8_t *payload);
|
2014-01-26 07:44:43 +01:00
|
|
|
|
2012-01-27 10:21:14 +01:00
|
|
|
/*
|
2014-03-13 14:11:02 +01:00
|
|
|
* Packs PING frame |frame| in wire format and store it in
|
|
|
|
* |bufs|.
|
|
|
|
*
|
|
|
|
* The caller must make sure that nghttp2_bufs_reset(bufs) is called
|
|
|
|
* before calling this function.
|
2012-03-26 16:19:58 +02:00
|
|
|
*
|
2014-05-06 11:02:26 +02:00
|
|
|
* This function always succeeds and returns 0.
|
2012-01-27 10:21:14 +01:00
|
|
|
*/
|
2014-03-13 14:11:02 +01:00
|
|
|
int nghttp2_frame_pack_ping(nghttp2_bufs *bufs, nghttp2_ping *frame);
|
2012-01-27 11:35:05 +01:00
|
|
|
|
2012-05-25 06:49:18 +02:00
|
|
|
/*
|
2013-07-15 14:45:59 +02:00
|
|
|
* Unpacks PING wire format into |frame|.
|
2012-05-25 06:49:18 +02:00
|
|
|
*/
|
2014-01-26 07:44:43 +01:00
|
|
|
void nghttp2_frame_unpack_ping_payload(nghttp2_ping *frame,
|
2017-03-11 09:46:39 +01:00
|
|
|
const uint8_t *payload);
|
2014-01-26 07:44:43 +01:00
|
|
|
|
2012-01-25 13:31:28 +01:00
|
|
|
/*
|
2014-03-13 14:11:02 +01:00
|
|
|
* Packs GOAWAY frame |frame| in wire format and store it in |bufs|.
|
|
|
|
* This function expands |bufs| as necessary to store frame.
|
|
|
|
*
|
|
|
|
* The caller must make sure that nghttp2_bufs_reset(bufs) is called
|
|
|
|
* before calling this function.
|
2012-02-21 15:56:51 +01:00
|
|
|
*
|
2013-07-15 14:45:59 +02:00
|
|
|
* This function returns 0 if it succeeds or one of the following
|
|
|
|
* negative error codes:
|
2012-02-21 15:56:51 +01:00
|
|
|
*
|
2013-07-12 17:19:03 +02:00
|
|
|
* NGHTTP2_ERR_NOMEM
|
2012-02-21 15:56:51 +01:00
|
|
|
* Out of memory.
|
2014-03-13 14:11:02 +01:00
|
|
|
* NGHTTP2_ERR_FRAME_SIZE_ERROR
|
|
|
|
* The length of the frame is too large.
|
2012-01-25 13:31:28 +01:00
|
|
|
*/
|
2014-03-13 14:11:02 +01:00
|
|
|
int nghttp2_frame_pack_goaway(nghttp2_bufs *bufs, nghttp2_goaway *frame);
|
2012-01-25 13:31:28 +01:00
|
|
|
|
|
|
|
/*
|
2014-03-22 10:59:59 +01:00
|
|
|
* Unpacks GOAWAY wire format into |frame|. The |payload| of length
|
|
|
|
* |payloadlen| contains first 8 bytes of payload. The
|
|
|
|
* |var_gift_payload| of length |var_gift_payloadlen| contains
|
|
|
|
* remaining payload and its buffer is gifted to the function and then
|
|
|
|
* |frame|. The |var_gift_payloadlen| must be freed by
|
|
|
|
* nghttp2_frame_goaway_free().
|
2012-01-25 13:31:28 +01:00
|
|
|
*/
|
2014-01-26 07:44:43 +01:00
|
|
|
void nghttp2_frame_unpack_goaway_payload(nghttp2_goaway *frame,
|
2014-03-22 10:59:59 +01:00
|
|
|
const uint8_t *payload,
|
|
|
|
uint8_t *var_gift_payload,
|
|
|
|
size_t var_gift_payloadlen);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unpacks GOAWAY wire format into |frame|. This function only exists
|
|
|
|
* for unit test. After allocating buffer for debug data, this
|
|
|
|
* function internally calls nghttp2_frame_unpack_goaway_payload().
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
*/
|
|
|
|
int nghttp2_frame_unpack_goaway_payload2(nghttp2_goaway *frame,
|
2014-01-26 07:44:43 +01:00
|
|
|
const uint8_t *payload,
|
2014-12-07 15:07:13 +01:00
|
|
|
size_t payloadlen, nghttp2_mem *mem);
|
2014-01-26 07:44:43 +01:00
|
|
|
|
2012-02-24 17:47:37 +01:00
|
|
|
/*
|
|
|
|
* Packs WINDOW_UPDATE frame |frame| in wire frame format and store it
|
2014-03-13 14:11:02 +01:00
|
|
|
* in |bufs|.
|
2012-02-24 17:47:37 +01:00
|
|
|
*
|
2014-03-13 14:11:02 +01:00
|
|
|
* The caller must make sure that nghttp2_bufs_reset(bufs) is called
|
|
|
|
* before calling this function.
|
|
|
|
*
|
2014-05-06 11:02:26 +02:00
|
|
|
* This function always succeeds and returns 0.
|
2012-02-24 17:47:37 +01:00
|
|
|
*/
|
2014-03-13 14:11:02 +01:00
|
|
|
int nghttp2_frame_pack_window_update(nghttp2_bufs *bufs,
|
|
|
|
nghttp2_window_update *frame);
|
2012-02-24 17:47:37 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Unpacks WINDOW_UPDATE frame byte sequence into |frame|.
|
|
|
|
*/
|
2014-01-26 07:44:43 +01:00
|
|
|
void nghttp2_frame_unpack_window_update_payload(nghttp2_window_update *frame,
|
2017-03-11 09:46:39 +01:00
|
|
|
const uint8_t *payload);
|
2014-01-26 07:44:43 +01:00
|
|
|
|
2016-03-29 16:29:26 +02:00
|
|
|
/*
|
|
|
|
* Packs ALTSVC frame |frame| in wire frame format and store it in
|
|
|
|
* |bufs|.
|
|
|
|
*
|
|
|
|
* The caller must make sure that nghttp2_bufs_reset(bufs) is called
|
|
|
|
* before calling this function.
|
|
|
|
*
|
|
|
|
* This function always succeeds and returns 0.
|
|
|
|
*/
|
|
|
|
int nghttp2_frame_pack_altsvc(nghttp2_bufs *bufs, nghttp2_extension *ext);
|
|
|
|
|
2016-04-03 15:58:25 +02:00
|
|
|
/*
|
|
|
|
* Unpacks ALTSVC wire format into |frame|. The |payload| of
|
|
|
|
* |payloadlen| bytes contains frame payload. This function assumes
|
|
|
|
* that frame->payload points to the nghttp2_ext_altsvc object.
|
|
|
|
*
|
|
|
|
* This function always succeeds and returns 0.
|
|
|
|
*/
|
|
|
|
void nghttp2_frame_unpack_altsvc_payload(nghttp2_extension *frame,
|
|
|
|
size_t origin_len, uint8_t *payload,
|
|
|
|
size_t payloadlen);
|
2016-04-09 15:32:48 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Unpacks ALTSVC wire format into |frame|. This function only exists
|
|
|
|
* for unit test. After allocating buffer for fields, this function
|
|
|
|
* internally calls nghttp2_frame_unpack_altsvc_payload().
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
* NGHTTP2_ERR_FRAME_SIZE_ERROR
|
|
|
|
* The payload is too small.
|
|
|
|
*/
|
|
|
|
int nghttp2_frame_unpack_altsvc_payload2(nghttp2_extension *frame,
|
|
|
|
const uint8_t *payload,
|
|
|
|
size_t payloadlen, nghttp2_mem *mem);
|
|
|
|
|
2018-05-10 03:57:02 +02:00
|
|
|
/*
|
|
|
|
* Packs ORIGIN frame |frame| in wire frame format and store it in
|
|
|
|
* |bufs|.
|
|
|
|
*
|
|
|
|
* The caller must make sure that nghttp2_bufs_reset(bufs) is called
|
|
|
|
* before calling this function.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_FRAME_SIZE_ERROR
|
|
|
|
* The length of the frame is too large.
|
|
|
|
*/
|
|
|
|
int nghttp2_frame_pack_origin(nghttp2_bufs *bufs, nghttp2_extension *ext);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unpacks ORIGIN wire format into |frame|. The |payload| of length
|
|
|
|
* |payloadlen| contains the frame payload.
|
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
* NGHTTP2_ERR_FRAME_SIZE_ERROR
|
|
|
|
* The payload is too small.
|
|
|
|
*/
|
|
|
|
int nghttp2_frame_unpack_origin_payload(nghttp2_extension *frame,
|
|
|
|
const uint8_t *payload,
|
|
|
|
size_t payloadlen, nghttp2_mem *mem);
|
2012-01-24 14:02:24 +01:00
|
|
|
/*
|
2013-07-19 17:08:14 +02:00
|
|
|
* Initializes HEADERS frame |frame| with given values. |frame| takes
|
|
|
|
* ownership of |nva|, so caller must not free it. If |stream_id| is
|
|
|
|
* not assigned yet, it must be -1.
|
2012-01-24 14:02:24 +01:00
|
|
|
*/
|
2014-11-27 15:39:04 +01:00
|
|
|
void nghttp2_frame_headers_init(nghttp2_headers *frame, uint8_t flags,
|
|
|
|
int32_t stream_id, nghttp2_headers_category cat,
|
2014-03-25 18:04:24 +01:00
|
|
|
const nghttp2_priority_spec *pri_spec,
|
2013-07-19 17:08:14 +02:00
|
|
|
nghttp2_nv *nva, size_t nvlen);
|
2012-01-27 11:35:05 +01:00
|
|
|
|
2014-12-07 15:07:13 +01:00
|
|
|
void nghttp2_frame_headers_free(nghttp2_headers *frame, nghttp2_mem *mem);
|
2012-01-28 11:22:38 +01:00
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
void nghttp2_frame_priority_init(nghttp2_priority *frame, int32_t stream_id,
|
2014-03-25 18:04:24 +01:00
|
|
|
const nghttp2_priority_spec *pri_spec);
|
2012-01-27 10:21:14 +01:00
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
void nghttp2_frame_priority_free(nghttp2_priority *frame);
|
2012-01-27 10:21:14 +01:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
void nghttp2_frame_rst_stream_init(nghttp2_rst_stream *frame, int32_t stream_id,
|
2014-08-23 10:34:56 +02:00
|
|
|
uint32_t error_code);
|
2012-01-25 13:31:28 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
void nghttp2_frame_rst_stream_free(nghttp2_rst_stream *frame);
|
2012-01-25 13:31:28 +01:00
|
|
|
|
2013-07-24 18:49:05 +02:00
|
|
|
/*
|
|
|
|
* Initializes PUSH_PROMISE frame |frame| with given values. |frame|
|
|
|
|
* takes ownership of |nva|, so caller must not free it.
|
|
|
|
*/
|
2014-11-27 15:39:04 +01:00
|
|
|
void nghttp2_frame_push_promise_init(nghttp2_push_promise *frame, uint8_t flags,
|
|
|
|
int32_t stream_id,
|
2013-07-24 18:49:05 +02:00
|
|
|
int32_t promised_stream_id,
|
|
|
|
nghttp2_nv *nva, size_t nvlen);
|
|
|
|
|
2014-12-07 15:07:13 +01:00
|
|
|
void nghttp2_frame_push_promise_free(nghttp2_push_promise *frame,
|
|
|
|
nghttp2_mem *mem);
|
2013-07-24 18:49:05 +02:00
|
|
|
|
2012-01-31 16:26:26 +01:00
|
|
|
/*
|
|
|
|
* Initializes SETTINGS frame |frame| with given values. |frame| takes
|
2012-05-11 15:58:12 +02:00
|
|
|
* ownership of |iv|, so caller must not free it. The |flags| are
|
2013-07-12 17:19:03 +02:00
|
|
|
* bitwise-OR of one or more of nghttp2_settings_flag.
|
2012-01-31 16:26:26 +01:00
|
|
|
*/
|
2013-10-27 11:22:51 +01:00
|
|
|
void nghttp2_frame_settings_init(nghttp2_settings *frame, uint8_t flags,
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_settings_entry *iv, size_t niv);
|
2012-01-31 16:26:26 +01:00
|
|
|
|
2014-12-07 15:07:13 +01:00
|
|
|
void nghttp2_frame_settings_free(nghttp2_settings *frame, nghttp2_mem *mem);
|
2012-01-31 16:26:26 +01:00
|
|
|
|
2012-04-05 18:45:39 +02:00
|
|
|
/*
|
2013-07-15 14:45:59 +02:00
|
|
|
* Initializes PING frame |frame| with given values. If the
|
|
|
|
* |opqeue_data| is not NULL, it must point to 8 bytes memory region
|
|
|
|
* of data. The data pointed by |opaque_data| is copied. It can be
|
|
|
|
* NULL. In this case, 8 bytes NULL is used.
|
|
|
|
*/
|
|
|
|
void nghttp2_frame_ping_init(nghttp2_ping *frame, uint8_t flags,
|
|
|
|
const uint8_t *opque_data);
|
|
|
|
|
|
|
|
void nghttp2_frame_ping_free(nghttp2_ping *frame);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initializes GOAWAY frame |frame| with given values. On success,
|
|
|
|
* this function takes ownership of |opaque_data|, so caller must not
|
|
|
|
* free it. If the |opaque_data_len| is 0, opaque_data could be NULL.
|
2012-04-05 18:45:39 +02:00
|
|
|
*/
|
2013-07-15 14:45:59 +02:00
|
|
|
void nghttp2_frame_goaway_init(nghttp2_goaway *frame, int32_t last_stream_id,
|
2014-11-27 15:39:04 +01:00
|
|
|
uint32_t error_code, uint8_t *opaque_data,
|
|
|
|
size_t opaque_data_len);
|
2013-07-15 14:45:59 +02:00
|
|
|
|
2014-12-07 15:07:13 +01:00
|
|
|
void nghttp2_frame_goaway_free(nghttp2_goaway *frame, nghttp2_mem *mem);
|
2013-07-15 14:45:59 +02:00
|
|
|
|
|
|
|
void nghttp2_frame_window_update_init(nghttp2_window_update *frame,
|
2014-11-27 15:39:04 +01:00
|
|
|
uint8_t flags, int32_t stream_id,
|
2013-07-15 14:45:59 +02:00
|
|
|
int32_t window_size_increment);
|
2012-04-05 18:45:39 +02:00
|
|
|
|
2013-07-15 14:45:59 +02:00
|
|
|
void nghttp2_frame_window_update_free(nghttp2_window_update *frame);
|
2012-04-05 18:45:39 +02:00
|
|
|
|
2015-10-10 15:27:48 +02:00
|
|
|
void nghttp2_frame_extension_init(nghttp2_extension *frame, uint8_t type,
|
|
|
|
uint8_t flags, int32_t stream_id,
|
|
|
|
void *payload);
|
|
|
|
|
|
|
|
void nghttp2_frame_extension_free(nghttp2_extension *frame);
|
|
|
|
|
2016-04-03 15:58:25 +02:00
|
|
|
/*
|
|
|
|
* Initializes ALTSVC frame |frame| with given values. This function
|
|
|
|
* assumes that frame->payload points to nghttp2_ext_altsvc object.
|
|
|
|
* Also |origin| and |field_value| are allocated in single buffer,
|
|
|
|
* starting |origin|. On success, this function takes ownership of
|
|
|
|
* |origin|, so caller must not free it.
|
|
|
|
*/
|
2016-03-29 16:29:26 +02:00
|
|
|
void nghttp2_frame_altsvc_init(nghttp2_extension *frame, int32_t stream_id,
|
|
|
|
uint8_t *origin, size_t origin_len,
|
|
|
|
uint8_t *field_value, size_t field_value_len);
|
|
|
|
|
2016-04-03 15:58:25 +02:00
|
|
|
/*
|
|
|
|
* Frees up resources under |frame|. This function does not free
|
|
|
|
* nghttp2_ext_altsvc object pointed by frame->payload. This function
|
|
|
|
* only frees origin pointed by nghttp2_ext_altsvc.origin. Therefore,
|
|
|
|
* other fields must be allocated in the same buffer with origin.
|
|
|
|
*/
|
2016-03-29 16:29:26 +02:00
|
|
|
void nghttp2_frame_altsvc_free(nghttp2_extension *frame, nghttp2_mem *mem);
|
|
|
|
|
2018-05-10 03:57:02 +02:00
|
|
|
/*
|
|
|
|
* Initializes ORIGIN frame |frame| with given values. This function
|
|
|
|
* assumes that frame->payload points to nghttp2_ext_origin object.
|
|
|
|
* Also |ov| and the memory pointed by the field of its elements are
|
|
|
|
* allocated in single buffer, starting with |ov|. On success, this
|
|
|
|
* function takes ownership of |ov|, so caller must not free it.
|
|
|
|
*/
|
|
|
|
void nghttp2_frame_origin_init(nghttp2_extension *frame,
|
|
|
|
nghttp2_origin_entry *ov, size_t nov);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Frees up resources under |frame|. This function does not free
|
|
|
|
* nghttp2_ext_origin object pointed by frame->payload. This function
|
|
|
|
* only frees nghttp2_ext_origin.ov. Therefore, other fields must be
|
|
|
|
* allocated in the same buffer with ov.
|
|
|
|
*/
|
|
|
|
void nghttp2_frame_origin_free(nghttp2_extension *frame, nghttp2_mem *mem);
|
|
|
|
|
2014-02-07 15:22:17 +01:00
|
|
|
/*
|
2014-06-07 11:15:36 +02:00
|
|
|
* Returns the number of padding bytes after payload. The total
|
|
|
|
* padding length is given in the |padlen|. The returned value does
|
2015-09-25 15:28:03 +02:00
|
|
|
* not include the Pad Length field. If |padlen| is 0, this function
|
|
|
|
* returns 0, regardless of frame->hd.flags.
|
2014-02-07 15:22:17 +01:00
|
|
|
*/
|
2014-02-08 16:35:21 +01:00
|
|
|
size_t nghttp2_frame_trail_padlen(nghttp2_frame *frame, size_t padlen);
|
2014-02-07 15:22:17 +01:00
|
|
|
|
2014-10-02 17:59:44 +02:00
|
|
|
void nghttp2_frame_data_init(nghttp2_data *frame, uint8_t flags,
|
|
|
|
int32_t stream_id);
|
2012-01-26 17:17:40 +01:00
|
|
|
|
2014-10-02 17:59:44 +02:00
|
|
|
void nghttp2_frame_data_free(nghttp2_data *frame);
|
2012-01-26 17:17:40 +01:00
|
|
|
|
2012-01-31 16:26:26 +01:00
|
|
|
/*
|
|
|
|
* Makes copy of |iv| and return the copy. The |niv| is the number of
|
|
|
|
* entries in |iv|. This function returns the pointer to the copy if
|
|
|
|
* it succeeds, or NULL.
|
|
|
|
*/
|
2014-11-27 15:39:04 +01:00
|
|
|
nghttp2_settings_entry *nghttp2_frame_iv_copy(const nghttp2_settings_entry *iv,
|
2014-12-07 15:07:13 +01:00
|
|
|
size_t niv, nghttp2_mem *mem);
|
2012-01-31 16:26:26 +01:00
|
|
|
|
2013-07-19 17:08:14 +02:00
|
|
|
/*
|
2013-11-13 15:56:02 +01:00
|
|
|
* Sorts the |nva| in ascending order of name and value. If names are
|
|
|
|
* equivalent, sort them by value.
|
2013-07-19 17:08:14 +02:00
|
|
|
*/
|
|
|
|
void nghttp2_nv_array_sort(nghttp2_nv *nva, size_t nvlen);
|
|
|
|
|
2013-09-10 17:55:35 +02:00
|
|
|
/*
|
|
|
|
* Copies name/value pairs from |nva|, which contains |nvlen| pairs,
|
|
|
|
* to |*nva_ptr|, which is dynamically allocated so that all items can
|
2015-03-23 15:25:57 +01:00
|
|
|
* be stored. The resultant name and value in nghttp2_nv are
|
|
|
|
* guaranteed to be NULL-terminated even if the input is not
|
|
|
|
* null-terminated.
|
2013-09-10 17:55:35 +02:00
|
|
|
*
|
|
|
|
* The |*nva_ptr| must be freed using nghttp2_nv_array_del().
|
|
|
|
*
|
2014-06-11 16:37:16 +02:00
|
|
|
* This function returns 0 if it succeeds or one of the following
|
|
|
|
* negative error codes:
|
2013-09-10 17:55:35 +02:00
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
|
|
|
*/
|
2014-11-27 15:39:04 +01:00
|
|
|
int nghttp2_nv_array_copy(nghttp2_nv **nva_ptr, const nghttp2_nv *nva,
|
2014-12-07 15:07:13 +01:00
|
|
|
size_t nvlen, nghttp2_mem *mem);
|
2013-09-10 17:55:35 +02:00
|
|
|
|
2013-07-19 09:50:31 +02:00
|
|
|
/*
|
|
|
|
* Returns nonzero if the name/value pair |a| equals to |b|. The name
|
|
|
|
* is compared in case-sensitive, because we ensure that this function
|
|
|
|
* is called after the name is lower-cased.
|
|
|
|
*/
|
|
|
|
int nghttp2_nv_equal(const nghttp2_nv *a, const nghttp2_nv *b);
|
|
|
|
|
2013-07-19 17:08:14 +02:00
|
|
|
/*
|
|
|
|
* Frees |nva|.
|
|
|
|
*/
|
2014-12-07 15:07:13 +01:00
|
|
|
void nghttp2_nv_array_del(nghttp2_nv *nva, nghttp2_mem *mem);
|
2013-07-19 17:08:14 +02:00
|
|
|
|
2013-08-03 11:05:14 +02:00
|
|
|
/*
|
|
|
|
* Checks that the |iv|, which includes |niv| entries, does not have
|
2014-02-05 16:23:20 +01:00
|
|
|
* invalid values.
|
2013-08-03 11:05:14 +02:00
|
|
|
*
|
|
|
|
* This function returns nonzero if it succeeds, or 0.
|
|
|
|
*/
|
2014-02-05 16:23:20 +01:00
|
|
|
int nghttp2_iv_check(const nghttp2_settings_entry *iv, size_t niv);
|
2013-08-03 11:05:14 +02:00
|
|
|
|
2014-02-08 09:46:21 +01:00
|
|
|
/*
|
2014-06-07 11:15:36 +02:00
|
|
|
* Sets Pad Length field and flags and adjusts frame header position
|
|
|
|
* of each buffers in |bufs|. The number of padding is given in the
|
|
|
|
* |padlen| including Pad Length field. The |hd| is the frame header
|
2015-04-03 16:10:51 +02:00
|
|
|
* for the serialized data. This function fills zeros padding region
|
|
|
|
* unless framehd_only is nonzero.
|
2014-03-13 14:11:02 +01:00
|
|
|
*
|
|
|
|
* This function returns 0 if it succeeds, or one of the following
|
|
|
|
* negative error codes:
|
|
|
|
*
|
|
|
|
* NGHTTP2_ERR_NOMEM
|
|
|
|
* Out of memory.
|
2014-05-06 11:02:26 +02:00
|
|
|
* NGHTTP2_ERR_FRAME_SIZE_ERROR
|
|
|
|
* The length of the resulting frame is too large.
|
2014-03-13 14:11:02 +01:00
|
|
|
*/
|
|
|
|
int nghttp2_frame_add_pad(nghttp2_bufs *bufs, nghttp2_frame_hd *hd,
|
2015-04-03 16:10:51 +02:00
|
|
|
size_t padlen, int framehd_only);
|
2014-02-08 09:46:21 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
#endif /* NGHTTP2_FRAME_H */
|