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"
|
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"
|
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();
|
|
|
|
|
|
|
|
// Do this so that dconn is not pooled
|
|
|
|
downstream->set_response_connection_close(true);
|
|
|
|
|
|
|
|
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();
|
|
|
|
if (dconn->on_connect() != 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(
|
2014-12-27 18:59:06 +01:00
|
|
|
DownstreamConnectionPool *dconn_pool, struct ev_loop *loop)
|
2015-02-04 13:15:58 +01:00
|
|
|
: DownstreamConnection(dconn_pool),
|
|
|
|
conn_(loop, -1, nullptr, get_config()->downstream_write_timeout,
|
|
|
|
get_config()->downstream_read_timeout, 0, 0, 0, 0, connectcb,
|
|
|
|
readcb, timeoutcb, this),
|
|
|
|
ioctrl_(&conn_.rlimit), response_htp_{0}, addr_idx_(0) {}
|
2014-11-27 15:39:04 +01:00
|
|
|
|
|
|
|
HttpDownstreamConnection::~HttpDownstreamConnection() {
|
2012-11-20 17:29:39 +01:00
|
|
|
// Downstream and DownstreamConnection may be deleted
|
|
|
|
// asynchronously.
|
2014-11-27 15:39:04 +01:00
|
|
|
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
|
|
|
|
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
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
if (conn_.fd == -1) {
|
2014-08-19 16:36:04 +02:00
|
|
|
auto connect_blocker = client_handler_->get_http1_connect_blocker();
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (connect_blocker->blocked()) {
|
2015-01-22 16:15:38 +01:00
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
DCLOG(INFO, this)
|
|
|
|
<< "Downstream connection was blocked by connect_blocker";
|
|
|
|
}
|
2014-08-19 16:36:04 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-02-11 11:18:41 +01:00
|
|
|
auto worker = client_handler_->get_worker();
|
|
|
|
auto worker_stat = worker->get_worker_stat();
|
2014-12-27 18:59:06 +01:00
|
|
|
auto end = worker_stat->next_downstream;
|
2014-12-06 10:31:46 +01:00
|
|
|
for (;;) {
|
|
|
|
auto i = worker_stat->next_downstream;
|
|
|
|
++worker_stat->next_downstream;
|
|
|
|
worker_stat->next_downstream %= get_config()->downstream_addrs.size();
|
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
conn_.fd = util::create_nonblock_socket(
|
2014-12-27 18:59:06 +01:00
|
|
|
get_config()->downstream_addrs[i].addr.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;
|
|
|
|
DCLOG(WARN, this) << "socket() failed; errno=" << error;
|
|
|
|
|
|
|
|
connect_blocker->on_failure();
|
|
|
|
|
|
|
|
return SHRPX_ERR_NETWORK;
|
|
|
|
}
|
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
int rv;
|
2015-02-04 13:15:58 +01:00
|
|
|
rv = connect(conn_.fd, const_cast<sockaddr *>(
|
|
|
|
&get_config()->downstream_addrs[i].addr.sa),
|
2014-12-27 18:59:06 +01:00
|
|
|
get_config()->downstream_addrs[i].addrlen);
|
|
|
|
if (rv != 0 && errno != EINPROGRESS) {
|
2014-12-06 10:31:46 +01:00
|
|
|
auto error = errno;
|
2014-12-27 18:59:06 +01:00
|
|
|
DCLOG(WARN, this) << "connect() failed; 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
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
if (end == worker_stat->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";
|
|
|
|
}
|
|
|
|
|
2015-02-03 17:15:56 +01:00
|
|
|
addr_idx_ = i;
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
ev_set_cb(&conn_.rev, readcb);
|
2014-09-18 16:19:28 +02:00
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
conn_.rt.repeat = get_config()->downstream_read_timeout;
|
|
|
|
ev_timer_again(conn_.loop, &conn_.rt);
|
2014-12-27 18:59:06 +01:00
|
|
|
// TODO we should have timeout for connection establishment
|
2015-02-04 13:15:58 +01:00
|
|
|
ev_timer_again(conn_.loop, &conn_.wt);
|
2014-09-18 16:19:28 +02:00
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
int HttpDownstreamConnection::push_request_headers() {
|
2015-02-03 17:15:56 +01:00
|
|
|
const char *authority = nullptr, *host = nullptr;
|
2015-02-03 17:41:20 +01:00
|
|
|
if (!get_config()->no_host_rewrite && !get_config()->http2_proxy &&
|
|
|
|
!get_config()->client_proxy) {
|
2015-02-03 17:15:56 +01:00
|
|
|
if (!downstream_->get_request_http2_authority().empty()) {
|
|
|
|
authority = get_config()->downstream_addrs[addr_idx_].hostport.get();
|
|
|
|
}
|
|
|
|
if (downstream_->get_request_header(http2::HD_HOST)) {
|
|
|
|
host = get_config()->downstream_addrs[addr_idx_].hostport.get();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!downstream_->get_request_http2_authority().empty()) {
|
|
|
|
authority = downstream_->get_request_http2_authority().c_str();
|
|
|
|
}
|
|
|
|
auto h = downstream_->get_request_header(http2::HD_HOST);
|
|
|
|
if (h) {
|
|
|
|
host = h->value.c_str();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!authority && !host) {
|
|
|
|
// upstream is HTTP/1.0. We use backend server's host
|
|
|
|
// nonetheless.
|
|
|
|
host = get_config()->downstream_addrs[addr_idx_].hostport.get();
|
|
|
|
}
|
|
|
|
|
2015-02-08 11:41:45 +01:00
|
|
|
if (authority) {
|
|
|
|
downstream_->set_request_downstream_host(authority);
|
|
|
|
} else {
|
|
|
|
downstream_->set_request_downstream_host(host);
|
|
|
|
}
|
|
|
|
|
2013-11-16 13:15:55 +01:00
|
|
|
downstream_->assemble_request_cookie();
|
2014-11-18 16:56:44 +01:00
|
|
|
|
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 += " ";
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream_->get_request_method() == "CONNECT") {
|
2015-02-03 17:15:56 +01:00
|
|
|
if (authority) {
|
|
|
|
hdrs += authority;
|
2013-10-25 14:50:56 +02:00
|
|
|
} else {
|
|
|
|
hdrs += downstream_->get_request_path();
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
} else if (get_config()->http2_proxy &&
|
2015-02-03 17:15:56 +01:00
|
|
|
!downstream_->get_request_http2_scheme().empty() && authority &&
|
2014-11-27 15:39:04 +01:00
|
|
|
(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 += "://";
|
2015-02-03 17:15:56 +01:00
|
|
|
hdrs += 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
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream_->get_request_path() != "*") {
|
2014-07-25 16:40:25 +02:00
|
|
|
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();
|
|
|
|
}
|
2015-02-03 17:15:56 +01:00
|
|
|
hdrs += " HTTP/1.1\r\nHost: ";
|
|
|
|
if (authority) {
|
|
|
|
hdrs += authority;
|
|
|
|
} else {
|
|
|
|
hdrs += host;
|
2013-10-25 14:50:56 +02:00
|
|
|
}
|
2015-02-03 17:15:56 +01:00
|
|
|
hdrs += "\r\n";
|
|
|
|
|
2015-01-04 15:22:39 +01:00
|
|
|
http2::build_http1_headers_from_headers(hdrs,
|
|
|
|
downstream_->get_request_headers());
|
2013-08-27 17:09:46 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!downstream_->get_assembled_request_cookie().empty()) {
|
2013-11-16 13:15:55 +01:00
|
|
|
hdrs += "Cookie: ";
|
|
|
|
hdrs += downstream_->get_assembled_request_cookie();
|
|
|
|
hdrs += "\r\n";
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream_->get_request_method() != "CONNECT" &&
|
|
|
|
downstream_->get_request_http2_expect_body() &&
|
2015-01-04 15:22:39 +01:00
|
|
|
!downstream_->get_request_header(http2::HD_CONTENT_LENGTH)) {
|
2014-07-03 12:59:10 +02:00
|
|
|
|
|
|
|
downstream_->set_chunked_request(true);
|
|
|
|
hdrs += "Transfer-Encoding: chunked\r\n";
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream_->get_request_connection_close()) {
|
2012-11-18 13:23:13 +01:00
|
|
|
hdrs += "Connection: close\r\n";
|
|
|
|
}
|
2015-01-04 15:22:39 +01:00
|
|
|
auto xff = downstream_->get_request_header(http2::HD_X_FORWARDED_FOR);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (get_config()->add_x_forwarded_for) {
|
2012-11-18 13:23:13 +01:00
|
|
|
hdrs += "X-Forwarded-For: ";
|
2015-01-04 15:22:39 +01:00
|
|
|
if (xff && !get_config()->strip_incoming_x_forwarded_for) {
|
2014-04-03 04:22:11 +02:00
|
|
|
hdrs += (*xff).value;
|
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";
|
2015-01-04 15:22:39 +01:00
|
|
|
} else if (xff && !get_config()->strip_incoming_x_forwarded_for) {
|
2012-11-18 13:23:13 +01:00
|
|
|
hdrs += "X-Forwarded-For: ";
|
2014-04-03 04:22:11 +02:00
|
|
|
hdrs += (*xff).value;
|
2012-11-18 13:23:13 +01:00
|
|
|
hdrs += "\r\n";
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!get_config()->http2_proxy && !get_config()->client_proxy &&
|
|
|
|
downstream_->get_request_method() != "CONNECT") {
|
2012-11-18 13:23:13 +01:00
|
|
|
hdrs += "X-Forwarded-Proto: ";
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!downstream_->get_request_http2_scheme().empty()) {
|
2013-10-25 14:50:56 +02:00
|
|
|
hdrs += downstream_->get_request_http2_scheme();
|
|
|
|
hdrs += "\r\n";
|
2014-11-27 15:39:04 +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
|
|
|
}
|
|
|
|
}
|
2015-01-04 15:22:39 +01:00
|
|
|
auto expect = downstream_->get_request_header(http2::HD_EXPECT);
|
|
|
|
if (expect && !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;
|
2013-08-27 17:09:46 +02:00
|
|
|
hdrs += "\r\n";
|
|
|
|
}
|
2015-01-04 15:22:39 +01:00
|
|
|
auto via = downstream_->get_request_header(http2::HD_VIA);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (get_config()->no_via) {
|
2015-01-04 15:22:39 +01:00
|
|
|
if (via) {
|
2013-08-27 17:09:46 +02:00
|
|
|
hdrs += "Via: ";
|
2014-04-03 04:22:11 +02:00
|
|
|
hdrs += (*via).value;
|
2013-08-27 17:09:46 +02:00
|
|
|
hdrs += "\r\n";
|
|
|
|
}
|
|
|
|
} else {
|
2013-01-09 14:01:25 +01:00
|
|
|
hdrs += "Via: ";
|
2015-01-04 15:22:39 +01:00
|
|
|
if (via) {
|
2014-04-03 04:22:11 +02:00
|
|
|
hdrs += (*via).value;
|
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";
|
2014-11-27 15:39:04 +01:00
|
|
|
if (LOG_ENABLED(INFO)) {
|
2012-12-09 13:36:02 +01:00
|
|
|
const char *hdrp;
|
|
|
|
std::string nhdrs;
|
2014-11-27 15:39:04 +01: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
|
|
|
}
|
2014-12-27 18:59:06 +01:00
|
|
|
auto output = downstream_->get_request_buf();
|
|
|
|
output->append(hdrs.c_str(), hdrs.size());
|
|
|
|
|
|
|
|
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);
|
2014-12-27 18:59:06 +01:00
|
|
|
output->append(chunk_size_hex.c_str(), chunk_size_hex.size());
|
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
|
|
|
|
|
|
|
auto output = downstream_->get_request_buf();
|
2015-01-22 15:54:30 +01:00
|
|
|
output->append("0\r\n\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;
|
2012-11-20 17:29:39 +01:00
|
|
|
ioctrl_.force_resume_read();
|
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
conn_.rlimit.startw();
|
|
|
|
conn_.wlimit.stopw();
|
2014-12-27 18:59:06 +01:00
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
ev_set_cb(&conn_.rev, idle_readcb);
|
2015-01-21 13:43:49 +01:00
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
ev_timer_stop(conn_.loop, &conn_.wt);
|
2014-12-27 18:59:06 +01:00
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
conn_.rt.repeat = get_config()->downstream_idle_read_timeout;
|
|
|
|
ev_set_cb(&conn_.rt, idle_timeoutcb);
|
|
|
|
ev_timer_again(conn_.loop, &conn_.rt);
|
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) {
|
2014-12-27 18:59:06 +01:00
|
|
|
if (!downstream_->response_buf_full()) {
|
|
|
|
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();
|
|
|
|
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
|
|
|
|
2015-01-20 15:11:54 +01:00
|
|
|
if (downstream->index_response_headers() != 0) {
|
|
|
|
downstream->set_response_state(Downstream::MSG_BAD_HEADER);
|
|
|
|
return -1;
|
|
|
|
}
|
2015-01-04 15:22:39 +01:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream->get_non_final_response()) {
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream->get_upgraded()) {
|
2013-02-11 09:20:52 +01:00
|
|
|
downstream->set_response_connection_close(true);
|
|
|
|
}
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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" ||
|
2014-11-27 15:39:04 +01:00
|
|
|
(100 <= status && status <= 199) || status == 204 ||
|
|
|
|
status == 304
|
|
|
|
? 1
|
|
|
|
: 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
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);
|
2015-01-14 13:28:31 +01:00
|
|
|
if (downstream->get_response_state() != Downstream::INITIAL) {
|
|
|
|
// ignore trailers
|
|
|
|
return 0;
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream->get_response_header_key_prev()) {
|
2012-11-20 17:29:39 +01:00
|
|
|
downstream->append_last_response_header_key(data, len);
|
|
|
|
} else {
|
|
|
|
downstream->add_response_header(std::string(data, len), "");
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream->get_response_headers_sum() > Downstream::MAX_HEADERS_SUM) {
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
2014-01-27 17:17:54 +01:00
|
|
|
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 {
|
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);
|
2015-01-14 13:28:31 +01:00
|
|
|
if (downstream->get_response_state() != Downstream::INITIAL) {
|
|
|
|
// ignore trailers
|
|
|
|
return 0;
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream->get_response_header_key_prev()) {
|
2012-11-20 17:29:39 +01:00
|
|
|
downstream->set_last_response_header_value(std::string(data, len));
|
|
|
|
} else {
|
|
|
|
downstream->append_last_response_header_value(data, len);
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (downstream->get_response_headers_sum() > Downstream::MAX_HEADERS_SUM) {
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
2014-01-27 17:17:54 +01:00
|
|
|
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 {
|
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);
|
2014-07-05 11:22:40 +02:00
|
|
|
|
|
|
|
downstream->add_response_bodylen(len);
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
int HttpDownstreamConnection::on_read() {
|
2015-02-04 13:15:58 +01:00
|
|
|
ev_timer_again(conn_.loop, &conn_.rt);
|
2015-02-05 16:06:01 +01:00
|
|
|
std::array<uint8_t, 8192> 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
|
|
|
if (downstream_->get_upgraded()) {
|
2013-07-31 14:48:37 +02:00
|
|
|
// For upgraded connection, just pass data to the upstream.
|
2014-11-27 15:39:04 +01:00
|
|
|
for (;;) {
|
2015-02-05 16:06:01 +01:00
|
|
|
auto nread = conn_.read_clear(buf.data(), buf.size());
|
2014-06-01 14:01:01 +02:00
|
|
|
|
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
|
|
|
|
2015-02-05 16:06:01 +01:00
|
|
|
rv = downstream_->get_upstream()->on_downstream_body(
|
|
|
|
downstream_, buf.data(), nread, true);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (rv != 0) {
|
2014-06-01 14:01:01 +02:00
|
|
|
return rv;
|
|
|
|
}
|
2014-12-27 18:59:06 +01:00
|
|
|
|
|
|
|
if (downstream_->response_buf_full()) {
|
|
|
|
downstream_->pause_read(SHRPX_NO_BUFFER);
|
|
|
|
return 0;
|
2014-06-01 14:01:01 +02:00
|
|
|
}
|
2013-12-20 15:28:54 +01:00
|
|
|
}
|
2013-07-31 14:48:37 +02:00
|
|
|
}
|
2014-06-01 14:01:01 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
for (;;) {
|
2015-02-05 16:06:01 +01:00
|
|
|
auto nread = conn_.read_clear(buf.data(), buf.size());
|
2014-06-01 14:01:01 +02:00
|
|
|
|
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
|
|
|
|
2015-02-05 16:06:01 +01:00
|
|
|
auto nproc =
|
|
|
|
http_parser_execute(&response_htp_, &htp_hooks,
|
|
|
|
reinterpret_cast<char *>(buf.data()), nread);
|
2012-11-20 17:29:39 +01:00
|
|
|
|
2015-01-02 06:38:57 +01:00
|
|
|
if (nproc != static_cast<size_t>(nread)) {
|
2014-12-27 18:59:06 +01:00
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
DCLOG(INFO, this) << "nproc != nread";
|
|
|
|
}
|
2014-06-01 14:01:01 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto htperr = HTTP_PARSER_ERRNO(&response_htp_);
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (htperr != HPE_OK) {
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
2014-06-01 14:01:01 +02:00
|
|
|
DCLOG(INFO, this) << "HTTP parser failure: "
|
|
|
|
<< "(" << http_errno_name(htperr) << ") "
|
|
|
|
<< http_errno_description(htperr);
|
|
|
|
}
|
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (downstream_->response_buf_full()) {
|
|
|
|
downstream_->pause_read(SHRPX_NO_BUFFER);
|
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
int HttpDownstreamConnection::on_write() {
|
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();
|
|
|
|
|
2015-02-06 14:44:09 +01:00
|
|
|
std::array<struct iovec, MAX_WR_IOVCNT> iov;
|
2015-01-10 15:04:54 +01:00
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
while (input->rleft() > 0) {
|
2015-02-06 14:44:09 +01:00
|
|
|
auto iovcnt = input->riovec(iov.data(), iov.size());
|
2014-12-27 18:59:06 +01:00
|
|
|
|
2015-02-06 14:44:09 +01:00
|
|
|
auto nwrite = conn_.writev_clear(iov.data(), iovcnt);
|
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) {
|
|
|
|
upstream->resume_read(SHRPX_NO_BUFFER, downstream_,
|
|
|
|
downstream_->get_request_datalen());
|
|
|
|
}
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-05 08:14:10 +01:00
|
|
|
int HttpDownstreamConnection::on_connect() {
|
2015-01-23 15:00:18 +01:00
|
|
|
auto connect_blocker = client_handler_->get_http1_connect_blocker();
|
|
|
|
|
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)) {
|
|
|
|
DLOG(INFO, this) << "downstream connect failed";
|
|
|
|
}
|
2015-01-21 15:11:47 +01:00
|
|
|
connect_blocker->on_failure();
|
2015-01-05 08:14:10 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-01-23 15:00:18 +01:00
|
|
|
connect_blocker->on_success();
|
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
conn_.rlimit.startw();
|
|
|
|
ev_set_cb(&conn_.wev, writecb);
|
2015-01-05 08:14:10 +01:00
|
|
|
|
|
|
|
return 0;
|
2013-08-03 11:51:01 +02:00
|
|
|
}
|
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
void HttpDownstreamConnection::on_upstream_change(Upstream *upstream) {}
|
|
|
|
|
2015-02-04 13:15:58 +01:00
|
|
|
void HttpDownstreamConnection::signal_write() { conn_.wlimit.startw(); }
|
2014-09-18 16:19:28 +02:00
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
} // namespace shrpx
|