blob: b6c94a52fb9792210105a9afb94ace34a6215269 [file] [log] [blame]
Igor Sysoev88092572002-12-19 07:08:55 +00001
Igor Sysoevd90282d2004-09-28 08:34:51 +00002/*
Igor Sysoevff8da912004-09-29 16:00:49 +00003 * Copyright (C) Igor Sysoev
Igor Sysoevd90282d2004-09-28 08:34:51 +00004 */
5
6
Igor Sysoev88092572002-12-19 07:08:55 +00007#include <ngx_config.h>
Igor Sysoev88092572002-12-19 07:08:55 +00008#include <ngx_core.h>
Igor Sysoev88092572002-12-19 07:08:55 +00009
10
Igor Sysoevc1571722005-03-19 12:38:37 +000011static ngx_int_t ngx_conf_handler(ngx_conf_t *cf, ngx_int_t last);
Igor Sysoev4d656dc2005-03-22 16:02:46 +000012static ngx_int_t ngx_conf_read_token(ngx_conf_t *cf);
Igor Sysoevab517d52004-05-18 15:29:08 +000013static char *ngx_conf_include(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
Igor Sysoev697d1ae2005-10-27 15:46:13 +000014static void ngx_conf_flush_files(ngx_cycle_t *cycle);
Igor Sysoevab517d52004-05-18 15:29:08 +000015
16
17static ngx_command_t ngx_conf_commands[] = {
18
19 { ngx_string("include"),
20 NGX_ANY_CONF|NGX_CONF_TAKE1,
21 ngx_conf_include,
22 0,
23 0,
24 NULL },
25
26 ngx_null_command
27};
28
29
30ngx_module_t ngx_conf_module = {
Igor Sysoev899b44e2005-05-12 14:58:06 +000031 NGX_MODULE_V1,
Igor Sysoevab517d52004-05-18 15:29:08 +000032 NULL, /* module context */
33 ngx_conf_commands, /* module directives */
34 NGX_CONF_MODULE, /* module type */
Igor Sysoeve5733802005-09-08 14:36:09 +000035 NULL, /* init master */
Igor Sysoevab517d52004-05-18 15:29:08 +000036 NULL, /* init module */
Igor Sysoeve5733802005-09-08 14:36:09 +000037 NULL, /* init process */
38 NULL, /* init thread */
39 NULL, /* exit thread */
Igor Sysoev697d1ae2005-10-27 15:46:13 +000040 ngx_conf_flush_files, /* exit process */
Igor Sysoeve5733802005-09-08 14:36:09 +000041 NULL, /* exit master */
42 NGX_MODULE_V1_PADDING
Igor Sysoevab517d52004-05-18 15:29:08 +000043};
44
45
Igor Sysoevab517d52004-05-18 15:29:08 +000046/* The ten fixed arguments */
Igor Sysoevdc9dd432003-10-22 16:38:26 +000047
Igor Sysoeva6e337f2008-08-26 21:04:06 +000048static ngx_uint_t argument_number[] = {
Igor Sysoev88092572002-12-19 07:08:55 +000049 NGX_CONF_NOARGS,
50 NGX_CONF_TAKE1,
Igor Sysoevdc9dd432003-10-22 16:38:26 +000051 NGX_CONF_TAKE2,
52 NGX_CONF_TAKE3,
53 NGX_CONF_TAKE4,
54 NGX_CONF_TAKE5,
55 NGX_CONF_TAKE6,
Igor Sysoev43f13192004-04-12 16:38:09 +000056 NGX_CONF_TAKE7
Igor Sysoev88092572002-12-19 07:08:55 +000057};
58
Igor Sysoev960ffa42002-12-26 07:24:21 +000059
Igor Sysoev4d656dc2005-03-22 16:02:46 +000060char *
Igor Sysoevb4fbdcf2008-06-30 12:35:16 +000061ngx_conf_param(ngx_conf_t *cf)
62{
63 ngx_str_t *param;
64 ngx_buf_t b;
65 ngx_conf_file_t conf_file;
66
67 param = &cf->cycle->conf_param;
68
69 if (param->len == 0) {
70 return NGX_CONF_OK;
71 }
72
73 ngx_memzero(&conf_file, sizeof(ngx_conf_file_t));
74
75 ngx_memzero(&b, sizeof(ngx_buf_t));
76
77 b.start = param->data;
78 b.pos = param->data;
79 b.last = param->data + param->len;
80 b.end = b.last;
81 b.temporary = 1;
82
83 conf_file.file.fd = NGX_INVALID_FILE;
84 conf_file.file.name.data = (u_char *) "command line";
85 conf_file.line = 1;
86
87 cf->conf_file = &conf_file;
88 cf->conf_file->buffer = &b;
89
90 return ngx_conf_parse(cf, NULL);
91}
92
93
94char *
Igor Sysoev4d656dc2005-03-22 16:02:46 +000095ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename)
Igor Sysoev88092572002-12-19 07:08:55 +000096{
Igor Sysoev4e9393a2003-01-09 05:36:00 +000097 char *rv;
Igor Sysoev960ffa42002-12-26 07:24:21 +000098 ngx_fd_t fd;
Igor Sysoevc1571722005-03-19 12:38:37 +000099 ngx_int_t rc;
Igor Sysoev6d16e1e2006-04-05 13:40:54 +0000100 ngx_buf_t *b;
Igor Sysoev88092572002-12-19 07:08:55 +0000101 ngx_conf_file_t *prev;
Igor Sysoevb4fbdcf2008-06-30 12:35:16 +0000102 enum {
103 parse_file = 0,
104 parse_block,
105 parse_param
106 } type;
Igor Sysoev88092572002-12-19 07:08:55 +0000107
Igor Sysoev9d639522003-07-07 06:11:50 +0000108#if (NGX_SUPPRESS_WARN)
109 fd = NGX_INVALID_FILE;
110 prev = NULL;
111#endif
112
Igor Sysoev88092572002-12-19 07:08:55 +0000113 if (filename) {
114
Igor Sysoevbb4ec5c2003-05-16 15:27:48 +0000115 /* open configuration file */
116
Igor Sysoev50034b82007-01-18 20:15:09 +0000117 fd = ngx_open_file(filename->data, NGX_FILE_RDONLY, NGX_FILE_OPEN, 0);
Igor Sysoev88092572002-12-19 07:08:55 +0000118 if (fd == NGX_INVALID_FILE) {
Igor Sysoevc31a9bb2005-11-26 10:11:11 +0000119 ngx_conf_log_error(NGX_LOG_EMERG, cf, ngx_errno,
Igor Sysoev305a9d82005-12-26 17:07:48 +0000120 ngx_open_file_n " \"%s\" failed",
121 filename->data);
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000122 return NGX_CONF_ERROR;
Igor Sysoev88092572002-12-19 07:08:55 +0000123 }
124
Igor Sysoeva6717c42002-12-23 06:29:22 +0000125 prev = cf->conf_file;
Igor Sysoevc1571722005-03-19 12:38:37 +0000126
127 cf->conf_file = ngx_palloc(cf->pool, sizeof(ngx_conf_file_t));
128 if (cf->conf_file == NULL) {
Igor Sysoev369145c2004-05-28 15:49:23 +0000129 return NGX_CONF_ERROR;
130 }
Igor Sysoev88092572002-12-19 07:08:55 +0000131
Igor Sysoevf2e676a2003-11-16 21:49:42 +0000132 if (ngx_fd_info(fd, &cf->conf_file->file.info) == -1) {
Igor Sysoeva6717c42002-12-23 06:29:22 +0000133 ngx_log_error(NGX_LOG_EMERG, cf->log, ngx_errno,
Igor Sysoev1b735832004-11-11 14:07:14 +0000134 ngx_fd_info_n " \"%s\" failed", filename->data);
Igor Sysoeva6717c42002-12-23 06:29:22 +0000135 }
136
Igor Sysoev6d16e1e2006-04-05 13:40:54 +0000137 b = ngx_calloc_buf(cf->pool);
138 if (b == NULL) {
Igor Sysoev369145c2004-05-28 15:49:23 +0000139 return NGX_CONF_ERROR;
140 }
Igor Sysoeva6717c42002-12-23 06:29:22 +0000141
Igor Sysoev6d16e1e2006-04-05 13:40:54 +0000142 cf->conf_file->buffer = b;
143
144 b->start = ngx_alloc(ngx_pagesize, cf->log);
145 if (b->start == NULL) {
146 return NGX_CONF_ERROR;
147 }
148
149 b->pos = b->start;
150 b->last = b->start;
151 b->end = b->last + ngx_pagesize;
152 b->temporary = 1;
153
Igor Sysoeva6717c42002-12-23 06:29:22 +0000154 cf->conf_file->file.fd = fd;
155 cf->conf_file->file.name.len = filename->len;
156 cf->conf_file->file.name.data = filename->data;
Igor Sysoev9d639522003-07-07 06:11:50 +0000157 cf->conf_file->file.offset = 0;
Igor Sysoevbfb23bf2007-10-09 20:11:03 +0000158 cf->conf_file->file.log = cf->log;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000159 cf->conf_file->line = 1;
Igor Sysoev31eb8c02005-09-23 11:02:22 +0000160
Igor Sysoevb4fbdcf2008-06-30 12:35:16 +0000161 type = parse_file;
162
163 } else if (cf->conf_file->file.fd != NGX_INVALID_FILE) {
164
165 type = parse_block;
Igor Sysoev31eb8c02005-09-23 11:02:22 +0000166
167 } else {
Igor Sysoevb4fbdcf2008-06-30 12:35:16 +0000168 type = parse_param;
Igor Sysoev88092572002-12-19 07:08:55 +0000169 }
170
Igor Sysoev31eb8c02005-09-23 11:02:22 +0000171
Igor Sysoev88092572002-12-19 07:08:55 +0000172 for ( ;; ) {
173 rc = ngx_conf_read_token(cf);
174
Igor Sysoev369145c2004-05-28 15:49:23 +0000175 /*
Igor Sysoev1b735832004-11-11 14:07:14 +0000176 * ngx_conf_read_token() may return
Igor Sysoev31eb8c02005-09-23 11:02:22 +0000177 *
Igor Sysoev1b735832004-11-11 14:07:14 +0000178 * NGX_ERROR there is error
179 * NGX_OK the token terminated by ";" was found
180 * NGX_CONF_BLOCK_START the token terminated by "{" was found
181 * NGX_CONF_BLOCK_DONE the "}" was found
182 * NGX_CONF_FILE_DONE the configuration file is done
Igor Sysoev369145c2004-05-28 15:49:23 +0000183 */
Igor Sysoev88092572002-12-19 07:08:55 +0000184
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000185 if (rc == NGX_ERROR) {
Igor Sysoevbb4c1122007-02-20 14:36:48 +0000186 goto done;
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000187 }
188
Igor Sysoev31eb8c02005-09-23 11:02:22 +0000189 if (rc == NGX_CONF_BLOCK_DONE) {
Igor Sysoeveb03ea72008-06-25 14:56:14 +0000190
Igor Sysoevb4fbdcf2008-06-30 12:35:16 +0000191 if (type != parse_block) {
Igor Sysoev83fe6622007-02-20 14:33:26 +0000192 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "unexpected \"}\"");
Igor Sysoevbb4c1122007-02-20 14:36:48 +0000193 goto failed;
Igor Sysoev83fe6622007-02-20 14:33:26 +0000194 }
195
Igor Sysoevbb4c1122007-02-20 14:36:48 +0000196 goto done;
Igor Sysoev88092572002-12-19 07:08:55 +0000197 }
198
Igor Sysoeveb03ea72008-06-25 14:56:14 +0000199 if (rc == NGX_CONF_FILE_DONE) {
200
Igor Sysoevb4fbdcf2008-06-30 12:35:16 +0000201 if (type == parse_block) {
Igor Sysoeveb03ea72008-06-25 14:56:14 +0000202 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
203 "unexpected end of file, expecting \"}\"");
204 goto failed;
205 }
206
207 goto done;
208 }
209
Igor Sysoevb4fbdcf2008-06-30 12:35:16 +0000210 if (rc == NGX_CONF_BLOCK_START) {
211
212 if (type == parse_param) {
213 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
214 "block directives are not supported "
215 "in -g option");
216 goto failed;
217 }
218 }
219
Igor Sysoeveb03ea72008-06-25 14:56:14 +0000220 /* rc == NGX_OK || rc == NGX_CONF_BLOCK_START */
221
Igor Sysoev88092572002-12-19 07:08:55 +0000222 if (cf->handler) {
223
Igor Sysoev1b735832004-11-11 14:07:14 +0000224 /*
225 * the custom handler, i.e., that is used in the http's
226 * "types { ... }" directive
227 */
Igor Sysoevbb4ec5c2003-05-16 15:27:48 +0000228
Igor Sysoev79a80482003-05-14 17:13:13 +0000229 rv = (*cf->handler)(cf, NULL, cf->handler_conf);
230 if (rv == NGX_CONF_OK) {
231 continue;
Igor Sysoevc1571722005-03-19 12:38:37 +0000232 }
Igor Sysoev79a80482003-05-14 17:13:13 +0000233
Igor Sysoevc1571722005-03-19 12:38:37 +0000234 if (rv == NGX_CONF_ERROR) {
Igor Sysoevbb4c1122007-02-20 14:36:48 +0000235 goto failed;
Igor Sysoev88092572002-12-19 07:08:55 +0000236 }
Igor Sysoev88092572002-12-19 07:08:55 +0000237
Igor Sysoev40460ba2007-02-20 15:47:54 +0000238 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, rv);
Igor Sysoevbb4c1122007-02-20 14:36:48 +0000239
240 goto failed;
Igor Sysoev88092572002-12-19 07:08:55 +0000241 }
Igor Sysoev8e1fbe62003-07-18 14:44:05 +0000242
Igor Sysoevc1571722005-03-19 12:38:37 +0000243
244 rc = ngx_conf_handler(cf, rc);
245
Igor Sysoev8e1fbe62003-07-18 14:44:05 +0000246 if (rc == NGX_ERROR) {
Igor Sysoevbb4c1122007-02-20 14:36:48 +0000247 goto failed;
Igor Sysoev8e1fbe62003-07-18 14:44:05 +0000248 }
Igor Sysoeva6717c42002-12-23 06:29:22 +0000249 }
Igor Sysoev88092572002-12-19 07:08:55 +0000250
Igor Sysoevbb4c1122007-02-20 14:36:48 +0000251failed:
252
253 rc = NGX_ERROR;
254
255done:
Igor Sysoevc1571722005-03-19 12:38:37 +0000256
Igor Sysoev88092572002-12-19 07:08:55 +0000257 if (filename) {
Igor Sysoev6d16e1e2006-04-05 13:40:54 +0000258 ngx_free(cf->conf_file->buffer->start);
Igor Sysoevd3283ff2005-12-05 13:18:09 +0000259
Igor Sysoeva6717c42002-12-23 06:29:22 +0000260 cf->conf_file = prev;
Igor Sysoev88092572002-12-19 07:08:55 +0000261
262 if (ngx_close_file(fd) == NGX_FILE_ERROR) {
Igor Sysoevbb4ec5c2003-05-16 15:27:48 +0000263 ngx_log_error(NGX_LOG_ALERT, cf->log, ngx_errno,
Igor Sysoeva6717c42002-12-23 06:29:22 +0000264 ngx_close_file_n " %s failed",
265 cf->conf_file->file.name.data);
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000266 return NGX_CONF_ERROR;
Igor Sysoev88092572002-12-19 07:08:55 +0000267 }
268 }
269
Igor Sysoev9d639522003-07-07 06:11:50 +0000270 if (rc == NGX_ERROR) {
271 return NGX_CONF_ERROR;
272 }
273
Igor Sysoev4e9393a2003-01-09 05:36:00 +0000274 return NGX_CONF_OK;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000275}
Igor Sysoev88092572002-12-19 07:08:55 +0000276
Igor Sysoev88092572002-12-19 07:08:55 +0000277
Igor Sysoev4d656dc2005-03-22 16:02:46 +0000278static ngx_int_t
279ngx_conf_handler(ngx_conf_t *cf, ngx_int_t last)
Igor Sysoevc1571722005-03-19 12:38:37 +0000280{
281 char *rv;
282 void *conf, **confp;
Igor Sysoevac72bd12006-05-04 15:32:46 +0000283 ngx_uint_t i, multi;
Igor Sysoevc1571722005-03-19 12:38:37 +0000284 ngx_str_t *name;
285 ngx_command_t *cmd;
286
287 name = cf->args->elts;
288
Igor Sysoevac72bd12006-05-04 15:32:46 +0000289 multi = 0;
290
Igor Sysoevc1571722005-03-19 12:38:37 +0000291 for (i = 0; ngx_modules[i]; i++) {
292
293 /* look up the directive in the appropriate modules */
294
295 if (ngx_modules[i]->type != NGX_CONF_MODULE
296 && ngx_modules[i]->type != cf->module_type)
297 {
298 continue;
299 }
300
301 cmd = ngx_modules[i]->commands;
302 if (cmd == NULL) {
303 continue;
304 }
305
Igor Sysoevac72bd12006-05-04 15:32:46 +0000306 for ( /* void */ ; cmd->name.len; cmd++) {
Igor Sysoevc1571722005-03-19 12:38:37 +0000307
Igor Sysoevac72bd12006-05-04 15:32:46 +0000308 if (name->len != cmd->name.len) {
309 continue;
310 }
Igor Sysoevc1571722005-03-19 12:38:37 +0000311
Igor Sysoevac72bd12006-05-04 15:32:46 +0000312 if (ngx_strcmp(name->data, cmd->name.data) != 0) {
313 continue;
314 }
315
316
317 /* is the directive's location right ? */
318
319 if (!(cmd->type & cf->cmd_type)) {
320 if (cmd->type & NGX_CONF_MULTI) {
321 multi = 1;
322 continue;
Igor Sysoevc1571722005-03-19 12:38:37 +0000323 }
324
Igor Sysoevac72bd12006-05-04 15:32:46 +0000325 goto not_allowed;
326 }
Igor Sysoevc1571722005-03-19 12:38:37 +0000327
Igor Sysoevac72bd12006-05-04 15:32:46 +0000328 if (!(cmd->type & NGX_CONF_BLOCK) && last != NGX_OK) {
Igor Sysoev40460ba2007-02-20 15:47:54 +0000329 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
330 "directive \"%s\" is not terminated by \";\"",
331 name->data);
Igor Sysoevac72bd12006-05-04 15:32:46 +0000332 return NGX_ERROR;
333 }
Igor Sysoevc1571722005-03-19 12:38:37 +0000334
Igor Sysoevac72bd12006-05-04 15:32:46 +0000335 if ((cmd->type & NGX_CONF_BLOCK) && last != NGX_CONF_BLOCK_START) {
Igor Sysoev40460ba2007-02-20 15:47:54 +0000336 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
337 "directive \"%s\" has no opening \"{\"",
338 name->data);
Igor Sysoevac72bd12006-05-04 15:32:46 +0000339 return NGX_ERROR;
340 }
Igor Sysoevc1571722005-03-19 12:38:37 +0000341
Igor Sysoevac72bd12006-05-04 15:32:46 +0000342 /* is the directive's argument count right ? */
Igor Sysoevc1571722005-03-19 12:38:37 +0000343
Igor Sysoevac72bd12006-05-04 15:32:46 +0000344 if (!(cmd->type & NGX_CONF_ANY)) {
Igor Sysoevc1571722005-03-19 12:38:37 +0000345
Igor Sysoevac72bd12006-05-04 15:32:46 +0000346 if (cmd->type & NGX_CONF_FLAG) {
347
348 if (cf->args->nelts != 2) {
349 goto invalid;
Igor Sysoevc1571722005-03-19 12:38:37 +0000350 }
351
352 } else if (cmd->type & NGX_CONF_1MORE) {
353
Igor Sysoevac72bd12006-05-04 15:32:46 +0000354 if (cf->args->nelts < 2) {
355 goto invalid;
Igor Sysoevc1571722005-03-19 12:38:37 +0000356 }
357
358 } else if (cmd->type & NGX_CONF_2MORE) {
359
Igor Sysoevac72bd12006-05-04 15:32:46 +0000360 if (cf->args->nelts < 3) {
361 goto invalid;
Igor Sysoevc1571722005-03-19 12:38:37 +0000362 }
363
Igor Sysoevac72bd12006-05-04 15:32:46 +0000364 } else if (cf->args->nelts > NGX_CONF_MAX_ARGS) {
365
366 goto invalid;
367
368 } else if (!(cmd->type & argument_number[cf->args->nelts - 1]))
Igor Sysoevc1571722005-03-19 12:38:37 +0000369 {
Igor Sysoevac72bd12006-05-04 15:32:46 +0000370 goto invalid;
Igor Sysoevc1571722005-03-19 12:38:37 +0000371 }
Igor Sysoevac72bd12006-05-04 15:32:46 +0000372 }
Igor Sysoevc1571722005-03-19 12:38:37 +0000373
Igor Sysoevac72bd12006-05-04 15:32:46 +0000374 /* set up the directive's configuration context */
375
376 conf = NULL;
377
378 if (cmd->type & NGX_DIRECT_CONF) {
379 conf = ((void **) cf->ctx)[ngx_modules[i]->index];
380
381 } else if (cmd->type & NGX_MAIN_CONF) {
382 conf = &(((void **) cf->ctx)[ngx_modules[i]->index]);
383
384 } else if (cf->ctx) {
385 confp = *(void **) ((char *) cf->ctx + cmd->conf);
386
387 if (confp) {
388 conf = confp[ngx_modules[i]->ctx_index];
Igor Sysoevc1571722005-03-19 12:38:37 +0000389 }
Igor Sysoevac72bd12006-05-04 15:32:46 +0000390 }
Igor Sysoevc1571722005-03-19 12:38:37 +0000391
Igor Sysoevac72bd12006-05-04 15:32:46 +0000392 rv = cmd->set(cf, cmd, conf);
Igor Sysoevc1571722005-03-19 12:38:37 +0000393
Igor Sysoevac72bd12006-05-04 15:32:46 +0000394 if (rv == NGX_CONF_OK) {
395 return NGX_OK;
396 }
Igor Sysoevc1571722005-03-19 12:38:37 +0000397
Igor Sysoevac72bd12006-05-04 15:32:46 +0000398 if (rv == NGX_CONF_ERROR) {
Igor Sysoevc1571722005-03-19 12:38:37 +0000399 return NGX_ERROR;
400 }
401
Igor Sysoev40460ba2007-02-20 15:47:54 +0000402 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
Igor Sysoev1849ba82007-06-05 11:55:39 +0000403 "\"%s\" directive %s", name->data, rv);
Igor Sysoevac72bd12006-05-04 15:32:46 +0000404
405 return NGX_ERROR;
Igor Sysoevc1571722005-03-19 12:38:37 +0000406 }
407 }
408
Igor Sysoevac72bd12006-05-04 15:32:46 +0000409 if (multi == 0) {
Igor Sysoev40460ba2007-02-20 15:47:54 +0000410 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
411 "unknown directive \"%s\"", name->data);
Igor Sysoevac72bd12006-05-04 15:32:46 +0000412
413 return NGX_ERROR;
414 }
415
416not_allowed:
417
Igor Sysoev40460ba2007-02-20 15:47:54 +0000418 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
Igor Sysoev1849ba82007-06-05 11:55:39 +0000419 "\"%s\" directive is not allowed here", name->data);
Igor Sysoevac72bd12006-05-04 15:32:46 +0000420 return NGX_ERROR;
421
422invalid:
423
Igor Sysoev40460ba2007-02-20 15:47:54 +0000424 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
Igor Sysoeve7e7ded2007-08-31 06:15:50 +0000425 "invalid number of arguments in \"%s\" directive",
Igor Sysoev40460ba2007-02-20 15:47:54 +0000426 name->data);
Igor Sysoevc1571722005-03-19 12:38:37 +0000427
428 return NGX_ERROR;
429}
430
431
Igor Sysoev4d656dc2005-03-22 16:02:46 +0000432static ngx_int_t
433ngx_conf_read_token(ngx_conf_t *cf)
Igor Sysoev88092572002-12-19 07:08:55 +0000434{
Igor Sysoev10a543a2004-03-16 07:10:12 +0000435 u_char *start, ch, *src, *dst;
Igor Sysoeva6e337f2008-08-26 21:04:06 +0000436 size_t len;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000437 ssize_t n;
Igor Sysoeva6e337f2008-08-26 21:04:06 +0000438 ngx_uint_t found, need_space, last_space, sharp_comment, variable;
Igor Sysoev6d099502008-08-26 21:10:20 +0000439 ngx_uint_t quoted, s_quoted, d_quoted, start_line;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000440 ngx_str_t *word;
Igor Sysoev369145c2004-05-28 15:49:23 +0000441 ngx_buf_t *b;
Igor Sysoev88092572002-12-19 07:08:55 +0000442
Igor Sysoeva6717c42002-12-23 06:29:22 +0000443 found = 0;
Igor Sysoev88092572002-12-19 07:08:55 +0000444 need_space = 0;
445 last_space = 1;
Igor Sysoev960ffa42002-12-26 07:24:21 +0000446 sharp_comment = 0;
Igor Sysoev899b44e2005-05-12 14:58:06 +0000447 variable = 0;
Igor Sysoev88092572002-12-19 07:08:55 +0000448 quoted = s_quoted = d_quoted = 0;
449
450 cf->args->nelts = 0;
Igor Sysoev369145c2004-05-28 15:49:23 +0000451 b = cf->conf_file->buffer;
452 start = b->pos;
Igor Sysoev6d099502008-08-26 21:10:20 +0000453 start_line = cf->conf_file->line;
Igor Sysoev88092572002-12-19 07:08:55 +0000454
Igor Sysoev295bb632002-12-23 18:22:18 +0000455 for ( ;; ) {
Igor Sysoev88092572002-12-19 07:08:55 +0000456
Igor Sysoev369145c2004-05-28 15:49:23 +0000457 if (b->pos >= b->last) {
Igor Sysoevb4fbdcf2008-06-30 12:35:16 +0000458
Igor Sysoeva6717c42002-12-23 06:29:22 +0000459 if (cf->conf_file->file.offset
Igor Sysoevaa828612005-02-09 14:31:07 +0000460 >= ngx_file_size(&cf->conf_file->file.info))
461 {
462 if (cf->args->nelts > 0) {
Igor Sysoevb4fbdcf2008-06-30 12:35:16 +0000463
464 if (cf->conf_file->file.fd == NGX_INVALID_FILE) {
465 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
466 "unexpected end of parameter, "
467 "expecting \";\"");
468 return NGX_ERROR;
469 }
470
Igor Sysoev40460ba2007-02-20 15:47:54 +0000471 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
472 "unexpected end of file, "
473 "expecting \";\" or \"}\"");
Igor Sysoevaa828612005-02-09 14:31:07 +0000474 return NGX_ERROR;
475 }
476
Igor Sysoev960ffa42002-12-26 07:24:21 +0000477 return NGX_CONF_FILE_DONE;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000478 }
479
Igor Sysoev6d099502008-08-26 21:10:20 +0000480 len = b->pos - start;
481
482 if (len == ngx_pagesize) {
483 cf->conf_file->line = start_line;
484
Igor Sysoevc48f49f2008-08-27 12:19:07 +0000485 if (d_quoted) {
486 ch = '"';
487
488 } else if (s_quoted) {
489 ch = '\'';
490
491 } else {
492 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
493 "too long parameter \"%*s...\" started",
494 10, start);
495 return NGX_ERROR;
496 }
497
Igor Sysoev6d099502008-08-26 21:10:20 +0000498 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
Igor Sysoevc48f49f2008-08-27 12:19:07 +0000499 "too long parameter, probably "
500 "missing terminating \"%c\" character", ch);
Igor Sysoev6d099502008-08-26 21:10:20 +0000501 return NGX_ERROR;
Igor Sysoev88092572002-12-19 07:08:55 +0000502 }
503
Igor Sysoev6d099502008-08-26 21:10:20 +0000504 if (len) {
505 ngx_memcpy(b->start, start, len);
506 }
507
508 n = ngx_read_file(&cf->conf_file->file, b->start + len,
509 b->end - (b->start + len),
Igor Sysoev88092572002-12-19 07:08:55 +0000510 cf->conf_file->file.offset);
511
512 if (n == NGX_ERROR) {
513 return NGX_ERROR;
514 }
515
Igor Sysoev6d099502008-08-26 21:10:20 +0000516 b->pos = b->start + len;
Igor Sysoev369145c2004-05-28 15:49:23 +0000517 b->last = b->pos + n;
Igor Sysoev6d099502008-08-26 21:10:20 +0000518 start = b->start;
Igor Sysoev88092572002-12-19 07:08:55 +0000519 }
520
Igor Sysoev369145c2004-05-28 15:49:23 +0000521 ch = *b->pos++;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000522
Igor Sysoev88092572002-12-19 07:08:55 +0000523 if (ch == LF) {
524 cf->conf_file->line++;
Igor Sysoev960ffa42002-12-26 07:24:21 +0000525
526 if (sharp_comment) {
527 sharp_comment = 0;
528 }
529 }
530
531 if (sharp_comment) {
532 continue;
Igor Sysoev88092572002-12-19 07:08:55 +0000533 }
534
Igor Sysoev295bb632002-12-23 18:22:18 +0000535 if (quoted) {
536 quoted = 0;
537 continue;
538 }
539
Igor Sysoeva6717c42002-12-23 06:29:22 +0000540 if (need_space) {
541 if (ch == ' ' || ch == '\t' || ch == CR || ch == LF) {
542 last_space = 1;
543 need_space = 0;
544 continue;
545 }
546
Igor Sysoev1b735832004-11-11 14:07:14 +0000547 if (ch == ';') {
Igor Sysoeva6717c42002-12-23 06:29:22 +0000548 return NGX_OK;
549 }
550
Igor Sysoev1b735832004-11-11 14:07:14 +0000551 if (ch == '{') {
552 return NGX_CONF_BLOCK_START;
553 }
554
Igor Sysoevc31a9bb2005-11-26 10:11:11 +0000555 if (ch == ')') {
556 last_space = 1;
557 need_space = 0;
Igor Sysoev78329332003-11-10 17:17:31 +0000558
Igor Sysoevc31a9bb2005-11-26 10:11:11 +0000559 } else {
Igor Sysoev40460ba2007-02-20 15:47:54 +0000560 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
561 "unexpected \"%c\"", ch);
Igor Sysoevc31a9bb2005-11-26 10:11:11 +0000562 return NGX_ERROR;
563 }
Igor Sysoeva6717c42002-12-23 06:29:22 +0000564 }
565
Igor Sysoev88092572002-12-19 07:08:55 +0000566 if (last_space) {
Igor Sysoev88092572002-12-19 07:08:55 +0000567 if (ch == ' ' || ch == '\t' || ch == CR || ch == LF) {
Igor Sysoeva6717c42002-12-23 06:29:22 +0000568 continue;
569 }
570
Igor Sysoev369145c2004-05-28 15:49:23 +0000571 start = b->pos - 1;
Igor Sysoev6d099502008-08-26 21:10:20 +0000572 start_line = cf->conf_file->line;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000573
574 switch (ch) {
575
Igor Sysoev295bb632002-12-23 18:22:18 +0000576 case ';':
577 case '{':
Igor Sysoev960ffa42002-12-26 07:24:21 +0000578 if (cf->args->nelts == 0) {
Igor Sysoev40460ba2007-02-20 15:47:54 +0000579 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
580 "unexpected \"%c\"", ch);
Igor Sysoev960ffa42002-12-26 07:24:21 +0000581 return NGX_ERROR;
582 }
583
Igor Sysoev1b735832004-11-11 14:07:14 +0000584 if (ch == '{') {
585 return NGX_CONF_BLOCK_START;
586 }
587
Igor Sysoev295bb632002-12-23 18:22:18 +0000588 return NGX_OK;
589
Igor Sysoev960ffa42002-12-26 07:24:21 +0000590 case '}':
Igor Sysoev4959ec42005-05-23 12:07:45 +0000591 if (cf->args->nelts != 0) {
Igor Sysoev40460ba2007-02-20 15:47:54 +0000592 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
593 "unexpected \"}\"");
Igor Sysoev960ffa42002-12-26 07:24:21 +0000594 return NGX_ERROR;
595 }
596
597 return NGX_CONF_BLOCK_DONE;
598
599 case '#':
600 sharp_comment = 1;
601 continue;
602
Igor Sysoeva6717c42002-12-23 06:29:22 +0000603 case '\\':
604 quoted = 1;
605 last_space = 0;
606 continue;
607
608 case '"':
Igor Sysoev88092572002-12-19 07:08:55 +0000609 start++;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000610 d_quoted = 1;
611 last_space = 0;
Igor Sysoev88092572002-12-19 07:08:55 +0000612 continue;
Igor Sysoev88092572002-12-19 07:08:55 +0000613
Igor Sysoeva6717c42002-12-23 06:29:22 +0000614 case '\'':
615 start++;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000616 s_quoted = 1;
617 last_space = 0;
Igor Sysoev88092572002-12-19 07:08:55 +0000618 continue;
Igor Sysoev88092572002-12-19 07:08:55 +0000619
Igor Sysoeva6717c42002-12-23 06:29:22 +0000620 default:
621 last_space = 0;
Igor Sysoev88092572002-12-19 07:08:55 +0000622 }
623
624 } else {
Igor Sysoev899b44e2005-05-12 14:58:06 +0000625 if (ch == '{' && variable) {
626 continue;
627 }
628
629 variable = 0;
630
Igor Sysoeva6717c42002-12-23 06:29:22 +0000631 if (ch == '\\') {
632 quoted = 1;
633 continue;
634 }
Igor Sysoev88092572002-12-19 07:08:55 +0000635
Igor Sysoev899b44e2005-05-12 14:58:06 +0000636 if (ch == '$') {
637 variable = 1;
638 continue;
639 }
640
Igor Sysoeva6717c42002-12-23 06:29:22 +0000641 if (d_quoted) {
642 if (ch == '"') {
Igor Sysoeva6717c42002-12-23 06:29:22 +0000643 d_quoted = 0;
644 need_space = 1;
645 found = 1;
646 }
647
648 } else if (s_quoted) {
649 if (ch == '\'') {
Igor Sysoeva6717c42002-12-23 06:29:22 +0000650 s_quoted = 0;
651 need_space = 1;
652 found = 1;
653 }
654
655 } else if (ch == ' ' || ch == '\t' || ch == CR || ch == LF
656 || ch == ';' || ch == '{') {
Igor Sysoeva6717c42002-12-23 06:29:22 +0000657 last_space = 1;
658 found = 1;
659 }
660
661 if (found) {
Igor Sysoevc1571722005-03-19 12:38:37 +0000662 word = ngx_array_push(cf->args);
663 if (word == NULL) {
Igor Sysoev369145c2004-05-28 15:49:23 +0000664 return NGX_ERROR;
665 }
666
Igor Sysoev7f6b2ff2008-06-17 15:00:30 +0000667 word->data = ngx_pnalloc(cf->pool, b->pos - start + 1);
Igor Sysoevc1571722005-03-19 12:38:37 +0000668 if (word->data == NULL) {
Igor Sysoev369145c2004-05-28 15:49:23 +0000669 return NGX_ERROR;
670 }
Igor Sysoev88092572002-12-19 07:08:55 +0000671
Igor Sysoev295bb632002-12-23 18:22:18 +0000672 for (dst = word->data, src = start, len = 0;
Igor Sysoev369145c2004-05-28 15:49:23 +0000673 src < b->pos - 1;
Igor Sysoev295bb632002-12-23 18:22:18 +0000674 len++)
Igor Sysoeva6717c42002-12-23 06:29:22 +0000675 {
676 if (*src == '\\') {
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000677 switch (src[1]) {
678 case '"':
679 case '\'':
680 case '\\':
681 src++;
682 break;
683
684 case 't':
685 *dst++ = '\t';
686 src += 2;
687 continue;
688
689 case 'r':
690 *dst++ = '\r';
691 src += 2;
692 continue;
693
694 case 'n':
695 *dst++ = '\n';
696 src += 2;
697 continue;
698 }
699
Igor Sysoeva6717c42002-12-23 06:29:22 +0000700 }
Igor Sysoev88092572002-12-19 07:08:55 +0000701 *dst++ = *src++;
702 }
703 *dst = '\0';
Igor Sysoev295bb632002-12-23 18:22:18 +0000704 word->len = len;
Igor Sysoev88092572002-12-19 07:08:55 +0000705
Igor Sysoev1b735832004-11-11 14:07:14 +0000706 if (ch == ';') {
Igor Sysoeva6717c42002-12-23 06:29:22 +0000707 return NGX_OK;
Igor Sysoev88092572002-12-19 07:08:55 +0000708 }
709
Igor Sysoev1b735832004-11-11 14:07:14 +0000710 if (ch == '{') {
711 return NGX_CONF_BLOCK_START;
712 }
713
Igor Sysoeva6717c42002-12-23 06:29:22 +0000714 found = 0;
Igor Sysoev88092572002-12-19 07:08:55 +0000715 }
Igor Sysoev88092572002-12-19 07:08:55 +0000716 }
717 }
718}
719
Igor Sysoev88092572002-12-19 07:08:55 +0000720
Igor Sysoev4d656dc2005-03-22 16:02:46 +0000721static char *
722ngx_conf_include(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoevab517d52004-05-18 15:29:08 +0000723{
Igor Sysoev97c2f462006-10-02 08:46:45 +0000724 char *rv;
725 ngx_int_t n;
Igor Sysoev85d6a3e2008-03-03 17:12:05 +0000726 ngx_str_t *value, file, name;
Igor Sysoev97c2f462006-10-02 08:46:45 +0000727 ngx_glob_t gl;
Igor Sysoevab517d52004-05-18 15:29:08 +0000728
729 value = cf->args->elts;
Igor Sysoev6d2a14a2004-09-27 16:03:21 +0000730 file = value[1];
Igor Sysoevab517d52004-05-18 15:29:08 +0000731
Igor Sysoev97c2f462006-10-02 08:46:45 +0000732 ngx_log_debug1(NGX_LOG_DEBUG_CORE, cf->log, 0, "include %s", file.data);
733
Igor Sysoeva1df4162007-07-29 18:05:45 +0000734 if (ngx_conf_full_name(cf->cycle, &file, 1) == NGX_ERROR) {
Igor Sysoevab517d52004-05-18 15:29:08 +0000735 return NGX_CONF_ERROR;
736 }
737
Igor Sysoeva13b3b92008-04-29 09:28:42 +0000738 if (strpbrk((char *) file.data, "*?[") == NULL) {
739
740 ngx_log_debug1(NGX_LOG_DEBUG_CORE, cf->log, 0, "include %s", file.data);
741
742 return ngx_conf_parse(cf, &file);
743 }
744
Igor Sysoev97c2f462006-10-02 08:46:45 +0000745 ngx_memzero(&gl, sizeof(ngx_glob_t));
Igor Sysoevab517d52004-05-18 15:29:08 +0000746
Igor Sysoev97c2f462006-10-02 08:46:45 +0000747 gl.pattern = file.data;
748 gl.log = cf->log;
Igor Sysoeva13b3b92008-04-29 09:28:42 +0000749 gl.test = 1;
Igor Sysoev97c2f462006-10-02 08:46:45 +0000750
751 if (ngx_open_glob(&gl) != NGX_OK) {
752 ngx_conf_log_error(NGX_LOG_EMERG, cf, ngx_errno,
753 ngx_open_glob_n " \"%s\" failed", file.data);
754 return NGX_CONF_ERROR;
755 }
756
757 rv = NGX_CONF_OK;
758
759 for ( ;; ) {
Igor Sysoev85d6a3e2008-03-03 17:12:05 +0000760 n = ngx_read_glob(&gl, &name);
Igor Sysoev97c2f462006-10-02 08:46:45 +0000761
762 if (n != NGX_OK) {
763 break;
764 }
765
Igor Sysoev85d6a3e2008-03-03 17:12:05 +0000766 file.len = name.len++;
767 file.data = ngx_pstrdup(cf->pool, &name);
768
Igor Sysoev97c2f462006-10-02 08:46:45 +0000769 ngx_log_debug1(NGX_LOG_DEBUG_CORE, cf->log, 0, "include %s", file.data);
770
771 rv = ngx_conf_parse(cf, &file);
772
773 if (rv != NGX_CONF_OK) {
774 break;
775 }
776 }
777
778 ngx_close_glob(&gl);
779
780 return rv;
Igor Sysoevab517d52004-05-18 15:29:08 +0000781}
782
783
Igor Sysoev4d656dc2005-03-22 16:02:46 +0000784ngx_int_t
Igor Sysoeva1df4162007-07-29 18:05:45 +0000785ngx_conf_full_name(ngx_cycle_t *cycle, ngx_str_t *name, ngx_uint_t conf_prefix)
Igor Sysoev6d2a14a2004-09-27 16:03:21 +0000786{
Igor Sysoeva1df4162007-07-29 18:05:45 +0000787 size_t len;
788 u_char *p, *prefix;
Igor Sysoev6d2a14a2004-09-27 16:03:21 +0000789 ngx_str_t old;
790
791 if (name->data[0] == '/') {
792 return NGX_OK;
793 }
794
Igor Sysoev1b735832004-11-11 14:07:14 +0000795#if (NGX_WIN32)
796
797 if (name->len > 2
798 && name->data[1] == ':'
799 && ((name->data[0] >= 'a' && name->data[0] <= 'z')
800 || (name->data[0] >= 'A' && name->data[0] <= 'Z')))
801 {
802 return NGX_OK;
803 }
804
805#endif
806
Igor Sysoev6d2a14a2004-09-27 16:03:21 +0000807 old = *name;
808
Igor Sysoeva1df4162007-07-29 18:05:45 +0000809 if (conf_prefix) {
810 len = sizeof(NGX_CONF_PREFIX) - 1;
811 prefix = (u_char *) NGX_CONF_PREFIX;
Igor Sysoev6d2a14a2004-09-27 16:03:21 +0000812
Igor Sysoeva1df4162007-07-29 18:05:45 +0000813 } else {
814 len = cycle->root.len;
815 prefix = cycle->root.data;
816 }
817
818 name->len = len + old.len;
Igor Sysoev7f6b2ff2008-06-17 15:00:30 +0000819 name->data = ngx_pnalloc(cycle->pool, name->len + 1);
Igor Sysoev9e580192006-02-01 18:22:15 +0000820 if (name->data == NULL) {
821 return NGX_ERROR;
Igor Sysoev6d2a14a2004-09-27 16:03:21 +0000822 }
823
Igor Sysoeva1df4162007-07-29 18:05:45 +0000824 p = ngx_cpymem(name->data, prefix, len);
Igor Sysoev6d2a14a2004-09-27 16:03:21 +0000825 ngx_cpystrn(p, old.data, old.len + 1);
826
827 return NGX_OK;
828}
829
830
Igor Sysoev4d656dc2005-03-22 16:02:46 +0000831ngx_open_file_t *
832ngx_conf_open_file(ngx_cycle_t *cycle, ngx_str_t *name)
Igor Sysoev890fc962003-07-20 21:15:59 +0000833{
Igor Sysoev6d2a14a2004-09-27 16:03:21 +0000834 ngx_str_t full;
Igor Sysoev10a543a2004-03-16 07:10:12 +0000835 ngx_uint_t i;
Igor Sysoevb9e34412004-09-03 15:50:30 +0000836 ngx_list_part_t *part;
Igor Sysoev890fc962003-07-20 21:15:59 +0000837 ngx_open_file_t *file;
838
Igor Sysoevaad1b892004-10-03 20:02:06 +0000839#if (NGX_SUPPRESS_WARN)
840 full.len = 0;
841 full.data = NULL;
842#endif
843
Igor Sysoev890fc962003-07-20 21:15:59 +0000844 if (name) {
Igor Sysoev6d2a14a2004-09-27 16:03:21 +0000845 full = *name;
846
Igor Sysoeva1df4162007-07-29 18:05:45 +0000847 if (ngx_conf_full_name(cycle, &full, 0) == NGX_ERROR) {
Igor Sysoev6d2a14a2004-09-27 16:03:21 +0000848 return NULL;
849 }
850
Igor Sysoevb9e34412004-09-03 15:50:30 +0000851 part = &cycle->open_files.part;
852 file = part->elts;
853
854 for (i = 0; /* void */ ; i++) {
855
856 if (i >= part->nelts) {
857 if (part->next == NULL) {
858 break;
859 }
860 part = part->next;
861 file = part->elts;
862 i = 0;
863 }
864
Igor Sysoev6d2a14a2004-09-27 16:03:21 +0000865 if (full.len != file[i].name.len) {
Igor Sysoev890fc962003-07-20 21:15:59 +0000866 continue;
867 }
868
Igor Sysoev6d2a14a2004-09-27 16:03:21 +0000869 if (ngx_strcmp(full.data, file[i].name.data) == 0) {
Igor Sysoev890fc962003-07-20 21:15:59 +0000870 return &file[i];
871 }
872 }
873 }
874
Igor Sysoevc1571722005-03-19 12:38:37 +0000875 file = ngx_list_push(&cycle->open_files);
876 if (file == NULL) {
Igor Sysoev369145c2004-05-28 15:49:23 +0000877 return NULL;
878 }
879
Igor Sysoev890fc962003-07-20 21:15:59 +0000880 if (name) {
Igor Sysoev4bed15b2004-09-30 19:44:38 +0000881 file->fd = NGX_INVALID_FILE;
Igor Sysoev6d2a14a2004-09-27 16:03:21 +0000882 file->name = full;
883
Igor Sysoev980a9242004-09-05 19:54:02 +0000884 } else {
Igor Sysoevaad1b892004-10-03 20:02:06 +0000885 file->fd = ngx_stderr_fileno;
Igor Sysoev980a9242004-09-05 19:54:02 +0000886 file->name.len = 0;
887 file->name.data = NULL;
Igor Sysoev890fc962003-07-20 21:15:59 +0000888 }
889
Igor Sysoev697d1ae2005-10-27 15:46:13 +0000890 file->buffer = NULL;
891
Igor Sysoev890fc962003-07-20 21:15:59 +0000892 return file;
893}
894
895
Igor Sysoev697d1ae2005-10-27 15:46:13 +0000896static void
897ngx_conf_flush_files(ngx_cycle_t *cycle)
898{
899 ngx_uint_t i;
900 ngx_list_part_t *part;
901 ngx_open_file_t *file;
902
903 ngx_log_debug0(NGX_LOG_DEBUG_CORE, cycle->log, 0, "flush files");
904
905 part = &cycle->open_files.part;
906 file = part->elts;
907
908 for (i = 0; /* void */ ; i++) {
909
910 if (i >= part->nelts) {
911 if (part->next == NULL) {
912 break;
913 }
914 part = part->next;
915 file = part->elts;
916 i = 0;
917 }
918
919 if (file[i].buffer == NULL || file[i].pos - file[i].buffer == 0) {
920 continue;
921 }
922
923 ngx_write_fd(file[i].fd, file[i].buffer, file[i].pos - file[i].buffer);
924 }
925}
926
927
Igor Sysoev4d656dc2005-03-22 16:02:46 +0000928void ngx_cdecl
929ngx_conf_log_error(ngx_uint_t level, ngx_conf_t *cf, ngx_err_t err,
930 char *fmt, ...)
Igor Sysoev8e1fbe62003-07-18 14:44:05 +0000931{
Igor Sysoev1b735832004-11-11 14:07:14 +0000932 u_char errstr[NGX_MAX_CONF_ERRSTR], *buf, *last;
Igor Sysoev8e1fbe62003-07-18 14:44:05 +0000933 va_list args;
934
Igor Sysoev1b735832004-11-11 14:07:14 +0000935 last = errstr + NGX_MAX_CONF_ERRSTR;
936
Igor Sysoev8e1fbe62003-07-18 14:44:05 +0000937 va_start(args, fmt);
Igor Sysoev1b735832004-11-11 14:07:14 +0000938 buf = ngx_vsnprintf(errstr, last - errstr, fmt, args);
Igor Sysoev8e1fbe62003-07-18 14:44:05 +0000939 va_end(args);
940
Igor Sysoev1b735832004-11-11 14:07:14 +0000941 *buf = '\0';
942
Igor Sysoev8e1fbe62003-07-18 14:44:05 +0000943 if (err) {
Igor Sysoev1b735832004-11-11 14:07:14 +0000944 buf = ngx_snprintf(buf, last - buf - 1, " (%d: ", err);
945 buf = ngx_strerror_r(err, buf, last - buf - 1);
946 *buf++ = ')';
947 *buf = '\0';
Igor Sysoev8e1fbe62003-07-18 14:44:05 +0000948 }
949
Igor Sysoev305a9d82005-12-26 17:07:48 +0000950 if (cf->conf_file == NULL) {
951 ngx_log_error(level, cf->log, 0, "%s", errstr);
952 return;
953 }
954
Igor Sysoev02f742b2005-04-08 15:18:55 +0000955 ngx_log_error(level, cf->log, 0, "%s in %s:%ui",
Igor Sysoev8e1fbe62003-07-18 14:44:05 +0000956 errstr, cf->conf_file->file.name.data, cf->conf_file->line);
957}
958
959
Igor Sysoev4d656dc2005-03-22 16:02:46 +0000960char *
961ngx_conf_set_flag_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoev6a644c62003-03-04 06:33:48 +0000962{
Igor Sysoevaa3436c2003-05-30 14:27:59 +0000963 char *p = conf;
964
Igor Sysoev85080d02004-09-22 16:18:21 +0000965 ngx_str_t *value;
966 ngx_flag_t *fp;
967 ngx_conf_post_t *post;
Igor Sysoev6a644c62003-03-04 06:33:48 +0000968
Igor Sysoev85080d02004-09-22 16:18:21 +0000969 fp = (ngx_flag_t *) (p + cmd->offset);
Igor Sysoevf1079102003-10-23 06:13:16 +0000970
Igor Sysoev85080d02004-09-22 16:18:21 +0000971 if (*fp != NGX_CONF_UNSET) {
Igor Sysoev1c13c662003-05-20 15:37:55 +0000972 return "is duplicate";
973 }
974
Igor Sysoeva3677242004-04-14 05:57:36 +0000975 value = cf->args->elts;
Igor Sysoev6a644c62003-03-04 06:33:48 +0000976
Igor Sysoev722231f2007-02-14 18:51:19 +0000977 if (ngx_strcasecmp(value[1].data, (u_char *) "on") == 0) {
Igor Sysoev85080d02004-09-22 16:18:21 +0000978 *fp = 1;
Igor Sysoev6a644c62003-03-04 06:33:48 +0000979
Igor Sysoev722231f2007-02-14 18:51:19 +0000980 } else if (ngx_strcasecmp(value[1].data, (u_char *) "off") == 0) {
Igor Sysoev85080d02004-09-22 16:18:21 +0000981 *fp = 0;
Igor Sysoev6a644c62003-03-04 06:33:48 +0000982
983 } else {
Igor Sysoev890fc962003-07-20 21:15:59 +0000984 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
985 "invalid value \"%s\" in \"%s\" directive, "
986 "it must be \"on\" or \"off\"",
987 value[1].data, cmd->name.data);
988 return NGX_CONF_ERROR;
Igor Sysoev6a644c62003-03-04 06:33:48 +0000989 }
990
Igor Sysoev85080d02004-09-22 16:18:21 +0000991 if (cmd->post) {
992 post = cmd->post;
993 return post->post_handler(cf, post, fp);
994 }
Igor Sysoev6a644c62003-03-04 06:33:48 +0000995
996 return NGX_CONF_OK;
997}
998
999
Igor Sysoev4d656dc2005-03-22 16:02:46 +00001000char *
1001ngx_conf_set_str_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001002{
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001003 char *p = conf;
1004
Igor Sysoev13836ce2004-08-31 15:32:52 +00001005 ngx_str_t *field, *value;
1006 ngx_conf_post_t *post;
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001007
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001008 field = (ngx_str_t *) (p + cmd->offset);
Igor Sysoev1c13c662003-05-20 15:37:55 +00001009
Igor Sysoev6253ca12003-05-27 12:18:54 +00001010 if (field->data) {
Igor Sysoev1c13c662003-05-20 15:37:55 +00001011 return "is duplicate";
1012 }
1013
Igor Sysoeva3677242004-04-14 05:57:36 +00001014 value = cf->args->elts;
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001015
Igor Sysoevdc9dd432003-10-22 16:38:26 +00001016 *field = value[1];
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001017
Igor Sysoev13836ce2004-08-31 15:32:52 +00001018 if (cmd->post) {
1019 post = cmd->post;
1020 return post->post_handler(cf, post, field);
1021 }
1022
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001023 return NGX_CONF_OK;
1024}
1025
1026
Igor Sysoev4d656dc2005-03-22 16:02:46 +00001027char *
Igor Sysoev3338cfd2006-05-11 14:43:47 +00001028ngx_conf_set_str_array_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoev899b44e2005-05-12 14:58:06 +00001029{
1030 char *p = conf;
1031
Igor Sysoev3338cfd2006-05-11 14:43:47 +00001032 ngx_str_t *value, *s;
Igor Sysoev899b44e2005-05-12 14:58:06 +00001033 ngx_array_t **a;
Igor Sysoev899b44e2005-05-12 14:58:06 +00001034 ngx_conf_post_t *post;
1035
1036 a = (ngx_array_t **) (p + cmd->offset);
1037
Igor Sysoevcb540612007-12-09 18:03:20 +00001038 if (*a == NGX_CONF_UNSET_PTR) {
Igor Sysoev3338cfd2006-05-11 14:43:47 +00001039 *a = ngx_array_create(cf->pool, 4, sizeof(ngx_str_t));
Igor Sysoev899b44e2005-05-12 14:58:06 +00001040 if (*a == NULL) {
1041 return NGX_CONF_ERROR;
1042 }
1043 }
1044
Igor Sysoev3338cfd2006-05-11 14:43:47 +00001045 s = ngx_array_push(*a);
1046 if (s == NULL) {
Igor Sysoev899b44e2005-05-12 14:58:06 +00001047 return NGX_CONF_ERROR;
1048 }
1049
1050 value = cf->args->elts;
1051
Igor Sysoev3338cfd2006-05-11 14:43:47 +00001052 *s = value[1];
Igor Sysoev899b44e2005-05-12 14:58:06 +00001053
1054 if (cmd->post) {
1055 post = cmd->post;
Igor Sysoev3338cfd2006-05-11 14:43:47 +00001056 return post->post_handler(cf, post, s);
1057 }
1058
1059 return NGX_CONF_OK;
1060}
1061
1062
1063char *
1064ngx_conf_set_keyval_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
1065{
1066 char *p = conf;
1067
1068 ngx_str_t *value;
1069 ngx_array_t **a;
1070 ngx_keyval_t *kv;
1071 ngx_conf_post_t *post;
1072
1073 a = (ngx_array_t **) (p + cmd->offset);
1074
1075 if (*a == NULL) {
1076 *a = ngx_array_create(cf->pool, 4, sizeof(ngx_keyval_t));
1077 if (*a == NULL) {
1078 return NGX_CONF_ERROR;
1079 }
1080 }
1081
1082 kv = ngx_array_push(*a);
1083 if (kv == NULL) {
1084 return NGX_CONF_ERROR;
1085 }
1086
1087 value = cf->args->elts;
1088
1089 kv->key = value[1];
1090 kv->value = value[2];
1091
1092 if (cmd->post) {
1093 post = cmd->post;
1094 return post->post_handler(cf, post, kv);
Igor Sysoev899b44e2005-05-12 14:58:06 +00001095 }
1096
1097 return NGX_CONF_OK;
1098}
1099
1100
1101char *
Igor Sysoev4d656dc2005-03-22 16:02:46 +00001102ngx_conf_set_num_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoevbb4ec5c2003-05-16 15:27:48 +00001103{
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001104 char *p = conf;
1105
Igor Sysoev0ee5d3c2004-02-20 16:48:59 +00001106 ngx_int_t *np;
Igor Sysoev12b4b002003-10-24 06:53:41 +00001107 ngx_str_t *value;
1108 ngx_conf_post_t *post;
Igor Sysoevbb4ec5c2003-05-16 15:27:48 +00001109
Igor Sysoevf1079102003-10-23 06:13:16 +00001110
Igor Sysoev0ee5d3c2004-02-20 16:48:59 +00001111 np = (ngx_int_t *) (p + cmd->offset);
Igor Sysoevf1079102003-10-23 06:13:16 +00001112
1113 if (*np != NGX_CONF_UNSET) {
Igor Sysoev1c13c662003-05-20 15:37:55 +00001114 return "is duplicate";
1115 }
1116
Igor Sysoeva3677242004-04-14 05:57:36 +00001117 value = cf->args->elts;
Igor Sysoevf1079102003-10-23 06:13:16 +00001118 *np = ngx_atoi(value[1].data, value[1].len);
1119 if (*np == NGX_ERROR) {
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001120 return "invalid number";
Igor Sysoevbb4ec5c2003-05-16 15:27:48 +00001121 }
1122
Igor Sysoev12b4b002003-10-24 06:53:41 +00001123 if (cmd->post) {
1124 post = cmd->post;
1125 return post->post_handler(cf, post, np);
Igor Sysoevf1079102003-10-23 06:13:16 +00001126 }
Igor Sysoevbb4ec5c2003-05-16 15:27:48 +00001127
1128 return NGX_CONF_OK;
1129}
1130
1131
Igor Sysoev4d656dc2005-03-22 16:02:46 +00001132char *
1133ngx_conf_set_size_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoev960ffa42002-12-26 07:24:21 +00001134{
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001135 char *p = conf;
1136
Igor Sysoev10a543a2004-03-16 07:10:12 +00001137 size_t *sp;
Igor Sysoev12b4b002003-10-24 06:53:41 +00001138 ngx_str_t *value;
1139 ngx_conf_post_t *post;
Igor Sysoev960ffa42002-12-26 07:24:21 +00001140
Igor Sysoevf1079102003-10-23 06:13:16 +00001141
Igor Sysoev10a543a2004-03-16 07:10:12 +00001142 sp = (size_t *) (p + cmd->offset);
1143 if (*sp != NGX_CONF_UNSET_SIZE) {
Igor Sysoev1c13c662003-05-20 15:37:55 +00001144 return "is duplicate";
1145 }
1146
Igor Sysoeva3677242004-04-14 05:57:36 +00001147 value = cf->args->elts;
Igor Sysoev960ffa42002-12-26 07:24:21 +00001148
Igor Sysoev0ee5d3c2004-02-20 16:48:59 +00001149 *sp = ngx_parse_size(&value[1]);
Igor Sysoev10a543a2004-03-16 07:10:12 +00001150 if (*sp == (size_t) NGX_ERROR) {
Igor Sysoev3d09c8d2003-05-06 17:03:16 +00001151 return "invalid value";
Igor Sysoev960ffa42002-12-26 07:24:21 +00001152 }
Igor Sysoev88092572002-12-19 07:08:55 +00001153
Igor Sysoev12b4b002003-10-24 06:53:41 +00001154 if (cmd->post) {
1155 post = cmd->post;
Igor Sysoev0ee5d3c2004-02-20 16:48:59 +00001156 return post->post_handler(cf, post, sp);
Igor Sysoevf1079102003-10-23 06:13:16 +00001157 }
Igor Sysoev960ffa42002-12-26 07:24:21 +00001158
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001159 return NGX_CONF_OK;
Igor Sysoev88092572002-12-19 07:08:55 +00001160}
1161
Igor Sysoev88092572002-12-19 07:08:55 +00001162
Igor Sysoev4d656dc2005-03-22 16:02:46 +00001163char *
Igor Sysoev1765f472006-07-07 16:33:19 +00001164ngx_conf_set_off_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
1165{
1166 char *p = conf;
1167
1168 off_t *op;
1169 ngx_str_t *value;
1170 ngx_conf_post_t *post;
1171
1172
1173 op = (off_t *) (p + cmd->offset);
1174 if (*op != NGX_CONF_UNSET) {
1175 return "is duplicate";
1176 }
1177
1178 value = cf->args->elts;
1179
1180 *op = ngx_parse_offset(&value[1]);
1181 if (*op == (off_t) NGX_ERROR) {
1182 return "invalid value";
1183 }
1184
1185 if (cmd->post) {
1186 post = cmd->post;
1187 return post->post_handler(cf, post, op);
1188 }
1189
1190 return NGX_CONF_OK;
1191}
1192
1193
1194char *
Igor Sysoev4d656dc2005-03-22 16:02:46 +00001195ngx_conf_set_msec_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoev960ffa42002-12-26 07:24:21 +00001196{
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001197 char *p = conf;
1198
Igor Sysoev0ee5d3c2004-02-20 16:48:59 +00001199 ngx_msec_t *msp;
Igor Sysoev12b4b002003-10-24 06:53:41 +00001200 ngx_str_t *value;
1201 ngx_conf_post_t *post;
Igor Sysoev960ffa42002-12-26 07:24:21 +00001202
Igor Sysoevf1079102003-10-23 06:13:16 +00001203
Igor Sysoev0ee5d3c2004-02-20 16:48:59 +00001204 msp = (ngx_msec_t *) (p + cmd->offset);
Igor Sysoev10a543a2004-03-16 07:10:12 +00001205 if (*msp != NGX_CONF_UNSET_MSEC) {
Igor Sysoev1c13c662003-05-20 15:37:55 +00001206 return "is duplicate";
1207 }
1208
Igor Sysoeva3677242004-04-14 05:57:36 +00001209 value = cf->args->elts;
Igor Sysoev960ffa42002-12-26 07:24:21 +00001210
Igor Sysoev0ee5d3c2004-02-20 16:48:59 +00001211 *msp = ngx_parse_time(&value[1], 0);
1212 if (*msp == (ngx_msec_t) NGX_ERROR) {
Igor Sysoev8556e6d2003-10-23 15:54:19 +00001213 return "invalid value";
Igor Sysoev1d8d9ee2003-04-28 15:06:39 +00001214 }
1215
Igor Sysoev0ee5d3c2004-02-20 16:48:59 +00001216 if (*msp == (ngx_msec_t) NGX_PARSE_LARGE_TIME) {
Igor Sysoev8556e6d2003-10-23 15:54:19 +00001217 return "value must be less than 597 hours";
1218 }
Igor Sysoevf1079102003-10-23 06:13:16 +00001219
Igor Sysoev12b4b002003-10-24 06:53:41 +00001220 if (cmd->post) {
1221 post = cmd->post;
Igor Sysoev0ee5d3c2004-02-20 16:48:59 +00001222 return post->post_handler(cf, post, msp);
Igor Sysoevf1079102003-10-23 06:13:16 +00001223 }
Igor Sysoev960ffa42002-12-26 07:24:21 +00001224
Igor Sysoev4e9393a2003-01-09 05:36:00 +00001225 return NGX_CONF_OK;
Igor Sysoev88092572002-12-19 07:08:55 +00001226}
Igor Sysoev6a644c62003-03-04 06:33:48 +00001227
Igor Sysoev3d09c8d2003-05-06 17:03:16 +00001228
Igor Sysoev4d656dc2005-03-22 16:02:46 +00001229char *
1230ngx_conf_set_sec_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoev3d09c8d2003-05-06 17:03:16 +00001231{
Igor Sysoevaa3436c2003-05-30 14:27:59 +00001232 char *p = conf;
1233
Igor Sysoev0ee5d3c2004-02-20 16:48:59 +00001234 time_t *sp;
Igor Sysoev12b4b002003-10-24 06:53:41 +00001235 ngx_str_t *value;
1236 ngx_conf_post_t *post;
Igor Sysoev3d09c8d2003-05-06 17:03:16 +00001237
Igor Sysoevf1079102003-10-23 06:13:16 +00001238
Igor Sysoev0ee5d3c2004-02-20 16:48:59 +00001239 sp = (time_t *) (p + cmd->offset);
1240 if (*sp != NGX_CONF_UNSET) {
Igor Sysoev1c13c662003-05-20 15:37:55 +00001241 return "is duplicate";
1242 }
1243
Igor Sysoeva3677242004-04-14 05:57:36 +00001244 value = cf->args->elts;
Igor Sysoev3d09c8d2003-05-06 17:03:16 +00001245
Igor Sysoev0ee5d3c2004-02-20 16:48:59 +00001246 *sp = ngx_parse_time(&value[1], 1);
1247 if (*sp == NGX_ERROR) {
Igor Sysoev8556e6d2003-10-23 15:54:19 +00001248 return "invalid value";
Igor Sysoev3d09c8d2003-05-06 17:03:16 +00001249 }
1250
Igor Sysoev0ee5d3c2004-02-20 16:48:59 +00001251 if (*sp == NGX_PARSE_LARGE_TIME) {
Igor Sysoev8556e6d2003-10-23 15:54:19 +00001252 return "value must be less than 68 years";
1253 }
Igor Sysoevf1079102003-10-23 06:13:16 +00001254
Igor Sysoev12b4b002003-10-24 06:53:41 +00001255 if (cmd->post) {
1256 post = cmd->post;
Igor Sysoev0ee5d3c2004-02-20 16:48:59 +00001257 return post->post_handler(cf, post, sp);
Igor Sysoevf1079102003-10-23 06:13:16 +00001258 }
Igor Sysoev3d09c8d2003-05-06 17:03:16 +00001259
1260 return NGX_CONF_OK;
1261}
1262
1263
Igor Sysoev4d656dc2005-03-22 16:02:46 +00001264char *
1265ngx_conf_set_bufs_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoev3ae32482003-10-08 15:32:54 +00001266{
Igor Sysoev68ee8f12003-10-30 08:51:06 +00001267 char *p = conf;
Igor Sysoev3ae32482003-10-08 15:32:54 +00001268
Igor Sysoev3ae32482003-10-08 15:32:54 +00001269 ngx_str_t *value;
1270 ngx_bufs_t *bufs;
1271
1272
1273 bufs = (ngx_bufs_t *) (p + cmd->offset);
Igor Sysoev3ae32482003-10-08 15:32:54 +00001274 if (bufs->num) {
1275 return "is duplicate";
1276 }
1277
Igor Sysoeva3677242004-04-14 05:57:36 +00001278 value = cf->args->elts;
Igor Sysoev3ae32482003-10-08 15:32:54 +00001279
1280 bufs->num = ngx_atoi(value[1].data, value[1].len);
1281 if (bufs->num == NGX_ERROR || bufs->num == 0) {
1282 return "invalid value";
1283 }
1284
Igor Sysoev8556e6d2003-10-23 15:54:19 +00001285 bufs->size = ngx_parse_size(&value[2]);
Igor Sysoevb5910d42003-10-30 16:51:33 +00001286 if (bufs->size == (size_t) NGX_ERROR || bufs->size == 0) {
Igor Sysoev3ae32482003-10-08 15:32:54 +00001287 return "invalid value";
1288 }
1289
Igor Sysoev3ae32482003-10-08 15:32:54 +00001290 return NGX_CONF_OK;
1291}
1292
1293
Igor Sysoev4d656dc2005-03-22 16:02:46 +00001294char *
1295ngx_conf_set_enum_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoeva3677242004-04-14 05:57:36 +00001296{
1297 char *p = conf;
1298
1299 ngx_uint_t *np, i;
1300 ngx_str_t *value;
1301 ngx_conf_enum_t *e;
1302
1303 np = (ngx_uint_t *) (p + cmd->offset);
1304
1305 if (*np != NGX_CONF_UNSET_UINT) {
1306 return "is duplicate";
1307 }
1308
1309 value = cf->args->elts;
1310 e = cmd->post;
1311
1312 for (i = 0; e[i].name.len != 0; i++) {
1313 if (e[i].name.len != value[1].len
1314 || ngx_strcasecmp(e[i].name.data, value[1].data) != 0)
1315 {
1316 continue;
1317 }
1318
1319 *np = e[i].value;
1320
1321 return NGX_CONF_OK;
1322 }
1323
1324 ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
1325 "invalid value \"%s\"", value[1].data);
1326
1327 return NGX_CONF_ERROR;
1328}
1329
1330
Igor Sysoev4d656dc2005-03-22 16:02:46 +00001331char *
1332ngx_conf_set_bitmask_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoev68ee8f12003-10-30 08:51:06 +00001333{
1334 char *p = conf;
1335
Igor Sysoev10a543a2004-03-16 07:10:12 +00001336 ngx_uint_t *np, i, m;
Igor Sysoev68ee8f12003-10-30 08:51:06 +00001337 ngx_str_t *value;
1338 ngx_conf_bitmask_t *mask;
1339
1340
Igor Sysoev10a543a2004-03-16 07:10:12 +00001341 np = (ngx_uint_t *) (p + cmd->offset);
Igor Sysoeva3677242004-04-14 05:57:36 +00001342 value = cf->args->elts;
Igor Sysoev68ee8f12003-10-30 08:51:06 +00001343 mask = cmd->post;
1344
1345 for (i = 1; i < cf->args->nelts; i++) {
1346 for (m = 0; mask[m].name.len != 0; m++) {
1347
1348 if (mask[m].name.len != value[i].len
Igor Sysoeva3677242004-04-14 05:57:36 +00001349 || ngx_strcasecmp(mask[m].name.data, value[i].data) != 0)
Igor Sysoev68ee8f12003-10-30 08:51:06 +00001350 {
1351 continue;
1352 }
1353
1354 if (*np & mask[m].mask) {
1355 ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
1356 "duplicate value \"%s\"", value[i].data);
1357
1358 } else {
1359 *np |= mask[m].mask;
1360 }
1361
1362 break;
1363 }
1364
1365 if (mask[m].name.len == 0) {
1366 ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
1367 "invalid value \"%s\"", value[i].data);
1368
1369 return NGX_CONF_ERROR;
1370 }
1371 }
1372
1373 return NGX_CONF_OK;
1374}
1375
1376
Igor Sysoev4d656dc2005-03-22 16:02:46 +00001377char *
1378ngx_conf_unsupported(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
Igor Sysoev6a644c62003-03-04 06:33:48 +00001379{
1380 return "unsupported on this platform";
1381}
Igor Sysoevf1079102003-10-23 06:13:16 +00001382
1383
Igor Sysoev4d656dc2005-03-22 16:02:46 +00001384char *
Igor Sysoevc31a9bb2005-11-26 10:11:11 +00001385ngx_conf_deprecated(ngx_conf_t *cf, void *post, void *data)
1386{
1387 ngx_conf_deprecated_t *d = post;
1388
1389 ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
1390 "the \"%s\" directive is deprecated, "
1391 "use the \"%s\" directive instead",
1392 d->old_name, d->new_name);
1393
1394 return NGX_CONF_OK;
1395}
1396
1397
1398char *
Igor Sysoev4d656dc2005-03-22 16:02:46 +00001399ngx_conf_check_num_bounds(ngx_conf_t *cf, void *post, void *data)
Igor Sysoevf1079102003-10-23 06:13:16 +00001400{
Igor Sysoev369145c2004-05-28 15:49:23 +00001401 ngx_conf_num_bounds_t *bounds = post;
1402 ngx_int_t *np = data;
Igor Sysoevf1079102003-10-23 06:13:16 +00001403
Igor Sysoevcf80a702003-11-03 22:20:44 +00001404 if (bounds->high == -1) {
1405 if (*np >= bounds->low) {
1406 return NGX_CONF_OK;
1407 }
1408
1409 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
Igor Sysoev02f742b2005-04-08 15:18:55 +00001410 "value must be equal or more than %i", bounds->low);
Igor Sysoevcf80a702003-11-03 22:20:44 +00001411
1412 return NGX_CONF_ERROR;
1413 }
1414
1415 if (*np >= bounds->low && *np <= bounds->high) {
Igor Sysoevf1079102003-10-23 06:13:16 +00001416 return NGX_CONF_OK;
Igor Sysoevf1079102003-10-23 06:13:16 +00001417 }
1418
Igor Sysoevcf80a702003-11-03 22:20:44 +00001419 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
Igor Sysoev02f742b2005-04-08 15:18:55 +00001420 "value must be between %i and %i",
Igor Sysoevcf80a702003-11-03 22:20:44 +00001421 bounds->low, bounds->high);
1422
1423 return NGX_CONF_ERROR;
Igor Sysoevf1079102003-10-23 06:13:16 +00001424}