2012-11-18 13:23:13 +01:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2012-11-18 13:23:13 +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.
|
|
|
|
*/
|
|
|
|
#include "shrpx_http_downstream_connection.h"
|
|
|
|
|
|
|
|
#include "shrpx_client_handler.h"
|
|
|
|
#include "shrpx_upstream.h"
|
|
|
|
#include "shrpx_downstream.h"
|
|
|
|
#include "shrpx_config.h"
|
|
|
|
#include "shrpx_error.h"
|
|
|
|
#include "shrpx_http.h"
|
2014-07-05 11:22:40 +02:00
|
|
|
#include "shrpx_worker_config.h"
|
2014-08-19 16:36:04 +02:00
|
|
|
#include "shrpx_connect_blocker.h"
|
2013-08-27 19:47:22 +02:00
|
|
|
#include "http2.h"
|
2012-11-18 13:23:13 +01:00
|
|
|
#include "util.h"
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
using namespace nghttp2;
|
2012-11-18 13:23:13 +01:00
|
|
|
|
|
|
|
namespace shrpx {
|
|
|
|
|
2014-01-19 10:07:50 +01:00
|
|
|
namespace {
|
|
|
|
const size_t OUTBUF_MAX_THRES = 64*1024;
|
|
|
|
} // namespace
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
HttpDownstreamConnection::HttpDownstreamConnection
|
|
|
|
(ClientHandler *client_handler)
|
2012-11-20 17:29:39 +01:00
|
|
|
: DownstreamConnection(client_handler),
|
2013-09-24 14:42:50 +02:00
|
|
|
bev_(nullptr),
|
2014-02-20 13:30:25 +01:00
|
|
|
ioctrl_(nullptr),
|
|
|
|
response_htp_{0}
|
2012-11-18 13:23:13 +01:00
|
|
|
{}
|
|
|
|
|
|
|
|
HttpDownstreamConnection::~HttpDownstreamConnection()
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
|
|
|
if(bev_) {
|
2014-09-18 16:56:01 +02:00
|
|
|
util::bev_disable_unless(bev_, EV_READ | EV_WRITE);
|
2012-11-20 17:29:39 +01:00
|
|
|
bufferevent_free(bev_);
|
|
|
|
}
|
|
|
|
// Downstream and DownstreamConnection may be deleted
|
|
|
|
// asynchronously.
|
|
|
|
if(downstream_) {
|
2014-08-18 17:16:51 +02:00
|
|
|
downstream_->release_downstream_connection();
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
}
|
2012-11-18 13:23:13 +01:00
|
|
|
|
|
|
|
int HttpDownstreamConnection::attach_downstream(Downstream *downstream)
|
|
|
|
{
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
DCLOG(INFO, this) << "Attaching to DOWNSTREAM:" << downstream;
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
2013-09-24 14:42:50 +02:00
|
|
|
auto upstream = downstream->get_upstream();
|
2012-11-18 13:23:13 +01:00
|
|
|
if(!bev_) {
|
2014-08-19 16:36:04 +02:00
|
|
|
auto connect_blocker = client_handler_->get_http1_connect_blocker();
|
|
|
|
|
|
|
|
if(connect_blocker->blocked()) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-09-24 14:42:50 +02:00
|
|
|
auto evbase = client_handler_->get_evbase();
|
2014-08-12 15:22:02 +02:00
|
|
|
|
|
|
|
auto 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) {
|
2014-08-19 16:36:04 +02:00
|
|
|
connect_blocker->on_failure();
|
|
|
|
|
2014-08-19 14:22:53 +02:00
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
bev_ = bufferevent_socket_new
|
2014-08-12 15:22:02 +02:00
|
|
|
(evbase, fd,
|
2012-11-18 13:23:13 +01:00
|
|
|
BEV_OPT_CLOSE_ON_FREE | BEV_OPT_DEFER_CALLBACKS);
|
2013-09-24 16:17:53 +02:00
|
|
|
if(!bev_) {
|
2014-08-19 16:36:04 +02:00
|
|
|
connect_blocker->on_failure();
|
|
|
|
|
2013-09-24 16:17:53 +02:00
|
|
|
DCLOG(INFO, this) << "bufferevent_socket_new() failed";
|
2014-08-12 15:22:02 +02:00
|
|
|
close(fd);
|
|
|
|
|
2013-09-24 16:17:53 +02:00
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
2012-11-18 13:23:13 +01:00
|
|
|
int rv = bufferevent_socket_connect
|
|
|
|
(bev_,
|
|
|
|
// TODO maybe not thread-safe?
|
|
|
|
const_cast<sockaddr*>(&get_config()->downstream_addr.sa),
|
|
|
|
get_config()->downstream_addrlen);
|
|
|
|
if(rv != 0) {
|
2014-08-19 16:36:04 +02:00
|
|
|
connect_blocker->on_failure();
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
bufferevent_free(bev_);
|
2013-09-24 16:17:53 +02:00
|
|
|
bev_ = nullptr;
|
2012-11-18 13:23:13 +01:00
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
2014-08-19 16:36:04 +02:00
|
|
|
|
|
|
|
connect_blocker->on_success();
|
|
|
|
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
DCLOG(INFO, this) << "Connecting to downstream server";
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
|
|
|
}
|
2014-08-18 17:16:51 +02:00
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
downstream_ = downstream;
|
2012-11-20 17:29:39 +01:00
|
|
|
|
|
|
|
ioctrl_.set_bev(bev_);
|
|
|
|
|
2013-09-23 17:13:40 +02:00
|
|
|
http_parser_init(&response_htp_, HTTP_RESPONSE);
|
|
|
|
response_htp_.data = downstream_;
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2014-05-31 19:29:01 +02:00
|
|
|
bufferevent_setwatermark(bev_, EV_READ, 0, SHRPX_READ_WATERMARK);
|
2014-09-18 16:56:01 +02:00
|
|
|
util::bev_enable_unless(bev_, EV_READ);
|
2012-11-18 13:23:13 +01:00
|
|
|
bufferevent_setcb(bev_,
|
|
|
|
upstream->get_downstream_readcb(),
|
|
|
|
upstream->get_downstream_writecb(),
|
|
|
|
upstream->get_downstream_eventcb(), this);
|
2014-09-18 16:19:28 +02:00
|
|
|
|
|
|
|
reset_timeouts();
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int HttpDownstreamConnection::push_request_headers()
|
|
|
|
{
|
2013-11-16 13:15:55 +01:00
|
|
|
downstream_->assemble_request_cookie();
|
2013-10-25 14:50:56 +02:00
|
|
|
downstream_->normalize_request_headers();
|
|
|
|
auto end_headers = std::end(downstream_->get_request_headers());
|
2013-09-11 16:24:32 +02:00
|
|
|
// Assume that method and request path do not contain \r\n.
|
2012-11-18 13:23:13 +01:00
|
|
|
std::string hdrs = downstream_->get_request_method();
|
|
|
|
hdrs += " ";
|
2013-10-25 14:50:56 +02:00
|
|
|
if(downstream_->get_request_method() == "CONNECT") {
|
|
|
|
if(!downstream_->get_request_http2_authority().empty()) {
|
|
|
|
hdrs += downstream_->get_request_http2_authority();
|
|
|
|
} else {
|
|
|
|
hdrs += downstream_->get_request_path();
|
|
|
|
}
|
2013-11-04 10:14:05 +01:00
|
|
|
} else if(get_config()->http2_proxy &&
|
2014-07-25 16:40:25 +02:00
|
|
|
!downstream_->get_request_http2_scheme().empty() &&
|
|
|
|
!downstream_->get_request_http2_authority().empty() &&
|
|
|
|
(downstream_->get_request_path().c_str()[0] == '/' ||
|
|
|
|
downstream_->get_request_path() == "*")) {
|
2013-10-25 14:50:56 +02:00
|
|
|
// Construct absolute-form request target because we are going to
|
|
|
|
// send a request to a HTTP/1 proxy.
|
|
|
|
hdrs += downstream_->get_request_http2_scheme();
|
|
|
|
hdrs += "://";
|
|
|
|
hdrs += downstream_->get_request_http2_authority();
|
2014-07-25 16:40:25 +02:00
|
|
|
|
|
|
|
// Server-wide OPTIONS takes following form in proxy request:
|
|
|
|
//
|
|
|
|
// OPTIONS http://example.org HTTP/1.1
|
|
|
|
//
|
|
|
|
// Notice that no slash after authority. See
|
|
|
|
// http://tools.ietf.org/html/rfc7230#section-5.3.4
|
|
|
|
if(downstream_->get_request_path() != "*") {
|
|
|
|
hdrs += downstream_->get_request_path();
|
|
|
|
}
|
2013-10-25 14:50:56 +02:00
|
|
|
} else {
|
|
|
|
// No proxy case. get_request_path() may be absolute-form but we
|
|
|
|
// don't care.
|
|
|
|
hdrs += downstream_->get_request_path();
|
|
|
|
}
|
2013-09-11 16:24:32 +02:00
|
|
|
hdrs += " HTTP/1.1\r\n";
|
2013-10-25 14:50:56 +02:00
|
|
|
if(downstream_->get_norm_request_header("host") == end_headers &&
|
|
|
|
!downstream_->get_request_http2_authority().empty()) {
|
|
|
|
hdrs += "Host: ";
|
|
|
|
hdrs += downstream_->get_request_http2_authority();
|
|
|
|
hdrs += "\r\n";
|
|
|
|
}
|
2013-08-27 19:47:22 +02:00
|
|
|
http2::build_http1_headers_from_norm_headers
|
2013-08-27 17:09:46 +02:00
|
|
|
(hdrs, downstream_->get_request_headers());
|
|
|
|
|
2013-11-16 13:15:55 +01:00
|
|
|
if(!downstream_->get_assembled_request_cookie().empty()) {
|
|
|
|
hdrs += "Cookie: ";
|
|
|
|
hdrs += downstream_->get_assembled_request_cookie();
|
|
|
|
hdrs += "\r\n";
|
|
|
|
}
|
|
|
|
|
2014-07-03 16:44:20 +02:00
|
|
|
if(downstream_->get_request_method() != "CONNECT" &&
|
|
|
|
downstream_->get_request_http2_expect_body() &&
|
2014-07-03 12:59:10 +02:00
|
|
|
downstream_->get_norm_request_header("content-length") == end_headers) {
|
|
|
|
|
|
|
|
downstream_->set_chunked_request(true);
|
|
|
|
hdrs += "Transfer-Encoding: chunked\r\n";
|
|
|
|
}
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
if(downstream_->get_request_connection_close()) {
|
|
|
|
hdrs += "Connection: close\r\n";
|
|
|
|
}
|
2013-08-27 17:09:46 +02:00
|
|
|
auto xff = downstream_->get_norm_request_header("x-forwarded-for");
|
2012-11-18 13:23:13 +01:00
|
|
|
if(get_config()->add_x_forwarded_for) {
|
|
|
|
hdrs += "X-Forwarded-For: ";
|
2013-08-27 17:09:46 +02:00
|
|
|
if(xff != end_headers) {
|
2014-04-03 04:22:11 +02:00
|
|
|
hdrs += (*xff).value;
|
|
|
|
http2::sanitize_header_value(hdrs, hdrs.size() - (*xff).value.size());
|
2012-11-18 13:23:13 +01:00
|
|
|
hdrs += ", ";
|
|
|
|
}
|
2014-03-21 10:57:57 +01:00
|
|
|
hdrs += client_handler_->get_ipaddr();
|
2012-11-18 13:23:13 +01:00
|
|
|
hdrs += "\r\n";
|
2013-08-27 17:09:46 +02:00
|
|
|
} else if(xff != end_headers) {
|
2012-11-18 13:23:13 +01:00
|
|
|
hdrs += "X-Forwarded-For: ";
|
2014-04-03 04:22:11 +02:00
|
|
|
hdrs += (*xff).value;
|
|
|
|
http2::sanitize_header_value(hdrs, hdrs.size() - (*xff).value.size());
|
2012-11-18 13:23:13 +01:00
|
|
|
hdrs += "\r\n";
|
|
|
|
}
|
|
|
|
if(downstream_->get_request_method() != "CONNECT") {
|
|
|
|
hdrs += "X-Forwarded-Proto: ";
|
2013-10-25 14:50:56 +02:00
|
|
|
if(!downstream_->get_request_http2_scheme().empty()) {
|
|
|
|
hdrs += downstream_->get_request_http2_scheme();
|
|
|
|
hdrs += "\r\n";
|
2014-03-21 10:57:57 +01:00
|
|
|
} else if(client_handler_->get_ssl()) {
|
2013-09-11 16:24:32 +02:00
|
|
|
hdrs += "https\r\n";
|
2013-10-25 14:50:56 +02:00
|
|
|
} else {
|
|
|
|
hdrs += "http\r\n";
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
|
|
|
}
|
2013-08-27 17:09:46 +02:00
|
|
|
auto expect = downstream_->get_norm_request_header("expect");
|
|
|
|
if(expect != end_headers &&
|
2014-04-03 04:22:11 +02:00
|
|
|
!util::strifind((*expect).value.c_str(), "100-continue")) {
|
2013-08-27 17:09:46 +02:00
|
|
|
hdrs += "Expect: ";
|
2014-04-03 04:22:11 +02:00
|
|
|
hdrs += (*expect).value;
|
|
|
|
http2::sanitize_header_value(hdrs, hdrs.size() - (*expect).value.size());
|
2013-08-27 17:09:46 +02:00
|
|
|
hdrs += "\r\n";
|
|
|
|
}
|
|
|
|
auto via = downstream_->get_norm_request_header("via");
|
|
|
|
if(get_config()->no_via) {
|
|
|
|
if(via != end_headers) {
|
|
|
|
hdrs += "Via: ";
|
2014-04-03 04:22:11 +02:00
|
|
|
hdrs += (*via).value;
|
|
|
|
http2::sanitize_header_value(hdrs, hdrs.size() - (*via).value.size());
|
2013-08-27 17:09:46 +02:00
|
|
|
hdrs += "\r\n";
|
|
|
|
}
|
|
|
|
} else {
|
2013-01-09 14:01:25 +01:00
|
|
|
hdrs += "Via: ";
|
2013-08-27 17:09:46 +02:00
|
|
|
if(via != end_headers) {
|
2014-04-03 04:22:11 +02:00
|
|
|
hdrs += (*via).value;
|
|
|
|
http2::sanitize_header_value(hdrs, hdrs.size() - (*via).value.size());
|
2013-01-09 14:01:25 +01:00
|
|
|
hdrs += ", ";
|
|
|
|
}
|
|
|
|
hdrs += http::create_via_header_value(downstream_->get_request_major(),
|
|
|
|
downstream_->get_request_minor());
|
|
|
|
hdrs += "\r\n";
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
hdrs += "\r\n";
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 13:36:02 +01:00
|
|
|
const char *hdrp;
|
|
|
|
std::string nhdrs;
|
2014-08-19 14:33:54 +02:00
|
|
|
if(worker_config->errorlog_tty) {
|
2012-12-09 13:36:02 +01:00
|
|
|
nhdrs = http::colorizeHeaders(hdrs.c_str());
|
|
|
|
hdrp = nhdrs.c_str();
|
|
|
|
} else {
|
|
|
|
hdrp = hdrs.c_str();
|
|
|
|
}
|
2012-12-09 11:15:14 +01:00
|
|
|
DCLOG(INFO, this) << "HTTP request headers. stream_id="
|
2012-12-09 13:36:02 +01:00
|
|
|
<< downstream_->get_stream_id() << "\n" << hdrp;
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
2013-09-24 14:42:50 +02:00
|
|
|
auto output = bufferevent_get_output(bev_);
|
2012-11-18 13:23:13 +01:00
|
|
|
int rv;
|
|
|
|
rv = evbuffer_add(output, hdrs.c_str(), hdrs.size());
|
|
|
|
if(rv != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int HttpDownstreamConnection::push_upload_data_chunk
|
|
|
|
(const uint8_t *data, size_t datalen)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
int chunked = downstream_->get_chunked_request();
|
2013-09-24 14:42:50 +02:00
|
|
|
auto output = bufferevent_get_output(bev_);
|
2014-05-14 15:39:28 +02:00
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
if(chunked) {
|
2014-05-14 15:39:28 +02:00
|
|
|
auto chunk_size_hex = util::utox(datalen);
|
|
|
|
chunk_size_hex += "\r\n";
|
|
|
|
|
|
|
|
rv = evbuffer_add(output, chunk_size_hex.c_str(), chunk_size_hex.size());
|
2012-11-18 13:23:13 +01:00
|
|
|
if(rv == -1) {
|
2012-12-09 11:15:14 +01:00
|
|
|
DCLOG(FATAL, this) << "evbuffer_add() failed";
|
2012-11-18 13:23:13 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2014-05-14 15:39:28 +02:00
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
rv = evbuffer_add(output, data, datalen);
|
2014-05-14 15:39:28 +02:00
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
if(rv == -1) {
|
2012-12-09 11:15:14 +01:00
|
|
|
DCLOG(FATAL, this) << "evbuffer_add() failed";
|
2012-11-18 13:23:13 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2014-05-14 15:39:28 +02:00
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
if(chunked) {
|
|
|
|
rv = evbuffer_add(output, "\r\n", 2);
|
|
|
|
if(rv == -1) {
|
2012-12-09 11:15:14 +01:00
|
|
|
DCLOG(FATAL, this) << "evbuffer_add() failed";
|
2012-11-18 13:23:13 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2014-05-14 15:39:28 +02:00
|
|
|
|
|
|
|
return 0;
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int HttpDownstreamConnection::end_upload_data()
|
|
|
|
{
|
|
|
|
if(downstream_->get_chunked_request()) {
|
2013-09-24 14:42:50 +02:00
|
|
|
auto output = bufferevent_get_output(bev_);
|
2012-11-18 13:23:13 +01:00
|
|
|
if(evbuffer_add(output, "0\r\n\r\n", 5) != 0) {
|
2012-12-09 11:15:14 +01:00
|
|
|
DCLOG(FATAL, this) << "evbuffer_add() failed";
|
2012-11-18 13:23:13 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
namespace {
|
|
|
|
// Gets called when DownstreamConnection is pooled in ClientHandler.
|
|
|
|
void idle_eventcb(bufferevent *bev, short events, void *arg)
|
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto dconn = static_cast<HttpDownstreamConnection*>(arg);
|
2012-11-20 17:29:39 +01:00
|
|
|
if(events & BEV_EVENT_CONNECTED) {
|
|
|
|
// Downstream was detached before connection established?
|
|
|
|
// This may be safe to be left.
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
DCLOG(INFO, dconn) << "Idle connection connected?";
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
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
|
|
|
DCLOG(INFO, dconn) << "Idle connection EOF";
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
} else 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
|
|
|
DCLOG(INFO, dconn) << "Idle connection timeout";
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
} else 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
|
|
|
DCLOG(INFO, dconn) << "Idle connection network error";
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
}
|
2013-09-24 14:42:50 +02:00
|
|
|
auto client_handler = dconn->get_client_handler();
|
2012-11-20 17:29:39 +01:00
|
|
|
client_handler->remove_downstream_connection(dconn);
|
2014-08-18 17:16:51 +02:00
|
|
|
// dconn was deleted
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
void HttpDownstreamConnection::detach_downstream(Downstream *downstream)
|
|
|
|
{
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
DCLOG(INFO, this) << "Detaching from DOWNSTREAM:" << downstream;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2014-08-18 17:16:51 +02:00
|
|
|
downstream_ = nullptr;
|
2012-11-20 17:29:39 +01:00
|
|
|
ioctrl_.force_resume_read();
|
2014-09-18 16:56:01 +02:00
|
|
|
util::bev_enable_unless(bev_, EV_READ);
|
2012-11-20 17:29:39 +01:00
|
|
|
bufferevent_setcb(bev_, 0, 0, idle_eventcb, this);
|
|
|
|
// On idle state, just enable read timeout. Normally idle downstream
|
|
|
|
// connection will get EOF from the downstream server and closed.
|
|
|
|
bufferevent_set_timeouts(bev_,
|
|
|
|
&get_config()->downstream_idle_read_timeout,
|
|
|
|
&get_config()->downstream_write_timeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
bufferevent* HttpDownstreamConnection::get_bev()
|
|
|
|
{
|
|
|
|
return bev_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void HttpDownstreamConnection::pause_read(IOCtrlReason reason)
|
|
|
|
{
|
|
|
|
ioctrl_.pause_read(reason);
|
|
|
|
}
|
|
|
|
|
2014-08-21 14:22:16 +02:00
|
|
|
int HttpDownstreamConnection::resume_read(IOCtrlReason reason, size_t consumed)
|
2012-11-20 17:29:39 +01:00
|
|
|
{
|
2014-01-18 16:38:11 +01:00
|
|
|
ioctrl_.resume_read(reason);
|
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void HttpDownstreamConnection::force_resume_read()
|
|
|
|
{
|
|
|
|
ioctrl_.force_resume_read();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HttpDownstreamConnection::get_output_buffer_full()
|
|
|
|
{
|
2013-09-24 14:42:50 +02:00
|
|
|
auto output = bufferevent_get_output(bev_);
|
2014-01-19 10:07:50 +01:00
|
|
|
return evbuffer_get_length(output) >= OUTBUF_MAX_THRES;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
|
2014-07-03 13:57:07 +02:00
|
|
|
namespace {
|
|
|
|
int htp_msg_begincb(http_parser *htp)
|
|
|
|
{
|
|
|
|
auto downstream = static_cast<Downstream*>(htp->data);
|
|
|
|
|
|
|
|
if(downstream->get_response_state() != Downstream::INITIAL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
namespace {
|
|
|
|
int htp_hdrs_completecb(http_parser *htp)
|
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto downstream = static_cast<Downstream*>(htp->data);
|
2014-07-23 16:32:57 +02:00
|
|
|
auto upstream = downstream->get_upstream();
|
|
|
|
int rv;
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
downstream->set_response_http_status(htp->status_code);
|
|
|
|
downstream->set_response_major(htp->http_major);
|
|
|
|
downstream->set_response_minor(htp->http_minor);
|
2014-07-23 16:32:57 +02:00
|
|
|
|
|
|
|
if(downstream->get_non_final_response()) {
|
|
|
|
// For non-final response code, we just call
|
|
|
|
// on_downstream_header_complete() without changing response
|
|
|
|
// state.
|
|
|
|
rv = upstream->on_downstream_header_complete(downstream);
|
|
|
|
|
|
|
|
if(rv != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
downstream->set_response_connection_close(!http_should_keep_alive(htp));
|
|
|
|
downstream->set_response_state(Downstream::HEADER_COMPLETE);
|
2014-06-15 09:14:00 +02:00
|
|
|
downstream->inspect_http1_response();
|
2013-07-31 14:48:37 +02:00
|
|
|
downstream->check_upgrade_fulfilled();
|
|
|
|
if(downstream->get_upgraded()) {
|
2013-02-11 09:20:52 +01:00
|
|
|
downstream->set_response_connection_close(true);
|
|
|
|
}
|
2014-07-23 16:32:57 +02:00
|
|
|
if(upstream->on_downstream_header_complete(downstream) != 0) {
|
2012-11-20 17:29:39 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2013-07-31 14:48:37 +02:00
|
|
|
|
|
|
|
if(downstream->get_upgraded()) {
|
|
|
|
// Upgrade complete, read until EOF in both ends
|
2014-08-21 14:22:16 +02:00
|
|
|
if(upstream->resume_read(SHRPX_MSG_BLOCK, downstream, 0) != 0) {
|
2013-07-31 15:14:25 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2013-07-31 14:48:37 +02:00
|
|
|
downstream->set_request_state(Downstream::HEADER_COMPLETE);
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
LOG(INFO) << "HTTP upgrade success. stream_id="
|
|
|
|
<< downstream->get_stream_id();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
unsigned int status = downstream->get_response_http_status();
|
|
|
|
// Ignore the response body. HEAD response may contain
|
|
|
|
// Content-Length or Transfer-Encoding: chunked. Some server send
|
|
|
|
// 304 status code with nonzero Content-Length, but without response
|
|
|
|
// body. See
|
|
|
|
// http://tools.ietf.org/html/draft-ietf-httpbis-p1-messaging-20#section-3.3
|
2014-07-23 16:32:57 +02:00
|
|
|
|
|
|
|
// TODO It seems that the cases other than HEAD are handled by
|
|
|
|
// http-parser. Need test.
|
2012-11-20 17:29:39 +01:00
|
|
|
return downstream->get_request_method() == "HEAD" ||
|
|
|
|
(100 <= status && status <= 199) || status == 204 ||
|
|
|
|
status == 304 ? 1 : 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
int htp_hdr_keycb(http_parser *htp, const char *data, size_t len)
|
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto downstream = static_cast<Downstream*>(htp->data);
|
2012-11-20 17:29:39 +01:00
|
|
|
if(downstream->get_response_header_key_prev()) {
|
|
|
|
downstream->append_last_response_header_key(data, len);
|
|
|
|
} else {
|
|
|
|
downstream->add_response_header(std::string(data, len), "");
|
|
|
|
}
|
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();
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
int htp_hdr_valcb(http_parser *htp, const char *data, size_t len)
|
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto downstream = static_cast<Downstream*>(htp->data);
|
2012-11-20 17:29:39 +01:00
|
|
|
if(downstream->get_response_header_key_prev()) {
|
|
|
|
downstream->set_last_response_header_value(std::string(data, len));
|
|
|
|
} else {
|
|
|
|
downstream->append_last_response_header_value(data, len);
|
|
|
|
}
|
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();
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
int htp_bodycb(http_parser *htp, const char *data, size_t len)
|
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto downstream = static_cast<Downstream*>(htp->data);
|
2014-07-05 11:22:40 +02:00
|
|
|
|
|
|
|
downstream->add_response_bodylen(len);
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
return downstream->get_upstream()->on_downstream_body
|
2014-04-03 11:54:15 +02:00
|
|
|
(downstream, reinterpret_cast<const uint8_t*>(data), len, true);
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
int htp_msg_completecb(http_parser *htp)
|
|
|
|
{
|
2014-01-19 11:46:58 +01:00
|
|
|
auto downstream = static_cast<Downstream*>(htp->data);
|
2014-07-23 16:32:57 +02:00
|
|
|
|
|
|
|
if(downstream->get_non_final_response()) {
|
|
|
|
downstream->reset_response();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
downstream->set_response_state(Downstream::MSG_COMPLETE);
|
2014-01-18 10:39:25 +01:00
|
|
|
// Block reading another response message from (broken?)
|
|
|
|
// server. This callback is not called if the connection is
|
|
|
|
// tunneled.
|
|
|
|
downstream->pause_read(SHRPX_MSG_BLOCK);
|
2012-11-20 17:29:39 +01:00
|
|
|
return downstream->get_upstream()->on_downstream_body_complete(downstream);
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
http_parser_settings htp_hooks = {
|
2014-07-03 13:57:07 +02:00
|
|
|
htp_msg_begincb, // http_cb on_message_begin;
|
2014-05-14 16:22:23 +02:00
|
|
|
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
|
|
|
htp_hdr_keycb, // http_data_cb on_header_field;
|
|
|
|
htp_hdr_valcb, // http_data_cb on_header_value;
|
|
|
|
htp_hdrs_completecb, // http_cb on_headers_complete;
|
|
|
|
htp_bodycb, // http_data_cb on_body;
|
|
|
|
htp_msg_completecb // http_cb on_message_complete;
|
2012-11-20 17:29:39 +01:00
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
int HttpDownstreamConnection::on_read()
|
|
|
|
{
|
2014-09-18 16:19:28 +02:00
|
|
|
reset_timeouts();
|
|
|
|
|
2013-09-24 14:42:50 +02:00
|
|
|
auto input = bufferevent_get_input(bev_);
|
2014-06-01 14:01:01 +02:00
|
|
|
|
2013-07-31 14:48:37 +02:00
|
|
|
if(downstream_->get_upgraded()) {
|
|
|
|
// For upgraded connection, just pass data to the upstream.
|
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 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto mem = evbuffer_pullup(input, inputlen);
|
|
|
|
|
|
|
|
int rv;
|
|
|
|
rv = downstream_->get_upstream()->on_downstream_body
|
|
|
|
(downstream_, reinterpret_cast<const uint8_t*>(mem), inputlen, true);
|
|
|
|
if(rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
if(evbuffer_drain(input, inputlen) != 0) {
|
|
|
|
DCLOG(FATAL, this) << "evbuffer_drain() failed";
|
|
|
|
return -1;
|
|
|
|
}
|
2013-12-20 15:28:54 +01:00
|
|
|
}
|
2013-07-31 14:48:37 +02:00
|
|
|
}
|
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 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto mem = evbuffer_pullup(input, inputlen);
|
|
|
|
|
|
|
|
auto nread = http_parser_execute(&response_htp_, &htp_hooks,
|
2012-11-20 17:29:39 +01:00
|
|
|
reinterpret_cast<const char*>(mem),
|
2013-07-31 14:48:37 +02:00
|
|
|
inputlen);
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2014-06-01 14:01:01 +02:00
|
|
|
if(evbuffer_drain(input, nread) != 0) {
|
|
|
|
DCLOG(FATAL, this) << "evbuffer_drain() failed";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto htperr = HTTP_PARSER_ERRNO(&response_htp_);
|
|
|
|
|
|
|
|
if(htperr != HPE_OK) {
|
|
|
|
if(LOG_ENABLED(INFO)) {
|
|
|
|
DCLOG(INFO, this) << "HTTP parser failure: "
|
|
|
|
<< "(" << http_errno_name(htperr) << ") "
|
|
|
|
<< http_errno_description(htperr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return SHRPX_ERR_HTTP_PARSE;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int HttpDownstreamConnection::on_write()
|
2012-11-18 13:23:13 +01:00
|
|
|
{
|
2014-09-18 16:19:28 +02:00
|
|
|
reset_timeouts();
|
|
|
|
|
2014-08-21 14:22:16 +02:00
|
|
|
auto upstream = downstream_->get_upstream();
|
|
|
|
upstream->resume_read(SHRPX_NO_BUFFER, downstream_,
|
|
|
|
downstream_->get_request_datalen());
|
2012-11-18 13:23:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-03 11:51:01 +02:00
|
|
|
void HttpDownstreamConnection::on_upstream_change(Upstream *upstream)
|
|
|
|
{
|
|
|
|
bufferevent_setcb(bev_,
|
|
|
|
upstream->get_downstream_readcb(),
|
|
|
|
upstream->get_downstream_writecb(),
|
|
|
|
upstream->get_downstream_eventcb(), this);
|
|
|
|
}
|
|
|
|
|
2014-09-18 16:19:28 +02:00
|
|
|
void HttpDownstreamConnection::reset_timeouts()
|
|
|
|
{
|
|
|
|
bufferevent_set_timeouts(bev_,
|
|
|
|
&get_config()->downstream_read_timeout,
|
|
|
|
&get_config()->downstream_write_timeout);
|
|
|
|
}
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
} // namespace shrpx
|