src/core/ngx_conf_file.h - nginx-1.7.10

Data types defined

Macros defined

Source code


  1. /*
  2. * Copyright (C) Igor Sysoev
  3. * Copyright (C) Nginx, Inc.
  4. */


  5. #ifndef _NGX_CONF_FILE_H_INCLUDED_
  6. #define _NGX_CONF_FILE_H_INCLUDED_


  7. #include <ngx_config.h>
  8. #include <ngx_core.h>


  9. /*
  10. *        AAAA  number of arguments
  11. *      FF      command flags
  12. *    TT        command type, i.e. HTTP "location" or "server" command
  13. */

  14. #define NGX_CONF_NOARGS      0x00000001
  15. #define NGX_CONF_TAKE1       0x00000002
  16. #define NGX_CONF_TAKE2       0x00000004
  17. #define NGX_CONF_TAKE3       0x00000008
  18. #define NGX_CONF_TAKE4       0x00000010
  19. #define NGX_CONF_TAKE5       0x00000020
  20. #define NGX_CONF_TAKE6       0x00000040
  21. #define NGX_CONF_TAKE7       0x00000080

  22. #define NGX_CONF_MAX_ARGS    8

  23. #define NGX_CONF_TAKE12      (NGX_CONF_TAKE1|NGX_CONF_TAKE2)
  24. #define NGX_CONF_TAKE13      (NGX_CONF_TAKE1|NGX_CONF_TAKE3)

  25. #define NGX_CONF_TAKE23      (NGX_CONF_TAKE2|NGX_CONF_TAKE3)

  26. #define NGX_CONF_TAKE123     (NGX_CONF_TAKE1|NGX_CONF_TAKE2|NGX_CONF_TAKE3)
  27. #define NGX_CONF_TAKE1234    (NGX_CONF_TAKE1|NGX_CONF_TAKE2|NGX_CONF_TAKE3   \
  28.                               |NGX_CONF_TAKE4)

  29. #define NGX_CONF_ARGS_NUMBER 0x000000ff
  30. #define NGX_CONF_BLOCK       0x00000100
  31. #define NGX_CONF_FLAG        0x00000200
  32. #define NGX_CONF_ANY         0x00000400
  33. #define NGX_CONF_1MORE       0x00000800
  34. #define NGX_CONF_2MORE       0x00001000
  35. #define NGX_CONF_MULTI       0x00000000  /* compatibility */

  36. #define NGX_DIRECT_CONF      0x00010000

  37. #define NGX_MAIN_CONF        0x01000000
  38. #define NGX_ANY_CONF         0x0F000000



  39. #define NGX_CONF_UNSET       -1
  40. #define NGX_CONF_UNSET_UINT  (ngx_uint_t) -1
  41. #define NGX_CONF_UNSET_PTR   (void *) -1
  42. #define NGX_CONF_UNSET_SIZE  (size_t) -1
  43. #define NGX_CONF_UNSET_MSEC  (ngx_msec_t) -1


  44. #define NGX_CONF_OK          NULL
  45. #define NGX_CONF_ERROR       (void *) -1

  46. #define NGX_CONF_BLOCK_START 1
  47. #define NGX_CONF_BLOCK_DONE  2
  48. #define NGX_CONF_FILE_DONE   3

  49. #define NGX_CORE_MODULE      0x45524F43  /* "CORE" */
  50. #define NGX_CONF_MODULE      0x464E4F43  /* "CONF" */


  51. #define NGX_MAX_CONF_ERRSTR  1024


  52. struct ngx_command_s {
  53.     ngx_str_t             name;
  54.     ngx_uint_t            type;
  55.     char               *(*set)(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
  56.     ngx_uint_t            conf;
  57.     ngx_uint_t            offset;
  58.     void                 *post;
  59. };

  60. #define ngx_null_command  { ngx_null_string, 0, NULL, 0, 0, NULL }


  61. struct ngx_open_file_s {
  62.     ngx_fd_t              fd;
  63.     ngx_str_t             name;

  64.     void                (*flush)(ngx_open_file_t *file, ngx_log_t *log);
  65.     void                 *data;
  66. };


  67. #define NGX_MODULE_V1          0, 0, 0, 0, 0, 0, 1
  68. #define NGX_MODULE_V1_PADDING  0, 0, 0, 0, 0, 0, 0, 0

  69. struct ngx_module_s {
  70.     ngx_uint_t            ctx_index;
  71.     ngx_uint_t            index;

  72.     ngx_uint_t            spare0;
  73.     ngx_uint_t            spare1;
  74.     ngx_uint_t            spare2;
  75.     ngx_uint_t            spare3;

  76.     ngx_uint_t            version;

  77.     void                 *ctx;
  78.     ngx_command_t        *commands;
  79.     ngx_uint_t            type;

  80.     ngx_int_t           (*init_master)(ngx_log_t *log);

  81.     ngx_int_t           (*init_module)(ngx_cycle_t *cycle);

  82.     ngx_int_t           (*init_process)(ngx_cycle_t *cycle);
  83.     ngx_int_t           (*init_thread)(ngx_cycle_t *cycle);
  84.     void                (*exit_thread)(ngx_cycle_t *cycle);
  85.     void                (*exit_process)(ngx_cycle_t *cycle);

  86.     void                (*exit_master)(ngx_cycle_t *cycle);

  87.     uintptr_t             spare_hook0;
  88.     uintptr_t             spare_hook1;
  89.     uintptr_t             spare_hook2;
  90.     uintptr_t             spare_hook3;
  91.     uintptr_t             spare_hook4;
  92.     uintptr_t             spare_hook5;
  93.     uintptr_t             spare_hook6;
  94.     uintptr_t             spare_hook7;
  95. };


  96. typedef struct {
  97.     ngx_str_t             name;
  98.     void               *(*create_conf)(ngx_cycle_t *cycle);
  99.     char               *(*init_conf)(ngx_cycle_t *cycle, void *conf);
  100. } ngx_core_module_t;


  101. typedef struct {
  102.     ngx_file_t            file;
  103.     ngx_buf_t            *buffer;
  104.     ngx_uint_t            line;
  105. } ngx_conf_file_t;


  106. typedef char *(*ngx_conf_handler_pt)(ngx_conf_t *cf,
  107.     ngx_command_t *dummy, void *conf);


  108. struct ngx_conf_s {
  109.     char                 *name;
  110.     ngx_array_t          *args;

  111.     ngx_cycle_t          *cycle;
  112.     ngx_pool_t           *pool;
  113.     ngx_pool_t           *temp_pool;
  114.     ngx_conf_file_t      *conf_file;
  115.     ngx_log_t            *log;

  116.     void                 *ctx;
  117.     ngx_uint_t            module_type;
  118.     ngx_uint_t            cmd_type;

  119.     ngx_conf_handler_pt   handler;
  120.     char                 *handler_conf;
  121. };


  122. typedef char *(*ngx_conf_post_handler_pt) (ngx_conf_t *cf,
  123.     void *data, void *conf);

  124. typedef struct {
  125.     ngx_conf_post_handler_pt  post_handler;
  126. } ngx_conf_post_t;


  127. typedef struct {
  128.     ngx_conf_post_handler_pt  post_handler;
  129.     char                     *old_name;
  130.     char                     *new_name;
  131. } ngx_conf_deprecated_t;


  132. typedef struct {
  133.     ngx_conf_post_handler_pt  post_handler;
  134.     ngx_int_t                 low;
  135.     ngx_int_t                 high;
  136. } ngx_conf_num_bounds_t;


  137. typedef struct {
  138.     ngx_str_t                 name;
  139.     ngx_uint_t                value;
  140. } ngx_conf_enum_t;


  141. #define NGX_CONF_BITMASK_SET  1

  142. typedef struct {
  143.     ngx_str_t                 name;
  144.     ngx_uint_t                mask;
  145. } ngx_conf_bitmask_t;



  146. char * ngx_conf_deprecated(ngx_conf_t *cf, void *post, void *data);
  147. char *ngx_conf_check_num_bounds(ngx_conf_t *cf, void *post, void *data);


  148. #define ngx_get_conf(conf_ctx, module)  conf_ctx[module.index]



  149. #define ngx_conf_init_value(conf, default)                                   \
  150.     if (conf == NGX_CONF_UNSET) {                                            \
  151.         conf = default;                                                      \
  152.     }

  153. #define ngx_conf_init_ptr_value(conf, default)                               \
  154.     if (conf == NGX_CONF_UNSET_PTR) {                                        \
  155.         conf = default;                                                      \
  156.     }

  157. #define ngx_conf_init_uint_value(conf, default)                              \
  158.     if (conf == NGX_CONF_UNSET_UINT) {                                       \
  159.         conf = default;                                                      \
  160.     }

  161. #define ngx_conf_init_size_value(conf, default)                              \
  162.     if (conf == NGX_CONF_UNSET_SIZE) {                                       \
  163.         conf = default;                                                      \
  164.     }

  165. #define ngx_conf_init_msec_value(conf, default)                              \
  166.     if (conf == NGX_CONF_UNSET_MSEC) {                                       \
  167.         conf = default;                                                      \
  168.     }

  169. #define ngx_conf_merge_value(conf, prev, default)                            \
  170.     if (conf == NGX_CONF_UNSET) {                                            \
  171.         conf = (prev == NGX_CONF_UNSET) ? default : prev;                    \
  172.     }

  173. #define ngx_conf_merge_ptr_value(conf, prev, default)                        \
  174.     if (conf == NGX_CONF_UNSET_PTR) {                                        \
  175.         conf = (prev == NGX_CONF_UNSET_PTR) ? default : prev;                \
  176.     }

  177. #define ngx_conf_merge_uint_value(conf, prev, default)                       \
  178.     if (conf == NGX_CONF_UNSET_UINT) {                                       \
  179.         conf = (prev == NGX_CONF_UNSET_UINT) ? default : prev;               \
  180.     }

  181. #define ngx_conf_merge_msec_value(conf, prev, default)                       \
  182.     if (conf == NGX_CONF_UNSET_MSEC) {                                       \
  183.         conf = (prev == NGX_CONF_UNSET_MSEC) ? default : prev;               \
  184.     }

  185. #define ngx_conf_merge_sec_value(conf, prev, default)                        \
  186.     if (conf == NGX_CONF_UNSET) {                                            \
  187.         conf = (prev == NGX_CONF_UNSET) ? default : prev;                    \
  188.     }

  189. #define ngx_conf_merge_size_value(conf, prev, default)                       \
  190.     if (conf == NGX_CONF_UNSET_SIZE) {                                       \
  191.         conf = (prev == NGX_CONF_UNSET_SIZE) ? default : prev;               \
  192.     }

  193. #define ngx_conf_merge_off_value(conf, prev, default)                        \
  194.     if (conf == NGX_CONF_UNSET) {                                            \
  195.         conf = (prev == NGX_CONF_UNSET) ? default : prev;                    \
  196.     }

  197. #define ngx_conf_merge_str_value(conf, prev, default)                        \
  198.     if (conf.data == NULL) {                                                 \
  199.         if (prev.data) {                                                     \
  200.             conf.len = prev.len;                                             \
  201.             conf.data = prev.data;                                           \
  202.         } else {                                                             \
  203.             conf.len = sizeof(default) - 1;                                  \
  204.             conf.data = (u_char *) default;                                  \
  205.         }                                                                    \
  206.     }

  207. #define ngx_conf_merge_bufs_value(conf, prev, default_num, default_size)     \
  208.     if (conf.num == 0) {                                                     \
  209.         if (prev.num) {                                                      \
  210.             conf.num = prev.num;                                             \
  211.             conf.size = prev.size;                                           \
  212.         } else {                                                             \
  213.             conf.num = default_num;                                          \
  214.             conf.size = default_size;                                        \
  215.         }                                                                    \
  216.     }

  217. #define ngx_conf_merge_bitmask_value(conf, prev, default)                    \
  218.     if (conf == 0) {                                                         \
  219.         conf = (prev == 0) ? default : prev;                                 \
  220.     }


  221. char *ngx_conf_param(ngx_conf_t *cf);
  222. char *ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename);
  223. char *ngx_conf_include(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);


  224. ngx_int_t ngx_conf_full_name(ngx_cycle_t *cycle, ngx_str_t *name,
  225.     ngx_uint_t conf_prefix);
  226. ngx_open_file_t *ngx_conf_open_file(ngx_cycle_t *cycle, ngx_str_t *name);
  227. void ngx_cdecl ngx_conf_log_error(ngx_uint_t level, ngx_conf_t *cf,
  228.     ngx_err_t err, const char *fmt, ...);


  229. char *ngx_conf_set_flag_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
  230. char *ngx_conf_set_str_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
  231. char *ngx_conf_set_str_array_slot(ngx_conf_t *cf, ngx_command_t *cmd,
  232.     void *conf);
  233. char *ngx_conf_set_keyval_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
  234. char *ngx_conf_set_num_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
  235. char *ngx_conf_set_size_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
  236. char *ngx_conf_set_off_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
  237. char *ngx_conf_set_msec_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
  238. char *ngx_conf_set_sec_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
  239. char *ngx_conf_set_bufs_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
  240. char *ngx_conf_set_enum_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
  241. char *ngx_conf_set_bitmask_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);


  242. extern ngx_uint_t     ngx_max_module;
  243. extern ngx_module_t  *ngx_modules[];


  244. #endif /* _NGX_CONF_FILE_H_INCLUDED_ */