forked from yaoweibin/nginx_tcp_proxy_module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ngx_tcp.h
278 lines (194 loc) · 7.34 KB
/
ngx_tcp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
#ifndef _NGX_TCP_H_INCLUDED_
#define _NGX_TCP_H_INCLUDED_
#include <nginx.h>
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_event.h>
#include <ngx_event_connect.h>
typedef struct ngx_tcp_protocol_s ngx_tcp_protocol_t;
typedef struct ngx_tcp_upstream_s ngx_tcp_upstream_t;
typedef struct ngx_tcp_cleanup_s ngx_tcp_cleanup_t;
typedef struct ngx_tcp_core_srv_conf_s ngx_tcp_core_srv_conf_t;
typedef struct ngx_tcp_upstream_srv_conf_s ngx_tcp_upstream_srv_conf_t;
typedef struct ngx_tcp_upstream_resolved_s ngx_tcp_upstream_resolved_t;
typedef struct ngx_tcp_check_peer_conf_s ngx_tcp_check_peer_conf_t;
typedef struct ngx_tcp_check_peers_conf_s ngx_tcp_check_peers_conf_t;
typedef struct check_conf_s check_conf_t;
/* make nginx-0.8.22+ happy */
#if defined(nginx_version) && nginx_version >= 8022
typedef ngx_addr_t ngx_peer_addr_t;
#endif
#include <ngx_tcp_session.h>
#include <ngx_tcp_upstream.h>
#include <ngx_tcp_upstream_check.h>
#include <ngx_tcp_upstream_round_robin.h>
#if (NGX_TCP_SSL)
#include <ngx_tcp_ssl_module.h>
#endif
typedef struct {
void **main_conf;
void **srv_conf;
} ngx_tcp_conf_ctx_t;
typedef struct {
u_char sockaddr[NGX_SOCKADDRLEN];
socklen_t socklen;
/* server ctx */
ngx_tcp_conf_ctx_t *ctx;
unsigned default_port:1;
unsigned bind:1;
unsigned wildcard:1;
#if (NGX_TCP_SSL)
unsigned ssl:1;
#endif
#if (NGX_HAVE_INET6 && defined IPV6_V6ONLY)
unsigned ipv6only:2;
#endif
ngx_tcp_core_srv_conf_t *conf;
} ngx_tcp_listen_t;
typedef struct {
ngx_str_t name;
} ngx_tcp_server_name_t;
typedef struct {
ngx_uint_t hash;
ngx_str_t name;
ngx_tcp_listen_t *listen;
ngx_tcp_conf_ctx_t *ctx;
} ngx_tcp_virtual_server_t;
typedef struct {
ngx_str_t name;
} ngx_tcp_core_loc_t;
typedef struct {
ngx_tcp_conf_ctx_t *ctx;
ngx_tcp_conf_ctx_t *default_ctx;
ngx_str_t addr_text;
#if (NGX_TCP_SSL)
ngx_uint_t ssl; /* unsigned ssl:1; */
#endif
} ngx_tcp_addr_conf_t;
typedef struct {
in_addr_t addr;
ngx_tcp_addr_conf_t conf;
} ngx_tcp_in_addr_t;
#if (NGX_HAVE_INET6)
typedef struct {
struct in6_addr addr6;
ngx_tcp_addr_conf_t conf;
} ngx_tcp_in6_addr_t;
#endif
typedef struct {
/* ngx_tcp_in_addr_t or ngx_tcp_in6_addr_t */
void *addrs;
ngx_uint_t naddrs;
} ngx_tcp_port_t;
typedef struct {
int family;
in_port_t port;
ngx_array_t addrs; /* array of ngx_tcp_conf_addr_t */
} ngx_tcp_conf_port_t;
typedef struct {
struct sockaddr *sockaddr;
socklen_t socklen;
ngx_tcp_conf_ctx_t *ctx;
ngx_tcp_conf_ctx_t *default_ctx;
unsigned bind:1;
unsigned wildcard:1;
#if (NGX_TCP_SSL)
unsigned ssl:1;
#endif
#if (NGX_HAVE_INET6 && defined IPV6_V6ONLY)
unsigned ipv6only:2;
#endif
} ngx_tcp_conf_addr_t;
typedef struct {
in_addr_t mask;
in_addr_t addr;
ngx_uint_t deny; /* unsigned deny:1; */
} ngx_tcp_access_rule_t;
typedef struct {
ngx_array_t servers; /* ngx_tcp_core_srv_conf_t */
ngx_array_t listen; /* ngx_tcp_listen_t */
ngx_array_t virtual_servers; /* ngx_tcp_virtual_server_t */
} ngx_tcp_core_main_conf_t;
typedef struct {
ngx_open_file_t *file;
time_t disk_full_time;
time_t error_log_time;
} ngx_tcp_log_t;
typedef struct {
u_char *start;
u_char *pos;
u_char *last;
} ngx_tcp_log_buf_t;
typedef struct {
ngx_array_t *logs; /* array of ngx_tcp_log_t */
ngx_open_file_cache_t *open_file_cache;
time_t open_file_cache_valid;
ngx_uint_t open_file_cache_min_uses;
ngx_uint_t off; /* unsigned off:1 */
} ngx_tcp_log_srv_conf_t;
#define NGX_TCP_GENERIC_PROTOCOL 0
#define NGX_TCP_WEBSOCKET_PROTOCOL 1
struct ngx_tcp_core_srv_conf_s {
/* array of the ngx_tcp_server_name_t, "server_name" directive */
ngx_array_t server_names;
/* array of the ngx_tcp_core_loc_t, "location" directive */
ngx_array_t locations;
ngx_tcp_protocol_t *protocol;
ngx_msec_t timeout;
ngx_msec_t resolver_timeout;
ngx_flag_t so_keepalive;
ngx_flag_t tcp_nodelay;
ngx_str_t server_name;
u_char *file_name;
ngx_int_t line;
ngx_resolver_t *resolver;
/*ACL rules*/
ngx_array_t *rules;
ngx_tcp_log_srv_conf_t *access_log;
/* server ctx */
ngx_tcp_conf_ctx_t *ctx;
};
typedef struct {
ngx_str_t *client;
ngx_tcp_session_t *session;
} ngx_tcp_log_ctx_t;
typedef void (*ngx_tcp_init_session_pt)(ngx_tcp_session_t *s);
typedef void (*ngx_tcp_init_protocol_pt)(ngx_event_t *rev);
typedef void (*ngx_tcp_parse_protocol_pt)(ngx_event_t *rev);
struct ngx_tcp_protocol_s {
ngx_str_t name;
in_port_t port[4];
ngx_uint_t type;
ngx_tcp_init_session_pt init_session;
ngx_tcp_init_protocol_pt init_protocol;
ngx_tcp_parse_protocol_pt parse_protocol;
ngx_str_t internal_server_error;
};
typedef struct {
ngx_tcp_protocol_t *protocol;
void *(*create_main_conf)(ngx_conf_t *cf);
char *(*init_main_conf)(ngx_conf_t *cf, void *conf);
void *(*create_srv_conf)(ngx_conf_t *cf);
char *(*merge_srv_conf)(ngx_conf_t *cf, void *prev,
void *conf);
} ngx_tcp_module_t;
#define NGX_TCP_MODULE 0x00504354 /* "TCP" */
#define NGX_TCP_MAIN_CONF 0x02000000
#define NGX_TCP_SRV_CONF 0x04000000
#define NGX_TCP_LOC_CONF 0x08000000
#define NGX_TCP_UPS_CONF 0x10000000
#define NGX_TCP_MAIN_CONF_OFFSET offsetof(ngx_tcp_conf_ctx_t, main_conf)
#define NGX_TCP_SRV_CONF_OFFSET offsetof(ngx_tcp_conf_ctx_t, srv_conf)
#define ngx_tcp_get_module_ctx(s, module) (s)->ctx[module.ctx_index]
#define ngx_tcp_set_ctx(s, c, module) s->ctx[module.ctx_index] = c;
#define ngx_tcp_delete_ctx(s, module) s->ctx[module.ctx_index] = NULL;
#define ngx_tcp_get_module_main_conf(s, module) \
(s)->main_conf[module.ctx_index]
#define ngx_tcp_get_module_srv_conf(s, module) (s)->srv_conf[module.ctx_index]
#define ngx_tcp_conf_get_module_main_conf(cf, module) \
((ngx_tcp_conf_ctx_t *) cf->ctx)->main_conf[module.ctx_index]
#define ngx_tcp_conf_get_module_srv_conf(cf, module) \
((ngx_tcp_conf_ctx_t *) cf->ctx)->srv_conf[module.ctx_index]
extern ngx_uint_t ngx_tcp_max_module;
extern ngx_module_t ngx_tcp_core_module;
#endif /* _NGX_TCP_H_INCLUDED_ */