2012-06-04 16:48:31 +02:00
|
|
|
/*
|
2013-07-12 17:19:03 +02:00
|
|
|
* nghttp2 - HTTP/2.0 C Library
|
2012-06-04 16:48:31 +02:00
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#ifndef SHRPX_CLIENT_HANDLER_H
|
|
|
|
#define SHRPX_CLIENT_HANDLER_H
|
|
|
|
|
|
|
|
#include "shrpx.h"
|
|
|
|
|
2012-06-09 16:14:00 +02:00
|
|
|
#include <set>
|
2013-09-23 17:02:02 +02:00
|
|
|
#include <memory>
|
2012-06-09 16:14:00 +02:00
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
#include <event.h>
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
|
|
|
|
namespace shrpx {
|
|
|
|
|
|
|
|
class Upstream;
|
2012-06-09 16:14:00 +02:00
|
|
|
class DownstreamConnection;
|
2013-11-04 09:53:57 +01:00
|
|
|
class Http2Session;
|
2013-08-03 11:51:01 +02:00
|
|
|
class HttpsUpstream;
|
2012-06-04 16:48:31 +02:00
|
|
|
|
|
|
|
class ClientHandler {
|
|
|
|
public:
|
2012-11-18 13:23:13 +01:00
|
|
|
ClientHandler(bufferevent *bev, int fd, SSL *ssl, const char *ipaddr);
|
2012-06-04 16:48:31 +02:00
|
|
|
~ClientHandler();
|
|
|
|
int on_read();
|
|
|
|
int on_event();
|
|
|
|
bufferevent* get_bev() const;
|
|
|
|
event_base* get_evbase() const;
|
|
|
|
void set_bev_cb(bufferevent_data_cb readcb, bufferevent_data_cb writecb,
|
|
|
|
bufferevent_event_cb eventcb);
|
|
|
|
void set_upstream_timeouts(const timeval *read_timeout,
|
|
|
|
const timeval *write_timeout);
|
|
|
|
int validate_next_proto();
|
|
|
|
const std::string& get_ipaddr() const;
|
|
|
|
bool get_should_close_after_write() const;
|
|
|
|
void set_should_close_after_write(bool f);
|
|
|
|
Upstream* get_upstream();
|
2012-06-09 16:14:00 +02:00
|
|
|
|
|
|
|
void pool_downstream_connection(DownstreamConnection *dconn);
|
|
|
|
void remove_downstream_connection(DownstreamConnection *dconn);
|
|
|
|
DownstreamConnection* get_downstream_connection();
|
2012-07-11 09:20:16 +02:00
|
|
|
size_t get_pending_write_length();
|
2012-07-14 16:24:03 +02:00
|
|
|
SSL* get_ssl() const;
|
2013-11-04 09:53:57 +01:00
|
|
|
void set_http2_session(Http2Session *http2session);
|
|
|
|
Http2Session* get_http2_session() const;
|
2013-07-26 14:35:14 +02:00
|
|
|
size_t get_left_connhd_len() const;
|
|
|
|
void set_left_connhd_len(size_t left);
|
2013-08-03 11:51:01 +02:00
|
|
|
// Call this function when HTTP/2.0 connection header is received at
|
|
|
|
// the start of the connection.
|
|
|
|
void direct_http2_upgrade();
|
|
|
|
// Performs HTTP/2.0 Upgrade from the connection managed by
|
|
|
|
// |http|. If this function fails, the connection must be
|
|
|
|
// terminated. This function returns 0 if it succeeds, or -1.
|
|
|
|
int perform_http2_upgrade(HttpsUpstream *http);
|
|
|
|
bool get_http2_upgrade_allowed() const;
|
2012-06-04 16:48:31 +02:00
|
|
|
private:
|
|
|
|
bufferevent *bev_;
|
2012-11-18 13:23:13 +01:00
|
|
|
int fd_;
|
2012-06-04 16:48:31 +02:00
|
|
|
SSL *ssl_;
|
2013-09-23 17:02:02 +02:00
|
|
|
std::unique_ptr<Upstream> upstream_;
|
2012-06-04 16:48:31 +02:00
|
|
|
std::string ipaddr_;
|
|
|
|
bool should_close_after_write_;
|
2012-06-09 16:14:00 +02:00
|
|
|
std::set<DownstreamConnection*> dconn_pool_;
|
2013-11-04 09:53:57 +01:00
|
|
|
// Shared HTTP2 session for each thread. NULL if backend is not
|
2013-02-07 13:13:36 +01:00
|
|
|
// SPDY. Not deleted by this object.
|
2013-11-04 09:53:57 +01:00
|
|
|
Http2Session *http2session_;
|
2013-07-26 14:35:14 +02:00
|
|
|
// The number of bytes of HTTP/2.0 client connection header to read
|
|
|
|
size_t left_connhd_len_;
|
2012-06-04 16:48:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace shrpx
|
|
|
|
|
|
|
|
#endif // SHRPX_CLIENT_HANDLER_H
|