blob: 873267f4014b5329e3727f2cba468de3451d7adf [file] [log] [blame]
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001
2#include <ngx_config.h>
Igor Sysoev4e9393a2003-01-09 05:36:00 +00003#include <ngx_core.h>
Igor Sysoevb3e73d82003-10-10 15:10:50 +00004#include <ngx_event.h>
Igor Sysoev6253ca12003-05-27 12:18:54 +00005#include <ngx_http.h>
Igor Sysoeva9830112003-05-19 16:39:14 +00006#include <nginx.h>
Igor Sysoev4e9393a2003-01-09 05:36:00 +00007
Igor Sysoev6253ca12003-05-27 12:18:54 +00008
Igor Sysoevb3e73d82003-10-10 15:10:50 +00009static void ngx_http_phase_event_handler(ngx_event_t *rev);
10static void ngx_http_run_phases(ngx_http_request_t *r);
Igor Sysoev4e9393a2003-01-09 05:36:00 +000011
Igor Sysoev890fc962003-07-20 21:15:59 +000012static void *ngx_http_core_create_main_conf(ngx_conf_t *cf);
13static char *ngx_http_core_init_main_conf(ngx_conf_t *cf, void *conf);
14static void *ngx_http_core_create_srv_conf(ngx_conf_t *cf);
15static char *ngx_http_core_merge_srv_conf(ngx_conf_t *cf,
Igor Sysoeva9830112003-05-19 16:39:14 +000016 void *parent, void *child);
Igor Sysoev890fc962003-07-20 21:15:59 +000017static void *ngx_http_core_create_loc_conf(ngx_conf_t *cf);
18static char *ngx_http_core_merge_loc_conf(ngx_conf_t *cf,
Igor Sysoeve2a31542003-04-08 15:40:10 +000019 void *parent, void *child);
Igor Sysoevdc479b42003-03-20 16:09:44 +000020
Igor Sysoev340b03b2003-07-04 15:10:33 +000021static int ngx_http_core_init(ngx_cycle_t *cycle);
Igor Sysoev6253ca12003-05-27 12:18:54 +000022static char *ngx_server_block(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy);
Igor Sysoev13933252003-05-29 13:02:09 +000023static int ngx_cmp_locations(const void *first, const void *second);
Igor Sysoevdc479b42003-03-20 16:09:44 +000024static char *ngx_location_block(ngx_conf_t *cf, ngx_command_t *cmd,
Igor Sysoev890fc962003-07-20 21:15:59 +000025 void *dummy);
Igor Sysoev6253ca12003-05-27 12:18:54 +000026static char *ngx_types_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
Igor Sysoevaa3436c2003-05-30 14:27:59 +000027static char *ngx_set_type(ngx_conf_t *cf, ngx_command_t *dummy, void *conf);
Igor Sysoev6253ca12003-05-27 12:18:54 +000028static char *ngx_set_listen(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
Igor Sysoev13933252003-05-29 13:02:09 +000029static char *ngx_set_server_name(ngx_conf_t *cf, ngx_command_t *cmd,
Igor Sysoev890fc962003-07-20 21:15:59 +000030 void *conf);
Igor Sysoev74e95c22003-11-09 20:03:38 +000031static char *ngx_set_error_page(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
Igor Sysoev890fc962003-07-20 21:15:59 +000032static char *ngx_set_error_log(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
Igor Sysoev4e9393a2003-01-09 05:36:00 +000033
Igor Sysoevb5faed22003-10-29 08:30:44 +000034static char *ngx_http_lowat_check(ngx_conf_t *cf, void *post, void *data);
35
36static ngx_conf_post_t ngx_http_lowat_post = { ngx_http_lowat_check } ;
37
Igor Sysoev4e9393a2003-01-09 05:36:00 +000038
39static ngx_command_t ngx_http_core_commands[] = {
40
Igor Sysoev865c1502003-11-30 20:03:18 +000041 { ngx_string("server"),
42 NGX_HTTP_MAIN_CONF|NGX_CONF_BLOCK|NGX_CONF_NOARGS,
43 ngx_server_block,
44 0,
45 0,
46 NULL },
Igor Sysoev4e9393a2003-01-09 05:36:00 +000047
Igor Sysoev865c1502003-11-30 20:03:18 +000048 { ngx_string("connection_pool_size"),
49 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
50 ngx_conf_set_size_slot,
51 NGX_HTTP_SRV_CONF_OFFSET,
52 offsetof(ngx_http_core_srv_conf_t, connection_pool_size),
53 NULL },
Igor Sysoev6a644c62003-03-04 06:33:48 +000054
Igor Sysoev865c1502003-11-30 20:03:18 +000055 { ngx_string("post_accept_timeout"),
56 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
57 ngx_conf_set_msec_slot,
58 NGX_HTTP_SRV_CONF_OFFSET,
59 offsetof(ngx_http_core_srv_conf_t, post_accept_timeout),
60 NULL },
Igor Sysoev187fcd82003-05-23 11:53:01 +000061
Igor Sysoev865c1502003-11-30 20:03:18 +000062 { ngx_string("request_pool_size"),
63 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
64 ngx_conf_set_size_slot,
65 NGX_HTTP_SRV_CONF_OFFSET,
66 offsetof(ngx_http_core_srv_conf_t, request_pool_size),
67 NULL },
Igor Sysoev187fcd82003-05-23 11:53:01 +000068
Igor Sysoev865c1502003-11-30 20:03:18 +000069 { ngx_string("client_header_timeout"),
70 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
71 ngx_conf_set_msec_slot,
72 NGX_HTTP_SRV_CONF_OFFSET,
73 offsetof(ngx_http_core_srv_conf_t, client_header_timeout),
74 NULL },
Igor Sysoev6a644c62003-03-04 06:33:48 +000075
Igor Sysoev865c1502003-11-30 20:03:18 +000076 { ngx_string("client_header_buffer_size"),
77 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
78 ngx_conf_set_size_slot,
79 NGX_HTTP_SRV_CONF_OFFSET,
80 offsetof(ngx_http_core_srv_conf_t, client_header_buffer_size),
81 NULL },
Igor Sysoev6a644c62003-03-04 06:33:48 +000082
Igor Sysoev865c1502003-11-30 20:03:18 +000083 { ngx_string("large_client_header"),
84 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_FLAG,
85 ngx_conf_set_flag_slot,
86 NGX_HTTP_SRV_CONF_OFFSET,
87 offsetof(ngx_http_core_srv_conf_t, large_client_header),
88 NULL },
Igor Sysoev6a644c62003-03-04 06:33:48 +000089
Igor Sysoev865c1502003-11-30 20:03:18 +000090 { ngx_string("location"),
91 NGX_HTTP_SRV_CONF|NGX_CONF_BLOCK|NGX_CONF_TAKE12,
92 ngx_location_block,
93 NGX_HTTP_SRV_CONF_OFFSET,
94 0,
95 NULL },
Igor Sysoev4e9393a2003-01-09 05:36:00 +000096
Igor Sysoev865c1502003-11-30 20:03:18 +000097 { ngx_string("listen"),
Igor Sysoev7578ec92003-06-02 15:24:30 +000098#if 0
Igor Sysoev865c1502003-11-30 20:03:18 +000099 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
Igor Sysoev7578ec92003-06-02 15:24:30 +0000100#else
Igor Sysoev865c1502003-11-30 20:03:18 +0000101 NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
Igor Sysoev7578ec92003-06-02 15:24:30 +0000102#endif
Igor Sysoev865c1502003-11-30 20:03:18 +0000103 ngx_set_listen,
104 NGX_HTTP_SRV_CONF_OFFSET,
105 0,
106 NULL },
Igor Sysoeva19a85e2003-01-28 15:56:37 +0000107
Igor Sysoev865c1502003-11-30 20:03:18 +0000108 { ngx_string("server_name"),
109 NGX_HTTP_SRV_CONF|NGX_CONF_1MORE,
110 ngx_set_server_name,
111 NGX_HTTP_SRV_CONF_OFFSET,
112 0,
113 NULL },
Igor Sysoev13933252003-05-29 13:02:09 +0000114
Igor Sysoev865c1502003-11-30 20:03:18 +0000115 { ngx_string("types"),
116 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF
117 |NGX_CONF_BLOCK|NGX_CONF_NOARGS,
118 ngx_types_block,
119 NGX_HTTP_LOC_CONF_OFFSET,
120 0,
121 NULL },
Igor Sysoev79a80482003-05-14 17:13:13 +0000122
Igor Sysoev865c1502003-11-30 20:03:18 +0000123 { ngx_string("default_type"),
124 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
125 ngx_conf_set_str_slot,
126 NGX_HTTP_LOC_CONF_OFFSET,
127 offsetof(ngx_http_core_loc_conf_t, default_type),
128 NULL },
Igor Sysoev6253ca12003-05-27 12:18:54 +0000129
Igor Sysoev865c1502003-11-30 20:03:18 +0000130 { ngx_string("root"),
131 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
132 ngx_conf_set_str_slot,
133 NGX_HTTP_LOC_CONF_OFFSET,
134 offsetof(ngx_http_core_loc_conf_t, doc_root),
135 NULL },
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000136
Igor Sysoev865c1502003-11-30 20:03:18 +0000137 { ngx_string("client_body_timeout"),
138 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
139 ngx_conf_set_msec_slot,
140 NGX_HTTP_LOC_CONF_OFFSET,
141 offsetof(ngx_http_core_loc_conf_t, client_body_timeout),
142 NULL },
Igor Sysoev2b0c76c2003-10-27 21:01:00 +0000143
Igor Sysoev865c1502003-11-30 20:03:18 +0000144 { ngx_string("sendfile"),
145 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_FLAG,
146 ngx_conf_set_flag_slot,
147 NGX_HTTP_LOC_CONF_OFFSET,
148 offsetof(ngx_http_core_loc_conf_t, sendfile),
149 NULL },
Igor Sysoev5bf3d252003-10-22 07:05:29 +0000150
Igor Sysoev865c1502003-11-30 20:03:18 +0000151 { ngx_string("send_timeout"),
152 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
153 ngx_conf_set_msec_slot,
154 NGX_HTTP_LOC_CONF_OFFSET,
155 offsetof(ngx_http_core_loc_conf_t, send_timeout),
156 NULL },
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000157
Igor Sysoev865c1502003-11-30 20:03:18 +0000158 { ngx_string("send_lowat"),
159 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
160 ngx_conf_set_size_slot,
161 NGX_HTTP_LOC_CONF_OFFSET,
162 offsetof(ngx_http_core_loc_conf_t, send_lowat),
163 &ngx_http_lowat_post },
Igor Sysoevb5faed22003-10-29 08:30:44 +0000164
Igor Sysoev865c1502003-11-30 20:03:18 +0000165 { ngx_string("keepalive_timeout"),
166 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
167 ngx_conf_set_msec_slot,
168 NGX_HTTP_LOC_CONF_OFFSET,
169 offsetof(ngx_http_core_loc_conf_t, keepalive_timeout),
170 NULL },
Igor Sysoevfa73aac2003-05-21 13:28:21 +0000171
Igor Sysoev865c1502003-11-30 20:03:18 +0000172 { ngx_string("lingering_time"),
173 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
174 ngx_conf_set_msec_slot,
175 NGX_HTTP_LOC_CONF_OFFSET,
176 offsetof(ngx_http_core_loc_conf_t, lingering_time),
177 NULL },
Igor Sysoevb7387572003-03-11 20:38:13 +0000178
Igor Sysoev865c1502003-11-30 20:03:18 +0000179 { ngx_string("lingering_timeout"),
180 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
181 ngx_conf_set_msec_slot,
182 NGX_HTTP_LOC_CONF_OFFSET,
183 offsetof(ngx_http_core_loc_conf_t, lingering_timeout),
184 NULL },
Igor Sysoevb7387572003-03-11 20:38:13 +0000185
Igor Sysoev865c1502003-11-30 20:03:18 +0000186 { ngx_string("msie_padding"),
187 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_FLAG,
188 ngx_conf_set_flag_slot,
189 NGX_HTTP_LOC_CONF_OFFSET,
190 offsetof(ngx_http_core_loc_conf_t, msie_padding),
191 NULL },
Igor Sysoev12b4b002003-10-24 06:53:41 +0000192
Igor Sysoev865c1502003-11-30 20:03:18 +0000193 { ngx_string("error_page"),
194 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_2MORE,
195 ngx_set_error_page,
196 NGX_HTTP_LOC_CONF_OFFSET,
197 0,
198 NULL },
Igor Sysoev74e95c22003-11-09 20:03:38 +0000199
Igor Sysoev865c1502003-11-30 20:03:18 +0000200 { ngx_string("error_log"),
201 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
202 ngx_set_error_log,
203 NGX_HTTP_LOC_CONF_OFFSET,
204 0,
205 NULL },
Igor Sysoev890fc962003-07-20 21:15:59 +0000206
Igor Sysoev865c1502003-11-30 20:03:18 +0000207 { ngx_string("open_file_cache"),
208 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE4,
209 ngx_http_set_cache_slot,
210 NGX_HTTP_LOC_CONF_OFFSET,
211 offsetof(ngx_http_core_loc_conf_t, open_files),
212 NULL },
213
214 ngx_null_command
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000215};
216
217
218ngx_http_module_t ngx_http_core_module_ctx = {
Igor Sysoev78329332003-11-10 17:17:31 +0000219 NULL, /* pre conf */
220
Igor Sysoeva9830112003-05-19 16:39:14 +0000221 ngx_http_core_create_main_conf, /* create main configuration */
222 ngx_http_core_init_main_conf, /* init main configuration */
Igor Sysoevdc479b42003-03-20 16:09:44 +0000223
Igor Sysoeva9830112003-05-19 16:39:14 +0000224 ngx_http_core_create_srv_conf, /* create server configuration */
225 ngx_http_core_merge_srv_conf, /* merge server configuration */
226
227 ngx_http_core_create_loc_conf, /* create location configuration */
228 ngx_http_core_merge_loc_conf /* merge location configuration */
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000229};
230
231
232ngx_module_t ngx_http_core_module = {
Igor Sysoev6253ca12003-05-27 12:18:54 +0000233 NGX_MODULE,
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000234 &ngx_http_core_module_ctx, /* module context */
235 ngx_http_core_commands, /* module directives */
Igor Sysoev6253ca12003-05-27 12:18:54 +0000236 NGX_HTTP_MODULE, /* module type */
Igor Sysoev96c56c92003-07-02 14:41:17 +0000237 ngx_http_core_init, /* init module */
Igor Sysoev340b03b2003-07-04 15:10:33 +0000238 NULL /* init child */
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000239};
240
241
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000242void ngx_http_handler(ngx_http_request_t *r)
243{
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000244 ngx_http_log_ctx_t *lcx;
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000245
246 r->connection->unexpected_eof = 0;
247
Igor Sysoev7578ec92003-06-02 15:24:30 +0000248 lcx = r->connection->log->data;
249 lcx->action = NULL;
250
Igor Sysoev419f9ac2003-10-21 16:49:56 +0000251 switch (r->headers_in.connection_type) {
252 case 0:
253 if (r->http_version > NGX_HTTP_VERSION_10) {
254 r->keepalive = 1;
255 } else {
Igor Sysoev9760a132003-10-21 07:47:21 +0000256 r->keepalive = 0;
257 }
Igor Sysoev419f9ac2003-10-21 16:49:56 +0000258 break;
259
260 case NGX_HTTP_CONNECTION_CLOSE:
261 r->keepalive = 0;
262 break;
263
264 case NGX_HTTP_CONNECTION_KEEP_ALIVE:
265 r->keepalive = 1;
266 break;
Igor Sysoev9760a132003-10-21 07:47:21 +0000267 }
268
Igor Sysoev10fc9ef2003-10-27 08:53:49 +0000269#if 0
Igor Sysoevdc9dd432003-10-22 16:38:26 +0000270 /* TEST STUB */ r->http_version = NGX_HTTP_VERSION_10;
Igor Sysoev9760a132003-10-21 07:47:21 +0000271 /* TEST STUB */ r->keepalive = 0;
272#endif
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000273
274 if (r->headers_in.content_length_n > 0) {
275 r->lingering_close = 1;
Igor Sysoev9760a132003-10-21 07:47:21 +0000276
277 } else {
278 r->lingering_close = 0;
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000279 }
280
Igor Sysoev9760a132003-10-21 07:47:21 +0000281#if 0
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000282 /* TEST STUB */ r->lingering_close = 1;
Igor Sysoev9760a132003-10-21 07:47:21 +0000283#endif
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000284
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000285 r->connection->write->event_handler = ngx_http_phase_event_handler;
Igor Sysoev6ddfbf02003-05-15 15:42:53 +0000286
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000287 ngx_http_run_phases(r);
288
289 return;
290}
Igor Sysoeve2a31542003-04-08 15:40:10 +0000291
292
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000293static void ngx_http_phase_event_handler(ngx_event_t *ev)
294{
295 ngx_connection_t *c;
296 ngx_http_request_t *r;
297
298 c = ev->data;
299 r = c->data;
300
Igor Sysoev0a280a32003-10-12 16:49:16 +0000301 ngx_log_debug(ev->log, "phase event handler");
302
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000303 ngx_http_run_phases(r);
304
305 return;
306}
307
308
309static void ngx_http_run_phases(ngx_http_request_t *r)
310{
Igor Sysoev865c1502003-11-30 20:03:18 +0000311 char *path;
312 ngx_int_t rc;
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000313 ngx_http_handler_pt *h;
Igor Sysoev865c1502003-11-30 20:03:18 +0000314 ngx_http_core_loc_conf_t *clcf;
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000315 ngx_http_core_main_conf_t *cmcf;
316
317 cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);
318
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000319 for (/* void */; r->phase < NGX_HTTP_LAST_PHASE; r->phase++) {
320
Igor Sysoev865c1502003-11-30 20:03:18 +0000321 if (r->phase == NGX_HTTP_CONTENT_PHASE && r->content_handler) {
322 r->connection->write->event_handler = ngx_http_empty_handler;
323 rc = r->content_handler(r);
324 ngx_http_finalize_request(r, rc);
325 return;
326 }
327
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000328 h = cmcf->phases[r->phase].handlers.elts;
329 for (r->phase_handler = cmcf->phases[r->phase].handlers.nelts - 1;
330 r->phase_handler >= 0;
331 r->phase_handler--)
332 {
333 rc = h[r->phase_handler](r);
334
Igor Sysoev9760a132003-10-21 07:47:21 +0000335 if (rc == NGX_DONE) {
Igor Sysoev865c1502003-11-30 20:03:18 +0000336
337 /*
338 * we should never use r here because
339 * it could point to already freed data
340 */
341
Igor Sysoev9760a132003-10-21 07:47:21 +0000342 return;
343 }
344
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000345 if (rc == NGX_DECLINED) {
346 continue;
347 }
348
Igor Sysoev865c1502003-11-30 20:03:18 +0000349 if (rc >= NGX_HTTP_SPECIAL_RESPONSE || rc == NGX_ERROR) {
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000350 ngx_http_finalize_request(r, rc);
351 return;
352 }
353
Igor Sysoeve3466a42003-12-15 13:57:13 +0000354 if (r->phase == NGX_HTTP_CONTENT_PHASE) {
355 ngx_http_finalize_request(r, rc);
356 return;
357 }
358
359 if (rc == NGX_AGAIN) {
Igor Sysoev865c1502003-11-30 20:03:18 +0000360 return;
361 }
362
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000363 if (rc == NGX_OK && cmcf->phases[r->phase].type == NGX_OK) {
364 break;
365 }
366 }
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000367 }
368
Igor Sysoev865c1502003-11-30 20:03:18 +0000369
370 if (r->uri.data[r->uri.len - 1] == '/') {
371
372 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
373
374 if (!(path = ngx_palloc(r->pool, clcf->doc_root.len + r->uri.len))) {
375 ngx_http_finalize_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
376 return;
377 }
378
379 ngx_cpystrn(ngx_cpymem(path, clcf->doc_root.data, clcf->doc_root.len),
380 r->uri.data, r->uri.len + 1);
381
382 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
383 "directory index of \"%s\" is forbidden", path);
384
385 ngx_http_finalize_request(r, NGX_HTTP_FORBIDDEN);
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000386 return;
387 }
388
Igor Sysoev865c1502003-11-30 20:03:18 +0000389 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "no handler found");
390
391 ngx_http_finalize_request(r, NGX_HTTP_NOT_FOUND);
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000392 return;
393}
394
395
396int ngx_http_find_location_config(ngx_http_request_t *r)
397{
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000398 ngx_int_t i, rc, exact;
Igor Sysoev1b138ed2003-11-18 21:34:08 +0000399 ngx_str_t *auto_redirect;
Igor Sysoev419f9ac2003-10-21 16:49:56 +0000400 ngx_http_core_loc_conf_t *clcf, **clcfp;
401 ngx_http_core_srv_conf_t *cscf;
Igor Sysoeve2a31542003-04-08 15:40:10 +0000402
Igor Sysoev6253ca12003-05-27 12:18:54 +0000403 cscf = ngx_http_get_module_srv_conf(r, ngx_http_core_module);
Igor Sysoev1b138ed2003-11-18 21:34:08 +0000404 auto_redirect = NULL;
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000405 exact = 0;
Igor Sysoeve2a31542003-04-08 15:40:10 +0000406
Igor Sysoev6253ca12003-05-27 12:18:54 +0000407 clcfp = cscf->locations.elts;
408 for (i = 0; i < cscf->locations.nelts; i++) {
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000409
Igor Sysoevdc867cd2003-12-14 20:10:27 +0000410#if (HAVE_PCRE)
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000411
412 if (clcfp[i]->regex) {
413 break;
414 }
Igor Sysoevdc867cd2003-12-14 20:10:27 +0000415#endif
416
417 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
418 "find location: %s\"%s\"",
419 clcfp[i]->exact_match ? "= " : "",
420 clcfp[i]->name.data);
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000421
Igor Sysoev1b138ed2003-11-18 21:34:08 +0000422 if (clcfp[i]->auto_redirect
423 && r->uri.len == clcfp[i]->name.len - 1
424 && ngx_strncmp(r->uri.data, clcfp[i]->name.data,
425 clcfp[i]->name.len - 1) == 0)
426 {
427 auto_redirect = &clcfp[i]->name;
428 continue;
429 }
430
Igor Sysoev890fc962003-07-20 21:15:59 +0000431 if (r->uri.len < clcfp[i]->name.len) {
432 continue;
433 }
Igor Sysoeve2a31542003-04-08 15:40:10 +0000434
Igor Sysoev65977492003-11-02 22:56:18 +0000435 rc = ngx_strncmp(r->uri.data, clcfp[i]->name.data, clcfp[i]->name.len);
Igor Sysoeve2a31542003-04-08 15:40:10 +0000436
Igor Sysoev890fc962003-07-20 21:15:59 +0000437 if (rc < 0) {
Igor Sysoev1b138ed2003-11-18 21:34:08 +0000438 /* locations are lexicographically sorted */
Igor Sysoev890fc962003-07-20 21:15:59 +0000439 break;
440 }
Igor Sysoeve2a31542003-04-08 15:40:10 +0000441
Igor Sysoev890fc962003-07-20 21:15:59 +0000442 if (rc == 0) {
443 r->loc_conf = clcfp[i]->loc_conf;
444 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
445 r->connection->log->file = clcf->err_log->file;
446 r->connection->log->log_level = clcf->err_log->log_level;
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000447
448 if (clcfp[i]->exact_match && r->uri.len == clcfp[i]->name.len) {
449 exact = 1;
450 break;
451 }
452 }
453 }
454
Igor Sysoevdc867cd2003-12-14 20:10:27 +0000455#if (HAVE_PCRE)
456
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000457 if (!exact && !auto_redirect) {
458 /* regex matches */
459
460 for (/* void */; i < cscf->locations.nelts; i++) {
461
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000462 if (!clcfp[i]->regex) {
463 continue;
464 }
465
Igor Sysoevdc867cd2003-12-14 20:10:27 +0000466 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
467 "find location: %s\"%s\"",
468 clcfp[i]->exact_match ? "= " :
469 clcfp[i]->regex ? "~ " : "",
470 clcfp[i]->name.data);
471
Igor Sysoev3b30a902003-12-25 20:26:58 +0000472 rc = ngx_regex_exec(clcfp[i]->regex, &r->uri, NULL, 0);
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000473
474 if (rc == NGX_DECLINED) {
475 continue;
476 }
477
478 if (rc < 0) {
479 ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0,
480 ngx_regex_exec_n
481 " failed: %d on \"%s\" using \"%s\"",
482 rc, r->uri.data, clcfp[i]->name.data);
483 return NGX_HTTP_INTERNAL_SERVER_ERROR;
484 }
485
486 /* match */
487
488 r->loc_conf = clcfp[i]->loc_conf;
489 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
490 r->connection->log->file = clcf->err_log->file;
491 r->connection->log->log_level = clcf->err_log->log_level;
492
493 break;
Igor Sysoev890fc962003-07-20 21:15:59 +0000494 }
Igor Sysoeve2a31542003-04-08 15:40:10 +0000495 }
496
Igor Sysoevdc867cd2003-12-14 20:10:27 +0000497#endif /* HAVE_PCRE */
498
Igor Sysoev419f9ac2003-10-21 16:49:56 +0000499 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
500
Igor Sysoev5bf3d252003-10-22 07:05:29 +0000501 if (!(ngx_io.flags & NGX_IO_SENDFILE) || !clcf->sendfile) {
502 r->sendfile = 0;
503
504 } else {
505 r->sendfile = 1;
506 }
507
Igor Sysoev1b138ed2003-11-18 21:34:08 +0000508 if (auto_redirect) {
509 if (!(r->headers_out.location =
510 ngx_http_add_header(&r->headers_out, ngx_http_headers_out)))
511 {
512 return NGX_HTTP_INTERNAL_SERVER_ERROR;
513 }
514
Igor Sysoev1b138ed2003-11-18 21:34:08 +0000515 r->headers_out.location->value = *auto_redirect;
516
517 return NGX_HTTP_MOVED_PERMANENTLY;
518 }
519
Igor Sysoev6253ca12003-05-27 12:18:54 +0000520 if (clcf->handler) {
Igor Sysoevb3e73d82003-10-10 15:10:50 +0000521 r->content_handler = clcf->handler;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000522 }
523
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000524 return NGX_OK;
525}
526
527
Igor Sysoev865c1502003-11-30 20:03:18 +0000528ngx_int_t ngx_http_set_content_type(ngx_http_request_t *r)
529{
530 uint32_t key;
531 ngx_int_t i;
532 ngx_http_type_t *type;
533 ngx_http_core_loc_conf_t *clcf;
534
535 if (!(r->headers_out.content_type =
536 ngx_http_add_header(&r->headers_out, ngx_http_headers_out)))
537 {
538 return NGX_HTTP_INTERNAL_SERVER_ERROR;
539 }
540
541 r->headers_out.content_type->key.len = 0;
542 r->headers_out.content_type->key.data = NULL;
543 r->headers_out.content_type->value.len = 0;
544 r->headers_out.content_type->value.data = NULL;
545
546 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
547
548 if (r->exten.len) {
549#if 0
550 key = ngx_crc(r->exten.data, r->exten.key);
551#endif
552 ngx_http_types_hash_key(key, r->exten);
553
554 type = clcf->types[key].elts;
555 for (i = 0; i < clcf->types[key].nelts; i++) {
556 if (r->exten.len != type[i].exten.len) {
557 continue;
558 }
559
560 if (ngx_memcmp(r->exten.data, type[i].exten.data, r->exten.len)
561 == 0)
562 {
563 r->headers_out.content_type->value = type[i].type;
564 break;
565 }
566 }
567 }
568
569 if (r->headers_out.content_type->value.len == 0) {
570 r->headers_out.content_type->value = clcf->default_type;
571 }
572
573 return NGX_OK;
574}
575
576
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000577int ngx_http_send_header(ngx_http_request_t *r)
578{
Igor Sysoev10fc9ef2003-10-27 08:53:49 +0000579 if (r->main) {
580 return NGX_OK;
581 }
582
Igor Sysoev27c30f92003-11-11 18:13:43 +0000583 if (r->err_ctx) {
Igor Sysoevd59a0472003-11-10 21:09:22 +0000584 r->headers_out.status = r->err_status;
585 r->headers_out.status_line.len = 0;
586 }
587
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000588 return (*ngx_http_top_header_filter)(r);
589}
590
591
592int ngx_http_redirect(ngx_http_request_t *r, int redirect)
593{
594 /* STUB */
595
596 /* log request */
597
Igor Sysoevd581fd52003-05-13 16:02:32 +0000598 ngx_http_close_request(r, 0);
599 return NGX_OK;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000600}
601
602
Igor Sysoev6253ca12003-05-27 12:18:54 +0000603int ngx_http_error(ngx_http_request_t *r, int error)
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000604{
605 /* STUB */
606 ngx_log_debug(r->connection->log, "http error: %d" _ error);
607
608 /* log request */
609
Igor Sysoevdc479b42003-03-20 16:09:44 +0000610 ngx_http_special_response_handler(r, error);
Igor Sysoevd581fd52003-05-13 16:02:32 +0000611 ngx_http_close_request(r, 0);
612 return NGX_OK;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000613}
614
615
Igor Sysoev3b30a902003-12-25 20:26:58 +0000616ngx_int_t ngx_http_set_exten(ngx_http_request_t *r)
617{
618 ngx_int_t i;
619
620 r->exten.len = 0;
621 r->exten.data = NULL;
622
623 for (i = r->uri.len - 1; i > 1; i--) {
624 if (r->uri.data[i] == '.' && r->uri.data[i - 1] != '/') {
625 r->exten.len = r->uri.len - i - 1;
626
627 if (r->exten.len > 0) {
628 if (!(r->exten.data = ngx_palloc(r->pool, r->exten.len + 1))) {
629 return NGX_ERROR;
630 }
631
632 ngx_cpystrn(r->exten.data, &r->uri.data[i + 1],
633 r->exten.len + 1);
634 }
635
636 break;
637
638 } else if (r->uri.data[i] == '/') {
639 break;
640 }
641 }
642
643 return NGX_OK;
644}
645
646
Igor Sysoev13933252003-05-29 13:02:09 +0000647int ngx_http_internal_redirect(ngx_http_request_t *r,
648 ngx_str_t *uri, ngx_str_t *args)
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000649{
Igor Sysoevdc867cd2003-12-14 20:10:27 +0000650 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
651 "internal redirect: \"%s\"", uri->data);
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000652
Igor Sysoev13933252003-05-29 13:02:09 +0000653 r->uri.len = uri->len;
654 r->uri.data = uri->data;
655
656 if (args) {
657 r->args.len = args->len;
658 r->args.data = args->data;
659 }
660
Igor Sysoev3b30a902003-12-25 20:26:58 +0000661 if (ngx_http_set_exten(r) != NGX_OK) {
662 return NGX_HTTP_INTERNAL_SERVER_ERROR;
Igor Sysoev13933252003-05-29 13:02:09 +0000663 }
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000664
Igor Sysoev27c30f92003-11-11 18:13:43 +0000665 if (r->err_ctx) {
Igor Sysoevd59a0472003-11-10 21:09:22 +0000666
Igor Sysoev27c30f92003-11-11 18:13:43 +0000667 /* allocate the new modules contexts */
668
Igor Sysoevd59a0472003-11-10 21:09:22 +0000669 r->ctx = ngx_pcalloc(r->pool, sizeof(void *) * ngx_http_max_module);
670 if (r->ctx == NULL) {
671 return NGX_HTTP_INTERNAL_SERVER_ERROR;
672 }
673
674 } else {
Igor Sysoev27c30f92003-11-11 18:13:43 +0000675
676 /* clear the modules contexts */
677
Igor Sysoevd59a0472003-11-10 21:09:22 +0000678 ngx_memzero(r->ctx, sizeof(void *) * ngx_http_max_module);
679 }
Igor Sysoev0a280a32003-10-12 16:49:16 +0000680
681 r->phase = 0;
682 r->phase_handler = 0;
683
Igor Sysoev79a80482003-05-14 17:13:13 +0000684 ngx_http_handler(r);
Igor Sysoev13933252003-05-29 13:02:09 +0000685
Igor Sysoev9760a132003-10-21 07:47:21 +0000686 return NGX_DONE;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000687}
688
689
Igor Sysoev0a280a32003-10-12 16:49:16 +0000690#if 1 /* STUB: test the delay http handler */
691
692int ngx_http_delay_handler(ngx_http_request_t *r)
693{
694 static int on;
695
696 if (on++ == 0) {
697 ngx_log_debug(r->connection->log, "SET http delay");
698 ngx_add_timer(r->connection->write, 10000);
699 return NGX_AGAIN;
700 }
701
702 r->connection->write->timedout = 0;
703 ngx_log_debug(r->connection->log, "RESET http delay");
704 return NGX_DECLINED;
705}
706
707#endif
708
709
Igor Sysoev340b03b2003-07-04 15:10:33 +0000710static int ngx_http_core_init(ngx_cycle_t *cycle)
Igor Sysoevdc479b42003-03-20 16:09:44 +0000711{
Igor Sysoevd404c972003-10-16 20:19:16 +0000712#if 0
Igor Sysoev9d9f58f2003-07-02 18:51:41 +0000713 ngx_http_handler_pt *h;
Igor Sysoevd404c972003-10-16 20:19:16 +0000714#endif
Igor Sysoev9d9f58f2003-07-02 18:51:41 +0000715 ngx_http_conf_ctx_t *ctx;
716 ngx_http_core_main_conf_t *cmcf;
Igor Sysoevdc479b42003-03-20 16:09:44 +0000717
Igor Sysoev9d9f58f2003-07-02 18:51:41 +0000718 ctx = (ngx_http_conf_ctx_t *) cycle->conf_ctx[ngx_http_module.index];
719 cmcf = ctx->main_conf[ngx_http_core_module.ctx_index];
720
Igor Sysoev0a280a32003-10-12 16:49:16 +0000721#if 0
722 ngx_test_null(h, ngx_push_array(
723 &cmcf->phases[NGX_HTTP_TRANSLATE_PHASE].handlers),
724 NGX_ERROR);
725 *h = ngx_http_delay_handler;
726#endif
727
Igor Sysoevdc479b42003-03-20 16:09:44 +0000728 return NGX_OK;
729}
730
731
Igor Sysoev6253ca12003-05-27 12:18:54 +0000732static char *ngx_server_block(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy)
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000733{
Igor Sysoev1c13c662003-05-20 15:37:55 +0000734 int m;
Igor Sysoeva9830112003-05-19 16:39:14 +0000735 char *rv;
736 ngx_http_module_t *module;
737 ngx_conf_t pcf;
738 ngx_http_conf_ctx_t *ctx, *hctx, *pctx;
739 ngx_http_core_main_conf_t *cmcf;
740 ngx_http_core_srv_conf_t *cscf, **cscfp;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000741
742 ngx_test_null(ctx,
743 ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t)),
744 NGX_CONF_ERROR);
745
Igor Sysoeva9830112003-05-19 16:39:14 +0000746 hctx = (ngx_http_conf_ctx_t *) cf->ctx;
747 ctx->main_conf = hctx->main_conf;
Igor Sysoevbb4ec5c2003-05-16 15:27:48 +0000748
Igor Sysoeva9830112003-05-19 16:39:14 +0000749 /* the server{}'s srv_conf */
Igor Sysoevbb4ec5c2003-05-16 15:27:48 +0000750
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000751 ngx_test_null(ctx->srv_conf,
752 ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module),
753 NGX_CONF_ERROR);
754
Igor Sysoeva9830112003-05-19 16:39:14 +0000755 /* the server{}'s loc_conf */
Igor Sysoevbb4ec5c2003-05-16 15:27:48 +0000756
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000757 ngx_test_null(ctx->loc_conf,
758 ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module),
759 NGX_CONF_ERROR);
760
Igor Sysoev1c13c662003-05-20 15:37:55 +0000761 for (m = 0; ngx_modules[m]; m++) {
Igor Sysoev6253ca12003-05-27 12:18:54 +0000762 if (ngx_modules[m]->type != NGX_HTTP_MODULE) {
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000763 continue;
764 }
765
Igor Sysoev6253ca12003-05-27 12:18:54 +0000766 module = ngx_modules[m]->ctx;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000767
768 if (module->create_srv_conf) {
Igor Sysoev6253ca12003-05-27 12:18:54 +0000769 ngx_test_null(ctx->srv_conf[ngx_modules[m]->ctx_index],
Igor Sysoev890fc962003-07-20 21:15:59 +0000770 module->create_srv_conf(cf),
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000771 NGX_CONF_ERROR);
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000772 }
773
774 if (module->create_loc_conf) {
Igor Sysoev6253ca12003-05-27 12:18:54 +0000775 ngx_test_null(ctx->loc_conf[ngx_modules[m]->ctx_index],
Igor Sysoev890fc962003-07-20 21:15:59 +0000776 module->create_loc_conf(cf),
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000777 NGX_CONF_ERROR);
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000778 }
779 }
780
Igor Sysoeva9830112003-05-19 16:39:14 +0000781 /* create links of the srv_conf's */
782
Igor Sysoev6253ca12003-05-27 12:18:54 +0000783 cscf = ctx->srv_conf[ngx_http_core_module.ctx_index];
Igor Sysoeva9830112003-05-19 16:39:14 +0000784 cscf->ctx = ctx;
785
Igor Sysoev6253ca12003-05-27 12:18:54 +0000786 cmcf = ctx->main_conf[ngx_http_core_module.ctx_index];
Igor Sysoeva9830112003-05-19 16:39:14 +0000787 ngx_test_null(cscfp, ngx_push_array(&cmcf->servers), NGX_CONF_ERROR);
788 *cscfp = cscf;
789
790 /* parse inside server{} */
791
Igor Sysoev79a80482003-05-14 17:13:13 +0000792 pcf = *cf;
793 pctx = cf->ctx;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000794 cf->ctx = ctx;
Igor Sysoev79a80482003-05-14 17:13:13 +0000795 cf->cmd_type = NGX_HTTP_SRV_CONF;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000796 rv = ngx_conf_parse(cf, NULL);
Igor Sysoev79a80482003-05-14 17:13:13 +0000797 *cf = pcf;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000798
Igor Sysoev13933252003-05-29 13:02:09 +0000799 if (rv != NGX_CONF_OK) {
800 return rv;
801 }
802
Igor Sysoevd9d0ca12003-11-21 06:30:49 +0000803 ngx_qsort(cscf->locations.elts, (size_t) cscf->locations.nelts,
Igor Sysoev13933252003-05-29 13:02:09 +0000804 sizeof(void *), ngx_cmp_locations);
805
Igor Sysoeva9830112003-05-19 16:39:14 +0000806 return rv;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000807}
808
809
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000810static int ngx_cmp_locations(const void *one, const void *two)
Igor Sysoev13933252003-05-29 13:02:09 +0000811{
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000812 ngx_http_core_loc_conf_t *first = *(ngx_http_core_loc_conf_t **) one;
813 ngx_http_core_loc_conf_t *second = *(ngx_http_core_loc_conf_t **) two;
Igor Sysoev13933252003-05-29 13:02:09 +0000814
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000815 ngx_int_t rc;
816
Igor Sysoevdc867cd2003-12-14 20:10:27 +0000817#if (HAVE_PCRE)
818
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000819 if (first->regex && !second->regex) {
820 /* shift regex matches to the end */
821 return 1;
822 }
823
824 if (first->regex || second->regex) {
825 /* do not sort regex matches */
826 return 0;
827 }
828
Igor Sysoevdc867cd2003-12-14 20:10:27 +0000829#endif
830
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000831 rc = ngx_strcmp(first->name.data, second->name.data);
832
833 if (rc == 0 && second->exact_match) {
834 /* an exact match must be before the same inclusive one */
835 return 1;
836 }
837
838 return rc;
Igor Sysoev13933252003-05-29 13:02:09 +0000839}
840
841
Igor Sysoev6253ca12003-05-27 12:18:54 +0000842static char *ngx_location_block(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy)
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000843{
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000844 char *rv;
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000845 ngx_int_t m;
846 ngx_str_t *value, err;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000847 ngx_http_module_t *module;
Igor Sysoev74e95c22003-11-09 20:03:38 +0000848 ngx_conf_t pvcf;
849 ngx_http_conf_ctx_t *ctx, *pvctx;
Igor Sysoeva9830112003-05-19 16:39:14 +0000850 ngx_http_core_srv_conf_t *cscf;
851 ngx_http_core_loc_conf_t *clcf, **clcfp;
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000852 char errstr[NGX_MAX_CONF_ERRSTR];
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000853
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000854 if (!(ctx = ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t)))) {
855 return NGX_CONF_ERROR;
856 }
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000857
Igor Sysoev74e95c22003-11-09 20:03:38 +0000858 pvctx = (ngx_http_conf_ctx_t *) cf->ctx;
859 ctx->main_conf = pvctx->main_conf;
860 ctx->srv_conf = pvctx->srv_conf;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000861
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000862 ctx->loc_conf = ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module);
863 if (ctx->loc_conf == NULL) {
864 return NGX_CONF_ERROR;
865 }
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000866
Igor Sysoev6253ca12003-05-27 12:18:54 +0000867 for (m = 0; ngx_modules[m]; m++) {
868 if (ngx_modules[m]->type != NGX_HTTP_MODULE) {
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000869 continue;
870 }
871
Igor Sysoev6253ca12003-05-27 12:18:54 +0000872 module = ngx_modules[m]->ctx;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000873
874 if (module->create_loc_conf) {
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000875 ctx->loc_conf[ngx_modules[m]->ctx_index] =
876 module->create_loc_conf(cf);
877 if (ctx->loc_conf[ngx_modules[m]->ctx_index] == NULL) {
878 return NGX_CONF_ERROR;
879 }
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000880 }
881 }
882
Igor Sysoev6253ca12003-05-27 12:18:54 +0000883 clcf = ctx->loc_conf[ngx_http_core_module.ctx_index];
Igor Sysoeva9830112003-05-19 16:39:14 +0000884 clcf->loc_conf = ctx->loc_conf;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000885
Igor Sysoev3b30a902003-12-25 20:26:58 +0000886 value = cf->args->elts;
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000887
888 if (cf->args->nelts == 3) {
889 if (value[1].len == 1 && value[1].data[0] == '=') {
890 clcf->name.len = value[2].len;
891 clcf->name.data = value[2].data;
892 clcf->exact_match = 1;
893
894 } else if ((value[1].len == 1 && value[1].data[0] == '~')
895 || (value[1].len == 2
896 && value[1].data[0] == '~'
897 && value[1].data[1] == '*'))
898 {
Igor Sysoevdc867cd2003-12-14 20:10:27 +0000899#if (HAVE_PCRE)
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000900 err.len = NGX_MAX_CONF_ERRSTR;
901 err.data = errstr;
902
903 clcf->regex = ngx_regex_compile(&value[2],
904 value[1].len == 2 ? NGX_REGEX_CASELESS: 0,
905 cf->pool, &err);
906
907 if (clcf->regex == NULL) {
908 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "%s", err.data);
909 return NGX_CONF_ERROR;
910 }
911
Igor Sysoev3b30a902003-12-25 20:26:58 +0000912 clcf->name = value[2];
Igor Sysoevdc867cd2003-12-14 20:10:27 +0000913#else
914 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
915 "the using of the regex \"%s\" "
916 "requires PCRE library",
917 value[2].data);
918 return NGX_CONF_ERROR;
919#endif
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000920
921 } else {
922 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
923 "invalid location modifier \"%s\"",
924 value[1].data);
925 return NGX_CONF_ERROR;
926 }
927
928 } else {
929 clcf->name.len = value[1].len;
930 clcf->name.data = value[1].data;
931 }
932
Igor Sysoev6253ca12003-05-27 12:18:54 +0000933 cscf = ctx->srv_conf[ngx_http_core_module.ctx_index];
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000934 if (!(clcfp = ngx_push_array(&cscf->locations))) {
935 return NGX_CONF_ERROR;
936 }
Igor Sysoeva9830112003-05-19 16:39:14 +0000937 *clcfp = clcf;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000938
Igor Sysoev74e95c22003-11-09 20:03:38 +0000939 pvcf = *cf;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000940 cf->ctx = ctx;
Igor Sysoev79a80482003-05-14 17:13:13 +0000941 cf->cmd_type = NGX_HTTP_LOC_CONF;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000942 rv = ngx_conf_parse(cf, NULL);
Igor Sysoev74e95c22003-11-09 20:03:38 +0000943 *cf = pvcf;
Igor Sysoev79a80482003-05-14 17:13:13 +0000944
945 return rv;
946}
947
948
Igor Sysoevaa3436c2003-05-30 14:27:59 +0000949static char *ngx_types_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoev79a80482003-05-14 17:13:13 +0000950{
Igor Sysoevaa3436c2003-05-30 14:27:59 +0000951 char *rv;
952 ngx_conf_t pcf;
953
954 pcf = *cf;
955 cf->handler = ngx_set_type;
956 cf->handler_conf = conf;
957 rv = ngx_conf_parse(cf, NULL);
958 *cf = pcf;
959
960 return rv;
961}
962
963
964static char *ngx_set_type(ngx_conf_t *cf, ngx_command_t *dummy, void *conf)
965{
966 ngx_http_core_loc_conf_t *lcf = conf;
Igor Sysoev79a80482003-05-14 17:13:13 +0000967
968 int i, key;
969 ngx_str_t *args;
Igor Sysoev865c1502003-11-30 20:03:18 +0000970 ngx_http_type_t *type;
Igor Sysoev79a80482003-05-14 17:13:13 +0000971
972 if (lcf->types == NULL) {
973 ngx_test_null(lcf->types,
974 ngx_palloc(cf->pool, NGX_HTTP_TYPES_HASH_PRIME
975 * sizeof(ngx_array_t)),
976 NGX_CONF_ERROR);
977
978 for (i = 0; i < NGX_HTTP_TYPES_HASH_PRIME; i++) {
979 ngx_init_array(lcf->types[i], cf->pool, 5, sizeof(ngx_http_type_t),
980 NGX_CONF_ERROR);
981 }
982 }
983
984 args = (ngx_str_t *) cf->args->elts;
985
986 for (i = 1; i < cf->args->nelts; i++) {
987 ngx_http_types_hash_key(key, args[i]);
988
Igor Sysoev865c1502003-11-30 20:03:18 +0000989 ngx_test_null(type, ngx_push_array(&lcf->types[key]), NGX_CONF_ERROR);
990 type->exten = args[i];
991 type->type = args[0];
Igor Sysoev79a80482003-05-14 17:13:13 +0000992 }
993
994 return NGX_CONF_OK;
995}
996
997
Igor Sysoev890fc962003-07-20 21:15:59 +0000998static void *ngx_http_core_create_main_conf(ngx_conf_t *cf)
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000999{
Igor Sysoeva9830112003-05-19 16:39:14 +00001000 ngx_http_core_main_conf_t *cmcf;
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001001
Igor Sysoeva9830112003-05-19 16:39:14 +00001002 ngx_test_null(cmcf,
Igor Sysoevb3e73d82003-10-10 15:10:50 +00001003 ngx_pcalloc(cf->pool, sizeof(ngx_http_core_main_conf_t)),
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001004 NGX_CONF_ERROR);
1005
Igor Sysoev890fc962003-07-20 21:15:59 +00001006 ngx_init_array(cmcf->servers, cf->pool,
1007 5, sizeof(ngx_http_core_srv_conf_t *),
Igor Sysoevad22e012003-01-15 07:02:27 +00001008 NGX_CONF_ERROR);
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001009
Igor Sysoeva9830112003-05-19 16:39:14 +00001010 return cmcf;
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001011}
1012
1013
Igor Sysoev890fc962003-07-20 21:15:59 +00001014static char *ngx_http_core_init_main_conf(ngx_conf_t *cf, void *conf)
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001015{
Igor Sysoev6253ca12003-05-27 12:18:54 +00001016 ngx_http_core_main_conf_t *cmcf = conf;
Igor Sysoeva9830112003-05-19 16:39:14 +00001017
Igor Sysoev239baac2003-06-11 15:28:34 +00001018 /* TODO: remove it if no directives */
Igor Sysoeva9830112003-05-19 16:39:14 +00001019
1020 return NGX_CONF_OK;
1021}
1022
1023
Igor Sysoev890fc962003-07-20 21:15:59 +00001024static void *ngx_http_core_create_srv_conf(ngx_conf_t *cf)
Igor Sysoeva9830112003-05-19 16:39:14 +00001025{
1026 ngx_http_core_srv_conf_t *cscf;
1027
1028 ngx_test_null(cscf,
Igor Sysoev890fc962003-07-20 21:15:59 +00001029 ngx_pcalloc(cf->pool, sizeof(ngx_http_core_srv_conf_t)),
Igor Sysoeva9830112003-05-19 16:39:14 +00001030 NGX_CONF_ERROR);
1031
Igor Sysoev890fc962003-07-20 21:15:59 +00001032 ngx_init_array(cscf->locations, cf->pool,
1033 5, sizeof(void *), NGX_CONF_ERROR);
1034 ngx_init_array(cscf->listen, cf->pool, 5, sizeof(ngx_http_listen_t),
Igor Sysoeva9830112003-05-19 16:39:14 +00001035 NGX_CONF_ERROR);
Igor Sysoev890fc962003-07-20 21:15:59 +00001036 ngx_init_array(cscf->server_names, cf->pool,
1037 5, sizeof(ngx_http_server_name_t), NGX_CONF_ERROR);
Igor Sysoeva9830112003-05-19 16:39:14 +00001038
Igor Sysoev239baac2003-06-11 15:28:34 +00001039 cscf->connection_pool_size = NGX_CONF_UNSET;
1040 cscf->post_accept_timeout = NGX_CONF_UNSET;
Igor Sysoev187fcd82003-05-23 11:53:01 +00001041 cscf->request_pool_size = NGX_CONF_UNSET;
1042 cscf->client_header_timeout = NGX_CONF_UNSET;
1043 cscf->client_header_buffer_size = NGX_CONF_UNSET;
1044 cscf->large_client_header = NGX_CONF_UNSET;
1045
Igor Sysoeva9830112003-05-19 16:39:14 +00001046 return cscf;
1047}
1048
1049
Igor Sysoev890fc962003-07-20 21:15:59 +00001050static char *ngx_http_core_merge_srv_conf(ngx_conf_t *cf,
Igor Sysoeva9830112003-05-19 16:39:14 +00001051 void *parent, void *child)
1052{
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001053 ngx_http_core_srv_conf_t *prev = parent;
1054 ngx_http_core_srv_conf_t *conf = child;
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001055
1056 ngx_http_listen_t *l;
Igor Sysoevad22e012003-01-15 07:02:27 +00001057 ngx_http_server_name_t *n;
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001058
Igor Sysoev7578ec92003-06-02 15:24:30 +00001059 /* TODO: it does not merge, it inits only */
Igor Sysoeva9830112003-05-19 16:39:14 +00001060
1061 if (conf->listen.nelts == 0) {
1062 ngx_test_null(l, ngx_push_array(&conf->listen), NGX_CONF_ERROR);
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001063 l->addr = INADDR_ANY;
Igor Sysoev1c104622003-06-03 15:42:58 +00001064#if (WIN32)
1065 l->port = 80;
1066#else
Igor Sysoev7578ec92003-06-02 15:24:30 +00001067 /* STUB: getuid() should be cached */
1068 l->port = (getuid() == 0) ? 80 : 8000;
Igor Sysoev1c104622003-06-03 15:42:58 +00001069#endif
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001070 l->family = AF_INET;
1071 }
1072
Igor Sysoeva9830112003-05-19 16:39:14 +00001073 if (conf->server_names.nelts == 0) {
1074 ngx_test_null(n, ngx_push_array(&conf->server_names), NGX_CONF_ERROR);
Igor Sysoev890fc962003-07-20 21:15:59 +00001075 ngx_test_null(n->name.data, ngx_palloc(cf->pool, NGX_MAXHOSTNAMELEN),
Igor Sysoevad22e012003-01-15 07:02:27 +00001076 NGX_CONF_ERROR);
Igor Sysoev13933252003-05-29 13:02:09 +00001077
Igor Sysoevad22e012003-01-15 07:02:27 +00001078 if (gethostname(n->name.data, NGX_MAXHOSTNAMELEN) == -1) {
Igor Sysoev8e1fbe62003-07-18 14:44:05 +00001079 ngx_conf_log_error(NGX_LOG_EMERG, cf, ngx_errno,
1080 "gethostname() failed");
1081 return NGX_CONF_ERROR;
Igor Sysoevad22e012003-01-15 07:02:27 +00001082 }
Igor Sysoev13933252003-05-29 13:02:09 +00001083
Igor Sysoevad22e012003-01-15 07:02:27 +00001084 n->name.len = ngx_strlen(n->name.data);
1085 n->core_srv_conf = conf;
1086 }
1087
Igor Sysoev239baac2003-06-11 15:28:34 +00001088 ngx_conf_merge_size_value(conf->connection_pool_size,
1089 prev->connection_pool_size, 16384);
1090 ngx_conf_merge_msec_value(conf->post_accept_timeout,
1091 prev->post_accept_timeout, 30000);
Igor Sysoev187fcd82003-05-23 11:53:01 +00001092 ngx_conf_merge_size_value(conf->request_pool_size,
1093 prev->request_pool_size, 16384);
1094 ngx_conf_merge_msec_value(conf->client_header_timeout,
1095 prev->client_header_timeout, 60000);
1096 ngx_conf_merge_size_value(conf->client_header_buffer_size,
1097 prev->client_header_buffer_size, 1024);
1098 ngx_conf_merge_value(conf->large_client_header,
1099 prev->large_client_header, 1);
1100
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001101 return NGX_CONF_OK;
1102}
1103
1104
Igor Sysoev890fc962003-07-20 21:15:59 +00001105static void *ngx_http_core_create_loc_conf(ngx_conf_t *cf)
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001106{
1107 ngx_http_core_loc_conf_t *lcf;
1108
1109 ngx_test_null(lcf,
Igor Sysoev890fc962003-07-20 21:15:59 +00001110 ngx_pcalloc(cf->pool, sizeof(ngx_http_core_loc_conf_t)),
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001111 NGX_CONF_ERROR);
1112
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001113 /* set by ngx_pcalloc():
Igor Sysoev79a80482003-05-14 17:13:13 +00001114
1115 lcf->doc_root.len = 0;
1116 lcf->doc_root.data = NULL;
1117 lcf->types = NULL;
Igor Sysoev6253ca12003-05-27 12:18:54 +00001118 lcf->default_type.len = 0;
1119 lcf->default_type.data = NULL;
Igor Sysoev9d639522003-07-07 06:11:50 +00001120 lcf->err_log = NULL;
Igor Sysoev74e95c22003-11-09 20:03:38 +00001121 lcf->error_pages = NULL;
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001122
Igor Sysoeva8fa0a62003-11-25 20:44:56 +00001123 lcf->regex = NULL;
1124 lcf->exact_match = 0;
1125 lcf->auto_redirect = 0;
1126
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001127 */
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001128
Igor Sysoev2b0c76c2003-10-27 21:01:00 +00001129 lcf->client_body_timeout = NGX_CONF_UNSET;
Igor Sysoev5bf3d252003-10-22 07:05:29 +00001130 lcf->sendfile = NGX_CONF_UNSET;
Igor Sysoev79a80482003-05-14 17:13:13 +00001131 lcf->send_timeout = NGX_CONF_UNSET;
Igor Sysoevb5faed22003-10-29 08:30:44 +00001132 lcf->send_lowat = NGX_CONF_UNSET;
Igor Sysoev79a80482003-05-14 17:13:13 +00001133 lcf->discarded_buffer_size = NGX_CONF_UNSET;
Igor Sysoevfa73aac2003-05-21 13:28:21 +00001134 lcf->keepalive_timeout = NGX_CONF_UNSET;
Igor Sysoev79a80482003-05-14 17:13:13 +00001135 lcf->lingering_time = NGX_CONF_UNSET;
1136 lcf->lingering_timeout = NGX_CONF_UNSET;
1137
Igor Sysoev12b4b002003-10-24 06:53:41 +00001138 lcf->msie_padding = NGX_CONF_UNSET;
1139
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001140 return lcf;
1141}
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001142
Igor Sysoev79a80482003-05-14 17:13:13 +00001143
1144static ngx_http_type_t default_types[] = {
1145 { ngx_string("html"), ngx_string("text/html") },
1146 { ngx_string("gif"), ngx_string("image/gif") },
1147 { ngx_string("jpg"), ngx_string("image/jpeg") },
1148 { ngx_null_string, ngx_null_string }
1149};
1150
1151
Igor Sysoev890fc962003-07-20 21:15:59 +00001152static char *ngx_http_core_merge_loc_conf(ngx_conf_t *cf,
Igor Sysoeve2a31542003-04-08 15:40:10 +00001153 void *parent, void *child)
1154{
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001155 ngx_http_core_loc_conf_t *prev = parent;
1156 ngx_http_core_loc_conf_t *conf = child;
Igor Sysoev79a80482003-05-14 17:13:13 +00001157
1158 int i, key;
1159 ngx_http_type_t *t;
1160
Igor Sysoev7578ec92003-06-02 15:24:30 +00001161 ngx_conf_merge_str_value(conf->doc_root, prev->doc_root, "html");
Igor Sysoev79a80482003-05-14 17:13:13 +00001162
1163 if (conf->types == NULL) {
1164 if (prev->types) {
1165 conf->types = prev->types;
1166
1167 } else {
1168 ngx_test_null(conf->types,
Igor Sysoev890fc962003-07-20 21:15:59 +00001169 ngx_palloc(cf->pool, NGX_HTTP_TYPES_HASH_PRIME
Igor Sysoev79a80482003-05-14 17:13:13 +00001170 * sizeof(ngx_array_t)),
1171 NGX_CONF_ERROR);
1172
1173 for (i = 0; i < NGX_HTTP_TYPES_HASH_PRIME; i++) {
Igor Sysoev890fc962003-07-20 21:15:59 +00001174 ngx_init_array(conf->types[i], cf->pool,
1175 5, sizeof(ngx_http_type_t), NGX_CONF_ERROR);
Igor Sysoev79a80482003-05-14 17:13:13 +00001176 }
1177
1178 for (i = 0; default_types[i].exten.len; i++) {
1179 ngx_http_types_hash_key(key, default_types[i].exten);
1180
1181 ngx_test_null(t, ngx_push_array(&conf->types[key]),
1182 NGX_CONF_ERROR);
1183 t->exten.len = default_types[i].exten.len;
1184 t->exten.data = default_types[i].exten.data;
1185 t->type.len = default_types[i].type.len;
1186 t->type.data = default_types[i].type.data;
1187 }
1188 }
1189 }
1190
Igor Sysoev890fc962003-07-20 21:15:59 +00001191 if (conf->err_log == NULL) {
1192 if (prev->err_log) {
1193 conf->err_log = prev->err_log;
1194 } else {
1195 conf->err_log = cf->cycle->log;
1196 }
1197 }
1198
Igor Sysoev74e95c22003-11-09 20:03:38 +00001199 if (conf->error_pages == NULL && prev->error_pages) {
1200 conf->error_pages = prev->error_pages;
1201 }
1202
Igor Sysoev6253ca12003-05-27 12:18:54 +00001203 ngx_conf_merge_str_value(conf->default_type,
1204 prev->default_type, "text/plain");
1205
Igor Sysoev2b0c76c2003-10-27 21:01:00 +00001206 ngx_conf_merge_msec_value(conf->client_body_timeout,
1207 prev->client_body_timeout, 10000);
Igor Sysoev5bf3d252003-10-22 07:05:29 +00001208 ngx_conf_merge_value(conf->sendfile, prev->sendfile, 0);
Igor Sysoeva9830112003-05-19 16:39:14 +00001209 ngx_conf_merge_msec_value(conf->send_timeout, prev->send_timeout, 10000);
Igor Sysoevb5faed22003-10-29 08:30:44 +00001210 ngx_conf_merge_size_value(conf->send_lowat, prev->send_lowat, 0);
Igor Sysoeva9830112003-05-19 16:39:14 +00001211 ngx_conf_merge_size_value(conf->discarded_buffer_size,
1212 prev->discarded_buffer_size, 1500);
Igor Sysoev187fcd82003-05-23 11:53:01 +00001213 ngx_conf_merge_msec_value(conf->keepalive_timeout,
1214 prev->keepalive_timeout, 70000);
1215 ngx_conf_merge_msec_value(conf->lingering_time,
1216 prev->lingering_time, 30000);
1217 ngx_conf_merge_msec_value(conf->lingering_timeout,
1218 prev->lingering_timeout, 5000);
Igor Sysoev79a80482003-05-14 17:13:13 +00001219
Igor Sysoev12b4b002003-10-24 06:53:41 +00001220 ngx_conf_merge_value(conf->msie_padding, prev->msie_padding, 1);
1221
Igor Sysoev865c1502003-11-30 20:03:18 +00001222 if (conf->open_files == NULL) {
1223 conf->open_files = prev->open_files;
1224 }
1225
Igor Sysoeve2a31542003-04-08 15:40:10 +00001226 return NGX_CONF_OK;
1227}
1228
Igor Sysoev79a80482003-05-14 17:13:13 +00001229
Igor Sysoev6253ca12003-05-27 12:18:54 +00001230static char *ngx_set_listen(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001231{
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001232 ngx_http_core_srv_conf_t *scf = conf;
Igor Sysoeva9830112003-05-19 16:39:14 +00001233
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001234 char *addr;
Igor Sysoev1c13c662003-05-20 15:37:55 +00001235 u_int p;
Igor Sysoev6253ca12003-05-27 12:18:54 +00001236 struct hostent *h;
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001237 ngx_str_t *args;
1238 ngx_http_listen_t *ls;
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001239
Igor Sysoev239baac2003-06-11 15:28:34 +00001240 /* TODO: check duplicate 'listen' directives,
Igor Sysoev13933252003-05-29 13:02:09 +00001241 add resolved name to server names ??? */
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001242
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001243 ngx_test_null(ls, ngx_push_array(&scf->listen), NGX_CONF_ERROR);
1244
1245 /* AF_INET only */
1246
1247 ls->family = AF_INET;
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001248 ls->flags = 0;
Igor Sysoevfe5cb6b2003-01-29 07:25:51 +00001249 ls->file_name = cf->conf_file->file.name;
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001250 ls->line = cf->conf_file->line;
1251
Igor Sysoev13933252003-05-29 13:02:09 +00001252 args = cf->args->elts;
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001253 addr = args[1].data;
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001254
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001255 for (p = 0; p < args[1].len; p++) {
1256 if (addr[p] == ':') {
1257 addr[p++] = '\0';
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001258 break;
1259 }
1260 }
1261
1262 if (p == args[1].len) {
Igor Sysoev13933252003-05-29 13:02:09 +00001263 /* no ":" in the "listen" */
Igor Sysoev6ddfbf02003-05-15 15:42:53 +00001264 p = 0;
1265 }
1266
1267 ls->port = ngx_atoi(&addr[p], args[1].len - p);
Igor Sysoev13933252003-05-29 13:02:09 +00001268 if (ls->port == NGX_ERROR && p == 0) {
1269
1270 /* "listen host" */
1271 ls->port = 80;
1272
1273 } else if ((ls->port == NGX_ERROR && p != 0) /* "listen host:NONNUMBER" */
1274 || (ls->port < 1 || ls->port > 65536)) { /* "listen 99999" */
1275
Igor Sysoev8e1fbe62003-07-18 14:44:05 +00001276 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1277 "invalid port \"%s\" in \"%s\" directive, "
1278 "it must be a number between 1 and 65535",
1279 &addr[p], cmd->name.data);
1280
1281 return NGX_CONF_ERROR;
Igor Sysoev13933252003-05-29 13:02:09 +00001282
1283 } else if (p == 0) {
1284 ls->addr = INADDR_ANY;
1285 return NGX_CONF_OK;
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001286 }
1287
Igor Sysoev13933252003-05-29 13:02:09 +00001288 ls->addr = inet_addr(addr);
1289 if (ls->addr == INADDR_NONE) {
1290 h = gethostbyname(addr);
1291
1292 if (h == NULL || h->h_addr_list[0] == NULL) {
Igor Sysoev8e1fbe62003-07-18 14:44:05 +00001293 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1294 "can not resolve host \"%s\" "
1295 "in \"%s\" directive", addr, cmd->name.data);
1296 return NGX_CONF_ERROR;
Igor Sysoev13933252003-05-29 13:02:09 +00001297 }
1298
Igor Sysoeva8fa0a62003-11-25 20:44:56 +00001299 ls->addr = *(in_addr_t *)(h->h_addr_list[0]);
Igor Sysoev13933252003-05-29 13:02:09 +00001300 }
1301
1302 return NGX_CONF_OK;
1303}
1304
1305
1306static char *ngx_set_server_name(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
1307{
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001308 ngx_http_core_srv_conf_t *scf = conf;
Igor Sysoev13933252003-05-29 13:02:09 +00001309
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001310 int i;
1311 ngx_str_t *value;
Igor Sysoev13933252003-05-29 13:02:09 +00001312 ngx_http_server_name_t *sn;
1313
1314 /* TODO: several names */
1315 /* TODO: warn about duplicate 'server_name' directives */
1316
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001317 value = cf->args->elts;
Igor Sysoev13933252003-05-29 13:02:09 +00001318
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001319 for (i = 1; i < cf->args->nelts; i++) {
1320 if (value[i].len == 0) {
Igor Sysoev8e1fbe62003-07-18 14:44:05 +00001321 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1322 "server name \"%s\" is invalid "
1323 "in \"%s\" directive",
1324 value[i].data, cmd->name.data);
1325 return NGX_CONF_ERROR;
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001326 }
Igor Sysoev13933252003-05-29 13:02:09 +00001327
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001328 ngx_test_null(sn, ngx_push_array(&scf->server_names), NGX_CONF_ERROR);
1329
1330 sn->name.len = value[i].len;
1331 sn->name.data = value[i].data;
1332 sn->core_srv_conf = scf;
1333 }
Igor Sysoev13933252003-05-29 13:02:09 +00001334
Igor Sysoeva19a85e2003-01-28 15:56:37 +00001335 return NGX_CONF_OK;
1336}
Igor Sysoev9d639522003-07-07 06:11:50 +00001337
1338
Igor Sysoev74e95c22003-11-09 20:03:38 +00001339static char *ngx_set_error_page(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
1340{
1341 ngx_http_core_loc_conf_t *lcf = conf;
1342
1343 int i;
1344 ngx_str_t *value;
1345 ngx_http_err_page_t *err;
1346
1347 if (lcf->error_pages == NULL) {
1348 lcf->error_pages = ngx_create_array(cf->pool, 5,
1349 sizeof(ngx_http_err_page_t));
1350 if (lcf->error_pages == NULL) {
1351 return NGX_CONF_ERROR;
1352 }
1353 }
1354
1355 value = cf->args->elts;
1356
1357 for (i = 1; i < cf->args->nelts - 1; i++) {
1358 ngx_test_null(err, ngx_push_array(lcf->error_pages), NGX_CONF_ERROR);
1359 err->code = ngx_atoi(value[i].data, value[i].len);
1360 if (err->code == NGX_ERROR) {
1361 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1362 "invalid value \"%s\"", value[i].data);
1363 return NGX_CONF_ERROR;
1364 }
1365
1366 if (err->code < 400 || err->code > 599) {
1367 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1368 "value \"%s\" must be between 400 and 599",
1369 value[i].data);
1370 return NGX_CONF_ERROR;
1371 }
1372
1373 err->uri = value[cf->args->nelts - 1];
1374 }
1375
1376 return NGX_CONF_OK;
1377}
1378
1379
Igor Sysoev9d639522003-07-07 06:11:50 +00001380static char *ngx_set_error_log(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
1381{
1382 ngx_http_core_loc_conf_t *lcf = conf;
1383
Igor Sysoev5f800782003-12-08 20:48:12 +00001384#if 0
Igor Sysoev9d639522003-07-07 06:11:50 +00001385 ngx_str_t *value;
1386
1387 value = cf->args->elts;
Igor Sysoev5f800782003-12-08 20:48:12 +00001388#endif
Igor Sysoev9d639522003-07-07 06:11:50 +00001389
Igor Sysoevb8c367c2003-07-10 16:26:57 +00001390 ngx_test_null(lcf->err_log,
Igor Sysoev5f800782003-12-08 20:48:12 +00001391 ngx_log_create_errlog(cf->cycle, cf->args),
Igor Sysoev9d639522003-07-07 06:11:50 +00001392 NGX_CONF_ERROR);
1393
Igor Sysoev9d639522003-07-07 06:11:50 +00001394 return NGX_CONF_OK;
1395}
Igor Sysoevb5faed22003-10-29 08:30:44 +00001396
1397
1398static char *ngx_http_lowat_check(ngx_conf_t *cf, void *post, void *data)
1399{
Igor Sysoevb5faed22003-10-29 08:30:44 +00001400#if (HAVE_LOWAT_EVENT)
1401
Igor Sysoev74e95c22003-11-09 20:03:38 +00001402 int *np = data;
1403
Igor Sysoevb5faed22003-10-29 08:30:44 +00001404 if (*np >= ngx_freebsd_net_inet_tcp_sendspace) {
1405 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1406 "\"send_lowat\" must be less than %d "
1407 "(sysctl net.inet.tcp.sendspace)",
1408 ngx_freebsd_net_inet_tcp_sendspace);
1409
1410 return NGX_CONF_ERROR;
1411 }
1412
1413#else
1414
1415 ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
1416 "\"send_lowat\" is not supported, ignored");
1417
1418#endif
1419
1420 return NGX_CONF_OK;
1421}