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"
|
2015-02-25 16:02:29 +01:00
|
|
|
#include "shrpx_log_config.h"
|
2014-08-19 16:36:04 +02:00
|
|
|
#include "shrpx_connect_blocker.h"
|
2014-10-13 14:09:00 +02:00
|
|
|
#include "shrpx_downstream_connection_pool.h"
|
2014-12-06 10:31:46 +01:00
|
|
|
#include "shrpx_worker.h"
|
2015-07-12 15:16:20 +02:00
|
|
|
#include "shrpx_http2_session.h"
|
2016-02-06 11:50:21 +01:00
|
|
|
#include "shrpx_ssl.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 {
|
2014-12-27 18:59:06 +01:00
|
|
|
void timeoutcb(struct ev_loop *loop, ev_timer *w, int revents) {
|
2015-02-04 13:15:58 +01:00
|
|
|
auto conn = static_cast<Connection *>(w->data);
|
|
|
|
auto dconn = static_cast<HttpDownstreamConnection *>(conn->data);
|
2014-12-27 18:59:06 +01:00
|
|
|
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
DCLOG(INFO, dconn) << "Time out";
|
|
|
|
}
|
|
|
|
|
|
|
|
auto downstream = dconn->get_downstream();
|
|
|
|
auto upstream = downstream->get_upstream();
|
|
|
|
auto handler = upstream->get_client_handler();
|
2016-01-13 16:37:45 +01:00
|
|
|
auto &resp = downstream->response();
|
2014-12-27 18:59:06 +01:00
|
|
|
|
|
|
|
// Do this so that dconn is not pooled
|
2016-01-13 16:37:45 +01:00
|
|
|
resp.connection_close = true;
|
2014-12-27 18:59:06 +01:00
|
|
|
|
|
|
|
if (upstream->downstream_error(dconn, Downstream::EVENT_TIMEOUT) != 0) {
|
|
|
|
delete handler;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void readcb(struct ev_loop *loop, ev_io *w, int revents) {
|
2015-02-04 13:15:58 +01:00
|
|
|
auto conn = static_cast<Connection *>(w->data);
|
|
|
|
auto dconn = static_cast<HttpDownstreamConnection *>(conn->data);
|
2014-12-27 18:59:06 +01:00
|
|
|
auto downstream = dconn->get_downstream();
|
|
|
|
auto upstream = downstream->get_upstream();
|
|
|
|
auto handler = upstream->get_client_handler();
|
|
|
|
|
|
|
|
if (upstream->downstream_read(dconn) != 0) {
|
|
|
|
delete handler;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void writecb(struct ev_loop *loop, ev_io *w, int revents) {
|
2015-02-04 13:15:58 +01:00
|
|
|
auto conn = static_cast<Connection *>(w->data);
|
|
|
|
auto dconn = static_cast<HttpDownstreamConnection *>(conn->data);
|
2014-12-27 18:59:06 +01:00
|
|
|
auto downstream = dconn->get_downstream();
|
|
|
|
auto upstream = downstream->get_upstream();
|
|
|
|
auto handler = upstream->get_client_handler();
|
|
|
|
|
|
|
|
if (upstream->downstream_write(dconn) != 0) {
|
|
|
|
delete handler;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void connectcb(struct ev_loop *loop, ev_io *w, int revents) {
|
2015-02-04 13:15:58 +01:00
|
|
|
auto conn = static_cast<Connection *>(w->data);
|
|
|
|
auto dconn = static_cast<HttpDownstreamConnection *>(conn->data);
|
2015-01-05 08:14:10 +01:00
|
|
|
auto downstream = dconn->get_downstream();
|
|
|
|
auto upstream = downstream->get_upstream();
|
|
|
|
auto handler = upstream->get_client_handler();
|
2016-02-06 11:50:21 +01:00
|
|
|
if (dconn->connected() != 0) {
|
2015-01-21 15:08:13 +01:00
|
|
|
if (upstream->on_downstream_abort_request(downstream, 503) != 0) {
|
2015-01-20 15:26:09 +01:00
|
|
|
delete handler;
|
|
|
|
}
|
2015-01-05 08:14:10 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-12-27 18:59:06 +01:00
|
|
|
writecb(loop, w, revents);
|
|
|
|
}
|
2014-01-19 10:07:50 +01:00
|
|
|
} // namespace
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
HttpDownstreamConnection::HttpDownstreamConnection(
|
2016-02-06 11:50:21 +01:00
|
|
|
DownstreamConnectionPool *dconn_pool, size_t group, struct ev_loop *loop,
|
2016-02-06 15:07:00 +01:00
|
|
|
Worker *worker)
|
2015-02-04 13:15:58 +01:00
|
|
|
: DownstreamConnection(dconn_pool),
|
2016-02-06 15:07:00 +01:00
|
|
|
conn_(loop, -1, nullptr, worker->get_mcpool(),
|
2016-01-19 08:56:12 +01:00
|
|
|
get_config()->conn.downstream.timeout.write,
|
|
|
|
get_config()->conn.downstream.timeout.read, {}, {}, connectcb,
|
2016-01-18 06:21:09 +01:00
|
|
|
readcb, timeoutcb, this, get_config()->tls.dyn_rec.warmup_threshold,
|
|
|
|
get_config()->tls.dyn_rec.idle_timeout),
|
2016-02-06 11:50:21 +01:00
|
|
|
do_read_(&HttpDownstreamConnection::noop),
|
|
|
|
do_write_(&HttpDownstreamConnection::noop),
|
2016-02-06 15:07:00 +01:00
|
|
|
worker_(worker),
|
|
|
|
ssl_ctx_(worker->get_cl_ssl_ctx()),
|
2016-02-07 10:22:57 +01:00
|
|
|
addr_(nullptr),
|
2016-01-27 13:14:07 +01:00
|
|
|
ioctrl_(&conn_.rlimit),
|
|
|
|
response_htp_{0},
|
2016-02-07 10:22:57 +01:00
|
|
|
group_(group) {}
|
2014-11-27 15:39:04 +01:00
|
|
|
|
2016-02-06 15:07:00 +01:00
|
|
|
HttpDownstreamConnection::~HttpDownstreamConnection() {
|
2016-02-11 09:55:56 +01:00
|
|
|
if (conn_.tls.ssl && conn_.tls.initial_handshake_done) {
|
2016-02-11 09:07:48 +01:00
|
|
|
auto session = SSL_get0_session(conn_.tls.ssl);
|
2016-02-06 15:07:00 +01:00
|
|
|
if (session) {
|
2016-02-11 09:12:57 +01:00
|
|
|
worker_->cache_client_tls_session(&addr_->addr, session,
|
|
|
|
ev_now(conn_.loop));
|
2016-02-06 15:07:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-11-18 13:23:13 +01:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
int HttpDownstreamConnection::attach_downstream(Downstream *downstream) {
|
|
|
|
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
|
|
|
}
|
2014-12-27 18:59:06 +01:00
|
|
|
|
2016-02-21 07:27:19 +01:00
|
|
|
auto worker_blocker = worker_->get_connect_blocker();
|
|
|
|
if (worker_blocker->blocked()) {
|
2016-02-21 08:11:50 +01:00
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
DCLOG(INFO, this)
|
|
|
|
<< "Worker wide backend connection was blocked temporarily";
|
|
|
|
}
|
2016-02-21 07:27:19 +01:00
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
|
|
|
|
2016-01-19 08:56:12 +01:00
|
|
|
auto &downstreamconf = get_config()->conn.downstream;
|
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
if (conn_.fd == -1) {
|
2016-02-06 11:50:21 +01:00
|
|
|
if (ssl_ctx_) {
|
2016-02-06 15:07:00 +01:00
|
|
|
auto ssl = ssl::create_ssl(ssl_ctx_);
|
|
|
|
if (!ssl) {
|
|
|
|
return -1;
|
2016-02-06 11:50:21 +01:00
|
|
|
}
|
2016-02-06 15:07:00 +01:00
|
|
|
|
|
|
|
conn_.set_ssl(ssl);
|
2016-02-06 11:50:21 +01:00
|
|
|
}
|
|
|
|
|
2016-02-06 15:07:00 +01:00
|
|
|
auto &next_downstream = worker_->get_dgrp(group_)->next;
|
2015-07-09 19:52:11 +02:00
|
|
|
auto end = next_downstream;
|
2016-02-21 06:53:06 +01:00
|
|
|
auto &groups = worker_->get_downstream_addr_groups();
|
|
|
|
auto &addrs = groups[group_].addrs;
|
2014-12-06 10:31:46 +01:00
|
|
|
for (;;) {
|
2015-07-09 19:52:11 +02:00
|
|
|
auto &addr = addrs[next_downstream];
|
2016-02-07 10:22:57 +01:00
|
|
|
|
2015-07-09 19:52:11 +02:00
|
|
|
if (++next_downstream >= addrs.size()) {
|
|
|
|
next_downstream = 0;
|
|
|
|
}
|
2014-12-06 10:31:46 +01:00
|
|
|
|
2016-02-21 06:53:06 +01:00
|
|
|
auto &connect_blocker = addr.connect_blocker;
|
|
|
|
|
|
|
|
if (connect_blocker->blocked()) {
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
DCLOG(INFO, this) << "Backend server "
|
2016-02-21 08:11:50 +01:00
|
|
|
<< util::to_numeric_addr(&addr.addr)
|
2016-02-21 06:53:06 +01:00
|
|
|
<< " was not available temporarily";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (end == next_downstream) {
|
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-07-26 18:41:10 +02:00
|
|
|
conn_.fd = util::create_nonblock_socket(addr.addr.su.storage.ss_family);
|
2014-12-06 10:31:46 +01:00
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
if (conn_.fd == -1) {
|
2014-12-06 10:31:46 +01:00
|
|
|
auto error = errno;
|
2016-02-21 08:11:50 +01:00
|
|
|
DCLOG(WARN, this) << "socket() failed; addr="
|
|
|
|
<< util::to_numeric_addr(&addr.addr)
|
|
|
|
<< ", errno=" << error;
|
2014-12-06 10:31:46 +01:00
|
|
|
|
2016-02-21 07:27:19 +01:00
|
|
|
worker_blocker->on_failure();
|
2014-12-06 10:31:46 +01:00
|
|
|
|
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
|
|
|
|
2016-02-21 07:27:19 +01:00
|
|
|
worker_blocker->on_success();
|
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
int rv;
|
2015-07-26 18:41:10 +02:00
|
|
|
rv = connect(conn_.fd, &addr.addr.su.sa, addr.addr.len);
|
2014-12-27 18:59:06 +01:00
|
|
|
if (rv != 0 && errno != EINPROGRESS) {
|
2014-12-06 10:31:46 +01:00
|
|
|
auto error = errno;
|
2016-02-21 08:11:50 +01:00
|
|
|
DCLOG(WARN, this) << "connect() failed; addr="
|
|
|
|
<< util::to_numeric_addr(&addr.addr)
|
|
|
|
<< ", errno=" << error;
|
2014-12-06 10:31:46 +01:00
|
|
|
|
|
|
|
connect_blocker->on_failure();
|
2015-02-04 13:15:58 +01:00
|
|
|
close(conn_.fd);
|
|
|
|
conn_.fd = -1;
|
2014-12-06 10:31:46 +01:00
|
|
|
|
2015-07-09 19:52:11 +02:00
|
|
|
if (end == next_downstream) {
|
2014-12-06 10:31:46 +01:00
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try again with the next downstream server
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
DCLOG(INFO, this) << "Connecting to downstream server";
|
|
|
|
}
|
|
|
|
|
2016-02-07 10:22:57 +01:00
|
|
|
addr_ = &addr;
|
2015-02-03 17:15:56 +01:00
|
|
|
|
2016-02-06 11:50:21 +01:00
|
|
|
if (ssl_ctx_) {
|
|
|
|
auto sni_name = !get_config()->tls.backend_sni_name.empty()
|
|
|
|
? StringRef(get_config()->tls.backend_sni_name)
|
2016-02-07 10:22:57 +01:00
|
|
|
: StringRef(addr_->host);
|
2016-02-06 11:50:21 +01:00
|
|
|
if (!util::numeric_host(sni_name.c_str())) {
|
|
|
|
SSL_set_tlsext_host_name(conn_.tls.ssl, sni_name.c_str());
|
|
|
|
}
|
|
|
|
|
2016-02-11 09:12:57 +01:00
|
|
|
auto session = worker_->reuse_client_tls_session(&addr_->addr);
|
2016-02-06 15:07:00 +01:00
|
|
|
if (session) {
|
|
|
|
SSL_set_session(conn_.tls.ssl, session);
|
|
|
|
SSL_SESSION_free(session);
|
|
|
|
}
|
|
|
|
|
2016-02-06 11:50:21 +01:00
|
|
|
conn_.prepare_client_handshake();
|
|
|
|
}
|
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
ev_io_set(&conn_.wev, conn_.fd, EV_WRITE);
|
|
|
|
ev_io_set(&conn_.rev, conn_.fd, EV_READ);
|
2014-12-27 18:59:06 +01:00
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
conn_.wlimit.startw();
|
2014-12-27 18:59:06 +01:00
|
|
|
|
2014-12-06 10:31:46 +01:00
|
|
|
break;
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
2015-07-26 18:18:52 +02:00
|
|
|
|
|
|
|
// TODO we should have timeout for connection establishment
|
|
|
|
ev_timer_again(conn_.loop, &conn_.wt);
|
|
|
|
} else {
|
|
|
|
// we may set read timer cb to idle_timeoutcb. Reset again.
|
2016-01-19 08:56:12 +01:00
|
|
|
conn_.rt.repeat = downstreamconf.timeout.read;
|
2015-07-26 18:18:52 +02:00
|
|
|
ev_set_cb(&conn_.rt, timeoutcb);
|
|
|
|
ev_timer_again(conn_.loop, &conn_.rt);
|
|
|
|
ev_set_cb(&conn_.rev, readcb);
|
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
|
|
|
|
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
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
int HttpDownstreamConnection::push_request_headers() {
|
2016-02-07 10:22:57 +01:00
|
|
|
const auto &downstream_hostport = addr_->hostport;
|
2016-01-13 14:45:52 +01:00
|
|
|
const auto &req = downstream_->request();
|
|
|
|
|
|
|
|
auto connect_method = req.method == HTTP_CONNECT;
|
2015-03-13 14:52:09 +01:00
|
|
|
|
2016-01-18 09:00:20 +01:00
|
|
|
auto &httpconf = get_config()->http;
|
|
|
|
|
2015-09-03 16:36:49 +02:00
|
|
|
// For HTTP/1.0 request, there is no authority in request. In that
|
|
|
|
// case, we use backend server's host nonetheless.
|
2016-01-17 03:33:45 +01:00
|
|
|
auto authority = StringRef(downstream_hostport);
|
2016-01-18 09:00:20 +01:00
|
|
|
auto no_host_rewrite = httpconf.no_host_rewrite ||
|
2015-09-03 16:36:49 +02:00
|
|
|
get_config()->http2_proxy ||
|
|
|
|
get_config()->client_proxy || connect_method;
|
2015-02-03 17:15:56 +01:00
|
|
|
|
2016-01-13 14:45:52 +01:00
|
|
|
if (no_host_rewrite && !req.authority.empty()) {
|
2016-01-17 03:33:45 +01:00
|
|
|
authority = StringRef(req.authority);
|
2015-02-03 17:15:56 +01:00
|
|
|
}
|
|
|
|
|
2016-01-16 16:52:41 +01:00
|
|
|
downstream_->set_request_downstream_host(authority.str());
|
2015-02-08 11:41:45 +01:00
|
|
|
|
2015-09-11 16:07:00 +02:00
|
|
|
auto buf = downstream_->get_request_buf();
|
|
|
|
|
2013-09-11 16:24:32 +02:00
|
|
|
// Assume that method and request path do not contain \r\n.
|
2016-01-13 14:45:52 +01:00
|
|
|
auto meth = http2::to_method_string(req.method);
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append(meth, strlen(meth));
|
|
|
|
buf->append(" ");
|
2015-06-16 14:31:33 +02:00
|
|
|
|
2015-05-26 15:26:17 +02:00
|
|
|
if (connect_method) {
|
2016-01-17 09:04:16 +01:00
|
|
|
buf->append(authority);
|
2015-03-13 14:40:41 +01:00
|
|
|
} else if (get_config()->http2_proxy || get_config()->client_proxy) {
|
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.
|
2016-01-13 14:45:52 +01:00
|
|
|
assert(!req.scheme.empty());
|
|
|
|
buf->append(req.scheme);
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("://");
|
2016-01-17 09:04:16 +01:00
|
|
|
buf->append(authority);
|
2016-01-13 14:45:52 +01:00
|
|
|
buf->append(req.path);
|
|
|
|
} else if (req.method == HTTP_OPTIONS && req.path.empty()) {
|
2015-09-03 17:14:09 +02:00
|
|
|
// Server-wide OPTIONS
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("*");
|
2013-10-25 14:50:56 +02:00
|
|
|
} else {
|
2016-01-13 14:45:52 +01:00
|
|
|
buf->append(req.path);
|
2013-10-25 14:50:56 +02:00
|
|
|
}
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append(" HTTP/1.1\r\nHost: ");
|
2016-01-17 09:04:16 +01:00
|
|
|
buf->append(authority);
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("\r\n");
|
2015-02-03 17:15:56 +01:00
|
|
|
|
2016-01-13 14:45:52 +01:00
|
|
|
http2::build_http1_headers_from_headers(buf, req.fs.headers());
|
2013-08-27 17:09:46 +02:00
|
|
|
|
2016-01-13 16:44:10 +01:00
|
|
|
auto cookie = downstream_->assemble_request_cookie();
|
|
|
|
if (!cookie.empty()) {
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("Cookie: ");
|
2016-01-13 16:44:10 +01:00
|
|
|
buf->append(cookie);
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("\r\n");
|
2013-11-16 13:15:55 +01:00
|
|
|
}
|
|
|
|
|
2016-01-13 14:45:52 +01:00
|
|
|
if (!connect_method && req.http2_expect_body &&
|
|
|
|
!req.fs.header(http2::HD_CONTENT_LENGTH)) {
|
2014-07-03 12:59:10 +02:00
|
|
|
|
|
|
|
downstream_->set_chunked_request(true);
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("Transfer-Encoding: chunked\r\n");
|
2014-07-03 12:59:10 +02:00
|
|
|
}
|
|
|
|
|
2016-01-13 14:45:52 +01:00
|
|
|
if (req.connection_close) {
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("Connection: close\r\n");
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
2015-05-26 15:26:17 +02:00
|
|
|
|
2016-01-13 14:45:52 +01:00
|
|
|
if (!connect_method && req.upgrade_request) {
|
|
|
|
auto connection = req.fs.header(http2::HD_CONNECTION);
|
2015-05-26 15:26:17 +02:00
|
|
|
if (connection) {
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("Connection: ");
|
|
|
|
buf->append((*connection).value);
|
|
|
|
buf->append("\r\n");
|
2015-05-26 15:26:17 +02:00
|
|
|
}
|
|
|
|
|
2016-01-13 14:45:52 +01:00
|
|
|
auto upgrade = req.fs.header(http2::HD_UPGRADE);
|
2015-05-26 15:26:17 +02:00
|
|
|
if (upgrade) {
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("Upgrade: ");
|
|
|
|
buf->append((*upgrade).value);
|
|
|
|
buf->append("\r\n");
|
2015-05-26 15:26:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-15 15:04:58 +01:00
|
|
|
auto upstream = downstream_->get_upstream();
|
|
|
|
auto handler = upstream->get_client_handler();
|
|
|
|
|
2016-01-18 09:00:20 +01:00
|
|
|
auto &fwdconf = httpconf.forwarded;
|
|
|
|
|
|
|
|
auto fwd =
|
|
|
|
fwdconf.strip_incoming ? nullptr : req.fs.header(http2::HD_FORWARDED);
|
|
|
|
|
|
|
|
if (fwdconf.params) {
|
|
|
|
auto params = fwdconf.params;
|
2016-01-15 15:04:58 +01:00
|
|
|
|
|
|
|
if (get_config()->http2_proxy || get_config()->client_proxy ||
|
|
|
|
connect_method) {
|
|
|
|
params &= ~FORWARDED_PROTO;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto value = http::create_forwarded(params, handler->get_forwarded_by(),
|
|
|
|
handler->get_forwarded_for(),
|
|
|
|
req.authority, req.scheme);
|
|
|
|
if (fwd || !value.empty()) {
|
|
|
|
buf->append("Forwarded: ");
|
|
|
|
if (fwd) {
|
|
|
|
buf->append(fwd->value);
|
|
|
|
|
|
|
|
if (!value.empty()) {
|
|
|
|
buf->append(", ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buf->append(value);
|
|
|
|
buf->append("\r\n");
|
|
|
|
}
|
|
|
|
} else if (fwd) {
|
|
|
|
buf->append("Forwarded: ");
|
|
|
|
buf->append(fwd->value);
|
|
|
|
buf->append("\r\n");
|
|
|
|
}
|
|
|
|
|
2016-01-18 09:00:20 +01:00
|
|
|
auto &xffconf = httpconf.xff;
|
|
|
|
|
|
|
|
auto xff = xffconf.strip_incoming ? nullptr
|
|
|
|
: req.fs.header(http2::HD_X_FORWARDED_FOR);
|
2016-01-16 08:48:41 +01:00
|
|
|
|
2016-01-18 09:00:20 +01:00
|
|
|
if (xffconf.add) {
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("X-Forwarded-For: ");
|
2016-01-16 08:48:41 +01:00
|
|
|
if (xff) {
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append((*xff).value);
|
|
|
|
buf->append(", ");
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append(client_handler_->get_ipaddr());
|
|
|
|
buf->append("\r\n");
|
2016-01-16 08:48:41 +01:00
|
|
|
} else if (xff) {
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("X-Forwarded-For: ");
|
|
|
|
buf->append((*xff).value);
|
|
|
|
buf->append("\r\n");
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!get_config()->http2_proxy && !get_config()->client_proxy &&
|
2015-05-26 15:26:17 +02:00
|
|
|
!connect_method) {
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("X-Forwarded-Proto: ");
|
2016-01-13 14:45:52 +01:00
|
|
|
assert(!req.scheme.empty());
|
|
|
|
buf->append(req.scheme);
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("\r\n");
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
2016-01-13 14:45:52 +01:00
|
|
|
auto via = req.fs.header(http2::HD_VIA);
|
2016-01-18 09:00:20 +01:00
|
|
|
if (httpconf.no_via) {
|
2015-01-04 15:22:39 +01:00
|
|
|
if (via) {
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("Via: ");
|
|
|
|
buf->append((*via).value);
|
|
|
|
buf->append("\r\n");
|
2013-08-27 17:09:46 +02:00
|
|
|
}
|
|
|
|
} else {
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("Via: ");
|
2015-01-04 15:22:39 +01:00
|
|
|
if (via) {
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append((*via).value);
|
|
|
|
buf->append(", ");
|
2013-01-09 14:01:25 +01:00
|
|
|
}
|
2016-01-13 14:45:52 +01:00
|
|
|
buf->append(http::create_via_header_value(req.http_major, req.http_minor));
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("\r\n");
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
|
|
|
|
2016-01-18 09:00:20 +01:00
|
|
|
for (auto &p : httpconf.add_request_headers) {
|
2016-02-13 14:19:05 +01:00
|
|
|
buf->append(p.name);
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append(": ");
|
2016-02-13 14:19:05 +01:00
|
|
|
buf->append(p.value);
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("\r\n");
|
2015-06-05 16:04:20 +02:00
|
|
|
}
|
|
|
|
|
2015-09-11 16:07:00 +02:00
|
|
|
buf->append("\r\n");
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (LOG_ENABLED(INFO)) {
|
2012-12-09 13:36:02 +01:00
|
|
|
std::string nhdrs;
|
2015-09-11 16:07:00 +02:00
|
|
|
for (auto chunk = buf->head; chunk; chunk = chunk->next) {
|
|
|
|
nhdrs.append(chunk->pos, chunk->last);
|
|
|
|
}
|
2015-03-03 17:09:15 +01:00
|
|
|
if (log_config()->errorlog_tty) {
|
2015-09-11 16:07:00 +02:00
|
|
|
nhdrs = http::colorizeHeaders(nhdrs.c_str());
|
2012-12-09 13:36:02 +01:00
|
|
|
}
|
2012-12-09 11:15:14 +01:00
|
|
|
DCLOG(INFO, this) << "HTTP request headers. stream_id="
|
2015-09-11 16:07:00 +02:00
|
|
|
<< downstream_->get_stream_id() << "\n" << nhdrs;
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
2014-12-27 18:59:06 +01:00
|
|
|
|
|
|
|
signal_write();
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
int HttpDownstreamConnection::push_upload_data_chunk(const uint8_t *data,
|
|
|
|
size_t datalen) {
|
2014-12-27 18:59:06 +01:00
|
|
|
auto chunked = downstream_->get_chunked_request();
|
|
|
|
auto output = downstream_->get_request_buf();
|
2014-05-14 15:39:28 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (chunked) {
|
2014-05-14 15:39:28 +02:00
|
|
|
auto chunk_size_hex = util::utox(datalen);
|
2016-01-17 09:04:16 +01:00
|
|
|
output->append(chunk_size_hex);
|
2015-01-22 15:54:30 +01:00
|
|
|
output->append("\r\n");
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
2014-05-14 15:39:28 +02:00
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
output->append(data, datalen);
|
2014-05-14 15:39:28 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (chunked) {
|
2015-01-22 15:54:30 +01:00
|
|
|
output->append("\r\n");
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
2014-05-14 15:39:28 +02:00
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
signal_write();
|
|
|
|
|
2014-05-14 15:39:28 +02:00
|
|
|
return 0;
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
int HttpDownstreamConnection::end_upload_data() {
|
2014-12-27 18:59:06 +01:00
|
|
|
if (!downstream_->get_chunked_request()) {
|
|
|
|
return 0;
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
2014-12-27 18:59:06 +01:00
|
|
|
|
2016-01-13 14:45:52 +01:00
|
|
|
const auto &req = downstream_->request();
|
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
auto output = downstream_->get_request_buf();
|
2016-01-13 14:45:52 +01:00
|
|
|
const auto &trailers = req.fs.trailers();
|
2015-03-08 09:58:00 +01:00
|
|
|
if (trailers.empty()) {
|
|
|
|
output->append("0\r\n\r\n");
|
|
|
|
} else {
|
|
|
|
output->append("0\r\n");
|
2015-09-11 16:07:00 +02:00
|
|
|
http2::build_http1_headers_from_headers(output, trailers);
|
2015-03-08 09:58:00 +01:00
|
|
|
output->append("\r\n");
|
|
|
|
}
|
2014-12-27 18:59:06 +01:00
|
|
|
|
|
|
|
signal_write();
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-13 14:09:00 +02:00
|
|
|
namespace {
|
2014-12-27 18:59:06 +01:00
|
|
|
void idle_readcb(struct ev_loop *loop, ev_io *w, int revents) {
|
2015-02-04 13:15:58 +01:00
|
|
|
auto conn = static_cast<Connection *>(w->data);
|
|
|
|
auto dconn = static_cast<HttpDownstreamConnection *>(conn->data);
|
2014-12-27 18:59:06 +01:00
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
DCLOG(INFO, dconn) << "Idle connection EOF";
|
|
|
|
}
|
2014-10-13 14:09:00 +02:00
|
|
|
auto dconn_pool = dconn->get_dconn_pool();
|
|
|
|
dconn_pool->remove_downstream_connection(dconn);
|
|
|
|
// dconn was deleted
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
namespace {
|
2014-12-27 18:59:06 +01:00
|
|
|
void idle_timeoutcb(struct ev_loop *loop, ev_timer *w, int revents) {
|
2015-02-04 13:15:58 +01:00
|
|
|
auto conn = static_cast<Connection *>(w->data);
|
|
|
|
auto dconn = static_cast<HttpDownstreamConnection *>(conn->data);
|
2014-12-27 18:59:06 +01:00
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
DCLOG(INFO, dconn) << "Idle connection timeout";
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2014-10-13 14:09:00 +02:00
|
|
|
auto dconn_pool = dconn->get_dconn_pool();
|
|
|
|
dconn_pool->remove_downstream_connection(dconn);
|
2014-08-18 17:16:51 +02:00
|
|
|
// dconn was deleted
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
void HttpDownstreamConnection::detach_downstream(Downstream *downstream) {
|
|
|
|
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;
|
2014-12-27 18:59:06 +01:00
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
ev_set_cb(&conn_.rev, idle_readcb);
|
2015-07-26 18:18:52 +02:00
|
|
|
ioctrl_.force_resume_read();
|
2014-12-27 18:59:06 +01:00
|
|
|
|
2016-01-19 08:56:12 +01:00
|
|
|
conn_.rt.repeat = get_config()->conn.downstream.timeout.idle_read;
|
2015-02-04 13:15:58 +01:00
|
|
|
ev_set_cb(&conn_.rt, idle_timeoutcb);
|
|
|
|
ev_timer_again(conn_.loop, &conn_.rt);
|
2015-07-26 18:18:52 +02:00
|
|
|
|
|
|
|
conn_.wlimit.stopw();
|
|
|
|
ev_timer_stop(conn_.loop, &conn_.wt);
|
2014-12-27 18:59:06 +01:00
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
void HttpDownstreamConnection::pause_read(IOCtrlReason reason) {
|
2012-11-20 17:29:39 +01:00
|
|
|
ioctrl_.pause_read(reason);
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
int HttpDownstreamConnection::resume_read(IOCtrlReason reason,
|
|
|
|
size_t consumed) {
|
2015-10-04 03:36:20 +02:00
|
|
|
if (downstream_->get_response_buf()->rleft() <=
|
2016-01-19 08:56:12 +01:00
|
|
|
get_config()->conn.downstream.request_buffer_size / 2) {
|
2014-12-27 18:59:06 +01:00
|
|
|
ioctrl_.resume_read(reason);
|
|
|
|
}
|
|
|
|
|
2014-01-18 16:38:11 +01:00
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
void HttpDownstreamConnection::force_resume_read() {
|
2012-11-20 17:29:39 +01:00
|
|
|
ioctrl_.force_resume_read();
|
|
|
|
}
|
|
|
|
|
2014-07-03 13:57:07 +02:00
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
int htp_msg_begincb(http_parser *htp) {
|
|
|
|
auto downstream = static_cast<Downstream *>(htp->data);
|
2014-07-03 13:57:07 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream->get_response_state() != Downstream::INITIAL) {
|
2014-07-03 13:57:07 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
int htp_hdrs_completecb(http_parser *htp) {
|
|
|
|
auto downstream = static_cast<Downstream *>(htp->data);
|
2014-07-23 16:32:57 +02:00
|
|
|
auto upstream = downstream->get_upstream();
|
2016-01-13 14:45:52 +01:00
|
|
|
const auto &req = downstream->request();
|
2016-01-13 16:37:45 +01:00
|
|
|
auto &resp = downstream->response();
|
2014-07-23 16:32:57 +02:00
|
|
|
int rv;
|
|
|
|
|
2016-01-13 16:37:45 +01:00
|
|
|
resp.http_status = htp->status_code;
|
|
|
|
resp.http_major = htp->http_major;
|
|
|
|
resp.http_minor = htp->http_minor;
|
2014-07-23 16:32:57 +02:00
|
|
|
|
2016-02-20 13:44:08 +01:00
|
|
|
if (resp.fs.parse_content_length() != 0) {
|
2015-01-20 15:11:54 +01:00
|
|
|
downstream->set_response_state(Downstream::MSG_BAD_HEADER);
|
|
|
|
return -1;
|
|
|
|
}
|
2015-01-04 15:22:39 +01:00
|
|
|
|
2015-05-26 15:26:17 +02:00
|
|
|
// Check upgrade before processing non-final response, since if
|
|
|
|
// upgrade succeeded, 101 response is treated as final in nghttpx.
|
|
|
|
downstream->check_upgrade_fulfilled();
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream->get_non_final_response()) {
|
2015-04-10 15:30:20 +02:00
|
|
|
// Reset content-length because we reuse same Downstream for the
|
|
|
|
// next response.
|
2016-01-13 16:37:45 +01:00
|
|
|
resp.fs.content_length = -1;
|
2014-07-23 16:32:57 +02:00
|
|
|
// For non-final response code, we just call
|
|
|
|
// on_downstream_header_complete() without changing response
|
|
|
|
// state.
|
|
|
|
rv = upstream->on_downstream_header_complete(downstream);
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (rv != 0) {
|
2014-07-23 16:32:57 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-05-26 15:26:17 +02:00
|
|
|
// Ignore response body for non-final response.
|
|
|
|
return 1;
|
2014-07-23 16:32:57 +02:00
|
|
|
}
|
|
|
|
|
2016-01-13 16:37:45 +01:00
|
|
|
resp.connection_close = !http_should_keep_alive(htp);
|
2012-11-20 17:29:39 +01:00
|
|
|
downstream->set_response_state(Downstream::HEADER_COMPLETE);
|
2014-06-15 09:14:00 +02:00
|
|
|
downstream->inspect_http1_response();
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream->get_upgraded()) {
|
2015-04-10 15:30:20 +02:00
|
|
|
// content-length must be ignored for upgraded connection.
|
2016-01-13 16:37:45 +01:00
|
|
|
resp.fs.content_length = -1;
|
|
|
|
resp.connection_close = true;
|
2015-04-10 15:30:20 +02:00
|
|
|
// transfer-encoding not applied to upgraded connection
|
|
|
|
downstream->set_chunked_response(false);
|
2013-02-11 09:20:52 +01:00
|
|
|
}
|
2014-11-27 15:39:04 +01: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
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream->get_upgraded()) {
|
2013-07-31 14:48:37 +02:00
|
|
|
// Upgrade complete, read until EOF in both ends
|
2015-02-13 14:41:50 +01:00
|
|
|
if (upstream->resume_read(SHRPX_NO_BUFFER, 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);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (LOG_ENABLED(INFO)) {
|
2013-07-31 14:48:37 +02:00
|
|
|
LOG(INFO) << "HTTP upgrade success. stream_id="
|
|
|
|
<< downstream->get_stream_id();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-13 16:37:45 +01:00
|
|
|
auto status = resp.http_status;
|
2012-11-20 17:29:39 +01:00
|
|
|
// 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
|
2015-04-28 16:05:00 +02:00
|
|
|
// https://tools.ietf.org/html/rfc7230#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.
|
2016-01-13 14:45:52 +01:00
|
|
|
return req.method == HTTP_HEAD || (100 <= status && status <= 199) ||
|
|
|
|
status == 204 || status == 304
|
2014-11-27 15:39:04 +01:00
|
|
|
? 1
|
|
|
|
: 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2016-02-06 04:25:34 +01:00
|
|
|
namespace {
|
|
|
|
int ensure_header_field_buffer(const Downstream *downstream,
|
|
|
|
const HttpConfig &httpconf, size_t len) {
|
|
|
|
auto &resp = downstream->response();
|
|
|
|
|
|
|
|
if (resp.fs.buffer_size() + len > httpconf.response_header_field_buffer) {
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
DLOG(INFO, downstream) << "Too large header header field size="
|
|
|
|
<< resp.fs.buffer_size() + len;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
int ensure_max_header_fields(const Downstream *downstream,
|
|
|
|
const HttpConfig &httpconf) {
|
|
|
|
auto &resp = downstream->response();
|
|
|
|
|
|
|
|
if (resp.fs.num_fields() >= httpconf.max_response_header_fields) {
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
DLOG(INFO, downstream)
|
|
|
|
<< "Too many header field num=" << resp.fs.num_fields() + 1;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
int htp_hdr_keycb(http_parser *htp, const char *data, size_t len) {
|
|
|
|
auto downstream = static_cast<Downstream *>(htp->data);
|
2016-01-13 16:37:45 +01:00
|
|
|
auto &resp = downstream->response();
|
2016-02-06 04:25:34 +01:00
|
|
|
auto &httpconf = get_config()->http;
|
|
|
|
|
|
|
|
if (ensure_header_field_buffer(downstream, httpconf, len) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2016-01-13 16:37:45 +01:00
|
|
|
|
2015-03-08 09:19:52 +01:00
|
|
|
if (downstream->get_response_state() == Downstream::INITIAL) {
|
2016-01-13 16:37:45 +01:00
|
|
|
if (resp.fs.header_key_prev()) {
|
|
|
|
resp.fs.append_last_header_key(data, len);
|
2015-03-08 09:19:52 +01:00
|
|
|
} else {
|
2016-02-06 04:25:34 +01:00
|
|
|
if (ensure_max_header_fields(downstream, httpconf) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2016-02-20 13:41:23 +01:00
|
|
|
resp.fs.add_header_lower(StringRef{data, len}, StringRef{}, false);
|
2015-03-08 09:19:52 +01:00
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
} else {
|
2015-03-08 09:19:52 +01:00
|
|
|
// trailer part
|
2016-01-13 16:37:45 +01:00
|
|
|
if (resp.fs.trailer_key_prev()) {
|
|
|
|
resp.fs.append_last_trailer_key(data, len);
|
2015-03-08 09:19:52 +01:00
|
|
|
} else {
|
2016-02-06 04:25:34 +01:00
|
|
|
if (ensure_max_header_fields(downstream, httpconf) != 0) {
|
|
|
|
// Could not ignore this trailer field easily, since we may
|
|
|
|
// get its value in htp_hdr_valcb, and it will be added to
|
|
|
|
// wrong place or crash if trailer fields are currently empty.
|
|
|
|
return -1;
|
|
|
|
}
|
2016-02-20 13:41:23 +01:00
|
|
|
resp.fs.add_trailer_lower(StringRef(data, len), StringRef{}, false);
|
2015-03-08 09:19:52 +01:00
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
int htp_hdr_valcb(http_parser *htp, const char *data, size_t len) {
|
|
|
|
auto downstream = static_cast<Downstream *>(htp->data);
|
2016-01-13 16:37:45 +01:00
|
|
|
auto &resp = downstream->response();
|
2016-02-06 04:25:34 +01:00
|
|
|
auto &httpconf = get_config()->http;
|
|
|
|
|
|
|
|
if (ensure_header_field_buffer(downstream, httpconf, len) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2016-01-13 16:37:45 +01:00
|
|
|
|
2015-03-08 09:19:52 +01:00
|
|
|
if (downstream->get_response_state() == Downstream::INITIAL) {
|
2016-01-13 16:37:45 +01:00
|
|
|
resp.fs.append_last_header_value(data, len);
|
2012-11-20 17:29:39 +01:00
|
|
|
} else {
|
2016-01-13 16:37:45 +01:00
|
|
|
resp.fs.append_last_trailer_value(data, len);
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
int htp_bodycb(http_parser *htp, const char *data, size_t len) {
|
|
|
|
auto downstream = static_cast<Downstream *>(htp->data);
|
2016-01-14 15:20:44 +01:00
|
|
|
auto &resp = downstream->response();
|
2014-07-05 11:22:40 +02:00
|
|
|
|
2016-01-14 15:20:44 +01:00
|
|
|
resp.recv_body_length += len;
|
2014-07-05 11:22:40 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
return downstream->get_upstream()->on_downstream_body(
|
|
|
|
downstream, reinterpret_cast<const uint8_t *>(data), len, true);
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
int htp_msg_completecb(http_parser *htp) {
|
|
|
|
auto downstream = static_cast<Downstream *>(htp->data);
|
2014-07-23 16:32:57 +02:00
|
|
|
|
2015-05-26 15:26:17 +02:00
|
|
|
// http-parser does not treat "200 connection established" response
|
|
|
|
// against CONNECT request, and in that case, this function is not
|
|
|
|
// called. But if HTTP Upgrade is made (e.g., WebSocket), this
|
|
|
|
// function is called, and http_parser_execute() returns just after
|
|
|
|
// that.
|
|
|
|
if (downstream->get_upgraded()) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream->get_non_final_response()) {
|
2014-07-23 16:32:57 +02:00
|
|
|
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-11-27 15:39:04 +01:00
|
|
|
htp_msg_begincb, // http_cb on_message_begin;
|
|
|
|
nullptr, // http_data_cb on_url;
|
|
|
|
nullptr, // http_data_cb on_status;
|
|
|
|
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
|
|
|
|
|
2016-02-06 17:07:44 +01:00
|
|
|
int HttpDownstreamConnection::read_clear() {
|
|
|
|
ev_timer_again(conn_.loop, &conn_.rt);
|
2016-02-07 13:07:27 +01:00
|
|
|
std::array<uint8_t, 16_k> buf;
|
2016-02-06 17:07:44 +01:00
|
|
|
int rv;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
auto nread = conn_.read_clear(buf.data(), buf.size());
|
|
|
|
if (nread == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nread < 0) {
|
|
|
|
return nread;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = process_input(buf.data(), nread);
|
|
|
|
if (rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
2016-02-06 11:50:21 +01:00
|
|
|
|
2016-02-06 17:07:44 +01:00
|
|
|
if (!ev_is_active(&conn_.rev)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2016-02-06 11:50:21 +01:00
|
|
|
}
|
|
|
|
|
2016-02-06 17:07:44 +01:00
|
|
|
int HttpDownstreamConnection::write_clear() {
|
2016-02-06 11:50:21 +01:00
|
|
|
ev_timer_again(conn_.loop, &conn_.rt);
|
|
|
|
|
2016-02-06 17:07:44 +01:00
|
|
|
auto upstream = downstream_->get_upstream();
|
|
|
|
auto input = downstream_->get_request_buf();
|
|
|
|
|
|
|
|
std::array<struct iovec, MAX_WR_IOVCNT> iov;
|
|
|
|
|
|
|
|
while (input->rleft() > 0) {
|
|
|
|
auto iovcnt = input->riovec(iov.data(), iov.size());
|
|
|
|
|
|
|
|
auto nwrite = conn_.writev_clear(iov.data(), iovcnt);
|
|
|
|
|
|
|
|
if (nwrite == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nwrite < 0) {
|
|
|
|
return nwrite;
|
|
|
|
}
|
|
|
|
|
|
|
|
input->drain(nwrite);
|
|
|
|
}
|
|
|
|
|
|
|
|
conn_.wlimit.stopw();
|
|
|
|
ev_timer_stop(conn_.loop, &conn_.wt);
|
|
|
|
|
|
|
|
if (input->rleft() == 0) {
|
|
|
|
auto &req = downstream_->request();
|
|
|
|
|
|
|
|
upstream->resume_read(SHRPX_NO_BUFFER, downstream_,
|
|
|
|
req.unconsumed_body_length);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int HttpDownstreamConnection::tls_handshake() {
|
2016-02-06 11:50:21 +01:00
|
|
|
ERR_clear_error();
|
|
|
|
|
2016-02-06 17:07:44 +01:00
|
|
|
ev_timer_again(conn_.loop, &conn_.rt);
|
|
|
|
|
2016-02-06 11:50:21 +01:00
|
|
|
auto rv = conn_.tls_handshake();
|
|
|
|
if (rv == SHRPX_ERR_INPROGRESS) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rv < 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
DCLOG(INFO, this) << "SSL/TLS handshake completed";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!get_config()->tls.insecure &&
|
2016-02-07 10:22:57 +01:00
|
|
|
ssl::check_cert(conn_.tls.ssl, addr_) != 0) {
|
2016-02-06 11:50:21 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-02-06 17:07:44 +01:00
|
|
|
do_read_ = &HttpDownstreamConnection::read_tls;
|
|
|
|
do_write_ = &HttpDownstreamConnection::write_tls;
|
2016-02-06 11:50:21 +01:00
|
|
|
|
|
|
|
// TODO Check negotiated ALPN
|
|
|
|
|
|
|
|
return on_write();
|
|
|
|
}
|
|
|
|
|
2016-02-06 17:07:44 +01:00
|
|
|
int HttpDownstreamConnection::read_tls() {
|
|
|
|
ERR_clear_error();
|
2016-02-06 11:50:21 +01:00
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
ev_timer_again(conn_.loop, &conn_.rt);
|
2016-02-07 13:07:27 +01:00
|
|
|
std::array<uint8_t, 16_k> buf;
|
2014-12-27 18:59:06 +01:00
|
|
|
int rv;
|
2014-06-01 14:01:01 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
for (;;) {
|
2016-02-06 17:07:44 +01:00
|
|
|
auto nread = conn_.read_tls(buf.data(), buf.size());
|
2014-12-27 18:59:06 +01:00
|
|
|
if (nread == 0) {
|
2015-02-04 13:15:58 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nread < 0) {
|
|
|
|
return nread;
|
2014-12-27 18:59:06 +01:00
|
|
|
}
|
2014-06-01 14:01:01 +02:00
|
|
|
|
2016-02-06 17:07:44 +01:00
|
|
|
rv = process_input(buf.data(), nread);
|
|
|
|
if (rv != 0) {
|
|
|
|
return rv;
|
2015-05-26 15:26:17 +02:00
|
|
|
}
|
2016-01-27 07:26:46 +01:00
|
|
|
|
2016-02-06 17:07:44 +01:00
|
|
|
if (!ev_is_active(&conn_.rev)) {
|
2016-01-27 07:26:46 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-06 17:07:44 +01:00
|
|
|
int HttpDownstreamConnection::write_tls() {
|
|
|
|
ERR_clear_error();
|
2016-02-06 11:50:21 +01:00
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
ev_timer_again(conn_.loop, &conn_.rt);
|
2014-09-18 16:19:28 +02:00
|
|
|
|
2014-08-21 14:22:16 +02:00
|
|
|
auto upstream = downstream_->get_upstream();
|
2014-12-27 18:59:06 +01:00
|
|
|
auto input = downstream_->get_request_buf();
|
|
|
|
|
2016-02-07 08:52:40 +01:00
|
|
|
struct iovec iov;
|
2015-01-10 15:04:54 +01:00
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
while (input->rleft() > 0) {
|
2016-02-07 08:52:40 +01:00
|
|
|
auto iovcnt = input->riovec(&iov, 1);
|
2016-02-06 17:07:44 +01:00
|
|
|
assert(iovcnt == 1);
|
2016-02-07 08:52:40 +01:00
|
|
|
auto nwrite = conn_.write_tls(iov.iov_base, iov.iov_len);
|
2015-02-04 13:15:58 +01:00
|
|
|
|
|
|
|
if (nwrite == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nwrite < 0) {
|
|
|
|
return nwrite;
|
2014-12-27 18:59:06 +01:00
|
|
|
}
|
2015-02-04 13:15:58 +01:00
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
input->drain(nwrite);
|
|
|
|
}
|
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
conn_.wlimit.stopw();
|
|
|
|
ev_timer_stop(conn_.loop, &conn_.wt);
|
2014-12-27 18:59:06 +01:00
|
|
|
|
|
|
|
if (input->rleft() == 0) {
|
2016-01-14 15:36:47 +01:00
|
|
|
auto &req = downstream_->request();
|
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
upstream->resume_read(SHRPX_NO_BUFFER, downstream_,
|
2016-01-14 15:36:47 +01:00
|
|
|
req.unconsumed_body_length);
|
2014-12-27 18:59:06 +01:00
|
|
|
}
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-02-06 17:07:44 +01:00
|
|
|
int HttpDownstreamConnection::process_input(const uint8_t *data,
|
|
|
|
size_t datalen) {
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
if (downstream_->get_upgraded()) {
|
|
|
|
// For upgraded connection, just pass data to the upstream.
|
|
|
|
rv = downstream_->get_upstream()->on_downstream_body(downstream_, data,
|
|
|
|
datalen, true);
|
|
|
|
if (rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (downstream_->response_buf_full()) {
|
|
|
|
downstream_->pause_read(SHRPX_NO_BUFFER);
|
|
|
|
return 0;
|
|
|
|
}
|
2016-02-07 09:59:38 +01:00
|
|
|
|
|
|
|
return 0;
|
2016-02-06 17:07:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
auto nproc =
|
|
|
|
http_parser_execute(&response_htp_, &htp_hooks,
|
|
|
|
reinterpret_cast<const char *>(data), datalen);
|
|
|
|
|
|
|
|
auto htperr = HTTP_PARSER_ERRNO(&response_htp_);
|
|
|
|
|
|
|
|
if (htperr != HPE_OK) {
|
2016-02-07 08:52:40 +01:00
|
|
|
// Handling early return (in other words, response was hijacked by
|
|
|
|
// mruby scripting).
|
2016-02-06 17:07:44 +01:00
|
|
|
if (downstream_->get_response_state() == Downstream::MSG_COMPLETE) {
|
|
|
|
return SHRPX_ERR_DCONN_CANCELED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
DCLOG(INFO, this) << "HTTP parser failure: "
|
|
|
|
<< "(" << http_errno_name(htperr) << ") "
|
|
|
|
<< http_errno_description(htperr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (downstream_->get_upgraded()) {
|
|
|
|
if (nproc < datalen) {
|
|
|
|
// Data from data + nproc are for upgraded protocol.
|
|
|
|
rv = downstream_->get_upstream()->on_downstream_body(
|
|
|
|
downstream_, data + nproc, datalen - nproc, true);
|
|
|
|
if (rv != 0) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (downstream_->response_buf_full()) {
|
|
|
|
downstream_->pause_read(SHRPX_NO_BUFFER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (downstream_->response_buf_full()) {
|
|
|
|
downstream_->pause_read(SHRPX_NO_BUFFER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-02-06 11:50:21 +01:00
|
|
|
int HttpDownstreamConnection::connected() {
|
2016-02-21 06:53:06 +01:00
|
|
|
auto connect_blocker = addr_->connect_blocker;
|
2015-01-23 15:00:18 +01:00
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
if (!util::check_socket_connected(conn_.fd)) {
|
|
|
|
conn_.wlimit.stopw();
|
2015-01-22 13:13:34 +01:00
|
|
|
|
2015-01-20 15:26:09 +01:00
|
|
|
if (LOG_ENABLED(INFO)) {
|
2016-02-21 08:11:50 +01:00
|
|
|
DCLOG(INFO, this) << "Backend connect failed; addr="
|
|
|
|
<< util::to_numeric_addr(&addr_->addr);
|
2015-01-20 15:26:09 +01:00
|
|
|
}
|
2015-03-10 15:21:48 +01:00
|
|
|
|
2016-02-21 06:53:06 +01:00
|
|
|
connect_blocker->on_failure();
|
|
|
|
|
2015-07-15 12:46:48 +02:00
|
|
|
downstream_->set_request_state(Downstream::CONNECT_FAIL);
|
|
|
|
|
2015-01-05 08:14:10 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-02-06 11:50:21 +01:00
|
|
|
if (LOG_ENABLED(INFO)) {
|
2016-02-21 08:11:50 +01:00
|
|
|
DCLOG(INFO, this) << "Connected to downstream host";
|
2016-02-06 11:50:21 +01:00
|
|
|
}
|
|
|
|
|
2015-01-23 15:00:18 +01:00
|
|
|
connect_blocker->on_success();
|
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
conn_.rlimit.startw();
|
2015-07-26 18:18:52 +02:00
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
ev_set_cb(&conn_.wev, writecb);
|
2015-01-05 08:14:10 +01:00
|
|
|
|
2016-02-06 11:50:21 +01:00
|
|
|
if (conn_.tls.ssl) {
|
|
|
|
do_read_ = &HttpDownstreamConnection::tls_handshake;
|
|
|
|
do_write_ = &HttpDownstreamConnection::tls_handshake;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-02-06 17:07:44 +01:00
|
|
|
do_read_ = &HttpDownstreamConnection::read_clear;
|
|
|
|
do_write_ = &HttpDownstreamConnection::write_clear;
|
2016-02-06 11:50:21 +01:00
|
|
|
|
2015-01-05 08:14:10 +01:00
|
|
|
return 0;
|
2013-08-03 11:51:01 +02:00
|
|
|
}
|
|
|
|
|
2016-02-06 11:50:21 +01:00
|
|
|
int HttpDownstreamConnection::on_read() { return do_read_(*this); }
|
|
|
|
|
|
|
|
int HttpDownstreamConnection::on_write() { return do_write_(*this); }
|
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
void HttpDownstreamConnection::on_upstream_change(Upstream *upstream) {}
|
|
|
|
|
2015-10-28 15:26:41 +01:00
|
|
|
void HttpDownstreamConnection::signal_write() {
|
|
|
|
ev_feed_event(conn_.loop, &conn_.wev, EV_WRITE);
|
|
|
|
}
|
2014-09-18 16:19:28 +02:00
|
|
|
|
2015-07-09 19:52:11 +02:00
|
|
|
size_t HttpDownstreamConnection::get_group() const { return group_; }
|
|
|
|
|
2016-02-06 11:50:21 +01:00
|
|
|
int HttpDownstreamConnection::noop() { return 0; }
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
} // namespace shrpx
|