2012-11-20 17:29:39 +01:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2012-11-20 17:29:39 +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-11-04 09:53:57 +01:00
|
|
|
#include "shrpx_http2_session.h"
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2013-01-10 16:11:41 +01:00
|
|
|
#include <netinet/tcp.h>
|
2012-11-20 17:29:39 +01:00
|
|
|
#include <unistd.h>
|
2014-08-12 15:22:02 +02:00
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <openssl/err.h>
|
|
|
|
|
|
|
|
#include <event2/bufferevent_ssl.h>
|
|
|
|
|
|
|
|
#include "shrpx_upstream.h"
|
|
|
|
#include "shrpx_downstream.h"
|
|
|
|
#include "shrpx_config.h"
|
|
|
|
#include "shrpx_error.h"
|
2013-11-04 09:53:57 +01:00
|
|
|
#include "shrpx_http2_downstream_connection.h"
|
2012-11-20 17:29:39 +01:00
|
|
|
#include "shrpx_client_handler.h"
|
2012-11-22 13:46:15 +01:00
|
|
|
#include "shrpx_ssl.h"
|
2013-08-25 18:25:31 +02:00
|
|
|
#include "shrpx_http.h"
|
2014-07-05 11:22:40 +02:00
|
|
|
#include "shrpx_worker_config.h"
|
2013-08-27 19:47:22 +02:00
|
|
|
#include "http2.h"
|
2012-11-20 17:29:39 +01:00
|
|
|
#include "util.h"
|
2013-02-09 08:42:01 +01:00
|
|
|
#include "base64.h"
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
using namespace nghttp2;
|
2012-11-20 17:29:39 +01:00
|
|
|
|
|
|
|
namespace shrpx {
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
Http2Session::Http2Session(event_base *evbase, SSL_CTX *ssl_ctx)
|
2012-11-20 17:29:39 +01:00
|
|
|
: evbase_(evbase),
|
|
|
|
ssl_ctx_(ssl_ctx),
|
2013-07-26 12:33:25 +02:00
|
|
|
ssl_(nullptr),
|
|
|
|
session_(nullptr),
|
|
|
|
bev_(nullptr),
|
|
|
|
wrbev_(nullptr),
|
|
|
|
rdbev_(nullptr),
|
2013-12-06 15:17:38 +01:00
|
|
|
settings_timerev_(nullptr),
|
|
|
|
fd_(-1),
|
|
|
|
state_(DISCONNECTED),
|
|
|
|
notified_(false),
|
|
|
|
flow_control_(false)
|
2012-11-20 17:29:39 +01:00
|
|
|
{}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
Http2Session::~Http2Session()
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
disconnect();
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
int Http2Session::disconnect()
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
SSLOG(INFO, this) << "Disconnecting";
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_session_del(session_);
|
2013-09-24 14:34:04 +02:00
|
|
|
session_ = nullptr;
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2013-10-31 13:45:17 +01:00
|
|
|
if(settings_timerev_) {
|
|
|
|
event_free(settings_timerev_);
|
|
|
|
settings_timerev_ = nullptr;
|
|
|
|
}
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
if(ssl_) {
|
2014-01-08 15:32:47 +01:00
|
|
|
SSL_set_shutdown(ssl_, SSL_RECEIVED_SHUTDOWN);
|
2012-11-20 17:29:39 +01:00
|
|
|
SSL_shutdown(ssl_);
|
|
|
|
}
|
|
|
|
if(bev_) {
|
2013-02-22 11:26:41 +01:00
|
|
|
int fd = bufferevent_getfd(bev_);
|
2012-11-20 17:29:39 +01:00
|
|
|
bufferevent_disable(bev_, EV_READ | EV_WRITE);
|
|
|
|
bufferevent_free(bev_);
|
2013-09-24 14:34:04 +02:00
|
|
|
bev_ = nullptr;
|
2013-02-22 13:54:07 +01:00
|
|
|
if(fd != -1) {
|
|
|
|
if(fd_ == -1) {
|
|
|
|
fd_ = fd;
|
|
|
|
} else if(fd != fd_) {
|
|
|
|
SSLOG(WARNING, this) << "fd in bev_ != fd_";
|
|
|
|
shutdown(fd, SHUT_WR);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
if(ssl_) {
|
|
|
|
SSL_free(ssl_);
|
|
|
|
}
|
2013-09-24 14:34:04 +02:00
|
|
|
ssl_ = nullptr;
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2013-02-09 08:42:01 +01:00
|
|
|
if(fd_ != -1) {
|
2013-02-22 13:54:07 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
SSLOG(INFO, this) << "Closing fd=" << fd_;
|
|
|
|
}
|
2013-02-09 08:42:01 +01:00
|
|
|
shutdown(fd_, SHUT_WR);
|
|
|
|
close(fd_);
|
|
|
|
fd_ = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(proxy_htp_) {
|
2013-09-23 17:19:53 +02:00
|
|
|
proxy_htp_.reset();
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
notified_ = false;
|
|
|
|
state_ = DISCONNECTED;
|
|
|
|
|
|
|
|
// Delete all client handler associated to Downstream. When deleting
|
2013-11-04 09:53:57 +01:00
|
|
|
// Http2DownstreamConnection, it calls this object's
|
2013-02-08 13:46:58 +01:00
|
|
|
// remove_downstream_connection(). The multiple
|
2013-11-04 09:53:57 +01:00
|
|
|
// Http2DownstreamConnection objects belong to the same ClientHandler
|
2013-02-08 13:46:58 +01:00
|
|
|
// object. So first dump ClientHandler objects and delete them once
|
|
|
|
// and for all.
|
2014-02-22 03:26:32 +01:00
|
|
|
std::vector<Http2DownstreamConnection*> vec(std::begin(dconns_),
|
|
|
|
std::end(dconns_));
|
2013-02-08 13:46:58 +01:00
|
|
|
std::set<ClientHandler*> handlers;
|
2014-02-22 03:26:32 +01:00
|
|
|
for(auto dc : vec) {
|
|
|
|
handlers.insert(dc->get_client_handler());
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2013-09-24 14:34:04 +02:00
|
|
|
for(auto& h : handlers) {
|
|
|
|
delete h;
|
2013-02-08 13:46:58 +01:00
|
|
|
}
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
dconns_.clear();
|
2013-09-24 14:34:04 +02:00
|
|
|
for(auto& s : streams_) {
|
|
|
|
delete s;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
streams_.clear();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void notify_readcb(bufferevent *bev, void *arg)
|
|
|
|
{
|
|
|
|
int rv;
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(arg);
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->clear_notify();
|
|
|
|
switch(http2session->get_state()) {
|
|
|
|
case Http2Session::DISCONNECTED:
|
|
|
|
rv = http2session->initiate_connection();
|
2012-11-20 17:29:39 +01:00
|
|
|
if(rv != 0) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(FATAL, http2session)
|
2013-12-20 14:44:30 +01:00
|
|
|
<< "Could not initiate backend connection";
|
2014-01-10 13:32:39 +01:00
|
|
|
http2session->disconnect();
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
break;
|
2013-11-04 09:53:57 +01:00
|
|
|
case Http2Session::CONNECTED:
|
|
|
|
rv = http2session->send();
|
2012-11-20 17:29:39 +01:00
|
|
|
if(rv != 0) {
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->disconnect();
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void notify_eventcb(bufferevent *bev, short events, void *arg)
|
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(arg);
|
2012-11-20 17:29:39 +01:00
|
|
|
// TODO should DIE()?
|
|
|
|
if(events & BEV_EVENT_EOF) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(ERROR, http2session) << "Notification connection lost: EOF";
|
2012-12-09 11:15:14 +01:00
|
|
|
}
|
|
|
|
if(events & BEV_EVENT_TIMEOUT) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(ERROR, http2session) << "Notification connection lost: timeout";
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
if(events & BEV_EVENT_ERROR) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(ERROR, http2session) << "Notification connection lost: network error";
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
int Http2Session::init_notification()
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
int sockpair[2];
|
2014-08-13 15:09:35 +02:00
|
|
|
rv = socketpair(AF_UNIX, SOCK_STREAM | SOCK_NONBLOCK | SOCK_CLOEXEC, 0,
|
|
|
|
sockpair);
|
2012-11-20 17:29:39 +01:00
|
|
|
if(rv == -1) {
|
2014-08-13 15:13:08 +02:00
|
|
|
auto error = errno;
|
|
|
|
SSLOG(FATAL, this) << "socketpair() failed: errno=" << error;
|
2012-11-20 17:29:39 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2014-08-13 15:09:35 +02:00
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
wrbev_ = bufferevent_socket_new(evbase_, sockpair[0],
|
|
|
|
BEV_OPT_CLOSE_ON_FREE|
|
|
|
|
BEV_OPT_DEFER_CALLBACKS);
|
|
|
|
if(!wrbev_) {
|
2012-12-09 11:15:14 +01:00
|
|
|
SSLOG(FATAL, this) << "bufferevent_socket_new() failed";
|
2012-11-20 17:29:39 +01:00
|
|
|
for(int i = 0; i < 2; ++i) {
|
|
|
|
close(sockpair[i]);
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
rdbev_ = bufferevent_socket_new(evbase_, sockpair[1],
|
|
|
|
BEV_OPT_CLOSE_ON_FREE|
|
|
|
|
BEV_OPT_DEFER_CALLBACKS);
|
|
|
|
if(!rdbev_) {
|
2012-12-09 11:15:14 +01:00
|
|
|
SSLOG(FATAL, this) << "bufferevent_socket_new() failed";
|
2012-11-20 17:29:39 +01:00
|
|
|
close(sockpair[1]);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
bufferevent_enable(rdbev_, EV_READ);
|
2013-09-24 14:34:04 +02:00
|
|
|
bufferevent_setcb(rdbev_, notify_readcb, nullptr, notify_eventcb, this);
|
2012-11-20 17:29:39 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void readcb(bufferevent *bev, void *ptr)
|
|
|
|
{
|
|
|
|
int rv;
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(ptr);
|
2013-11-04 09:53:57 +01:00
|
|
|
rv = http2session->on_read();
|
2012-11-20 17:29:39 +01:00
|
|
|
if(rv != 0) {
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->disconnect();
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void writecb(bufferevent *bev, void *ptr)
|
|
|
|
{
|
2012-11-21 19:13:30 +01:00
|
|
|
if(evbuffer_get_length(bufferevent_get_output(bev)) > 0) {
|
|
|
|
return;
|
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
int rv;
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(ptr);
|
2013-11-04 09:53:57 +01:00
|
|
|
rv = http2session->on_write();
|
2012-11-20 17:29:39 +01:00
|
|
|
if(rv != 0) {
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->disconnect();
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void eventcb(bufferevent *bev, short events, void *ptr)
|
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(ptr);
|
2012-11-20 17:29:39 +01:00
|
|
|
if(events & BEV_EVENT_CONNECTED) {
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(INFO, http2session) << "Connection established";
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->set_state(Http2Session::CONNECTED);
|
2014-06-10 17:19:54 +02:00
|
|
|
if(!get_config()->downstream_no_tls &&
|
|
|
|
!get_config()->insecure &&
|
|
|
|
http2session->check_cert() != 0) {
|
2014-04-26 16:00:58 +02:00
|
|
|
|
2014-06-10 17:19:54 +02:00
|
|
|
http2session->disconnect();
|
2014-04-26 16:00:58 +02:00
|
|
|
|
2014-06-10 17:19:54 +02:00
|
|
|
return;
|
2014-04-26 16:00:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(http2session->on_connect() != 0) {
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->disconnect();
|
2012-11-20 17:29:39 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-04-26 16:00:58 +02:00
|
|
|
|
2014-06-01 16:44:32 +02:00
|
|
|
auto fd = bufferevent_getfd(bev);
|
2013-01-10 16:11:41 +01:00
|
|
|
int val = 1;
|
2013-01-25 14:00:33 +01:00
|
|
|
if(setsockopt(fd, IPPROTO_TCP, TCP_NODELAY,
|
2014-06-01 16:44:32 +02:00
|
|
|
reinterpret_cast<char*>(&val), sizeof(val)) == -1) {
|
2014-08-13 15:13:08 +02:00
|
|
|
auto error = errno;
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(WARNING, http2session)
|
2014-08-13 15:13:08 +02:00
|
|
|
<< "Setting option TCP_NODELAY failed: errno=" << error;
|
2013-01-25 14:00:33 +01:00
|
|
|
}
|
2014-06-01 16:44:32 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(events & BEV_EVENT_EOF) {
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(INFO, http2session) << "EOF";
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->disconnect();
|
2014-06-01 16:44:32 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(events & (BEV_EVENT_ERROR | BEV_EVENT_TIMEOUT)) {
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
if(events & BEV_EVENT_ERROR) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(INFO, http2session) << "Network error";
|
2012-12-09 11:15:14 +01:00
|
|
|
} else {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(INFO, http2session) << "Timeout";
|
2012-12-09 11:15:14 +01:00
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->disconnect();
|
2014-06-01 16:44:32 +02:00
|
|
|
return;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2013-02-09 08:42:01 +01:00
|
|
|
namespace {
|
|
|
|
void proxy_readcb(bufferevent *bev, void *ptr)
|
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(ptr);
|
2013-11-04 09:53:57 +01:00
|
|
|
if(http2session->on_read_proxy() == 0) {
|
|
|
|
switch(http2session->get_state()) {
|
|
|
|
case Http2Session::PROXY_CONNECTED:
|
2013-02-09 08:42:01 +01:00
|
|
|
// The current bufferevent is no longer necessary, so delete it
|
2013-02-22 11:26:41 +01:00
|
|
|
// here. But we keep fd_ inside it.
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->unwrap_free_bev();
|
2013-02-09 08:42:01 +01:00
|
|
|
// Initiate SSL/TLS handshake through established tunnel.
|
2013-11-04 09:53:57 +01:00
|
|
|
if(http2session->initiate_connection() != 0) {
|
|
|
|
http2session->disconnect();
|
2013-02-22 13:54:07 +01:00
|
|
|
}
|
2013-02-09 08:42:01 +01:00
|
|
|
break;
|
2013-11-04 09:53:57 +01:00
|
|
|
case Http2Session::PROXY_FAILED:
|
|
|
|
http2session->disconnect();
|
2013-02-09 08:42:01 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->disconnect();
|
2013-02-09 08:42:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void proxy_eventcb(bufferevent *bev, short events, void *ptr)
|
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(ptr);
|
2013-02-09 08:42:01 +01:00
|
|
|
if(events & BEV_EVENT_CONNECTED) {
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(INFO, http2session) << "Connected to the proxy";
|
2013-02-09 08:42:01 +01:00
|
|
|
}
|
|
|
|
std::string req = "CONNECT ";
|
2014-06-08 14:02:40 +02:00
|
|
|
req += get_config()->downstream_hostport.get();
|
2013-02-09 08:42:01 +01:00
|
|
|
req += " HTTP/1.1\r\nHost: ";
|
2014-06-08 14:02:40 +02:00
|
|
|
req += get_config()->downstream_host.get();
|
2013-02-09 08:42:01 +01:00
|
|
|
req += "\r\n";
|
|
|
|
if(get_config()->downstream_http_proxy_userinfo) {
|
|
|
|
req += "Proxy-Authorization: Basic ";
|
2014-06-08 14:02:40 +02:00
|
|
|
size_t len = strlen(get_config()->downstream_http_proxy_userinfo.get());
|
|
|
|
req += base64::encode
|
|
|
|
(get_config()->downstream_http_proxy_userinfo.get(),
|
|
|
|
get_config()->downstream_http_proxy_userinfo.get() + len);
|
2013-02-09 08:42:01 +01:00
|
|
|
req += "\r\n";
|
|
|
|
}
|
|
|
|
req += "\r\n";
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(INFO, http2session) << "HTTP proxy request headers\n" << req;
|
2013-02-09 08:42:01 +01:00
|
|
|
}
|
|
|
|
if(bufferevent_write(bev, req.c_str(), req.size()) != 0) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(ERROR, http2session) << "bufferevent_write() failed";
|
|
|
|
http2session->disconnect();
|
2013-02-09 08:42:01 +01:00
|
|
|
}
|
2014-06-01 16:44:32 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(events & BEV_EVENT_EOF) {
|
2013-02-09 08:42:01 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(INFO, http2session) << "Proxy EOF";
|
2013-02-09 08:42:01 +01:00
|
|
|
}
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->disconnect();
|
2014-06-01 16:44:32 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(events & (BEV_EVENT_ERROR | BEV_EVENT_TIMEOUT)) {
|
2013-02-09 08:42:01 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
if(events & BEV_EVENT_ERROR) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(INFO, http2session) << "Network error";
|
2013-02-09 08:42:01 +01:00
|
|
|
} else {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(INFO, http2session) << "Timeout";
|
2013-02-09 08:42:01 +01:00
|
|
|
}
|
|
|
|
}
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->disconnect();
|
2014-06-01 16:44:32 +02:00
|
|
|
return;
|
2013-02-09 08:42:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
int Http2Session::check_cert()
|
2012-11-22 13:46:15 +01:00
|
|
|
{
|
|
|
|
return ssl::check_cert(ssl_);
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
int Http2Session::initiate_connection()
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
2013-02-22 13:54:07 +01:00
|
|
|
int rv = 0;
|
2013-02-09 08:42:01 +01:00
|
|
|
if(get_config()->downstream_http_proxy_host && state_ == DISCONNECTED) {
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
SSLOG(INFO, this) << "Connecting to the proxy "
|
2014-06-08 14:02:40 +02:00
|
|
|
<< get_config()->downstream_http_proxy_host.get()
|
|
|
|
<< ":"
|
2013-02-09 08:42:01 +01:00
|
|
|
<< get_config()->downstream_http_proxy_port;
|
|
|
|
}
|
2014-08-19 14:22:53 +02:00
|
|
|
|
|
|
|
auto fd = socket(get_config()->downstream_http_proxy_addr.storage.ss_family,
|
|
|
|
SOCK_STREAM | SOCK_CLOEXEC, 0);
|
|
|
|
|
|
|
|
if(fd == -1) {
|
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
|
|
|
|
|
|
|
bev_ = bufferevent_socket_new(evbase_, fd, BEV_OPT_DEFER_CALLBACKS);
|
2013-09-24 16:17:53 +02:00
|
|
|
if(!bev_) {
|
|
|
|
SSLOG(ERROR, this) << "bufferevent_socket_new() failed";
|
2014-08-19 14:22:53 +02:00
|
|
|
close(fd);
|
2013-09-24 16:17:53 +02:00
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
2013-02-09 08:42:01 +01:00
|
|
|
bufferevent_enable(bev_, EV_READ);
|
|
|
|
bufferevent_set_timeouts(bev_, &get_config()->downstream_read_timeout,
|
|
|
|
&get_config()->downstream_write_timeout);
|
|
|
|
|
|
|
|
// No need to set writecb because we write the request when
|
|
|
|
// connected at once.
|
2013-09-24 14:34:04 +02:00
|
|
|
bufferevent_setcb(bev_, proxy_readcb, nullptr, proxy_eventcb, this);
|
2013-02-09 08:42:01 +01:00
|
|
|
rv = bufferevent_socket_connect
|
|
|
|
(bev_,
|
|
|
|
const_cast<sockaddr*>(&get_config()->downstream_http_proxy_addr.sa),
|
|
|
|
get_config()->downstream_http_proxy_addrlen);
|
|
|
|
if(rv != 0) {
|
|
|
|
SSLOG(ERROR, this) << "Failed to connect to the proxy "
|
2014-06-08 14:02:40 +02:00
|
|
|
<< get_config()->downstream_http_proxy_host.get()
|
|
|
|
<< ":"
|
2013-02-09 08:42:01 +01:00
|
|
|
<< get_config()->downstream_http_proxy_port;
|
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
2013-09-23 17:19:53 +02:00
|
|
|
proxy_htp_ = util::make_unique<http_parser>();
|
|
|
|
http_parser_init(proxy_htp_.get(), HTTP_RESPONSE);
|
2013-02-09 08:42:01 +01:00
|
|
|
proxy_htp_->data = this;
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2013-02-09 08:42:01 +01:00
|
|
|
state_ = PROXY_CONNECTING;
|
2014-06-01 16:44:32 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(state_ == DISCONNECTED || state_ == PROXY_CONNECTED) {
|
2013-02-09 08:42:01 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
SSLOG(INFO, this) << "Connecting to downstream server";
|
|
|
|
}
|
2013-02-22 13:54:07 +01:00
|
|
|
if(ssl_ctx_) {
|
|
|
|
// We are establishing TLS connection.
|
|
|
|
ssl_ = SSL_new(ssl_ctx_);
|
|
|
|
if(!ssl_) {
|
|
|
|
SSLOG(ERROR, this) << "SSL_new() failed: "
|
|
|
|
<< ERR_error_string(ERR_get_error(), NULL);
|
|
|
|
return -1;
|
|
|
|
}
|
2012-11-22 13:51:11 +01:00
|
|
|
|
2013-09-24 14:34:04 +02:00
|
|
|
const char *sni_name = nullptr;
|
2013-03-29 14:06:33 +01:00
|
|
|
if ( get_config()->backend_tls_sni_name ) {
|
2014-06-08 14:02:40 +02:00
|
|
|
sni_name = get_config()->backend_tls_sni_name.get();
|
2013-03-29 14:06:33 +01:00
|
|
|
}
|
|
|
|
else {
|
2014-06-08 14:02:40 +02:00
|
|
|
sni_name = get_config()->downstream_host.get();
|
2013-03-29 14:06:33 +01:00
|
|
|
}
|
|
|
|
|
2014-06-08 14:02:40 +02:00
|
|
|
if(sni_name && !util::numeric_host(sni_name)) {
|
2013-02-22 13:54:07 +01:00
|
|
|
// TLS extensions: SNI. There is no documentation about the return
|
|
|
|
// code for this function (actually this is macro wrapping SSL_ctrl
|
|
|
|
// at the time of this writing).
|
2013-03-29 14:06:33 +01:00
|
|
|
SSL_set_tlsext_host_name(ssl_, sni_name);
|
2013-02-22 13:54:07 +01:00
|
|
|
}
|
|
|
|
// If state_ == PROXY_CONNECTED, we has connected to the proxy
|
|
|
|
// using fd_ and tunnel has been established.
|
2014-08-12 15:22:02 +02:00
|
|
|
if(state_ == DISCONNECTED) {
|
|
|
|
assert(fd_ == -1);
|
|
|
|
|
|
|
|
fd_ = socket(get_config()->downstream_addr.storage.ss_family,
|
|
|
|
SOCK_STREAM | SOCK_CLOEXEC, 0);
|
|
|
|
}
|
|
|
|
|
2013-02-22 13:54:07 +01:00
|
|
|
bev_ = bufferevent_openssl_socket_new(evbase_, fd_, ssl_,
|
|
|
|
BUFFEREVENT_SSL_CONNECTING,
|
|
|
|
BEV_OPT_DEFER_CALLBACKS);
|
2013-09-24 16:17:53 +02:00
|
|
|
if(!bev_) {
|
|
|
|
SSLOG(ERROR, this) << "bufferevent_socket_new() failed";
|
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
2013-02-22 13:54:07 +01:00
|
|
|
rv = bufferevent_socket_connect
|
|
|
|
(bev_,
|
|
|
|
// TODO maybe not thread-safe?
|
|
|
|
const_cast<sockaddr*>(&get_config()->downstream_addr.sa),
|
|
|
|
get_config()->downstream_addrlen);
|
|
|
|
} else {
|
2014-08-12 15:22:02 +02:00
|
|
|
if(state_ == DISCONNECTED) {
|
|
|
|
// Without TLS and proxy.
|
|
|
|
assert(fd_ == -1);
|
|
|
|
|
|
|
|
fd_ = socket(get_config()->downstream_addr.storage.ss_family,
|
|
|
|
SOCK_STREAM | SOCK_CLOEXEC, 0);
|
2014-08-19 14:22:53 +02:00
|
|
|
|
|
|
|
if(fd_ == -1) {
|
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
2014-08-12 15:22:02 +02:00
|
|
|
}
|
|
|
|
|
2013-02-22 13:54:07 +01:00
|
|
|
bev_ = bufferevent_socket_new(evbase_, fd_, BEV_OPT_DEFER_CALLBACKS);
|
2013-09-24 16:17:53 +02:00
|
|
|
if(!bev_) {
|
|
|
|
SSLOG(ERROR, this) << "bufferevent_socket_new() failed";
|
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
2014-08-12 15:22:02 +02:00
|
|
|
|
2013-02-22 13:54:07 +01:00
|
|
|
if(state_ == DISCONNECTED) {
|
2014-08-12 15:22:02 +02:00
|
|
|
rv = bufferevent_socket_connect
|
|
|
|
(bev_,
|
|
|
|
const_cast<sockaddr*>(&get_config()->downstream_addr.sa),
|
|
|
|
get_config()->downstream_addrlen);
|
|
|
|
} else {
|
|
|
|
// Without TLS but with proxy.
|
|
|
|
|
|
|
|
// Connection already established.
|
|
|
|
eventcb(bev_, BEV_EVENT_CONNECTED, this);
|
|
|
|
// eventcb() has no return value. Check state_ to whether it was
|
|
|
|
// failed or not.
|
|
|
|
if(state_ == DISCONNECTED) {
|
|
|
|
return -1;
|
|
|
|
}
|
2013-02-22 13:54:07 +01:00
|
|
|
}
|
2013-02-09 08:42:01 +01:00
|
|
|
}
|
2014-08-12 15:22:02 +02:00
|
|
|
|
2013-02-09 08:42:01 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
|
|
|
|
2014-05-31 19:29:01 +02:00
|
|
|
bufferevent_setwatermark(bev_, EV_READ, 0, SHRPX_READ_WATERMARK);
|
2013-02-09 08:42:01 +01:00
|
|
|
bufferevent_enable(bev_, EV_READ);
|
|
|
|
bufferevent_setcb(bev_, readcb, writecb, eventcb, this);
|
2013-11-04 09:53:57 +01:00
|
|
|
// Set timeout for HTTP2 session
|
2013-11-04 09:22:52 +01:00
|
|
|
bufferevent_set_timeouts(bev_, &get_config()->downstream_read_timeout,
|
|
|
|
&get_config()->downstream_write_timeout);
|
2013-02-09 08:42:01 +01:00
|
|
|
|
2013-02-22 13:54:07 +01:00
|
|
|
// We have been already connected when no TLS and proxy is used.
|
|
|
|
if(state_ != CONNECTED) {
|
|
|
|
state_ = CONNECTING;
|
|
|
|
}
|
2014-06-01 16:44:32 +02:00
|
|
|
|
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2014-06-01 16:44:32 +02:00
|
|
|
|
|
|
|
// Unreachable
|
|
|
|
DIE();
|
2014-07-06 16:32:08 +02:00
|
|
|
return 0;
|
2013-02-09 08:42:01 +01:00
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
void Http2Session::unwrap_free_bev()
|
2013-02-09 08:42:01 +01:00
|
|
|
{
|
2013-02-22 11:26:41 +01:00
|
|
|
assert(fd_ == -1);
|
|
|
|
fd_ = bufferevent_getfd(bev_);
|
2013-02-09 08:42:01 +01:00
|
|
|
bufferevent_free(bev_);
|
2013-09-24 14:34:04 +02:00
|
|
|
bev_ = nullptr;
|
2013-02-09 08:42:01 +01:00
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2013-02-09 08:42:01 +01:00
|
|
|
namespace {
|
|
|
|
int htp_hdrs_completecb(http_parser *htp)
|
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(htp->data);
|
2013-02-09 08:42:01 +01:00
|
|
|
// We just check status code here
|
|
|
|
if(htp->status_code == 200) {
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(INFO, http2session) << "Tunneling success";
|
2013-02-09 08:42:01 +01:00
|
|
|
}
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->set_state(Http2Session::PROXY_CONNECTED);
|
2014-06-01 16:44:32 +02:00
|
|
|
|
|
|
|
return 0;
|
2013-02-09 08:42:01 +01:00
|
|
|
}
|
2014-06-01 16:44:32 +02:00
|
|
|
|
|
|
|
SSLOG(WARNING, http2session) << "Tunneling failed";
|
|
|
|
http2session->set_state(Http2Session::PROXY_FAILED);
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2013-02-09 08:42:01 +01:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
http_parser_settings htp_hooks = {
|
2014-05-14 16:22:23 +02:00
|
|
|
nullptr, // http_cb on_message_begin;
|
|
|
|
nullptr, // http_data_cb on_url;
|
2014-05-15 17:23:03 +02:00
|
|
|
nullptr, // http_data_cb on_status;
|
2014-05-14 16:22:23 +02:00
|
|
|
nullptr, // http_data_cb on_header_field;
|
|
|
|
nullptr, // http_data_cb on_header_value;
|
|
|
|
htp_hdrs_completecb, // http_cb on_headers_complete;
|
|
|
|
nullptr, // http_data_cb on_body;
|
|
|
|
nullptr // http_cb on_message_complete;
|
2013-02-09 08:42:01 +01:00
|
|
|
};
|
|
|
|
} // namespace
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
int Http2Session::on_read_proxy()
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
2013-09-24 14:34:04 +02:00
|
|
|
auto input = bufferevent_get_input(bev_);
|
2013-02-09 08:42:01 +01:00
|
|
|
|
2014-06-01 14:01:01 +02:00
|
|
|
for(;;) {
|
|
|
|
auto inputlen = evbuffer_get_contiguous_space(input);
|
2013-02-09 08:42:01 +01:00
|
|
|
|
2014-06-01 14:01:01 +02:00
|
|
|
if(inputlen == 0) {
|
|
|
|
assert(evbuffer_get_length(input) == 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto mem = evbuffer_pullup(input, inputlen);
|
|
|
|
|
|
|
|
size_t nread = http_parser_execute(proxy_htp_.get(), &htp_hooks,
|
|
|
|
reinterpret_cast<const char*>(mem),
|
|
|
|
inputlen);
|
|
|
|
|
|
|
|
if(evbuffer_drain(input, nread) != 0) {
|
|
|
|
SSLOG(FATAL, this) << "evbuffer_drain() failed";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto htperr = HTTP_PARSER_ERRNO(proxy_htp_.get());
|
|
|
|
|
|
|
|
if(htperr != HPE_OK) {
|
|
|
|
return -1;
|
|
|
|
}
|
2013-02-09 08:42:01 +01:00
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
void Http2Session::add_downstream_connection(Http2DownstreamConnection *dconn)
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
dconns_.insert(dconn);
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
void Http2Session::remove_downstream_connection
|
|
|
|
(Http2DownstreamConnection *dconn)
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
dconns_.erase(dconn);
|
|
|
|
dconn->detach_stream_data();
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
void Http2Session::remove_stream_data(StreamData *sd)
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
streams_.erase(sd);
|
|
|
|
if(sd->dconn) {
|
|
|
|
sd->dconn->detach_stream_data();
|
|
|
|
}
|
|
|
|
delete sd;
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
int Http2Session::submit_request(Http2DownstreamConnection *dconn,
|
2014-02-19 14:52:00 +01:00
|
|
|
int32_t pri,
|
2013-11-28 13:36:04 +01:00
|
|
|
const nghttp2_nv *nva, size_t nvlen,
|
|
|
|
const nghttp2_data_provider *data_prd)
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
assert(state_ == CONNECTED);
|
2013-09-24 14:34:04 +02:00
|
|
|
auto sd = util::make_unique<StreamData>();
|
2014-03-25 18:04:24 +01:00
|
|
|
// TODO Specify nullptr to pri_spec for now
|
2014-05-07 16:24:07 +02:00
|
|
|
auto stream_id = nghttp2_submit_request(session_, nullptr, nva, nvlen,
|
|
|
|
data_prd, sd.get());
|
|
|
|
if(stream_id < 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
SSLOG(FATAL, this) << "nghttp2_submit_request() failed: "
|
2014-05-07 16:24:07 +02:00
|
|
|
<< nghttp2_strerror(stream_id);
|
2012-11-20 17:29:39 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2014-05-07 16:24:07 +02:00
|
|
|
|
|
|
|
dconn->attach_stream_data(sd.get());
|
|
|
|
dconn->get_downstream()->set_downstream_stream_id(stream_id);
|
|
|
|
streams_.insert(sd.release());
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
int Http2Session::submit_rst_stream(int32_t stream_id,
|
2013-07-26 12:33:25 +02:00
|
|
|
nghttp2_error_code error_code)
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
assert(state_ == CONNECTED);
|
2013-09-29 17:13:04 +02:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
SSLOG(INFO, this) << "RST_STREAM stream_id="
|
|
|
|
<< stream_id
|
|
|
|
<< " with error_code="
|
|
|
|
<< error_code;
|
|
|
|
}
|
2013-10-25 15:50:24 +02:00
|
|
|
int rv = nghttp2_submit_rst_stream(session_, NGHTTP2_FLAG_NONE,
|
|
|
|
stream_id, error_code);
|
2012-11-20 17:29:39 +01:00
|
|
|
if(rv != 0) {
|
2013-07-12 17:19:03 +02:00
|
|
|
SSLOG(FATAL, this) << "nghttp2_submit_rst_stream() failed: "
|
|
|
|
<< nghttp2_strerror(rv);
|
2012-11-20 17:29:39 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-18 08:12:03 +01:00
|
|
|
int Http2Session::submit_priority(Http2DownstreamConnection *dconn,
|
|
|
|
int32_t pri)
|
|
|
|
{
|
|
|
|
assert(state_ == CONNECTED);
|
|
|
|
if(!dconn) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int rv;
|
2014-03-25 18:04:24 +01:00
|
|
|
|
|
|
|
// TODO Disabled temporarily
|
|
|
|
|
|
|
|
// rv = nghttp2_submit_priority(session_, NGHTTP2_FLAG_NONE,
|
|
|
|
// dconn->get_downstream()->
|
|
|
|
// get_downstream_stream_id(), pri);
|
|
|
|
|
|
|
|
rv = 0;
|
|
|
|
|
2014-01-18 08:12:03 +01:00
|
|
|
if(rv < NGHTTP2_ERR_FATAL) {
|
|
|
|
SSLOG(FATAL, this) << "nghttp2_submit_priority() failed: "
|
|
|
|
<< nghttp2_strerror(rv);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
nghttp2_session* Http2Session::get_session() const
|
2013-10-29 16:07:35 +01:00
|
|
|
{
|
2013-10-29 16:51:01 +01:00
|
|
|
return session_;
|
2013-10-29 16:07:35 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
bool Http2Session::get_flow_control() const
|
2012-11-21 15:47:48 +01:00
|
|
|
{
|
|
|
|
return flow_control_;
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
int Http2Session::resume_data(Http2DownstreamConnection *dconn)
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
assert(state_ == CONNECTED);
|
2013-09-24 14:34:04 +02:00
|
|
|
auto downstream = dconn->get_downstream();
|
2013-07-12 17:19:03 +02:00
|
|
|
int rv = nghttp2_session_resume_data(session_,
|
2012-11-20 17:29:39 +01:00
|
|
|
downstream->get_downstream_stream_id());
|
|
|
|
switch(rv) {
|
|
|
|
case 0:
|
2013-07-12 17:19:03 +02:00
|
|
|
case NGHTTP2_ERR_INVALID_ARGUMENT:
|
2012-11-20 17:29:39 +01:00
|
|
|
return 0;
|
|
|
|
default:
|
2013-07-12 17:19:03 +02:00
|
|
|
SSLOG(FATAL, this) << "nghttp2_resume_session() failed: "
|
|
|
|
<< nghttp2_strerror(rv);
|
2012-11-20 17:29:39 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
2013-11-04 09:53:57 +01:00
|
|
|
void call_downstream_readcb(Http2Session *http2session, Downstream *downstream)
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
2013-09-24 14:34:04 +02:00
|
|
|
auto upstream = downstream->get_upstream();
|
2012-11-20 17:29:39 +01:00
|
|
|
if(upstream) {
|
|
|
|
(upstream->get_downstream_readcb())
|
2013-11-04 09:53:57 +01:00
|
|
|
(http2session->get_bev(),
|
2012-11-20 17:29:39 +01:00
|
|
|
downstream->get_downstream_connection());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2013-08-29 15:58:05 +02:00
|
|
|
int on_stream_close_callback
|
2013-07-26 12:33:25 +02:00
|
|
|
(nghttp2_session *session, int32_t stream_id, nghttp2_error_code error_code,
|
2012-11-20 17:29:39 +01:00
|
|
|
void *user_data)
|
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(user_data);
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(INFO, http2session) << "Stream stream_id=" << stream_id
|
|
|
|
<< " is being closed";
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2014-01-19 11:46:58 +01:00
|
|
|
auto sd = static_cast<StreamData*>
|
2013-07-12 17:19:03 +02:00
|
|
|
(nghttp2_session_get_stream_user_data(session, stream_id));
|
2012-11-20 17:29:39 +01:00
|
|
|
if(sd == 0) {
|
|
|
|
// We might get this close callback when pushed streams are
|
|
|
|
// closed.
|
2013-08-29 15:58:05 +02:00
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2013-07-26 12:33:25 +02:00
|
|
|
auto dconn = sd->dconn;
|
2012-11-20 17:29:39 +01:00
|
|
|
if(dconn) {
|
2013-07-26 12:33:25 +02:00
|
|
|
auto downstream = dconn->get_downstream();
|
2012-11-20 17:29:39 +01:00
|
|
|
if(downstream && downstream->get_downstream_stream_id() == stream_id) {
|
2014-07-25 14:26:03 +02:00
|
|
|
|
|
|
|
http2session->consume(downstream->get_downstream_stream_id(),
|
|
|
|
downstream->get_response_datalen());
|
|
|
|
|
|
|
|
downstream->reset_response_datalen();
|
|
|
|
|
2014-08-14 05:48:30 +02:00
|
|
|
if(downstream->get_upgraded() &&
|
|
|
|
downstream->get_response_state() == Downstream::HEADER_COMPLETE) {
|
|
|
|
// For tunneled connection, we have to submit RST_STREAM to
|
|
|
|
// upstream *after* whole response body is sent. We just set
|
|
|
|
// MSG_COMPLETE here. Upstream will take care of that.
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
SSLOG(INFO, http2session) << "RST_STREAM against tunneled stream "
|
|
|
|
<< "stream_id="
|
|
|
|
<< stream_id;
|
|
|
|
}
|
|
|
|
downstream->get_upstream()->on_downstream_body_complete(downstream);
|
|
|
|
downstream->set_response_state(Downstream::MSG_COMPLETE);
|
|
|
|
} else if(error_code == NGHTTP2_NO_ERROR) {
|
2014-07-23 16:32:57 +02:00
|
|
|
if(downstream->get_response_state() != Downstream::MSG_COMPLETE) {
|
2012-11-20 17:29:39 +01:00
|
|
|
downstream->set_response_state(Downstream::MSG_RESET);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
downstream->set_response_state(Downstream::MSG_RESET);
|
|
|
|
}
|
2013-11-04 09:53:57 +01:00
|
|
|
call_downstream_readcb(http2session, downstream);
|
2012-11-20 17:29:39 +01:00
|
|
|
// dconn may be deleted
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// The life time of StreamData ends here
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->remove_stream_data(sd);
|
2013-08-29 15:58:05 +02:00
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2013-10-31 13:45:17 +01:00
|
|
|
namespace {
|
|
|
|
void settings_timeout_cb(evutil_socket_t fd, short what, void *arg)
|
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(arg);
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(INFO, http2session) << "SETTINGS timeout";
|
2013-12-25 16:23:07 +01:00
|
|
|
if(http2session->terminate_session(NGHTTP2_SETTINGS_TIMEOUT) != 0) {
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->disconnect();
|
2013-10-31 13:45:17 +01:00
|
|
|
return;
|
|
|
|
}
|
2013-11-04 09:53:57 +01:00
|
|
|
if(http2session->send() != 0) {
|
|
|
|
http2session->disconnect();
|
2013-10-31 13:45:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
int Http2Session::start_settings_timer()
|
2013-10-31 13:45:17 +01:00
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
// We submit SETTINGS only once
|
|
|
|
if(settings_timerev_) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
settings_timerev_ = evtimer_new(evbase_, settings_timeout_cb, this);
|
|
|
|
if(settings_timerev_ == nullptr) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
// SETTINGS ACK timeout is 10 seconds for now
|
|
|
|
timeval settings_timeout = { 10, 0 };
|
|
|
|
rv = evtimer_add(settings_timerev_, &settings_timeout);
|
|
|
|
if(rv == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
void Http2Session::stop_settings_timer()
|
2013-10-31 13:45:17 +01:00
|
|
|
{
|
|
|
|
if(settings_timerev_ == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
event_free(settings_timerev_);
|
|
|
|
settings_timerev_ = nullptr;
|
|
|
|
}
|
|
|
|
|
2014-01-16 15:41:13 +01:00
|
|
|
namespace {
|
|
|
|
int on_header_callback(nghttp2_session *session,
|
|
|
|
const nghttp2_frame *frame,
|
|
|
|
const uint8_t *name, size_t namelen,
|
|
|
|
const uint8_t *value, size_t valuelen,
|
2014-04-01 19:10:35 +02:00
|
|
|
uint8_t flags,
|
2014-01-16 15:41:13 +01:00
|
|
|
void *user_data)
|
|
|
|
{
|
2014-08-08 13:52:32 +02:00
|
|
|
auto http2session = static_cast<Http2Session*>(user_data);
|
2014-01-19 11:46:58 +01:00
|
|
|
auto sd = static_cast<StreamData*>
|
2014-01-16 15:41:13 +01:00
|
|
|
(nghttp2_session_get_stream_user_data(session, frame->hd.stream_id));
|
|
|
|
if(!sd || !sd->dconn) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
auto downstream = sd->dconn->get_downstream();
|
|
|
|
if(!downstream) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-07-23 16:32:57 +02:00
|
|
|
|
|
|
|
if(frame->hd.type != NGHTTP2_HEADERS ||
|
|
|
|
(frame->headers.cat != NGHTTP2_HCAT_RESPONSE &&
|
|
|
|
!downstream->get_expect_final_response())) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-27 17:17:54 +01:00
|
|
|
if(downstream->get_response_headers_sum() > Downstream::MAX_HEADERS_SUM) {
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
DLOG(INFO, downstream) << "Too large header block size="
|
|
|
|
<< downstream->get_response_headers_sum();
|
2014-01-26 16:44:08 +01:00
|
|
|
}
|
2014-01-27 17:17:54 +01:00
|
|
|
return NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE;
|
2014-01-26 16:44:08 +01:00
|
|
|
}
|
2014-01-16 18:16:53 +01:00
|
|
|
if(!http2::check_nv(name, namelen, value, valuelen)) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-08-08 13:52:32 +02:00
|
|
|
|
|
|
|
if(namelen > 0 && name[0] == ':') {
|
|
|
|
if(!downstream->response_pseudo_header_allowed() ||
|
|
|
|
!http2::check_http2_response_pseudo_header(name, namelen)) {
|
|
|
|
|
|
|
|
http2session->submit_rst_stream(frame->hd.stream_id,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
return NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-03 04:22:11 +02:00
|
|
|
downstream->split_add_response_header(name, namelen, value, valuelen,
|
|
|
|
flags & NGHTTP2_NV_FLAG_NO_INDEX);
|
2014-01-16 15:41:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2014-01-29 13:23:13 +01:00
|
|
|
int on_begin_headers_callback(nghttp2_session *session,
|
|
|
|
const nghttp2_frame *frame,
|
|
|
|
void *user_data)
|
2014-01-16 15:41:13 +01:00
|
|
|
{
|
2014-01-29 13:23:13 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(user_data);
|
|
|
|
if(frame->headers.cat == NGHTTP2_HCAT_REQUEST) {
|
|
|
|
// server sends request HEADERS
|
|
|
|
http2session->submit_rst_stream(frame->hd.stream_id,
|
|
|
|
NGHTTP2_REFUSED_STREAM);
|
2014-01-16 15:41:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2014-01-29 13:23:13 +01:00
|
|
|
if(frame->headers.cat != NGHTTP2_HCAT_RESPONSE) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
auto sd = static_cast<StreamData*>
|
|
|
|
(nghttp2_session_get_stream_user_data(session, frame->hd.stream_id));
|
|
|
|
if(!sd || !sd->dconn) {
|
|
|
|
http2session->submit_rst_stream(frame->hd.stream_id,
|
|
|
|
NGHTTP2_INTERNAL_ERROR);
|
2014-01-16 15:41:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2014-01-29 13:23:13 +01:00
|
|
|
auto downstream = sd->dconn->get_downstream();
|
|
|
|
if(!downstream ||
|
|
|
|
downstream->get_downstream_stream_id() != frame->hd.stream_id) {
|
|
|
|
http2session->submit_rst_stream(frame->hd.stream_id,
|
|
|
|
NGHTTP2_INTERNAL_ERROR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
int on_response_headers(Http2Session *http2session,
|
2014-07-23 16:32:57 +02:00
|
|
|
Downstream *downstream,
|
2014-01-29 13:23:13 +01:00
|
|
|
nghttp2_session *session,
|
|
|
|
const nghttp2_frame *frame)
|
|
|
|
{
|
2014-01-16 15:41:13 +01:00
|
|
|
int rv;
|
2014-07-23 16:32:57 +02:00
|
|
|
|
|
|
|
auto upstream = downstream->get_upstream();
|
|
|
|
|
2014-01-16 15:41:13 +01:00
|
|
|
downstream->normalize_response_headers();
|
|
|
|
auto& nva = downstream->get_response_headers();
|
|
|
|
|
2014-07-31 14:46:50 +02:00
|
|
|
downstream->set_expect_final_response(false);
|
|
|
|
|
2014-08-08 13:17:03 +02:00
|
|
|
if(!http2::check_http2_response_headers(nva)) {
|
2014-01-16 15:41:13 +01:00
|
|
|
http2session->submit_rst_stream(frame->hd.stream_id,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
downstream->set_response_state(Downstream::MSG_RESET);
|
|
|
|
call_downstream_readcb(http2session, downstream);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto status = http2::get_unique_header(nva, ":status");
|
2014-08-08 16:08:24 +02:00
|
|
|
int status_code;
|
|
|
|
|
|
|
|
if(!status || http2::value_lws(status) ||
|
|
|
|
(status_code = http2::parse_http_status_code(status->value)) == -1) {
|
|
|
|
|
2014-01-16 15:41:13 +01:00
|
|
|
http2session->submit_rst_stream(frame->hd.stream_id,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
downstream->set_response_state(Downstream::MSG_RESET);
|
|
|
|
call_downstream_readcb(http2session, downstream);
|
2014-07-23 16:32:57 +02:00
|
|
|
|
2014-01-16 15:41:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2014-07-23 16:32:57 +02:00
|
|
|
|
2014-08-08 16:08:24 +02:00
|
|
|
downstream->set_response_http_status(status_code);
|
2014-03-21 11:25:46 +01:00
|
|
|
downstream->set_response_major(2);
|
|
|
|
downstream->set_response_minor(0);
|
2014-01-16 15:41:13 +01:00
|
|
|
|
2014-07-25 17:40:06 +02:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
std::stringstream ss;
|
|
|
|
for(auto& nv : nva) {
|
|
|
|
ss << TTY_HTTP_HD << nv.name << TTY_RST << ": " << nv.value << "\n";
|
|
|
|
}
|
|
|
|
SSLOG(INFO, http2session) << "HTTP response headers. stream_id="
|
|
|
|
<< frame->hd.stream_id
|
|
|
|
<< "\n" << ss.str();
|
|
|
|
}
|
|
|
|
|
2014-07-23 16:32:57 +02:00
|
|
|
if(downstream->get_non_final_response()) {
|
|
|
|
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
2014-07-25 17:40:06 +02:00
|
|
|
SSLOG(INFO, http2session) << "This is non-final response.";
|
2014-07-23 16:32:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
downstream->set_expect_final_response(true);
|
|
|
|
rv = upstream->on_downstream_header_complete(downstream);
|
|
|
|
|
|
|
|
// Now Dowstream's response headers are erased.
|
|
|
|
|
|
|
|
if(rv != 0) {
|
|
|
|
http2session->submit_rst_stream(frame->hd.stream_id,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
downstream->set_response_state(Downstream::MSG_RESET);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-16 15:41:13 +01:00
|
|
|
auto content_length = http2::get_header(nva, "content-length");
|
|
|
|
if(!content_length && downstream->get_request_method() != "HEAD" &&
|
|
|
|
downstream->get_request_method() != "CONNECT") {
|
|
|
|
unsigned int status;
|
|
|
|
status = downstream->get_response_http_status();
|
|
|
|
if(!((100 <= status && status <= 199) || status == 204 ||
|
|
|
|
status == 304)) {
|
|
|
|
// Here we have response body but Content-Length is not known
|
|
|
|
// in advance.
|
|
|
|
if(downstream->get_request_major() <= 0 ||
|
|
|
|
downstream->get_request_minor() <= 0) {
|
|
|
|
// We simply close connection for pre-HTTP/1.1 in this case.
|
|
|
|
downstream->set_response_connection_close(true);
|
|
|
|
} else {
|
|
|
|
// Otherwise, use chunked encoding to keep upstream
|
|
|
|
// connection open. In HTTP2, we are supporsed not to
|
|
|
|
// receive transfer-encoding.
|
|
|
|
downstream->add_response_header("transfer-encoding", "chunked");
|
2014-06-15 09:14:00 +02:00
|
|
|
downstream->set_chunked_response(true);
|
2014-01-16 15:41:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
downstream->set_response_state(Downstream::HEADER_COMPLETE);
|
|
|
|
downstream->check_upgrade_fulfilled();
|
|
|
|
if(downstream->get_upgraded()) {
|
|
|
|
downstream->set_response_connection_close(true);
|
|
|
|
// On upgrade sucess, both ends can send data
|
2014-08-21 14:22:16 +02:00
|
|
|
if(upstream->resume_read(SHRPX_MSG_BLOCK, downstream, 0) != 0) {
|
2014-01-16 15:41:13 +01:00
|
|
|
// If resume_read fails, just drop connection. Not ideal.
|
|
|
|
delete upstream->get_client_handler();
|
2014-08-09 11:47:45 +02:00
|
|
|
return -1;
|
2014-01-16 15:41:13 +01:00
|
|
|
}
|
|
|
|
downstream->set_request_state(Downstream::HEADER_COMPLETE);
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
SSLOG(INFO, http2session) << "HTTP upgrade success. stream_id="
|
|
|
|
<< frame->hd.stream_id;
|
|
|
|
}
|
|
|
|
} else if(downstream->get_request_method() == "CONNECT") {
|
|
|
|
// If request is CONNECT, terminate request body to avoid for
|
|
|
|
// stream to stall.
|
|
|
|
downstream->end_upload_data();
|
|
|
|
}
|
|
|
|
rv = upstream->on_downstream_header_complete(downstream);
|
|
|
|
if(rv != 0) {
|
|
|
|
http2session->submit_rst_stream(frame->hd.stream_id,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
downstream->set_response_state(Downstream::MSG_RESET);
|
|
|
|
}
|
2014-08-09 11:47:45 +02:00
|
|
|
|
2014-01-16 15:41:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
namespace {
|
2013-08-29 14:03:39 +02:00
|
|
|
int on_frame_recv_callback
|
2013-09-03 14:24:14 +02:00
|
|
|
(nghttp2_session *session, const nghttp2_frame *frame, void *user_data)
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
2014-04-03 11:54:15 +02:00
|
|
|
int rv;
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(user_data);
|
2014-04-03 11:54:15 +02:00
|
|
|
|
2013-07-26 12:33:25 +02:00
|
|
|
switch(frame->hd.type) {
|
2014-04-03 11:54:15 +02:00
|
|
|
case NGHTTP2_DATA: {
|
|
|
|
auto sd = static_cast<StreamData*>
|
|
|
|
(nghttp2_session_get_stream_user_data(session, frame->hd.stream_id));
|
|
|
|
if(!sd || !sd->dconn) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
auto downstream = sd->dconn->get_downstream();
|
|
|
|
if(!downstream ||
|
|
|
|
downstream->get_downstream_stream_id() != frame->hd.stream_id) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto upstream = downstream->get_upstream();
|
|
|
|
rv = upstream->on_downstream_body(downstream, nullptr, 0, true);
|
|
|
|
if(rv != 0) {
|
|
|
|
http2session->submit_rst_stream(frame->hd.stream_id,
|
|
|
|
NGHTTP2_INTERNAL_ERROR);
|
|
|
|
downstream->set_response_state(Downstream::MSG_RESET);
|
2014-07-23 16:32:57 +02:00
|
|
|
|
|
|
|
} else if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
|
|
|
|
2014-08-09 11:47:45 +02:00
|
|
|
downstream->disable_downstream_rtimer();
|
|
|
|
|
2014-07-31 14:46:50 +02:00
|
|
|
if(downstream->get_response_state() == Downstream::HEADER_COMPLETE) {
|
2014-07-23 16:32:57 +02:00
|
|
|
|
|
|
|
downstream->set_response_state(Downstream::MSG_COMPLETE);
|
|
|
|
|
|
|
|
rv = upstream->on_downstream_body_complete(downstream);
|
|
|
|
|
|
|
|
if(rv != 0) {
|
|
|
|
downstream->set_response_state(Downstream::MSG_RESET);
|
|
|
|
}
|
|
|
|
}
|
2014-04-03 11:54:15 +02:00
|
|
|
}
|
2014-07-23 16:32:57 +02:00
|
|
|
|
2014-04-03 11:54:15 +02:00
|
|
|
call_downstream_readcb(http2session, downstream);
|
|
|
|
break;
|
|
|
|
}
|
2014-07-23 16:32:57 +02:00
|
|
|
case NGHTTP2_HEADERS: {
|
|
|
|
auto sd = static_cast<StreamData*>
|
|
|
|
(nghttp2_session_get_stream_user_data(session, frame->hd.stream_id));
|
|
|
|
if(!sd || !sd->dconn) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
auto downstream = sd->dconn->get_downstream();
|
|
|
|
|
|
|
|
if(!downstream) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-07-03 14:18:01 +02:00
|
|
|
if(frame->headers.cat == NGHTTP2_HCAT_RESPONSE) {
|
2014-07-23 16:32:57 +02:00
|
|
|
rv = on_response_headers(http2session, downstream, session, frame);
|
|
|
|
|
|
|
|
if(rv != 0) {
|
2014-08-09 11:47:45 +02:00
|
|
|
return 0;
|
2014-07-23 16:32:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-31 14:46:50 +02:00
|
|
|
if(frame->headers.cat == NGHTTP2_HCAT_HEADERS) {
|
|
|
|
if(downstream->get_expect_final_response()) {
|
|
|
|
rv = on_response_headers(http2session, downstream, session, frame);
|
2014-07-03 14:18:01 +02:00
|
|
|
|
2014-07-31 14:46:50 +02:00
|
|
|
if(rv != 0) {
|
2014-08-09 11:47:45 +02:00
|
|
|
return 0;
|
2014-07-31 14:46:50 +02:00
|
|
|
}
|
|
|
|
} else if((frame->hd.flags & NGHTTP2_FLAG_END_STREAM) == 0) {
|
2014-08-01 17:26:43 +02:00
|
|
|
http2session->submit_rst_stream(frame->hd.stream_id,
|
|
|
|
NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
return 0;
|
2014-07-03 14:18:01 +02:00
|
|
|
}
|
|
|
|
}
|
2014-07-23 16:32:57 +02:00
|
|
|
|
|
|
|
if(frame->hd.flags & NGHTTP2_FLAG_END_STREAM) {
|
2014-08-09 11:47:45 +02:00
|
|
|
|
|
|
|
downstream->disable_downstream_rtimer();
|
|
|
|
|
2014-07-31 14:46:50 +02:00
|
|
|
if(downstream->get_response_state() == Downstream::HEADER_COMPLETE) {
|
2014-07-23 16:32:57 +02:00
|
|
|
downstream->set_response_state(Downstream::MSG_COMPLETE);
|
|
|
|
|
|
|
|
auto upstream = downstream->get_upstream();
|
|
|
|
|
|
|
|
rv = upstream->on_downstream_body_complete(downstream);
|
|
|
|
|
|
|
|
if(rv != 0) {
|
|
|
|
downstream->set_response_state(Downstream::MSG_RESET);
|
|
|
|
}
|
|
|
|
}
|
2014-08-09 11:47:45 +02:00
|
|
|
} else {
|
|
|
|
downstream->reset_downstream_rtimer();
|
2014-07-23 16:32:57 +02:00
|
|
|
}
|
2014-08-09 11:47:45 +02:00
|
|
|
|
|
|
|
// This may delete downstream
|
|
|
|
call_downstream_readcb(http2session, downstream);
|
|
|
|
|
2014-07-03 14:18:01 +02:00
|
|
|
break;
|
2014-07-23 16:32:57 +02:00
|
|
|
}
|
2013-07-26 12:33:25 +02:00
|
|
|
case NGHTTP2_RST_STREAM: {
|
2014-01-19 11:46:58 +01:00
|
|
|
auto sd = static_cast<StreamData*>
|
2013-07-26 12:33:25 +02:00
|
|
|
(nghttp2_session_get_stream_user_data(session, frame->hd.stream_id));
|
|
|
|
if(sd && sd->dconn) {
|
|
|
|
auto downstream = sd->dconn->get_downstream();
|
|
|
|
if(downstream &&
|
|
|
|
downstream->get_downstream_stream_id() == frame->hd.stream_id) {
|
2014-08-14 05:48:30 +02:00
|
|
|
|
2013-07-26 12:33:25 +02:00
|
|
|
downstream->set_response_rst_stream_error_code
|
|
|
|
(frame->rst_stream.error_code);
|
2013-11-04 09:53:57 +01:00
|
|
|
call_downstream_readcb(http2session, downstream);
|
2013-07-26 12:33:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2013-10-31 13:45:17 +01:00
|
|
|
case NGHTTP2_SETTINGS:
|
|
|
|
if((frame->hd.flags & NGHTTP2_FLAG_ACK) == 0) {
|
|
|
|
break;
|
|
|
|
}
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->stop_settings_timer();
|
2013-10-31 13:45:17 +01:00
|
|
|
break;
|
2013-07-26 12:33:25 +02:00
|
|
|
case NGHTTP2_PUSH_PROMISE:
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(INFO, http2session)
|
2014-01-09 15:47:21 +01:00
|
|
|
<< "Received downstream PUSH_PROMISE stream_id=" << frame->hd.stream_id
|
|
|
|
<< ", promised_stream_id=" << frame->push_promise.promised_stream_id;
|
2013-07-26 12:33:25 +02:00
|
|
|
}
|
|
|
|
// We just respond with RST_STREAM.
|
2014-01-09 15:47:21 +01:00
|
|
|
http2session->submit_rst_stream(frame->push_promise.promised_stream_id,
|
2013-11-04 09:53:57 +01:00
|
|
|
NGHTTP2_REFUSED_STREAM);
|
2013-07-26 12:33:25 +02:00
|
|
|
break;
|
2012-11-20 17:29:39 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2013-08-29 14:03:39 +02:00
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2013-08-29 14:18:40 +02:00
|
|
|
int 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)
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
int rv;
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(user_data);
|
|
|
|
auto sd = static_cast<StreamData*>
|
2013-07-12 17:19:03 +02:00
|
|
|
(nghttp2_session_get_stream_user_data(session, stream_id));
|
2012-11-20 17:29:39 +01:00
|
|
|
if(!sd || !sd->dconn) {
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->submit_rst_stream(stream_id, NGHTTP2_INTERNAL_ERROR);
|
2014-07-25 14:26:03 +02:00
|
|
|
|
|
|
|
if(http2session->consume(stream_id, len) != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
|
2013-08-29 14:18:40 +02:00
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2013-07-26 12:33:25 +02:00
|
|
|
auto downstream = sd->dconn->get_downstream();
|
2014-07-25 16:13:27 +02:00
|
|
|
if(!downstream || downstream->get_downstream_stream_id() != stream_id ||
|
|
|
|
!downstream->expect_response_body()) {
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->submit_rst_stream(stream_id, NGHTTP2_INTERNAL_ERROR);
|
2014-07-25 14:26:03 +02:00
|
|
|
|
|
|
|
if(http2session->consume(stream_id, len) != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
|
2013-08-29 14:18:40 +02:00
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2012-11-21 15:47:48 +01:00
|
|
|
|
2014-07-23 16:32:57 +02:00
|
|
|
// We don't want DATA after non-final response, which is illegal in
|
|
|
|
// HTTP.
|
|
|
|
if(downstream->get_non_final_response()) {
|
|
|
|
http2session->submit_rst_stream(stream_id, NGHTTP2_PROTOCOL_ERROR);
|
2014-07-25 14:26:03 +02:00
|
|
|
|
|
|
|
if(http2session->consume(stream_id, len) != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
|
2014-07-23 16:32:57 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-09 11:47:45 +02:00
|
|
|
downstream->reset_downstream_rtimer();
|
|
|
|
|
2014-07-05 11:22:40 +02:00
|
|
|
downstream->add_response_bodylen(len);
|
|
|
|
|
2013-07-26 12:33:25 +02:00
|
|
|
auto upstream = downstream->get_upstream();
|
2014-04-03 11:54:15 +02:00
|
|
|
rv = upstream->on_downstream_body(downstream, data, len, false);
|
2012-11-20 17:29:39 +01:00
|
|
|
if(rv != 0) {
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->submit_rst_stream(stream_id, NGHTTP2_INTERNAL_ERROR);
|
2014-07-25 14:26:03 +02:00
|
|
|
|
|
|
|
if(http2session->consume(stream_id, len) != 0) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
downstream->set_response_state(Downstream::MSG_RESET);
|
|
|
|
}
|
2014-07-25 14:26:03 +02:00
|
|
|
|
|
|
|
downstream->add_response_datalen(len);
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
call_downstream_readcb(http2session, downstream);
|
2013-08-29 14:18:40 +02:00
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2013-10-31 13:45:17 +01:00
|
|
|
namespace {
|
|
|
|
int on_frame_send_callback(nghttp2_session* session,
|
|
|
|
const nghttp2_frame *frame, void *user_data)
|
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(user_data);
|
2014-08-09 11:47:45 +02:00
|
|
|
|
|
|
|
if(frame->hd.type == NGHTTP2_DATA || frame->hd.type == NGHTTP2_HEADERS) {
|
|
|
|
if((frame->hd.flags & NGHTTP2_FLAG_END_STREAM) == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto sd = static_cast<StreamData*>
|
|
|
|
(nghttp2_session_get_stream_user_data(session, frame->hd.stream_id));
|
|
|
|
|
|
|
|
if(!sd || !sd->dconn) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto downstream = sd->dconn->get_downstream();
|
|
|
|
|
|
|
|
if(!downstream ||
|
|
|
|
downstream->get_downstream_stream_id() != frame->hd.stream_id) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
downstream->reset_downstream_rtimer();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-31 13:45:17 +01:00
|
|
|
if(frame->hd.type == NGHTTP2_SETTINGS &&
|
|
|
|
(frame->hd.flags & NGHTTP2_FLAG_ACK) == 0) {
|
2013-11-04 09:53:57 +01:00
|
|
|
if(http2session->start_settings_timer() != 0) {
|
2013-10-31 13:45:17 +01:00
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
namespace {
|
2013-08-29 14:51:58 +02:00
|
|
|
int on_frame_not_send_callback(nghttp2_session *session,
|
2013-09-03 14:24:14 +02:00
|
|
|
const nghttp2_frame *frame,
|
|
|
|
int lib_error_code, void *user_data)
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(user_data);
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(WARNING, http2session) << "Failed to send control frame type="
|
2014-03-02 15:19:33 +01:00
|
|
|
<< static_cast<uint32_t>(frame->hd.type)
|
2013-11-04 09:53:57 +01:00
|
|
|
<< "lib_error_code=" << lib_error_code << ":"
|
|
|
|
<< nghttp2_strerror(lib_error_code);
|
2013-07-26 12:33:25 +02:00
|
|
|
if(frame->hd.type == NGHTTP2_HEADERS &&
|
|
|
|
frame->headers.cat == NGHTTP2_HCAT_REQUEST) {
|
2012-11-20 17:29:39 +01:00
|
|
|
// To avoid stream hanging around, flag Downstream::MSG_RESET and
|
|
|
|
// terminate the upstream and downstream connections.
|
2014-01-19 11:46:58 +01:00
|
|
|
auto sd = static_cast<StreamData*>
|
2013-07-26 12:33:25 +02:00
|
|
|
(nghttp2_session_get_stream_user_data(session, frame->hd.stream_id));
|
2012-11-20 17:29:39 +01:00
|
|
|
if(!sd) {
|
2013-08-29 14:51:58 +02:00
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
if(sd->dconn) {
|
2013-07-26 12:33:25 +02:00
|
|
|
auto downstream = sd->dconn->get_downstream();
|
2012-11-20 17:29:39 +01:00
|
|
|
if(!downstream ||
|
2013-07-26 12:33:25 +02:00
|
|
|
downstream->get_downstream_stream_id() != frame->hd.stream_id) {
|
2013-08-29 14:51:58 +02:00
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
downstream->set_response_state(Downstream::MSG_RESET);
|
2013-11-04 09:53:57 +01:00
|
|
|
call_downstream_readcb(http2session, downstream);
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session->remove_stream_data(sd);
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2013-08-29 14:51:58 +02:00
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2013-08-29 16:10:18 +02:00
|
|
|
int 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)
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto http2session = static_cast<Http2Session*>(user_data);
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2013-11-04 09:53:57 +01:00
|
|
|
SSLOG(INFO, http2session) << "Received unknown control frame";
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2013-08-29 16:10:18 +02:00
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
int Http2Session::on_connect()
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
int rv;
|
2013-02-22 13:54:07 +01:00
|
|
|
if(ssl_ctx_) {
|
2014-01-01 15:54:28 +01:00
|
|
|
const unsigned char *next_proto = nullptr;
|
|
|
|
unsigned int next_proto_len;
|
2013-02-22 13:54:07 +01:00
|
|
|
SSL_get0_next_proto_negotiated(ssl_, &next_proto, &next_proto_len);
|
2014-01-01 15:54:28 +01:00
|
|
|
for(int i = 0; i < 2; ++i) {
|
|
|
|
if(next_proto) {
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
std::string proto(next_proto, next_proto+next_proto_len);
|
|
|
|
SSLOG(INFO, this) << "Negotiated next protocol: " << proto;
|
|
|
|
}
|
|
|
|
if(next_proto_len != NGHTTP2_PROTO_VERSION_ID_LEN ||
|
|
|
|
memcmp(NGHTTP2_PROTO_VERSION_ID, next_proto,
|
|
|
|
NGHTTP2_PROTO_VERSION_ID_LEN) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#if OPENSSL_VERSION_NUMBER >= 0x10002000L
|
|
|
|
SSL_get0_alpn_selected(ssl_, &next_proto, &next_proto_len);
|
|
|
|
#else // OPENSSL_VERSION_NUMBER < 0x10002000L
|
|
|
|
break;
|
|
|
|
#endif // OPENSSL_VERSION_NUMBER < 0x10002000L
|
2013-02-22 13:54:07 +01:00
|
|
|
}
|
2014-01-01 15:54:28 +01:00
|
|
|
if(!next_proto) {
|
2013-02-22 13:54:07 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2014-08-22 13:59:50 +02:00
|
|
|
nghttp2_session_callbacks *callbacks;
|
|
|
|
rv = nghttp2_session_callbacks_new(&callbacks);
|
|
|
|
|
|
|
|
if(rv != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
util::auto_delete<nghttp2_session_callbacks*> callbacks_deleter
|
|
|
|
(callbacks, nghttp2_session_callbacks_del);
|
|
|
|
|
|
|
|
nghttp2_session_callbacks_set_on_stream_close_callback
|
|
|
|
(callbacks, on_stream_close_callback);
|
|
|
|
|
|
|
|
nghttp2_session_callbacks_set_on_frame_recv_callback
|
|
|
|
(callbacks, on_frame_recv_callback);
|
|
|
|
|
|
|
|
nghttp2_session_callbacks_set_on_data_chunk_recv_callback
|
|
|
|
(callbacks, on_data_chunk_recv_callback);
|
|
|
|
|
|
|
|
nghttp2_session_callbacks_set_on_frame_send_callback
|
|
|
|
(callbacks, on_frame_send_callback);
|
|
|
|
|
|
|
|
nghttp2_session_callbacks_set_on_frame_not_send_callback
|
|
|
|
(callbacks, on_frame_not_send_callback);
|
|
|
|
|
|
|
|
nghttp2_session_callbacks_set_on_unknown_frame_recv_callback
|
|
|
|
(callbacks, on_unknown_frame_recv_callback);
|
|
|
|
|
|
|
|
nghttp2_session_callbacks_set_on_header_callback
|
|
|
|
(callbacks, on_header_callback);
|
|
|
|
|
|
|
|
nghttp2_session_callbacks_set_on_begin_headers_callback
|
|
|
|
(callbacks, on_begin_headers_callback);
|
|
|
|
|
2014-02-11 09:23:22 +01:00
|
|
|
if(get_config()->padding) {
|
2014-08-22 13:59:50 +02:00
|
|
|
nghttp2_session_callbacks_set_select_padding_callback
|
|
|
|
(callbacks, http::select_padding_callback);
|
2014-02-11 09:23:22 +01:00
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2014-08-22 13:59:50 +02:00
|
|
|
rv = nghttp2_session_client_new2(&session_, callbacks, this,
|
2014-04-04 14:57:47 +02:00
|
|
|
get_config()->http2_option);
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-07-26 12:33:25 +02:00
|
|
|
flow_control_ = true;
|
2012-11-21 15:47:48 +01:00
|
|
|
|
2013-11-02 08:59:59 +01:00
|
|
|
nghttp2_settings_entry entry[3];
|
|
|
|
entry[0].settings_id = NGHTTP2_SETTINGS_ENABLE_PUSH;
|
|
|
|
entry[0].value = 0;
|
|
|
|
entry[1].settings_id = NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS;
|
2013-11-04 10:14:05 +01:00
|
|
|
entry[1].value = get_config()->http2_max_concurrent_streams;
|
2013-11-02 08:59:59 +01:00
|
|
|
|
|
|
|
entry[2].settings_id = NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE;
|
2013-11-12 03:08:43 +01:00
|
|
|
entry[2].value = (1 << get_config()->http2_downstream_window_bits) - 1;
|
2012-11-21 15:47:48 +01:00
|
|
|
|
2013-10-25 15:50:24 +02:00
|
|
|
rv = nghttp2_submit_settings(session_, NGHTTP2_FLAG_NONE, entry,
|
|
|
|
sizeof(entry)/sizeof(nghttp2_settings_entry));
|
2012-11-20 17:29:39 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2013-07-26 12:33:25 +02:00
|
|
|
|
2013-11-20 16:15:17 +01:00
|
|
|
if(get_config()->http2_downstream_connection_window_bits > 16) {
|
|
|
|
int32_t delta =
|
|
|
|
(1 << get_config()->http2_downstream_connection_window_bits) - 1
|
|
|
|
- NGHTTP2_INITIAL_CONNECTION_WINDOW_SIZE;
|
|
|
|
rv = nghttp2_submit_window_update(session_, NGHTTP2_FLAG_NONE, 0, delta);
|
|
|
|
if(rv != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-30 14:02:25 +02:00
|
|
|
rv = bufferevent_write(bev_, NGHTTP2_CLIENT_CONNECTION_PREFACE,
|
|
|
|
NGHTTP2_CLIENT_CONNECTION_PREFACE_LEN);
|
2013-12-20 15:28:54 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
SSLOG(FATAL, this) << "bufferevent_write() failed";
|
|
|
|
return -1;
|
|
|
|
}
|
2013-07-26 14:35:14 +02:00
|
|
|
|
2014-06-10 17:19:54 +02:00
|
|
|
if(!get_config()->downstream_no_tls &&
|
|
|
|
!ssl::check_http2_requirement(ssl_)) {
|
|
|
|
|
|
|
|
rv = terminate_session(NGHTTP2_INADEQUATE_SECURITY);
|
|
|
|
|
|
|
|
if(rv != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
rv = send();
|
|
|
|
if(rv != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-06-10 17:19:54 +02:00
|
|
|
if(!get_config()->downstream_no_tls &&
|
|
|
|
!ssl::check_http2_requirement(ssl_)) {
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
// submit pending request
|
2013-07-26 12:33:25 +02:00
|
|
|
for(auto dconn : dconns_) {
|
2014-06-27 15:34:54 +02:00
|
|
|
if(dconn->push_request_headers() == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
SSLOG(INFO, this) << "backend request failed";
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2014-06-27 15:34:54 +02:00
|
|
|
|
|
|
|
auto downstream = dconn->get_downstream();
|
|
|
|
|
|
|
|
if(!downstream) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto upstream = downstream->get_upstream();
|
|
|
|
|
|
|
|
upstream->on_downstream_abort_request(downstream, 400);
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
int Http2Session::on_read()
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
2014-01-18 08:50:52 +01:00
|
|
|
ssize_t rv = 0;
|
|
|
|
auto input = bufferevent_get_input(bev_);
|
|
|
|
|
2014-06-01 14:01:01 +02:00
|
|
|
for(;;) {
|
|
|
|
auto inputlen = evbuffer_get_contiguous_space(input);
|
|
|
|
|
|
|
|
if(inputlen == 0) {
|
|
|
|
assert(evbuffer_get_length(input) == 0);
|
|
|
|
|
|
|
|
return send();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto mem = evbuffer_pullup(input, inputlen);
|
|
|
|
|
|
|
|
rv = nghttp2_session_mem_recv(session_, mem, inputlen);
|
|
|
|
|
|
|
|
if(rv < 0) {
|
|
|
|
SSLOG(ERROR, this) << "nghttp2_session_recv() returned error: "
|
|
|
|
<< nghttp2_strerror(rv);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(evbuffer_drain(input, rv) != 0) {
|
|
|
|
SSLOG(FATAL, this) << "evbuffer_drain() faild";
|
|
|
|
return -1;
|
|
|
|
}
|
2014-01-18 08:50:52 +01:00
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
int Http2Session::on_write()
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
return send();
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
int Http2Session::send()
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
2014-02-18 15:23:11 +01:00
|
|
|
int rv;
|
2014-03-15 08:10:42 +01:00
|
|
|
uint8_t buf[16384];
|
2014-02-18 15:23:11 +01:00
|
|
|
auto output = bufferevent_get_output(bev_);
|
2014-03-04 16:23:33 +01:00
|
|
|
util::EvbufferBuffer evbbuf(output, buf, sizeof(buf));
|
2014-02-18 15:23:11 +01:00
|
|
|
for(;;) {
|
|
|
|
// Check buffer length and return WOULDBLOCK if it is large enough.
|
2014-03-04 16:23:33 +01:00
|
|
|
if(evbuffer_get_length(output) + evbbuf.get_buflen() >
|
|
|
|
Http2Session::OUTBUF_MAX_THRES) {
|
2014-02-18 15:23:11 +01:00
|
|
|
return NGHTTP2_ERR_WOULDBLOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
const uint8_t *data;
|
|
|
|
auto datalen = nghttp2_session_mem_send(session_, &data);
|
|
|
|
|
|
|
|
if(datalen < 0) {
|
|
|
|
SSLOG(ERROR, this) << "nghttp2_session_mem_send() returned error: "
|
|
|
|
<< nghttp2_strerror(datalen);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(datalen == 0) {
|
|
|
|
break;
|
|
|
|
}
|
2014-03-04 16:23:33 +01:00
|
|
|
rv = evbbuf.add(data, datalen);
|
|
|
|
if(rv != 0) {
|
|
|
|
SSLOG(FATAL, this) << "evbuffer_add() failed";
|
|
|
|
return -1;
|
2014-02-18 15:23:11 +01:00
|
|
|
}
|
2014-03-03 13:18:24 +01:00
|
|
|
}
|
|
|
|
|
2014-03-04 16:23:33 +01:00
|
|
|
rv = evbbuf.flush();
|
|
|
|
if(rv != 0) {
|
2014-03-03 13:18:24 +01:00
|
|
|
SSLOG(FATAL, this) << "evbuffer_add() failed";
|
|
|
|
return -1;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2014-02-18 15:23:11 +01:00
|
|
|
|
|
|
|
if(nghttp2_session_want_read(session_) == 0 &&
|
|
|
|
nghttp2_session_want_write(session_) == 0 &&
|
2014-02-19 15:11:26 +01:00
|
|
|
evbuffer_get_length(output) == 0) {
|
2014-02-18 15:23:11 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
SSLOG(INFO, this) << "No more read/write for this session";
|
2012-12-16 17:10:45 +01:00
|
|
|
}
|
2014-02-18 15:23:11 +01:00
|
|
|
return -1;
|
2012-12-16 17:10:45 +01:00
|
|
|
}
|
2014-02-18 15:23:11 +01:00
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
void Http2Session::clear_notify()
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
2013-09-24 14:34:04 +02:00
|
|
|
auto input = bufferevent_get_output(rdbev_);
|
2013-12-20 15:28:54 +01:00
|
|
|
if(evbuffer_drain(input, evbuffer_get_length(input)) != 0) {
|
|
|
|
SSLOG(FATAL, this) << "evbuffer_drain() failed";
|
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
notified_ = false;
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
void Http2Session::notify()
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
if(!notified_) {
|
2013-12-20 15:28:54 +01:00
|
|
|
if(bufferevent_write(wrbev_, "1", 1) != 0) {
|
|
|
|
SSLOG(FATAL, this) << "bufferevent_write failed";
|
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
notified_ = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
bufferevent* Http2Session::get_bev() const
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
return bev_;
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
int Http2Session::get_state() const
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
return state_;
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
void Http2Session::set_state(int state)
|
2013-02-09 08:42:01 +01:00
|
|
|
{
|
|
|
|
state_ = state;
|
|
|
|
}
|
|
|
|
|
2013-12-25 16:23:07 +01:00
|
|
|
int Http2Session::terminate_session(nghttp2_error_code error_code)
|
2013-10-31 13:45:17 +01:00
|
|
|
{
|
|
|
|
int rv;
|
2013-12-25 16:23:07 +01:00
|
|
|
rv = nghttp2_session_terminate_session(session_, error_code);
|
2013-10-31 13:45:17 +01:00
|
|
|
if(rv != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-19 10:07:50 +01:00
|
|
|
size_t Http2Session::get_outbuf_length() const
|
|
|
|
{
|
|
|
|
if(bev_) {
|
|
|
|
return evbuffer_get_length(bufferevent_get_output(bev_));
|
|
|
|
} else {
|
|
|
|
return OUTBUF_MAX_THRES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-26 16:00:58 +02:00
|
|
|
SSL* Http2Session::get_ssl() const
|
|
|
|
{
|
|
|
|
return ssl_;
|
|
|
|
}
|
|
|
|
|
2014-07-25 14:26:03 +02:00
|
|
|
int Http2Session::consume(int32_t stream_id, size_t len)
|
2014-07-02 16:20:45 +02:00
|
|
|
{
|
2014-07-25 14:26:03 +02:00
|
|
|
int rv;
|
2014-07-02 16:20:45 +02:00
|
|
|
|
2014-07-31 16:34:33 +02:00
|
|
|
if(!session_) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-07-25 14:26:03 +02:00
|
|
|
rv = nghttp2_session_consume(session_, stream_id, len);
|
2014-07-02 16:20:45 +02:00
|
|
|
|
2014-07-25 14:26:03 +02:00
|
|
|
if(rv != 0) {
|
|
|
|
SSLOG(WARNING, this) << "nghttp2_session_consume() returned error: "
|
|
|
|
<< nghttp2_strerror(rv);
|
2014-07-02 16:20:45 +02:00
|
|
|
|
2014-07-25 14:26:03 +02:00
|
|
|
return -1;
|
2014-07-02 16:20:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
} // namespace shrpx
|