2015-04-20 18:05:11 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) Roman Arutyunyan
|
|
|
|
* Copyright (C) Nginx, Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _NGX_STREAM_H_INCLUDED_
|
|
|
|
#define _NGX_STREAM_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
|
|
|
|
#if (NGX_STREAM_SSL)
|
|
|
|
#include <ngx_stream_ssl_module.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct ngx_stream_session_s ngx_stream_session_t;
|
|
|
|
|
|
|
|
|
2016-07-04 21:37:36 +08:00
|
|
|
#include <ngx_stream_variables.h>
|
|
|
|
#include <ngx_stream_script.h>
|
2015-04-20 18:05:11 +08:00
|
|
|
#include <ngx_stream_upstream.h>
|
|
|
|
#include <ngx_stream_upstream_round_robin.h>
|
|
|
|
|
|
|
|
|
2016-08-12 01:22:23 +08:00
|
|
|
#define NGX_STREAM_OK 200
|
2016-09-07 02:28:16 +08:00
|
|
|
#define NGX_STREAM_BAD_REQUEST 400
|
2016-08-12 01:22:23 +08:00
|
|
|
#define NGX_STREAM_FORBIDDEN 403
|
|
|
|
#define NGX_STREAM_INTERNAL_SERVER_ERROR 500
|
|
|
|
#define NGX_STREAM_BAD_GATEWAY 502
|
|
|
|
#define NGX_STREAM_SERVICE_UNAVAILABLE 503
|
|
|
|
|
|
|
|
|
2015-04-20 18:05:11 +08:00
|
|
|
typedef struct {
|
2016-07-04 21:37:36 +08:00
|
|
|
void **main_conf;
|
|
|
|
void **srv_conf;
|
2015-04-20 18:05:11 +08:00
|
|
|
} ngx_stream_conf_ctx_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2016-07-04 21:37:36 +08:00
|
|
|
ngx_sockaddr_t sockaddr;
|
|
|
|
socklen_t socklen;
|
2015-04-20 18:05:11 +08:00
|
|
|
|
|
|
|
/* server ctx */
|
2016-07-04 21:37:36 +08:00
|
|
|
ngx_stream_conf_ctx_t *ctx;
|
2015-04-20 18:05:11 +08:00
|
|
|
|
2016-07-04 21:37:36 +08:00
|
|
|
unsigned bind:1;
|
|
|
|
unsigned wildcard:1;
|
2015-04-20 18:05:11 +08:00
|
|
|
#if (NGX_STREAM_SSL)
|
2016-07-04 21:37:36 +08:00
|
|
|
unsigned ssl:1;
|
2015-04-20 18:05:11 +08:00
|
|
|
#endif
|
|
|
|
#if (NGX_HAVE_INET6 && defined IPV6_V6ONLY)
|
2016-07-04 21:37:36 +08:00
|
|
|
unsigned ipv6only:1;
|
2015-05-20 20:51:56 +08:00
|
|
|
#endif
|
|
|
|
#if (NGX_HAVE_REUSEPORT)
|
2016-07-04 21:37:36 +08:00
|
|
|
unsigned reuseport:1;
|
2015-04-20 18:05:11 +08:00
|
|
|
#endif
|
2016-07-04 21:37:36 +08:00
|
|
|
unsigned so_keepalive:2;
|
2016-09-07 02:28:16 +08:00
|
|
|
unsigned proxy_protocol:1;
|
2015-04-20 18:05:11 +08:00
|
|
|
#if (NGX_HAVE_KEEPALIVE_TUNABLE)
|
2016-07-04 21:37:36 +08:00
|
|
|
int tcp_keepidle;
|
|
|
|
int tcp_keepintvl;
|
|
|
|
int tcp_keepcnt;
|
2015-04-20 18:05:11 +08:00
|
|
|
#endif
|
2016-07-04 21:37:36 +08:00
|
|
|
int backlog;
|
|
|
|
int type;
|
2015-04-20 18:05:11 +08:00
|
|
|
} ngx_stream_listen_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2016-07-04 21:37:36 +08:00
|
|
|
ngx_stream_conf_ctx_t *ctx;
|
|
|
|
ngx_str_t addr_text;
|
2015-04-20 18:05:11 +08:00
|
|
|
#if (NGX_STREAM_SSL)
|
2016-09-07 02:28:16 +08:00
|
|
|
unsigned ssl:1;
|
2015-04-20 18:05:11 +08:00
|
|
|
#endif
|
2016-09-07 02:28:16 +08:00
|
|
|
unsigned proxy_protocol:1;
|
2015-04-20 18:05:11 +08:00
|
|
|
} ngx_stream_addr_conf_t;
|
|
|
|
|
|
|
|
typedef struct {
|
2016-07-04 21:37:36 +08:00
|
|
|
in_addr_t addr;
|
|
|
|
ngx_stream_addr_conf_t conf;
|
2015-04-20 18:05:11 +08:00
|
|
|
} ngx_stream_in_addr_t;
|
|
|
|
|
|
|
|
|
|
|
|
#if (NGX_HAVE_INET6)
|
|
|
|
|
|
|
|
typedef struct {
|
2016-07-04 21:37:36 +08:00
|
|
|
struct in6_addr addr6;
|
|
|
|
ngx_stream_addr_conf_t conf;
|
2015-04-20 18:05:11 +08:00
|
|
|
} ngx_stream_in6_addr_t;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
/* ngx_stream_in_addr_t or ngx_stream_in6_addr_t */
|
2016-07-04 21:37:36 +08:00
|
|
|
void *addrs;
|
|
|
|
ngx_uint_t naddrs;
|
2015-04-20 18:05:11 +08:00
|
|
|
} ngx_stream_port_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2016-07-04 21:37:36 +08:00
|
|
|
int family;
|
|
|
|
int type;
|
|
|
|
in_port_t port;
|
|
|
|
ngx_array_t addrs; /* array of ngx_stream_conf_addr_t */
|
2015-04-20 18:05:11 +08:00
|
|
|
} ngx_stream_conf_port_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2016-07-04 21:37:36 +08:00
|
|
|
ngx_stream_listen_t opt;
|
2015-04-20 18:05:11 +08:00
|
|
|
} ngx_stream_conf_addr_t;
|
|
|
|
|
|
|
|
|
2016-09-15 19:55:54 +08:00
|
|
|
typedef enum {
|
|
|
|
NGX_STREAM_POST_ACCEPT_PHASE = 0,
|
|
|
|
NGX_STREAM_PREACCESS_PHASE,
|
|
|
|
NGX_STREAM_ACCESS_PHASE,
|
|
|
|
#if (NGX_STREAM_SSL)
|
|
|
|
NGX_STREAM_SSL_PHASE,
|
|
|
|
#endif
|
2016-09-15 19:56:02 +08:00
|
|
|
NGX_STREAM_PREREAD_PHASE,
|
2016-09-15 19:55:54 +08:00
|
|
|
NGX_STREAM_CONTENT_PHASE,
|
|
|
|
NGX_STREAM_LOG_PHASE
|
|
|
|
} ngx_stream_phases;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct ngx_stream_phase_handler_s ngx_stream_phase_handler_t;
|
|
|
|
|
|
|
|
typedef ngx_int_t (*ngx_stream_phase_handler_pt)(ngx_stream_session_t *s,
|
|
|
|
ngx_stream_phase_handler_t *ph);
|
|
|
|
typedef ngx_int_t (*ngx_stream_handler_pt)(ngx_stream_session_t *s);
|
|
|
|
typedef void (*ngx_stream_content_handler_pt)(ngx_stream_session_t *s);
|
|
|
|
|
|
|
|
|
|
|
|
struct ngx_stream_phase_handler_s {
|
|
|
|
ngx_stream_phase_handler_pt checker;
|
|
|
|
ngx_stream_handler_pt handler;
|
|
|
|
ngx_uint_t next;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
ngx_stream_phase_handler_t *handlers;
|
|
|
|
} ngx_stream_phase_engine_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
ngx_array_t handlers;
|
|
|
|
} ngx_stream_phase_t;
|
2015-06-04 18:04:12 +08:00
|
|
|
|
|
|
|
|
2015-04-20 18:05:11 +08:00
|
|
|
typedef struct {
|
2016-07-04 21:37:36 +08:00
|
|
|
ngx_array_t servers; /* ngx_stream_core_srv_conf_t */
|
|
|
|
ngx_array_t listen; /* ngx_stream_listen_t */
|
|
|
|
|
2016-09-15 19:55:54 +08:00
|
|
|
ngx_stream_phase_engine_t phase_engine;
|
2016-07-04 21:37:36 +08:00
|
|
|
|
|
|
|
ngx_hash_t variables_hash;
|
|
|
|
|
|
|
|
ngx_array_t variables; /* ngx_stream_variable_t */
|
|
|
|
ngx_uint_t ncaptures;
|
|
|
|
|
|
|
|
ngx_uint_t variables_hash_max_size;
|
|
|
|
ngx_uint_t variables_hash_bucket_size;
|
|
|
|
|
|
|
|
ngx_hash_keys_arrays_t *variables_keys;
|
2015-04-20 18:05:11 +08:00
|
|
|
|
2016-09-15 19:55:54 +08:00
|
|
|
ngx_stream_phase_t phases[NGX_STREAM_LOG_PHASE + 1];
|
|
|
|
} ngx_stream_core_main_conf_t;
|
2015-04-20 18:05:11 +08:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2016-09-15 19:55:54 +08:00
|
|
|
ngx_stream_content_handler_pt handler;
|
2016-07-04 21:37:36 +08:00
|
|
|
|
|
|
|
ngx_stream_conf_ctx_t *ctx;
|
|
|
|
|
|
|
|
u_char *file_name;
|
2016-08-18 22:13:07 +08:00
|
|
|
ngx_uint_t line;
|
2016-07-04 21:37:36 +08:00
|
|
|
|
|
|
|
ngx_flag_t tcp_nodelay;
|
2016-09-15 19:56:02 +08:00
|
|
|
size_t preread_buffer_size;
|
|
|
|
ngx_msec_t preread_timeout;
|
2016-07-04 21:37:36 +08:00
|
|
|
|
|
|
|
ngx_log_t *error_log;
|
2016-07-07 18:15:31 +08:00
|
|
|
|
|
|
|
ngx_msec_t resolver_timeout;
|
|
|
|
ngx_resolver_t *resolver;
|
2016-08-17 16:26:51 +08:00
|
|
|
|
2016-09-07 02:28:16 +08:00
|
|
|
ngx_msec_t proxy_protocol_timeout;
|
|
|
|
|
2016-08-17 16:26:51 +08:00
|
|
|
ngx_uint_t listen; /* unsigned listen:1; */
|
2015-04-20 18:05:11 +08:00
|
|
|
} ngx_stream_core_srv_conf_t;
|
|
|
|
|
|
|
|
|
|
|
|
struct ngx_stream_session_s {
|
2016-07-04 21:37:36 +08:00
|
|
|
uint32_t signature; /* "STRM" */
|
2015-04-20 18:05:11 +08:00
|
|
|
|
2016-07-04 21:37:36 +08:00
|
|
|
ngx_connection_t *connection;
|
2015-04-20 18:05:11 +08:00
|
|
|
|
2016-07-04 21:37:36 +08:00
|
|
|
off_t received;
|
2016-08-26 20:33:04 +08:00
|
|
|
time_t start_sec;
|
|
|
|
ngx_msec_t start_msec;
|
2015-04-20 18:05:11 +08:00
|
|
|
|
2016-07-04 21:37:36 +08:00
|
|
|
ngx_log_handler_pt log_handler;
|
2015-04-20 18:05:11 +08:00
|
|
|
|
2016-07-04 21:37:36 +08:00
|
|
|
void **ctx;
|
|
|
|
void **main_conf;
|
|
|
|
void **srv_conf;
|
2015-04-20 18:05:11 +08:00
|
|
|
|
2016-07-04 21:37:36 +08:00
|
|
|
ngx_stream_upstream_t *upstream;
|
2016-09-02 23:27:05 +08:00
|
|
|
ngx_array_t *upstream_states;
|
|
|
|
/* of ngx_stream_upstream_state_t */
|
2016-07-04 21:37:36 +08:00
|
|
|
ngx_stream_variable_value_t *variables;
|
|
|
|
|
|
|
|
#if (NGX_PCRE)
|
|
|
|
ngx_uint_t ncaptures;
|
|
|
|
int *captures;
|
|
|
|
u_char *captures_data;
|
|
|
|
#endif
|
2016-08-12 01:22:23 +08:00
|
|
|
|
2016-09-15 19:55:54 +08:00
|
|
|
ngx_int_t phase_handler;
|
2016-08-12 01:22:23 +08:00
|
|
|
ngx_uint_t status;
|
2016-09-07 02:28:13 +08:00
|
|
|
|
|
|
|
#if (NGX_STREAM_SSL)
|
|
|
|
ngx_uint_t ssl; /* unsigned ssl:1; */
|
|
|
|
#endif
|
2015-04-20 18:05:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2016-07-04 21:37:36 +08:00
|
|
|
ngx_int_t (*preconfiguration)(ngx_conf_t *cf);
|
|
|
|
ngx_int_t (*postconfiguration)(ngx_conf_t *cf);
|
2015-06-09 18:00:45 +08:00
|
|
|
|
2016-07-04 21:37:36 +08:00
|
|
|
void *(*create_main_conf)(ngx_conf_t *cf);
|
|
|
|
char *(*init_main_conf)(ngx_conf_t *cf, void *conf);
|
2015-04-20 18:05:11 +08:00
|
|
|
|
2016-07-04 21:37:36 +08:00
|
|
|
void *(*create_srv_conf)(ngx_conf_t *cf);
|
|
|
|
char *(*merge_srv_conf)(ngx_conf_t *cf, void *prev,
|
|
|
|
void *conf);
|
2015-04-20 18:05:11 +08:00
|
|
|
} ngx_stream_module_t;
|
|
|
|
|
|
|
|
|
|
|
|
#define NGX_STREAM_MODULE 0x4d525453 /* "STRM" */
|
|
|
|
|
|
|
|
#define NGX_STREAM_MAIN_CONF 0x02000000
|
|
|
|
#define NGX_STREAM_SRV_CONF 0x04000000
|
|
|
|
#define NGX_STREAM_UPS_CONF 0x08000000
|
|
|
|
|
|
|
|
|
|
|
|
#define NGX_STREAM_MAIN_CONF_OFFSET offsetof(ngx_stream_conf_ctx_t, main_conf)
|
|
|
|
#define NGX_STREAM_SRV_CONF_OFFSET offsetof(ngx_stream_conf_ctx_t, srv_conf)
|
|
|
|
|
|
|
|
|
|
|
|
#define ngx_stream_get_module_ctx(s, module) (s)->ctx[module.ctx_index]
|
|
|
|
#define ngx_stream_set_ctx(s, c, module) s->ctx[module.ctx_index] = c;
|
|
|
|
#define ngx_stream_delete_ctx(s, module) s->ctx[module.ctx_index] = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
#define ngx_stream_get_module_main_conf(s, module) \
|
|
|
|
(s)->main_conf[module.ctx_index]
|
|
|
|
#define ngx_stream_get_module_srv_conf(s, module) \
|
|
|
|
(s)->srv_conf[module.ctx_index]
|
|
|
|
|
|
|
|
#define ngx_stream_conf_get_module_main_conf(cf, module) \
|
|
|
|
((ngx_stream_conf_ctx_t *) cf->ctx)->main_conf[module.ctx_index]
|
|
|
|
#define ngx_stream_conf_get_module_srv_conf(cf, module) \
|
|
|
|
((ngx_stream_conf_ctx_t *) cf->ctx)->srv_conf[module.ctx_index]
|
|
|
|
|
|
|
|
#define ngx_stream_cycle_get_module_main_conf(cycle, module) \
|
|
|
|
(cycle->conf_ctx[ngx_stream_module.index] ? \
|
|
|
|
((ngx_stream_conf_ctx_t *) cycle->conf_ctx[ngx_stream_module.index]) \
|
|
|
|
->main_conf[module.ctx_index]: \
|
|
|
|
NULL)
|
|
|
|
|
|
|
|
|
2016-09-15 19:55:46 +08:00
|
|
|
#define NGX_STREAM_WRITE_BUFFERED 0x10
|
|
|
|
|
|
|
|
|
2016-09-15 19:55:54 +08:00
|
|
|
void ngx_stream_core_run_phases(ngx_stream_session_t *s);
|
|
|
|
ngx_int_t ngx_stream_core_generic_phase(ngx_stream_session_t *s,
|
|
|
|
ngx_stream_phase_handler_t *ph);
|
2016-09-15 19:56:02 +08:00
|
|
|
ngx_int_t ngx_stream_core_preread_phase(ngx_stream_session_t *s,
|
|
|
|
ngx_stream_phase_handler_t *ph);
|
2016-09-15 19:55:54 +08:00
|
|
|
ngx_int_t ngx_stream_core_content_phase(ngx_stream_session_t *s,
|
|
|
|
ngx_stream_phase_handler_t *ph);
|
|
|
|
|
|
|
|
|
2015-04-20 18:05:11 +08:00
|
|
|
void ngx_stream_init_connection(ngx_connection_t *c);
|
2016-09-15 19:55:54 +08:00
|
|
|
void ngx_stream_session_handler(ngx_event_t *rev);
|
2016-08-12 01:22:23 +08:00
|
|
|
void ngx_stream_finalize_session(ngx_stream_session_t *s, ngx_uint_t rc);
|
2015-04-20 18:05:11 +08:00
|
|
|
|
|
|
|
|
|
|
|
extern ngx_module_t ngx_stream_module;
|
|
|
|
extern ngx_uint_t ngx_stream_max_module;
|
|
|
|
extern ngx_module_t ngx_stream_core_module;
|
|
|
|
|
|
|
|
|
2016-09-15 19:55:46 +08:00
|
|
|
typedef ngx_int_t (*ngx_stream_filter_pt)(ngx_stream_session_t *s,
|
|
|
|
ngx_chain_t *chain, ngx_uint_t from_upstream);
|
|
|
|
|
|
|
|
|
|
|
|
extern ngx_stream_filter_pt ngx_stream_top_filter;
|
|
|
|
|
|
|
|
|
2015-04-20 18:05:11 +08:00
|
|
|
#endif /* _NGX_STREAM_H_INCLUDED_ */
|