2012-06-05 18:26:04 +02:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2012-06-05 18:26:04 +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_WORKER_H
|
|
|
|
#define SHRPX_WORKER_H
|
|
|
|
|
|
|
|
#include "shrpx.h"
|
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
#include <mutex>
|
2015-03-10 15:11:22 +01:00
|
|
|
#include <vector>
|
2014-12-27 18:59:06 +01:00
|
|
|
#include <thread>
|
|
|
|
#ifndef NOTHREADS
|
|
|
|
#include <future>
|
|
|
|
#endif // NOTHREADS
|
|
|
|
|
2012-06-05 18:26:04 +02:00
|
|
|
#include <openssl/ssl.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
#include <ev.h>
|
|
|
|
|
|
|
|
#include "shrpx_config.h"
|
|
|
|
#include "shrpx_downstream_connection_pool.h"
|
2015-04-07 15:13:01 +02:00
|
|
|
#include "memchunk.h"
|
|
|
|
|
|
|
|
using namespace nghttp2;
|
2012-07-14 16:24:03 +02:00
|
|
|
|
2012-06-05 18:26:04 +02:00
|
|
|
namespace shrpx {
|
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
class Http2Session;
|
|
|
|
class ConnectBlocker;
|
|
|
|
|
2015-01-12 16:18:27 +01:00
|
|
|
namespace ssl {
|
2015-02-02 14:47:12 +01:00
|
|
|
class CertLookupTree;
|
2015-01-12 16:18:27 +01:00
|
|
|
} // namespace ssl
|
|
|
|
|
2014-06-26 15:55:22 +02:00
|
|
|
struct WorkerStat {
|
2014-12-06 10:31:46 +01:00
|
|
|
WorkerStat() : num_connections(0), next_downstream(0) {}
|
2014-06-26 15:55:22 +02:00
|
|
|
|
|
|
|
size_t num_connections;
|
2014-12-06 10:31:46 +01:00
|
|
|
// Next downstream index in Config::downstream_addrs. For HTTP/2
|
|
|
|
// downstream connections, this is always 0. For HTTP/1, this is
|
|
|
|
// used as load balancing.
|
|
|
|
size_t next_downstream;
|
2014-06-26 15:55:22 +02:00
|
|
|
};
|
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
enum WorkerEventType {
|
|
|
|
NEW_CONNECTION = 0x01,
|
|
|
|
REOPEN_LOG = 0x02,
|
|
|
|
GRACEFUL_SHUTDOWN = 0x03,
|
2015-01-08 13:15:45 +01:00
|
|
|
RENEW_TICKET_KEYS = 0x04,
|
2014-12-27 18:59:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct WorkerEvent {
|
|
|
|
WorkerEventType type;
|
2015-01-08 13:15:45 +01:00
|
|
|
struct {
|
|
|
|
sockaddr_union client_addr;
|
|
|
|
size_t client_addrlen;
|
|
|
|
int client_fd;
|
2014-12-27 18:59:06 +01:00
|
|
|
};
|
2015-01-08 13:15:45 +01:00
|
|
|
std::shared_ptr<TicketKeys> ticket_keys;
|
2014-12-27 18:59:06 +01:00
|
|
|
};
|
|
|
|
|
2012-06-05 18:26:04 +02:00
|
|
|
class Worker {
|
|
|
|
public:
|
2015-02-11 11:18:41 +01:00
|
|
|
Worker(struct ev_loop *loop, SSL_CTX *sv_ssl_ctx, SSL_CTX *cl_ssl_ctx,
|
2015-01-12 16:18:27 +01:00
|
|
|
ssl::CertLookupTree *cert_tree,
|
2015-01-08 13:15:45 +01:00
|
|
|
const std::shared_ptr<TicketKeys> &ticket_keys);
|
2012-06-05 18:26:04 +02:00
|
|
|
~Worker();
|
2015-02-11 11:18:41 +01:00
|
|
|
void run_async();
|
2014-12-27 18:59:06 +01:00
|
|
|
void wait();
|
|
|
|
void process_events();
|
|
|
|
void send(const WorkerEvent &event);
|
2014-11-27 15:39:04 +01:00
|
|
|
|
2015-02-11 11:18:41 +01:00
|
|
|
ssl::CertLookupTree *get_cert_lookup_tree() const;
|
|
|
|
const std::shared_ptr<TicketKeys> &get_ticket_keys() const;
|
|
|
|
void set_ticket_keys(std::shared_ptr<TicketKeys> ticket_keys);
|
|
|
|
WorkerStat *get_worker_stat();
|
|
|
|
DownstreamConnectionPool *get_dconn_pool();
|
2015-03-10 15:11:22 +01:00
|
|
|
Http2Session *next_http2_session();
|
|
|
|
ConnectBlocker *get_connect_blocker() const;
|
2015-02-11 11:18:41 +01:00
|
|
|
struct ev_loop *get_loop() const;
|
|
|
|
SSL_CTX *get_sv_ssl_ctx() const;
|
2015-03-10 13:54:29 +01:00
|
|
|
SSL_CTX *get_cl_ssl_ctx() const;
|
2015-02-11 11:18:41 +01:00
|
|
|
|
2015-02-25 14:53:23 +01:00
|
|
|
void set_graceful_shutdown(bool f);
|
|
|
|
bool get_graceful_shutdown() const;
|
|
|
|
|
2015-04-07 15:13:01 +02:00
|
|
|
MemchunkPool *get_mcpool();
|
2015-04-08 06:43:57 +02:00
|
|
|
void schedule_clear_mcpool();
|
2015-04-07 15:13:01 +02:00
|
|
|
|
2012-06-05 18:26:04 +02:00
|
|
|
private:
|
2015-03-10 15:11:22 +01:00
|
|
|
std::vector<std::unique_ptr<Http2Session>> http2sessions_;
|
|
|
|
size_t next_http2session_;
|
2014-12-27 18:59:06 +01:00
|
|
|
#ifndef NOTHREADS
|
|
|
|
std::future<void> fut_;
|
|
|
|
#endif // NOTHREADS
|
|
|
|
std::mutex m_;
|
2015-06-12 14:28:24 +02:00
|
|
|
std::vector<WorkerEvent> q_;
|
2014-12-27 18:59:06 +01:00
|
|
|
ev_async w_;
|
2015-04-08 06:43:57 +02:00
|
|
|
ev_timer mcpool_clear_timer_;
|
2015-04-07 15:13:01 +02:00
|
|
|
MemchunkPool mcpool_;
|
2014-12-27 18:59:06 +01:00
|
|
|
DownstreamConnectionPool dconn_pool_;
|
2015-02-11 11:18:41 +01:00
|
|
|
WorkerStat worker_stat_;
|
2014-12-27 18:59:06 +01:00
|
|
|
struct ev_loop *loop_;
|
2015-02-11 11:18:41 +01:00
|
|
|
|
|
|
|
// Following fields are shared across threads if
|
|
|
|
// get_config()->tls_ctx_per_worker == true.
|
2013-02-07 13:13:36 +01:00
|
|
|
SSL_CTX *sv_ssl_ctx_;
|
|
|
|
SSL_CTX *cl_ssl_ctx_;
|
2015-02-11 11:18:41 +01:00
|
|
|
ssl::CertLookupTree *cert_tree_;
|
|
|
|
|
|
|
|
std::shared_ptr<TicketKeys> ticket_keys_;
|
2015-03-10 15:11:22 +01:00
|
|
|
std::unique_ptr<ConnectBlocker> connect_blocker_;
|
2015-02-25 14:53:23 +01:00
|
|
|
|
|
|
|
bool graceful_shutdown_;
|
2012-06-05 18:26:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace shrpx
|
|
|
|
|
|
|
|
#endif // SHRPX_WORKER_H
|