| |
| #include <ngx_config.h> |
| |
| #include <ngx_core.h> |
| #include <ngx_files.h> |
| #include <ngx_conf_file.h> |
| |
| |
| static int argument_number[] = { |
| NGX_CONF_NOARGS, |
| NGX_CONF_TAKE1, |
| NGX_CONF_TAKE2 |
| }; |
| |
| static int ngx_conf_read_token(ngx_conf_t *cf); |
| |
| |
| char *ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename) |
| { |
| int i, rc, found; |
| char *rv; |
| void *conf, **pconf; |
| ngx_str_t *name; |
| ngx_fd_t fd; |
| ngx_conf_file_t *prev; |
| ngx_command_t *cmd; |
| |
| if (filename) { |
| |
| /* open configuration file */ |
| |
| fd = ngx_open_file(filename->data, NGX_FILE_RDONLY); |
| if (fd == NGX_INVALID_FILE) { |
| ngx_log_error(NGX_LOG_EMERG, cf->log, ngx_errno, |
| "ngx_conf_file: " |
| ngx_open_file_n " %s failed", filename->data); |
| return NGX_CONF_ERROR; |
| } |
| |
| prev = cf->conf_file; |
| ngx_test_null(cf->conf_file, |
| ngx_palloc(cf->pool, sizeof(ngx_conf_file_t)), |
| NGX_CONF_ERROR); |
| |
| if (ngx_stat_fd(fd, &cf->conf_file->file.info) == -1) { |
| ngx_log_error(NGX_LOG_EMERG, cf->log, ngx_errno, |
| "ngx_conf_file: " |
| ngx_stat_fd_n " %s failed", filename->data); |
| } |
| |
| ngx_test_null(cf->conf_file->hunk, |
| ngx_create_temp_hunk(cf->pool, 1024, 0, 0), |
| NGX_CONF_ERROR); |
| |
| cf->conf_file->file.fd = fd; |
| cf->conf_file->file.name.len = filename->len; |
| cf->conf_file->file.name.data = filename->data; |
| cf->conf_file->file.log = cf->log;; |
| cf->conf_file->line = 1; |
| } |
| |
| for ( ;; ) { |
| rc = ngx_conf_read_token(cf); |
| |
| /* ngx_conf_read_token() returns NGX_OK, NGX_ERROR, |
| NGX_CONF_FILE_DONE or NGX_CONF_BLOCK_DONE */ |
| |
| #if 0 |
| ngx_log_debug(cf->log, "token %d" _ rc); |
| #endif |
| |
| if (rc == NGX_ERROR) { |
| return NGX_CONF_ERROR; |
| } |
| |
| if (rc != NGX_OK) { |
| return NGX_CONF_OK; |
| } |
| |
| if (cf->handler) { |
| |
| /* custom handler, i.e. used in http "types { ... }" directive */ |
| |
| rv = (*cf->handler)(cf, NULL, cf->handler_conf); |
| if (rv == NGX_CONF_OK) { |
| continue; |
| |
| } else if (rv == NGX_CONF_ERROR) { |
| return NGX_CONF_ERROR; |
| |
| } else { |
| ngx_log_error(NGX_LOG_EMERG, cf->log, 0, |
| "%s in %s:%d", |
| rv, |
| cf->conf_file->file.name.data, |
| cf->conf_file->line); |
| return NGX_CONF_ERROR; |
| } |
| } |
| |
| name = (ngx_str_t *) cf->args->elts; |
| found = 0; |
| |
| for (i = 0; !found && ngx_modules[i]; i++) { |
| |
| /* look up the directive in the appropriate modules */ |
| |
| if (ngx_modules[i]->type != NGX_CONF_MODULE_TYPE |
| && ngx_modules[i]->type != cf->module_type) |
| { |
| continue; |
| } |
| |
| cmd = ngx_modules[i]->commands; |
| if (cmd == NULL) { |
| continue; |
| } |
| |
| while (cmd->name.len) { |
| if (name->len == cmd->name.len |
| && ngx_strcmp(name->data, cmd->name.data) == 0) |
| { |
| |
| #if 0 |
| ngx_log_debug(cf->log, "command '%s'" _ cmd->name.data); |
| #endif |
| /* is the directive's location right ? */ |
| |
| if ((cmd->type & cf->cmd_type) == 0) { |
| ngx_log_error(NGX_LOG_EMERG, cf->log, 0, |
| "directive \"%s\" in %s:%d " |
| "is not allowed here", |
| name->data, |
| cf->conf_file->file.name.data, |
| cf->conf_file->line); |
| return NGX_CONF_ERROR; |
| } |
| |
| /* is the directive's argument count right ? */ |
| |
| if (!(cmd->type & NGX_CONF_ANY) |
| && ((cmd->type & NGX_CONF_FLAG && cf->args->nelts != 2) |
| || (!(cmd->type & NGX_CONF_FLAG) |
| && !(cmd->type |
| & argument_number[cf->args->nelts - 1]) |
| ) |
| ) |
| ) |
| { |
| ngx_log_error(NGX_LOG_EMERG, cf->log, 0, |
| "invalid number arguments in " |
| "directive \"%s\" in %s:%d", |
| name->data, |
| cf->conf_file->file.name.data, |
| cf->conf_file->line); |
| return NGX_CONF_ERROR; |
| } |
| |
| /* set up the directive's configuration context */ |
| |
| conf = NULL; |
| |
| if (cf->module_type == NGX_CORE_MODULE_TYPE) { |
| conf = &(((void **) cf->ctx)[ngx_modules[i]->index]); |
| |
| } else if (cf->ctx) { |
| pconf = *(void **) ((char *) cf->ctx + cmd->conf); |
| |
| if (pconf) { |
| conf = pconf[*(int *)(ngx_modules[i]->ctx)]; |
| } |
| } |
| |
| rv = cmd->set(cf, cmd, conf); |
| |
| #if 0 |
| ngx_log_debug(cf->log, "rv: %d" _ rv); |
| #endif |
| |
| if (rv == NGX_CONF_OK) { |
| found = 1; |
| break; |
| |
| } else if (rv == NGX_CONF_ERROR) { |
| return NGX_CONF_ERROR; |
| |
| } else { |
| ngx_log_error(NGX_LOG_EMERG, cf->log, 0, |
| "%s %s in %s:%d", |
| name->data, rv, |
| cf->conf_file->file.name.data, |
| cf->conf_file->line); |
| |
| return NGX_CONF_ERROR; |
| } |
| } |
| |
| cmd++; |
| } |
| } |
| |
| if (!found) { |
| ngx_log_error(NGX_LOG_EMERG, cf->log, 0, |
| "unknown directive \"%s\" in %s:%d", |
| name->data, |
| cf->conf_file->file.name.data, |
| cf->conf_file->line); |
| |
| return NGX_CONF_ERROR; |
| } |
| } |
| |
| if (filename) { |
| cf->conf_file = prev; |
| |
| if (ngx_close_file(fd) == NGX_FILE_ERROR) { |
| ngx_log_error(NGX_LOG_ALERT, cf->log, ngx_errno, |
| ngx_close_file_n " %s failed", |
| cf->conf_file->file.name.data); |
| return NGX_CONF_ERROR; |
| } |
| } |
| |
| return NGX_CONF_OK; |
| } |
| |
| |
| static int ngx_conf_read_token(ngx_conf_t *cf) |
| { |
| char *start, ch, *src, *dst; |
| int len; |
| int found, need_space, last_space, sharp_comment; |
| int quoted, s_quoted, d_quoted; |
| ssize_t n; |
| ngx_str_t *word; |
| ngx_hunk_t *h; |
| |
| found = 0; |
| need_space = 0; |
| last_space = 1; |
| sharp_comment = 0; |
| quoted = s_quoted = d_quoted = 0; |
| |
| cf->args->nelts = 0; |
| h = cf->conf_file->hunk; |
| start = h->pos; |
| |
| #if 0 |
| ngx_log_debug(cf->log, "TOKEN START"); |
| #endif |
| |
| for ( ;; ) { |
| |
| if (h->pos >= h->last) { |
| if (cf->conf_file->file.offset |
| >= ngx_file_size(cf->conf_file->file.info)) { |
| return NGX_CONF_FILE_DONE; |
| } |
| |
| if (h->pos - start) { |
| ngx_memcpy(h->start, start, h->pos - start); |
| } |
| |
| n = ngx_read_file(&cf->conf_file->file, |
| h->start + (h->pos - start), |
| h->end - (h->start + (h->pos - start)), |
| cf->conf_file->file.offset); |
| |
| if (n == NGX_ERROR) { |
| return NGX_ERROR; |
| } |
| |
| h->pos = h->start + (h->pos - start); |
| start = h->start; |
| h->last = h->pos + n; |
| } |
| |
| ch = *h->pos++; |
| |
| #if 0 |
| ngx_log_debug(cf->log, "%d:%d:%d:%d:%d '%c'" _ |
| last_space _ need_space _ |
| quoted _ s_quoted _ d_quoted _ ch); |
| #endif |
| |
| if (ch == LF) { |
| cf->conf_file->line++; |
| |
| if (sharp_comment) { |
| sharp_comment = 0; |
| } |
| } |
| |
| if (sharp_comment) { |
| continue; |
| } |
| |
| if (quoted) { |
| quoted = 0; |
| continue; |
| } |
| |
| if (need_space) { |
| if (ch == ' ' || ch == '\t' || ch == CR || ch == LF) { |
| last_space = 1; |
| need_space = 0; |
| continue; |
| } |
| |
| if (ch == ';' || ch == '{') { |
| return NGX_OK; |
| } |
| |
| return NGX_ERROR; |
| } |
| |
| if (last_space) { |
| if (ch == ' ' || ch == '\t' || ch == CR || ch == LF) { |
| continue; |
| } |
| |
| start = h->pos - 1; |
| |
| switch (ch) { |
| |
| case ';': |
| case '{': |
| if (cf->args->nelts == 0) { |
| ngx_log_error(NGX_LOG_EMERG, cf->log, 0, |
| "unexpected '%c' in %s:%d", |
| ch, cf->conf_file->file.name.data, |
| cf->conf_file->line); |
| return NGX_ERROR; |
| } |
| |
| return NGX_OK; |
| |
| case '}': |
| if (cf->args->nelts > 0) { |
| ngx_log_error(NGX_LOG_EMERG, cf->log, 0, |
| "unexpected '}' in %s:%d", |
| cf->conf_file->file.name.data, |
| cf->conf_file->line); |
| return NGX_ERROR; |
| } |
| |
| return NGX_CONF_BLOCK_DONE; |
| |
| case '#': |
| sharp_comment = 1; |
| continue; |
| |
| case '\\': |
| quoted = 1; |
| last_space = 0; |
| continue; |
| |
| case '"': |
| start++; |
| d_quoted = 1; |
| last_space = 0; |
| continue; |
| |
| case '\'': |
| start++; |
| s_quoted = 1; |
| last_space = 0; |
| continue; |
| |
| default: |
| last_space = 0; |
| } |
| |
| } else { |
| if (ch == '\\') { |
| quoted = 1; |
| continue; |
| } |
| |
| if (d_quoted) { |
| if (ch == '"') { |
| d_quoted = 0; |
| need_space = 1; |
| found = 1; |
| } |
| |
| } else if (s_quoted) { |
| if (ch == '\'') { |
| s_quoted = 0; |
| need_space = 1; |
| found = 1; |
| } |
| |
| } else if (ch == ' ' || ch == '\t' || ch == CR || ch == LF |
| || ch == ';' || ch == '{') { |
| last_space = 1; |
| found = 1; |
| } |
| |
| if (found) { |
| ngx_test_null(word, ngx_push_array(cf->args), NGX_ERROR); |
| ngx_test_null(word->data, |
| ngx_palloc(cf->pool, h->pos - start + 1), |
| NGX_ERROR); |
| |
| for (dst = word->data, src = start, len = 0; |
| src < h->pos - 1; |
| len++) |
| { |
| if (*src == '\\') { |
| src++; |
| } |
| *dst++ = *src++; |
| } |
| *dst = '\0'; |
| word->len = len; |
| |
| #if 0 |
| ngx_log_debug(cf->log, "FOUND %d:'%s'" _ word->len _ word->data); |
| #endif |
| |
| if (ch == ';' || ch == '{') { |
| return NGX_OK; |
| } |
| |
| found = 0; |
| } |
| } |
| } |
| } |
| |
| |
| char *ngx_conf_set_flag_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf) |
| { |
| int flag; |
| ngx_str_t *value; |
| |
| value = (ngx_str_t *) cf->args->elts; |
| |
| if (ngx_strcasecmp(value[1].data, "on") == 0) { |
| flag = 1; |
| |
| } else if (ngx_strcasecmp(value[1].data, "off") == 0) { |
| flag = 0; |
| |
| } else { |
| return "must be \"on\" or \"off\""; |
| } |
| |
| *(int *) (conf + cmd->offset) = flag; |
| |
| return NGX_CONF_OK; |
| } |
| |
| |
| char *ngx_conf_set_str_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf) |
| { |
| ngx_str_t *field, *value; |
| |
| field = (ngx_str_t *) (conf + cmd->offset); |
| value = (ngx_str_t *) cf->args->elts; |
| |
| field->len = value[1].len; |
| field->data = value[1].data; |
| |
| return NGX_CONF_OK; |
| } |
| |
| |
| char *ngx_conf_set_num_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf) |
| { |
| int num, len; |
| ngx_str_t *value; |
| |
| value = (ngx_str_t *) cf->args->elts; |
| |
| len = value[1].len; |
| |
| num = ngx_atoi(value[1].data, len); |
| if (num == NGX_ERROR) { |
| return "invalid value"; |
| } |
| |
| *(int *) (conf + cmd->offset) = num; |
| |
| return NGX_CONF_OK; |
| } |
| |
| |
| char *ngx_conf_set_size_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf) |
| { |
| int size, len, scale; |
| char last; |
| ngx_str_t *value; |
| |
| value = (ngx_str_t *) cf->args->elts; |
| |
| len = value[1].len; |
| last = value[1].data[len - 1]; |
| |
| switch (last) { |
| case 'K': |
| case 'k': |
| len--; |
| scale = 1024; |
| break; |
| |
| case 'M': |
| case 'm': |
| len--; |
| scale = 1024 * 1024; |
| break; |
| |
| default: |
| scale = 1; |
| } |
| |
| size = ngx_atoi(value[1].data, len); |
| if (size == NGX_ERROR) { |
| return "invalid value"; |
| } |
| |
| size *= scale; |
| |
| *(int *) (conf + cmd->offset) = size; |
| |
| return NGX_CONF_OK; |
| } |
| |
| |
| char *ngx_conf_set_msec_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf) |
| { |
| int size, total, len, scale; |
| u_int max, i; |
| char last, *start; |
| ngx_str_t *value; |
| |
| value = (ngx_str_t *) cf->args->elts; |
| start = value[1].data; |
| len = 0; |
| total = 0; |
| |
| for (i = 0; /* void */ ; i++) { |
| |
| if (i < value[1].len) { |
| if (value[1].data[i] != ' ') { |
| len++; |
| continue; |
| } |
| |
| if (value[1].data[i] == ' ' && len == 0) { |
| start = &value[1].data[i + 1]; |
| continue; |
| } |
| } |
| |
| if (len == 0) { |
| break; |
| } |
| |
| last = value[1].data[i - 1]; |
| |
| switch (last) { |
| case 'm': |
| len--; |
| max = 35791; |
| scale = 1000 * 60; |
| break; |
| |
| case 'h': |
| len--; |
| max = 596; |
| scale = 1000 * 60 * 60; |
| break; |
| |
| case 'd': |
| len--; |
| max = 24; |
| scale = 1000 * 60 * 60 * 24; |
| break; |
| |
| case 's': |
| len--; |
| if (value[1].data[i - 2] == 'm') { |
| len--; |
| max = 2147483647; |
| scale = 1; |
| break; |
| } |
| /* fall thru */ |
| |
| default: |
| max = 2147483; |
| scale = 1000; |
| } |
| |
| size = ngx_atoi(start, len); |
| if (size < 0) { |
| return "invalid value"; |
| } |
| |
| if ((u_int) size > max) { |
| return "value must be less than 597 hours"; |
| } |
| |
| total += size * scale; |
| |
| if (i >= value[1].len) { |
| break; |
| } |
| |
| len = 0; |
| start = &value[1].data[i + 1]; |
| } |
| |
| *(int *) (conf + cmd->offset) = total; |
| |
| return NGX_CONF_OK; |
| } |
| |
| |
| char *ngx_conf_set_sec_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf) |
| { |
| int size, total, len, scale; |
| u_int max, i; |
| char last, *start; |
| ngx_str_t *value; |
| |
| value = (ngx_str_t *) cf->args->elts; |
| start = value[1].data; |
| len = 0; |
| total = 0; |
| |
| for (i = 0; /* void */ ; i++) { |
| |
| if (i < value[1].len) { |
| if (value[1].data[i] != ' ') { |
| len++; |
| continue; |
| } |
| |
| if (value[1].data[i] == ' ' && len == 0) { |
| start = &value[1].data[i + 1]; |
| continue; |
| } |
| } |
| |
| if (len == 0) { |
| break; |
| } |
| |
| last = value[1].data[i - 1]; |
| |
| switch (last) { |
| case 'm': |
| len--; |
| max = 35791394; |
| scale = 60; |
| break; |
| |
| case 'h': |
| len--; |
| max = 596523; |
| scale = 60 * 60; |
| break; |
| |
| case 'd': |
| len--; |
| max = 24855; |
| scale = 60 * 60 * 24; |
| break; |
| |
| case 'w': |
| len--; |
| max = 3550; |
| scale = 60 * 60 * 24 * 7; |
| break; |
| |
| case 'M': |
| len--; |
| max = 828; |
| scale = 60 * 60 * 24 * 30; |
| break; |
| |
| case 'y': |
| len--; |
| max = 68; |
| scale = 60 * 60 * 24 * 365; |
| break; |
| |
| case 's': |
| len--; |
| /* fall thru */ |
| |
| default: |
| max = 2147483647; |
| scale = 1; |
| } |
| |
| size = ngx_atoi(start, len); |
| if (size < 0) { |
| return "invalid value"; |
| } |
| |
| if ((u_int) size > max) { |
| return "value must be less than 68 years"; |
| } |
| |
| total += size * scale; |
| |
| if (i >= value[1].len) { |
| break; |
| } |
| |
| len = 0; |
| start = &value[1].data[i + 1]; |
| } |
| |
| *(int *) (conf + cmd->offset) = total; |
| |
| return NGX_CONF_OK; |
| } |
| |
| |
| char *ngx_conf_unsupported(ngx_conf_t *cf, ngx_command_t *cmd, char *conf) |
| { |
| return "unsupported on this platform"; |
| } |