src/core/ngx_cycle.c - nginx-1.7.10

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. static void ngx_destroy_cycle_pools(ngx_conf_t *conf);
  9. static ngx_int_t ngx_init_zone_pool(ngx_cycle_t *cycle,
  10.     ngx_shm_zone_t *shm_zone);
  11. static ngx_int_t ngx_test_lockfile(u_char *file, ngx_log_t *log);
  12. static void ngx_clean_old_cycles(ngx_event_t *ev);


  13. volatile ngx_cycle_t  *ngx_cycle;
  14. ngx_array_t            ngx_old_cycles;

  15. static ngx_pool_t     *ngx_temp_pool;
  16. static ngx_event_t     ngx_cleaner_event;

  17. ngx_uint_t             ngx_test_config;
  18. ngx_uint_t             ngx_quiet_mode;

  19. #if (NGX_THREADS)
  20. ngx_tls_key_t          ngx_core_tls_key;
  21. #endif


  22. /* STUB NAME */
  23. static ngx_connection_t  dumb;
  24. /* STUB */


  25. ngx_cycle_t *
  26. ngx_init_cycle(ngx_cycle_t *old_cycle)
  27. {
  28.     void                *rv;
  29.     char               **senv, **env;
  30.     ngx_uint_t           i, n;
  31.     ngx_log_t           *log;
  32.     ngx_time_t          *tp;
  33.     ngx_conf_t           conf;
  34.     ngx_pool_t          *pool;
  35.     ngx_cycle_t         *cycle, **old;
  36.     ngx_shm_zone_t      *shm_zone, *oshm_zone;
  37.     ngx_list_part_t     *part, *opart;
  38.     ngx_open_file_t     *file;
  39.     ngx_listening_t     *ls, *nls;
  40.     ngx_core_conf_t     *ccf, *old_ccf;
  41.     ngx_core_module_t   *module;
  42.     char                 hostname[NGX_MAXHOSTNAMELEN];

  43.     ngx_timezone_update();

  44.     /* force localtime update with a new timezone */

  45.     tp = ngx_timeofday();
  46.     tp->sec = 0;

  47.     ngx_time_update();


  48.     log = old_cycle->log;

  49.     pool = ngx_create_pool(NGX_CYCLE_POOL_SIZE, log);
  50.     if (pool == NULL) {
  51.         return NULL;
  52.     }
  53.     pool->log = log;

  54.     cycle = ngx_pcalloc(pool, sizeof(ngx_cycle_t));
  55.     if (cycle == NULL) {
  56.         ngx_destroy_pool(pool);
  57.         return NULL;
  58.     }

  59.     cycle->pool = pool;
  60.     cycle->log = log;
  61.     cycle->old_cycle = old_cycle;

  62.     cycle->conf_prefix.len = old_cycle->conf_prefix.len;
  63.     cycle->conf_prefix.data = ngx_pstrdup(pool, &old_cycle->conf_prefix);
  64.     if (cycle->conf_prefix.data == NULL) {
  65.         ngx_destroy_pool(pool);
  66.         return NULL;
  67.     }

  68.     cycle->prefix.len = old_cycle->prefix.len;
  69.     cycle->prefix.data = ngx_pstrdup(pool, &old_cycle->prefix);
  70.     if (cycle->prefix.data == NULL) {
  71.         ngx_destroy_pool(pool);
  72.         return NULL;
  73.     }

  74.     cycle->conf_file.len = old_cycle->conf_file.len;
  75.     cycle->conf_file.data = ngx_pnalloc(pool, old_cycle->conf_file.len + 1);
  76.     if (cycle->conf_file.data == NULL) {
  77.         ngx_destroy_pool(pool);
  78.         return NULL;
  79.     }
  80.     ngx_cpystrn(cycle->conf_file.data, old_cycle->conf_file.data,
  81.                 old_cycle->conf_file.len + 1);

  82.     cycle->conf_param.len = old_cycle->conf_param.len;
  83.     cycle->conf_param.data = ngx_pstrdup(pool, &old_cycle->conf_param);
  84.     if (cycle->conf_param.data == NULL) {
  85.         ngx_destroy_pool(pool);
  86.         return NULL;
  87.     }


  88.     n = old_cycle->paths.nelts ? old_cycle->paths.nelts : 10;

  89.     cycle->paths.elts = ngx_pcalloc(pool, n * sizeof(ngx_path_t *));
  90.     if (cycle->paths.elts == NULL) {
  91.         ngx_destroy_pool(pool);
  92.         return NULL;
  93.     }

  94.     cycle->paths.nelts = 0;
  95.     cycle->paths.size = sizeof(ngx_path_t *);
  96.     cycle->paths.nalloc = n;
  97.     cycle->paths.pool = pool;


  98.     if (old_cycle->open_files.part.nelts) {
  99.         n = old_cycle->open_files.part.nelts;
  100.         for (part = old_cycle->open_files.part.next; part; part = part->next) {
  101.             n += part->nelts;
  102.         }

  103.     } else {
  104.         n = 20;
  105.     }

  106.     if (ngx_list_init(&cycle->open_files, pool, n, sizeof(ngx_open_file_t))
  107.         != NGX_OK)
  108.     {
  109.         ngx_destroy_pool(pool);
  110.         return NULL;
  111.     }


  112.     if (old_cycle->shared_memory.part.nelts) {
  113.         n = old_cycle->shared_memory.part.nelts;
  114.         for (part = old_cycle->shared_memory.part.next; part; part = part->next)
  115.         {
  116.             n += part->nelts;
  117.         }

  118.     } else {
  119.         n = 1;
  120.     }

  121.     if (ngx_list_init(&cycle->shared_memory, pool, n, sizeof(ngx_shm_zone_t))
  122.         != NGX_OK)
  123.     {
  124.         ngx_destroy_pool(pool);
  125.         return NULL;
  126.     }

  127.     n = old_cycle->listening.nelts ? old_cycle->listening.nelts : 10;

  128.     cycle->listening.elts = ngx_pcalloc(pool, n * sizeof(ngx_listening_t));
  129.     if (cycle->listening.elts == NULL) {
  130.         ngx_destroy_pool(pool);
  131.         return NULL;
  132.     }

  133.     cycle->listening.nelts = 0;
  134.     cycle->listening.size = sizeof(ngx_listening_t);
  135.     cycle->listening.nalloc = n;
  136.     cycle->listening.pool = pool;


  137.     ngx_queue_init(&cycle->reusable_connections_queue);


  138.     cycle->conf_ctx = ngx_pcalloc(pool, ngx_max_module * sizeof(void *));
  139.     if (cycle->conf_ctx == NULL) {
  140.         ngx_destroy_pool(pool);
  141.         return NULL;
  142.     }


  143.     if (gethostname(hostname, NGX_MAXHOSTNAMELEN) == -1) {
  144.         ngx_log_error(NGX_LOG_EMERG, log, ngx_errno, "gethostname() failed");
  145.         ngx_destroy_pool(pool);
  146.         return NULL;
  147.     }

  148.     /* on Linux gethostname() silently truncates name that does not fit */

  149.     hostname[NGX_MAXHOSTNAMELEN - 1] = '\0';
  150.     cycle->hostname.len = ngx_strlen(hostname);

  151.     cycle->hostname.data = ngx_pnalloc(pool, cycle->hostname.len);
  152.     if (cycle->hostname.data == NULL) {
  153.         ngx_destroy_pool(pool);
  154.         return NULL;
  155.     }

  156.     ngx_strlow(cycle->hostname.data, (u_char *) hostname, cycle->hostname.len);


  157.     for (i = 0; ngx_modules[i]; i++) {
  158.         if (ngx_modules[i]->type != NGX_CORE_MODULE) {
  159.             continue;
  160.         }

  161.         module = ngx_modules[i]->ctx;

  162.         if (module->create_conf) {
  163.             rv = module->create_conf(cycle);
  164.             if (rv == NULL) {
  165.                 ngx_destroy_pool(pool);
  166.                 return NULL;
  167.             }
  168.             cycle->conf_ctx[ngx_modules[i]->index] = rv;
  169.         }
  170.     }


  171.     senv = environ;


  172.     ngx_memzero(&conf, sizeof(ngx_conf_t));
  173.     /* STUB: init array ? */
  174.     conf.args = ngx_array_create(pool, 10, sizeof(ngx_str_t));
  175.     if (conf.args == NULL) {
  176.         ngx_destroy_pool(pool);
  177.         return NULL;
  178.     }

  179.     conf.temp_pool = ngx_create_pool(NGX_CYCLE_POOL_SIZE, log);
  180.     if (conf.temp_pool == NULL) {
  181.         ngx_destroy_pool(pool);
  182.         return NULL;
  183.     }


  184.     conf.ctx = cycle->conf_ctx;
  185.     conf.cycle = cycle;
  186.     conf.pool = pool;
  187.     conf.log = log;
  188.     conf.module_type = NGX_CORE_MODULE;
  189.     conf.cmd_type = NGX_MAIN_CONF;

  190. #if 0
  191.     log->log_level = NGX_LOG_DEBUG_ALL;
  192. #endif

  193.     if (ngx_conf_param(&conf) != NGX_CONF_OK) {
  194.         environ = senv;
  195.         ngx_destroy_cycle_pools(&conf);
  196.         return NULL;
  197.     }

  198.     if (ngx_conf_parse(&conf, &cycle->conf_file) != NGX_CONF_OK) {
  199.         environ = senv;
  200.         ngx_destroy_cycle_pools(&conf);
  201.         return NULL;
  202.     }

  203.     if (ngx_test_config && !ngx_quiet_mode) {
  204.         ngx_log_stderr(0, "the configuration file %s syntax is ok",
  205.                        cycle->conf_file.data);
  206.     }

  207.     for (i = 0; ngx_modules[i]; i++) {
  208.         if (ngx_modules[i]->type != NGX_CORE_MODULE) {
  209.             continue;
  210.         }

  211.         module = ngx_modules[i]->ctx;

  212.         if (module->init_conf) {
  213.             if (module->init_conf(cycle, cycle->conf_ctx[ngx_modules[i]->index])
  214.                 == NGX_CONF_ERROR)
  215.             {
  216.                 environ = senv;
  217.                 ngx_destroy_cycle_pools(&conf);
  218.                 return NULL;
  219.             }
  220.         }
  221.     }

  222.     if (ngx_process == NGX_PROCESS_SIGNALLER) {
  223.         return cycle;
  224.     }

  225.     ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module);

  226.     if (ngx_test_config) {

  227.         if (ngx_create_pidfile(&ccf->pid, log) != NGX_OK) {
  228.             goto failed;
  229.         }

  230.     } else if (!ngx_is_init_cycle(old_cycle)) {

  231.         /*
  232.          * we do not create the pid file in the first ngx_init_cycle() call
  233.          * because we need to write the demonized process pid
  234.          */

  235.         old_ccf = (ngx_core_conf_t *) ngx_get_conf(old_cycle->conf_ctx,
  236.                                                    ngx_core_module);
  237.         if (ccf->pid.len != old_ccf->pid.len
  238.             || ngx_strcmp(ccf->pid.data, old_ccf->pid.data) != 0)
  239.         {
  240.             /* new pid file name */

  241.             if (ngx_create_pidfile(&ccf->pid, log) != NGX_OK) {
  242.                 goto failed;
  243.             }

  244.             ngx_delete_pidfile(old_cycle);
  245.         }
  246.     }


  247.     if (ngx_test_lockfile(cycle->lock_file.data, log) != NGX_OK) {
  248.         goto failed;
  249.     }


  250.     if (ngx_create_paths(cycle, ccf->user) != NGX_OK) {
  251.         goto failed;
  252.     }


  253.     if (ngx_log_open_default(cycle) != NGX_OK) {
  254.         goto failed;
  255.     }

  256.     /* open the new files */

  257.     part = &cycle->open_files.part;
  258.     file = part->elts;

  259.     for (i = 0; /* void */ ; i++) {

  260.         if (i >= part->nelts) {
  261.             if (part->next == NULL) {
  262.                 break;
  263.             }
  264.             part = part->next;
  265.             file = part->elts;
  266.             i = 0;
  267.         }

  268.         if (file[i].name.len == 0) {
  269.             continue;
  270.         }

  271.         file[i].fd = ngx_open_file(file[i].name.data,
  272.                                    NGX_FILE_APPEND,
  273.                                    NGX_FILE_CREATE_OR_OPEN,
  274.                                    NGX_FILE_DEFAULT_ACCESS);

  275.         ngx_log_debug3(NGX_LOG_DEBUG_CORE, log, 0,
  276.                        "log: %p %d \"%s\"",
  277.                        &file[i], file[i].fd, file[i].name.data);

  278.         if (file[i].fd == NGX_INVALID_FILE) {
  279.             ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
  280.                           ngx_open_file_n " \"%s\" failed",
  281.                           file[i].name.data);
  282.             goto failed;
  283.         }

  284. #if !(NGX_WIN32)
  285.         if (fcntl(file[i].fd, F_SETFD, FD_CLOEXEC) == -1) {
  286.             ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
  287.                           "fcntl(FD_CLOEXEC) \"%s\" failed",
  288.                           file[i].name.data);
  289.             goto failed;
  290.         }
  291. #endif
  292.     }

  293.     cycle->log = &cycle->new_log;
  294.     pool->log = &cycle->new_log;


  295.     /* create shared memory */

  296.     part = &cycle->shared_memory.part;
  297.     shm_zone = part->elts;

  298.     for (i = 0; /* void */ ; i++) {

  299.         if (i >= part->nelts) {
  300.             if (part->next == NULL) {
  301.                 break;
  302.             }
  303.             part = part->next;
  304.             shm_zone = part->elts;
  305.             i = 0;
  306.         }

  307.         if (shm_zone[i].shm.size == 0) {
  308.             ngx_log_error(NGX_LOG_EMERG, log, 0,
  309.                           "zero size shared memory zone \"%V\"",
  310.                           &shm_zone[i].shm.name);
  311.             goto failed;
  312.         }

  313.         shm_zone[i].shm.log = cycle->log;

  314.         opart = &old_cycle->shared_memory.part;
  315.         oshm_zone = opart->elts;

  316.         for (n = 0; /* void */ ; n++) {

  317.             if (n >= opart->nelts) {
  318.                 if (opart->next == NULL) {
  319.                     break;
  320.                 }
  321.                 opart = opart->next;
  322.                 oshm_zone = opart->elts;
  323.                 n = 0;
  324.             }

  325.             if (shm_zone[i].shm.name.len != oshm_zone[n].shm.name.len) {
  326.                 continue;
  327.             }

  328.             if (ngx_strncmp(shm_zone[i].shm.name.data,
  329.                             oshm_zone[n].shm.name.data,
  330.                             shm_zone[i].shm.name.len)
  331.                 != 0)
  332.             {
  333.                 continue;
  334.             }

  335.             if (shm_zone[i].tag == oshm_zone[n].tag
  336.                 && shm_zone[i].shm.size == oshm_zone[n].shm.size)
  337.             {
  338.                 shm_zone[i].shm.addr = oshm_zone[n].shm.addr;

  339.                 if (shm_zone[i].init(&shm_zone[i], oshm_zone[n].data)
  340.                     != NGX_OK)
  341.                 {
  342.                     goto failed;
  343.                 }

  344.                 goto shm_zone_found;
  345.             }

  346.             ngx_shm_free(&oshm_zone[n].shm);

  347.             break;
  348.         }

  349.         if (ngx_shm_alloc(&shm_zone[i].shm) != NGX_OK) {
  350.             goto failed;
  351.         }

  352.         if (ngx_init_zone_pool(cycle, &shm_zone[i]) != NGX_OK) {
  353.             goto failed;
  354.         }

  355.         if (shm_zone[i].init(&shm_zone[i], NULL) != NGX_OK) {
  356.             goto failed;
  357.         }

  358.     shm_zone_found:

  359.         continue;
  360.     }


  361.     /* handle the listening sockets */

  362.     if (old_cycle->listening.nelts) {
  363.         ls = old_cycle->listening.elts;
  364.         for (i = 0; i < old_cycle->listening.nelts; i++) {
  365.             ls[i].remain = 0;
  366.         }

  367.         nls = cycle->listening.elts;
  368.         for (n = 0; n < cycle->listening.nelts; n++) {

  369.             for (i = 0; i < old_cycle->listening.nelts; i++) {
  370.                 if (ls[i].ignore) {
  371.                     continue;
  372.                 }

  373.                 if (ngx_cmp_sockaddr(nls[n].sockaddr, nls[n].socklen,
  374.                                      ls[i].sockaddr, ls[i].socklen, 1)
  375.                     == NGX_OK)
  376.                 {
  377.                     nls[n].fd = ls[i].fd;
  378.                     nls[n].previous = &ls[i];
  379.                     ls[i].remain = 1;

  380.                     if (ls[i].backlog != nls[n].backlog) {
  381.                         nls[n].listen = 1;
  382.                     }

  383. #if (NGX_HAVE_DEFERRED_ACCEPT && defined SO_ACCEPTFILTER)

  384.                     /*
  385.                      * FreeBSD, except the most recent versions,
  386.                      * could not remove accept filter
  387.                      */
  388.                     nls[n].deferred_accept = ls[i].deferred_accept;

  389.                     if (ls[i].accept_filter && nls[n].accept_filter) {
  390.                         if (ngx_strcmp(ls[i].accept_filter,
  391.                                        nls[n].accept_filter)
  392.                             != 0)
  393.                         {
  394.                             nls[n].delete_deferred = 1;
  395.                             nls[n].add_deferred = 1;
  396.                         }

  397.                     } else if (ls[i].accept_filter) {
  398.                         nls[n].delete_deferred = 1;

  399.                     } else if (nls[n].accept_filter) {
  400.                         nls[n].add_deferred = 1;
  401.                     }
  402. #endif

  403. #if (NGX_HAVE_DEFERRED_ACCEPT && defined TCP_DEFER_ACCEPT)

  404.                     if (ls[i].deferred_accept && !nls[n].deferred_accept) {
  405.                         nls[n].delete_deferred = 1;

  406.                     } else if (ls[i].deferred_accept != nls[n].deferred_accept)
  407.                     {
  408.                         nls[n].add_deferred = 1;
  409.                     }
  410. #endif
  411.                     break;
  412.                 }
  413.             }

  414.             if (nls[n].fd == (ngx_socket_t) -1) {
  415.                 nls[n].open = 1;
  416. #if (NGX_HAVE_DEFERRED_ACCEPT && defined SO_ACCEPTFILTER)
  417.                 if (nls[n].accept_filter) {
  418.                     nls[n].add_deferred = 1;
  419.                 }
  420. #endif
  421. #if (NGX_HAVE_DEFERRED_ACCEPT && defined TCP_DEFER_ACCEPT)
  422.                 if (nls[n].deferred_accept) {
  423.                     nls[n].add_deferred = 1;
  424.                 }
  425. #endif
  426.             }
  427.         }

  428.     } else {
  429.         ls = cycle->listening.elts;
  430.         for (i = 0; i < cycle->listening.nelts; i++) {
  431.             ls[i].open = 1;
  432. #if (NGX_HAVE_DEFERRED_ACCEPT && defined SO_ACCEPTFILTER)
  433.             if (ls[i].accept_filter) {
  434.                 ls[i].add_deferred = 1;
  435.             }
  436. #endif
  437. #if (NGX_HAVE_DEFERRED_ACCEPT && defined TCP_DEFER_ACCEPT)
  438.             if (ls[i].deferred_accept) {
  439.                 ls[i].add_deferred = 1;
  440.             }
  441. #endif
  442.         }
  443.     }

  444.     if (ngx_open_listening_sockets(cycle) != NGX_OK) {
  445.         goto failed;
  446.     }

  447.     if (!ngx_test_config) {
  448.         ngx_configure_listening_sockets(cycle);
  449.     }


  450.     /* commit the new cycle configuration */

  451.     if (!ngx_use_stderr) {
  452.         (void) ngx_log_redirect_stderr(cycle);
  453.     }

  454.     pool->log = cycle->log;

  455.     for (i = 0; ngx_modules[i]; i++) {
  456.         if (ngx_modules[i]->init_module) {
  457.             if (ngx_modules[i]->init_module(cycle) != NGX_OK) {
  458.                 /* fatal */
  459.                 exit(1);
  460.             }
  461.         }
  462.     }


  463.     /* close and delete stuff that lefts from an old cycle */

  464.     /* free the unnecessary shared memory */

  465.     opart = &old_cycle->shared_memory.part;
  466.     oshm_zone = opart->elts;

  467.     for (i = 0; /* void */ ; i++) {

  468.         if (i >= opart->nelts) {
  469.             if (opart->next == NULL) {
  470.                 goto old_shm_zone_done;
  471.             }
  472.             opart = opart->next;
  473.             oshm_zone = opart->elts;
  474.             i = 0;
  475.         }

  476.         part = &cycle->shared_memory.part;
  477.         shm_zone = part->elts;

  478.         for (n = 0; /* void */ ; n++) {

  479.             if (n >= part->nelts) {
  480.                 if (part->next == NULL) {
  481.                     break;
  482.                 }
  483.                 part = part->next;
  484.                 shm_zone = part->elts;
  485.                 n = 0;
  486.             }

  487.             if (oshm_zone[i].shm.name.len == shm_zone[n].shm.name.len
  488.                 && ngx_strncmp(oshm_zone[i].shm.name.data,
  489.                                shm_zone[n].shm.name.data,
  490.                                oshm_zone[i].shm.name.len)
  491.                 == 0)
  492.             {
  493.                 goto live_shm_zone;
  494.             }
  495.         }

  496.         ngx_shm_free(&oshm_zone[i].shm);

  497.     live_shm_zone:

  498.         continue;
  499.     }

  500. old_shm_zone_done:


  501.     /* close the unnecessary listening sockets */

  502.     ls = old_cycle->listening.elts;
  503.     for (i = 0; i < old_cycle->listening.nelts; i++) {

  504.         if (ls[i].remain || ls[i].fd == (ngx_socket_t) -1) {
  505.             continue;
  506.         }

  507.         if (ngx_close_socket(ls[i].fd) == -1) {
  508.             ngx_log_error(NGX_LOG_EMERG, log, ngx_socket_errno,
  509.                           ngx_close_socket_n " listening socket on %V failed",
  510.                           &ls[i].addr_text);
  511.         }

  512. #if (NGX_HAVE_UNIX_DOMAIN)

  513.         if (ls[i].sockaddr->sa_family == AF_UNIX) {
  514.             u_char  *name;

  515.             name = ls[i].addr_text.data + sizeof("unix:") - 1;

  516.             ngx_log_error(NGX_LOG_WARN, cycle->log, 0,
  517.                           "deleting socket %s", name);

  518.             if (ngx_delete_file(name) == NGX_FILE_ERROR) {
  519.                 ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_socket_errno,
  520.                               ngx_delete_file_n " %s failed", name);
  521.             }
  522.         }

  523. #endif
  524.     }


  525.     /* close the unnecessary open files */

  526.     part = &old_cycle->open_files.part;
  527.     file = part->elts;

  528.     for (i = 0; /* void */ ; i++) {

  529.         if (i >= part->nelts) {
  530.             if (part->next == NULL) {
  531.                 break;
  532.             }
  533.             part = part->next;
  534.             file = part->elts;
  535.             i = 0;
  536.         }

  537.         if (file[i].fd == NGX_INVALID_FILE || file[i].fd == ngx_stderr) {
  538.             continue;
  539.         }

  540.         if (ngx_close_file(file[i].fd) == NGX_FILE_ERROR) {
  541.             ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
  542.                           ngx_close_file_n " \"%s\" failed",
  543.                           file[i].name.data);
  544.         }
  545.     }

  546.     ngx_destroy_pool(conf.temp_pool);

  547.     if (ngx_process == NGX_PROCESS_MASTER || ngx_is_init_cycle(old_cycle)) {

  548.         /*
  549.          * perl_destruct() frees environ, if it is not the same as it was at
  550.          * perl_construct() time, therefore we save the previous cycle
  551.          * environment before ngx_conf_parse() where it will be changed.
  552.          */

  553.         env = environ;
  554.         environ = senv;

  555.         ngx_destroy_pool(old_cycle->pool);
  556.         cycle->old_cycle = NULL;

  557.         environ = env;

  558.         return cycle;
  559.     }


  560.     if (ngx_temp_pool == NULL) {
  561.         ngx_temp_pool = ngx_create_pool(128, cycle->log);
  562.         if (ngx_temp_pool == NULL) {
  563.             ngx_log_error(NGX_LOG_EMERG, cycle->log, 0,
  564.                           "could not create ngx_temp_pool");
  565.             exit(1);
  566.         }

  567.         n = 10;
  568.         ngx_old_cycles.elts = ngx_pcalloc(ngx_temp_pool,
  569.                                           n * sizeof(ngx_cycle_t *));
  570.         if (ngx_old_cycles.elts == NULL) {
  571.             exit(1);
  572.         }
  573.         ngx_old_cycles.nelts = 0;
  574.         ngx_old_cycles.size = sizeof(ngx_cycle_t *);
  575.         ngx_old_cycles.nalloc = n;
  576.         ngx_old_cycles.pool = ngx_temp_pool;

  577.         ngx_cleaner_event.handler = ngx_clean_old_cycles;
  578.         ngx_cleaner_event.log = cycle->log;
  579.         ngx_cleaner_event.data = &dumb;
  580.         dumb.fd = (ngx_socket_t) -1;
  581.     }

  582.     ngx_temp_pool->log = cycle->log;

  583.     old = ngx_array_push(&ngx_old_cycles);
  584.     if (old == NULL) {
  585.         exit(1);
  586.     }
  587.     *old = old_cycle;

  588.     if (!ngx_cleaner_event.timer_set) {
  589.         ngx_add_timer(&ngx_cleaner_event, 30000);
  590.         ngx_cleaner_event.timer_set = 1;
  591.     }

  592.     return cycle;


  593. failed:

  594.     if (!ngx_is_init_cycle(old_cycle)) {
  595.         old_ccf = (ngx_core_conf_t *) ngx_get_conf(old_cycle->conf_ctx,
  596.                                                    ngx_core_module);
  597.         if (old_ccf->environment) {
  598.             environ = old_ccf->environment;
  599.         }
  600.     }

  601.     /* rollback the new cycle configuration */

  602.     part = &cycle->open_files.part;
  603.     file = part->elts;

  604.     for (i = 0; /* void */ ; i++) {

  605.         if (i >= part->nelts) {
  606.             if (part->next == NULL) {
  607.                 break;
  608.             }
  609.             part = part->next;
  610.             file = part->elts;
  611.             i = 0;
  612.         }

  613.         if (file[i].fd == NGX_INVALID_FILE || file[i].fd == ngx_stderr) {
  614.             continue;
  615.         }

  616.         if (ngx_close_file(file[i].fd) == NGX_FILE_ERROR) {
  617.             ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
  618.                           ngx_close_file_n " \"%s\" failed",
  619.                           file[i].name.data);
  620.         }
  621.     }

  622.     if (ngx_test_config) {
  623.         ngx_destroy_cycle_pools(&conf);
  624.         return NULL;
  625.     }

  626.     ls = cycle->listening.elts;
  627.     for (i = 0; i < cycle->listening.nelts; i++) {
  628.         if (ls[i].fd == (ngx_socket_t) -1 || !ls[i].open) {
  629.             continue;
  630.         }

  631.         if (ngx_close_socket(ls[i].fd) == -1) {
  632.             ngx_log_error(NGX_LOG_EMERG, log, ngx_socket_errno,
  633.                           ngx_close_socket_n " %V failed",
  634.                           &ls[i].addr_text);
  635.         }
  636.     }

  637.     ngx_destroy_cycle_pools(&conf);

  638.     return NULL;
  639. }


  640. static void
  641. ngx_destroy_cycle_pools(ngx_conf_t *conf)
  642. {
  643.     ngx_destroy_pool(conf->temp_pool);
  644.     ngx_destroy_pool(conf->pool);
  645. }


  646. static ngx_int_t
  647. ngx_init_zone_pool(ngx_cycle_t *cycle, ngx_shm_zone_t *zn)
  648. {
  649.     u_char           *file;
  650.     ngx_slab_pool_t  *sp;

  651.     sp = (ngx_slab_pool_t *) zn->shm.addr;

  652.     if (zn->shm.exists) {

  653.         if (sp == sp->addr) {
  654.             return NGX_OK;
  655.         }

  656.         ngx_log_error(NGX_LOG_EMERG, cycle->log, 0,
  657.                       "shared zone \"%V\" has no equal addresses: %p vs %p",
  658.                       &zn->shm.name, sp->addr, sp);
  659.         return NGX_ERROR;
  660.     }

  661.     sp->end = zn->shm.addr + zn->shm.size;
  662.     sp->min_shift = 3;
  663.     sp->addr = zn->shm.addr;

  664. #if (NGX_HAVE_ATOMIC_OPS)

  665.     file = NULL;

  666. #else

  667.     file = ngx_pnalloc(cycle->pool, cycle->lock_file.len + zn->shm.name.len);
  668.     if (file == NULL) {
  669.         return NGX_ERROR;
  670.     }

  671.     (void) ngx_sprintf(file, "%V%V%Z", &cycle->lock_file, &zn->shm.name);

  672. #endif

  673.     if (ngx_shmtx_create(&sp->mutex, &sp->lock, file) != NGX_OK) {
  674.         return NGX_ERROR;
  675.     }

  676.     ngx_slab_init(sp);

  677.     return NGX_OK;
  678. }


  679. ngx_int_t
  680. ngx_create_pidfile(ngx_str_t *name, ngx_log_t *log)
  681. {
  682.     size_t      len;
  683.     ngx_uint_t  create;
  684.     ngx_file_t  file;
  685.     u_char      pid[NGX_INT64_LEN + 2];

  686.     if (ngx_process > NGX_PROCESS_MASTER) {
  687.         return NGX_OK;
  688.     }

  689.     ngx_memzero(&file, sizeof(ngx_file_t));

  690.     file.name = *name;
  691.     file.log = log;

  692.     create = ngx_test_config ? NGX_FILE_CREATE_OR_OPEN : NGX_FILE_TRUNCATE;

  693.     file.fd = ngx_open_file(file.name.data, NGX_FILE_RDWR,
  694.                             create, NGX_FILE_DEFAULT_ACCESS);

  695.     if (file.fd == NGX_INVALID_FILE) {
  696.         ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
  697.                       ngx_open_file_n " \"%s\" failed", file.name.data);
  698.         return NGX_ERROR;
  699.     }

  700.     if (!ngx_test_config) {
  701.         len = ngx_snprintf(pid, NGX_INT64_LEN + 2, "%P%N", ngx_pid) - pid;

  702.         if (ngx_write_file(&file, pid, len, 0) == NGX_ERROR) {
  703.             return NGX_ERROR;
  704.         }
  705.     }

  706.     if (ngx_close_file(file.fd) == NGX_FILE_ERROR) {
  707.         ngx_log_error(NGX_LOG_ALERT, log, ngx_errno,
  708.                       ngx_close_file_n " \"%s\" failed", file.name.data);
  709.     }

  710.     return NGX_OK;
  711. }


  712. void
  713. ngx_delete_pidfile(ngx_cycle_t *cycle)
  714. {
  715.     u_char           *name;
  716.     ngx_core_conf_t  *ccf;

  717.     ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module);

  718.     name = ngx_new_binary ? ccf->oldpid.data : ccf->pid.data;

  719.     if (ngx_delete_file(name) == NGX_FILE_ERROR) {
  720.         ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
  721.                       ngx_delete_file_n " \"%s\" failed", name);
  722.     }
  723. }


  724. ngx_int_t
  725. ngx_signal_process(ngx_cycle_t *cycle, char *sig)
  726. {
  727.     ssize_t           n;
  728.     ngx_int_t         pid;
  729.     ngx_file_t        file;
  730.     ngx_core_conf_t  *ccf;
  731.     u_char            buf[NGX_INT64_LEN + 2];

  732.     ngx_log_error(NGX_LOG_NOTICE, cycle->log, 0, "signal process started");

  733.     ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module);

  734.     ngx_memzero(&file, sizeof(ngx_file_t));

  735.     file.name = ccf->pid;
  736.     file.log = cycle->log;

  737.     file.fd = ngx_open_file(file.name.data, NGX_FILE_RDONLY,
  738.                             NGX_FILE_OPEN, NGX_FILE_DEFAULT_ACCESS);

  739.     if (file.fd == NGX_INVALID_FILE) {
  740.         ngx_log_error(NGX_LOG_ERR, cycle->log, ngx_errno,
  741.                       ngx_open_file_n " \"%s\" failed", file.name.data);
  742.         return 1;
  743.     }

  744.     n = ngx_read_file(&file, buf, NGX_INT64_LEN + 2, 0);

  745.     if (ngx_close_file(file.fd) == NGX_FILE_ERROR) {
  746.         ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
  747.                       ngx_close_file_n " \"%s\" failed", file.name.data);
  748.     }

  749.     if (n == NGX_ERROR) {
  750.         return 1;
  751.     }

  752.     while (n-- && (buf[n] == CR || buf[n] == LF)) { /* void */ }

  753.     pid = ngx_atoi(buf, ++n);

  754.     if (pid == NGX_ERROR) {
  755.         ngx_log_error(NGX_LOG_ERR, cycle->log, 0,
  756.                       "invalid PID number \"%*s\" in \"%s\"",
  757.                       n, buf, file.name.data);
  758.         return 1;
  759.     }

  760.     return ngx_os_signal_process(cycle, sig, pid);

  761. }


  762. static ngx_int_t
  763. ngx_test_lockfile(u_char *file, ngx_log_t *log)
  764. {
  765. #if !(NGX_HAVE_ATOMIC_OPS)
  766.     ngx_fd_t  fd;

  767.     fd = ngx_open_file(file, NGX_FILE_RDWR, NGX_FILE_CREATE_OR_OPEN,
  768.                        NGX_FILE_DEFAULT_ACCESS);

  769.     if (fd == NGX_INVALID_FILE) {
  770.         ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
  771.                       ngx_open_file_n " \"%s\" failed", file);
  772.         return NGX_ERROR;
  773.     }

  774.     if (ngx_close_file(fd) == NGX_FILE_ERROR) {
  775.         ngx_log_error(NGX_LOG_ALERT, log, ngx_errno,
  776.                       ngx_close_file_n " \"%s\" failed", file);
  777.     }

  778.     if (ngx_delete_file(file) == NGX_FILE_ERROR) {
  779.         ngx_log_error(NGX_LOG_ALERT, log, ngx_errno,
  780.                       ngx_delete_file_n " \"%s\" failed", file);
  781.     }

  782. #endif

  783.     return NGX_OK;
  784. }


  785. void
  786. ngx_reopen_files(ngx_cycle_t *cycle, ngx_uid_t user)
  787. {
  788.     ngx_fd_t          fd;
  789.     ngx_uint_t        i;
  790.     ngx_list_part_t  *part;
  791.     ngx_open_file_t  *file;

  792.     part = &cycle->open_files.part;
  793.     file = part->elts;

  794.     for (i = 0; /* void */ ; i++) {

  795.         if (i >= part->nelts) {
  796.             if (part->next == NULL) {
  797.                 break;
  798.             }
  799.             part = part->next;
  800.             file = part->elts;
  801.             i = 0;
  802.         }

  803.         if (file[i].name.len == 0) {
  804.             continue;
  805.         }

  806.         if (file[i].flush) {
  807.             file[i].flush(&file[i], cycle->log);
  808.         }

  809.         fd = ngx_open_file(file[i].name.data, NGX_FILE_APPEND,
  810.                            NGX_FILE_CREATE_OR_OPEN, NGX_FILE_DEFAULT_ACCESS);

  811.         ngx_log_debug3(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
  812.                        "reopen file \"%s\", old:%d new:%d",
  813.                        file[i].name.data, file[i].fd, fd);

  814.         if (fd == NGX_INVALID_FILE) {
  815.             ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
  816.                           ngx_open_file_n " \"%s\" failed", file[i].name.data);
  817.             continue;
  818.         }

  819. #if !(NGX_WIN32)
  820.         if (user != (ngx_uid_t) NGX_CONF_UNSET_UINT) {
  821.             ngx_file_info_t  fi;

  822.             if (ngx_file_info((const char *) file[i].name.data, &fi)
  823.                 == NGX_FILE_ERROR)
  824.             {
  825.                 ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
  826.                               ngx_file_info_n " \"%s\" failed",
  827.                               file[i].name.data);

  828.                 if (ngx_close_file(fd) == NGX_FILE_ERROR) {
  829.                     ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
  830.                                   ngx_close_file_n " \"%s\" failed",
  831.                                   file[i].name.data);
  832.                 }

  833.                 continue;
  834.             }

  835.             if (fi.st_uid != user) {
  836.                 if (chown((const char *) file[i].name.data, user, -1) == -1) {
  837.                     ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
  838.                                   "chown(\"%s\", %d) failed",
  839.                                   file[i].name.data, user);

  840.                     if (ngx_close_file(fd) == NGX_FILE_ERROR) {
  841.                         ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
  842.                                       ngx_close_file_n " \"%s\" failed",
  843.                                       file[i].name.data);
  844.                     }

  845.                     continue;
  846.                 }
  847.             }

  848.             if ((fi.st_mode & (S_IRUSR|S_IWUSR)) != (S_IRUSR|S_IWUSR)) {

  849.                 fi.st_mode |= (S_IRUSR|S_IWUSR);

  850.                 if (chmod((const char *) file[i].name.data, fi.st_mode) == -1) {
  851.                     ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
  852.                                   "chmod() \"%s\" failed", file[i].name.data);

  853.                     if (ngx_close_file(fd) == NGX_FILE_ERROR) {
  854.                         ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
  855.                                       ngx_close_file_n " \"%s\" failed",
  856.                                       file[i].name.data);
  857.                     }

  858.                     continue;
  859.                 }
  860.             }
  861.         }

  862.         if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1) {
  863.             ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
  864.                           "fcntl(FD_CLOEXEC) \"%s\" failed",
  865.                           file[i].name.data);

  866.             if (ngx_close_file(fd) == NGX_FILE_ERROR) {
  867.                 ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
  868.                               ngx_close_file_n " \"%s\" failed",
  869.                               file[i].name.data);
  870.             }

  871.             continue;
  872.         }
  873. #endif

  874.         if (ngx_close_file(file[i].fd) == NGX_FILE_ERROR) {
  875.             ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
  876.                           ngx_close_file_n " \"%s\" failed",
  877.                           file[i].name.data);
  878.         }

  879.         file[i].fd = fd;
  880.     }

  881.     (void) ngx_log_redirect_stderr(cycle);
  882. }


  883. ngx_shm_zone_t *
  884. ngx_shared_memory_add(ngx_conf_t *cf, ngx_str_t *name, size_t size, void *tag)
  885. {
  886.     ngx_uint_t        i;
  887.     ngx_shm_zone_t   *shm_zone;
  888.     ngx_list_part_t  *part;

  889.     part = &cf->cycle->shared_memory.part;
  890.     shm_zone = part->elts;

  891.     for (i = 0; /* void */ ; i++) {

  892.         if (i >= part->nelts) {
  893.             if (part->next == NULL) {
  894.                 break;
  895.             }
  896.             part = part->next;
  897.             shm_zone = part->elts;
  898.             i = 0;
  899.         }

  900.         if (name->len != shm_zone[i].shm.name.len) {
  901.             continue;
  902.         }

  903.         if (ngx_strncmp(name->data, shm_zone[i].shm.name.data, name->len)
  904.             != 0)
  905.         {
  906.             continue;
  907.         }

  908.         if (tag != shm_zone[i].tag) {
  909.             ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  910.                             "the shared memory zone \"%V\" is "
  911.                             "already declared for a different use",
  912.                             &shm_zone[i].shm.name);
  913.             return NULL;
  914.         }

  915.         if (size && size != shm_zone[i].shm.size) {
  916.             ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  917.                             "the size %uz of shared memory zone \"%V\" "
  918.                             "conflicts with already declared size %uz",
  919.                             size, &shm_zone[i].shm.name, shm_zone[i].shm.size);
  920.             return NULL;
  921.         }

  922.         return &shm_zone[i];
  923.     }

  924.     shm_zone = ngx_list_push(&cf->cycle->shared_memory);

  925.     if (shm_zone == NULL) {
  926.         return NULL;
  927.     }

  928.     shm_zone->data = NULL;
  929.     shm_zone->shm.log = cf->cycle->log;
  930.     shm_zone->shm.size = size;
  931.     shm_zone->shm.name = *name;
  932.     shm_zone->shm.exists = 0;
  933.     shm_zone->init = NULL;
  934.     shm_zone->tag = tag;

  935.     return shm_zone;
  936. }


  937. static void
  938. ngx_clean_old_cycles(ngx_event_t *ev)
  939. {
  940.     ngx_uint_t     i, n, found, live;
  941.     ngx_log_t     *log;
  942.     ngx_cycle_t  **cycle;

  943.     log = ngx_cycle->log;
  944.     ngx_temp_pool->log = log;

  945.     ngx_log_debug0(NGX_LOG_DEBUG_CORE, log, 0, "clean old cycles");

  946.     live = 0;

  947.     cycle = ngx_old_cycles.elts;
  948.     for (i = 0; i < ngx_old_cycles.nelts; i++) {

  949.         if (cycle[i] == NULL) {
  950.             continue;
  951.         }

  952.         found = 0;

  953.         for (n = 0; n < cycle[i]->connection_n; n++) {
  954.             if (cycle[i]->connections[n].fd != (ngx_socket_t) -1) {
  955.                 found = 1;

  956.                 ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0, "live fd:%d", n);

  957.                 break;
  958.             }
  959.         }

  960.         if (found) {
  961.             live = 1;
  962.             continue;
  963.         }

  964.         ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0, "clean old cycle: %d", i);

  965.         ngx_destroy_pool(cycle[i]->pool);
  966.         cycle[i] = NULL;
  967.     }

  968.     ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0, "old cycles status: %d", live);

  969.     if (live) {
  970.         ngx_add_timer(ev, 30000);

  971.     } else {
  972.         ngx_destroy_pool(ngx_temp_pool);
  973.         ngx_temp_pool = NULL;
  974.         ngx_old_cycles.nelts = 0;
  975.     }
  976. }