src/mail/ngx_mail_realip_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_mail.h>


  8. typedef struct {
  9.     ngx_array_t       *from;     /* array of ngx_cidr_t */
  10. } ngx_mail_realip_srv_conf_t;


  11. static ngx_int_t ngx_mail_realip_set_addr(ngx_mail_session_t *s,
  12.     ngx_addr_t *addr);
  13. static char *ngx_mail_realip_from(ngx_conf_t *cf, ngx_command_t *cmd,
  14.     void *conf);
  15. static void *ngx_mail_realip_create_srv_conf(ngx_conf_t *cf);
  16. static char *ngx_mail_realip_merge_srv_conf(ngx_conf_t *cf, void *parent,
  17.     void *child);


  18. static ngx_command_t  ngx_mail_realip_commands[] = {

  19.     { ngx_string("set_real_ip_from"),
  20.       NGX_MAIL_MAIN_CONF|NGX_MAIL_SRV_CONF|NGX_CONF_TAKE1,
  21.       ngx_mail_realip_from,
  22.       NGX_MAIL_SRV_CONF_OFFSET,
  23.       0,
  24.       NULL },

  25.       ngx_null_command
  26. };


  27. static ngx_mail_module_t  ngx_mail_realip_module_ctx = {
  28.     NULL,                                  /* protocol */

  29.     NULL,                                  /* create main configuration */
  30.     NULL,                                  /* init main configuration */

  31.     ngx_mail_realip_create_srv_conf,       /* create server configuration */
  32.     ngx_mail_realip_merge_srv_conf         /* merge server configuration */
  33. };


  34. ngx_module_t  ngx_mail_realip_module = {
  35.     NGX_MODULE_V1,
  36.     &ngx_mail_realip_module_ctx,           /* module context */
  37.     ngx_mail_realip_commands,              /* module directives */
  38.     NGX_MAIL_MODULE,                       /* module type */
  39.     NULL,                                  /* init master */
  40.     NULL,                                  /* init module */
  41.     NULL,                                  /* init process */
  42.     NULL,                                  /* init thread */
  43.     NULL,                                  /* exit thread */
  44.     NULL,                                  /* exit process */
  45.     NULL,                                  /* exit master */
  46.     NGX_MODULE_V1_PADDING
  47. };


  48. ngx_int_t
  49. ngx_mail_realip_handler(ngx_mail_session_t *s)
  50. {
  51.     ngx_addr_t                   addr;
  52.     ngx_connection_t            *c;
  53.     ngx_mail_realip_srv_conf_t  *rscf;

  54.     rscf = ngx_mail_get_module_srv_conf(s, ngx_mail_realip_module);

  55.     if (rscf->from == NULL) {
  56.         return NGX_OK;
  57.     }

  58.     c = s->connection;

  59.     if (c->proxy_protocol == NULL) {
  60.         return NGX_OK;
  61.     }

  62.     if (ngx_cidr_match(c->sockaddr, rscf->from) != NGX_OK) {
  63.         return NGX_OK;
  64.     }

  65.     if (ngx_parse_addr(c->pool, &addr, c->proxy_protocol->src_addr.data,
  66.                        c->proxy_protocol->src_addr.len)
  67.         != NGX_OK)
  68.     {
  69.         return NGX_OK;
  70.     }

  71.     ngx_inet_set_port(addr.sockaddr, c->proxy_protocol->src_port);

  72.     return ngx_mail_realip_set_addr(s, &addr);
  73. }


  74. static ngx_int_t
  75. ngx_mail_realip_set_addr(ngx_mail_session_t *s, ngx_addr_t *addr)
  76. {
  77.     size_t             len;
  78.     u_char            *p;
  79.     u_char             text[NGX_SOCKADDR_STRLEN];
  80.     ngx_connection_t  *c;

  81.     c = s->connection;

  82.     len = ngx_sock_ntop(addr->sockaddr, addr->socklen, text,
  83.                         NGX_SOCKADDR_STRLEN, 0);
  84.     if (len == 0) {
  85.         return NGX_ERROR;
  86.     }

  87.     p = ngx_pnalloc(c->pool, len);
  88.     if (p == NULL) {
  89.         return NGX_ERROR;
  90.     }

  91.     ngx_memcpy(p, text, len);

  92.     c->sockaddr = addr->sockaddr;
  93.     c->socklen = addr->socklen;
  94.     c->addr_text.len = len;
  95.     c->addr_text.data = p;

  96.     return NGX_OK;
  97. }


  98. static char *
  99. ngx_mail_realip_from(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
  100. {
  101.     ngx_mail_realip_srv_conf_t *rscf = conf;

  102.     ngx_int_t             rc;
  103.     ngx_str_t            *value;
  104.     ngx_url_t             u;
  105.     ngx_cidr_t            c, *cidr;
  106.     ngx_uint_t            i;
  107.     struct sockaddr_in   *sin;
  108. #if (NGX_HAVE_INET6)
  109.     struct sockaddr_in6  *sin6;
  110. #endif

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

  112.     if (rscf->from == NULL) {
  113.         rscf->from = ngx_array_create(cf->pool, 2,
  114.                                       sizeof(ngx_cidr_t));
  115.         if (rscf->from == NULL) {
  116.             return NGX_CONF_ERROR;
  117.         }
  118.     }

  119. #if (NGX_HAVE_UNIX_DOMAIN)

  120.     if (ngx_strcmp(value[1].data, "unix:") == 0) {
  121.         cidr = ngx_array_push(rscf->from);
  122.         if (cidr == NULL) {
  123.             return NGX_CONF_ERROR;
  124.         }

  125.         cidr->family = AF_UNIX;
  126.         return NGX_CONF_OK;
  127.     }

  128. #endif

  129.     rc = ngx_ptocidr(&value[1], &c);

  130.     if (rc != NGX_ERROR) {
  131.         if (rc == NGX_DONE) {
  132.             ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
  133.                                "low address bits of %V are meaningless",
  134.                                &value[1]);
  135.         }

  136.         cidr = ngx_array_push(rscf->from);
  137.         if (cidr == NULL) {
  138.             return NGX_CONF_ERROR;
  139.         }

  140.         *cidr = c;

  141.         return NGX_CONF_OK;
  142.     }

  143.     ngx_memzero(&u, sizeof(ngx_url_t));
  144.     u.host = value[1];

  145.     if (ngx_inet_resolve_host(cf->pool, &u) != NGX_OK) {
  146.         if (u.err) {
  147.             ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  148.                                "%s in set_real_ip_from \"%V\"",
  149.                                u.err, &u.host);
  150.         }

  151.         return NGX_CONF_ERROR;
  152.     }

  153.     cidr = ngx_array_push_n(rscf->from, u.naddrs);
  154.     if (cidr == NULL) {
  155.         return NGX_CONF_ERROR;
  156.     }

  157.     ngx_memzero(cidr, u.naddrs * sizeof(ngx_cidr_t));

  158.     for (i = 0; i < u.naddrs; i++) {
  159.         cidr[i].family = u.addrs[i].sockaddr->sa_family;

  160.         switch (cidr[i].family) {

  161. #if (NGX_HAVE_INET6)
  162.         case AF_INET6:
  163.             sin6 = (struct sockaddr_in6 *) u.addrs[i].sockaddr;
  164.             cidr[i].u.in6.addr = sin6->sin6_addr;
  165.             ngx_memset(cidr[i].u.in6.mask.s6_addr, 0xff, 16);
  166.             break;
  167. #endif

  168.         default: /* AF_INET */
  169.             sin = (struct sockaddr_in *) u.addrs[i].sockaddr;
  170.             cidr[i].u.in.addr = sin->sin_addr.s_addr;
  171.             cidr[i].u.in.mask = 0xffffffff;
  172.             break;
  173.         }
  174.     }

  175.     return NGX_CONF_OK;
  176. }


  177. static void *
  178. ngx_mail_realip_create_srv_conf(ngx_conf_t *cf)
  179. {
  180.     ngx_mail_realip_srv_conf_t  *conf;

  181.     conf = ngx_pcalloc(cf->pool, sizeof(ngx_mail_realip_srv_conf_t));
  182.     if (conf == NULL) {
  183.         return NULL;
  184.     }

  185.     /*
  186.      * set by ngx_pcalloc():
  187.      *
  188.      *     conf->from = NULL;
  189.      */

  190.     return conf;
  191. }


  192. static char *
  193. ngx_mail_realip_merge_srv_conf(ngx_conf_t *cf, void *parent, void *child)
  194. {
  195.     ngx_mail_realip_srv_conf_t *prev = parent;
  196.     ngx_mail_realip_srv_conf_t *conf = child;

  197.     if (conf->from == NULL) {
  198.         conf->from = prev->from;
  199.     }

  200.     return NGX_CONF_OK;
  201. }