Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1 | |
| 2 | #include <ngx_config.h> |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 3 | #include <ngx_core.h> |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 4 | #include <ngx_event.h> |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 5 | #include <ngx_http.h> |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 6 | #include <nginx.h> |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 7 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 8 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 9 | static void ngx_http_phase_event_handler(ngx_event_t *rev); |
| 10 | static void ngx_http_run_phases(ngx_http_request_t *r); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 11 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 12 | static void *ngx_http_core_create_main_conf(ngx_conf_t *cf); |
| 13 | static char *ngx_http_core_init_main_conf(ngx_conf_t *cf, void *conf); |
| 14 | static void *ngx_http_core_create_srv_conf(ngx_conf_t *cf); |
| 15 | static char *ngx_http_core_merge_srv_conf(ngx_conf_t *cf, |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 16 | void *parent, void *child); |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 17 | static void *ngx_http_core_create_loc_conf(ngx_conf_t *cf); |
| 18 | static char *ngx_http_core_merge_loc_conf(ngx_conf_t *cf, |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 19 | void *parent, void *child); |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 20 | |
Igor Sysoev | 340b03b | 2003-07-04 15:10:33 +0000 | [diff] [blame] | 21 | static int ngx_http_core_init(ngx_cycle_t *cycle); |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 22 | static char *ngx_server_block(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy); |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 23 | static int ngx_cmp_locations(const void *first, const void *second); |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 24 | static char *ngx_location_block(ngx_conf_t *cf, ngx_command_t *cmd, |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 25 | void *dummy); |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 26 | static char *ngx_types_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 27 | static char *ngx_set_type(ngx_conf_t *cf, ngx_command_t *dummy, void *conf); |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 28 | static char *ngx_set_listen(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 29 | static char *ngx_set_server_name(ngx_conf_t *cf, ngx_command_t *cmd, |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 30 | void *conf); |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 31 | static char *ngx_set_error_page(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 32 | static char *ngx_set_error_log(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 33 | |
Igor Sysoev | b5faed2 | 2003-10-29 08:30:44 +0000 | [diff] [blame] | 34 | static char *ngx_http_lowat_check(ngx_conf_t *cf, void *post, void *data); |
| 35 | |
| 36 | static ngx_conf_post_t ngx_http_lowat_post = { ngx_http_lowat_check } ; |
| 37 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 38 | |
| 39 | static ngx_command_t ngx_http_core_commands[] = { |
| 40 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 41 | { 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 Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 47 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 48 | { 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 Sysoev | 6a644c6 | 2003-03-04 06:33:48 +0000 | [diff] [blame] | 54 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 55 | { 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 Sysoev | 187fcd8 | 2003-05-23 11:53:01 +0000 | [diff] [blame] | 61 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 62 | { 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 Sysoev | 187fcd8 | 2003-05-23 11:53:01 +0000 | [diff] [blame] | 68 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 69 | { 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 Sysoev | 6a644c6 | 2003-03-04 06:33:48 +0000 | [diff] [blame] | 75 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 76 | { 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 Sysoev | 6a644c6 | 2003-03-04 06:33:48 +0000 | [diff] [blame] | 82 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 83 | { 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 Sysoev | 6a644c6 | 2003-03-04 06:33:48 +0000 | [diff] [blame] | 89 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 90 | { 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 Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 96 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 97 | { ngx_string("listen"), |
Igor Sysoev | 7578ec9 | 2003-06-02 15:24:30 +0000 | [diff] [blame] | 98 | #if 0 |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 99 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1, |
Igor Sysoev | 7578ec9 | 2003-06-02 15:24:30 +0000 | [diff] [blame] | 100 | #else |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 101 | NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1, |
Igor Sysoev | 7578ec9 | 2003-06-02 15:24:30 +0000 | [diff] [blame] | 102 | #endif |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 103 | ngx_set_listen, |
| 104 | NGX_HTTP_SRV_CONF_OFFSET, |
| 105 | 0, |
| 106 | NULL }, |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 107 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 108 | { 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 Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 114 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 115 | { 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 Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 122 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 123 | { 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 Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 129 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 130 | { 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 Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 136 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 137 | { 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 Sysoev | 2b0c76c | 2003-10-27 21:01:00 +0000 | [diff] [blame] | 143 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 144 | { 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 Sysoev | 5bf3d25 | 2003-10-22 07:05:29 +0000 | [diff] [blame] | 150 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 151 | { 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 Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 157 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 158 | { 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 Sysoev | b5faed2 | 2003-10-29 08:30:44 +0000 | [diff] [blame] | 164 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 165 | { 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 Sysoev | fa73aac | 2003-05-21 13:28:21 +0000 | [diff] [blame] | 171 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 172 | { 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 Sysoev | b738757 | 2003-03-11 20:38:13 +0000 | [diff] [blame] | 178 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 179 | { 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 Sysoev | b738757 | 2003-03-11 20:38:13 +0000 | [diff] [blame] | 185 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 186 | { 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 Sysoev | 12b4b00 | 2003-10-24 06:53:41 +0000 | [diff] [blame] | 192 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 193 | { 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 Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 199 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 200 | { 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 Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 206 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 207 | { 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 Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 215 | }; |
| 216 | |
| 217 | |
| 218 | ngx_http_module_t ngx_http_core_module_ctx = { |
Igor Sysoev | 7832933 | 2003-11-10 17:17:31 +0000 | [diff] [blame] | 219 | NULL, /* pre conf */ |
| 220 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 221 | ngx_http_core_create_main_conf, /* create main configuration */ |
| 222 | ngx_http_core_init_main_conf, /* init main configuration */ |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 223 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 224 | 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 Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 229 | }; |
| 230 | |
| 231 | |
| 232 | ngx_module_t ngx_http_core_module = { |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 233 | NGX_MODULE, |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 234 | &ngx_http_core_module_ctx, /* module context */ |
| 235 | ngx_http_core_commands, /* module directives */ |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 236 | NGX_HTTP_MODULE, /* module type */ |
Igor Sysoev | 96c56c9 | 2003-07-02 14:41:17 +0000 | [diff] [blame] | 237 | ngx_http_core_init, /* init module */ |
Igor Sysoev | 340b03b | 2003-07-04 15:10:33 +0000 | [diff] [blame] | 238 | NULL /* init child */ |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 239 | }; |
| 240 | |
| 241 | |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 242 | void ngx_http_handler(ngx_http_request_t *r) |
| 243 | { |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 244 | ngx_http_log_ctx_t *lcx; |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 245 | |
| 246 | r->connection->unexpected_eof = 0; |
| 247 | |
Igor Sysoev | 7578ec9 | 2003-06-02 15:24:30 +0000 | [diff] [blame] | 248 | lcx = r->connection->log->data; |
| 249 | lcx->action = NULL; |
| 250 | |
Igor Sysoev | 419f9ac | 2003-10-21 16:49:56 +0000 | [diff] [blame] | 251 | 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 Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 256 | r->keepalive = 0; |
| 257 | } |
Igor Sysoev | 419f9ac | 2003-10-21 16:49:56 +0000 | [diff] [blame] | 258 | 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 Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 267 | } |
| 268 | |
Igor Sysoev | 10fc9ef | 2003-10-27 08:53:49 +0000 | [diff] [blame] | 269 | #if 0 |
Igor Sysoev | dc9dd43 | 2003-10-22 16:38:26 +0000 | [diff] [blame] | 270 | /* TEST STUB */ r->http_version = NGX_HTTP_VERSION_10; |
Igor Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 271 | /* TEST STUB */ r->keepalive = 0; |
| 272 | #endif |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 273 | |
| 274 | if (r->headers_in.content_length_n > 0) { |
| 275 | r->lingering_close = 1; |
Igor Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 276 | |
| 277 | } else { |
| 278 | r->lingering_close = 0; |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 279 | } |
| 280 | |
Igor Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 281 | #if 0 |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 282 | /* TEST STUB */ r->lingering_close = 1; |
Igor Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 283 | #endif |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 284 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 285 | r->connection->write->event_handler = ngx_http_phase_event_handler; |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 286 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 287 | ngx_http_run_phases(r); |
| 288 | |
| 289 | return; |
| 290 | } |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 291 | |
| 292 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 293 | static 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 Sysoev | 0a280a3 | 2003-10-12 16:49:16 +0000 | [diff] [blame] | 301 | ngx_log_debug(ev->log, "phase event handler"); |
| 302 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 303 | ngx_http_run_phases(r); |
| 304 | |
| 305 | return; |
| 306 | } |
| 307 | |
| 308 | |
| 309 | static void ngx_http_run_phases(ngx_http_request_t *r) |
| 310 | { |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 311 | char *path; |
| 312 | ngx_int_t rc; |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 313 | ngx_http_handler_pt *h; |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 314 | ngx_http_core_loc_conf_t *clcf; |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 315 | ngx_http_core_main_conf_t *cmcf; |
| 316 | |
| 317 | cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module); |
| 318 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 319 | for (/* void */; r->phase < NGX_HTTP_LAST_PHASE; r->phase++) { |
| 320 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 321 | 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 Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 328 | 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 Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 335 | if (rc == NGX_DONE) { |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 336 | |
| 337 | /* |
| 338 | * we should never use r here because |
| 339 | * it could point to already freed data |
| 340 | */ |
| 341 | |
Igor Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 342 | return; |
| 343 | } |
| 344 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 345 | if (rc == NGX_DECLINED) { |
| 346 | continue; |
| 347 | } |
| 348 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 349 | if (rc >= NGX_HTTP_SPECIAL_RESPONSE || rc == NGX_ERROR) { |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 350 | ngx_http_finalize_request(r, rc); |
| 351 | return; |
| 352 | } |
| 353 | |
Igor Sysoev | e3466a4 | 2003-12-15 13:57:13 +0000 | [diff] [blame] | 354 | if (r->phase == NGX_HTTP_CONTENT_PHASE) { |
| 355 | ngx_http_finalize_request(r, rc); |
| 356 | return; |
| 357 | } |
| 358 | |
| 359 | if (rc == NGX_AGAIN) { |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 360 | return; |
| 361 | } |
| 362 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 363 | if (rc == NGX_OK && cmcf->phases[r->phase].type == NGX_OK) { |
| 364 | break; |
| 365 | } |
| 366 | } |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 367 | } |
| 368 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 369 | |
| 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 Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 386 | return; |
| 387 | } |
| 388 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 389 | 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 Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 392 | return; |
| 393 | } |
| 394 | |
| 395 | |
| 396 | int ngx_http_find_location_config(ngx_http_request_t *r) |
| 397 | { |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 398 | ngx_int_t i, rc, exact; |
Igor Sysoev | 1b138ed | 2003-11-18 21:34:08 +0000 | [diff] [blame] | 399 | ngx_str_t *auto_redirect; |
Igor Sysoev | 419f9ac | 2003-10-21 16:49:56 +0000 | [diff] [blame] | 400 | ngx_http_core_loc_conf_t *clcf, **clcfp; |
| 401 | ngx_http_core_srv_conf_t *cscf; |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 402 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 403 | cscf = ngx_http_get_module_srv_conf(r, ngx_http_core_module); |
Igor Sysoev | 1b138ed | 2003-11-18 21:34:08 +0000 | [diff] [blame] | 404 | auto_redirect = NULL; |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 405 | exact = 0; |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 406 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 407 | clcfp = cscf->locations.elts; |
| 408 | for (i = 0; i < cscf->locations.nelts; i++) { |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 409 | |
Igor Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 410 | #if (HAVE_PCRE) |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 411 | |
| 412 | if (clcfp[i]->regex) { |
| 413 | break; |
| 414 | } |
Igor Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 415 | #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 Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 421 | |
Igor Sysoev | 1b138ed | 2003-11-18 21:34:08 +0000 | [diff] [blame] | 422 | 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 Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 431 | if (r->uri.len < clcfp[i]->name.len) { |
| 432 | continue; |
| 433 | } |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 434 | |
Igor Sysoev | 6597749 | 2003-11-02 22:56:18 +0000 | [diff] [blame] | 435 | rc = ngx_strncmp(r->uri.data, clcfp[i]->name.data, clcfp[i]->name.len); |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 436 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 437 | if (rc < 0) { |
Igor Sysoev | 1b138ed | 2003-11-18 21:34:08 +0000 | [diff] [blame] | 438 | /* locations are lexicographically sorted */ |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 439 | break; |
| 440 | } |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 441 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 442 | 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 Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 447 | |
| 448 | if (clcfp[i]->exact_match && r->uri.len == clcfp[i]->name.len) { |
| 449 | exact = 1; |
| 450 | break; |
| 451 | } |
| 452 | } |
| 453 | } |
| 454 | |
Igor Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 455 | #if (HAVE_PCRE) |
| 456 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 457 | if (!exact && !auto_redirect) { |
| 458 | /* regex matches */ |
| 459 | |
| 460 | for (/* void */; i < cscf->locations.nelts; i++) { |
| 461 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 462 | if (!clcfp[i]->regex) { |
| 463 | continue; |
| 464 | } |
| 465 | |
Igor Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 466 | 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 Sysoev | 3b30a90 | 2003-12-25 20:26:58 +0000 | [diff] [blame] | 472 | rc = ngx_regex_exec(clcfp[i]->regex, &r->uri, NULL, 0); |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 473 | |
| 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 Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 494 | } |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 495 | } |
| 496 | |
Igor Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 497 | #endif /* HAVE_PCRE */ |
| 498 | |
Igor Sysoev | 419f9ac | 2003-10-21 16:49:56 +0000 | [diff] [blame] | 499 | clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); |
| 500 | |
Igor Sysoev | 5bf3d25 | 2003-10-22 07:05:29 +0000 | [diff] [blame] | 501 | if (!(ngx_io.flags & NGX_IO_SENDFILE) || !clcf->sendfile) { |
| 502 | r->sendfile = 0; |
| 503 | |
| 504 | } else { |
| 505 | r->sendfile = 1; |
| 506 | } |
| 507 | |
Igor Sysoev | 1b138ed | 2003-11-18 21:34:08 +0000 | [diff] [blame] | 508 | 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 Sysoev | 1b138ed | 2003-11-18 21:34:08 +0000 | [diff] [blame] | 515 | r->headers_out.location->value = *auto_redirect; |
| 516 | |
| 517 | return NGX_HTTP_MOVED_PERMANENTLY; |
| 518 | } |
| 519 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 520 | if (clcf->handler) { |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 521 | r->content_handler = clcf->handler; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 522 | } |
| 523 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 524 | return NGX_OK; |
| 525 | } |
| 526 | |
| 527 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 528 | ngx_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 Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 577 | int ngx_http_send_header(ngx_http_request_t *r) |
| 578 | { |
Igor Sysoev | 10fc9ef | 2003-10-27 08:53:49 +0000 | [diff] [blame] | 579 | if (r->main) { |
| 580 | return NGX_OK; |
| 581 | } |
| 582 | |
Igor Sysoev | 27c30f9 | 2003-11-11 18:13:43 +0000 | [diff] [blame] | 583 | if (r->err_ctx) { |
Igor Sysoev | d59a047 | 2003-11-10 21:09:22 +0000 | [diff] [blame] | 584 | r->headers_out.status = r->err_status; |
| 585 | r->headers_out.status_line.len = 0; |
| 586 | } |
| 587 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 588 | return (*ngx_http_top_header_filter)(r); |
| 589 | } |
| 590 | |
| 591 | |
| 592 | int ngx_http_redirect(ngx_http_request_t *r, int redirect) |
| 593 | { |
| 594 | /* STUB */ |
| 595 | |
| 596 | /* log request */ |
| 597 | |
Igor Sysoev | d581fd5 | 2003-05-13 16:02:32 +0000 | [diff] [blame] | 598 | ngx_http_close_request(r, 0); |
| 599 | return NGX_OK; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 603 | int ngx_http_error(ngx_http_request_t *r, int error) |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 604 | { |
| 605 | /* STUB */ |
| 606 | ngx_log_debug(r->connection->log, "http error: %d" _ error); |
| 607 | |
| 608 | /* log request */ |
| 609 | |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 610 | ngx_http_special_response_handler(r, error); |
Igor Sysoev | d581fd5 | 2003-05-13 16:02:32 +0000 | [diff] [blame] | 611 | ngx_http_close_request(r, 0); |
| 612 | return NGX_OK; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 613 | } |
| 614 | |
| 615 | |
Igor Sysoev | 3b30a90 | 2003-12-25 20:26:58 +0000 | [diff] [blame] | 616 | ngx_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 Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 647 | int ngx_http_internal_redirect(ngx_http_request_t *r, |
| 648 | ngx_str_t *uri, ngx_str_t *args) |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 649 | { |
Igor Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 650 | ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, |
| 651 | "internal redirect: \"%s\"", uri->data); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 652 | |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 653 | 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 Sysoev | 3b30a90 | 2003-12-25 20:26:58 +0000 | [diff] [blame] | 661 | if (ngx_http_set_exten(r) != NGX_OK) { |
| 662 | return NGX_HTTP_INTERNAL_SERVER_ERROR; |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 663 | } |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 664 | |
Igor Sysoev | 27c30f9 | 2003-11-11 18:13:43 +0000 | [diff] [blame] | 665 | if (r->err_ctx) { |
Igor Sysoev | d59a047 | 2003-11-10 21:09:22 +0000 | [diff] [blame] | 666 | |
Igor Sysoev | 27c30f9 | 2003-11-11 18:13:43 +0000 | [diff] [blame] | 667 | /* allocate the new modules contexts */ |
| 668 | |
Igor Sysoev | d59a047 | 2003-11-10 21:09:22 +0000 | [diff] [blame] | 669 | 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 Sysoev | 27c30f9 | 2003-11-11 18:13:43 +0000 | [diff] [blame] | 675 | |
| 676 | /* clear the modules contexts */ |
| 677 | |
Igor Sysoev | d59a047 | 2003-11-10 21:09:22 +0000 | [diff] [blame] | 678 | ngx_memzero(r->ctx, sizeof(void *) * ngx_http_max_module); |
| 679 | } |
Igor Sysoev | 0a280a3 | 2003-10-12 16:49:16 +0000 | [diff] [blame] | 680 | |
| 681 | r->phase = 0; |
| 682 | r->phase_handler = 0; |
| 683 | |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 684 | ngx_http_handler(r); |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 685 | |
Igor Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 686 | return NGX_DONE; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 687 | } |
| 688 | |
| 689 | |
Igor Sysoev | 0a280a3 | 2003-10-12 16:49:16 +0000 | [diff] [blame] | 690 | #if 1 /* STUB: test the delay http handler */ |
| 691 | |
| 692 | int 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 Sysoev | 340b03b | 2003-07-04 15:10:33 +0000 | [diff] [blame] | 710 | static int ngx_http_core_init(ngx_cycle_t *cycle) |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 711 | { |
Igor Sysoev | d404c97 | 2003-10-16 20:19:16 +0000 | [diff] [blame] | 712 | #if 0 |
Igor Sysoev | 9d9f58f | 2003-07-02 18:51:41 +0000 | [diff] [blame] | 713 | ngx_http_handler_pt *h; |
Igor Sysoev | d404c97 | 2003-10-16 20:19:16 +0000 | [diff] [blame] | 714 | #endif |
Igor Sysoev | 9d9f58f | 2003-07-02 18:51:41 +0000 | [diff] [blame] | 715 | ngx_http_conf_ctx_t *ctx; |
| 716 | ngx_http_core_main_conf_t *cmcf; |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 717 | |
Igor Sysoev | 9d9f58f | 2003-07-02 18:51:41 +0000 | [diff] [blame] | 718 | 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 Sysoev | 0a280a3 | 2003-10-12 16:49:16 +0000 | [diff] [blame] | 721 | #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 Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 728 | return NGX_OK; |
| 729 | } |
| 730 | |
| 731 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 732 | static char *ngx_server_block(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy) |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 733 | { |
Igor Sysoev | 1c13c66 | 2003-05-20 15:37:55 +0000 | [diff] [blame] | 734 | int m; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 735 | 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 Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 741 | |
| 742 | ngx_test_null(ctx, |
| 743 | ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t)), |
| 744 | NGX_CONF_ERROR); |
| 745 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 746 | hctx = (ngx_http_conf_ctx_t *) cf->ctx; |
| 747 | ctx->main_conf = hctx->main_conf; |
Igor Sysoev | bb4ec5c | 2003-05-16 15:27:48 +0000 | [diff] [blame] | 748 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 749 | /* the server{}'s srv_conf */ |
Igor Sysoev | bb4ec5c | 2003-05-16 15:27:48 +0000 | [diff] [blame] | 750 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 751 | ngx_test_null(ctx->srv_conf, |
| 752 | ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module), |
| 753 | NGX_CONF_ERROR); |
| 754 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 755 | /* the server{}'s loc_conf */ |
Igor Sysoev | bb4ec5c | 2003-05-16 15:27:48 +0000 | [diff] [blame] | 756 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 757 | ngx_test_null(ctx->loc_conf, |
| 758 | ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module), |
| 759 | NGX_CONF_ERROR); |
| 760 | |
Igor Sysoev | 1c13c66 | 2003-05-20 15:37:55 +0000 | [diff] [blame] | 761 | for (m = 0; ngx_modules[m]; m++) { |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 762 | if (ngx_modules[m]->type != NGX_HTTP_MODULE) { |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 763 | continue; |
| 764 | } |
| 765 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 766 | module = ngx_modules[m]->ctx; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 767 | |
| 768 | if (module->create_srv_conf) { |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 769 | ngx_test_null(ctx->srv_conf[ngx_modules[m]->ctx_index], |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 770 | module->create_srv_conf(cf), |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 771 | NGX_CONF_ERROR); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 772 | } |
| 773 | |
| 774 | if (module->create_loc_conf) { |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 775 | ngx_test_null(ctx->loc_conf[ngx_modules[m]->ctx_index], |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 776 | module->create_loc_conf(cf), |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 777 | NGX_CONF_ERROR); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 778 | } |
| 779 | } |
| 780 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 781 | /* create links of the srv_conf's */ |
| 782 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 783 | cscf = ctx->srv_conf[ngx_http_core_module.ctx_index]; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 784 | cscf->ctx = ctx; |
| 785 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 786 | cmcf = ctx->main_conf[ngx_http_core_module.ctx_index]; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 787 | ngx_test_null(cscfp, ngx_push_array(&cmcf->servers), NGX_CONF_ERROR); |
| 788 | *cscfp = cscf; |
| 789 | |
| 790 | /* parse inside server{} */ |
| 791 | |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 792 | pcf = *cf; |
| 793 | pctx = cf->ctx; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 794 | cf->ctx = ctx; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 795 | cf->cmd_type = NGX_HTTP_SRV_CONF; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 796 | rv = ngx_conf_parse(cf, NULL); |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 797 | *cf = pcf; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 798 | |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 799 | if (rv != NGX_CONF_OK) { |
| 800 | return rv; |
| 801 | } |
| 802 | |
Igor Sysoev | d9d0ca1 | 2003-11-21 06:30:49 +0000 | [diff] [blame] | 803 | ngx_qsort(cscf->locations.elts, (size_t) cscf->locations.nelts, |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 804 | sizeof(void *), ngx_cmp_locations); |
| 805 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 806 | return rv; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 807 | } |
| 808 | |
| 809 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 810 | static int ngx_cmp_locations(const void *one, const void *two) |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 811 | { |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 812 | 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 Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 814 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 815 | ngx_int_t rc; |
| 816 | |
Igor Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 817 | #if (HAVE_PCRE) |
| 818 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 819 | 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 Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 829 | #endif |
| 830 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 831 | 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 Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 839 | } |
| 840 | |
| 841 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 842 | static char *ngx_location_block(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy) |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 843 | { |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 844 | char *rv; |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 845 | ngx_int_t m; |
| 846 | ngx_str_t *value, err; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 847 | ngx_http_module_t *module; |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 848 | ngx_conf_t pvcf; |
| 849 | ngx_http_conf_ctx_t *ctx, *pvctx; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 850 | ngx_http_core_srv_conf_t *cscf; |
| 851 | ngx_http_core_loc_conf_t *clcf, **clcfp; |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 852 | char errstr[NGX_MAX_CONF_ERRSTR]; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 853 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 854 | if (!(ctx = ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t)))) { |
| 855 | return NGX_CONF_ERROR; |
| 856 | } |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 857 | |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 858 | pvctx = (ngx_http_conf_ctx_t *) cf->ctx; |
| 859 | ctx->main_conf = pvctx->main_conf; |
| 860 | ctx->srv_conf = pvctx->srv_conf; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 861 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 862 | 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 Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 866 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 867 | for (m = 0; ngx_modules[m]; m++) { |
| 868 | if (ngx_modules[m]->type != NGX_HTTP_MODULE) { |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 869 | continue; |
| 870 | } |
| 871 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 872 | module = ngx_modules[m]->ctx; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 873 | |
| 874 | if (module->create_loc_conf) { |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 875 | 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 Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 880 | } |
| 881 | } |
| 882 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 883 | clcf = ctx->loc_conf[ngx_http_core_module.ctx_index]; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 884 | clcf->loc_conf = ctx->loc_conf; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 885 | |
Igor Sysoev | 3b30a90 | 2003-12-25 20:26:58 +0000 | [diff] [blame] | 886 | value = cf->args->elts; |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 887 | |
| 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 Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 899 | #if (HAVE_PCRE) |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 900 | 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 Sysoev | 3b30a90 | 2003-12-25 20:26:58 +0000 | [diff] [blame] | 912 | clcf->name = value[2]; |
Igor Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 913 | #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 Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 920 | |
| 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 Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 933 | cscf = ctx->srv_conf[ngx_http_core_module.ctx_index]; |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 934 | if (!(clcfp = ngx_push_array(&cscf->locations))) { |
| 935 | return NGX_CONF_ERROR; |
| 936 | } |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 937 | *clcfp = clcf; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 938 | |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 939 | pvcf = *cf; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 940 | cf->ctx = ctx; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 941 | cf->cmd_type = NGX_HTTP_LOC_CONF; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 942 | rv = ngx_conf_parse(cf, NULL); |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 943 | *cf = pvcf; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 944 | |
| 945 | return rv; |
| 946 | } |
| 947 | |
| 948 | |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 949 | static char *ngx_types_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 950 | { |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 951 | 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 | |
| 964 | static 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 Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 967 | |
| 968 | int i, key; |
| 969 | ngx_str_t *args; |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 970 | ngx_http_type_t *type; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 971 | |
| 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 Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 989 | ngx_test_null(type, ngx_push_array(&lcf->types[key]), NGX_CONF_ERROR); |
| 990 | type->exten = args[i]; |
| 991 | type->type = args[0]; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 992 | } |
| 993 | |
| 994 | return NGX_CONF_OK; |
| 995 | } |
| 996 | |
| 997 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 998 | static void *ngx_http_core_create_main_conf(ngx_conf_t *cf) |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 999 | { |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1000 | ngx_http_core_main_conf_t *cmcf; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1001 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1002 | ngx_test_null(cmcf, |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 1003 | ngx_pcalloc(cf->pool, sizeof(ngx_http_core_main_conf_t)), |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1004 | NGX_CONF_ERROR); |
| 1005 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 1006 | ngx_init_array(cmcf->servers, cf->pool, |
| 1007 | 5, sizeof(ngx_http_core_srv_conf_t *), |
Igor Sysoev | ad22e01 | 2003-01-15 07:02:27 +0000 | [diff] [blame] | 1008 | NGX_CONF_ERROR); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1009 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1010 | return cmcf; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1011 | } |
| 1012 | |
| 1013 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 1014 | static char *ngx_http_core_init_main_conf(ngx_conf_t *cf, void *conf) |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1015 | { |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 1016 | ngx_http_core_main_conf_t *cmcf = conf; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1017 | |
Igor Sysoev | 239baac | 2003-06-11 15:28:34 +0000 | [diff] [blame] | 1018 | /* TODO: remove it if no directives */ |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1019 | |
| 1020 | return NGX_CONF_OK; |
| 1021 | } |
| 1022 | |
| 1023 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 1024 | static void *ngx_http_core_create_srv_conf(ngx_conf_t *cf) |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1025 | { |
| 1026 | ngx_http_core_srv_conf_t *cscf; |
| 1027 | |
| 1028 | ngx_test_null(cscf, |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 1029 | ngx_pcalloc(cf->pool, sizeof(ngx_http_core_srv_conf_t)), |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1030 | NGX_CONF_ERROR); |
| 1031 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 1032 | 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 Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1035 | NGX_CONF_ERROR); |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 1036 | ngx_init_array(cscf->server_names, cf->pool, |
| 1037 | 5, sizeof(ngx_http_server_name_t), NGX_CONF_ERROR); |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1038 | |
Igor Sysoev | 239baac | 2003-06-11 15:28:34 +0000 | [diff] [blame] | 1039 | cscf->connection_pool_size = NGX_CONF_UNSET; |
| 1040 | cscf->post_accept_timeout = NGX_CONF_UNSET; |
Igor Sysoev | 187fcd8 | 2003-05-23 11:53:01 +0000 | [diff] [blame] | 1041 | 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 Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1046 | return cscf; |
| 1047 | } |
| 1048 | |
| 1049 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 1050 | static char *ngx_http_core_merge_srv_conf(ngx_conf_t *cf, |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1051 | void *parent, void *child) |
| 1052 | { |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1053 | ngx_http_core_srv_conf_t *prev = parent; |
| 1054 | ngx_http_core_srv_conf_t *conf = child; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1055 | |
| 1056 | ngx_http_listen_t *l; |
Igor Sysoev | ad22e01 | 2003-01-15 07:02:27 +0000 | [diff] [blame] | 1057 | ngx_http_server_name_t *n; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1058 | |
Igor Sysoev | 7578ec9 | 2003-06-02 15:24:30 +0000 | [diff] [blame] | 1059 | /* TODO: it does not merge, it inits only */ |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1060 | |
| 1061 | if (conf->listen.nelts == 0) { |
| 1062 | ngx_test_null(l, ngx_push_array(&conf->listen), NGX_CONF_ERROR); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1063 | l->addr = INADDR_ANY; |
Igor Sysoev | 1c10462 | 2003-06-03 15:42:58 +0000 | [diff] [blame] | 1064 | #if (WIN32) |
| 1065 | l->port = 80; |
| 1066 | #else |
Igor Sysoev | 7578ec9 | 2003-06-02 15:24:30 +0000 | [diff] [blame] | 1067 | /* STUB: getuid() should be cached */ |
| 1068 | l->port = (getuid() == 0) ? 80 : 8000; |
Igor Sysoev | 1c10462 | 2003-06-03 15:42:58 +0000 | [diff] [blame] | 1069 | #endif |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1070 | l->family = AF_INET; |
| 1071 | } |
| 1072 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1073 | if (conf->server_names.nelts == 0) { |
| 1074 | ngx_test_null(n, ngx_push_array(&conf->server_names), NGX_CONF_ERROR); |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 1075 | ngx_test_null(n->name.data, ngx_palloc(cf->pool, NGX_MAXHOSTNAMELEN), |
Igor Sysoev | ad22e01 | 2003-01-15 07:02:27 +0000 | [diff] [blame] | 1076 | NGX_CONF_ERROR); |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1077 | |
Igor Sysoev | ad22e01 | 2003-01-15 07:02:27 +0000 | [diff] [blame] | 1078 | if (gethostname(n->name.data, NGX_MAXHOSTNAMELEN) == -1) { |
Igor Sysoev | 8e1fbe6 | 2003-07-18 14:44:05 +0000 | [diff] [blame] | 1079 | ngx_conf_log_error(NGX_LOG_EMERG, cf, ngx_errno, |
| 1080 | "gethostname() failed"); |
| 1081 | return NGX_CONF_ERROR; |
Igor Sysoev | ad22e01 | 2003-01-15 07:02:27 +0000 | [diff] [blame] | 1082 | } |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1083 | |
Igor Sysoev | ad22e01 | 2003-01-15 07:02:27 +0000 | [diff] [blame] | 1084 | n->name.len = ngx_strlen(n->name.data); |
| 1085 | n->core_srv_conf = conf; |
| 1086 | } |
| 1087 | |
Igor Sysoev | 239baac | 2003-06-11 15:28:34 +0000 | [diff] [blame] | 1088 | 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 Sysoev | 187fcd8 | 2003-05-23 11:53:01 +0000 | [diff] [blame] | 1092 | 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 Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1101 | return NGX_CONF_OK; |
| 1102 | } |
| 1103 | |
| 1104 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 1105 | static void *ngx_http_core_create_loc_conf(ngx_conf_t *cf) |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1106 | { |
| 1107 | ngx_http_core_loc_conf_t *lcf; |
| 1108 | |
| 1109 | ngx_test_null(lcf, |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 1110 | ngx_pcalloc(cf->pool, sizeof(ngx_http_core_loc_conf_t)), |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1111 | NGX_CONF_ERROR); |
| 1112 | |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1113 | /* set by ngx_pcalloc(): |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 1114 | |
| 1115 | lcf->doc_root.len = 0; |
| 1116 | lcf->doc_root.data = NULL; |
| 1117 | lcf->types = NULL; |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 1118 | lcf->default_type.len = 0; |
| 1119 | lcf->default_type.data = NULL; |
Igor Sysoev | 9d63952 | 2003-07-07 06:11:50 +0000 | [diff] [blame] | 1120 | lcf->err_log = NULL; |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 1121 | lcf->error_pages = NULL; |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1122 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 1123 | lcf->regex = NULL; |
| 1124 | lcf->exact_match = 0; |
| 1125 | lcf->auto_redirect = 0; |
| 1126 | |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1127 | */ |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1128 | |
Igor Sysoev | 2b0c76c | 2003-10-27 21:01:00 +0000 | [diff] [blame] | 1129 | lcf->client_body_timeout = NGX_CONF_UNSET; |
Igor Sysoev | 5bf3d25 | 2003-10-22 07:05:29 +0000 | [diff] [blame] | 1130 | lcf->sendfile = NGX_CONF_UNSET; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 1131 | lcf->send_timeout = NGX_CONF_UNSET; |
Igor Sysoev | b5faed2 | 2003-10-29 08:30:44 +0000 | [diff] [blame] | 1132 | lcf->send_lowat = NGX_CONF_UNSET; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 1133 | lcf->discarded_buffer_size = NGX_CONF_UNSET; |
Igor Sysoev | fa73aac | 2003-05-21 13:28:21 +0000 | [diff] [blame] | 1134 | lcf->keepalive_timeout = NGX_CONF_UNSET; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 1135 | lcf->lingering_time = NGX_CONF_UNSET; |
| 1136 | lcf->lingering_timeout = NGX_CONF_UNSET; |
| 1137 | |
Igor Sysoev | 12b4b00 | 2003-10-24 06:53:41 +0000 | [diff] [blame] | 1138 | lcf->msie_padding = NGX_CONF_UNSET; |
| 1139 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1140 | return lcf; |
| 1141 | } |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1142 | |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 1143 | |
| 1144 | static 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 Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 1152 | static char *ngx_http_core_merge_loc_conf(ngx_conf_t *cf, |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 1153 | void *parent, void *child) |
| 1154 | { |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1155 | ngx_http_core_loc_conf_t *prev = parent; |
| 1156 | ngx_http_core_loc_conf_t *conf = child; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 1157 | |
| 1158 | int i, key; |
| 1159 | ngx_http_type_t *t; |
| 1160 | |
Igor Sysoev | 7578ec9 | 2003-06-02 15:24:30 +0000 | [diff] [blame] | 1161 | ngx_conf_merge_str_value(conf->doc_root, prev->doc_root, "html"); |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 1162 | |
| 1163 | if (conf->types == NULL) { |
| 1164 | if (prev->types) { |
| 1165 | conf->types = prev->types; |
| 1166 | |
| 1167 | } else { |
| 1168 | ngx_test_null(conf->types, |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 1169 | ngx_palloc(cf->pool, NGX_HTTP_TYPES_HASH_PRIME |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 1170 | * sizeof(ngx_array_t)), |
| 1171 | NGX_CONF_ERROR); |
| 1172 | |
| 1173 | for (i = 0; i < NGX_HTTP_TYPES_HASH_PRIME; i++) { |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 1174 | ngx_init_array(conf->types[i], cf->pool, |
| 1175 | 5, sizeof(ngx_http_type_t), NGX_CONF_ERROR); |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 1176 | } |
| 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 Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 1191 | 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 Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 1199 | if (conf->error_pages == NULL && prev->error_pages) { |
| 1200 | conf->error_pages = prev->error_pages; |
| 1201 | } |
| 1202 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 1203 | ngx_conf_merge_str_value(conf->default_type, |
| 1204 | prev->default_type, "text/plain"); |
| 1205 | |
Igor Sysoev | 2b0c76c | 2003-10-27 21:01:00 +0000 | [diff] [blame] | 1206 | ngx_conf_merge_msec_value(conf->client_body_timeout, |
| 1207 | prev->client_body_timeout, 10000); |
Igor Sysoev | 5bf3d25 | 2003-10-22 07:05:29 +0000 | [diff] [blame] | 1208 | ngx_conf_merge_value(conf->sendfile, prev->sendfile, 0); |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1209 | ngx_conf_merge_msec_value(conf->send_timeout, prev->send_timeout, 10000); |
Igor Sysoev | b5faed2 | 2003-10-29 08:30:44 +0000 | [diff] [blame] | 1210 | ngx_conf_merge_size_value(conf->send_lowat, prev->send_lowat, 0); |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1211 | ngx_conf_merge_size_value(conf->discarded_buffer_size, |
| 1212 | prev->discarded_buffer_size, 1500); |
Igor Sysoev | 187fcd8 | 2003-05-23 11:53:01 +0000 | [diff] [blame] | 1213 | 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 Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 1219 | |
Igor Sysoev | 12b4b00 | 2003-10-24 06:53:41 +0000 | [diff] [blame] | 1220 | ngx_conf_merge_value(conf->msie_padding, prev->msie_padding, 1); |
| 1221 | |
Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 1222 | if (conf->open_files == NULL) { |
| 1223 | conf->open_files = prev->open_files; |
| 1224 | } |
| 1225 | |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 1226 | return NGX_CONF_OK; |
| 1227 | } |
| 1228 | |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 1229 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 1230 | static char *ngx_set_listen(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1231 | { |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1232 | ngx_http_core_srv_conf_t *scf = conf; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1233 | |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1234 | char *addr; |
Igor Sysoev | 1c13c66 | 2003-05-20 15:37:55 +0000 | [diff] [blame] | 1235 | u_int p; |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 1236 | struct hostent *h; |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1237 | ngx_str_t *args; |
| 1238 | ngx_http_listen_t *ls; |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1239 | |
Igor Sysoev | 239baac | 2003-06-11 15:28:34 +0000 | [diff] [blame] | 1240 | /* TODO: check duplicate 'listen' directives, |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1241 | add resolved name to server names ??? */ |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1242 | |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1243 | ngx_test_null(ls, ngx_push_array(&scf->listen), NGX_CONF_ERROR); |
| 1244 | |
| 1245 | /* AF_INET only */ |
| 1246 | |
| 1247 | ls->family = AF_INET; |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1248 | ls->flags = 0; |
Igor Sysoev | fe5cb6b | 2003-01-29 07:25:51 +0000 | [diff] [blame] | 1249 | ls->file_name = cf->conf_file->file.name; |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1250 | ls->line = cf->conf_file->line; |
| 1251 | |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1252 | args = cf->args->elts; |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1253 | addr = args[1].data; |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1254 | |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1255 | for (p = 0; p < args[1].len; p++) { |
| 1256 | if (addr[p] == ':') { |
| 1257 | addr[p++] = '\0'; |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1258 | break; |
| 1259 | } |
| 1260 | } |
| 1261 | |
| 1262 | if (p == args[1].len) { |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1263 | /* no ":" in the "listen" */ |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1264 | p = 0; |
| 1265 | } |
| 1266 | |
| 1267 | ls->port = ngx_atoi(&addr[p], args[1].len - p); |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1268 | 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 Sysoev | 8e1fbe6 | 2003-07-18 14:44:05 +0000 | [diff] [blame] | 1276 | 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 Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1282 | |
| 1283 | } else if (p == 0) { |
| 1284 | ls->addr = INADDR_ANY; |
| 1285 | return NGX_CONF_OK; |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1286 | } |
| 1287 | |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1288 | 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 Sysoev | 8e1fbe6 | 2003-07-18 14:44:05 +0000 | [diff] [blame] | 1293 | 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 Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1297 | } |
| 1298 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 1299 | ls->addr = *(in_addr_t *)(h->h_addr_list[0]); |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1300 | } |
| 1301 | |
| 1302 | return NGX_CONF_OK; |
| 1303 | } |
| 1304 | |
| 1305 | |
| 1306 | static char *ngx_set_server_name(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) |
| 1307 | { |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1308 | ngx_http_core_srv_conf_t *scf = conf; |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1309 | |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1310 | int i; |
| 1311 | ngx_str_t *value; |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1312 | ngx_http_server_name_t *sn; |
| 1313 | |
| 1314 | /* TODO: several names */ |
| 1315 | /* TODO: warn about duplicate 'server_name' directives */ |
| 1316 | |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1317 | value = cf->args->elts; |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1318 | |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1319 | for (i = 1; i < cf->args->nelts; i++) { |
| 1320 | if (value[i].len == 0) { |
Igor Sysoev | 8e1fbe6 | 2003-07-18 14:44:05 +0000 | [diff] [blame] | 1321 | 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 Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1326 | } |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1327 | |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1328 | 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 Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1334 | |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1335 | return NGX_CONF_OK; |
| 1336 | } |
Igor Sysoev | 9d63952 | 2003-07-07 06:11:50 +0000 | [diff] [blame] | 1337 | |
| 1338 | |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 1339 | static 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 Sysoev | 9d63952 | 2003-07-07 06:11:50 +0000 | [diff] [blame] | 1380 | static 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 Sysoev | 5f80078 | 2003-12-08 20:48:12 +0000 | [diff] [blame] | 1384 | #if 0 |
Igor Sysoev | 9d63952 | 2003-07-07 06:11:50 +0000 | [diff] [blame] | 1385 | ngx_str_t *value; |
| 1386 | |
| 1387 | value = cf->args->elts; |
Igor Sysoev | 5f80078 | 2003-12-08 20:48:12 +0000 | [diff] [blame] | 1388 | #endif |
Igor Sysoev | 9d63952 | 2003-07-07 06:11:50 +0000 | [diff] [blame] | 1389 | |
Igor Sysoev | b8c367c | 2003-07-10 16:26:57 +0000 | [diff] [blame] | 1390 | ngx_test_null(lcf->err_log, |
Igor Sysoev | 5f80078 | 2003-12-08 20:48:12 +0000 | [diff] [blame] | 1391 | ngx_log_create_errlog(cf->cycle, cf->args), |
Igor Sysoev | 9d63952 | 2003-07-07 06:11:50 +0000 | [diff] [blame] | 1392 | NGX_CONF_ERROR); |
| 1393 | |
Igor Sysoev | 9d63952 | 2003-07-07 06:11:50 +0000 | [diff] [blame] | 1394 | return NGX_CONF_OK; |
| 1395 | } |
Igor Sysoev | b5faed2 | 2003-10-29 08:30:44 +0000 | [diff] [blame] | 1396 | |
| 1397 | |
| 1398 | static char *ngx_http_lowat_check(ngx_conf_t *cf, void *post, void *data) |
| 1399 | { |
Igor Sysoev | b5faed2 | 2003-10-29 08:30:44 +0000 | [diff] [blame] | 1400 | #if (HAVE_LOWAT_EVENT) |
| 1401 | |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 1402 | int *np = data; |
| 1403 | |
Igor Sysoev | b5faed2 | 2003-10-29 08:30:44 +0000 | [diff] [blame] | 1404 | 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 | } |