2012-06-04 16:48:31 +02:00
|
|
|
/*
|
2013-07-12 17:19:03 +02:00
|
|
|
* nghttp2 - HTTP/2.0 C Library
|
2012-06-04 16:48:31 +02: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.
|
|
|
|
*/
|
|
|
|
#include "shrpx_client_handler.h"
|
|
|
|
|
2012-08-21 17:14:02 +02:00
|
|
|
#include <unistd.h>
|
2012-07-15 14:15:28 +02:00
|
|
|
#include <cerrno>
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
#include "shrpx_upstream.h"
|
2013-07-26 12:38:54 +02:00
|
|
|
#include "shrpx_http2_upstream.h"
|
2012-06-04 16:48:31 +02:00
|
|
|
#include "shrpx_https_upstream.h"
|
|
|
|
#include "shrpx_config.h"
|
2012-11-18 13:23:13 +01:00
|
|
|
#include "shrpx_http_downstream_connection.h"
|
2013-11-04 09:53:57 +01:00
|
|
|
#include "shrpx_http2_downstream_connection.h"
|
2012-07-17 18:08:05 +02:00
|
|
|
#include "shrpx_accesslog.h"
|
2014-01-01 16:53:07 +01:00
|
|
|
#include "shrpx_ssl.h"
|
2013-07-26 13:12:55 +02:00
|
|
|
#ifdef HAVE_SPDYLAY
|
|
|
|
#include "shrpx_spdy_upstream.h"
|
|
|
|
#endif // HAVE_SPDYLAY
|
2013-09-23 17:02:02 +02:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
using namespace nghttp2;
|
2013-07-26 13:12:55 +02:00
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
namespace shrpx {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void upstream_readcb(bufferevent *bev, void *arg)
|
|
|
|
{
|
2013-11-26 13:29:53 +01:00
|
|
|
auto handler = reinterpret_cast<ClientHandler*>(arg);
|
2012-06-04 16:48:31 +02:00
|
|
|
int rv = handler->on_read();
|
|
|
|
if(rv != 0) {
|
|
|
|
delete handler;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void upstream_writecb(bufferevent *bev, void *arg)
|
|
|
|
{
|
2013-11-26 13:29:53 +01:00
|
|
|
auto handler = reinterpret_cast<ClientHandler*>(arg);
|
2012-06-05 18:26:04 +02:00
|
|
|
// We actually depend on write low-warter mark == 0.
|
2012-11-21 19:13:30 +01:00
|
|
|
if(evbuffer_get_length(bufferevent_get_output(bev)) > 0) {
|
|
|
|
// Possibly because of deferred callback, we may get this callback
|
|
|
|
// when the output buffer is not empty.
|
|
|
|
return;
|
|
|
|
}
|
2012-06-04 16:48:31 +02:00
|
|
|
if(handler->get_should_close_after_write()) {
|
|
|
|
delete handler;
|
2012-06-04 20:11:43 +02:00
|
|
|
} else {
|
2013-11-26 13:29:53 +01:00
|
|
|
auto upstream = handler->get_upstream();
|
2012-07-16 16:03:07 +02:00
|
|
|
int rv = upstream->on_write();
|
|
|
|
if(rv != 0) {
|
|
|
|
delete handler;
|
|
|
|
}
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void upstream_eventcb(bufferevent *bev, short events, void *arg)
|
|
|
|
{
|
2013-11-26 13:29:53 +01:00
|
|
|
auto handler = reinterpret_cast<ClientHandler*>(arg);
|
2012-06-04 16:48:31 +02:00
|
|
|
bool finish = false;
|
|
|
|
if(events & BEV_EVENT_EOF) {
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
CLOG(INFO, handler) << "EOF";
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
finish = true;
|
|
|
|
}
|
|
|
|
if(events & BEV_EVENT_ERROR) {
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
CLOG(INFO, handler) << "Network error: "
|
|
|
|
<< evutil_socket_error_to_string
|
|
|
|
(EVUTIL_SOCKET_ERROR());
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
finish = true;
|
|
|
|
}
|
|
|
|
if(events & BEV_EVENT_TIMEOUT) {
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
CLOG(INFO, handler) << "Time out";
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
finish = true;
|
|
|
|
}
|
|
|
|
if(finish) {
|
|
|
|
delete handler;
|
|
|
|
} else {
|
|
|
|
if(events & BEV_EVENT_CONNECTED) {
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
CLOG(INFO, handler) << "SSL/TLS handleshake completed";
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
2014-01-01 16:53:07 +01:00
|
|
|
if(handler->validate_next_proto() != 0) {
|
|
|
|
delete handler;
|
|
|
|
return;
|
|
|
|
}
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-07-14 16:24:03 +02:00
|
|
|
if(SSL_session_reused(handler->get_ssl())) {
|
2012-12-09 11:15:14 +01:00
|
|
|
CLOG(INFO, handler) << "SSL/TLS session reused";
|
2012-07-14 16:24:03 +02:00
|
|
|
}
|
|
|
|
}
|
2012-06-04 16:48:31 +02:00
|
|
|
// At this point, input buffer is already filled with some
|
|
|
|
// bytes. The read callback is not called until new data
|
|
|
|
// come. So consume input buffer here.
|
|
|
|
handler->get_upstream()->on_read();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2013-07-26 14:35:14 +02:00
|
|
|
namespace {
|
2013-08-03 11:51:01 +02:00
|
|
|
void upstream_http2_connhd_readcb(bufferevent *bev, void *arg)
|
2013-07-26 14:35:14 +02:00
|
|
|
{
|
2013-08-03 11:51:01 +02:00
|
|
|
// This callback assumes upstream is Http2Upstream.
|
2013-07-26 14:35:14 +02:00
|
|
|
uint8_t data[NGHTTP2_CLIENT_CONNECTION_HEADER_LEN];
|
|
|
|
auto handler = reinterpret_cast<ClientHandler*>(arg);
|
2013-08-03 11:51:01 +02:00
|
|
|
auto leftlen = handler->get_left_connhd_len();
|
2013-07-26 14:35:14 +02:00
|
|
|
auto input = bufferevent_get_input(bev);
|
2013-08-03 11:51:01 +02:00
|
|
|
auto readlen = evbuffer_remove(input, data, leftlen);
|
2013-07-26 14:35:14 +02:00
|
|
|
if(readlen == -1) {
|
|
|
|
delete handler;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(memcmp(NGHTTP2_CLIENT_CONNECTION_HEADER +
|
|
|
|
NGHTTP2_CLIENT_CONNECTION_HEADER_LEN - leftlen,
|
|
|
|
data, readlen) != 0) {
|
2013-08-03 11:51:01 +02:00
|
|
|
// There is no downgrade path here. Just drop the connection.
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
CLOG(INFO, handler) << "invalid client connection header";
|
|
|
|
}
|
2013-07-26 14:35:14 +02:00
|
|
|
delete handler;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
leftlen -= readlen;
|
|
|
|
handler->set_left_connhd_len(leftlen);
|
|
|
|
if(leftlen == 0) {
|
|
|
|
handler->set_bev_cb(upstream_readcb, upstream_writecb, upstream_eventcb);
|
|
|
|
// Run on_read to process data left in buffer since they are not
|
|
|
|
// notified further
|
|
|
|
if(handler->on_read() != 0) {
|
|
|
|
delete handler;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2013-08-03 11:51:01 +02:00
|
|
|
namespace {
|
|
|
|
void upstream_http1_connhd_readcb(bufferevent *bev, void *arg)
|
|
|
|
{
|
|
|
|
// This callback assumes upstream is HttpsUpstream.
|
|
|
|
uint8_t data[NGHTTP2_CLIENT_CONNECTION_HEADER_LEN];
|
|
|
|
auto handler = reinterpret_cast<ClientHandler*>(arg);
|
|
|
|
auto leftlen = handler->get_left_connhd_len();
|
|
|
|
auto input = bufferevent_get_input(bev);
|
|
|
|
auto readlen = evbuffer_copyout(input, data, leftlen);
|
|
|
|
if(readlen == -1) {
|
|
|
|
delete handler;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(memcmp(NGHTTP2_CLIENT_CONNECTION_HEADER +
|
|
|
|
NGHTTP2_CLIENT_CONNECTION_HEADER_LEN - leftlen,
|
|
|
|
data, readlen) != 0) {
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
CLOG(INFO, handler) << "This is HTTP/1.1 connection, "
|
|
|
|
<< "but may be upgraded to HTTP/2.0 later.";
|
|
|
|
}
|
|
|
|
// Reset header length for later HTTP/2.0 upgrade
|
|
|
|
handler->set_left_connhd_len(NGHTTP2_CLIENT_CONNECTION_HEADER_LEN);
|
2013-08-22 20:32:26 +02:00
|
|
|
handler->set_bev_cb(upstream_readcb, upstream_writecb, upstream_eventcb);
|
2013-08-03 11:51:01 +02:00
|
|
|
if(handler->on_read() != 0) {
|
|
|
|
delete handler;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(evbuffer_drain(input, readlen) == -1) {
|
|
|
|
delete handler;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
leftlen -= readlen;
|
|
|
|
handler->set_left_connhd_len(leftlen);
|
|
|
|
if(leftlen == 0) {
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
CLOG(INFO, handler) << "direct HTTP/2.0 connection";
|
|
|
|
}
|
|
|
|
handler->direct_http2_upgrade();
|
|
|
|
handler->set_bev_cb(upstream_readcb, upstream_writecb, upstream_eventcb);
|
|
|
|
// Run on_read to process data left in buffer since they are not
|
|
|
|
// notified further
|
|
|
|
if(handler->on_read() != 0) {
|
|
|
|
delete handler;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
ClientHandler::ClientHandler(bufferevent *bev, int fd, SSL *ssl,
|
|
|
|
const char *ipaddr)
|
2013-12-06 15:17:38 +01:00
|
|
|
: ipaddr_(ipaddr),
|
|
|
|
bev_(bev),
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session_(nullptr),
|
2013-12-06 15:17:38 +01:00
|
|
|
ssl_(ssl),
|
|
|
|
left_connhd_len_(NGHTTP2_CLIENT_CONNECTION_HEADER_LEN),
|
|
|
|
fd_(fd),
|
|
|
|
should_close_after_write_(false)
|
2012-06-04 16:48:31 +02:00
|
|
|
{
|
2013-12-20 15:28:54 +01:00
|
|
|
int rv;
|
|
|
|
rv = bufferevent_set_rate_limit(bev_, get_config()->rate_limit_cfg);
|
|
|
|
if(rv == -1) {
|
|
|
|
CLOG(FATAL, this) << "bufferevent_set_rate_limit() failed";
|
|
|
|
}
|
2012-06-04 16:48:31 +02:00
|
|
|
bufferevent_enable(bev_, EV_READ | EV_WRITE);
|
2012-06-09 16:14:00 +02:00
|
|
|
bufferevent_setwatermark(bev_, EV_READ, 0, SHRPX_READ_WARTER_MARK);
|
2012-06-04 16:48:31 +02:00
|
|
|
set_upstream_timeouts(&get_config()->upstream_read_timeout,
|
|
|
|
&get_config()->upstream_write_timeout);
|
2012-11-18 13:23:13 +01:00
|
|
|
if(ssl_) {
|
2013-07-26 12:33:25 +02:00
|
|
|
set_bev_cb(nullptr, upstream_writecb, upstream_eventcb);
|
2012-11-18 13:23:13 +01:00
|
|
|
} else {
|
2013-08-03 11:51:01 +02:00
|
|
|
// For non-TLS version, first create HttpsUpstream. It may be
|
|
|
|
// upgraded to HTTP/2.0 through HTTP Upgrade or direct HTTP/2.0
|
|
|
|
// connection.
|
2013-09-23 17:02:02 +02:00
|
|
|
upstream_ = util::make_unique<HttpsUpstream>(this);
|
2013-08-03 11:51:01 +02:00
|
|
|
set_bev_cb(upstream_http1_connhd_readcb, nullptr, upstream_eventcb);
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ClientHandler::~ClientHandler()
|
|
|
|
{
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
CLOG(INFO, this) << "Deleting";
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
2012-11-18 13:23:13 +01:00
|
|
|
if(ssl_) {
|
2014-01-08 15:32:47 +01:00
|
|
|
SSL_set_shutdown(ssl_, SSL_RECEIVED_SHUTDOWN);
|
2012-11-18 13:23:13 +01:00
|
|
|
SSL_shutdown(ssl_);
|
|
|
|
}
|
2012-06-04 16:48:31 +02:00
|
|
|
bufferevent_disable(bev_, EV_READ | EV_WRITE);
|
|
|
|
bufferevent_free(bev_);
|
2012-11-18 13:23:13 +01:00
|
|
|
if(ssl_) {
|
|
|
|
SSL_free(ssl_);
|
|
|
|
}
|
|
|
|
shutdown(fd_, SHUT_WR);
|
|
|
|
close(fd_);
|
2013-11-26 13:29:53 +01:00
|
|
|
for(auto dconn : dconn_pool_) {
|
|
|
|
delete dconn;
|
2012-06-09 16:14:00 +02:00
|
|
|
}
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
CLOG(INFO, this) << "Deleted";
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Upstream* ClientHandler::get_upstream()
|
|
|
|
{
|
2013-09-23 17:02:02 +02:00
|
|
|
return upstream_.get();
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bufferevent* ClientHandler::get_bev() const
|
|
|
|
{
|
|
|
|
return bev_;
|
|
|
|
}
|
|
|
|
|
|
|
|
event_base* ClientHandler::get_evbase() const
|
|
|
|
{
|
|
|
|
return bufferevent_get_base(bev_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::set_bev_cb
|
|
|
|
(bufferevent_data_cb readcb, bufferevent_data_cb writecb,
|
|
|
|
bufferevent_event_cb eventcb)
|
|
|
|
{
|
|
|
|
bufferevent_setcb(bev_, readcb, writecb, eventcb, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::set_upstream_timeouts(const timeval *read_timeout,
|
|
|
|
const timeval *write_timeout)
|
|
|
|
{
|
|
|
|
bufferevent_set_timeouts(bev_, read_timeout, write_timeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ClientHandler::validate_next_proto()
|
|
|
|
{
|
2013-07-26 12:33:25 +02:00
|
|
|
const unsigned char *next_proto = nullptr;
|
2012-06-04 16:48:31 +02:00
|
|
|
unsigned int next_proto_len;
|
2013-07-26 14:35:14 +02:00
|
|
|
// First set callback for catch all cases
|
|
|
|
set_bev_cb(upstream_readcb, upstream_writecb, upstream_eventcb);
|
2012-06-04 16:48:31 +02: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);
|
|
|
|
CLOG(INFO, this) << "The negotiated next protocol: " << proto;
|
2013-07-26 13:12:55 +02:00
|
|
|
}
|
2014-01-01 16:53:07 +01:00
|
|
|
if(!ssl::in_proto_list(get_config()->npn_list,
|
|
|
|
get_config()->npn_list_len,
|
|
|
|
next_proto, next_proto_len)) {
|
|
|
|
break;
|
|
|
|
}
|
2014-01-01 15:54:28 +01:00
|
|
|
if(next_proto_len == NGHTTP2_PROTO_VERSION_ID_LEN &&
|
|
|
|
memcmp(NGHTTP2_PROTO_VERSION_ID, next_proto,
|
|
|
|
NGHTTP2_PROTO_VERSION_ID_LEN) == 0) {
|
|
|
|
set_bev_cb(upstream_http2_connhd_readcb, upstream_writecb,
|
|
|
|
upstream_eventcb);
|
|
|
|
upstream_ = util::make_unique<Http2Upstream>(this);
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
#ifdef HAVE_SPDYLAY
|
|
|
|
uint16_t version = spdylay_npn_get_version(next_proto, next_proto_len);
|
|
|
|
if(version) {
|
|
|
|
upstream_ = util::make_unique<SpdyUpstream>(version, this);
|
|
|
|
return 0;
|
|
|
|
}
|
2013-07-26 13:12:55 +02:00
|
|
|
#endif // HAVE_SPDYLAY
|
2014-01-01 16:53:07 +01:00
|
|
|
if(next_proto_len == 8 && memcmp("http/1.1", next_proto, 8) == 0) {
|
|
|
|
upstream_ = util::make_unique<HttpsUpstream>(this);
|
|
|
|
return 0;
|
|
|
|
}
|
2014-01-01 15:54:28 +01:00
|
|
|
}
|
|
|
|
break;
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
2014-01-01 15:54:28 +01:00
|
|
|
#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
|
|
|
|
}
|
|
|
|
if(!next_proto) {
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2014-01-01 16:53:07 +01:00
|
|
|
CLOG(INFO, this) << "No protocol negotiated. Fallback to HTTP/1.1";
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
2014-01-01 16:53:07 +01:00
|
|
|
upstream_ = util::make_unique<HttpsUpstream>(this);
|
|
|
|
return 0;
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2014-01-01 16:53:07 +01:00
|
|
|
CLOG(INFO, this) << "The negotiated protocol is not supported";
|
2012-06-05 18:26:04 +02:00
|
|
|
}
|
2014-01-01 16:53:07 +01:00
|
|
|
return -1;
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int ClientHandler::on_read()
|
|
|
|
{
|
|
|
|
return upstream_->on_read();
|
|
|
|
}
|
|
|
|
|
|
|
|
int ClientHandler::on_event()
|
|
|
|
{
|
|
|
|
return upstream_->on_event();
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& ClientHandler::get_ipaddr() const
|
|
|
|
{
|
|
|
|
return ipaddr_;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ClientHandler::get_should_close_after_write() const
|
|
|
|
{
|
|
|
|
return should_close_after_write_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::set_should_close_after_write(bool f)
|
|
|
|
{
|
|
|
|
should_close_after_write_ = f;
|
|
|
|
}
|
|
|
|
|
2012-06-09 16:14:00 +02:00
|
|
|
void ClientHandler::pool_downstream_connection(DownstreamConnection *dconn)
|
|
|
|
{
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
CLOG(INFO, this) << "Pooling downstream connection DCONN:" << dconn;
|
2012-06-09 16:14:00 +02:00
|
|
|
}
|
|
|
|
dconn_pool_.insert(dconn);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::remove_downstream_connection(DownstreamConnection *dconn)
|
|
|
|
{
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
CLOG(INFO, this) << "Removing downstream connection DCONN:" << dconn
|
|
|
|
<< " from pool";
|
2012-06-09 16:14:00 +02:00
|
|
|
}
|
|
|
|
dconn_pool_.erase(dconn);
|
|
|
|
}
|
|
|
|
|
|
|
|
DownstreamConnection* ClientHandler::get_downstream_connection()
|
|
|
|
{
|
|
|
|
if(dconn_pool_.empty()) {
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
CLOG(INFO, this) << "Downstream connection pool is empty."
|
|
|
|
<< " Create new one";
|
2012-06-09 16:14:00 +02:00
|
|
|
}
|
2013-11-04 09:53:57 +01:00
|
|
|
if(http2session_) {
|
|
|
|
return new Http2DownstreamConnection(this);
|
2012-11-18 13:23:13 +01:00
|
|
|
} else {
|
|
|
|
return new HttpDownstreamConnection(this);
|
|
|
|
}
|
2012-06-09 16:14:00 +02:00
|
|
|
} else {
|
2013-11-26 13:29:53 +01:00
|
|
|
auto dconn = *std::begin(dconn_pool_);
|
2012-06-09 16:14:00 +02:00
|
|
|
dconn_pool_.erase(dconn);
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
CLOG(INFO, this) << "Reuse downstream connection DCONN:" << dconn
|
|
|
|
<< " from pool";
|
2012-06-09 16:14:00 +02:00
|
|
|
}
|
|
|
|
return dconn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-11 09:20:16 +02:00
|
|
|
size_t ClientHandler::get_pending_write_length()
|
|
|
|
{
|
2013-11-26 13:29:53 +01:00
|
|
|
auto output = bufferevent_get_output(bev_);
|
2012-07-11 09:20:16 +02:00
|
|
|
return evbuffer_get_length(output);
|
|
|
|
}
|
|
|
|
|
2012-07-14 16:24:03 +02:00
|
|
|
SSL* ClientHandler::get_ssl() const
|
|
|
|
{
|
|
|
|
return ssl_;
|
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
void ClientHandler::set_http2_session(Http2Session *http2session)
|
2012-11-18 13:23:13 +01:00
|
|
|
{
|
2013-11-04 09:53:57 +01:00
|
|
|
http2session_ = http2session;
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 09:53:57 +01:00
|
|
|
Http2Session* ClientHandler::get_http2_session() const
|
2012-11-18 13:23:13 +01:00
|
|
|
{
|
2013-11-04 09:53:57 +01:00
|
|
|
return http2session_;
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
|
|
|
|
2013-07-26 14:35:14 +02:00
|
|
|
size_t ClientHandler::get_left_connhd_len() const
|
|
|
|
{
|
|
|
|
return left_connhd_len_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::set_left_connhd_len(size_t left)
|
|
|
|
{
|
|
|
|
left_connhd_len_ = left;
|
|
|
|
}
|
|
|
|
|
2013-08-03 11:51:01 +02:00
|
|
|
void ClientHandler::direct_http2_upgrade()
|
|
|
|
{
|
2013-09-23 17:02:02 +02:00
|
|
|
upstream_= util::make_unique<Http2Upstream>(this);
|
2013-08-03 11:51:01 +02:00
|
|
|
set_bev_cb(upstream_readcb, upstream_writecb, upstream_eventcb);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ClientHandler::perform_http2_upgrade(HttpsUpstream *http)
|
|
|
|
{
|
|
|
|
int rv;
|
2013-09-23 17:02:02 +02:00
|
|
|
auto upstream = util::make_unique<Http2Upstream>(this);
|
2013-08-03 11:51:01 +02:00
|
|
|
if(upstream->upgrade_upstream(http) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2013-09-26 14:39:19 +02:00
|
|
|
// http pointer is now owned by upstream.
|
|
|
|
upstream_.release();
|
2013-09-23 17:02:02 +02:00
|
|
|
upstream_ = std::move(upstream);
|
2013-08-03 11:51:01 +02:00
|
|
|
set_bev_cb(upstream_http2_connhd_readcb, upstream_writecb, upstream_eventcb);
|
|
|
|
static char res[] = "HTTP/1.1 101 Switching Protocols\r\n"
|
|
|
|
"Connection: Upgrade\r\n"
|
2013-09-26 14:46:03 +02:00
|
|
|
"Upgrade: " NGHTTP2_PROTO_VERSION_ID "\r\n"
|
2013-08-03 11:51:01 +02:00
|
|
|
"\r\n";
|
|
|
|
rv = bufferevent_write(bev_, res, sizeof(res) - 1);
|
|
|
|
if(rv != 0) {
|
|
|
|
CLOG(FATAL, this) << "bufferevent_write() faild";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ClientHandler::get_http2_upgrade_allowed() const
|
|
|
|
{
|
|
|
|
return !ssl_;
|
|
|
|
}
|
|
|
|
|
2013-12-21 09:49:31 +01:00
|
|
|
std::string ClientHandler::get_upstream_scheme() const
|
|
|
|
{
|
|
|
|
if(ssl_) {
|
|
|
|
return "https";
|
|
|
|
} else {
|
|
|
|
return "http";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
} // namespace shrpx
|