blob: 8f30b6e3132ce8ad5e3b6a677e2fad0ebdaf3868 [file] [log] [blame]
Igor Sysoev02025fd2005-01-18 13:03:58 +00001
2/*
3 * Copyright (C) Igor Sysoev
4 */
5
6
7#ifndef _NGX_HTTP_UPSTREAM_H_INCLUDED_
8#define _NGX_HTTP_UPSTREAM_H_INCLUDED_
9
10
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>
17
18
Igor Sysoevbb28b6d2006-07-11 13:20:19 +000019#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
Igor Sysoev797c6ef2008-09-30 15:39:02 +000023#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_BUSY_LOCK 0x00000200
28#define NGX_HTTP_UPSTREAM_FT_MAX_WAITING 0x00000400
Igor Sysoev6876bcd2007-08-09 13:54:33 +000029#define NGX_HTTP_UPSTREAM_FT_NOLIVE 0x40000000
Igor Sysoevbb28b6d2006-07-11 13:20:19 +000030#define NGX_HTTP_UPSTREAM_FT_OFF 0x80000000
Igor Sysoev02025fd2005-01-18 13:03:58 +000031
Igor Sysoev797c6ef2008-09-30 15:39:02 +000032#define NGX_HTTP_UPSTREAM_FT_STATUS (NGX_HTTP_UPSTREAM_FT_HTTP_500 \
33 |NGX_HTTP_UPSTREAM_FT_HTTP_502 \
34 |NGX_HTTP_UPSTREAM_FT_HTTP_503 \
35 |NGX_HTTP_UPSTREAM_FT_HTTP_504 \
36 |NGX_HTTP_UPSTREAM_FT_HTTP_404)
Igor Sysoev02025fd2005-01-18 13:03:58 +000037
38#define NGX_HTTP_UPSTREAM_INVALID_HEADER 40
39
40
41typedef struct {
Igor Sysoev52859f22009-03-23 13:14:51 +000042 ngx_msec_t bl_time;
43 ngx_uint_t bl_state;
Igor Sysoev02025fd2005-01-18 13:03:58 +000044
Igor Sysoev52859f22009-03-23 13:14:51 +000045 ngx_uint_t status;
46 time_t response_sec;
47 ngx_uint_t response_msec;
Igor Sysoev371766c2008-12-11 15:30:52 +000048 off_t response_length;
Igor Sysoevc2068d02005-10-19 12:33:58 +000049
Igor Sysoev52859f22009-03-23 13:14:51 +000050 ngx_str_t *peer;
Igor Sysoev02025fd2005-01-18 13:03:58 +000051} ngx_http_upstream_state_t;
52
53
54typedef struct {
Igor Sysoev52859f22009-03-23 13:14:51 +000055 ngx_hash_t headers_in_hash;
56 ngx_array_t upstreams;
Igor Sysoev3d2fd182006-12-04 16:46:13 +000057 /* ngx_http_upstream_srv_conf_t */
Igor Sysoev899b44e2005-05-12 14:58:06 +000058} ngx_http_upstream_main_conf_t;
Igor Sysoev02025fd2005-01-18 13:03:58 +000059
Igor Sysoev3d2fd182006-12-04 16:46:13 +000060typedef struct ngx_http_upstream_srv_conf_s ngx_http_upstream_srv_conf_t;
61
62typedef ngx_int_t (*ngx_http_upstream_init_pt)(ngx_conf_t *cf,
63 ngx_http_upstream_srv_conf_t *us);
64typedef ngx_int_t (*ngx_http_upstream_init_peer_pt)(ngx_http_request_t *r,
65 ngx_http_upstream_srv_conf_t *us);
66
Igor Sysoev02025fd2005-01-18 13:03:58 +000067
Igor Sysoev899b44e2005-05-12 14:58:06 +000068typedef struct {
Igor Sysoev52859f22009-03-23 13:14:51 +000069 ngx_http_upstream_init_pt init_upstream;
70 ngx_http_upstream_init_peer_pt init;
71 void *data;
Igor Sysoev3d2fd182006-12-04 16:46:13 +000072} ngx_http_upstream_peer_t;
Igor Sysoev6f134cc2006-05-23 14:54:58 +000073
Igor Sysoev6f134cc2006-05-23 14:54:58 +000074
Igor Sysoev3d2fd182006-12-04 16:46:13 +000075typedef struct {
Igor Sysoev52859f22009-03-23 13:14:51 +000076 ngx_peer_addr_t *addrs;
77 ngx_uint_t naddrs;
78 ngx_uint_t weight;
79 ngx_uint_t max_fails;
80 time_t fail_timeout;
Igor Sysoev3d2fd182006-12-04 16:46:13 +000081
Igor Sysoev52859f22009-03-23 13:14:51 +000082 unsigned down:1;
83 unsigned backup:1;
Igor Sysoev3d2fd182006-12-04 16:46:13 +000084} ngx_http_upstream_server_t;
85
86
87#define NGX_HTTP_UPSTREAM_CREATE 0x0001
88#define NGX_HTTP_UPSTREAM_WEIGHT 0x0002
89#define NGX_HTTP_UPSTREAM_MAX_FAILS 0x0004
90#define NGX_HTTP_UPSTREAM_FAIL_TIMEOUT 0x0008
91#define NGX_HTTP_UPSTREAM_DOWN 0x0010
92#define NGX_HTTP_UPSTREAM_BACKUP 0x0020
93
94
95struct ngx_http_upstream_srv_conf_s {
Igor Sysoev52859f22009-03-23 13:14:51 +000096 ngx_http_upstream_peer_t peer;
97 void **srv_conf;
Igor Sysoev3d2fd182006-12-04 16:46:13 +000098
Igor Sysoev52859f22009-03-23 13:14:51 +000099 ngx_array_t *servers; /* ngx_http_upstream_server_t */
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000100
Igor Sysoev52859f22009-03-23 13:14:51 +0000101 ngx_uint_t flags;
102 ngx_str_t host;
103 u_char *file_name;
104 ngx_uint_t line;
105 in_port_t port;
106 in_port_t default_port;
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000107};
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000108
109
110typedef struct {
Igor Sysoev52859f22009-03-23 13:14:51 +0000111 ngx_http_upstream_srv_conf_t *upstream;
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000112
Igor Sysoev52859f22009-03-23 13:14:51 +0000113 ngx_msec_t connect_timeout;
114 ngx_msec_t send_timeout;
115 ngx_msec_t read_timeout;
116 ngx_msec_t timeout;
Igor Sysoev02025fd2005-01-18 13:03:58 +0000117
Igor Sysoev52859f22009-03-23 13:14:51 +0000118 size_t send_lowat;
119 size_t buffer_size;
Igor Sysoev187b7d92005-07-14 12:51:53 +0000120
Igor Sysoev52859f22009-03-23 13:14:51 +0000121 size_t busy_buffers_size;
122 size_t max_temp_file_size;
123 size_t temp_file_write_size;
Igor Sysoev02025fd2005-01-18 13:03:58 +0000124
Igor Sysoev52859f22009-03-23 13:14:51 +0000125 size_t busy_buffers_size_conf;
126 size_t max_temp_file_size_conf;
127 size_t temp_file_write_size_conf;
Igor Sysoev187b7d92005-07-14 12:51:53 +0000128
Igor Sysoev52859f22009-03-23 13:14:51 +0000129 ngx_bufs_t bufs;
Igor Sysoev02025fd2005-01-18 13:03:58 +0000130
Igor Sysoev52859f22009-03-23 13:14:51 +0000131 ngx_uint_t next_upstream;
132 ngx_uint_t store_access;
133 ngx_flag_t buffering;
134 ngx_flag_t pass_request_headers;
135 ngx_flag_t pass_request_body;
Igor Sysoev899b44e2005-05-12 14:58:06 +0000136
Igor Sysoev52859f22009-03-23 13:14:51 +0000137 ngx_flag_t ignore_client_abort;
138 ngx_flag_t intercept_errors;
139 ngx_flag_t cyclic_temp_file;
Igor Sysoev899b44e2005-05-12 14:58:06 +0000140
Igor Sysoev52859f22009-03-23 13:14:51 +0000141 ngx_path_t *temp_path;
Igor Sysoev899b44e2005-05-12 14:58:06 +0000142
Igor Sysoev52859f22009-03-23 13:14:51 +0000143 ngx_hash_t hide_headers_hash;
144 ngx_array_t *hide_headers;
145 ngx_array_t *pass_headers;
Igor Sysoev899b44e2005-05-12 14:58:06 +0000146
Igor Sysoev52859f22009-03-23 13:14:51 +0000147#if (NGX_HTTP_CACHE)
148 ngx_shm_zone_t *cache;
Igor Sysoev3338cfd2006-05-11 14:43:47 +0000149
Igor Sysoev52859f22009-03-23 13:14:51 +0000150 ngx_uint_t cache_min_uses;
151 ngx_uint_t cache_use_stale;
Igor Sysoevfbd9b432007-07-13 08:30:34 +0000152
Igor Sysoev52859f22009-03-23 13:14:51 +0000153 ngx_array_t *cache_valid;
154#endif
155
156 ngx_array_t *store_lengths;
157 ngx_array_t *store_values;
158
159 signed store:2;
160 unsigned intercept_404:1;
161 unsigned change_buffering:1;
Igor Sysoevc31a9bb2005-11-26 10:11:11 +0000162
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +0000163#if (NGX_HTTP_SSL)
Igor Sysoev52859f22009-03-23 13:14:51 +0000164 ngx_ssl_t *ssl;
Igor Sysoev916ee8e2008-08-17 17:47:52 +0000165 ngx_flag_t ssl_session_reuse;
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +0000166#endif
167
Igor Sysoev02025fd2005-01-18 13:03:58 +0000168} ngx_http_upstream_conf_t;
169
170
Igor Sysoev899b44e2005-05-12 14:58:06 +0000171typedef struct {
Igor Sysoev52859f22009-03-23 13:14:51 +0000172 ngx_str_t name;
173 ngx_http_header_handler_pt handler;
174 ngx_uint_t offset;
175 ngx_http_header_handler_pt copy_handler;
176 ngx_uint_t conf;
177 ngx_uint_t redirect; /* unsigned redirect:1; */
Igor Sysoev899b44e2005-05-12 14:58:06 +0000178} ngx_http_upstream_header_t;
179
180
181typedef struct {
Igor Sysoev52859f22009-03-23 13:14:51 +0000182 ngx_list_t headers;
Igor Sysoev899b44e2005-05-12 14:58:06 +0000183
Igor Sysoev52859f22009-03-23 13:14:51 +0000184 ngx_uint_t status_n;
185 ngx_str_t status_line;
Igor Sysoev187b7d92005-07-14 12:51:53 +0000186
Igor Sysoev52859f22009-03-23 13:14:51 +0000187 ngx_table_elt_t *status;
188 ngx_table_elt_t *date;
189 ngx_table_elt_t *server;
190 ngx_table_elt_t *connection;
Igor Sysoev899b44e2005-05-12 14:58:06 +0000191
Igor Sysoev52859f22009-03-23 13:14:51 +0000192 ngx_table_elt_t *expires;
193 ngx_table_elt_t *etag;
194 ngx_table_elt_t *x_accel_expires;
195 ngx_table_elt_t *x_accel_redirect;
196 ngx_table_elt_t *x_accel_limit_rate;
Igor Sysoev899b44e2005-05-12 14:58:06 +0000197
Igor Sysoev52859f22009-03-23 13:14:51 +0000198 ngx_table_elt_t *content_type;
199 ngx_table_elt_t *content_length;
Igor Sysoev899b44e2005-05-12 14:58:06 +0000200
Igor Sysoev52859f22009-03-23 13:14:51 +0000201 ngx_table_elt_t *last_modified;
202 ngx_table_elt_t *location;
203 ngx_table_elt_t *accept_ranges;
204 ngx_table_elt_t *www_authenticate;
Igor Sysoev899b44e2005-05-12 14:58:06 +0000205
206#if (NGX_HTTP_GZIP)
Igor Sysoev52859f22009-03-23 13:14:51 +0000207 ngx_table_elt_t *content_encoding;
Igor Sysoev899b44e2005-05-12 14:58:06 +0000208#endif
209
Igor Sysoev52859f22009-03-23 13:14:51 +0000210 off_t content_length_n;
Igor Sysoevbe0a61e2008-02-11 13:14:56 +0000211
Igor Sysoev52859f22009-03-23 13:14:51 +0000212 ngx_array_t cache_control;
Igor Sysoev899b44e2005-05-12 14:58:06 +0000213} ngx_http_upstream_headers_in_t;
214
Igor Sysoev02025fd2005-01-18 13:03:58 +0000215
Igor Sysoev96dd8af2007-11-27 13:34:13 +0000216typedef struct {
Igor Sysoev52859f22009-03-23 13:14:51 +0000217 ngx_str_t host;
218 in_port_t port;
219 ngx_uint_t no_port; /* unsigned no_port:1 */
Igor Sysoev302cedc2008-12-23 19:35:12 +0000220
Igor Sysoev52859f22009-03-23 13:14:51 +0000221 ngx_uint_t naddrs;
222 in_addr_t *addrs;
Igor Sysoev302cedc2008-12-23 19:35:12 +0000223
Igor Sysoev52859f22009-03-23 13:14:51 +0000224 struct sockaddr *sockaddr;
225 socklen_t socklen;
Igor Sysoev302cedc2008-12-23 19:35:12 +0000226
Igor Sysoev52859f22009-03-23 13:14:51 +0000227 ngx_resolver_ctx_t *ctx;
Igor Sysoev96dd8af2007-11-27 13:34:13 +0000228} ngx_http_upstream_resolved_t;
229
230
Igor Sysoevb9409a82008-12-09 17:25:03 +0000231typedef void (*ngx_http_upstream_handler_pt)(ngx_http_request_t *r,
232 ngx_http_upstream_t *u);
233
234
Igor Sysoev02025fd2005-01-18 13:03:58 +0000235struct ngx_http_upstream_s {
Igor Sysoev52859f22009-03-23 13:14:51 +0000236 ngx_http_upstream_handler_pt read_event_handler;
237 ngx_http_upstream_handler_pt write_event_handler;
Igor Sysoev851cd732008-12-08 14:23:20 +0000238
Igor Sysoev52859f22009-03-23 13:14:51 +0000239 ngx_peer_connection_t peer;
Igor Sysoev02025fd2005-01-18 13:03:58 +0000240
Igor Sysoev52859f22009-03-23 13:14:51 +0000241 ngx_event_pipe_t *pipe;
Igor Sysoev02025fd2005-01-18 13:03:58 +0000242
Igor Sysoev52859f22009-03-23 13:14:51 +0000243 ngx_chain_t *request_bufs;
Igor Sysoev02025fd2005-01-18 13:03:58 +0000244
Igor Sysoev52859f22009-03-23 13:14:51 +0000245 ngx_output_chain_ctx_t output;
246 ngx_chain_writer_ctx_t writer;
Igor Sysoev02025fd2005-01-18 13:03:58 +0000247
Igor Sysoev52859f22009-03-23 13:14:51 +0000248 ngx_http_upstream_conf_t *conf;
Igor Sysoev02025fd2005-01-18 13:03:58 +0000249
Igor Sysoev52859f22009-03-23 13:14:51 +0000250 ngx_http_upstream_headers_in_t headers_in;
Igor Sysoev02025fd2005-01-18 13:03:58 +0000251
Igor Sysoev52859f22009-03-23 13:14:51 +0000252 ngx_http_upstream_resolved_t *resolved;
Igor Sysoev96dd8af2007-11-27 13:34:13 +0000253
Igor Sysoev52859f22009-03-23 13:14:51 +0000254 ngx_buf_t buffer;
255 size_t length;
Igor Sysoevc31a9bb2005-11-26 10:11:11 +0000256
Igor Sysoev52859f22009-03-23 13:14:51 +0000257 ngx_chain_t *out_bufs;
258 ngx_chain_t *busy_bufs;
259 ngx_chain_t *free_bufs;
Igor Sysoevc31a9bb2005-11-26 10:11:11 +0000260
Igor Sysoev52859f22009-03-23 13:14:51 +0000261 ngx_int_t (*input_filter_init)(void *data);
262 ngx_int_t (*input_filter)(void *data, ssize_t bytes);
263 void *input_filter_ctx;
Igor Sysoev02025fd2005-01-18 13:03:58 +0000264
Igor Sysoev52859f22009-03-23 13:14:51 +0000265#if (NGX_HTTP_CACHE)
266 ngx_int_t (*create_key)(ngx_http_request_t *r);
267#endif
268 ngx_int_t (*create_request)(ngx_http_request_t *r);
269 ngx_int_t (*reinit_request)(ngx_http_request_t *r);
270 ngx_int_t (*process_header)(ngx_http_request_t *r);
271 void (*abort_request)(ngx_http_request_t *r);
272 void (*finalize_request)(ngx_http_request_t *r,
273 ngx_int_t rc);
274 ngx_int_t (*rewrite_redirect)(ngx_http_request_t *r,
275 ngx_table_elt_t *h, size_t prefix);
Igor Sysoev02025fd2005-01-18 13:03:58 +0000276
Igor Sysoev52859f22009-03-23 13:14:51 +0000277 ngx_msec_t timeout;
Igor Sysoev5192b362005-07-08 14:34:20 +0000278
Igor Sysoev52859f22009-03-23 13:14:51 +0000279 ngx_http_upstream_state_t *state;
Igor Sysoev899b44e2005-05-12 14:58:06 +0000280
Igor Sysoev52859f22009-03-23 13:14:51 +0000281 ngx_str_t method;
282 ngx_str_t schema;
283 ngx_str_t uri;
Igor Sysoeva2573672005-10-05 14:46:21 +0000284
Igor Sysoev52859f22009-03-23 13:14:51 +0000285 ngx_http_cleanup_pt *cleanup;
Igor Sysoev9ac946b2005-10-24 15:09:41 +0000286
Igor Sysoev52859f22009-03-23 13:14:51 +0000287 unsigned store:1;
288 unsigned cacheable:1;
289 unsigned accel:1;
290 unsigned ssl:1;
291#if (NGX_HTTP_CACHE)
292 unsigned stale_cache:1;
293#endif
Igor Sysoev899b44e2005-05-12 14:58:06 +0000294
Igor Sysoev52859f22009-03-23 13:14:51 +0000295 unsigned buffering:1;
Igor Sysoev3338cfd2006-05-11 14:43:47 +0000296
Igor Sysoev52859f22009-03-23 13:14:51 +0000297 unsigned request_sent:1;
298 unsigned header_sent:1;
Igor Sysoev02025fd2005-01-18 13:03:58 +0000299};
300
301
Igor Sysoev797c6ef2008-09-30 15:39:02 +0000302typedef struct {
303 ngx_uint_t status;
304 ngx_uint_t mask;
305} ngx_http_upstream_next_t;
306
307
Igor Sysoev27233612007-04-10 07:08:06 +0000308ngx_int_t ngx_http_upstream_header_variable(ngx_http_request_t *r,
309 ngx_http_variable_value_t *v, uintptr_t data);
310
Igor Sysoev02025fd2005-01-18 13:03:58 +0000311void ngx_http_upstream_init(ngx_http_request_t *r);
Igor Sysoev6f134cc2006-05-23 14:54:58 +0000312ngx_http_upstream_srv_conf_t *ngx_http_upstream_add(ngx_conf_t *cf,
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000313 ngx_url_t *u, ngx_uint_t flags);
Igor Sysoevcb540612007-12-09 18:03:20 +0000314ngx_int_t ngx_http_upstream_hide_headers_hash(ngx_conf_t *cf,
315 ngx_http_upstream_conf_t *conf, ngx_http_upstream_conf_t *prev,
316 ngx_str_t *default_hide_headers, ngx_hash_init_t *hash);
Igor Sysoev3d2fd182006-12-04 16:46:13 +0000317
318
319#define ngx_http_conf_upstream_srv_conf(uscf, module) \
320 uscf->srv_conf[module.ctx_index]
Igor Sysoev02025fd2005-01-18 13:03:58 +0000321
322
Igor Sysoev899b44e2005-05-12 14:58:06 +0000323extern ngx_module_t ngx_http_upstream_module;
324
Igor Sysoev02025fd2005-01-18 13:03:58 +0000325
326#endif /* _NGX_HTTP_UPSTREAM_H_INCLUDED_ */