src/stream/ngx_stream_upstream.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_stream.h>


  8. static ngx_int_t ngx_stream_upstream_add_variables(ngx_conf_t *cf);
  9. static ngx_int_t ngx_stream_upstream_addr_variable(ngx_stream_session_t *s,
  10.     ngx_stream_variable_value_t *v, uintptr_t data);
  11. static ngx_int_t ngx_stream_upstream_response_time_variable(
  12.     ngx_stream_session_t *s, ngx_stream_variable_value_t *v, uintptr_t data);
  13. static ngx_int_t ngx_stream_upstream_bytes_variable(ngx_stream_session_t *s,
  14.     ngx_stream_variable_value_t *v, uintptr_t data);

  15. static char *ngx_stream_upstream(ngx_conf_t *cf, ngx_command_t *cmd,
  16.     void *dummy);
  17. static char *ngx_stream_upstream_server(ngx_conf_t *cf, ngx_command_t *cmd,
  18.     void *conf);
  19. #if (NGX_STREAM_UPSTREAM_ZONE)
  20. static char *ngx_stream_upstream_resolver(ngx_conf_t *cf, ngx_command_t *cmd,
  21.     void *conf);
  22. #endif

  23. static void *ngx_stream_upstream_create_main_conf(ngx_conf_t *cf);
  24. static char *ngx_stream_upstream_init_main_conf(ngx_conf_t *cf, void *conf);


  25. static ngx_command_t  ngx_stream_upstream_commands[] = {

  26.     { ngx_string("upstream"),
  27.       NGX_STREAM_MAIN_CONF|NGX_CONF_BLOCK|NGX_CONF_TAKE1,
  28.       ngx_stream_upstream,
  29.       0,
  30.       0,
  31.       NULL },

  32.     { ngx_string("server"),
  33.       NGX_STREAM_UPS_CONF|NGX_CONF_1MORE,
  34.       ngx_stream_upstream_server,
  35.       NGX_STREAM_SRV_CONF_OFFSET,
  36.       0,
  37.       NULL },

  38. #if (NGX_STREAM_UPSTREAM_ZONE)

  39.     { ngx_string("resolver"),
  40.       NGX_STREAM_UPS_CONF|NGX_CONF_1MORE,
  41.       ngx_stream_upstream_resolver,
  42.       NGX_STREAM_SRV_CONF_OFFSET,
  43.       0,
  44.       NULL },

  45.     { ngx_string("resolver_timeout"),
  46.       NGX_STREAM_UPS_CONF|NGX_CONF_TAKE1,
  47.       ngx_conf_set_msec_slot,
  48.       NGX_STREAM_SRV_CONF_OFFSET,
  49.       offsetof(ngx_stream_upstream_srv_conf_t, resolver_timeout),
  50.       NULL },

  51. #endif

  52.       ngx_null_command
  53. };


  54. static ngx_stream_module_t  ngx_stream_upstream_module_ctx = {
  55.     ngx_stream_upstream_add_variables,     /* preconfiguration */
  56.     NULL,                                  /* postconfiguration */

  57.     ngx_stream_upstream_create_main_conf/* create main configuration */
  58.     ngx_stream_upstream_init_main_conf,    /* init main configuration */

  59.     NULL,                                  /* create server configuration */
  60.     NULL                                   /* merge server configuration */
  61. };


  62. ngx_module_t  ngx_stream_upstream_module = {
  63.     NGX_MODULE_V1,
  64.     &ngx_stream_upstream_module_ctx,       /* module context */
  65.     ngx_stream_upstream_commands,          /* module directives */
  66.     NGX_STREAM_MODULE,                     /* module type */
  67.     NULL,                                  /* init master */
  68.     NULL,                                  /* init module */
  69.     NULL,                                  /* init process */
  70.     NULL,                                  /* init thread */
  71.     NULL,                                  /* exit thread */
  72.     NULL,                                  /* exit process */
  73.     NULL,                                  /* exit master */
  74.     NGX_MODULE_V1_PADDING
  75. };


  76. static ngx_stream_variable_t  ngx_stream_upstream_vars[] = {

  77.     { ngx_string("upstream_addr"), NULL,
  78.       ngx_stream_upstream_addr_variable, 0,
  79.       NGX_STREAM_VAR_NOCACHEABLE, 0 },

  80.     { ngx_string("upstream_bytes_sent"), NULL,
  81.       ngx_stream_upstream_bytes_variable, 0,
  82.       NGX_STREAM_VAR_NOCACHEABLE, 0 },

  83.     { ngx_string("upstream_connect_time"), NULL,
  84.       ngx_stream_upstream_response_time_variable, 2,
  85.       NGX_STREAM_VAR_NOCACHEABLE, 0 },

  86.     { ngx_string("upstream_first_byte_time"), NULL,
  87.       ngx_stream_upstream_response_time_variable, 1,
  88.       NGX_STREAM_VAR_NOCACHEABLE, 0 },

  89.     { ngx_string("upstream_session_time"), NULL,
  90.       ngx_stream_upstream_response_time_variable, 0,
  91.       NGX_STREAM_VAR_NOCACHEABLE, 0 },

  92.     { ngx_string("upstream_bytes_received"), NULL,
  93.       ngx_stream_upstream_bytes_variable, 1,
  94.       NGX_STREAM_VAR_NOCACHEABLE, 0 },

  95.       ngx_stream_null_variable
  96. };


  97. static ngx_int_t
  98. ngx_stream_upstream_add_variables(ngx_conf_t *cf)
  99. {
  100.     ngx_stream_variable_t  *var, *v;

  101.     for (v = ngx_stream_upstream_vars; v->name.len; v++) {
  102.         var = ngx_stream_add_variable(cf, &v->name, v->flags);
  103.         if (var == NULL) {
  104.             return NGX_ERROR;
  105.         }

  106.         var->get_handler = v->get_handler;
  107.         var->data = v->data;
  108.     }

  109.     return NGX_OK;
  110. }


  111. static ngx_int_t
  112. ngx_stream_upstream_addr_variable(ngx_stream_session_t *s,
  113.     ngx_stream_variable_value_t *v, uintptr_t data)
  114. {
  115.     u_char                       *p;
  116.     size_t                        len;
  117.     ngx_uint_t                    i;
  118.     ngx_stream_upstream_state_t  *state;

  119.     v->valid = 1;
  120.     v->no_cacheable = 0;
  121.     v->not_found = 0;

  122.     if (s->upstream_states == NULL || s->upstream_states->nelts == 0) {
  123.         v->not_found = 1;
  124.         return NGX_OK;
  125.     }

  126.     len = 0;
  127.     state = s->upstream_states->elts;

  128.     for (i = 0; i < s->upstream_states->nelts; i++) {
  129.         if (state[i].peer) {
  130.             len += state[i].peer->len;
  131.         }

  132.         len += 2;
  133.     }

  134.     p = ngx_pnalloc(s->connection->pool, len);
  135.     if (p == NULL) {
  136.         return NGX_ERROR;
  137.     }

  138.     v->data = p;

  139.     i = 0;

  140.     for ( ;; ) {
  141.         if (state[i].peer) {
  142.             p = ngx_cpymem(p, state[i].peer->data, state[i].peer->len);
  143.         }

  144.         if (++i == s->upstream_states->nelts) {
  145.             break;
  146.         }

  147.         *p++ = ',';
  148.         *p++ = ' ';
  149.     }

  150.     v->len = p - v->data;

  151.     return NGX_OK;
  152. }


  153. static ngx_int_t
  154. ngx_stream_upstream_bytes_variable(ngx_stream_session_t *s,
  155.     ngx_stream_variable_value_t *v, uintptr_t data)
  156. {
  157.     u_char                       *p;
  158.     size_t                        len;
  159.     ngx_uint_t                    i;
  160.     ngx_stream_upstream_state_t  *state;

  161.     v->valid = 1;
  162.     v->no_cacheable = 0;
  163.     v->not_found = 0;

  164.     if (s->upstream_states == NULL || s->upstream_states->nelts == 0) {
  165.         v->not_found = 1;
  166.         return NGX_OK;
  167.     }

  168.     len = s->upstream_states->nelts * (NGX_OFF_T_LEN + 2);

  169.     p = ngx_pnalloc(s->connection->pool, len);
  170.     if (p == NULL) {
  171.         return NGX_ERROR;
  172.     }

  173.     v->data = p;

  174.     i = 0;
  175.     state = s->upstream_states->elts;

  176.     for ( ;; ) {

  177.         if (data == 1) {
  178.             p = ngx_sprintf(p, "%O", state[i].bytes_received);

  179.         } else {
  180.             p = ngx_sprintf(p, "%O", state[i].bytes_sent);
  181.         }

  182.         if (++i == s->upstream_states->nelts) {
  183.             break;
  184.         }

  185.         *p++ = ',';
  186.         *p++ = ' ';
  187.     }

  188.     v->len = p - v->data;

  189.     return NGX_OK;
  190. }


  191. static ngx_int_t
  192. ngx_stream_upstream_response_time_variable(ngx_stream_session_t *s,
  193.     ngx_stream_variable_value_t *v, uintptr_t data)
  194. {
  195.     u_char                       *p;
  196.     size_t                        len;
  197.     ngx_uint_t                    i;
  198.     ngx_msec_int_t                ms;
  199.     ngx_stream_upstream_state_t  *state;

  200.     v->valid = 1;
  201.     v->no_cacheable = 0;
  202.     v->not_found = 0;

  203.     if (s->upstream_states == NULL || s->upstream_states->nelts == 0) {
  204.         v->not_found = 1;
  205.         return NGX_OK;
  206.     }

  207.     len = s->upstream_states->nelts * (NGX_TIME_T_LEN + 4 + 2);

  208.     p = ngx_pnalloc(s->connection->pool, len);
  209.     if (p == NULL) {
  210.         return NGX_ERROR;
  211.     }

  212.     v->data = p;

  213.     i = 0;
  214.     state = s->upstream_states->elts;

  215.     for ( ;; ) {

  216.         if (data == 1) {
  217.             ms = state[i].first_byte_time;

  218.         } else if (data == 2) {
  219.             ms = state[i].connect_time;

  220.         } else {
  221.             ms = state[i].response_time;
  222.         }

  223.         if (ms != -1) {
  224.             ms = ngx_max(ms, 0);
  225.             p = ngx_sprintf(p, "%T.%03M", (time_t) ms / 1000, ms % 1000);

  226.         } else {
  227.             *p++ = '-';
  228.         }

  229.         if (++i == s->upstream_states->nelts) {
  230.             break;
  231.         }

  232.         *p++ = ',';
  233.         *p++ = ' ';
  234.     }

  235.     v->len = p - v->data;

  236.     return NGX_OK;
  237. }


  238. static char *
  239. ngx_stream_upstream(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy)
  240. {
  241.     char                            *rv;
  242.     void                            *mconf;
  243.     ngx_str_t                       *value;
  244.     ngx_url_t                        u;
  245.     ngx_uint_t                       m;
  246.     ngx_conf_t                       pcf;
  247.     ngx_stream_module_t             *module;
  248.     ngx_stream_conf_ctx_t           *ctx, *stream_ctx;
  249.     ngx_stream_upstream_srv_conf_t  *uscf;

  250.     ngx_memzero(&u, sizeof(ngx_url_t));

  251.     value = cf->args->elts;
  252.     u.host = value[1];
  253.     u.no_resolve = 1;
  254.     u.no_port = 1;

  255.     uscf = ngx_stream_upstream_add(cf, &u, NGX_STREAM_UPSTREAM_CREATE
  256.                                            |NGX_STREAM_UPSTREAM_MODIFY
  257.                                            |NGX_STREAM_UPSTREAM_WEIGHT
  258.                                            |NGX_STREAM_UPSTREAM_MAX_CONNS
  259.                                            |NGX_STREAM_UPSTREAM_MAX_FAILS
  260.                                            |NGX_STREAM_UPSTREAM_FAIL_TIMEOUT
  261.                                            |NGX_STREAM_UPSTREAM_DOWN
  262.                                            |NGX_STREAM_UPSTREAM_BACKUP);
  263.     if (uscf == NULL) {
  264.         return NGX_CONF_ERROR;
  265.     }


  266.     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_stream_conf_ctx_t));
  267.     if (ctx == NULL) {
  268.         return NGX_CONF_ERROR;
  269.     }

  270.     stream_ctx = cf->ctx;
  271.     ctx->main_conf = stream_ctx->main_conf;

  272.     /* the upstream{}'s srv_conf */

  273.     ctx->srv_conf = ngx_pcalloc(cf->pool,
  274.                                 sizeof(void *) * ngx_stream_max_module);
  275.     if (ctx->srv_conf == NULL) {
  276.         return NGX_CONF_ERROR;
  277.     }

  278.     ctx->srv_conf[ngx_stream_upstream_module.ctx_index] = uscf;

  279.     uscf->srv_conf = ctx->srv_conf;

  280.     for (m = 0; cf->cycle->modules[m]; m++) {
  281.         if (cf->cycle->modules[m]->type != NGX_STREAM_MODULE) {
  282.             continue;
  283.         }

  284.         module = cf->cycle->modules[m]->ctx;

  285.         if (module->create_srv_conf) {
  286.             mconf = module->create_srv_conf(cf);
  287.             if (mconf == NULL) {
  288.                 return NGX_CONF_ERROR;
  289.             }

  290.             ctx->srv_conf[cf->cycle->modules[m]->ctx_index] = mconf;
  291.         }
  292.     }

  293.     uscf->servers = ngx_array_create(cf->pool, 4,
  294.                                      sizeof(ngx_stream_upstream_server_t));
  295.     if (uscf->servers == NULL) {
  296.         return NGX_CONF_ERROR;
  297.     }


  298.     /* parse inside upstream{} */

  299.     pcf = *cf;
  300.     cf->ctx = ctx;
  301.     cf->cmd_type = NGX_STREAM_UPS_CONF;

  302.     rv = ngx_conf_parse(cf, NULL);

  303.     *cf = pcf;

  304.     if (rv != NGX_CONF_OK) {
  305.         return rv;
  306.     }

  307.     if (uscf->servers->nelts == 0) {
  308.         ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  309.                            "no servers are inside upstream");
  310.         return NGX_CONF_ERROR;
  311.     }

  312.     return rv;
  313. }


  314. static char *
  315. ngx_stream_upstream_server(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
  316. {
  317.     ngx_stream_upstream_srv_conf_t  *uscf = conf;

  318.     time_t                         fail_timeout;
  319.     ngx_str_t                     *value, s;
  320.     ngx_url_t                      u;
  321.     ngx_int_t                      weight, max_conns, max_fails;
  322.     ngx_uint_t                     i;
  323. #if (NGX_STREAM_UPSTREAM_ZONE)
  324.     ngx_uint_t                     resolve;
  325. #endif
  326.     ngx_stream_upstream_server_t  *us;

  327.     us = ngx_array_push(uscf->servers);
  328.     if (us == NULL) {
  329.         return NGX_CONF_ERROR;
  330.     }

  331.     ngx_memzero(us, sizeof(ngx_stream_upstream_server_t));

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

  333.     weight = 1;
  334.     max_conns = 0;
  335.     max_fails = 1;
  336.     fail_timeout = 10;
  337. #if (NGX_STREAM_UPSTREAM_ZONE)
  338.     resolve = 0;
  339. #endif

  340.     for (i = 2; i < cf->args->nelts; i++) {

  341.         if (ngx_strncmp(value[i].data, "weight=", 7) == 0) {

  342.             if (!(uscf->flags & NGX_STREAM_UPSTREAM_WEIGHT)) {
  343.                 goto not_supported;
  344.             }

  345.             weight = ngx_atoi(&value[i].data[7], value[i].len - 7);

  346.             if (weight == NGX_ERROR || weight == 0) {
  347.                 goto invalid;
  348.             }

  349.             continue;
  350.         }

  351.         if (ngx_strncmp(value[i].data, "max_conns=", 10) == 0) {

  352.             if (!(uscf->flags & NGX_STREAM_UPSTREAM_MAX_CONNS)) {
  353.                 goto not_supported;
  354.             }

  355.             max_conns = ngx_atoi(&value[i].data[10], value[i].len - 10);

  356.             if (max_conns == NGX_ERROR) {
  357.                 goto invalid;
  358.             }

  359.             continue;
  360.         }

  361.         if (ngx_strncmp(value[i].data, "max_fails=", 10) == 0) {

  362.             if (!(uscf->flags & NGX_STREAM_UPSTREAM_MAX_FAILS)) {
  363.                 goto not_supported;
  364.             }

  365.             max_fails = ngx_atoi(&value[i].data[10], value[i].len - 10);

  366.             if (max_fails == NGX_ERROR) {
  367.                 goto invalid;
  368.             }

  369.             continue;
  370.         }

  371.         if (ngx_strncmp(value[i].data, "fail_timeout=", 13) == 0) {

  372.             if (!(uscf->flags & NGX_STREAM_UPSTREAM_FAIL_TIMEOUT)) {
  373.                 goto not_supported;
  374.             }

  375.             s.len = value[i].len - 13;
  376.             s.data = &value[i].data[13];

  377.             fail_timeout = ngx_parse_time(&s, 1);

  378.             if (fail_timeout == (time_t) NGX_ERROR) {
  379.                 goto invalid;
  380.             }

  381.             continue;
  382.         }

  383.         if (ngx_strcmp(value[i].data, "backup") == 0) {

  384.             if (!(uscf->flags & NGX_STREAM_UPSTREAM_BACKUP)) {
  385.                 goto not_supported;
  386.             }

  387.             us->backup = 1;

  388.             continue;
  389.         }

  390.         if (ngx_strcmp(value[i].data, "down") == 0) {

  391.             if (!(uscf->flags & NGX_STREAM_UPSTREAM_DOWN)) {
  392.                 goto not_supported;
  393.             }

  394.             us->down = 1;

  395.             continue;
  396.         }

  397. #if (NGX_STREAM_UPSTREAM_ZONE)
  398.         if (ngx_strcmp(value[i].data, "resolve") == 0) {
  399.             resolve = 1;
  400.             continue;
  401.         }

  402.         if (ngx_strncmp(value[i].data, "service=", 8) == 0) {

  403.             us->service.len = value[i].len - 8;
  404.             us->service.data = &value[i].data[8];

  405.             if (us->service.len == 0) {
  406.                 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "service is empty");
  407.                 return NGX_CONF_ERROR;
  408.             }

  409.             continue;
  410.         }
  411. #endif

  412.         goto invalid;
  413.     }

  414.     ngx_memzero(&u, sizeof(ngx_url_t));

  415.     u.url = value[1];

  416. #if (NGX_STREAM_UPSTREAM_ZONE)
  417.     if (resolve) {
  418.         /* resolve at run time */
  419.         u.no_resolve = 1;
  420.     }

  421.     if (us->service.len && !resolve) {
  422.         ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  423.                            "service upstream \"%V\" requires "
  424.                            "\"resolve\" parameter",
  425.                            &u.url);
  426.         return NGX_CONF_ERROR;
  427.     }

  428. #endif

  429.     if (ngx_parse_url(cf->pool, &u) != NGX_OK) {
  430.         if (u.err) {
  431.             ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  432.                                "%s in upstream \"%V\"", u.err, &u.url);
  433.         }

  434.         return NGX_CONF_ERROR;
  435.     }

  436.     if (u.no_port
  437. #if (NGX_STREAM_UPSTREAM_ZONE)
  438.         && us->service.len == 0
  439. #endif
  440.         )
  441.     {
  442.         ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  443.                            "no port in upstream \"%V\"", &u.url);
  444.         return NGX_CONF_ERROR;
  445.     }

  446.     us->name = u.url;

  447. #if (NGX_STREAM_UPSTREAM_ZONE)

  448.     if (us->service.len && !u.no_port) {
  449.         ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  450.                            "service upstream \"%V\" may not have port",
  451.                            &us->name);

  452.         return NGX_CONF_ERROR;
  453.     }

  454.     if (us->service.len && u.naddrs) {
  455.         ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  456.                            "service upstream \"%V\" requires domain name",
  457.                            &us->name);

  458.         return NGX_CONF_ERROR;
  459.     }

  460.     if (resolve && u.naddrs == 0) {
  461.         ngx_addr_t  *addr;

  462.         /* save port */

  463.         addr = ngx_pcalloc(cf->pool, sizeof(ngx_addr_t));
  464.         if (addr == NULL) {
  465.             return NGX_CONF_ERROR;
  466.         }

  467.         addr->sockaddr = ngx_palloc(cf->pool, u.socklen);
  468.         if (addr->sockaddr == NULL) {
  469.             return NGX_CONF_ERROR;
  470.         }

  471.         ngx_memcpy(addr->sockaddr, &u.sockaddr, u.socklen);

  472.         addr->socklen = u.socklen;

  473.         us->addrs = addr;
  474.         us->naddrs = 1;

  475.         us->host = u.host;

  476.     } else {
  477.         us->addrs = u.addrs;
  478.         us->naddrs = u.naddrs;
  479.     }

  480. #else

  481.     us->addrs = u.addrs;
  482.     us->naddrs = u.naddrs;

  483. #endif

  484.     us->weight = weight;
  485.     us->max_conns = max_conns;
  486.     us->max_fails = max_fails;
  487.     us->fail_timeout = fail_timeout;

  488.     return NGX_CONF_OK;

  489. invalid:

  490.     ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  491.                        "invalid parameter \"%V\"", &value[i]);

  492.     return NGX_CONF_ERROR;

  493. not_supported:

  494.     ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  495.                        "balancing method does not support parameter \"%V\"",
  496.                        &value[i]);

  497.     return NGX_CONF_ERROR;
  498. }


  499. #if (NGX_STREAM_UPSTREAM_ZONE)

  500. static char *
  501. ngx_stream_upstream_resolver(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
  502. {
  503.     ngx_stream_upstream_srv_conf_t  *uscf = conf;

  504.     ngx_str_t  *value;

  505.     if (uscf->resolver) {
  506.         return "is duplicate";
  507.     }

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

  509.     uscf->resolver = ngx_resolver_create(cf, &value[1], cf->args->nelts - 1);
  510.     if (uscf->resolver == NULL) {
  511.         return NGX_CONF_ERROR;
  512.     }

  513.     return NGX_CONF_OK;
  514. }

  515. #endif


  516. ngx_stream_upstream_srv_conf_t *
  517. ngx_stream_upstream_add(ngx_conf_t *cf, ngx_url_t *u, ngx_uint_t flags)
  518. {
  519.     ngx_uint_t                        i;
  520.     ngx_stream_upstream_server_t     *us;
  521.     ngx_stream_upstream_srv_conf_t   *uscf, **uscfp;
  522.     ngx_stream_upstream_main_conf_t  *umcf;

  523.     if (!(flags & NGX_STREAM_UPSTREAM_CREATE)) {

  524.         if (ngx_parse_url(cf->pool, u) != NGX_OK) {
  525.             if (u->err) {
  526.                 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  527.                                    "%s in upstream \"%V\"", u->err, &u->url);
  528.             }

  529.             return NULL;
  530.         }
  531.     }

  532.     umcf = ngx_stream_conf_get_module_main_conf(cf, ngx_stream_upstream_module);

  533.     uscfp = umcf->upstreams.elts;

  534.     for (i = 0; i < umcf->upstreams.nelts; i++) {

  535.         if (uscfp[i]->host.len != u->host.len
  536.             || ngx_strncasecmp(uscfp[i]->host.data, u->host.data, u->host.len)
  537.                != 0)
  538.         {
  539.             continue;
  540.         }

  541.         if ((flags & NGX_STREAM_UPSTREAM_CREATE)
  542.              && (uscfp[i]->flags & NGX_STREAM_UPSTREAM_CREATE))
  543.         {
  544.             ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  545.                                "duplicate upstream \"%V\"", &u->host);
  546.             return NULL;
  547.         }

  548.         if ((uscfp[i]->flags & NGX_STREAM_UPSTREAM_CREATE) && !u->no_port) {
  549.             ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  550.                                "upstream \"%V\" may not have port %d",
  551.                                &u->host, u->port);
  552.             return NULL;
  553.         }

  554.         if ((flags & NGX_STREAM_UPSTREAM_CREATE) && !uscfp[i]->no_port) {
  555.             ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
  556.                           "upstream \"%V\" may not have port %d in %s:%ui",
  557.                           &u->host, uscfp[i]->port,
  558.                           uscfp[i]->file_name, uscfp[i]->line);
  559.             return NULL;
  560.         }

  561.         if (uscfp[i]->port != u->port) {
  562.             continue;
  563.         }

  564.         if (flags & NGX_STREAM_UPSTREAM_CREATE) {
  565.             uscfp[i]->flags = flags;
  566.         }

  567.         return uscfp[i];
  568.     }

  569.     uscf = ngx_pcalloc(cf->pool, sizeof(ngx_stream_upstream_srv_conf_t));
  570.     if (uscf == NULL) {
  571.         return NULL;
  572.     }

  573.     uscf->flags = flags;
  574.     uscf->host = u->host;
  575.     uscf->file_name = cf->conf_file->file.name.data;
  576.     uscf->line = cf->conf_file->line;
  577.     uscf->port = u->port;
  578.     uscf->no_port = u->no_port;
  579. #if (NGX_STREAM_UPSTREAM_ZONE)
  580.     uscf->resolver_timeout = NGX_CONF_UNSET_MSEC;
  581. #endif

  582.     if (u->naddrs == 1 && (u->port || u->family == AF_UNIX)) {
  583.         uscf->servers = ngx_array_create(cf->pool, 1,
  584.                                          sizeof(ngx_stream_upstream_server_t));
  585.         if (uscf->servers == NULL) {
  586.             return NULL;
  587.         }

  588.         us = ngx_array_push(uscf->servers);
  589.         if (us == NULL) {
  590.             return NULL;
  591.         }

  592.         ngx_memzero(us, sizeof(ngx_stream_upstream_server_t));

  593.         us->addrs = u->addrs;
  594.         us->naddrs = 1;
  595.     }

  596.     uscfp = ngx_array_push(&umcf->upstreams);
  597.     if (uscfp == NULL) {
  598.         return NULL;
  599.     }

  600.     *uscfp = uscf;

  601.     return uscf;
  602. }


  603. static void *
  604. ngx_stream_upstream_create_main_conf(ngx_conf_t *cf)
  605. {
  606.     ngx_stream_upstream_main_conf_t  *umcf;

  607.     umcf = ngx_pcalloc(cf->pool, sizeof(ngx_stream_upstream_main_conf_t));
  608.     if (umcf == NULL) {
  609.         return NULL;
  610.     }

  611.     if (ngx_array_init(&umcf->upstreams, cf->pool, 4,
  612.                        sizeof(ngx_stream_upstream_srv_conf_t *))
  613.         != NGX_OK)
  614.     {
  615.         return NULL;
  616.     }

  617.     return umcf;
  618. }


  619. static char *
  620. ngx_stream_upstream_init_main_conf(ngx_conf_t *cf, void *conf)
  621. {
  622.     ngx_stream_upstream_main_conf_t *umcf = conf;

  623.     ngx_uint_t                        i;
  624.     ngx_stream_upstream_init_pt       init;
  625.     ngx_stream_upstream_srv_conf_t  **uscfp;

  626.     uscfp = umcf->upstreams.elts;

  627.     for (i = 0; i < umcf->upstreams.nelts; i++) {

  628.         init = uscfp[i]->peer.init_upstream
  629.                                          ? uscfp[i]->peer.init_upstream
  630.                                          : ngx_stream_upstream_init_round_robin;

  631.         if (init(cf, uscfp[i]) != NGX_OK) {
  632.             return NGX_CONF_ERROR;
  633.         }
  634.     }

  635.     return NGX_CONF_OK;
  636. }