src/stream/ngx_stream_access_module.c - nginx source code

Global variables defined

Data types defined

Functions defined

Source code


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


  5. #include <ngx_config.h>
  6. #include <ngx_core.h>
  7. #include <ngx_stream.h>


  8. typedef struct {
  9.     in_addr_t         mask;
  10.     in_addr_t         addr;
  11.     ngx_uint_t        deny;      /* unsigned  deny:1; */
  12. } ngx_stream_access_rule_t;

  13. #if (NGX_HAVE_INET6)

  14. typedef struct {
  15.     struct in6_addr   addr;
  16.     struct in6_addr   mask;
  17.     ngx_uint_t        deny;      /* unsigned  deny:1; */
  18. } ngx_stream_access_rule6_t;

  19. #endif

  20. #if (NGX_HAVE_UNIX_DOMAIN)

  21. typedef struct {
  22.     ngx_uint_t        deny;      /* unsigned  deny:1; */
  23. } ngx_stream_access_rule_un_t;

  24. #endif

  25. typedef struct {
  26.     ngx_array_t      *rules;     /* array of ngx_stream_access_rule_t */
  27. #if (NGX_HAVE_INET6)
  28.     ngx_array_t      *rules6;    /* array of ngx_stream_access_rule6_t */
  29. #endif
  30. #if (NGX_HAVE_UNIX_DOMAIN)
  31.     ngx_array_t      *rules_un;  /* array of ngx_stream_access_rule_un_t */
  32. #endif
  33. } ngx_stream_access_srv_conf_t;


  34. static ngx_int_t ngx_stream_access_handler(ngx_stream_session_t *s);
  35. static ngx_int_t ngx_stream_access_inet(ngx_stream_session_t *s,
  36.     ngx_stream_access_srv_conf_t *ascf, in_addr_t addr);
  37. #if (NGX_HAVE_INET6)
  38. static ngx_int_t ngx_stream_access_inet6(ngx_stream_session_t *s,
  39.     ngx_stream_access_srv_conf_t *ascf, u_char *p);
  40. #endif
  41. #if (NGX_HAVE_UNIX_DOMAIN)
  42. static ngx_int_t ngx_stream_access_unix(ngx_stream_session_t *s,
  43.     ngx_stream_access_srv_conf_t *ascf);
  44. #endif
  45. static ngx_int_t ngx_stream_access_found(ngx_stream_session_t *s,
  46.     ngx_uint_t deny);
  47. static char *ngx_stream_access_rule(ngx_conf_t *cf, ngx_command_t *cmd,
  48.     void *conf);
  49. static void *ngx_stream_access_create_srv_conf(ngx_conf_t *cf);
  50. static char *ngx_stream_access_merge_srv_conf(ngx_conf_t *cf,
  51.     void *parent, void *child);
  52. static ngx_int_t ngx_stream_access_init(ngx_conf_t *cf);


  53. static ngx_command_t  ngx_stream_access_commands[] = {

  54.     { ngx_string("allow"),
  55.       NGX_STREAM_MAIN_CONF|NGX_STREAM_SRV_CONF|NGX_CONF_TAKE1,
  56.       ngx_stream_access_rule,
  57.       NGX_STREAM_SRV_CONF_OFFSET,
  58.       0,
  59.       NULL },

  60.     { ngx_string("deny"),
  61.       NGX_STREAM_MAIN_CONF|NGX_STREAM_SRV_CONF|NGX_CONF_TAKE1,
  62.       ngx_stream_access_rule,
  63.       NGX_STREAM_SRV_CONF_OFFSET,
  64.       0,
  65.       NULL },

  66.       ngx_null_command
  67. };



  68. static ngx_stream_module_t  ngx_stream_access_module_ctx = {
  69.     NULL,                                  /* preconfiguration */
  70.     ngx_stream_access_init,                /* postconfiguration */

  71.     NULL,                                  /* create main configuration */
  72.     NULL,                                  /* init main configuration */

  73.     ngx_stream_access_create_srv_conf,     /* create server configuration */
  74.     ngx_stream_access_merge_srv_conf       /* merge server configuration */
  75. };


  76. ngx_module_t  ngx_stream_access_module = {
  77.     NGX_MODULE_V1,
  78.     &ngx_stream_access_module_ctx,         /* module context */
  79.     ngx_stream_access_commands,            /* module directives */
  80.     NGX_STREAM_MODULE,                     /* module type */
  81.     NULL,                                  /* init master */
  82.     NULL,                                  /* init module */
  83.     NULL,                                  /* init process */
  84.     NULL,                                  /* init thread */
  85.     NULL,                                  /* exit thread */
  86.     NULL,                                  /* exit process */
  87.     NULL,                                  /* exit master */
  88.     NGX_MODULE_V1_PADDING
  89. };


  90. static ngx_int_t
  91. ngx_stream_access_handler(ngx_stream_session_t *s)
  92. {
  93.     struct sockaddr_in            *sin;
  94.     ngx_stream_access_srv_conf_t  *ascf;
  95. #if (NGX_HAVE_INET6)
  96.     u_char                        *p;
  97.     in_addr_t                      addr;
  98.     struct sockaddr_in6           *sin6;
  99. #endif

  100.     ascf = ngx_stream_get_module_srv_conf(s, ngx_stream_access_module);

  101.     switch (s->connection->sockaddr->sa_family) {

  102.     case AF_INET:
  103.         if (ascf->rules) {
  104.             sin = (struct sockaddr_in *) s->connection->sockaddr;
  105.             return ngx_stream_access_inet(s, ascf, sin->sin_addr.s_addr);
  106.         }
  107.         break;

  108. #if (NGX_HAVE_INET6)

  109.     case AF_INET6:
  110.         sin6 = (struct sockaddr_in6 *) s->connection->sockaddr;
  111.         p = sin6->sin6_addr.s6_addr;

  112.         if (ascf->rules && IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
  113.             addr = (in_addr_t) p[12] << 24;
  114.             addr += p[13] << 16;
  115.             addr += p[14] << 8;
  116.             addr += p[15];
  117.             return ngx_stream_access_inet(s, ascf, htonl(addr));
  118.         }

  119.         if (ascf->rules6) {
  120.             return ngx_stream_access_inet6(s, ascf, p);
  121.         }

  122.         break;

  123. #endif

  124. #if (NGX_HAVE_UNIX_DOMAIN)

  125.     case AF_UNIX:
  126.         if (ascf->rules_un) {
  127.             return ngx_stream_access_unix(s, ascf);
  128.         }

  129.         break;

  130. #endif
  131.     }

  132.     return NGX_DECLINED;
  133. }


  134. static ngx_int_t
  135. ngx_stream_access_inet(ngx_stream_session_t *s,
  136.     ngx_stream_access_srv_conf_t *ascf, in_addr_t addr)
  137. {
  138.     ngx_uint_t                 i;
  139.     ngx_stream_access_rule_t  *rule;

  140.     rule = ascf->rules->elts;
  141.     for (i = 0; i < ascf->rules->nelts; i++) {

  142.         ngx_log_debug3(NGX_LOG_DEBUG_STREAM, s->connection->log, 0,
  143.                        "access: %08XD %08XD %08XD",
  144.                        addr, rule[i].mask, rule[i].addr);

  145.         if ((addr & rule[i].mask) == rule[i].addr) {
  146.             return ngx_stream_access_found(s, rule[i].deny);
  147.         }
  148.     }

  149.     return NGX_DECLINED;
  150. }


  151. #if (NGX_HAVE_INET6)

  152. static ngx_int_t
  153. ngx_stream_access_inet6(ngx_stream_session_t *s,
  154.     ngx_stream_access_srv_conf_t *ascf, u_char *p)
  155. {
  156.     ngx_uint_t                  n;
  157.     ngx_uint_t                  i;
  158.     ngx_stream_access_rule6_t  *rule6;

  159.     rule6 = ascf->rules6->elts;
  160.     for (i = 0; i < ascf->rules6->nelts; i++) {

  161. #if (NGX_DEBUG)
  162.         {
  163.         size_t  cl, ml, al;
  164.         u_char  ct[NGX_INET6_ADDRSTRLEN];
  165.         u_char  mt[NGX_INET6_ADDRSTRLEN];
  166.         u_char  at[NGX_INET6_ADDRSTRLEN];

  167.         cl = ngx_inet6_ntop(p, ct, NGX_INET6_ADDRSTRLEN);
  168.         ml = ngx_inet6_ntop(rule6[i].mask.s6_addr, mt, NGX_INET6_ADDRSTRLEN);
  169.         al = ngx_inet6_ntop(rule6[i].addr.s6_addr, at, NGX_INET6_ADDRSTRLEN);

  170.         ngx_log_debug6(NGX_LOG_DEBUG_STREAM, s->connection->log, 0,
  171.                        "access: %*s %*s %*s", cl, ct, ml, mt, al, at);
  172.         }
  173. #endif

  174.         for (n = 0; n < 16; n++) {
  175.             if ((p[n] & rule6[i].mask.s6_addr[n]) != rule6[i].addr.s6_addr[n]) {
  176.                 goto next;
  177.             }
  178.         }

  179.         return ngx_stream_access_found(s, rule6[i].deny);

  180.     next:
  181.         continue;
  182.     }

  183.     return NGX_DECLINED;
  184. }

  185. #endif


  186. #if (NGX_HAVE_UNIX_DOMAIN)

  187. static ngx_int_t
  188. ngx_stream_access_unix(ngx_stream_session_t *s,
  189.     ngx_stream_access_srv_conf_t *ascf)
  190. {
  191.     ngx_uint_t                    i;
  192.     ngx_stream_access_rule_un_t  *rule_un;

  193.     rule_un = ascf->rules_un->elts;
  194.     for (i = 0; i < ascf->rules_un->nelts; i++) {

  195.         /* TODO: check path */
  196.         if (1) {
  197.             return ngx_stream_access_found(s, rule_un[i].deny);
  198.         }
  199.     }

  200.     return NGX_DECLINED;
  201. }

  202. #endif


  203. static ngx_int_t
  204. ngx_stream_access_found(ngx_stream_session_t *s, ngx_uint_t deny)
  205. {
  206.     if (deny) {
  207.         ngx_log_error(NGX_LOG_ERR, s->connection->log, 0,
  208.                       "access forbidden by rule");
  209.         return NGX_STREAM_FORBIDDEN;
  210.     }

  211.     return NGX_OK;
  212. }


  213. static char *
  214. ngx_stream_access_rule(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
  215. {
  216.     ngx_stream_access_srv_conf_t *ascf = conf;

  217.     ngx_int_t                     rc;
  218.     ngx_uint_t                    all;
  219.     ngx_str_t                    *value;
  220.     ngx_cidr_t                    cidr;
  221.     ngx_stream_access_rule_t     *rule;
  222. #if (NGX_HAVE_INET6)
  223.     ngx_stream_access_rule6_t    *rule6;
  224. #endif
  225. #if (NGX_HAVE_UNIX_DOMAIN)
  226.     ngx_stream_access_rule_un_t  *rule_un;
  227. #endif

  228.     all = 0;
  229.     ngx_memzero(&cidr, sizeof(ngx_cidr_t));

  230.     value = cf->args->elts;

  231.     if (value[1].len == 3 && ngx_strcmp(value[1].data, "all") == 0) {
  232.         all = 1;

  233. #if (NGX_HAVE_UNIX_DOMAIN)
  234.     } else if (value[1].len == 5 && ngx_strcmp(value[1].data, "unix:") == 0) {
  235.         cidr.family = AF_UNIX;
  236. #endif

  237.     } else {
  238.         rc = ngx_ptocidr(&value[1], &cidr);

  239.         if (rc == NGX_ERROR) {
  240.             ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  241.                          "invalid parameter \"%V\"", &value[1]);
  242.             return NGX_CONF_ERROR;
  243.         }

  244.         if (rc == NGX_DONE) {
  245.             ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
  246.                          "low address bits of %V are meaningless", &value[1]);
  247.         }
  248.     }

  249.     if (cidr.family == AF_INET || all) {

  250.         if (ascf->rules == NULL) {
  251.             ascf->rules = ngx_array_create(cf->pool, 4,
  252.                                            sizeof(ngx_stream_access_rule_t));
  253.             if (ascf->rules == NULL) {
  254.                 return NGX_CONF_ERROR;
  255.             }
  256.         }

  257.         rule = ngx_array_push(ascf->rules);
  258.         if (rule == NULL) {
  259.             return NGX_CONF_ERROR;
  260.         }

  261.         rule->mask = cidr.u.in.mask;
  262.         rule->addr = cidr.u.in.addr;
  263.         rule->deny = (value[0].data[0] == 'd') ? 1 : 0;
  264.     }

  265. #if (NGX_HAVE_INET6)
  266.     if (cidr.family == AF_INET6 || all) {

  267.         if (ascf->rules6 == NULL) {
  268.             ascf->rules6 = ngx_array_create(cf->pool, 4,
  269.                                             sizeof(ngx_stream_access_rule6_t));
  270.             if (ascf->rules6 == NULL) {
  271.                 return NGX_CONF_ERROR;
  272.             }
  273.         }

  274.         rule6 = ngx_array_push(ascf->rules6);
  275.         if (rule6 == NULL) {
  276.             return NGX_CONF_ERROR;
  277.         }

  278.         rule6->mask = cidr.u.in6.mask;
  279.         rule6->addr = cidr.u.in6.addr;
  280.         rule6->deny = (value[0].data[0] == 'd') ? 1 : 0;
  281.     }
  282. #endif

  283. #if (NGX_HAVE_UNIX_DOMAIN)
  284.     if (cidr.family == AF_UNIX || all) {

  285.         if (ascf->rules_un == NULL) {
  286.             ascf->rules_un = ngx_array_create(cf->pool, 1,
  287.                                           sizeof(ngx_stream_access_rule_un_t));
  288.             if (ascf->rules_un == NULL) {
  289.                 return NGX_CONF_ERROR;
  290.             }
  291.         }

  292.         rule_un = ngx_array_push(ascf->rules_un);
  293.         if (rule_un == NULL) {
  294.             return NGX_CONF_ERROR;
  295.         }

  296.         rule_un->deny = (value[0].data[0] == 'd') ? 1 : 0;
  297.     }
  298. #endif

  299.     return NGX_CONF_OK;
  300. }


  301. static void *
  302. ngx_stream_access_create_srv_conf(ngx_conf_t *cf)
  303. {
  304.     ngx_stream_access_srv_conf_t  *conf;

  305.     conf = ngx_pcalloc(cf->pool, sizeof(ngx_stream_access_srv_conf_t));
  306.     if (conf == NULL) {
  307.         return NULL;
  308.     }

  309.     return conf;
  310. }


  311. static char *
  312. ngx_stream_access_merge_srv_conf(ngx_conf_t *cf, void *parent, void *child)
  313. {
  314.     ngx_stream_access_srv_conf_t  *prev = parent;
  315.     ngx_stream_access_srv_conf_t  *conf = child;

  316.     if (conf->rules == NULL
  317. #if (NGX_HAVE_INET6)
  318.         && conf->rules6 == NULL
  319. #endif
  320. #if (NGX_HAVE_UNIX_DOMAIN)
  321.         && conf->rules_un == NULL
  322. #endif
  323.     ) {
  324.         conf->rules = prev->rules;
  325. #if (NGX_HAVE_INET6)
  326.         conf->rules6 = prev->rules6;
  327. #endif
  328. #if (NGX_HAVE_UNIX_DOMAIN)
  329.         conf->rules_un = prev->rules_un;
  330. #endif
  331.     }

  332.     return NGX_CONF_OK;
  333. }


  334. static ngx_int_t
  335. ngx_stream_access_init(ngx_conf_t *cf)
  336. {
  337.     ngx_stream_handler_pt        *h;
  338.     ngx_stream_core_main_conf_t  *cmcf;

  339.     cmcf = ngx_stream_conf_get_module_main_conf(cf, ngx_stream_core_module);

  340.     h = ngx_array_push(&cmcf->phases[NGX_STREAM_ACCESS_PHASE].handlers);
  341.     if (h == NULL) {
  342.         return NGX_ERROR;
  343.     }

  344.     *h = ngx_stream_access_handler;

  345.     return NGX_OK;
  346. }