nghttp2/src/app_helper.cc

524 lines
14 KiB
C++
Raw Normal View History

/*
2014-03-30 12:09:21 +02:00
* nghttp2 - HTTP/2 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.
*/
#include <sys/types.h>
2015-05-13 15:30:35 +02:00
#ifdef HAVE_SYS_SOCKET_H
2018-06-09 09:21:30 +02:00
# include <sys/socket.h>
2015-05-13 15:30:35 +02:00
#endif // HAVE_SYS_SOCKET_H
#ifdef HAVE_NETDB_H
2018-06-09 09:21:30 +02:00
# include <netdb.h>
2015-05-13 15:30:35 +02:00
#endif // HAVE_NETDB_H
#ifdef HAVE_UNISTD_H
2018-06-09 09:21:30 +02:00
# include <unistd.h>
2015-05-13 15:30:35 +02:00
#endif // HAVE_UNISTD_H
#ifdef HAVE_FCNTL_H
2018-06-09 09:21:30 +02:00
# include <fcntl.h>
2015-05-13 15:30:35 +02:00
#endif // HAVE_FCNTL_H
#ifdef HAVE_NETINET_IN_H
2018-06-09 09:21:30 +02:00
# include <netinet/in.h>
2015-05-13 15:30:35 +02:00
#endif // HAVE_NETINET_IN_H
#include <netinet/tcp.h>
#include <poll.h>
#include <cassert>
#include <cstdio>
#include <cerrno>
#include <cstdlib>
#include <cstring>
#include <string>
#include <iostream>
#include <string>
#include <set>
#include <iomanip>
#include <fstream>
#include <zlib.h>
2013-07-22 15:12:54 +02:00
#include "app_helper.h"
#include "util.h"
2013-12-05 13:54:36 +01:00
#include "http2.h"
#include "template.h"
2013-07-12 17:19:03 +02:00
namespace nghttp2 {
2012-01-29 16:34:10 +01:00
2013-08-09 17:37:57 +02:00
namespace {
2014-11-27 15:39:04 +01:00
const char *strsettingsid(int32_t id) {
switch (id) {
case NGHTTP2_SETTINGS_HEADER_TABLE_SIZE:
return "SETTINGS_HEADER_TABLE_SIZE";
case NGHTTP2_SETTINGS_ENABLE_PUSH:
return "SETTINGS_ENABLE_PUSH";
2013-08-09 17:37:57 +02:00
case NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS:
return "SETTINGS_MAX_CONCURRENT_STREAMS";
2013-08-09 17:37:57 +02:00
case NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE:
return "SETTINGS_INITIAL_WINDOW_SIZE";
case NGHTTP2_SETTINGS_MAX_FRAME_SIZE:
return "SETTINGS_MAX_FRAME_SIZE";
case NGHTTP2_SETTINGS_MAX_HEADER_LIST_SIZE:
return "SETTINGS_MAX_HEADER_LIST_SIZE";
case NGHTTP2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
return "SETTINGS_ENABLE_CONNECT_PROTOCOL";
case NGHTTP2_SETTINGS_NO_RFC7540_PRIORITIES:
return "SETTINGS_NO_RFC7540_PRIORITIES";
2013-08-09 17:37:57 +02:00
default:
return "UNKNOWN";
}
}
} // namespace
2013-07-15 17:15:04 +02:00
namespace {
std::string strframetype(uint8_t type) {
2014-11-27 15:39:04 +01:00
switch (type) {
case NGHTTP2_DATA:
return "DATA";
case NGHTTP2_HEADERS:
return "HEADERS";
case NGHTTP2_PRIORITY:
return "PRIORITY";
case NGHTTP2_RST_STREAM:
return "RST_STREAM";
case NGHTTP2_SETTINGS:
return "SETTINGS";
case NGHTTP2_PUSH_PROMISE:
return "PUSH_PROMISE";
case NGHTTP2_PING:
return "PING";
case NGHTTP2_GOAWAY:
return "GOAWAY";
case NGHTTP2_WINDOW_UPDATE:
return "WINDOW_UPDATE";
2016-03-31 12:46:13 +02:00
case NGHTTP2_ALTSVC:
return "ALTSVC";
2018-05-10 16:19:27 +02:00
case NGHTTP2_ORIGIN:
return "ORIGIN";
case NGHTTP2_PRIORITY_UPDATE:
return "PRIORITY_UPDATE";
}
std::string s = "extension(0x";
s += util::format_hex(&type, 1);
s += ')';
return s;
2012-01-27 20:30:23 +01:00
};
} // namespace
2012-01-27 20:30:23 +01:00
2012-02-01 16:37:48 +01:00
namespace {
bool color_output = false;
} // namespace
2014-11-27 15:39:04 +01:00
void set_color_output(bool f) { color_output = f; }
2012-02-01 16:37:48 +01:00
2013-01-27 08:27:17 +01:00
namespace {
FILE *outfile = stdout;
2013-01-27 08:27:17 +01:00
} // namespace
2014-11-27 15:39:04 +01:00
void set_output(FILE *file) { outfile = file; }
namespace {
2014-11-27 15:39:04 +01:00
void print_frame_attr_indent() { fprintf(outfile, " "); }
} // namespace
2013-01-27 08:27:17 +01:00
namespace {
2014-11-27 15:39:04 +01:00
const char *ansi_esc(const char *code) { return color_output ? code : ""; }
2013-01-27 08:27:17 +01:00
} // namespace
namespace {
2014-11-27 15:39:04 +01:00
const char *ansi_escend() { return color_output ? "\033[0m" : ""; }
2013-01-27 08:27:17 +01:00
} // namespace
namespace {
2014-11-27 15:39:04 +01:00
void print_nv(nghttp2_nv *nv) {
fprintf(outfile, "%s%s%s: %s\n", ansi_esc("\033[1;34m"), nv->name,
ansi_escend(), nv->value);
}
} // namespace
namespace {
2014-11-27 15:39:04 +01:00
void print_nv(nghttp2_nv *nva, size_t nvlen) {
auto end = nva + nvlen;
2014-11-27 15:39:04 +01:00
for (; nva != end; ++nva) {
print_frame_attr_indent();
print_nv(nva);
2012-01-29 16:34:10 +01:00
}
}
2017-11-23 06:19:12 +01:00
} // namespace
2012-01-29 16:34:10 +01:00
2014-11-27 15:39:04 +01:00
void print_timer() {
auto millis = get_timer();
2014-11-27 15:39:04 +01:00
fprintf(outfile, "%s[%3ld.%03ld]%s", ansi_esc("\033[33m"),
(long int)(millis.count() / 1000), (long int)(millis.count() % 1000),
ansi_escend());
}
2012-02-01 16:37:48 +01:00
namespace {
2014-11-27 15:39:04 +01:00
void print_frame_hd(const nghttp2_frame_hd &hd) {
fprintf(outfile, "<length=%zu, flags=0x%02x, stream_id=%d>\n", hd.length,
hd.flags, hd.stream_id);
2013-07-15 17:15:04 +02:00
}
} // namespace
namespace {
2014-11-27 15:39:04 +01:00
void print_flags(const nghttp2_frame_hd &hd) {
2013-07-15 17:15:04 +02:00
std::string s;
2014-11-27 15:39:04 +01:00
switch (hd.type) {
2013-07-15 17:15:04 +02:00
case NGHTTP2_DATA:
2014-11-27 15:39:04 +01:00
if (hd.flags & NGHTTP2_FLAG_END_STREAM) {
2013-07-15 17:15:04 +02:00
s += "END_STREAM";
}
2014-11-27 15:39:04 +01:00
if (hd.flags & NGHTTP2_FLAG_PADDED) {
if (!s.empty()) {
2014-02-07 15:22:17 +01:00
s += " | ";
}
s += "PADDED";
2014-02-07 15:22:17 +01:00
}
2013-07-15 17:15:04 +02:00
break;
case NGHTTP2_HEADERS:
2014-11-27 15:39:04 +01:00
if (hd.flags & NGHTTP2_FLAG_END_STREAM) {
2013-07-15 17:15:04 +02:00
s += "END_STREAM";
}
2014-11-27 15:39:04 +01:00
if (hd.flags & NGHTTP2_FLAG_END_HEADERS) {
if (!s.empty()) {
2013-07-15 17:15:04 +02:00
s += " | ";
}
s += "END_HEADERS";
}
2014-11-27 15:39:04 +01:00
if (hd.flags & NGHTTP2_FLAG_PADDED) {
if (!s.empty()) {
s += " | ";
}
s += "PADDED";
}
2014-11-27 15:39:04 +01:00
if (hd.flags & NGHTTP2_FLAG_PRIORITY) {
if (!s.empty()) {
2014-03-25 18:04:24 +01:00
s += " | ";
}
s += "PRIORITY";
2014-03-25 18:04:24 +01:00
}
break;
case NGHTTP2_PRIORITY:
2013-07-15 17:15:04 +02:00
break;
case NGHTTP2_SETTINGS:
2014-11-27 15:39:04 +01:00
if (hd.flags & NGHTTP2_FLAG_ACK) {
s += "ACK";
}
break;
2013-07-15 17:15:04 +02:00
case NGHTTP2_PUSH_PROMISE:
2014-11-27 15:39:04 +01:00
if (hd.flags & NGHTTP2_FLAG_END_HEADERS) {
s += "END_HEADERS";
2013-07-15 17:15:04 +02:00
}
2014-11-27 15:39:04 +01:00
if (hd.flags & NGHTTP2_FLAG_PADDED) {
if (!s.empty()) {
s += " | ";
}
s += "PADDED";
}
2013-07-15 17:15:04 +02:00
break;
case NGHTTP2_PING:
2014-11-27 15:39:04 +01:00
if (hd.flags & NGHTTP2_FLAG_ACK) {
s += "ACK";
2013-07-15 17:15:04 +02:00
}
break;
}
fprintf(outfile, "; %s\n", s.c_str());
2012-02-01 16:37:48 +01:00
}
} // namespace
2014-11-27 15:39:04 +01:00
enum print_type { PRINT_SEND, PRINT_RECV };
2013-01-27 08:27:17 +01:00
namespace {
2014-11-27 15:39:04 +01:00
const char *frame_name_ansi_esc(print_type ptype) {
2013-01-27 08:27:17 +01:00
return ansi_esc(ptype == PRINT_SEND ? "\033[1;35m" : "\033[1;36m");
}
} // namespace
namespace {
2014-11-27 15:39:04 +01:00
void print_frame(print_type ptype, const nghttp2_frame *frame) {
fprintf(outfile, "%s%s%s frame ", frame_name_ansi_esc(ptype),
strframetype(frame->hd.type).c_str(), ansi_escend());
2013-07-15 17:15:04 +02:00
print_frame_hd(frame->hd);
2014-11-27 15:39:04 +01:00
if (frame->hd.flags) {
2012-02-01 16:37:48 +01:00
print_frame_attr_indent();
2013-07-15 17:15:04 +02:00
print_flags(frame->hd);
}
2014-11-27 15:39:04 +01:00
switch (frame->hd.type) {
case NGHTTP2_DATA:
2014-11-27 15:39:04 +01:00
if (frame->data.padlen > 0) {
2014-02-07 15:22:17 +01:00
print_frame_attr_indent();
fprintf(outfile, "(padlen=%zu)\n", frame->data.padlen);
2014-02-07 15:22:17 +01:00
}
break;
2013-07-15 17:15:04 +02:00
case NGHTTP2_HEADERS:
print_frame_attr_indent();
2014-03-29 17:19:14 +01:00
fprintf(outfile, "(padlen=%zu", frame->headers.padlen);
2014-11-27 15:39:04 +01:00
if (frame->hd.flags & NGHTTP2_FLAG_PRIORITY) {
fprintf(outfile, ", dep_stream_id=%d, weight=%u, exclusive=%d",
2014-11-27 15:39:04 +01:00
frame->headers.pri_spec.stream_id, frame->headers.pri_spec.weight,
frame->headers.pri_spec.exclusive);
}
2014-03-29 17:19:14 +01:00
fprintf(outfile, ")\n");
2014-11-27 15:39:04 +01:00
switch (frame->headers.cat) {
case NGHTTP2_HCAT_REQUEST:
2013-07-15 17:15:04 +02:00
print_frame_attr_indent();
fprintf(outfile, "; Open new stream\n");
2013-07-15 17:15:04 +02:00
break;
case NGHTTP2_HCAT_RESPONSE:
2013-07-15 17:15:04 +02:00
print_frame_attr_indent();
fprintf(outfile, "; First response header\n");
2013-07-15 17:15:04 +02:00
break;
case NGHTTP2_HCAT_PUSH_RESPONSE:
print_frame_attr_indent();
fprintf(outfile, "; First push response header\n");
break;
2013-07-15 17:15:04 +02:00
default:
break;
}
2013-07-19 17:08:14 +02:00
print_nv(frame->headers.nva, frame->headers.nvlen);
break;
case NGHTTP2_PRIORITY:
print_frame_attr_indent();
2014-03-25 18:04:24 +01:00
fprintf(outfile, "(dep_stream_id=%d, weight=%u, exclusive=%d)\n",
2014-11-27 15:39:04 +01:00
frame->priority.pri_spec.stream_id, frame->priority.pri_spec.weight,
frame->priority.pri_spec.exclusive);
2014-03-25 18:04:24 +01:00
break;
2013-07-12 17:19:03 +02:00
case NGHTTP2_RST_STREAM:
2012-02-01 16:37:48 +01:00
print_frame_attr_indent();
fprintf(outfile, "(error_code=%s(0x%02x))\n",
nghttp2_http2_strerror(frame->rst_stream.error_code),
frame->rst_stream.error_code);
break;
2013-07-12 17:19:03 +02:00
case NGHTTP2_SETTINGS:
2012-02-01 16:37:48 +01:00
print_frame_attr_indent();
fprintf(outfile, "(niv=%lu)\n",
static_cast<unsigned long>(frame->settings.niv));
2014-11-27 15:39:04 +01:00
for (size_t i = 0; i < frame->settings.niv; ++i) {
2012-02-01 16:37:48 +01:00
print_frame_attr_indent();
fprintf(outfile, "[%s(0x%02x):%u]\n",
strsettingsid(frame->settings.iv[i].settings_id),
2014-11-27 15:39:04 +01:00
frame->settings.iv[i].settings_id, frame->settings.iv[i].value);
}
break;
2013-07-27 15:37:09 +02:00
case NGHTTP2_PUSH_PROMISE:
print_frame_attr_indent();
2014-03-29 17:19:14 +01:00
fprintf(outfile, "(padlen=%zu, promised_stream_id=%d)\n",
2014-11-27 15:39:04 +01:00
frame->push_promise.padlen, frame->push_promise.promised_stream_id);
print_nv(frame->push_promise.nva, frame->push_promise.nvlen);
2013-07-27 15:37:09 +02:00
break;
2013-07-12 17:19:03 +02:00
case NGHTTP2_PING:
2012-02-01 16:37:48 +01:00
print_frame_attr_indent();
fprintf(outfile, "(opaque_data=%s)\n",
util::format_hex(frame->ping.opaque_data, 8).c_str());
2012-01-29 16:34:10 +01:00
break;
2013-07-12 17:19:03 +02:00
case NGHTTP2_GOAWAY:
2012-02-01 16:37:48 +01:00
print_frame_attr_indent();
2017-11-23 06:19:12 +01:00
fprintf(outfile,
"(last_stream_id=%d, error_code=%s(0x%02x), "
"opaque_data(%u)=[%s])\n",
frame->goaway.last_stream_id,
nghttp2_http2_strerror(frame->goaway.error_code),
frame->goaway.error_code,
static_cast<unsigned int>(frame->goaway.opaque_data_len),
util::ascii_dump(frame->goaway.opaque_data,
2016-10-15 11:36:04 +02:00
frame->goaway.opaque_data_len)
.c_str());
break;
2013-07-12 17:19:03 +02:00
case NGHTTP2_WINDOW_UPDATE:
2012-02-25 16:12:32 +01:00
print_frame_attr_indent();
fprintf(outfile, "(window_size_increment=%d)\n",
frame->window_update.window_size_increment);
2012-02-25 16:12:32 +01:00
break;
2016-03-31 12:46:13 +02:00
case NGHTTP2_ALTSVC: {
auto altsvc = static_cast<nghttp2_ext_altsvc *>(frame->ext.payload);
print_frame_attr_indent();
fprintf(outfile, "(origin=[%.*s], altsvc_field_value=[%.*s])\n",
static_cast<int>(altsvc->origin_len), altsvc->origin,
static_cast<int>(altsvc->field_value_len), altsvc->field_value);
break;
}
2018-05-10 16:19:27 +02:00
case NGHTTP2_ORIGIN: {
auto origin = static_cast<nghttp2_ext_origin *>(frame->ext.payload);
for (size_t i = 0; i < origin->nov; ++i) {
auto ent = &origin->ov[i];
print_frame_attr_indent();
fprintf(outfile, "[%.*s]\n", (int)ent->origin_len, ent->origin);
}
break;
}
case NGHTTP2_PRIORITY_UPDATE: {
auto priority_update =
static_cast<nghttp2_ext_priority_update *>(frame->ext.payload);
print_frame_attr_indent();
fprintf(outfile,
"(prioritized_stream_id=%d, priority_field_value=[%.*s])\n",
priority_update->stream_id,
static_cast<int>(priority_update->field_value_len),
priority_update->field_value);
break;
}
default:
break;
}
}
} // namespace
int verbose_on_header_callback(nghttp2_session *session,
2014-11-27 15:39:04 +01:00
const nghttp2_frame *frame, const uint8_t *name,
size_t namelen, const uint8_t *value,
size_t valuelen, uint8_t flags,
void *user_data) {
nghttp2_nv nv = {const_cast<uint8_t *>(name), const_cast<uint8_t *>(value),
namelen, valuelen};
print_timer();
fprintf(outfile, " recv (stream_id=%d", frame->hd.stream_id);
if (flags & NGHTTP2_NV_FLAG_NO_INDEX) {
fprintf(outfile, ", sensitive");
}
fprintf(outfile, ") ");
print_nv(&nv);
fflush(outfile);
return 0;
}
2014-11-27 15:39:04 +01:00
int verbose_on_frame_recv_callback(nghttp2_session *session,
const nghttp2_frame *frame,
void *user_data) {
print_timer();
fprintf(outfile, " recv ");
2013-07-15 17:15:04 +02:00
print_frame(PRINT_RECV, frame);
fflush(outfile);
return 0;
}
2014-11-27 15:39:04 +01:00
int verbose_on_invalid_frame_recv_callback(nghttp2_session *session,
const nghttp2_frame *frame,
int lib_error_code,
2014-11-27 15:39:04 +01:00
void *user_data) {
print_timer();
fprintf(outfile, " [INVALID; error=%s] recv ",
nghttp2_strerror(lib_error_code));
2013-07-15 17:15:04 +02:00
print_frame(PRINT_RECV, frame);
fflush(outfile);
return 0;
}
2014-11-27 15:39:04 +01:00
int verbose_on_frame_send_callback(nghttp2_session *session,
const nghttp2_frame *frame,
void *user_data) {
print_timer();
fprintf(outfile, " send ");
2013-07-15 17:15:04 +02:00
print_frame(PRINT_SEND, frame);
fflush(outfile);
return 0;
}
2014-11-27 15:39:04 +01:00
int verbose_on_data_chunk_recv_callback(nghttp2_session *session, uint8_t flags,
int32_t stream_id, const uint8_t *data,
size_t len, void *user_data) {
print_timer();
2014-11-27 15:39:04 +01:00
auto srecv =
nghttp2_session_get_stream_effective_recv_data_length(session, stream_id);
auto crecv = nghttp2_session_get_effective_recv_data_length(session);
fprintf(outfile,
" recv (stream_id=%d, length=%zu, srecv=%d, crecv=%d) DATA\n",
stream_id, len, srecv, crecv);
fflush(outfile);
return 0;
}
2017-11-19 08:47:39 +01:00
int verbose_error_callback(nghttp2_session *session, int lib_error_code,
const char *msg, size_t len, void *user_data) {
print_timer();
fprintf(outfile, " [ERROR] %.*s\n", (int)len, msg);
fflush(outfile);
return 0;
}
namespace {
std::chrono::steady_clock::time_point base_tv;
} // namespace
2014-11-27 15:39:04 +01:00
void reset_timer() { base_tv = std::chrono::steady_clock::now(); }
2014-11-27 15:39:04 +01:00
std::chrono::milliseconds get_timer() {
return time_delta(std::chrono::steady_clock::now(), base_tv);
}
2014-11-27 15:39:04 +01:00
std::chrono::steady_clock::time_point get_time() {
return std::chrono::steady_clock::now();
}
2014-11-27 15:39:04 +01:00
ssize_t deflate_data(uint8_t *out, size_t outlen, const uint8_t *in,
size_t inlen) {
int rv;
z_stream zst;
uint8_t temp_out[8_k];
auto temp_outlen = sizeof(temp_out);
zst.next_in = Z_NULL;
zst.zalloc = Z_NULL;
zst.zfree = Z_NULL;
zst.opaque = Z_NULL;
2014-11-27 15:39:04 +01:00
rv = deflateInit2(&zst, Z_DEFAULT_COMPRESSION, Z_DEFLATED, 31, 9,
Z_DEFAULT_STRATEGY);
2014-11-27 15:39:04 +01:00
if (rv != Z_OK) {
return -1;
}
zst.avail_in = inlen;
2014-11-27 15:39:04 +01:00
zst.next_in = (uint8_t *)in;
zst.avail_out = temp_outlen;
zst.next_out = temp_out;
rv = deflate(&zst, Z_FINISH);
deflateEnd(&zst);
2014-11-27 15:39:04 +01:00
if (rv != Z_STREAM_END) {
return -1;
}
temp_outlen -= zst.avail_out;
2014-11-27 15:39:04 +01:00
if (temp_outlen > outlen) {
return -1;
}
memcpy(out, temp_out, temp_outlen);
return temp_outlen;
}
2013-07-12 17:19:03 +02:00
} // namespace nghttp2