2018-08-21 16:11:50 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <openssl/ossl_typ.h>
|
|
|
|
|
#include <event2/event.h>
|
|
|
|
|
|
|
|
|
|
#include <tfe_stream.h>
|
|
|
|
|
#include <tfe_stat.h>
|
2018-08-27 21:10:45 +08:00
|
|
|
#include <tfe_future.h>
|
|
|
|
|
#include <proxy.h>
|
2018-08-21 16:11:50 +08:00
|
|
|
|
|
|
|
|
struct tfe_thread_ctx
|
|
|
|
|
{
|
|
|
|
|
pthread_t thr;
|
|
|
|
|
unsigned int thread_id;
|
2018-08-30 15:53:41 +08:00
|
|
|
unsigned int load;
|
2018-08-21 16:11:50 +08:00
|
|
|
|
|
|
|
|
struct event_base * evbase;
|
|
|
|
|
unsigned char running;
|
|
|
|
|
|
|
|
|
|
struct tfe_stats stat;
|
|
|
|
|
struct cert_mgr * cert_mgr;
|
|
|
|
|
|
|
|
|
|
unsigned int nr_modules;
|
|
|
|
|
const struct tfe_plugin * modules;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum tfe_plugin_state
|
|
|
|
|
{
|
|
|
|
|
PLUG_STATE_READONLY,
|
|
|
|
|
PLUG_STATE_PREEPTION,
|
|
|
|
|
PLUG_STATE_DETACHED
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct plugin_ctx
|
|
|
|
|
{
|
|
|
|
|
enum tfe_plugin_state state;
|
|
|
|
|
void * pme;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct tfe_stream_write_ctx
|
|
|
|
|
{
|
|
|
|
|
struct tfe_stream_private * _stream;
|
|
|
|
|
enum tfe_conn_dir dir;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct tfe_conn_private
|
|
|
|
|
{
|
|
|
|
|
evutil_socket_t fd;
|
|
|
|
|
struct bufferevent * bev;
|
|
|
|
|
uint8_t on_writing;
|
|
|
|
|
uint8_t closed;
|
|
|
|
|
uint8_t need_shutdown;
|
|
|
|
|
struct tfe_stream_write_ctx w_ctx;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct tfe_stream_private
|
|
|
|
|
{
|
|
|
|
|
struct tfe_stream head;
|
2018-08-27 21:10:45 +08:00
|
|
|
struct tfe_proxy * proxy_ref;
|
|
|
|
|
struct tfe_thread_ctx * thread_ref;
|
2018-08-23 11:23:05 +08:00
|
|
|
|
2018-08-21 16:11:50 +08:00
|
|
|
enum tfe_session_proto session_type;
|
2018-08-27 21:10:45 +08:00
|
|
|
struct tfe_conn_private * conn_upstream;
|
|
|
|
|
struct tfe_conn_private * conn_downstream;
|
2018-08-21 16:11:50 +08:00
|
|
|
|
2018-08-27 21:10:45 +08:00
|
|
|
struct
|
2018-08-21 16:11:50 +08:00
|
|
|
{
|
2018-08-27 21:10:45 +08:00
|
|
|
struct ssl_mgr * ssl_mgr;
|
|
|
|
|
struct ssl_stream * ssl_downstream;
|
|
|
|
|
struct ssl_stream * ssl_upstream;
|
2018-08-21 16:11:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
uint8_t is_plugin_opened;
|
|
|
|
|
int calling_idx;
|
2018-08-23 11:23:05 +08:00
|
|
|
|
2018-08-21 16:11:50 +08:00
|
|
|
size_t forward_bytes;
|
|
|
|
|
size_t defere_bytes;
|
|
|
|
|
size_t drop_bytes;
|
2018-08-23 11:23:05 +08:00
|
|
|
|
2018-08-21 16:11:50 +08:00
|
|
|
enum tfe_app_proto app_proto;
|
|
|
|
|
int plugin_num;
|
2018-08-23 11:23:05 +08:00
|
|
|
|
2018-08-21 16:11:50 +08:00
|
|
|
struct plugin_ctx * plug_ctx;
|
2018-08-30 15:53:41 +08:00
|
|
|
|
|
|
|
|
/* TCP forward without scan or decode when the passthough is set */
|
|
|
|
|
bool passthough;
|
2018-08-21 16:11:50 +08:00
|
|
|
|
2018-08-27 21:10:45 +08:00
|
|
|
/* For defer connection setup */
|
|
|
|
|
evutil_socket_t defer_fd_downstream;
|
|
|
|
|
evutil_socket_t defer_fd_upstream;
|
2018-08-21 16:11:50 +08:00
|
|
|
|
2018-08-27 21:10:45 +08:00
|
|
|
/* ASYNC UPSTREAM */
|
|
|
|
|
future * future_upstream_create;
|
|
|
|
|
/* ASYNC DOWNSTREAM */
|
|
|
|
|
future * future_downstream_create;
|
2018-08-21 16:11:50 +08:00
|
|
|
};
|
|
|
|
|
|
2018-08-27 21:10:45 +08:00
|
|
|
static inline void * __STREAM_LOGGER(struct tfe_stream_private * _stream)
|
|
|
|
|
{
|
2018-08-30 15:53:41 +08:00
|
|
|
return _stream->proxy_ref->logger;
|
2018-08-27 21:10:45 +08:00
|
|
|
}
|