Merge commit 'v0.8.40'
[nginx-catap.git] / src / http / ngx_http_upstream.h
blob6c409273afa663fb61c95a78f131b11d6c6b8bc5
2 /*
3 * Copyright (C) Igor Sysoev
4 */
7 #ifndef _NGX_HTTP_UPSTREAM_H_INCLUDED_
8 #define _NGX_HTTP_UPSTREAM_H_INCLUDED_
11 #include <ngx_config.h>
12 #include <ngx_core.h>
13 #include <ngx_event.h>
14 #include <ngx_event_connect.h>
15 #include <ngx_event_pipe.h>
16 #include <ngx_http.h>
19 #define NGX_HTTP_UPSTREAM_FT_ERROR 0x00000002
20 #define NGX_HTTP_UPSTREAM_FT_TIMEOUT 0x00000004
21 #define NGX_HTTP_UPSTREAM_FT_INVALID_HEADER 0x00000008
22 #define NGX_HTTP_UPSTREAM_FT_HTTP_500 0x00000010
23 #define NGX_HTTP_UPSTREAM_FT_HTTP_502 0x00000020
24 #define NGX_HTTP_UPSTREAM_FT_HTTP_503 0x00000040
25 #define NGX_HTTP_UPSTREAM_FT_HTTP_504 0x00000080
26 #define NGX_HTTP_UPSTREAM_FT_HTTP_404 0x00000100
27 #define NGX_HTTP_UPSTREAM_FT_UPDATING 0x00000200
28 #define NGX_HTTP_UPSTREAM_FT_BUSY_LOCK 0x00000400
29 #define NGX_HTTP_UPSTREAM_FT_MAX_WAITING 0x00000800
30 #define NGX_HTTP_UPSTREAM_FT_NOLIVE 0x40000000
31 #define NGX_HTTP_UPSTREAM_FT_OFF 0x80000000
33 #define NGX_HTTP_UPSTREAM_FT_STATUS (NGX_HTTP_UPSTREAM_FT_HTTP_500 \
34 |NGX_HTTP_UPSTREAM_FT_HTTP_502 \
35 |NGX_HTTP_UPSTREAM_FT_HTTP_503 \
36 |NGX_HTTP_UPSTREAM_FT_HTTP_504 \
37 |NGX_HTTP_UPSTREAM_FT_HTTP_404)
39 #define NGX_HTTP_UPSTREAM_INVALID_HEADER 40
42 #define NGX_HTTP_UPSTREAM_IGN_XA_REDIRECT 0x00000002
43 #define NGX_HTTP_UPSTREAM_IGN_XA_EXPIRES 0x00000004
44 #define NGX_HTTP_UPSTREAM_IGN_EXPIRES 0x00000008
45 #define NGX_HTTP_UPSTREAM_IGN_CACHE_CONTROL 0x00000010
48 typedef struct {
49 ngx_msec_t bl_time;
50 ngx_uint_t bl_state;
52 ngx_uint_t status;
53 time_t response_sec;
54 ngx_uint_t response_msec;
55 off_t response_length;
57 ngx_str_t *peer;
58 } ngx_http_upstream_state_t;
61 typedef struct {
62 ngx_hash_t headers_in_hash;
63 ngx_array_t upstreams;
64 /* ngx_http_upstream_srv_conf_t */
65 } ngx_http_upstream_main_conf_t;
67 typedef struct ngx_http_upstream_srv_conf_s ngx_http_upstream_srv_conf_t;
69 typedef ngx_int_t (*ngx_http_upstream_init_pt)(ngx_conf_t *cf,
70 ngx_http_upstream_srv_conf_t *us);
71 typedef ngx_int_t (*ngx_http_upstream_init_peer_pt)(ngx_http_request_t *r,
72 ngx_http_upstream_srv_conf_t *us);
75 typedef struct {
76 ngx_http_upstream_init_pt init_upstream;
77 ngx_http_upstream_init_peer_pt init;
78 void *data;
79 } ngx_http_upstream_peer_t;
82 typedef struct {
83 ngx_addr_t *addrs;
84 ngx_uint_t naddrs;
85 ngx_uint_t weight;
86 ngx_uint_t max_fails;
87 time_t fail_timeout;
89 unsigned down:1;
90 unsigned backup:1;
91 } ngx_http_upstream_server_t;
94 #define NGX_HTTP_UPSTREAM_CREATE 0x0001
95 #define NGX_HTTP_UPSTREAM_WEIGHT 0x0002
96 #define NGX_HTTP_UPSTREAM_MAX_FAILS 0x0004
97 #define NGX_HTTP_UPSTREAM_FAIL_TIMEOUT 0x0008
98 #define NGX_HTTP_UPSTREAM_DOWN 0x0010
99 #define NGX_HTTP_UPSTREAM_BACKUP 0x0020
102 struct ngx_http_upstream_srv_conf_s {
103 ngx_http_upstream_peer_t peer;
104 void **srv_conf;
106 ngx_array_t *servers; /* ngx_http_upstream_server_t */
108 ngx_uint_t flags;
109 ngx_str_t host;
110 u_char *file_name;
111 ngx_uint_t line;
112 in_port_t port;
113 in_port_t default_port;
117 typedef struct {
118 ngx_http_upstream_srv_conf_t *upstream;
120 ngx_msec_t connect_timeout;
121 ngx_msec_t send_timeout;
122 ngx_msec_t read_timeout;
123 ngx_msec_t timeout;
125 size_t send_lowat;
126 size_t buffer_size;
128 size_t busy_buffers_size;
129 size_t max_temp_file_size;
130 size_t temp_file_write_size;
132 size_t busy_buffers_size_conf;
133 size_t max_temp_file_size_conf;
134 size_t temp_file_write_size_conf;
136 ngx_bufs_t bufs;
138 ngx_uint_t ignore_headers;
139 ngx_uint_t next_upstream;
140 ngx_uint_t store_access;
141 ngx_flag_t buffering;
142 ngx_flag_t pass_request_headers;
143 ngx_flag_t pass_request_body;
145 ngx_flag_t ignore_client_abort;
146 ngx_flag_t intercept_errors;
147 ngx_flag_t cyclic_temp_file;
149 ngx_path_t *temp_path;
151 ngx_hash_t hide_headers_hash;
152 ngx_array_t *hide_headers;
153 ngx_array_t *pass_headers;
155 ngx_addr_t *local;
157 #if (NGX_HTTP_CACHE)
158 ngx_shm_zone_t *cache;
160 ngx_uint_t cache_min_uses;
161 ngx_uint_t cache_use_stale;
162 ngx_uint_t cache_methods;
164 ngx_array_t *cache_valid;
165 ngx_array_t *no_cache; /* ngx_http_complex_value_t */
166 #endif
168 ngx_array_t *store_lengths;
169 ngx_array_t *store_values;
171 signed store:2;
172 unsigned intercept_404:1;
173 unsigned change_buffering:1;
175 #if (NGX_HTTP_SSL)
176 ngx_ssl_t *ssl;
177 ngx_flag_t ssl_session_reuse;
178 #endif
180 } ngx_http_upstream_conf_t;
183 typedef struct {
184 ngx_str_t name;
185 ngx_http_header_handler_pt handler;
186 ngx_uint_t offset;
187 ngx_http_header_handler_pt copy_handler;
188 ngx_uint_t conf;
189 ngx_uint_t redirect; /* unsigned redirect:1; */
190 } ngx_http_upstream_header_t;
193 typedef struct {
194 ngx_list_t headers;
196 ngx_uint_t status_n;
197 ngx_str_t status_line;
199 ngx_table_elt_t *status;
200 ngx_table_elt_t *date;
201 ngx_table_elt_t *server;
202 ngx_table_elt_t *connection;
204 ngx_table_elt_t *expires;
205 ngx_table_elt_t *etag;
206 ngx_table_elt_t *x_accel_expires;
207 ngx_table_elt_t *x_accel_redirect;
208 ngx_table_elt_t *x_accel_limit_rate;
210 ngx_table_elt_t *content_type;
211 ngx_table_elt_t *content_length;
213 ngx_table_elt_t *last_modified;
214 ngx_table_elt_t *location;
215 ngx_table_elt_t *accept_ranges;
216 ngx_table_elt_t *www_authenticate;
218 #if (NGX_HTTP_GZIP)
219 ngx_table_elt_t *content_encoding;
220 #endif
222 off_t content_length_n;
224 ngx_array_t cache_control;
225 } ngx_http_upstream_headers_in_t;
228 typedef struct {
229 ngx_str_t host;
230 in_port_t port;
231 ngx_uint_t no_port; /* unsigned no_port:1 */
233 ngx_uint_t naddrs;
234 in_addr_t *addrs;
236 struct sockaddr *sockaddr;
237 socklen_t socklen;
239 ngx_resolver_ctx_t *ctx;
240 } ngx_http_upstream_resolved_t;
243 typedef void (*ngx_http_upstream_handler_pt)(ngx_http_request_t *r,
244 ngx_http_upstream_t *u);
247 struct ngx_http_upstream_s {
248 ngx_http_upstream_handler_pt read_event_handler;
249 ngx_http_upstream_handler_pt write_event_handler;
251 ngx_peer_connection_t peer;
253 ngx_event_pipe_t *pipe;
255 ngx_chain_t *request_bufs;
257 ngx_output_chain_ctx_t output;
258 ngx_chain_writer_ctx_t writer;
260 ngx_http_upstream_conf_t *conf;
262 ngx_http_upstream_headers_in_t headers_in;
264 ngx_http_upstream_resolved_t *resolved;
266 ngx_buf_t buffer;
267 size_t length;
269 ngx_chain_t *out_bufs;
270 ngx_chain_t *busy_bufs;
271 ngx_chain_t *free_bufs;
273 ngx_int_t (*input_filter_init)(void *data);
274 ngx_int_t (*input_filter)(void *data, ssize_t bytes);
275 void *input_filter_ctx;
277 #if (NGX_HTTP_CACHE)
278 ngx_int_t (*create_key)(ngx_http_request_t *r);
279 #endif
280 ngx_int_t (*create_request)(ngx_http_request_t *r);
281 ngx_int_t (*reinit_request)(ngx_http_request_t *r);
282 ngx_int_t (*process_header)(ngx_http_request_t *r);
283 void (*abort_request)(ngx_http_request_t *r);
284 void (*finalize_request)(ngx_http_request_t *r,
285 ngx_int_t rc);
286 ngx_int_t (*rewrite_redirect)(ngx_http_request_t *r,
287 ngx_table_elt_t *h, size_t prefix);
289 ngx_msec_t timeout;
291 ngx_http_upstream_state_t *state;
293 ngx_str_t method;
294 ngx_str_t schema;
295 ngx_str_t uri;
297 ngx_http_cleanup_pt *cleanup;
299 ngx_flag_t count_limit;
300 ngx_uint_t count_limit_origin;
302 unsigned store:1;
303 unsigned cacheable:1;
304 unsigned accel:1;
305 unsigned ssl:1;
306 #if (NGX_HTTP_CACHE)
307 unsigned cache_status:3;
308 #endif
310 unsigned buffering:1;
312 unsigned request_sent:1;
313 unsigned header_sent:1;
317 typedef struct {
318 ngx_uint_t status;
319 ngx_uint_t mask;
320 } ngx_http_upstream_next_t;
323 ngx_int_t ngx_http_upstream_header_variable(ngx_http_request_t *r,
324 ngx_http_variable_value_t *v, uintptr_t data);
326 ngx_int_t ngx_http_upstream_create(ngx_http_request_t *r);
327 void ngx_http_upstream_init(ngx_http_request_t *r);
328 ngx_http_upstream_srv_conf_t *ngx_http_upstream_add(ngx_conf_t *cf,
329 ngx_url_t *u, ngx_uint_t flags);
330 char *ngx_http_upstream_bind_set_slot(ngx_conf_t *cf, ngx_command_t *cmd,
331 void *conf);
332 ngx_int_t ngx_http_upstream_hide_headers_hash(ngx_conf_t *cf,
333 ngx_http_upstream_conf_t *conf, ngx_http_upstream_conf_t *prev,
334 ngx_str_t *default_hide_headers, ngx_hash_init_t *hash);
337 #define ngx_http_conf_upstream_srv_conf(uscf, module) \
338 uscf->srv_conf[module.ctx_index]
341 extern ngx_module_t ngx_http_upstream_module;
342 extern ngx_conf_bitmask_t ngx_http_upstream_cache_method_mask[];
345 #endif /* _NGX_HTTP_UPSTREAM_H_INCLUDED_ */