src/http/ngx_http_script.h - nginx source code

Data types defined

Macros defined

Source code


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


  5. #ifndef _NGX_HTTP_SCRIPT_H_INCLUDED_
  6. #define _NGX_HTTP_SCRIPT_H_INCLUDED_


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


  10. typedef struct {
  11.     u_char                     *ip;
  12.     u_char                     *pos;
  13.     ngx_http_variable_value_t  *sp;

  14.     ngx_str_t                   buf;
  15.     ngx_str_t                   line;

  16.     /* the start of the rewritten arguments */
  17.     u_char                     *args;

  18.     unsigned                    flushed:1;
  19.     unsigned                    skip:1;
  20.     unsigned                    quote:1;
  21.     unsigned                    is_args:1;
  22.     unsigned                    log:1;

  23.     ngx_int_t                   status;
  24.     ngx_http_request_t         *request;
  25. } ngx_http_script_engine_t;


  26. typedef struct {
  27.     ngx_conf_t                 *cf;
  28.     ngx_str_t                  *source;

  29.     ngx_array_t               **flushes;
  30.     ngx_array_t               **lengths;
  31.     ngx_array_t               **values;

  32.     ngx_uint_t                  variables;
  33.     ngx_uint_t                  ncaptures;
  34.     ngx_uint_t                  captures_mask;
  35.     ngx_uint_t                  size;

  36.     void                       *main;

  37.     unsigned                    compile_args:1;
  38.     unsigned                    complete_lengths:1;
  39.     unsigned                    complete_values:1;
  40.     unsigned                    zero:1;
  41.     unsigned                    conf_prefix:1;
  42.     unsigned                    root_prefix:1;

  43.     unsigned                    dup_capture:1;
  44.     unsigned                    args:1;
  45. } ngx_http_script_compile_t;


  46. typedef struct {
  47.     ngx_str_t                   value;
  48.     ngx_uint_t                 *flushes;
  49.     void                       *lengths;
  50.     void                       *values;

  51.     union {
  52.         size_t                  size;
  53.     } u;
  54. } ngx_http_complex_value_t;


  55. typedef struct {
  56.     ngx_conf_t                 *cf;
  57.     ngx_str_t                  *value;
  58.     ngx_http_complex_value_t   *complex_value;

  59.     unsigned                    zero:1;
  60.     unsigned                    conf_prefix:1;
  61.     unsigned                    root_prefix:1;
  62. } ngx_http_compile_complex_value_t;


  63. typedef void (*ngx_http_script_code_pt) (ngx_http_script_engine_t *e);
  64. typedef size_t (*ngx_http_script_len_code_pt) (ngx_http_script_engine_t *e);


  65. typedef struct {
  66.     ngx_http_script_code_pt     code;
  67.     uintptr_t                   len;
  68. } ngx_http_script_copy_code_t;


  69. typedef struct {
  70.     ngx_http_script_code_pt     code;
  71.     uintptr_t                   index;
  72. } ngx_http_script_var_code_t;


  73. typedef struct {
  74.     ngx_http_script_code_pt     code;
  75.     ngx_http_set_variable_pt    handler;
  76.     uintptr_t                   data;
  77. } ngx_http_script_var_handler_code_t;


  78. typedef struct {
  79.     ngx_http_script_code_pt     code;
  80.     uintptr_t                   n;
  81. } ngx_http_script_copy_capture_code_t;


  82. #if (NGX_PCRE)

  83. typedef struct {
  84.     ngx_http_script_code_pt     code;
  85.     ngx_http_regex_t           *regex;
  86.     ngx_array_t                *lengths;
  87.     uintptr_t                   size;
  88.     uintptr_t                   status;
  89.     uintptr_t                   next;

  90.     unsigned                    test:1;
  91.     unsigned                    negative_test:1;
  92.     unsigned                    uri:1;
  93.     unsigned                    args:1;

  94.     /* add the r->args to the new arguments */
  95.     unsigned                    add_args:1;

  96.     unsigned                    redirect:1;
  97.     unsigned                    break_cycle:1;

  98.     ngx_str_t                   name;
  99. } ngx_http_script_regex_code_t;


  100. typedef struct {
  101.     ngx_http_script_code_pt     code;

  102.     unsigned                    uri:1;
  103.     unsigned                    args:1;

  104.     /* add the r->args to the new arguments */
  105.     unsigned                    add_args:1;

  106.     unsigned                    redirect:1;
  107. } ngx_http_script_regex_end_code_t;

  108. #endif


  109. typedef struct {
  110.     ngx_http_script_code_pt     code;
  111.     uintptr_t                   conf_prefix;
  112. } ngx_http_script_full_name_code_t;


  113. typedef struct {
  114.     ngx_http_script_code_pt     code;
  115.     uintptr_t                   status;
  116.     ngx_http_complex_value_t    text;
  117. } ngx_http_script_return_code_t;


  118. typedef enum {
  119.     ngx_http_script_file_plain = 0,
  120.     ngx_http_script_file_not_plain,
  121.     ngx_http_script_file_dir,
  122.     ngx_http_script_file_not_dir,
  123.     ngx_http_script_file_exists,
  124.     ngx_http_script_file_not_exists,
  125.     ngx_http_script_file_exec,
  126.     ngx_http_script_file_not_exec
  127. } ngx_http_script_file_op_e;


  128. typedef struct {
  129.     ngx_http_script_code_pt     code;
  130.     uintptr_t                   op;
  131. } ngx_http_script_file_code_t;


  132. typedef struct {
  133.     ngx_http_script_code_pt     code;
  134.     uintptr_t                   next;
  135.     void                      **loc_conf;
  136. } ngx_http_script_if_code_t;


  137. typedef struct {
  138.     ngx_http_script_code_pt     code;
  139.     ngx_array_t                *lengths;
  140. } ngx_http_script_complex_value_code_t;


  141. typedef struct {
  142.     ngx_http_script_code_pt     code;
  143.     uintptr_t                   value;
  144.     uintptr_t                   text_len;
  145.     uintptr_t                   text_data;
  146. } ngx_http_script_value_code_t;


  147. void ngx_http_script_flush_complex_value(ngx_http_request_t *r,
  148.     ngx_http_complex_value_t *val);
  149. ngx_int_t ngx_http_complex_value(ngx_http_request_t *r,
  150.     ngx_http_complex_value_t *val, ngx_str_t *value);
  151. size_t ngx_http_complex_value_size(ngx_http_request_t *r,
  152.     ngx_http_complex_value_t *val, size_t default_value);
  153. ngx_int_t ngx_http_compile_complex_value(ngx_http_compile_complex_value_t *ccv);
  154. char *ngx_http_set_complex_value_slot(ngx_conf_t *cf, ngx_command_t *cmd,
  155.     void *conf);
  156. char *ngx_http_set_complex_value_zero_slot(ngx_conf_t *cf, ngx_command_t *cmd,
  157.     void *conf);
  158. char *ngx_http_set_complex_value_size_slot(ngx_conf_t *cf, ngx_command_t *cmd,
  159.     void *conf);


  160. ngx_int_t ngx_http_test_predicates(ngx_http_request_t *r,
  161.     ngx_array_t *predicates);
  162. ngx_int_t ngx_http_test_required_predicates(ngx_http_request_t *r,
  163.     ngx_array_t *predicates);
  164. char *ngx_http_set_predicate_slot(ngx_conf_t *cf, ngx_command_t *cmd,
  165.     void *conf);

  166. ngx_uint_t ngx_http_script_variables_count(ngx_str_t *value);
  167. ngx_int_t ngx_http_script_compile(ngx_http_script_compile_t *sc);
  168. u_char *ngx_http_script_run(ngx_http_request_t *r, ngx_str_t *value,
  169.     void *code_lengths, size_t reserved, void *code_values);
  170. void ngx_http_script_flush_no_cacheable_variables(ngx_http_request_t *r,
  171.     ngx_array_t *indices);

  172. void *ngx_http_script_start_code(ngx_pool_t *pool, ngx_array_t **codes,
  173.     size_t size);
  174. void *ngx_http_script_add_code(ngx_array_t *codes, size_t size, void *code);

  175. size_t ngx_http_script_copy_len_code(ngx_http_script_engine_t *e);
  176. void ngx_http_script_copy_code(ngx_http_script_engine_t *e);
  177. size_t ngx_http_script_copy_var_len_code(ngx_http_script_engine_t *e);
  178. void ngx_http_script_copy_var_code(ngx_http_script_engine_t *e);
  179. size_t ngx_http_script_copy_capture_len_code(ngx_http_script_engine_t *e);
  180. void ngx_http_script_copy_capture_code(ngx_http_script_engine_t *e);
  181. size_t ngx_http_script_mark_args_code(ngx_http_script_engine_t *e);
  182. void ngx_http_script_start_args_code(ngx_http_script_engine_t *e);
  183. #if (NGX_PCRE)
  184. void ngx_http_script_regex_start_code(ngx_http_script_engine_t *e);
  185. void ngx_http_script_regex_end_code(ngx_http_script_engine_t *e);
  186. #endif
  187. void ngx_http_script_return_code(ngx_http_script_engine_t *e);
  188. void ngx_http_script_break_code(ngx_http_script_engine_t *e);
  189. void ngx_http_script_if_code(ngx_http_script_engine_t *e);
  190. void ngx_http_script_equal_code(ngx_http_script_engine_t *e);
  191. void ngx_http_script_not_equal_code(ngx_http_script_engine_t *e);
  192. void ngx_http_script_file_code(ngx_http_script_engine_t *e);
  193. void ngx_http_script_complex_value_code(ngx_http_script_engine_t *e);
  194. void ngx_http_script_value_code(ngx_http_script_engine_t *e);
  195. void ngx_http_script_set_var_code(ngx_http_script_engine_t *e);
  196. void ngx_http_script_var_set_handler_code(ngx_http_script_engine_t *e);
  197. void ngx_http_script_var_code(ngx_http_script_engine_t *e);
  198. void ngx_http_script_nop_code(ngx_http_script_engine_t *e);


  199. #endif /* _NGX_HTTP_SCRIPT_H_INCLUDED_ */