214 lines
5.5 KiB
C++
214 lines
5.5 KiB
C++
|
/*
|
||
|
* Spdylay - SPDY Library
|
||
|
*
|
||
|
* Copyright (c) 2012 Tatsuhiro Tsujikawa
|
||
|
*
|
||
|
* Permission is hereby granted, free of charge, to any person obtaining
|
||
|
* a copy of this software and associated documentation files (the
|
||
|
* "Software"), to deal in the Software without restriction, including
|
||
|
* without limitation the rights to use, copy, modify, merge, publish,
|
||
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
||
|
* permit persons to whom the Software is furnished to do so, subject to
|
||
|
* the following conditions:
|
||
|
*
|
||
|
* The above copyright notice and this permission notice shall be
|
||
|
* included in all copies or substantial portions of the Software.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
*/
|
||
|
#include "shrpx_client_handler.h"
|
||
|
|
||
|
#include "shrpx_upstream.h"
|
||
|
#include "shrpx_spdy_upstream.h"
|
||
|
#include "shrpx_https_upstream.h"
|
||
|
#include "shrpx_config.h"
|
||
|
|
||
|
namespace shrpx {
|
||
|
|
||
|
namespace {
|
||
|
void upstream_readcb(bufferevent *bev, void *arg)
|
||
|
{
|
||
|
ClientHandler *handler = reinterpret_cast<ClientHandler*>(arg);
|
||
|
int rv = handler->on_read();
|
||
|
if(rv != 0) {
|
||
|
if(ENABLE_LOG) {
|
||
|
LOG(INFO) << "<upstream> Read operation (application level) failure";
|
||
|
}
|
||
|
delete handler;
|
||
|
}
|
||
|
}
|
||
|
} // namespace
|
||
|
|
||
|
namespace {
|
||
|
void upstream_writecb(bufferevent *bev, void *arg)
|
||
|
{
|
||
|
if(ENABLE_LOG) {
|
||
|
LOG(INFO) << "<upstream> upstream_writecb";
|
||
|
}
|
||
|
ClientHandler *handler = reinterpret_cast<ClientHandler*>(arg);
|
||
|
if(handler->get_should_close_after_write()) {
|
||
|
delete handler;
|
||
|
}
|
||
|
}
|
||
|
} // namespace
|
||
|
|
||
|
namespace {
|
||
|
void upstream_eventcb(bufferevent *bev, short events, void *arg)
|
||
|
{
|
||
|
ClientHandler *handler = reinterpret_cast<ClientHandler*>(arg);
|
||
|
bool finish = false;
|
||
|
if(events & BEV_EVENT_EOF) {
|
||
|
if(ENABLE_LOG) {
|
||
|
LOG(INFO) << "<upstream> SSL/TLS handshake EOF";
|
||
|
}
|
||
|
finish = true;
|
||
|
}
|
||
|
if(events & BEV_EVENT_ERROR) {
|
||
|
if(ENABLE_LOG) {
|
||
|
LOG(INFO) << "<upstream> SSL/TLS network error";
|
||
|
}
|
||
|
finish = true;
|
||
|
}
|
||
|
if(events & BEV_EVENT_TIMEOUT) {
|
||
|
if(ENABLE_LOG) {
|
||
|
LOG(INFO) << "SPDY upstream SSL/TLS time out";
|
||
|
}
|
||
|
finish = true;
|
||
|
}
|
||
|
if(finish) {
|
||
|
delete handler;
|
||
|
} else {
|
||
|
if(events & BEV_EVENT_CONNECTED) {
|
||
|
if(ENABLE_LOG) {
|
||
|
LOG(INFO) << "Connected Handler "
|
||
|
<< handler;
|
||
|
}
|
||
|
handler->set_bev_cb(upstream_readcb, upstream_writecb, upstream_eventcb);
|
||
|
handler->validate_next_proto();
|
||
|
// At this point, input buffer is already filled with some
|
||
|
// bytes. The read callback is not called until new data
|
||
|
// come. So consume input buffer here.
|
||
|
handler->get_upstream()->on_read();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
} // namespace
|
||
|
|
||
|
ClientHandler::ClientHandler(bufferevent *bev, SSL *ssl, const char *ipaddr)
|
||
|
: bev_(bev),
|
||
|
ssl_(ssl),
|
||
|
upstream_(0),
|
||
|
ipaddr_(ipaddr),
|
||
|
should_close_after_write_(false)
|
||
|
{
|
||
|
bufferevent_enable(bev_, EV_READ | EV_WRITE);
|
||
|
set_upstream_timeouts(&get_config()->upstream_read_timeout,
|
||
|
&get_config()->upstream_write_timeout);
|
||
|
set_bev_cb(0, upstream_writecb, upstream_eventcb);
|
||
|
}
|
||
|
|
||
|
ClientHandler::~ClientHandler()
|
||
|
{
|
||
|
if(ENABLE_LOG) {
|
||
|
LOG(INFO) << "Deleting ClientHandler " << this;
|
||
|
}
|
||
|
int fd = SSL_get_fd(ssl_);
|
||
|
SSL_shutdown(ssl_);
|
||
|
bufferevent_disable(bev_, EV_READ | EV_WRITE);
|
||
|
bufferevent_free(bev_);
|
||
|
SSL_free(ssl_);
|
||
|
shutdown(fd, SHUT_WR);
|
||
|
close(fd);
|
||
|
delete upstream_;
|
||
|
if(ENABLE_LOG) {
|
||
|
LOG(INFO) << "Deleted";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Upstream* ClientHandler::get_upstream()
|
||
|
{
|
||
|
return upstream_;
|
||
|
}
|
||
|
|
||
|
bufferevent* ClientHandler::get_bev() const
|
||
|
{
|
||
|
return bev_;
|
||
|
}
|
||
|
|
||
|
event_base* ClientHandler::get_evbase() const
|
||
|
{
|
||
|
return bufferevent_get_base(bev_);
|
||
|
}
|
||
|
|
||
|
void ClientHandler::set_bev_cb
|
||
|
(bufferevent_data_cb readcb, bufferevent_data_cb writecb,
|
||
|
bufferevent_event_cb eventcb)
|
||
|
{
|
||
|
bufferevent_setcb(bev_, readcb, writecb, eventcb, this);
|
||
|
}
|
||
|
|
||
|
void ClientHandler::set_upstream_timeouts(const timeval *read_timeout,
|
||
|
const timeval *write_timeout)
|
||
|
{
|
||
|
bufferevent_set_timeouts(bev_, read_timeout, write_timeout);
|
||
|
}
|
||
|
|
||
|
int ClientHandler::validate_next_proto()
|
||
|
{
|
||
|
const unsigned char *next_proto = 0;
|
||
|
unsigned int next_proto_len;
|
||
|
SSL_get0_next_proto_negotiated(ssl_, &next_proto, &next_proto_len);
|
||
|
if(next_proto) {
|
||
|
std::string proto(next_proto, next_proto+next_proto_len);
|
||
|
if(ENABLE_LOG) {
|
||
|
LOG(INFO) << "<upstream> The negotiated next protocol: " << proto;
|
||
|
}
|
||
|
uint16_t version = spdylay_npn_get_version(next_proto, next_proto_len);
|
||
|
if(version) {
|
||
|
SpdyUpstream *spdy_upstream = new SpdyUpstream(version, this);
|
||
|
upstream_ = spdy_upstream;
|
||
|
return 0;
|
||
|
}
|
||
|
} else {
|
||
|
if(ENABLE_LOG) {
|
||
|
LOG(INFO) << "<upstream> No proto negotiated";
|
||
|
}
|
||
|
}
|
||
|
HttpsUpstream *https_upstream = new HttpsUpstream(this);
|
||
|
upstream_ = https_upstream;
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int ClientHandler::on_read()
|
||
|
{
|
||
|
return upstream_->on_read();
|
||
|
}
|
||
|
|
||
|
int ClientHandler::on_event()
|
||
|
{
|
||
|
return upstream_->on_event();
|
||
|
}
|
||
|
|
||
|
const std::string& ClientHandler::get_ipaddr() const
|
||
|
{
|
||
|
return ipaddr_;
|
||
|
}
|
||
|
|
||
|
bool ClientHandler::get_should_close_after_write() const
|
||
|
{
|
||
|
return should_close_after_write_;
|
||
|
}
|
||
|
|
||
|
void ClientHandler::set_should_close_after_write(bool f)
|
||
|
{
|
||
|
should_close_after_write_ = f;
|
||
|
}
|
||
|
|
||
|
} // namespace shrpx
|