nghttp2/src/app_helper.cc

440 lines
11 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.
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <unistd.h>
#include <fcntl.h>
#include <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>
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"
2013-07-12 17:19:03 +02:00
namespace nghttp2 {
2012-01-29 16:34:10 +01:00
namespace {
2013-07-15 17:15:04 +02:00
const char* strstatus(nghttp2_error_code error_code)
{
switch(error_code) {
case NGHTTP2_NO_ERROR:
return "NO_ERROR";
case NGHTTP2_PROTOCOL_ERROR:
return "PROTOCOL_ERROR";
case NGHTTP2_INTERNAL_ERROR:
return "INTERNAL_ERROR";
case NGHTTP2_FLOW_CONTROL_ERROR:
return "FLOW_CONTROL_ERROR";
2013-10-27 11:31:24 +01:00
case NGHTTP2_SETTINGS_TIMEOUT:
return "SETTINGS_TIMEOUT";
2013-07-15 17:15:04 +02:00
case NGHTTP2_STREAM_CLOSED:
return "STREAM_CLOSED";
2013-10-27 11:31:24 +01:00
case NGHTTP2_FRAME_SIZE_ERROR:
return "FRAME_SIZE_ERROR";
2013-07-15 17:15:04 +02:00
case NGHTTP2_REFUSED_STREAM:
return "REFUSED_STREAM";
case NGHTTP2_CANCEL:
return "CANCEL";
case NGHTTP2_COMPRESSION_ERROR:
return "COMPRESSION_ERROR";
2013-10-27 11:31:24 +01:00
case NGHTTP2_CONNECT_ERROR:
return "CONNECT_ERROR";
case NGHTTP2_ENHANCE_YOUR_CALM:
return "ENHANCE_YOUR_CALM";
2013-07-15 17:15:04 +02:00
default:
return "UNKNOWN";
}
}
} // namespace
2013-08-09 17:37:57 +02:00
namespace {
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";
2013-08-09 17:37:57 +02:00
default:
return "UNKNOWN";
}
}
} // namespace
2013-07-15 17:15:04 +02:00
namespace {
const char* strframetype(uint8_t type)
{
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";
default:
return "UNKNOWN";
}
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 {
void print_frame_attr_indent()
{
printf(" ");
}
} // namespace
2013-01-27 08:27:17 +01:00
namespace {
bool color_output = false;
} // namespace
void set_color_output(bool f)
{
color_output = f;
}
namespace {
const char* ansi_esc(const char *code)
{
return color_output ? code : "";
}
} // namespace
namespace {
const char* ansi_escend()
{
return color_output ? "\033[0m" : "";
}
} // namespace
namespace {
void print_nv(nghttp2_nv *nva, size_t nvlen, bool indent = true)
2012-01-29 16:34:10 +01:00
{
2013-12-05 13:54:36 +01:00
for(auto& nv : http2::sort_nva(nva, nvlen)) {
if(indent) {
print_frame_attr_indent();
}
2013-07-19 17:08:14 +02:00
printf("%s", ansi_esc("\033[1;34m"));
2013-12-05 13:54:36 +01:00
fwrite(nv.name, nv.namelen, 1, stdout);
2013-07-19 17:08:14 +02:00
printf("%s: ", ansi_escend());
2013-12-05 13:54:36 +01:00
fwrite(nv.value, nv.valuelen, 1, stdout);
2013-07-19 17:08:14 +02:00
printf("\n");
2012-01-29 16:34:10 +01:00
}
}
} // namelen
2012-01-29 16:34:10 +01:00
void print_timer()
{
auto millis = get_timer();
2013-01-27 08:27:17 +01:00
printf("%s[%3ld.%03ld]%s",
ansi_esc("\033[33m"),
(long int)(millis.count()/1000), (long int)(millis.count()%1000),
2013-01-27 08:27:17 +01:00
ansi_escend());
}
2012-02-01 16:37:48 +01:00
namespace {
2013-07-15 17:15:04 +02:00
void print_frame_hd(const nghttp2_frame_hd& hd)
2012-02-01 16:37:48 +01:00
{
2014-01-26 15:13:02 +01:00
printf("<length=%zu, flags=0x%02x, stream_id=%d>\n",
2013-07-15 17:15:04 +02:00
hd.length, hd.flags, hd.stream_id);
}
} // namespace
namespace {
void print_flags(const nghttp2_frame_hd& hd)
{
std::string s;
switch(hd.type) {
case NGHTTP2_DATA:
if(hd.flags & NGHTTP2_FLAG_END_STREAM) {
s += "END_STREAM";
}
break;
case NGHTTP2_HEADERS:
if(hd.flags & NGHTTP2_FLAG_END_STREAM) {
s += "END_STREAM";
}
if(hd.flags & NGHTTP2_FLAG_END_HEADERS) {
if(!s.empty()) {
s += " | ";
}
s += "END_HEADERS";
}
if(hd.flags & NGHTTP2_FLAG_PRIORITY) {
if(!s.empty()) {
s += " | ";
}
s += "PRIORITY";
}
break;
case NGHTTP2_SETTINGS:
if(hd.flags & NGHTTP2_FLAG_ACK) {
s += "ACK";
}
break;
2013-07-15 17:15:04 +02:00
case NGHTTP2_PUSH_PROMISE:
if(hd.flags & NGHTTP2_FLAG_END_PUSH_PROMISE) {
s += "END_PUSH_PROMISE";
}
break;
case NGHTTP2_PING:
if(hd.flags & NGHTTP2_FLAG_ACK) {
s += "ACK";
2013-07-15 17:15:04 +02:00
}
break;
}
printf("; %s\n", s.c_str());
2012-02-01 16:37:48 +01:00
}
} // namespace
2013-01-27 08:27:17 +01:00
enum print_type {
PRINT_SEND,
PRINT_RECV
};
namespace {
const char* frame_name_ansi_esc(print_type ptype)
{
return ansi_esc(ptype == PRINT_SEND ? "\033[1;35m" : "\033[1;36m");
}
} // namespace
namespace {
void print_frame(print_type ptype, const nghttp2_frame *frame)
{
2013-01-27 08:27:17 +01:00
printf("%s%s%s frame ",
frame_name_ansi_esc(ptype),
strframetype(frame->hd.type),
2013-01-27 08:27:17 +01:00
ansi_escend());
2013-07-15 17:15:04 +02:00
print_frame_hd(frame->hd);
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);
}
switch(frame->hd.type) {
case NGHTTP2_DATA:
break;
2013-07-15 17:15:04 +02:00
case NGHTTP2_HEADERS:
if(frame->hd.flags & NGHTTP2_FLAG_PRIORITY) {
print_frame_attr_indent();
printf("(pri=%d)\n", frame->headers.pri);
}
2013-07-15 17:15:04 +02:00
switch(frame->headers.cat) {
case NGHTTP2_HCAT_REQUEST:
2013-07-15 17:15:04 +02:00
print_frame_attr_indent();
printf("; Open new stream\n");
break;
case NGHTTP2_HCAT_RESPONSE:
2013-07-15 17:15:04 +02:00
print_frame_attr_indent();
printf("; First response header\n");
break;
case NGHTTP2_HCAT_PUSH_RESPONSE:
print_frame_attr_indent();
printf("; 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();
printf("(pri=%d)\n", frame->priority.pri);
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();
2013-07-15 17:15:04 +02:00
printf("(error_code=%s(%u))\n",
strstatus(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();
printf("(niv=%lu)\n", static_cast<unsigned long>(frame->settings.niv));
for(size_t i = 0; i < frame->settings.niv; ++i) {
2012-02-01 16:37:48 +01:00
print_frame_attr_indent();
2013-08-09 17:37:57 +02:00
printf("[%s(%d):%u]\n",
strsettingsid(frame->settings.iv[i].settings_id),
frame->settings.iv[i].settings_id,
2013-07-15 17:15:04 +02:00
frame->settings.iv[i].value);
}
break;
2013-07-27 15:37:09 +02:00
case NGHTTP2_PUSH_PROMISE:
print_frame_attr_indent();
printf("(promised_stream_id=%d)\n",
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();
2013-07-15 17:15:04 +02:00
printf("(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();
2013-08-09 17:46:00 +02:00
printf("(last_stream_id=%d, error_code=%s(%u), opaque_data(%u)=[%s])\n",
2013-07-15 17:15:04 +02:00
frame->goaway.last_stream_id,
strstatus(frame->goaway.error_code),
frame->goaway.error_code,
2013-08-09 17:46:00 +02:00
static_cast<unsigned int>(frame->goaway.opaque_data_len),
2013-07-15 17:15:04 +02:00
util::format_hex(frame->goaway.opaque_data,
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();
2013-07-15 17:15:04 +02:00
printf("(window_size_increment=%d)\n",
frame->window_update.window_size_increment);
2012-02-25 16:12:32 +01:00
break;
default:
2012-01-29 16:34:10 +01:00
printf("\n");
break;
}
}
} // namespace
int verbose_on_header_callback(nghttp2_session *session,
const nghttp2_frame *frame,
const uint8_t *name, size_t namelen,
const uint8_t *value, size_t valuelen,
void *user_data)
{
nghttp2_nv nv = {
const_cast<uint8_t*>(name), const_cast<uint8_t*>(value),
static_cast<uint16_t>(namelen), static_cast<uint16_t>(valuelen)
};
print_timer();
printf(" (stream_id=%d) ", frame->hd.stream_id);
print_nv(&nv, 1, false /* no indent */);
return 0;
}
2013-12-20 15:48:56 +01:00
int verbose_on_frame_recv_callback
(nghttp2_session *session, const nghttp2_frame *frame, void *user_data)
{
print_timer();
printf(" recv ");
2013-07-15 17:15:04 +02:00
print_frame(PRINT_RECV, frame);
fflush(stdout);
return 0;
}
2013-12-20 15:48:56 +01:00
int verbose_on_invalid_frame_recv_callback
(nghttp2_session *session, const nghttp2_frame *frame,
2013-07-15 17:15:04 +02:00
nghttp2_error_code error_code, void *user_data)
{
print_timer();
2013-07-15 17:15:04 +02:00
printf(" [INVALID; status=%s] recv ", strstatus(error_code));
print_frame(PRINT_RECV, frame);
fflush(stdout);
return 0;
}
namespace {
void dump_header(const uint8_t *head, size_t headlen)
{
size_t i;
print_frame_attr_indent();
printf("Header dump: ");
for(i = 0; i < headlen; ++i) {
printf("%02X ", head[i]);
}
printf("\n");
}
} // namespace
2013-12-20 15:48:56 +01:00
int verbose_on_unknown_frame_recv_callback(nghttp2_session *session,
const uint8_t *head,
size_t headlen,
const uint8_t *payload,
size_t payloadlen,
void *user_data)
{
print_timer();
printf(" recv unknown frame\n");
dump_header(head, headlen);
fflush(stdout);
return 0;
}
2013-12-20 15:48:56 +01:00
int verbose_on_frame_send_callback
(nghttp2_session *session, const nghttp2_frame *frame, void *user_data)
{
print_timer();
printf(" send ");
2013-07-15 17:15:04 +02:00
print_frame(PRINT_SEND, frame);
fflush(stdout);
return 0;
}
namespace {
std::chrono::steady_clock::time_point base_tv;
} // namespace
void reset_timer()
{
base_tv = std::chrono::steady_clock::now();
}
std::chrono::milliseconds get_timer()
{
return time_delta(std::chrono::steady_clock::now(), base_tv);
}
std::chrono::steady_clock::time_point get_time()
{
return std::chrono::steady_clock::now();
}
2013-07-12 17:19:03 +02:00
} // namespace nghttp2