2004-01-06 04:55:48 +08:00
|
|
|
|
2004-09-28 16:34:51 +08:00
|
|
|
/*
|
2004-09-30 00:00:49 +08:00
|
|
|
* Copyright (C) Igor Sysoev
|
2004-09-28 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
#include <ngx_event.h>
|
|
|
|
|
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
static ngx_int_t ngx_test_lockfile(u_char *file, ngx_log_t *log);
|
2006-02-02 02:22:15 +08:00
|
|
|
static void ngx_destroy_cycle_pools(ngx_conf_t *conf);
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
static ngx_int_t ngx_cmp_sockaddr(struct sockaddr *sa1, struct sockaddr *sa2);
|
2004-01-06 04:55:48 +08:00
|
|
|
static void ngx_clean_old_cycles(ngx_event_t *ev);
|
|
|
|
|
|
|
|
|
|
|
|
volatile ngx_cycle_t *ngx_cycle;
|
|
|
|
ngx_array_t ngx_old_cycles;
|
|
|
|
|
|
|
|
static ngx_pool_t *ngx_temp_pool;
|
|
|
|
static ngx_event_t ngx_cleaner_event;
|
|
|
|
|
2004-04-16 13:14:16 +08:00
|
|
|
ngx_uint_t ngx_test_config;
|
|
|
|
|
2004-07-07 23:01:00 +08:00
|
|
|
#if (NGX_THREADS)
|
|
|
|
ngx_tls_key_t ngx_core_tls_key;
|
|
|
|
#endif
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
/* STUB NAME */
|
|
|
|
static ngx_connection_t dumb;
|
|
|
|
/* STUB */
|
|
|
|
|
2004-09-30 00:00:49 +08:00
|
|
|
#ifdef NGX_ERROR_LOG_PATH
|
2004-09-06 03:54:02 +08:00
|
|
|
static ngx_str_t error_log = ngx_string(NGX_ERROR_LOG_PATH);
|
2004-09-30 00:00:49 +08:00
|
|
|
#else
|
|
|
|
static ngx_str_t error_log = ngx_null_string;
|
|
|
|
#endif
|
2004-09-06 03:54:02 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
ngx_cycle_t *
|
|
|
|
ngx_init_cycle(ngx_cycle_t *old_cycle)
|
2004-01-06 04:55:48 +08:00
|
|
|
{
|
2007-12-16 19:58:16 +08:00
|
|
|
void *rv;
|
|
|
|
char **senv, **env;
|
|
|
|
u_char *lock_file;
|
|
|
|
ngx_uint_t i, n;
|
|
|
|
ngx_log_t *log;
|
|
|
|
ngx_conf_t conf;
|
|
|
|
ngx_pool_t *pool;
|
|
|
|
ngx_cycle_t *cycle, **old;
|
|
|
|
ngx_shm_zone_t *shm_zone, *oshm_zone;
|
|
|
|
ngx_slab_pool_t *shpool;
|
|
|
|
ngx_list_part_t *part, *opart;
|
|
|
|
ngx_open_file_t *file;
|
|
|
|
ngx_listening_t *ls, *nls;
|
|
|
|
ngx_core_conf_t *ccf, *old_ccf;
|
|
|
|
ngx_core_module_t *module;
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
log = old_cycle->log;
|
|
|
|
|
2005-04-08 23:18:55 +08:00
|
|
|
pool = ngx_create_pool(NGX_CYCLE_POOL_SIZE, log);
|
2005-03-19 20:38:37 +08:00
|
|
|
if (pool == NULL) {
|
2004-01-06 04:55:48 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2004-04-15 23:34:36 +08:00
|
|
|
pool->log = log;
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
cycle = ngx_pcalloc(pool, sizeof(ngx_cycle_t));
|
|
|
|
if (cycle == NULL) {
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_destroy_pool(pool);
|
|
|
|
return NULL;
|
|
|
|
}
|
2005-03-19 20:38:37 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
cycle->pool = pool;
|
2004-04-15 04:34:05 +08:00
|
|
|
cycle->log = log;
|
2004-01-06 04:55:48 +08:00
|
|
|
cycle->old_cycle = old_cycle;
|
2004-05-19 04:28:54 +08:00
|
|
|
cycle->root.len = sizeof(NGX_PREFIX) - 1;
|
|
|
|
cycle->root.data = (u_char *) NGX_PREFIX;
|
2004-05-18 23:29:08 +08:00
|
|
|
|
|
|
|
|
2006-02-02 02:22:15 +08:00
|
|
|
cycle->conf_file.len = old_cycle->conf_file.len;
|
|
|
|
cycle->conf_file.data = ngx_palloc(pool, old_cycle->conf_file.len + 1);
|
|
|
|
if (cycle->conf_file.data == NULL) {
|
|
|
|
ngx_destroy_pool(pool);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
ngx_cpystrn(cycle->conf_file.data, old_cycle->conf_file.data,
|
|
|
|
old_cycle->conf_file.len + 1);
|
|
|
|
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
n = old_cycle->pathes.nelts ? old_cycle->pathes.nelts : 10;
|
2005-03-19 20:38:37 +08:00
|
|
|
|
|
|
|
cycle->pathes.elts = ngx_pcalloc(pool, n * sizeof(ngx_path_t *));
|
|
|
|
if (cycle->pathes.elts == NULL) {
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_destroy_pool(pool);
|
|
|
|
return NULL;
|
|
|
|
}
|
2005-03-19 20:38:37 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
cycle->pathes.nelts = 0;
|
|
|
|
cycle->pathes.size = sizeof(ngx_path_t *);
|
|
|
|
cycle->pathes.nalloc = n;
|
|
|
|
cycle->pathes.pool = pool;
|
|
|
|
|
|
|
|
|
2004-09-03 23:50:30 +08:00
|
|
|
if (old_cycle->open_files.part.nelts) {
|
|
|
|
n = old_cycle->open_files.part.nelts;
|
|
|
|
for (part = old_cycle->open_files.part.next; part; part = part->next) {
|
|
|
|
n += part->nelts;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
n = 20;
|
|
|
|
}
|
|
|
|
|
2004-09-07 02:45:00 +08:00
|
|
|
if (ngx_list_init(&cycle->open_files, pool, n, sizeof(ngx_open_file_t))
|
2006-02-02 02:22:15 +08:00
|
|
|
== NGX_ERROR)
|
2004-09-06 03:54:02 +08:00
|
|
|
{
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_destroy_pool(pool);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-20 16:51:45 +08:00
|
|
|
if (old_cycle->shared_memory.part.nelts) {
|
|
|
|
n = old_cycle->shared_memory.part.nelts;
|
|
|
|
for (part = old_cycle->shared_memory.part.next; part; part = part->next)
|
|
|
|
{
|
|
|
|
n += part->nelts;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
n = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_list_init(&cycle->shared_memory, pool, n, sizeof(ngx_shm_zone_t))
|
|
|
|
== NGX_ERROR)
|
|
|
|
{
|
|
|
|
ngx_destroy_pool(pool);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
cycle->new_log = ngx_log_create_errlog(cycle, NULL);
|
|
|
|
if (cycle->new_log == NULL) {
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_destroy_pool(pool);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-09-06 03:54:02 +08:00
|
|
|
cycle->new_log->file->name = error_log;
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
n = old_cycle->listening.nelts ? old_cycle->listening.nelts : 10;
|
2005-03-19 20:38:37 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
cycle->listening.elts = ngx_pcalloc(pool, n * sizeof(ngx_listening_t));
|
|
|
|
if (cycle->listening.elts == NULL) {
|
|
|
|
ngx_destroy_pool(pool);
|
|
|
|
return NULL;
|
|
|
|
}
|
2005-03-19 20:38:37 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
cycle->listening.nelts = 0;
|
|
|
|
cycle->listening.size = sizeof(ngx_listening_t);
|
|
|
|
cycle->listening.nalloc = n;
|
|
|
|
cycle->listening.pool = pool;
|
|
|
|
|
|
|
|
|
|
|
|
cycle->conf_ctx = ngx_pcalloc(pool, ngx_max_module * sizeof(void *));
|
|
|
|
if (cycle->conf_ctx == NULL) {
|
|
|
|
ngx_destroy_pool(pool);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-04-13 00:38:09 +08:00
|
|
|
for (i = 0; ngx_modules[i]; i++) {
|
|
|
|
if (ngx_modules[i]->type != NGX_CORE_MODULE) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
module = ngx_modules[i]->ctx;
|
|
|
|
|
|
|
|
if (module->create_conf) {
|
|
|
|
rv = module->create_conf(cycle);
|
|
|
|
if (rv == NGX_CONF_ERROR) {
|
|
|
|
ngx_destroy_pool(pool);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
cycle->conf_ctx[ngx_modules[i]->index] = rv;
|
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-16 19:58:16 +08:00
|
|
|
senv = environ;
|
|
|
|
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_memzero(&conf, sizeof(ngx_conf_t));
|
|
|
|
/* STUB: init array ? */
|
2005-03-19 20:38:37 +08:00
|
|
|
conf.args = ngx_array_create(pool, 10, sizeof(ngx_str_t));
|
2004-01-06 04:55:48 +08:00
|
|
|
if (conf.args == NULL) {
|
|
|
|
ngx_destroy_pool(pool);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-12-27 01:07:48 +08:00
|
|
|
conf.temp_pool = ngx_create_pool(NGX_CYCLE_POOL_SIZE, log);
|
|
|
|
if (conf.temp_pool == NULL) {
|
|
|
|
ngx_destroy_pool(pool);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-02-02 02:22:15 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
conf.ctx = cycle->conf_ctx;
|
|
|
|
conf.cycle = cycle;
|
2004-04-15 23:34:36 +08:00
|
|
|
conf.pool = pool;
|
2004-01-06 04:55:48 +08:00
|
|
|
conf.log = log;
|
|
|
|
conf.module_type = NGX_CORE_MODULE;
|
|
|
|
conf.cmd_type = NGX_MAIN_CONF;
|
|
|
|
|
2006-10-02 16:50:03 +08:00
|
|
|
#if 0
|
2004-10-21 23:34:38 +08:00
|
|
|
log->log_level = NGX_LOG_DEBUG_ALL;
|
|
|
|
#endif
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2004-02-10 04:47:18 +08:00
|
|
|
if (ngx_conf_parse(&conf, &cycle->conf_file) != NGX_CONF_OK) {
|
2006-02-02 02:22:15 +08:00
|
|
|
ngx_destroy_cycle_pools(&conf);
|
2004-01-06 04:55:48 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-04-19 03:06:02 +08:00
|
|
|
if (ngx_test_config) {
|
|
|
|
ngx_log_error(NGX_LOG_INFO, log, 0,
|
|
|
|
"the configuration file %s syntax is ok",
|
|
|
|
cycle->conf_file.data);
|
|
|
|
}
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2004-04-13 00:38:09 +08:00
|
|
|
for (i = 0; ngx_modules[i]; i++) {
|
|
|
|
if (ngx_modules[i]->type != NGX_CORE_MODULE) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
module = ngx_modules[i]->ctx;
|
|
|
|
|
|
|
|
if (module->init_conf) {
|
|
|
|
if (module->init_conf(cycle, cycle->conf_ctx[ngx_modules[i]->index])
|
2005-12-27 01:07:48 +08:00
|
|
|
== NGX_CONF_ERROR)
|
2004-04-13 00:38:09 +08:00
|
|
|
{
|
2006-02-02 02:22:15 +08:00
|
|
|
ngx_destroy_cycle_pools(&conf);
|
2004-04-13 00:38:09 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module);
|
2004-04-12 14:10:53 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
#if !(NGX_WIN32)
|
2004-04-12 14:10:53 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
if (ngx_test_config) {
|
|
|
|
|
|
|
|
if (ngx_create_pidfile(&ccf->pid, log) != NGX_OK) {
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (!ngx_is_init_cycle(old_cycle)) {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* we do not create the pid file in the first ngx_init_cycle() call
|
|
|
|
* because we need to write the demonized process pid
|
|
|
|
*/
|
|
|
|
|
|
|
|
old_ccf = (ngx_core_conf_t *) ngx_get_conf(old_cycle->conf_ctx,
|
|
|
|
ngx_core_module);
|
|
|
|
if (ccf->pid.len != old_ccf->pid.len
|
|
|
|
|| ngx_strcmp(ccf->pid.data, old_ccf->pid.data) != 0)
|
|
|
|
{
|
|
|
|
/* new pid file name */
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
if (ngx_create_pidfile(&ccf->pid, log) != NGX_OK) {
|
|
|
|
goto failed;
|
|
|
|
}
|
2004-11-21 03:52:20 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
ngx_delete_pidfile(old_cycle);
|
2004-11-21 03:52:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
#endif
|
2004-11-21 03:52:20 +08:00
|
|
|
|
2004-09-03 23:50:30 +08:00
|
|
|
|
2006-11-20 16:51:45 +08:00
|
|
|
if (ngx_test_lockfile(cycle->lock_file.data, log) != NGX_OK) {
|
2006-02-08 23:33:12 +08:00
|
|
|
goto failed;
|
|
|
|
}
|
2004-11-11 22:07:14 +08:00
|
|
|
|
2004-09-03 23:50:30 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
if (ngx_create_pathes(cycle, ccf->user) != NGX_OK) {
|
|
|
|
goto failed;
|
|
|
|
}
|
2004-09-03 23:50:30 +08:00
|
|
|
|
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
/* open the new files */
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
part = &cycle->open_files.part;
|
|
|
|
file = part->elts;
|
2004-04-13 00:38:09 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
for (i = 0; /* void */ ; i++) {
|
2004-09-03 23:50:30 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
if (i >= part->nelts) {
|
|
|
|
if (part->next == NULL) {
|
2004-04-13 00:38:09 +08:00
|
|
|
break;
|
|
|
|
}
|
2006-02-08 23:33:12 +08:00
|
|
|
part = part->next;
|
|
|
|
file = part->elts;
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file[i].name.data == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
file[i].fd = ngx_open_file(file[i].name.data, NGX_FILE_RDWR,
|
2007-01-19 04:15:09 +08:00
|
|
|
NGX_FILE_CREATE_OR_OPEN|NGX_FILE_APPEND,
|
|
|
|
NGX_FILE_DEFAULT_ACCESS);
|
2006-02-08 23:33:12 +08:00
|
|
|
|
|
|
|
ngx_log_debug3(NGX_LOG_DEBUG_CORE, log, 0,
|
|
|
|
"log: %p %d \"%s\"",
|
|
|
|
&file[i], file[i].fd, file[i].name.data);
|
|
|
|
|
|
|
|
if (file[i].fd == NGX_INVALID_FILE) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
|
|
|
|
ngx_open_file_n " \"%s\" failed",
|
|
|
|
file[i].name.data);
|
|
|
|
goto failed;
|
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
#if (NGX_WIN32)
|
2006-02-08 23:33:12 +08:00
|
|
|
if (ngx_file_append_mode(file[i].fd) != NGX_OK) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
|
|
|
|
ngx_file_append_mode_n " \"%s\" failed",
|
|
|
|
file[i].name.data);
|
|
|
|
goto failed;
|
|
|
|
}
|
2004-01-15 02:19:42 +08:00
|
|
|
#else
|
2006-02-08 23:33:12 +08:00
|
|
|
if (fcntl(file[i].fd, F_SETFD, FD_CLOEXEC) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
|
|
|
|
"fcntl(FD_CLOEXEC) \"%s\" failed",
|
|
|
|
file[i].name.data);
|
|
|
|
goto failed;
|
2004-04-13 00:38:09 +08:00
|
|
|
}
|
2006-02-08 23:33:12 +08:00
|
|
|
#endif
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
|
2004-04-15 23:34:36 +08:00
|
|
|
cycle->log = cycle->new_log;
|
|
|
|
pool->log = cycle->new_log;
|
2004-04-13 00:38:09 +08:00
|
|
|
|
2004-09-06 03:54:02 +08:00
|
|
|
if (cycle->log->log_level == 0) {
|
|
|
|
cycle->log->log_level = NGX_LOG_ERR;
|
|
|
|
}
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
|
2006-11-20 16:51:45 +08:00
|
|
|
/* create shared memory */
|
|
|
|
|
|
|
|
part = &cycle->shared_memory.part;
|
2007-01-03 07:54:14 +08:00
|
|
|
shm_zone = part->elts;
|
2006-11-20 16:51:45 +08:00
|
|
|
|
|
|
|
for (i = 0; /* void */ ; i++) {
|
|
|
|
|
|
|
|
if (i >= part->nelts) {
|
|
|
|
if (part->next == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
part = part->next;
|
2007-01-03 07:54:14 +08:00
|
|
|
shm_zone = part->elts;
|
2006-11-20 16:51:45 +08:00
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
2007-01-07 02:52:06 +08:00
|
|
|
if (shm_zone[i].shm.size == 0) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, 0,
|
|
|
|
"zero size shared memory zone \"%V\"",
|
|
|
|
&shm_zone[i].name);
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
2007-01-16 01:48:31 +08:00
|
|
|
if (shm_zone[i].init == NULL) {
|
|
|
|
/* unused shared zone */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-01-03 07:54:14 +08:00
|
|
|
shm_zone[i].shm.log = cycle->log;
|
2006-11-20 16:51:45 +08:00
|
|
|
|
|
|
|
opart = &old_cycle->shared_memory.part;
|
2007-01-03 07:54:14 +08:00
|
|
|
oshm_zone = opart->elts;
|
2006-11-20 16:51:45 +08:00
|
|
|
|
|
|
|
for (n = 0; /* void */ ; n++) {
|
|
|
|
|
|
|
|
if (n >= opart->nelts) {
|
|
|
|
if (opart->next == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
opart = opart->next;
|
2007-01-03 07:54:14 +08:00
|
|
|
oshm_zone = opart->elts;
|
2006-11-20 16:51:45 +08:00
|
|
|
n = 0;
|
|
|
|
}
|
|
|
|
|
2007-01-03 07:54:14 +08:00
|
|
|
if (shm_zone[i].name.len != oshm_zone[n].name.len) {
|
2006-11-20 16:51:45 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-01-03 07:54:14 +08:00
|
|
|
if (ngx_strncmp(shm_zone[i].name.data, oshm_zone[n].name.data,
|
|
|
|
shm_zone[i].name.len)
|
|
|
|
!= 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shm_zone[i].shm.size == oshm_zone[n].shm.size) {
|
|
|
|
shm_zone[i].shm.addr = oshm_zone[n].shm.addr;
|
2007-01-09 23:59:20 +08:00
|
|
|
|
|
|
|
if (shm_zone[i].init(&shm_zone[i], oshm_zone[n].data)
|
|
|
|
!= NGX_OK)
|
|
|
|
{
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
2007-01-10 00:02:29 +08:00
|
|
|
goto shm_zone_found;
|
2006-11-20 16:51:45 +08:00
|
|
|
}
|
|
|
|
|
2007-01-03 07:54:14 +08:00
|
|
|
ngx_shm_free(&oshm_zone[n].shm);
|
2006-11-20 16:51:45 +08:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-01-03 07:54:14 +08:00
|
|
|
if (ngx_shm_alloc(&shm_zone[i].shm) != NGX_OK) {
|
2006-11-20 16:51:45 +08:00
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
2007-01-03 07:54:14 +08:00
|
|
|
shpool = (ngx_slab_pool_t *) shm_zone[i].shm.addr;
|
2006-11-20 16:51:45 +08:00
|
|
|
|
2007-01-03 07:54:14 +08:00
|
|
|
shpool->end = shm_zone[i].shm.addr + shm_zone[i].shm.size;
|
2006-11-20 16:51:45 +08:00
|
|
|
shpool->min_shift = 3;
|
|
|
|
|
|
|
|
#if (NGX_HAVE_ATOMIC_OPS)
|
|
|
|
|
|
|
|
lock_file = NULL;
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
lock_file = ngx_palloc(cycle->pool,
|
2007-01-03 07:54:14 +08:00
|
|
|
cycle->lock_file.len + shm_zone[i].name.len);
|
2006-11-20 16:51:45 +08:00
|
|
|
|
|
|
|
if (lock_file == NULL) {
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) ngx_cpystrn(ngx_cpymem(lock_file, cycle->lock_file.data,
|
|
|
|
cycle->lock_file.len),
|
2007-01-03 07:54:14 +08:00
|
|
|
shm_zone[i].name.data, shm_zone[i].name.len + 1);
|
2006-11-20 16:51:45 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (ngx_shmtx_create(&shpool->mutex, (void *) &shpool->lock, lock_file)
|
|
|
|
!= NGX_OK)
|
|
|
|
{
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_slab_init(shpool);
|
|
|
|
|
2007-01-09 23:59:20 +08:00
|
|
|
if (shm_zone[i].init(&shm_zone[i], NULL) != NGX_OK) {
|
2007-01-03 07:54:14 +08:00
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
2007-01-10 00:02:29 +08:00
|
|
|
shm_zone_found:
|
2006-11-20 16:51:45 +08:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
/* handle the listening sockets */
|
2004-11-11 22:07:14 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
if (old_cycle->listening.nelts) {
|
|
|
|
ls = old_cycle->listening.elts;
|
|
|
|
for (i = 0; i < old_cycle->listening.nelts; i++) {
|
|
|
|
ls[i].remain = 0;
|
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
nls = cycle->listening.elts;
|
|
|
|
for (n = 0; n < cycle->listening.nelts; n++) {
|
2004-11-11 22:07:14 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
for (i = 0; i < old_cycle->listening.nelts; i++) {
|
|
|
|
if (ls[i].ignore) {
|
|
|
|
continue;
|
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
if (ngx_cmp_sockaddr(nls[n].sockaddr, ls[i].sockaddr) == NGX_OK)
|
|
|
|
{
|
|
|
|
nls[n].fd = ls[i].fd;
|
|
|
|
nls[n].previous = &ls[i];
|
|
|
|
ls[i].remain = 1;
|
2005-06-16 02:33:41 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
if (ls[n].backlog != nls[i].backlog) {
|
|
|
|
nls[n].listen = 1;
|
|
|
|
}
|
2005-08-30 18:55:07 +08:00
|
|
|
|
2005-06-16 02:33:41 +08:00
|
|
|
#if (NGX_HAVE_DEFERRED_ACCEPT && defined SO_ACCEPTFILTER)
|
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
/*
|
|
|
|
* FreeBSD, except the most recent versions,
|
|
|
|
* could not remove accept filter
|
|
|
|
*/
|
|
|
|
nls[n].deferred_accept = ls[i].deferred_accept;
|
2005-06-16 02:33:41 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
if (ls[i].accept_filter && nls[n].accept_filter) {
|
|
|
|
if (ngx_strcmp(ls[i].accept_filter,
|
|
|
|
nls[n].accept_filter)
|
|
|
|
!= 0)
|
2005-06-16 02:33:41 +08:00
|
|
|
{
|
2006-02-08 23:33:12 +08:00
|
|
|
nls[n].delete_deferred = 1;
|
2005-06-16 02:33:41 +08:00
|
|
|
nls[n].add_deferred = 1;
|
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
} else if (ls[i].accept_filter) {
|
|
|
|
nls[n].delete_deferred = 1;
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
} else if (nls[n].accept_filter) {
|
|
|
|
nls[n].add_deferred = 1;
|
|
|
|
}
|
2005-06-16 02:33:41 +08:00
|
|
|
#endif
|
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
#if (NGX_HAVE_DEFERRED_ACCEPT && defined TCP_DEFER_ACCEPT)
|
2004-09-03 23:50:30 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
if (ls[n].deferred_accept && !nls[n].deferred_accept) {
|
|
|
|
nls[n].delete_deferred = 1;
|
2004-09-03 23:50:30 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
} else if (ls[i].deferred_accept != nls[n].deferred_accept)
|
|
|
|
{
|
|
|
|
nls[n].add_deferred = 1;
|
|
|
|
}
|
|
|
|
#endif
|
2004-09-03 23:50:30 +08:00
|
|
|
break;
|
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
if (nls[n].fd == -1) {
|
|
|
|
nls[n].open = 1;
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
} else {
|
2004-01-06 04:55:48 +08:00
|
|
|
ls = cycle->listening.elts;
|
|
|
|
for (i = 0; i < cycle->listening.nelts; i++) {
|
2006-02-08 23:33:12 +08:00
|
|
|
ls[i].open = 1;
|
|
|
|
#if (NGX_HAVE_DEFERRED_ACCEPT && defined SO_ACCEPTFILTER)
|
|
|
|
if (ls[i].accept_filter) {
|
|
|
|
ls[i].add_deferred = 1;
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
2006-02-08 23:33:12 +08:00
|
|
|
#endif
|
|
|
|
#if (NGX_HAVE_DEFERRED_ACCEPT && defined TCP_DEFER_ACCEPT)
|
|
|
|
if (ls[i].deferred_accept) {
|
|
|
|
ls[i].add_deferred = 1;
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
2006-02-08 23:33:12 +08:00
|
|
|
#endif
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
2006-02-08 23:33:12 +08:00
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
if (ngx_open_listening_sockets(cycle) != NGX_OK) {
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ngx_test_config) {
|
|
|
|
ngx_configure_listening_socket(cycle);
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
|
2004-02-04 00:43:54 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
/* commit the new cycle configuration */
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
#if !(NGX_WIN32)
|
2004-10-04 04:02:06 +08:00
|
|
|
|
|
|
|
if (!ngx_test_config && cycle->log->file->fd != STDERR_FILENO) {
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2004-10-04 04:02:06 +08:00
|
|
|
ngx_log_debug3(NGX_LOG_DEBUG_CORE, log, 0,
|
2004-11-11 22:07:14 +08:00
|
|
|
"dup2: %p %d \"%s\"",
|
2004-10-04 04:02:06 +08:00
|
|
|
cycle->log->file,
|
|
|
|
cycle->log->file->fd, cycle->log->file->name.data);
|
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
if (dup2(cycle->log->file->fd, STDERR_FILENO) == -1) {
|
2004-10-04 04:02:06 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
|
|
|
|
"dup2(STDERR) failed");
|
|
|
|
/* fatal */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
pool->log = cycle->log;
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
for (i = 0; ngx_modules[i]; i++) {
|
|
|
|
if (ngx_modules[i]->init_module) {
|
2006-02-08 23:33:12 +08:00
|
|
|
if (ngx_modules[i]->init_module(cycle) != NGX_OK) {
|
2004-01-06 04:55:48 +08:00
|
|
|
/* fatal */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
/* close and delete stuff that lefts from an old cycle */
|
|
|
|
|
2007-01-10 00:00:57 +08:00
|
|
|
/* free the unnecessary shared memory */
|
|
|
|
|
|
|
|
opart = &old_cycle->shared_memory.part;
|
|
|
|
oshm_zone = opart->elts;
|
|
|
|
|
|
|
|
for (i = 0; /* void */ ; i++) {
|
|
|
|
|
|
|
|
if (i >= opart->nelts) {
|
|
|
|
if (opart->next == NULL) {
|
|
|
|
goto old_shm_zone_done;
|
|
|
|
}
|
|
|
|
opart = opart->next;
|
|
|
|
oshm_zone = opart->elts;
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
part = &cycle->shared_memory.part;
|
|
|
|
shm_zone = part->elts;
|
|
|
|
|
|
|
|
for (n = 0; /* void */ ; n++) {
|
|
|
|
|
|
|
|
if (n >= part->nelts) {
|
|
|
|
if (part->next == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
part = part->next;
|
|
|
|
shm_zone = part->elts;
|
|
|
|
n = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (oshm_zone[i].name.len == shm_zone[n].name.len
|
|
|
|
&& ngx_strncmp(oshm_zone[i].name.data,
|
|
|
|
shm_zone[n].name.data,
|
|
|
|
oshm_zone[i].name.len)
|
|
|
|
== 0)
|
|
|
|
{
|
|
|
|
goto live_shm_zone;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_shm_free(&oshm_zone[i].shm);
|
|
|
|
|
|
|
|
live_shm_zone:
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
old_shm_zone_done:
|
|
|
|
|
|
|
|
|
2007-01-10 00:00:07 +08:00
|
|
|
/* close the unnecessary listening sockets */
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
ls = old_cycle->listening.elts;
|
|
|
|
for (i = 0; i < old_cycle->listening.nelts; i++) {
|
|
|
|
if (ls[i].remain) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_close_socket(ls[i].fd) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_socket_errno,
|
2005-09-23 19:02:22 +08:00
|
|
|
ngx_close_socket_n " listening socket on %V failed",
|
2004-11-11 22:07:14 +08:00
|
|
|
&ls[i].addr_text);
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-10 00:00:07 +08:00
|
|
|
/* close the unnecessary open files */
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2004-09-03 23:50:30 +08:00
|
|
|
part = &old_cycle->open_files.part;
|
|
|
|
file = part->elts;
|
|
|
|
|
|
|
|
for (i = 0; /* void */ ; i++) {
|
|
|
|
|
|
|
|
if (i >= part->nelts) {
|
|
|
|
if (part->next == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
part = part->next;
|
|
|
|
file = part->elts;
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
2004-10-04 04:02:06 +08:00
|
|
|
if (file[i].fd == NGX_INVALID_FILE || file[i].fd == ngx_stderr_fileno) {
|
2004-01-06 04:55:48 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_close_file(file[i].fd) == NGX_FILE_ERROR) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
|
|
|
|
ngx_close_file_n " \"%s\" failed",
|
|
|
|
file[i].name.data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-27 01:07:48 +08:00
|
|
|
ngx_destroy_pool(conf.temp_pool);
|
|
|
|
|
2006-02-02 02:22:15 +08:00
|
|
|
if (ngx_process == NGX_PROCESS_MASTER || ngx_is_init_cycle(old_cycle)) {
|
|
|
|
|
2007-12-16 19:58:16 +08:00
|
|
|
/*
|
|
|
|
* perl_destruct() frees environ if it is not the same as it was at
|
|
|
|
* perl_construct() time. So we have saved an previous cycle
|
|
|
|
* environment before ngx_conf_parse() where it will be changed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
env = environ;
|
|
|
|
environ = senv;
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_destroy_pool(old_cycle->pool);
|
2006-02-08 23:33:12 +08:00
|
|
|
cycle->old_cycle = NULL;
|
|
|
|
|
2007-12-16 19:58:16 +08:00
|
|
|
environ = env;
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
return cycle;
|
|
|
|
}
|
|
|
|
|
2006-02-02 02:22:15 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
if (ngx_temp_pool == NULL) {
|
|
|
|
ngx_temp_pool = ngx_create_pool(128, cycle->log);
|
|
|
|
if (ngx_temp_pool == NULL) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, 0,
|
|
|
|
"can not create ngx_temp_pool");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
n = 10;
|
|
|
|
ngx_old_cycles.elts = ngx_pcalloc(ngx_temp_pool,
|
|
|
|
n * sizeof(ngx_cycle_t *));
|
|
|
|
if (ngx_old_cycles.elts == NULL) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
ngx_old_cycles.nelts = 0;
|
|
|
|
ngx_old_cycles.size = sizeof(ngx_cycle_t *);
|
|
|
|
ngx_old_cycles.nalloc = n;
|
|
|
|
ngx_old_cycles.pool = ngx_temp_pool;
|
|
|
|
|
nginx-0.1.29-RELEASE import
*) Feature: the ngx_http_ssi_module supports "include virtual" command.
*) Feature: the ngx_http_ssi_module supports the condition command like
'if expr="$NAME"' and "else" and "endif" commands. Only one nested
level is supported.
*) Feature: the ngx_http_ssi_module supports the DATE_LOCAL and
DATE_GMT variables and "config timefmt" command.
*) Feature: the "ssi_ignore_recycled_buffers" directive.
*) Bugfix: the "echo" command did not show the default value for the
empty QUERY_STRING variable.
*) Change: the ngx_http_proxy_module was rewritten.
*) Feature: the "proxy_redirect", "proxy_pass_request_headers",
"proxy_pass_request_body", and "proxy_method" directives.
*) Feature: the "proxy_set_header" directive. The "proxy_x_var" was
canceled and must be replaced with the proxy_set_header directive.
*) Change: the "proxy_preserve_host" is canceled and must be replaced
with the "proxy_set_header Host $host" and the "proxy_redirect off"
directives, the "proxy_set_header Host $host:$proxy_port" directive
and the appropriate proxy_redirect directives.
*) Change: the "proxy_set_x_real_ip" is canceled and must be replaced
with the "proxy_set_header X-Real-IP $remote_addr" directive.
*) Change: the "proxy_add_x_forwarded_for" is canceled and must be
replaced with
the "proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for"
directive.
*) Change: the "proxy_set_x_url" is canceled and must be replaced with
the "proxy_set_header X-URL http://$host:$server_port$request_uri"
directive.
*) Feature: the "fastcgi_param" directive.
*) Change: the "fastcgi_root", "fastcgi_set_var" and "fastcgi_params"
directive are canceled and must be replaced with the fastcgi_param
directives.
*) Feature: the "index" directive can use the variables.
*) Feature: the "index" directive can be used at http and server levels.
*) Change: the last index only in the "index" directive can be absolute.
*) Feature: the "rewrite" directive can use the variables.
*) Feature: the "internal" directive.
*) Feature: the CONTENT_LENGTH, CONTENT_TYPE, REMOTE_PORT, SERVER_ADDR,
SERVER_PORT, SERVER_PROTOCOL, DOCUMENT_ROOT, SERVER_NAME,
REQUEST_METHOD, REQUEST_URI, and REMOTE_USER variables.
*) Change: nginx now passes the invalid lines in a client request
headers or a backend response header.
*) Bugfix: if the backend did not transfer response for a long time and
the "send_timeout" was less than "proxy_read_timeout", then nginx
returned the 408 response.
*) Bugfix: the segmentation fault was occurred if the backend sent an
invalid line in response header; the bug had appeared in 0.1.26.
*) Bugfix: the segmentation fault may occurred in FastCGI fault
tolerance configuration.
*) Bugfix: the "expires" directive did not remove the previous
"Expires" and "Cache-Control" headers.
*) Bugfix: nginx did not take into account trailing dot in "Host"
header line.
*) Bugfix: the ngx_http_auth_module did not work under Linux.
*) Bugfix: the rewrite directive worked incorrectly, if the arguments
were in a request.
*) Bugfix: nginx could not be built on MacOS X.
2005-05-12 22:58:06 +08:00
|
|
|
ngx_cleaner_event.handler = ngx_clean_old_cycles;
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_cleaner_event.log = cycle->log;
|
|
|
|
ngx_cleaner_event.data = &dumb;
|
|
|
|
dumb.fd = (ngx_socket_t) -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_temp_pool->log = cycle->log;
|
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
old = ngx_array_push(&ngx_old_cycles);
|
2004-01-06 04:55:48 +08:00
|
|
|
if (old == NULL) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
*old = old_cycle;
|
|
|
|
|
|
|
|
if (!ngx_cleaner_event.timer_set) {
|
|
|
|
ngx_add_timer(&ngx_cleaner_event, 30000);
|
|
|
|
ngx_cleaner_event.timer_set = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cycle;
|
2006-02-08 23:33:12 +08:00
|
|
|
|
|
|
|
|
|
|
|
failed:
|
|
|
|
|
2007-04-18 19:28:11 +08:00
|
|
|
if (!ngx_is_init_cycle(old_cycle)) {
|
|
|
|
old_ccf = (ngx_core_conf_t *) ngx_get_conf(old_cycle->conf_ctx,
|
|
|
|
ngx_core_module);
|
|
|
|
if (old_ccf->environment) {
|
|
|
|
environ = old_ccf->environment;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
/* rollback the new cycle configuration */
|
|
|
|
|
|
|
|
part = &cycle->open_files.part;
|
|
|
|
file = part->elts;
|
|
|
|
|
|
|
|
for (i = 0; /* void */ ; i++) {
|
|
|
|
|
|
|
|
if (i >= part->nelts) {
|
|
|
|
if (part->next == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
part = part->next;
|
|
|
|
file = part->elts;
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file[i].fd == NGX_INVALID_FILE || file[i].fd == ngx_stderr_fileno) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_close_file(file[i].fd) == NGX_FILE_ERROR) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
|
|
|
|
ngx_close_file_n " \"%s\" failed",
|
|
|
|
file[i].name.data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_test_config) {
|
|
|
|
ngx_destroy_cycle_pools(&conf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ls = cycle->listening.elts;
|
|
|
|
for (i = 0; i < cycle->listening.nelts; i++) {
|
|
|
|
if (ls[i].fd == -1 || !ls[i].open) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_close_socket(ls[i].fd) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_socket_errno,
|
|
|
|
ngx_close_socket_n " %V failed",
|
|
|
|
&ls[i].addr_text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_destroy_cycle_pools(&conf);
|
|
|
|
|
|
|
|
return NULL;
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-02 02:22:15 +08:00
|
|
|
static void
|
|
|
|
ngx_destroy_cycle_pools(ngx_conf_t *conf)
|
|
|
|
{
|
|
|
|
ngx_destroy_pool(conf->temp_pool);
|
|
|
|
ngx_destroy_pool(conf->pool);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
static ngx_int_t
|
|
|
|
ngx_cmp_sockaddr(struct sockaddr *sa1, struct sockaddr *sa2)
|
2004-11-11 22:07:14 +08:00
|
|
|
{
|
|
|
|
struct sockaddr_in *sin1, *sin2;
|
|
|
|
|
|
|
|
/* AF_INET only */
|
|
|
|
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
if (sa1->sa_family != AF_INET || sa2->sa_family != AF_INET) {
|
2004-11-11 22:07:14 +08:00
|
|
|
return NGX_DECLINED;
|
|
|
|
}
|
|
|
|
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
sin1 = (struct sockaddr_in *) sa1;
|
|
|
|
sin2 = (struct sockaddr_in *) sa2;
|
2004-11-11 22:07:14 +08:00
|
|
|
|
|
|
|
if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr) {
|
|
|
|
return NGX_DECLINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sin1->sin_port != sin2->sin_port) {
|
|
|
|
return NGX_DECLINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if !(NGX_WIN32)
|
2004-04-13 00:38:09 +08:00
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
ngx_int_t
|
2006-02-08 23:33:12 +08:00
|
|
|
ngx_create_pidfile(ngx_str_t *name, ngx_log_t *log)
|
2004-04-12 14:10:53 +08:00
|
|
|
{
|
2004-04-13 00:38:09 +08:00
|
|
|
size_t len;
|
2006-02-08 23:33:12 +08:00
|
|
|
ngx_uint_t trunc;
|
2004-04-13 00:38:09 +08:00
|
|
|
ngx_file_t file;
|
2006-12-23 04:30:26 +08:00
|
|
|
u_char pid[NGX_INT64_LEN + 2];
|
2004-04-12 14:10:53 +08:00
|
|
|
|
2004-04-13 00:38:09 +08:00
|
|
|
ngx_memzero(&file, sizeof(ngx_file_t));
|
2005-09-23 19:02:22 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
file.name = *name;
|
|
|
|
file.log = log;
|
2004-04-12 14:10:53 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
trunc = ngx_test_config ? 0 : NGX_FILE_TRUNCATE;
|
2004-05-19 04:28:54 +08:00
|
|
|
|
2004-04-13 00:38:09 +08:00
|
|
|
file.fd = ngx_open_file(file.name.data, NGX_FILE_RDWR,
|
2007-01-19 04:15:09 +08:00
|
|
|
NGX_FILE_CREATE_OR_OPEN|trunc,
|
|
|
|
NGX_FILE_DEFAULT_ACCESS);
|
2004-04-13 00:38:09 +08:00
|
|
|
|
|
|
|
if (file.fd == NGX_INVALID_FILE) {
|
2006-02-08 23:33:12 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
|
2004-04-13 00:38:09 +08:00
|
|
|
ngx_open_file_n " \"%s\" failed", file.name.data);
|
2004-04-12 14:10:53 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
2004-05-19 04:28:54 +08:00
|
|
|
if (!ngx_test_config) {
|
2006-12-23 04:30:26 +08:00
|
|
|
len = ngx_snprintf(pid, NGX_INT64_LEN + 2, "%P%N", ngx_pid) - pid;
|
2004-11-11 22:07:14 +08:00
|
|
|
|
2004-05-19 04:28:54 +08:00
|
|
|
if (ngx_write_file(&file, pid, len, 0) == NGX_ERROR) {
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2004-04-12 14:10:53 +08:00
|
|
|
}
|
|
|
|
|
2004-04-13 00:38:09 +08:00
|
|
|
if (ngx_close_file(file.fd) == NGX_FILE_ERROR) {
|
2006-02-08 23:33:12 +08:00
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, ngx_errno,
|
2004-04-13 00:38:09 +08:00
|
|
|
ngx_close_file_n " \"%s\" failed", file.name.data);
|
2004-04-12 14:10:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
void
|
|
|
|
ngx_delete_pidfile(ngx_cycle_t *cycle)
|
2005-11-15 21:30:52 +08:00
|
|
|
{
|
2004-04-12 14:10:53 +08:00
|
|
|
u_char *name;
|
|
|
|
ngx_core_conf_t *ccf;
|
|
|
|
|
|
|
|
ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module);
|
|
|
|
|
2005-09-23 19:02:22 +08:00
|
|
|
name = ngx_new_binary ? ccf->oldpid.data : ccf->pid.data;
|
2004-04-12 14:10:53 +08:00
|
|
|
|
|
|
|
if (ngx_delete_file(name) == NGX_FILE_ERROR) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
|
|
|
|
ngx_delete_file_n " \"%s\" failed", name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-04-13 00:38:09 +08:00
|
|
|
#endif
|
|
|
|
|
2004-04-12 14:10:53 +08:00
|
|
|
|
2006-02-08 23:33:12 +08:00
|
|
|
static ngx_int_t
|
|
|
|
ngx_test_lockfile(u_char *file, ngx_log_t *log)
|
|
|
|
{
|
|
|
|
#if !(NGX_HAVE_ATOMIC_OPS)
|
|
|
|
ngx_fd_t fd;
|
|
|
|
|
2007-02-11 15:49:12 +08:00
|
|
|
fd = ngx_open_file(file, NGX_FILE_RDWR, NGX_FILE_CREATE_OR_OPEN,
|
|
|
|
NGX_FILE_DEFAULT_ACCESS);
|
2006-02-08 23:33:12 +08:00
|
|
|
|
|
|
|
if (fd == NGX_INVALID_FILE) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
|
|
|
|
ngx_open_file_n " \"%s\" failed", file);
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_close_file(fd) == NGX_FILE_ERROR) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, ngx_errno,
|
|
|
|
ngx_close_file_n " \"%s\" failed", file);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_delete_file(file) == NGX_FILE_ERROR) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, ngx_errno,
|
|
|
|
ngx_delete_file_n " \"%s\" failed", file);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
void
|
|
|
|
ngx_reopen_files(ngx_cycle_t *cycle, ngx_uid_t user)
|
2004-01-06 04:55:48 +08:00
|
|
|
{
|
|
|
|
ngx_fd_t fd;
|
2004-03-16 15:10:12 +08:00
|
|
|
ngx_uint_t i;
|
2004-09-03 23:50:30 +08:00
|
|
|
ngx_list_part_t *part;
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_open_file_t *file;
|
|
|
|
|
2004-09-03 23:50:30 +08:00
|
|
|
part = &cycle->open_files.part;
|
|
|
|
file = part->elts;
|
|
|
|
|
|
|
|
for (i = 0; /* void */ ; i++) {
|
|
|
|
|
|
|
|
if (i >= part->nelts) {
|
|
|
|
if (part->next == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
part = part->next;
|
2005-06-16 02:33:41 +08:00
|
|
|
file = part->elts;
|
2004-09-03 23:50:30 +08:00
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
if (file[i].name.data == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2005-10-27 23:46:13 +08:00
|
|
|
if (file[i].buffer && file[i].pos - file[i].buffer != 0) {
|
|
|
|
ngx_write_fd(file[i].fd, file[i].buffer,
|
|
|
|
file[i].pos - file[i].buffer);
|
|
|
|
file[i].pos = file[i].buffer;
|
|
|
|
}
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
fd = ngx_open_file(file[i].name.data, NGX_FILE_RDWR,
|
2007-01-19 04:15:09 +08:00
|
|
|
NGX_FILE_CREATE_OR_OPEN|NGX_FILE_APPEND,
|
|
|
|
NGX_FILE_DEFAULT_ACCESS);
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
ngx_log_debug3(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
|
|
|
|
"reopen file \"%s\", old:%d new:%d",
|
|
|
|
file[i].name.data, file[i].fd, fd);
|
|
|
|
|
|
|
|
if (fd == NGX_INVALID_FILE) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
|
|
|
ngx_open_file_n " \"%s\" failed", file[i].name.data);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
#if (NGX_WIN32)
|
2004-01-06 04:55:48 +08:00
|
|
|
if (ngx_file_append_mode(fd) == NGX_ERROR) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
|
|
|
ngx_file_append_mode_n " \"%s\" failed",
|
|
|
|
file[i].name.data);
|
|
|
|
|
|
|
|
if (ngx_close_file(fd) == NGX_FILE_ERROR) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
|
|
|
ngx_close_file_n " \"%s\" failed",
|
|
|
|
file[i].name.data);
|
|
|
|
}
|
|
|
|
|
2004-01-15 02:19:42 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#else
|
2005-05-23 20:07:45 +08:00
|
|
|
if (user != (ngx_uid_t) NGX_CONF_UNSET_UINT) {
|
2007-12-10 20:09:51 +08:00
|
|
|
ngx_file_info_t fi;
|
2004-10-11 23:07:03 +08:00
|
|
|
|
|
|
|
if (ngx_file_info((const char *) file[i].name.data, &fi) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
|
|
|
ngx_file_info_n " \"%s\" failed",
|
|
|
|
file[i].name.data);
|
|
|
|
|
|
|
|
if (ngx_close_file(fd) == NGX_FILE_ERROR) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
|
|
|
ngx_close_file_n " \"%s\" failed",
|
|
|
|
file[i].name.data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
if (fi.st_uid != user) {
|
|
|
|
if (chown((const char *) file[i].name.data, user, -1) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
|
|
|
"chown(\"%s\", %d) failed",
|
|
|
|
file[i].name.data, user);
|
|
|
|
|
|
|
|
if (ngx_close_file(fd) == NGX_FILE_ERROR) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
|
|
|
ngx_close_file_n " \"%s\" failed",
|
|
|
|
file[i].name.data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-11 23:07:03 +08:00
|
|
|
if ((fi.st_mode & (S_IRUSR|S_IWUSR)) != (S_IRUSR|S_IWUSR)) {
|
|
|
|
|
|
|
|
fi.st_mode |= (S_IRUSR|S_IWUSR);
|
|
|
|
|
|
|
|
if (chmod((const char *) file[i].name.data, fi.st_mode) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
2004-11-21 03:52:20 +08:00
|
|
|
"chmod() \"%s\" failed", file[i].name.data);
|
2004-10-11 23:07:03 +08:00
|
|
|
|
|
|
|
if (ngx_close_file(fd) == NGX_FILE_ERROR) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
|
|
|
ngx_close_file_n " \"%s\" failed",
|
|
|
|
file[i].name.data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-03-04 15:04:55 +08:00
|
|
|
}
|
|
|
|
|
2004-01-15 02:19:42 +08:00
|
|
|
if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
|
|
|
"fcntl(FD_CLOEXEC) \"%s\" failed",
|
|
|
|
file[i].name.data);
|
|
|
|
|
|
|
|
if (ngx_close_file(fd) == NGX_FILE_ERROR) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
|
|
|
ngx_close_file_n " \"%s\" failed",
|
|
|
|
file[i].name.data);
|
|
|
|
}
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (ngx_close_file(file[i].fd) == NGX_FILE_ERROR) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
|
|
|
ngx_close_file_n " \"%s\" failed",
|
|
|
|
file[i].name.data);
|
|
|
|
}
|
|
|
|
|
|
|
|
file[i].fd = fd;
|
|
|
|
}
|
2004-02-04 00:43:54 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
#if !(NGX_WIN32)
|
2004-03-12 05:34:52 +08:00
|
|
|
|
2004-09-06 03:54:02 +08:00
|
|
|
if (cycle->log->file->fd != STDERR_FILENO) {
|
|
|
|
if (dup2(cycle->log->file->fd, STDERR_FILENO) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
|
|
|
"dup2(STDERR) failed");
|
|
|
|
}
|
2004-02-04 00:43:54 +08:00
|
|
|
}
|
2004-03-12 05:34:52 +08:00
|
|
|
|
2004-03-04 15:04:55 +08:00
|
|
|
#endif
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-03 07:54:14 +08:00
|
|
|
ngx_shm_zone_t *
|
|
|
|
ngx_shared_memory_add(ngx_conf_t *cf, ngx_str_t *name, size_t size, void *tag)
|
|
|
|
{
|
|
|
|
ngx_uint_t i;
|
|
|
|
ngx_shm_zone_t *shm_zone;
|
|
|
|
ngx_list_part_t *part;
|
|
|
|
|
|
|
|
part = &cf->cycle->shared_memory.part;
|
|
|
|
shm_zone = part->elts;
|
|
|
|
|
|
|
|
for (i = 0; /* void */ ; i++) {
|
|
|
|
|
|
|
|
if (i >= part->nelts) {
|
|
|
|
if (part->next == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
part = part->next;
|
|
|
|
shm_zone = part->elts;
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name->len != shm_zone[i].name.len) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_strncmp(name->data, shm_zone[i].name.data, name->len) != 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size && size != shm_zone[i].shm.size) {
|
|
|
|
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
|
|
|
|
"the size %uz of shared memory zone \"%V\" "
|
2007-01-03 23:43:01 +08:00
|
|
|
"conflicts with already declared size %uz",
|
|
|
|
size, &shm_zone[i].name, shm_zone[i].shm.size);
|
2007-01-03 07:54:14 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tag != shm_zone[i].tag) {
|
|
|
|
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
|
|
|
|
"the shared memory zone \"%V\" is "
|
2007-01-03 23:43:01 +08:00
|
|
|
"already declared for a different use",
|
|
|
|
&shm_zone[i].name);
|
2007-01-03 07:54:14 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return &shm_zone[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
shm_zone = ngx_list_push(&cf->cycle->shared_memory);
|
|
|
|
|
|
|
|
if (shm_zone == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
shm_zone->data = NULL;
|
|
|
|
shm_zone->shm.log = cf->cycle->log;
|
|
|
|
shm_zone->shm.size = size;
|
|
|
|
shm_zone->init = NULL;
|
|
|
|
shm_zone->name = *name;
|
|
|
|
shm_zone->tag = tag;
|
|
|
|
|
|
|
|
return shm_zone;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
static void
|
|
|
|
ngx_clean_old_cycles(ngx_event_t *ev)
|
2004-01-06 04:55:48 +08:00
|
|
|
{
|
2004-03-16 15:10:12 +08:00
|
|
|
ngx_uint_t i, n, found, live;
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_log_t *log;
|
|
|
|
ngx_cycle_t **cycle;
|
|
|
|
|
|
|
|
log = ngx_cycle->log;
|
|
|
|
ngx_temp_pool->log = log;
|
|
|
|
|
2004-02-12 01:08:49 +08:00
|
|
|
ngx_log_debug0(NGX_LOG_DEBUG_CORE, log, 0, "clean old cycles");
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
live = 0;
|
|
|
|
|
|
|
|
cycle = ngx_old_cycles.elts;
|
|
|
|
for (i = 0; i < ngx_old_cycles.nelts; i++) {
|
|
|
|
|
|
|
|
if (cycle[i] == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
found = 0;
|
|
|
|
|
|
|
|
for (n = 0; n < cycle[i]->connection_n; n++) {
|
2005-10-12 21:50:36 +08:00
|
|
|
if (cycle[i]->connections[n].fd != (ngx_socket_t) -1) {
|
2004-01-06 04:55:48 +08:00
|
|
|
found = 1;
|
2004-02-12 01:08:49 +08:00
|
|
|
|
|
|
|
ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0, "live fd:%d", n);
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (found) {
|
|
|
|
live = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2004-02-12 01:08:49 +08:00
|
|
|
ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0, "clean old cycle: %d", i);
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_destroy_pool(cycle[i]->pool);
|
|
|
|
cycle[i] = NULL;
|
|
|
|
}
|
|
|
|
|
2004-02-12 01:08:49 +08:00
|
|
|
ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0, "old cycles status: %d", live);
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
if (live) {
|
|
|
|
ngx_add_timer(ev, 30000);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
ngx_destroy_pool(ngx_temp_pool);
|
|
|
|
ngx_temp_pool = NULL;
|
|
|
|
ngx_old_cycles.nelts = 0;
|
|
|
|
}
|
|
|
|
}
|