src/mail/ngx_mail.c - nginx source code

Global variables 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_event.h>
  8. #include <ngx_mail.h>


  9. static char *ngx_mail_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
  10. static ngx_int_t ngx_mail_add_ports(ngx_conf_t *cf, ngx_array_t *ports,
  11.     ngx_mail_listen_t *listen);
  12. static char *ngx_mail_optimize_servers(ngx_conf_t *cf, ngx_array_t *ports);
  13. static ngx_int_t ngx_mail_add_addrs(ngx_conf_t *cf, ngx_mail_port_t *mport,
  14.     ngx_mail_conf_addr_t *addr);
  15. #if (NGX_HAVE_INET6)
  16. static ngx_int_t ngx_mail_add_addrs6(ngx_conf_t *cf, ngx_mail_port_t *mport,
  17.     ngx_mail_conf_addr_t *addr);
  18. #endif
  19. static ngx_int_t ngx_mail_cmp_conf_addrs(const void *one, const void *two);


  20. ngx_uint_t  ngx_mail_max_module;


  21. static ngx_command_t  ngx_mail_commands[] = {

  22.     { ngx_string("mail"),
  23.       NGX_MAIN_CONF|NGX_CONF_BLOCK|NGX_CONF_NOARGS,
  24.       ngx_mail_block,
  25.       0,
  26.       0,
  27.       NULL },

  28.       ngx_null_command
  29. };


  30. static ngx_core_module_t  ngx_mail_module_ctx = {
  31.     ngx_string("mail"),
  32.     NULL,
  33.     NULL
  34. };


  35. ngx_module_t  ngx_mail_module = {
  36.     NGX_MODULE_V1,
  37.     &ngx_mail_module_ctx,                  /* module context */
  38.     ngx_mail_commands,                     /* module directives */
  39.     NGX_CORE_MODULE,                       /* module type */
  40.     NULL,                                  /* init master */
  41.     NULL,                                  /* init module */
  42.     NULL,                                  /* init process */
  43.     NULL,                                  /* init thread */
  44.     NULL,                                  /* exit thread */
  45.     NULL,                                  /* exit process */
  46.     NULL,                                  /* exit master */
  47.     NGX_MODULE_V1_PADDING
  48. };


  49. static char *
  50. ngx_mail_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
  51. {
  52.     char                        *rv;
  53.     ngx_uint_t                   i, m, mi, s;
  54.     ngx_conf_t                   pcf;
  55.     ngx_array_t                  ports;
  56.     ngx_mail_listen_t           *listen;
  57.     ngx_mail_module_t           *module;
  58.     ngx_mail_conf_ctx_t         *ctx;
  59.     ngx_mail_core_srv_conf_t   **cscfp;
  60.     ngx_mail_core_main_conf_t   *cmcf;

  61.     if (*(ngx_mail_conf_ctx_t **) conf) {
  62.         return "is duplicate";
  63.     }

  64.     /* the main mail context */

  65.     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_mail_conf_ctx_t));
  66.     if (ctx == NULL) {
  67.         return NGX_CONF_ERROR;
  68.     }

  69.     *(ngx_mail_conf_ctx_t **) conf = ctx;

  70.     /* count the number of the mail modules and set up their indices */

  71.     ngx_mail_max_module = ngx_count_modules(cf->cycle, NGX_MAIL_MODULE);


  72.     /* the mail main_conf context, it is the same in the all mail contexts */

  73.     ctx->main_conf = ngx_pcalloc(cf->pool,
  74.                                  sizeof(void *) * ngx_mail_max_module);
  75.     if (ctx->main_conf == NULL) {
  76.         return NGX_CONF_ERROR;
  77.     }


  78.     /*
  79.      * the mail null srv_conf context, it is used to merge
  80.      * the server{}s' srv_conf's
  81.      */

  82.     ctx->srv_conf = ngx_pcalloc(cf->pool, sizeof(void *) * ngx_mail_max_module);
  83.     if (ctx->srv_conf == NULL) {
  84.         return NGX_CONF_ERROR;
  85.     }


  86.     /*
  87.      * create the main_conf's and the null srv_conf's of the all mail modules
  88.      */

  89.     for (m = 0; cf->cycle->modules[m]; m++) {
  90.         if (cf->cycle->modules[m]->type != NGX_MAIL_MODULE) {
  91.             continue;
  92.         }

  93.         module = cf->cycle->modules[m]->ctx;
  94.         mi = cf->cycle->modules[m]->ctx_index;

  95.         if (module->create_main_conf) {
  96.             ctx->main_conf[mi] = module->create_main_conf(cf);
  97.             if (ctx->main_conf[mi] == NULL) {
  98.                 return NGX_CONF_ERROR;
  99.             }
  100.         }

  101.         if (module->create_srv_conf) {
  102.             ctx->srv_conf[mi] = module->create_srv_conf(cf);
  103.             if (ctx->srv_conf[mi] == NULL) {
  104.                 return NGX_CONF_ERROR;
  105.             }
  106.         }
  107.     }


  108.     /* parse inside the mail{} block */

  109.     pcf = *cf;
  110.     cf->ctx = ctx;

  111.     cf->module_type = NGX_MAIL_MODULE;
  112.     cf->cmd_type = NGX_MAIL_MAIN_CONF;
  113.     rv = ngx_conf_parse(cf, NULL);

  114.     if (rv != NGX_CONF_OK) {
  115.         *cf = pcf;
  116.         return rv;
  117.     }


  118.     /* init mail{} main_conf's, merge the server{}s' srv_conf's */

  119.     cmcf = ctx->main_conf[ngx_mail_core_module.ctx_index];
  120.     cscfp = cmcf->servers.elts;

  121.     for (m = 0; cf->cycle->modules[m]; m++) {
  122.         if (cf->cycle->modules[m]->type != NGX_MAIL_MODULE) {
  123.             continue;
  124.         }

  125.         module = cf->cycle->modules[m]->ctx;
  126.         mi = cf->cycle->modules[m]->ctx_index;

  127.         /* init mail{} main_conf's */

  128.         cf->ctx = ctx;

  129.         if (module->init_main_conf) {
  130.             rv = module->init_main_conf(cf, ctx->main_conf[mi]);
  131.             if (rv != NGX_CONF_OK) {
  132.                 *cf = pcf;
  133.                 return rv;
  134.             }
  135.         }

  136.         for (s = 0; s < cmcf->servers.nelts; s++) {

  137.             /* merge the server{}s' srv_conf's */

  138.             cf->ctx = cscfp[s]->ctx;

  139.             if (module->merge_srv_conf) {
  140.                 rv = module->merge_srv_conf(cf,
  141.                                             ctx->srv_conf[mi],
  142.                                             cscfp[s]->ctx->srv_conf[mi]);
  143.                 if (rv != NGX_CONF_OK) {
  144.                     *cf = pcf;
  145.                     return rv;
  146.                 }
  147.             }
  148.         }
  149.     }

  150.     *cf = pcf;


  151.     if (ngx_array_init(&ports, cf->temp_pool, 4, sizeof(ngx_mail_conf_port_t))
  152.         != NGX_OK)
  153.     {
  154.         return NGX_CONF_ERROR;
  155.     }

  156.     listen = cmcf->listen.elts;

  157.     for (i = 0; i < cmcf->listen.nelts; i++) {
  158.         if (ngx_mail_add_ports(cf, &ports, &listen[i]) != NGX_OK) {
  159.             return NGX_CONF_ERROR;
  160.         }
  161.     }

  162.     return ngx_mail_optimize_servers(cf, &ports);
  163. }


  164. static ngx_int_t
  165. ngx_mail_add_ports(ngx_conf_t *cf, ngx_array_t *ports,
  166.     ngx_mail_listen_t *listen)
  167. {
  168.     in_port_t              p;
  169.     ngx_uint_t             i;
  170.     struct sockaddr       *sa;
  171.     ngx_mail_conf_port_t  *port;
  172.     ngx_mail_conf_addr_t  *addr;

  173.     sa = listen->sockaddr;
  174.     p = ngx_inet_get_port(sa);

  175.     port = ports->elts;
  176.     for (i = 0; i < ports->nelts; i++) {
  177.         if (p == port[i].port && sa->sa_family == port[i].family) {

  178.             /* a port is already in the port list */

  179.             port = &port[i];
  180.             goto found;
  181.         }
  182.     }

  183.     /* add a port to the port list */

  184.     port = ngx_array_push(ports);
  185.     if (port == NULL) {
  186.         return NGX_ERROR;
  187.     }

  188.     port->family = sa->sa_family;
  189.     port->port = p;

  190.     if (ngx_array_init(&port->addrs, cf->temp_pool, 2,
  191.                        sizeof(ngx_mail_conf_addr_t))
  192.         != NGX_OK)
  193.     {
  194.         return NGX_ERROR;
  195.     }

  196. found:

  197.     addr = ngx_array_push(&port->addrs);
  198.     if (addr == NULL) {
  199.         return NGX_ERROR;
  200.     }

  201.     addr->opt = *listen;

  202.     return NGX_OK;
  203. }


  204. static char *
  205. ngx_mail_optimize_servers(ngx_conf_t *cf, ngx_array_t *ports)
  206. {
  207.     ngx_uint_t                 i, p, last, bind_wildcard;
  208.     ngx_listening_t           *ls;
  209.     ngx_mail_port_t           *mport;
  210.     ngx_mail_conf_port_t      *port;
  211.     ngx_mail_conf_addr_t      *addr;
  212.     ngx_mail_core_srv_conf_t  *cscf;

  213.     port = ports->elts;
  214.     for (p = 0; p < ports->nelts; p++) {

  215.         ngx_sort(port[p].addrs.elts, (size_t) port[p].addrs.nelts,
  216.                  sizeof(ngx_mail_conf_addr_t), ngx_mail_cmp_conf_addrs);

  217.         addr = port[p].addrs.elts;
  218.         last = port[p].addrs.nelts;

  219.         /*
  220.          * if there is the binding to the "*:port" then we need to bind()
  221.          * to the "*:port" only and ignore the other bindings
  222.          */

  223.         if (addr[last - 1].opt.wildcard) {
  224.             addr[last - 1].opt.bind = 1;
  225.             bind_wildcard = 1;

  226.         } else {
  227.             bind_wildcard = 0;
  228.         }

  229.         i = 0;

  230.         while (i < last) {

  231.             if (bind_wildcard && !addr[i].opt.bind) {
  232.                 i++;
  233.                 continue;
  234.             }

  235.             ls = ngx_create_listening(cf, addr[i].opt.sockaddr,
  236.                                       addr[i].opt.socklen);
  237.             if (ls == NULL) {
  238.                 return NGX_CONF_ERROR;
  239.             }

  240.             ls->addr_ntop = 1;
  241.             ls->handler = ngx_mail_init_connection;
  242.             ls->pool_size = 256;

  243.             cscf = addr->opt.ctx->srv_conf[ngx_mail_core_module.ctx_index];

  244.             ls->logp = cscf->error_log;
  245.             ls->log.data = &ls->addr_text;
  246.             ls->log.handler = ngx_accept_log_error;

  247.             ls->backlog = addr[i].opt.backlog;
  248.             ls->rcvbuf = addr[i].opt.rcvbuf;
  249.             ls->sndbuf = addr[i].opt.sndbuf;

  250.             ls->keepalive = addr[i].opt.so_keepalive;
  251. #if (NGX_HAVE_KEEPALIVE_TUNABLE)
  252.             ls->keepidle = addr[i].opt.tcp_keepidle;
  253.             ls->keepintvl = addr[i].opt.tcp_keepintvl;
  254.             ls->keepcnt = addr[i].opt.tcp_keepcnt;
  255. #endif

  256. #if (NGX_HAVE_INET6)
  257.             ls->ipv6only = addr[i].opt.ipv6only;
  258. #endif

  259.             mport = ngx_palloc(cf->pool, sizeof(ngx_mail_port_t));
  260.             if (mport == NULL) {
  261.                 return NGX_CONF_ERROR;
  262.             }

  263.             ls->servers = mport;

  264.             mport->naddrs = i + 1;

  265.             switch (ls->sockaddr->sa_family) {
  266. #if (NGX_HAVE_INET6)
  267.             case AF_INET6:
  268.                 if (ngx_mail_add_addrs6(cf, mport, addr) != NGX_OK) {
  269.                     return NGX_CONF_ERROR;
  270.                 }
  271.                 break;
  272. #endif
  273.             default: /* AF_INET */
  274.                 if (ngx_mail_add_addrs(cf, mport, addr) != NGX_OK) {
  275.                     return NGX_CONF_ERROR;
  276.                 }
  277.                 break;
  278.             }

  279.             addr++;
  280.             last--;
  281.         }
  282.     }

  283.     return NGX_CONF_OK;
  284. }


  285. static ngx_int_t
  286. ngx_mail_add_addrs(ngx_conf_t *cf, ngx_mail_port_t *mport,
  287.     ngx_mail_conf_addr_t *addr)
  288. {
  289.     ngx_uint_t           i;
  290.     ngx_mail_in_addr_t  *addrs;
  291.     struct sockaddr_in  *sin;

  292.     mport->addrs = ngx_pcalloc(cf->pool,
  293.                                mport->naddrs * sizeof(ngx_mail_in_addr_t));
  294.     if (mport->addrs == NULL) {
  295.         return NGX_ERROR;
  296.     }

  297.     addrs = mport->addrs;

  298.     for (i = 0; i < mport->naddrs; i++) {

  299.         sin = (struct sockaddr_in *) addr[i].opt.sockaddr;
  300.         addrs[i].addr = sin->sin_addr.s_addr;

  301.         addrs[i].conf.ctx = addr[i].opt.ctx;
  302. #if (NGX_MAIL_SSL)
  303.         addrs[i].conf.ssl = addr[i].opt.ssl;
  304. #endif
  305.         addrs[i].conf.proxy_protocol = addr[i].opt.proxy_protocol;
  306.         addrs[i].conf.addr_text = addr[i].opt.addr_text;
  307.     }

  308.     return NGX_OK;
  309. }


  310. #if (NGX_HAVE_INET6)

  311. static ngx_int_t
  312. ngx_mail_add_addrs6(ngx_conf_t *cf, ngx_mail_port_t *mport,
  313.     ngx_mail_conf_addr_t *addr)
  314. {
  315.     ngx_uint_t            i;
  316.     ngx_mail_in6_addr_t  *addrs6;
  317.     struct sockaddr_in6  *sin6;

  318.     mport->addrs = ngx_pcalloc(cf->pool,
  319.                                mport->naddrs * sizeof(ngx_mail_in6_addr_t));
  320.     if (mport->addrs == NULL) {
  321.         return NGX_ERROR;
  322.     }

  323.     addrs6 = mport->addrs;

  324.     for (i = 0; i < mport->naddrs; i++) {

  325.         sin6 = (struct sockaddr_in6 *) addr[i].opt.sockaddr;
  326.         addrs6[i].addr6 = sin6->sin6_addr;

  327.         addrs6[i].conf.ctx = addr[i].opt.ctx;
  328. #if (NGX_MAIL_SSL)
  329.         addrs6[i].conf.ssl = addr[i].opt.ssl;
  330. #endif
  331.         addrs6[i].conf.proxy_protocol = addr[i].opt.proxy_protocol;
  332.         addrs6[i].conf.addr_text = addr[i].opt.addr_text;
  333.     }

  334.     return NGX_OK;
  335. }

  336. #endif


  337. static ngx_int_t
  338. ngx_mail_cmp_conf_addrs(const void *one, const void *two)
  339. {
  340.     ngx_mail_conf_addr_t  *first, *second;

  341.     first = (ngx_mail_conf_addr_t *) one;
  342.     second = (ngx_mail_conf_addr_t *) two;

  343.     if (first->opt.wildcard) {
  344.         /* a wildcard must be the last resort, shift it to the end */
  345.         return 1;
  346.     }

  347.     if (second->opt.wildcard) {
  348.         /* a wildcard must be the last resort, shift it to the end */
  349.         return -1;
  350.     }

  351.     if (first->opt.bind && !second->opt.bind) {
  352.         /* shift explicit bind()ed addresses to the start */
  353.         return -1;
  354.     }

  355.     if (!first->opt.bind && second->opt.bind) {
  356.         /* shift explicit bind()ed addresses to the start */
  357.         return 1;
  358.     }

  359.     /* do not sort by default */

  360.     return 0;
  361. }