2013-11-10 12:46:18 +01:00
|
|
|
/*
|
|
|
|
* nghttp2 - HTTP/2.0 C Library
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2013-10-21 17:42:46 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <assert.h>
|
2013-10-26 16:31:41 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
2013-10-21 17:42:46 +02:00
|
|
|
|
|
|
|
#include <jansson.h>
|
|
|
|
|
|
|
|
#include "nghttp2_hd.h"
|
|
|
|
#include "nghttp2_frame.h"
|
|
|
|
|
2013-10-26 18:04:42 +02:00
|
|
|
#include "comp_helper.h"
|
|
|
|
|
2013-10-26 16:31:41 +02:00
|
|
|
typedef struct {
|
|
|
|
size_t table_size;
|
2013-12-06 15:17:38 +01:00
|
|
|
nghttp2_hd_side side;
|
2013-10-26 18:04:42 +02:00
|
|
|
int dump_header_table;
|
2013-10-26 16:31:41 +02:00
|
|
|
} inflate_config;
|
|
|
|
|
|
|
|
static inflate_config config;
|
|
|
|
|
2013-10-21 17:42:46 +02:00
|
|
|
static uint8_t to_ud(char c)
|
|
|
|
{
|
|
|
|
if(c >= 'A' && c <= 'Z') {
|
|
|
|
return c - 'A' + 10;
|
|
|
|
} else if(c >= 'a' && c <= 'z') {
|
|
|
|
return c - 'a' + 10;
|
|
|
|
} else {
|
|
|
|
return c - '0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void decode_hex(uint8_t *dest, const char *src, size_t len)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
for(i = 0; i < len; i += 2) {
|
|
|
|
*dest++ = to_ud(src[i]) << 4 | to_ud(src[i + 1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-26 18:04:42 +02:00
|
|
|
static void nva_to_json(nghttp2_hd_context *inflater,
|
|
|
|
const nghttp2_nv *nva, size_t nvlen, int seq)
|
2013-10-21 17:42:46 +02:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
json_t *obj;
|
|
|
|
json_t *headers;
|
|
|
|
obj = json_object();
|
|
|
|
json_object_set_new(obj, "seq", json_integer(seq));
|
|
|
|
headers = json_array();
|
|
|
|
json_object_set_new(obj, "headers", headers);
|
|
|
|
for(i = 0; i < nvlen; ++i) {
|
|
|
|
json_t *nv_pair = json_array();
|
|
|
|
const nghttp2_nv *nv = &nva[i];
|
|
|
|
json_array_append_new(nv_pair, json_pack("s#", nv->name, nv->namelen));
|
|
|
|
json_array_append_new(nv_pair, json_pack("s#", nv->value, nv->valuelen));
|
|
|
|
json_array_append_new(headers, nv_pair);
|
|
|
|
}
|
2013-10-26 18:04:42 +02:00
|
|
|
if(config.dump_header_table) {
|
|
|
|
json_object_set_new(obj, "headerTable", dump_header_table(inflater));
|
|
|
|
}
|
2013-10-21 17:42:46 +02:00
|
|
|
json_dumpf(obj, stdout, JSON_INDENT(2) | JSON_PRESERVE_ORDER);
|
|
|
|
json_decref(obj);
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static int inflate_hd(json_t *obj, nghttp2_hd_context *inflater, int seq)
|
|
|
|
{
|
|
|
|
json_t *js;
|
|
|
|
size_t inputlen;
|
|
|
|
uint8_t buf[16*1024];
|
|
|
|
ssize_t resnvlen;
|
|
|
|
nghttp2_nv *resnva;
|
|
|
|
|
|
|
|
js = json_object_get(obj, "output");
|
|
|
|
if(js == NULL) {
|
|
|
|
fprintf(stderr, "output key is missing at %d\n", seq);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
inputlen = strlen(json_string_value(js));
|
|
|
|
if(inputlen & 1) {
|
|
|
|
fprintf(stderr, "Badly formatted output value at %d\n", seq);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
if(inputlen / 2 > sizeof(buf)) {
|
|
|
|
fprintf(stderr, "Too big input length %zu at %d\n", inputlen / 2, seq);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
decode_hex(buf, json_string_value(js), inputlen);
|
|
|
|
|
|
|
|
resnvlen = nghttp2_hd_inflate_hd(inflater, &resnva, buf, inputlen / 2);
|
|
|
|
if(resnvlen < 0) {
|
|
|
|
fprintf(stderr, "inflate failed with error code %zd at %d\n",
|
|
|
|
resnvlen, seq);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2013-10-26 18:04:42 +02:00
|
|
|
nva_to_json(inflater, resnva, resnvlen, seq);
|
2013-10-21 17:42:46 +02:00
|
|
|
nghttp2_hd_end_headers(inflater);
|
|
|
|
nghttp2_nv_array_del(resnva);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-07 17:35:15 +01:00
|
|
|
static int perform(void)
|
2013-10-21 17:42:46 +02:00
|
|
|
{
|
|
|
|
nghttp2_hd_context inflater;
|
2013-10-21 17:50:09 +02:00
|
|
|
size_t i;
|
2013-10-21 17:42:46 +02:00
|
|
|
json_t *json;
|
|
|
|
json_error_t error;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
json = json_loadf(stdin, 0, &error);
|
|
|
|
if(json == NULL) {
|
2013-10-21 17:50:09 +02:00
|
|
|
fprintf(stderr, "JSON loading failed\n");
|
|
|
|
exit(EXIT_FAILURE);
|
2013-10-21 17:42:46 +02:00
|
|
|
}
|
2013-10-26 16:31:41 +02:00
|
|
|
nghttp2_hd_inflate_init(&inflater, config.side);
|
|
|
|
nghttp2_hd_change_table_size(&inflater, config.table_size);
|
2013-10-21 17:42:46 +02:00
|
|
|
printf("[\n");
|
|
|
|
len = json_array_size(json);
|
|
|
|
for(i = 0; i < len; ++i) {
|
|
|
|
json_t *obj = json_array_get(json, i);
|
|
|
|
if(!json_is_object(obj)) {
|
2013-10-21 17:50:09 +02:00
|
|
|
fprintf(stderr, "Unexpected JSON type at %zu. It should be object.\n",
|
|
|
|
i);
|
2013-10-21 17:42:46 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(inflate_hd(obj, &inflater, i) != 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(i + 1 < len) {
|
|
|
|
printf(",\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("]\n");
|
|
|
|
nghttp2_hd_inflate_free(&inflater);
|
|
|
|
json_decref(json);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-21 17:50:09 +02:00
|
|
|
static void print_help(void)
|
2013-10-21 17:42:46 +02:00
|
|
|
{
|
2013-10-26 16:31:41 +02:00
|
|
|
printf("HPACK-draft-04 header decompressor\n"
|
|
|
|
"Usage: inflatehd [OPTIONS] < INPUT\n"
|
|
|
|
"\n"
|
2013-10-21 17:42:46 +02:00
|
|
|
"Reads JSON array from stdin and outputs inflated name/value pairs\n"
|
|
|
|
"in JSON array.\n"
|
|
|
|
"The element of input array must be a JSON object. Each object must\n"
|
2013-10-28 16:21:31 +01:00
|
|
|
"have at least following key:\n"
|
2013-10-21 17:42:46 +02:00
|
|
|
"\n"
|
|
|
|
" output: deflated header block in hex-string.\n"
|
|
|
|
"\n"
|
|
|
|
"Example:\n"
|
|
|
|
"[\n"
|
|
|
|
" { \"output\": \"0284f77778ff\" },\n"
|
|
|
|
" { \"output\": \"0185fafd3c3c7f81\" }\n"
|
|
|
|
"]\n"
|
|
|
|
"\n"
|
|
|
|
"The output of this program can be used as input for deflatehd.\n"
|
|
|
|
"\n"
|
|
|
|
"OPTIONS:\n"
|
|
|
|
" -r, --response Use response compression context instead of\n"
|
2013-10-26 16:31:41 +02:00
|
|
|
" request.\n"
|
|
|
|
" -s, --table-size=<N>\n"
|
2013-10-26 18:04:42 +02:00
|
|
|
" Set dynamic table size. In the HPACK\n"
|
2013-10-26 16:31:41 +02:00
|
|
|
" specification, this value is denoted by\n"
|
|
|
|
" SETTINGS_HEADER_TABLE_SIZE.\n"
|
2013-10-26 18:04:42 +02:00
|
|
|
" Default: 4096\n"
|
|
|
|
" -d, --dump-header-table\n"
|
|
|
|
" Output dynamic header table.\n");
|
2013-10-21 17:42:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct option long_options[] = {
|
|
|
|
{"response", no_argument, NULL, 'r'},
|
2013-10-26 16:31:41 +02:00
|
|
|
{"table-size", required_argument, NULL, 's'},
|
2013-10-26 18:04:42 +02:00
|
|
|
{"dump-header-table", no_argument, NULL, 'd'},
|
2013-10-21 17:42:46 +02:00
|
|
|
{NULL, 0, NULL, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2013-10-26 16:31:41 +02:00
|
|
|
char *end;
|
|
|
|
config.side = NGHTTP2_HD_SIDE_REQUEST;
|
|
|
|
config.table_size = NGHTTP2_HD_DEFAULT_MAX_BUFFER_SIZE;
|
2013-10-26 18:04:42 +02:00
|
|
|
config.dump_header_table = 0;
|
2013-10-21 17:42:46 +02:00
|
|
|
while(1) {
|
|
|
|
int option_index = 0;
|
2013-10-26 18:04:42 +02:00
|
|
|
int c = getopt_long(argc, argv, "dhrs:", long_options, &option_index);
|
2013-10-21 17:42:46 +02:00
|
|
|
if(c == -1) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch(c) {
|
|
|
|
case 'r':
|
|
|
|
/* --response */
|
2013-10-26 16:31:41 +02:00
|
|
|
config.side = NGHTTP2_HD_SIDE_RESPONSE;
|
2013-10-21 17:42:46 +02:00
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
print_help();
|
|
|
|
exit(EXIT_SUCCESS);
|
2013-10-26 16:31:41 +02:00
|
|
|
case 's':
|
|
|
|
/* --table-size */
|
|
|
|
config.table_size = strtoul(optarg, &end, 10);
|
|
|
|
if(errno == ERANGE || *end != '\0') {
|
|
|
|
fprintf(stderr, "-s: Bad option value\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
break;
|
2013-10-26 18:04:42 +02:00
|
|
|
case 'd':
|
|
|
|
/* --dump-header-table */
|
|
|
|
config.dump_header_table = 1;
|
|
|
|
break;
|
2013-10-21 17:42:46 +02:00
|
|
|
case '?':
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-10-26 16:31:41 +02:00
|
|
|
perform();
|
2013-10-21 17:42:46 +02:00
|
|
|
return 0;
|
|
|
|
}
|