2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
#include <ngx_config.h>
|
2003-01-10 14:09:20 +08:00
|
|
|
#include <ngx_core.h>
|
2003-06-11 23:28:34 +08:00
|
|
|
#include <ngx_event.h>
|
2003-05-30 22:27:59 +08:00
|
|
|
#include <nginx.h>
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
|
2003-07-11 23:17:50 +08:00
|
|
|
typedef struct {
|
2004-01-22 14:47:28 +08:00
|
|
|
ngx_flag_t daemon;
|
|
|
|
ngx_flag_t master;
|
|
|
|
ngx_flag_t worker_reopen;
|
|
|
|
uid_t user;
|
|
|
|
gid_t group;
|
|
|
|
ngx_str_t pid;
|
|
|
|
ngx_str_t newpid;
|
2003-07-11 23:17:50 +08:00
|
|
|
} ngx_core_conf_t;
|
|
|
|
|
|
|
|
|
2004-01-09 01:08:10 +08:00
|
|
|
typedef struct {
|
|
|
|
ngx_file_t pid;
|
2004-01-14 05:33:59 +08:00
|
|
|
char *name;
|
2004-02-10 04:47:18 +08:00
|
|
|
int argc;
|
2004-01-09 01:08:10 +08:00
|
|
|
char *const *argv;
|
|
|
|
} ngx_master_ctx_t;
|
|
|
|
|
|
|
|
|
|
|
|
static void ngx_master_process_cycle(ngx_cycle_t *cycle, ngx_master_ctx_t *ctx);
|
2004-01-17 02:29:15 +08:00
|
|
|
static void ngx_master_exit(ngx_cycle_t *cycle, ngx_master_ctx_t *ctx);
|
2004-01-09 01:08:10 +08:00
|
|
|
static void ngx_worker_process_cycle(ngx_cycle_t *cycle, void *data);
|
2004-02-24 04:57:12 +08:00
|
|
|
#if (NGX_THREADS)
|
|
|
|
static int ngx_worker_thread_cycle(void *data);
|
|
|
|
#endif
|
2004-01-09 01:08:10 +08:00
|
|
|
static ngx_int_t ngx_add_inherited_sockets(ngx_cycle_t *cycle, char **envp);
|
2004-01-14 05:33:59 +08:00
|
|
|
static ngx_pid_t ngx_exec_new_binary(ngx_cycle_t *cycle, char *const *argv);
|
2004-02-10 04:47:18 +08:00
|
|
|
static ngx_int_t ngx_getopt(ngx_master_ctx_t *ctx, ngx_cycle_t *cycle);
|
2004-01-09 01:08:10 +08:00
|
|
|
static ngx_int_t ngx_core_module_init(ngx_cycle_t *cycle);
|
2004-01-21 04:40:08 +08:00
|
|
|
static char *ngx_set_user(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
|
2004-01-09 01:08:10 +08:00
|
|
|
|
|
|
|
|
2003-07-11 23:17:50 +08:00
|
|
|
static ngx_str_t core_name = ngx_string("core");
|
|
|
|
|
|
|
|
static ngx_command_t ngx_core_commands[] = {
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
{ ngx_string("user"),
|
2004-01-21 04:40:08 +08:00
|
|
|
NGX_MAIN_CONF|NGX_CONF_TAKE12,
|
|
|
|
ngx_set_user,
|
|
|
|
0,
|
2004-01-06 04:55:48 +08:00
|
|
|
0,
|
|
|
|
NULL },
|
|
|
|
|
2003-12-09 23:08:11 +08:00
|
|
|
{ ngx_string("daemon"),
|
|
|
|
NGX_MAIN_CONF|NGX_CONF_TAKE1,
|
|
|
|
ngx_conf_set_core_flag_slot,
|
|
|
|
0,
|
|
|
|
offsetof(ngx_core_conf_t, daemon),
|
|
|
|
NULL },
|
|
|
|
|
2004-01-09 01:08:10 +08:00
|
|
|
{ ngx_string("master_process"),
|
2004-01-06 04:55:48 +08:00
|
|
|
NGX_MAIN_CONF|NGX_CONF_TAKE1,
|
|
|
|
ngx_conf_set_core_flag_slot,
|
|
|
|
0,
|
2004-01-09 01:08:10 +08:00
|
|
|
offsetof(ngx_core_conf_t, master),
|
2004-01-06 04:55:48 +08:00
|
|
|
NULL },
|
|
|
|
|
2004-02-10 04:47:18 +08:00
|
|
|
{ ngx_string("pid"),
|
|
|
|
NGX_MAIN_CONF|NGX_CONF_TAKE1,
|
|
|
|
ngx_conf_set_core_str_slot,
|
|
|
|
0,
|
|
|
|
offsetof(ngx_core_conf_t, pid),
|
|
|
|
NULL },
|
|
|
|
|
2004-01-22 14:47:28 +08:00
|
|
|
{ ngx_string("worker_reopen"),
|
|
|
|
NGX_MAIN_CONF|NGX_CONF_TAKE1,
|
|
|
|
ngx_conf_set_core_flag_slot,
|
|
|
|
0,
|
|
|
|
offsetof(ngx_core_conf_t, worker_reopen),
|
|
|
|
NULL },
|
|
|
|
|
2003-12-09 23:08:11 +08:00
|
|
|
ngx_null_command
|
2003-07-11 23:17:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
ngx_module_t ngx_core_module = {
|
|
|
|
NGX_MODULE,
|
|
|
|
&core_name, /* module context */
|
|
|
|
ngx_core_commands, /* module directives */
|
|
|
|
NGX_CORE_MODULE, /* module type */
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_core_module_init, /* init module */
|
2003-07-11 23:17:50 +08:00
|
|
|
NULL /* init child */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-02-24 04:57:12 +08:00
|
|
|
ngx_int_t ngx_max_module;
|
|
|
|
ngx_atomic_t ngx_connection_counter;
|
2002-12-15 14:25:09 +08:00
|
|
|
|
2004-02-24 04:57:12 +08:00
|
|
|
ngx_int_t ngx_process;
|
|
|
|
ngx_pid_t ngx_pid;
|
|
|
|
ngx_pid_t ngx_new_binary;
|
2004-01-14 00:43:23 +08:00
|
|
|
|
2004-02-24 04:57:12 +08:00
|
|
|
ngx_int_t ngx_inherited;
|
|
|
|
ngx_int_t ngx_reap;
|
|
|
|
ngx_int_t ngx_timer;
|
|
|
|
ngx_int_t ngx_terminate;
|
|
|
|
ngx_int_t ngx_quit;
|
|
|
|
ngx_int_t ngx_noaccept;
|
|
|
|
ngx_int_t ngx_reconfigure;
|
|
|
|
ngx_int_t ngx_reopen;
|
|
|
|
ngx_int_t ngx_change_binary;
|
2003-07-04 00:30:22 +08:00
|
|
|
|
2003-07-01 23:00:03 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
int main(int argc, char *const *argv, char **envp)
|
2002-08-07 00:39:45 +08:00
|
|
|
{
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_fd_t fd;
|
|
|
|
ngx_int_t i;
|
|
|
|
ngx_log_t *log;
|
|
|
|
ngx_cycle_t *cycle, init_cycle;
|
|
|
|
ngx_open_file_t *file;
|
|
|
|
ngx_core_conf_t *ccf;
|
2004-01-09 01:08:10 +08:00
|
|
|
ngx_master_ctx_t ctx;
|
2003-11-13 14:14:05 +08:00
|
|
|
#if !(WIN32)
|
2004-01-06 04:55:48 +08:00
|
|
|
size_t len;
|
|
|
|
char pid[/* STUB */ 10];
|
2003-11-13 14:14:05 +08:00
|
|
|
#endif
|
2002-12-23 14:29:22 +08:00
|
|
|
|
2003-12-06 01:07:27 +08:00
|
|
|
#if __FreeBSD__
|
|
|
|
ngx_debug_init();
|
2003-07-07 14:11:50 +08:00
|
|
|
#endif
|
|
|
|
|
2003-07-02 13:01:53 +08:00
|
|
|
/* TODO */ ngx_max_sockets = -1;
|
2003-05-20 23:37:55 +08:00
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
ngx_time_init();
|
2004-01-09 01:08:10 +08:00
|
|
|
|
2003-12-19 16:15:11 +08:00
|
|
|
#if (HAVE_PCRE)
|
2003-11-26 04:44:56 +08:00
|
|
|
ngx_regex_init();
|
2003-12-19 16:15:11 +08:00
|
|
|
#endif
|
2003-11-13 14:14:05 +08:00
|
|
|
|
2003-06-03 23:42:58 +08:00
|
|
|
log = ngx_log_init_errlog();
|
2004-02-04 00:43:54 +08:00
|
|
|
ngx_pid = ngx_getpid();
|
2002-08-20 22:48:28 +08:00
|
|
|
|
2004-02-10 04:47:18 +08:00
|
|
|
/* init_cycle->log is required for signal handlers and ngx_getopt() */
|
2003-12-19 16:15:11 +08:00
|
|
|
|
|
|
|
ngx_memzero(&init_cycle, sizeof(ngx_cycle_t));
|
|
|
|
init_cycle.log = log;
|
|
|
|
ngx_cycle = &init_cycle;
|
|
|
|
|
2004-02-10 04:47:18 +08:00
|
|
|
ngx_memzero(&ctx, sizeof(ngx_master_ctx_t));
|
|
|
|
ctx.argc = argc;
|
|
|
|
ctx.argv = argv;
|
|
|
|
|
2004-02-26 04:16:15 +08:00
|
|
|
#if (NGX_THREADS)
|
|
|
|
if (ngx_time_mutex_init(log) == NGX_ERROR) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-02-10 04:47:18 +08:00
|
|
|
if (ngx_getopt(&ctx, &init_cycle) == NGX_ERROR) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2003-06-03 23:42:58 +08:00
|
|
|
if (ngx_os_init(log) == NGX_ERROR) {
|
2003-05-20 00:39:14 +08:00
|
|
|
return 1;
|
2003-05-15 01:13:13 +08:00
|
|
|
}
|
|
|
|
|
2003-04-08 23:40:10 +08:00
|
|
|
ngx_max_module = 0;
|
|
|
|
for (i = 0; ngx_modules[i]; i++) {
|
|
|
|
ngx_modules[i]->index = ngx_max_module++;
|
|
|
|
}
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
if (!(init_cycle.pool = ngx_create_pool(1024, log))) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
if (ngx_add_inherited_sockets(&init_cycle, envp) == NGX_ERROR) {
|
2004-01-06 04:55:48 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
cycle = ngx_init_cycle(&init_cycle);
|
2003-07-02 13:01:53 +08:00
|
|
|
if (cycle == NULL) {
|
2003-06-26 23:35:36 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2003-07-07 14:11:50 +08:00
|
|
|
ngx_cycle = cycle;
|
2003-07-04 23:10:33 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module);
|
|
|
|
|
2004-01-09 01:08:10 +08:00
|
|
|
ngx_process = (ccf->master != 0) ? NGX_PROCESS_MASTER : NGX_PROCESS_SINGLE;
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2004-01-08 16:47:17 +08:00
|
|
|
#if (WIN32)
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
|
|
|
if (run_as_service) {
|
|
|
|
if (ngx_servie(cycle->log) == NGX_ERROR) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
|
2004-01-08 16:47:17 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
2003-07-11 00:26:57 +08:00
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
if (!ngx_inherited && ccf->daemon != 0) {
|
2003-11-20 00:26:41 +08:00
|
|
|
if (ngx_daemon(cycle->log) == NGX_ERROR) {
|
2003-07-11 00:26:57 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-15 04:10:27 +08:00
|
|
|
if (ccf->pid.len == 0) {
|
|
|
|
ccf->pid.len = sizeof(NGINX_PID) - 1;
|
|
|
|
ccf->pid.data = NGINX_PID;
|
2004-01-09 05:02:06 +08:00
|
|
|
ccf->newpid.len = sizeof(NGINX_NEW_PID) - 1;
|
|
|
|
ccf->newpid.data = NGINX_NEW_PID;
|
2004-02-11 00:23:38 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
ccf->newpid.len = ccf->pid.len + sizeof(NGINX_NEW_PID_EXT);
|
|
|
|
if (!(ccf->newpid.data = ngx_alloc(ccf->newpid.len, cycle->log))) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_memcpy(ngx_cpymem(ccf->newpid.data, ccf->pid.data, ccf->pid.len),
|
|
|
|
NGINX_NEW_PID_EXT, sizeof(NGINX_NEW_PID_EXT));
|
2003-12-15 04:10:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
len = ngx_snprintf(pid, /* STUB */ 10, PID_T_FMT, ngx_getpid());
|
2004-01-09 01:08:10 +08:00
|
|
|
ngx_memzero(&ctx.pid, sizeof(ngx_file_t));
|
2004-01-09 05:02:06 +08:00
|
|
|
ctx.pid.name = ngx_inherited ? ccf->newpid : ccf->pid;
|
2004-01-14 05:33:59 +08:00
|
|
|
ctx.name = ccf->pid.data;
|
2003-12-15 04:10:27 +08:00
|
|
|
|
2004-01-09 01:08:10 +08:00
|
|
|
ctx.pid.fd = ngx_open_file(ctx.pid.name.data, NGX_FILE_RDWR,
|
2003-12-15 04:10:27 +08:00
|
|
|
NGX_FILE_CREATE_OR_OPEN);
|
|
|
|
|
2004-01-09 01:08:10 +08:00
|
|
|
if (ctx.pid.fd == NGX_INVALID_FILE) {
|
2003-12-15 04:10:27 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
2004-01-09 01:08:10 +08:00
|
|
|
ngx_open_file_n " \"%s\" failed", ctx.pid.name.data);
|
2003-12-15 04:10:27 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-01-09 01:08:10 +08:00
|
|
|
if (ngx_write_file(&ctx.pid, pid, len, 0) == NGX_ERROR) {
|
2003-12-15 04:10:27 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-01-09 01:08:10 +08:00
|
|
|
if (ngx_close_file(ctx.pid.fd) == NGX_FILE_ERROR) {
|
2003-12-15 04:10:27 +08:00
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
|
2004-01-09 01:08:10 +08:00
|
|
|
ngx_close_file_n " \"%s\" failed", ctx.pid.name.data);
|
2003-12-15 04:10:27 +08:00
|
|
|
}
|
|
|
|
|
2003-07-11 00:26:57 +08:00
|
|
|
#endif
|
2003-06-26 23:35:36 +08:00
|
|
|
|
2004-01-09 01:08:10 +08:00
|
|
|
ngx_master_process_cycle(cycle, &ctx);
|
2004-01-08 16:47:17 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-05 04:30:08 +08:00
|
|
|
/* TODO: broken NGX_PROCESS_SINGLE */
|
2004-01-14 05:33:59 +08:00
|
|
|
|
2004-01-09 01:08:10 +08:00
|
|
|
static void ngx_master_process_cycle(ngx_cycle_t *cycle, ngx_master_ctx_t *ctx)
|
2004-01-08 16:47:17 +08:00
|
|
|
{
|
2004-01-29 04:38:54 +08:00
|
|
|
int signo;
|
|
|
|
sigset_t set;
|
|
|
|
struct timeval tv;
|
|
|
|
struct itimerval itv;
|
|
|
|
ngx_uint_t i, live;
|
|
|
|
ngx_msec_t delay;
|
|
|
|
ngx_core_conf_t *ccf;
|
2004-01-09 01:08:10 +08:00
|
|
|
|
|
|
|
sigemptyset(&set);
|
|
|
|
sigaddset(&set, SIGCHLD);
|
2004-01-29 04:38:54 +08:00
|
|
|
sigaddset(&set, SIGALRM);
|
|
|
|
sigaddset(&set, SIGINT);
|
2004-01-09 01:08:10 +08:00
|
|
|
sigaddset(&set, ngx_signal_value(NGX_RECONFIGURE_SIGNAL));
|
|
|
|
sigaddset(&set, ngx_signal_value(NGX_REOPEN_SIGNAL));
|
2004-01-14 00:43:23 +08:00
|
|
|
sigaddset(&set, ngx_signal_value(NGX_NOACCEPT_SIGNAL));
|
2004-01-09 01:08:10 +08:00
|
|
|
sigaddset(&set, ngx_signal_value(NGX_TERMINATE_SIGNAL));
|
|
|
|
sigaddset(&set, ngx_signal_value(NGX_SHUTDOWN_SIGNAL));
|
|
|
|
sigaddset(&set, ngx_signal_value(NGX_CHANGEBIN_SIGNAL));
|
|
|
|
|
|
|
|
if (sigprocmask(SIG_BLOCK, &set, NULL) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
|
|
|
|
"sigprocmask() failed");
|
|
|
|
}
|
2003-05-16 23:27:48 +08:00
|
|
|
|
2004-01-29 04:38:54 +08:00
|
|
|
sigemptyset(&set);
|
|
|
|
|
2004-01-23 01:10:46 +08:00
|
|
|
ngx_setproctitle("master process");
|
|
|
|
|
2004-01-14 05:33:59 +08:00
|
|
|
ngx_new_binary = 0;
|
2004-01-23 01:10:46 +08:00
|
|
|
delay = 0;
|
2004-01-14 00:43:23 +08:00
|
|
|
signo = 0;
|
2004-01-17 02:29:15 +08:00
|
|
|
live = 0;
|
2004-01-14 00:43:23 +08:00
|
|
|
|
2003-07-01 23:00:03 +08:00
|
|
|
for ( ;; ) {
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_log_debug0(NGX_LOG_DEBUG_EVENT, cycle->log, 0, "new cycle");
|
2003-07-03 02:51:41 +08:00
|
|
|
|
2004-01-08 16:47:17 +08:00
|
|
|
if (ngx_process == NGX_PROCESS_MASTER) {
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_spawn_process(cycle, ngx_worker_process_cycle, NULL,
|
|
|
|
"worker process", NGX_PROCESS_RESPAWN);
|
2004-01-29 04:38:54 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* we have to limit the maximum life time of the worker processes
|
|
|
|
* by 1 month because our millisecond event timer is limited
|
|
|
|
* by 49 days on 32-bit platforms
|
|
|
|
*/
|
|
|
|
|
|
|
|
itv.it_interval.tv_sec = 0;
|
|
|
|
itv.it_interval.tv_usec = 0;
|
|
|
|
itv.it_value.tv_sec = 30 * 24 * 60 * 60;
|
|
|
|
itv.it_value.tv_usec = 0;
|
|
|
|
|
|
|
|
if (setitimer(ITIMER_REAL, &itv, NULL) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
|
|
|
|
"setitimer() failed");
|
|
|
|
}
|
|
|
|
|
2004-01-17 02:29:15 +08:00
|
|
|
live = 1;
|
2003-06-26 23:35:36 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
} else {
|
|
|
|
ngx_init_temp_number();
|
2003-07-01 23:00:03 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
for (i = 0; ngx_modules[i]; i++) {
|
|
|
|
if (ngx_modules[i]->init_process) {
|
|
|
|
if (ngx_modules[i]->init_process(cycle) == NGX_ERROR) {
|
|
|
|
/* fatal */
|
|
|
|
exit(1);
|
|
|
|
}
|
2003-07-04 23:10:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-07-03 02:51:41 +08:00
|
|
|
|
2004-01-22 14:47:28 +08:00
|
|
|
ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx,
|
|
|
|
ngx_core_module);
|
|
|
|
|
2004-01-14 05:33:59 +08:00
|
|
|
/* a cycle with the same configuration because a new one is invalid */
|
2003-07-04 00:30:22 +08:00
|
|
|
|
2003-06-26 23:35:36 +08:00
|
|
|
for ( ;; ) {
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
/* an event loop */
|
|
|
|
|
2003-07-04 00:30:22 +08:00
|
|
|
for ( ;; ) {
|
|
|
|
|
2004-01-09 01:08:10 +08:00
|
|
|
if (ngx_process == NGX_PROCESS_MASTER) {
|
2004-01-23 01:10:46 +08:00
|
|
|
if (delay) {
|
2004-01-29 04:38:54 +08:00
|
|
|
delay *= 2;
|
2003-07-04 00:30:22 +08:00
|
|
|
|
2004-01-29 04:38:54 +08:00
|
|
|
ngx_log_debug1(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
|
|
|
|
"temination cycle: %d", delay);
|
2004-01-09 05:02:06 +08:00
|
|
|
|
2004-01-29 04:38:54 +08:00
|
|
|
itv.it_interval.tv_sec = 0;
|
|
|
|
itv.it_interval.tv_usec = 0;
|
|
|
|
itv.it_value.tv_sec = delay / 1000;
|
|
|
|
itv.it_value.tv_usec = (delay % 1000 ) * 1000;
|
2004-01-09 01:08:10 +08:00
|
|
|
|
2004-01-29 04:38:54 +08:00
|
|
|
if (setitimer(ITIMER_REAL, &itv, NULL) == -1) {
|
2004-01-14 00:43:23 +08:00
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
|
2004-01-29 04:38:54 +08:00
|
|
|
"setitimer() failed");
|
2004-01-14 00:43:23 +08:00
|
|
|
}
|
2004-01-29 04:38:54 +08:00
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2004-01-29 04:38:54 +08:00
|
|
|
ngx_log_debug0(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
|
|
|
|
"sigsuspend");
|
2004-01-14 05:33:59 +08:00
|
|
|
|
2004-01-29 04:38:54 +08:00
|
|
|
sigsuspend(&set);
|
2004-01-09 05:02:06 +08:00
|
|
|
|
2004-01-29 04:38:54 +08:00
|
|
|
ngx_gettimeofday(&tv);
|
|
|
|
ngx_time_update(tv.tv_sec);
|
2004-01-14 05:33:59 +08:00
|
|
|
|
2004-01-29 04:38:54 +08:00
|
|
|
ngx_log_debug0(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
|
|
|
|
"wake up");
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2004-01-14 05:33:59 +08:00
|
|
|
} else { /* NGX_PROCESS_SINGLE */
|
2004-01-14 00:43:23 +08:00
|
|
|
ngx_log_debug0(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
|
|
|
|
"worker cycle");
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2004-01-14 00:43:23 +08:00
|
|
|
ngx_process_events(cycle->log);
|
2004-01-22 14:47:28 +08:00
|
|
|
live = 0;
|
2004-01-14 00:43:23 +08:00
|
|
|
}
|
2004-01-09 05:02:06 +08:00
|
|
|
|
2004-01-14 00:43:23 +08:00
|
|
|
if (ngx_reap) {
|
2004-01-22 14:47:28 +08:00
|
|
|
ngx_reap = 0;
|
2004-01-14 05:33:59 +08:00
|
|
|
ngx_log_debug0(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
|
|
|
|
"reap childs");
|
|
|
|
|
2004-01-14 00:43:23 +08:00
|
|
|
live = 0;
|
|
|
|
for (i = 0; i < ngx_last_process; i++) {
|
2004-01-14 05:33:59 +08:00
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
ngx_log_debug5(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
|
2004-01-15 02:19:42 +08:00
|
|
|
"child: " PID_T_FMT
|
2004-02-03 05:19:52 +08:00
|
|
|
" e:%d t:%d d:%d r:%d",
|
2004-01-15 02:19:42 +08:00
|
|
|
ngx_processes[i].pid,
|
|
|
|
ngx_processes[i].exiting,
|
|
|
|
ngx_processes[i].exited,
|
|
|
|
ngx_processes[i].detached,
|
|
|
|
ngx_processes[i].respawn);
|
2004-01-09 05:02:06 +08:00
|
|
|
|
2004-01-14 05:33:59 +08:00
|
|
|
if (ngx_processes[i].exited) {
|
2004-01-15 02:19:42 +08:00
|
|
|
|
|
|
|
if (ngx_processes[i].respawn
|
|
|
|
&& !ngx_processes[i].exiting
|
|
|
|
&& !ngx_terminate
|
|
|
|
&& !ngx_quit)
|
|
|
|
{
|
|
|
|
if (ngx_spawn_process(cycle,
|
|
|
|
ngx_processes[i].proc,
|
|
|
|
ngx_processes[i].data,
|
|
|
|
ngx_processes[i].name, i)
|
|
|
|
== NGX_ERROR)
|
|
|
|
{
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, 0,
|
|
|
|
"can not respawn %s",
|
|
|
|
ngx_processes[i].name);
|
2004-02-09 15:46:43 +08:00
|
|
|
continue;
|
2004-01-15 02:19:42 +08:00
|
|
|
}
|
|
|
|
|
2004-02-09 15:46:43 +08:00
|
|
|
live = 1;
|
|
|
|
|
2004-01-15 02:19:42 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2004-01-14 05:33:59 +08:00
|
|
|
if (ngx_processes[i].pid == ngx_new_binary) {
|
|
|
|
ngx_new_binary = 0;
|
2004-02-06 00:58:36 +08:00
|
|
|
|
|
|
|
/* TODO: if (ngx_noaccept) ngx_configure = 1 */
|
2004-01-14 05:33:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (i != --ngx_last_process) {
|
|
|
|
ngx_processes[i--] =
|
2004-01-09 05:02:06 +08:00
|
|
|
ngx_processes[ngx_last_process];
|
2004-01-14 05:33:59 +08:00
|
|
|
}
|
2004-01-15 02:19:42 +08:00
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
} else if (ngx_processes[i].exiting
|
|
|
|
|| !ngx_processes[i].detached)
|
2004-01-15 02:19:42 +08:00
|
|
|
{
|
|
|
|
live = 1;
|
2004-01-09 05:02:06 +08:00
|
|
|
}
|
2004-01-14 00:43:23 +08:00
|
|
|
}
|
2004-01-09 05:02:06 +08:00
|
|
|
}
|
2003-12-15 04:10:27 +08:00
|
|
|
|
2004-01-17 02:29:15 +08:00
|
|
|
if (!live && (ngx_terminate || ngx_quit)) {
|
|
|
|
ngx_master_exit(cycle, ctx);
|
|
|
|
}
|
|
|
|
|
2004-01-09 05:02:06 +08:00
|
|
|
if (ngx_terminate) {
|
2004-01-23 01:10:46 +08:00
|
|
|
if (delay == 0) {
|
|
|
|
delay = 50;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (delay > 1000) {
|
2004-01-13 14:39:14 +08:00
|
|
|
signo = SIGKILL;
|
2004-01-09 23:47:42 +08:00
|
|
|
} else {
|
2004-01-13 14:39:14 +08:00
|
|
|
signo = ngx_signal_value(NGX_TERMINATE_SIGNAL);
|
2004-01-09 23:47:42 +08:00
|
|
|
}
|
2003-07-21 05:15:59 +08:00
|
|
|
|
2004-01-14 00:43:23 +08:00
|
|
|
} else if (ngx_quit) {
|
2004-01-13 14:39:14 +08:00
|
|
|
signo = ngx_signal_value(NGX_SHUTDOWN_SIGNAL);
|
2003-07-21 05:15:59 +08:00
|
|
|
|
2004-01-29 04:38:54 +08:00
|
|
|
} else if (ngx_timer) {
|
|
|
|
signo = ngx_signal_value(NGX_SHUTDOWN_SIGNAL);
|
|
|
|
|
2004-01-14 00:43:23 +08:00
|
|
|
} else {
|
2003-07-21 05:15:59 +08:00
|
|
|
|
2004-01-14 00:43:23 +08:00
|
|
|
if (ngx_noaccept) {
|
|
|
|
signo = ngx_signal_value(NGX_SHUTDOWN_SIGNAL);
|
|
|
|
}
|
2003-07-04 00:30:22 +08:00
|
|
|
|
2004-01-14 00:43:23 +08:00
|
|
|
if (ngx_change_binary) {
|
|
|
|
ngx_change_binary = 0;
|
|
|
|
ngx_log_error(NGX_LOG_INFO, cycle->log, 0,
|
|
|
|
"changing binary");
|
2004-01-14 05:33:59 +08:00
|
|
|
ngx_new_binary = ngx_exec_new_binary(cycle, ctx->argv);
|
2004-01-14 00:43:23 +08:00
|
|
|
}
|
2003-07-04 00:30:22 +08:00
|
|
|
|
2004-01-14 00:43:23 +08:00
|
|
|
if (ngx_reconfigure) {
|
|
|
|
signo = ngx_signal_value(NGX_SHUTDOWN_SIGNAL);
|
|
|
|
ngx_log_error(NGX_LOG_INFO, cycle->log, 0,
|
|
|
|
"reconfiguring");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_reopen) {
|
2004-01-22 14:47:28 +08:00
|
|
|
if (ngx_process == NGX_PROCESS_MASTER) {
|
2004-02-09 15:46:43 +08:00
|
|
|
if (ccf->worker_reopen != 0) {
|
2004-01-22 14:47:28 +08:00
|
|
|
signo = ngx_signal_value(NGX_REOPEN_SIGNAL);
|
|
|
|
ngx_reopen = 0;
|
2004-02-06 00:58:36 +08:00
|
|
|
|
|
|
|
} else if (ngx_noaccept) {
|
|
|
|
ngx_reopen = 0;
|
|
|
|
|
2004-01-22 14:47:28 +08:00
|
|
|
} else {
|
|
|
|
signo = ngx_signal_value(NGX_SHUTDOWN_SIGNAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else { /* NGX_PROCESS_SINGLE */
|
|
|
|
ngx_reopen = 0;
|
|
|
|
}
|
2004-01-14 05:33:59 +08:00
|
|
|
|
2004-01-14 00:43:23 +08:00
|
|
|
ngx_log_error(NGX_LOG_INFO, cycle->log, 0,
|
|
|
|
"reopening logs");
|
2004-01-23 01:10:46 +08:00
|
|
|
ngx_reopen_files(cycle,
|
2004-02-09 15:46:43 +08:00
|
|
|
ccf->worker_reopen != 0 ? ccf->user : (uid_t) -1);
|
2004-01-14 00:43:23 +08:00
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
|
2004-01-13 14:39:14 +08:00
|
|
|
if (signo) {
|
2004-01-15 02:19:42 +08:00
|
|
|
for (i = 0; i < ngx_last_process; i++) {
|
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
if (ngx_processes[i].detached) {
|
|
|
|
continue;
|
2004-01-09 23:47:42 +08:00
|
|
|
}
|
2004-01-15 02:19:42 +08:00
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
ngx_log_debug2(NGX_LOG_DEBUG_CORE, cycle->log, 0,
|
|
|
|
"kill (" PID_T_FMT ", %d)" ,
|
|
|
|
ngx_processes[i].pid, signo);
|
2004-01-15 02:19:42 +08:00
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
if (kill(ngx_processes[i].pid, signo) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
|
|
|
|
"kill(%d, %d) failed",
|
|
|
|
ngx_processes[i].pid, signo);
|
|
|
|
continue;
|
|
|
|
}
|
2004-01-13 14:39:14 +08:00
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
if (signo != ngx_signal_value(NGX_REOPEN_SIGNAL)) {
|
|
|
|
ngx_processes[i].exiting = 1;
|
|
|
|
}
|
2004-01-15 02:19:42 +08:00
|
|
|
}
|
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
signo = 0;
|
2004-01-09 23:47:42 +08:00
|
|
|
}
|
|
|
|
|
2004-01-29 04:38:54 +08:00
|
|
|
if (ngx_reopen || ngx_reconfigure || ngx_timer) {
|
2004-01-13 14:39:14 +08:00
|
|
|
break;
|
|
|
|
}
|
2003-07-04 00:30:22 +08:00
|
|
|
}
|
2003-07-01 23:00:03 +08:00
|
|
|
|
2004-01-17 02:29:15 +08:00
|
|
|
if (ngx_reopen) {
|
|
|
|
ngx_reopen = 0;
|
|
|
|
|
2004-01-29 04:38:54 +08:00
|
|
|
} else if (ngx_timer) {
|
|
|
|
ngx_timer = 0;
|
|
|
|
|
2004-01-17 02:29:15 +08:00
|
|
|
} else if (ngx_noaccept) {
|
2004-01-14 00:43:23 +08:00
|
|
|
ngx_noaccept = 0;
|
2004-01-22 14:47:28 +08:00
|
|
|
ngx_reconfigure = 0;
|
2004-01-09 05:02:06 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
cycle = ngx_init_cycle(cycle);
|
|
|
|
if (cycle == NULL) {
|
|
|
|
cycle = (ngx_cycle_t *) ngx_cycle;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_cycle = cycle;
|
2004-01-22 14:47:28 +08:00
|
|
|
ngx_reconfigure = 0;
|
2003-06-26 23:35:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-07-01 23:00:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-01-17 02:29:15 +08:00
|
|
|
static void ngx_master_exit(ngx_cycle_t *cycle, ngx_master_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
if (ngx_inherited && getppid() > 1) {
|
|
|
|
name = ctx->pid.name.data;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
name = ctx->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_log_error(NGX_LOG_INFO, cycle->log, 0, "exit");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
static void ngx_worker_process_cycle(ngx_cycle_t *cycle, void *data)
|
2003-07-01 23:00:03 +08:00
|
|
|
{
|
2004-01-09 01:08:10 +08:00
|
|
|
sigset_t set;
|
2004-01-07 00:49:34 +08:00
|
|
|
ngx_int_t i;
|
|
|
|
ngx_listening_t *ls;
|
2004-01-21 04:40:08 +08:00
|
|
|
ngx_core_conf_t *ccf;
|
2004-02-24 04:57:12 +08:00
|
|
|
#if (NGX_THREADS)
|
|
|
|
ngx_tid_t tid;
|
|
|
|
#endif
|
2003-07-02 13:01:53 +08:00
|
|
|
|
2004-01-08 16:47:17 +08:00
|
|
|
ngx_process = NGX_PROCESS_WORKER;
|
2004-01-09 05:02:06 +08:00
|
|
|
ngx_last_process = 0;
|
2004-01-08 16:47:17 +08:00
|
|
|
|
2004-01-21 04:40:08 +08:00
|
|
|
ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module);
|
|
|
|
|
|
|
|
if (ccf->group != (gid_t) NGX_CONF_UNSET) {
|
|
|
|
if (setuid(ccf->group) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
|
|
|
"setgid(%d) failed", ccf->group);
|
|
|
|
/* fatal */
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ccf->user != (uid_t) NGX_CONF_UNSET && geteuid() == 0) {
|
|
|
|
if (setuid(ccf->user) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_errno,
|
|
|
|
"setuid(%d) failed", ccf->user);
|
2004-01-07 00:49:34 +08:00
|
|
|
/* fatal */
|
2004-01-21 04:40:08 +08:00
|
|
|
exit(2);
|
2003-07-01 23:00:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-09 15:46:43 +08:00
|
|
|
#if (HAVE_PR_SET_DUMPABLE)
|
|
|
|
|
|
|
|
/* allow coredump after setuid() in Linux 2.4.x */
|
|
|
|
|
|
|
|
if (prctl(PR_SET_DUMPABLE, 1, 0, 0, 0) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
|
|
|
|
"prctl(PR_SET_DUMPABLE) failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2004-01-09 01:08:10 +08:00
|
|
|
sigemptyset(&set);
|
|
|
|
|
|
|
|
if (sigprocmask(SIG_SETMASK, &set, NULL) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
|
|
|
|
"sigprocmask() failed");
|
|
|
|
}
|
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
ngx_init_temp_number();
|
2003-07-01 23:00:03 +08:00
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
/*
|
|
|
|
* disable deleting previous events for the listening sockets because
|
|
|
|
* in the worker processes there are no events at all at this point
|
|
|
|
*/
|
|
|
|
ls = cycle->listening.elts;
|
|
|
|
for (i = 0; i < cycle->listening.nelts; i++) {
|
|
|
|
ls[i].remain = 0;
|
2003-07-02 22:41:17 +08:00
|
|
|
}
|
2003-07-01 23:00:03 +08:00
|
|
|
|
2003-07-02 22:41:17 +08:00
|
|
|
for (i = 0; ngx_modules[i]; i++) {
|
2004-01-07 00:49:34 +08:00
|
|
|
if (ngx_modules[i]->init_process) {
|
|
|
|
if (ngx_modules[i]->init_process(cycle) == NGX_ERROR) {
|
2003-07-04 23:10:33 +08:00
|
|
|
/* fatal */
|
|
|
|
exit(1);
|
|
|
|
}
|
2003-07-01 23:00:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-23 01:10:46 +08:00
|
|
|
ngx_setproctitle("worker process");
|
|
|
|
|
2004-02-24 04:57:12 +08:00
|
|
|
#if (NGX_THREADS)
|
|
|
|
|
2004-02-26 04:16:15 +08:00
|
|
|
if (ngx_init_threads(5, 128 * 1024 * 1024, cycle) == NGX_ERROR) {
|
2004-02-25 01:31:46 +08:00
|
|
|
/* fatal */
|
|
|
|
exit(1);
|
|
|
|
}
|
2004-02-24 04:57:12 +08:00
|
|
|
|
|
|
|
for (i = 0; i < 1; i++) {
|
2004-02-25 01:31:46 +08:00
|
|
|
if (ngx_create_thread(&tid, ngx_worker_thread_cycle,
|
|
|
|
cycle, cycle->log) != 0)
|
|
|
|
{
|
|
|
|
/* fatal */
|
|
|
|
exit(1);
|
|
|
|
}
|
2004-02-24 04:57:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
for ( ;; ) {
|
|
|
|
ngx_log_debug0(NGX_LOG_DEBUG_EVENT, cycle->log, 0, "worker cycle");
|
2003-07-03 02:51:41 +08:00
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
ngx_process_events(cycle->log);
|
2003-07-01 23:00:03 +08:00
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
if (ngx_terminate) {
|
|
|
|
ngx_log_error(NGX_LOG_INFO, cycle->log, 0, "exiting");
|
|
|
|
exit(0);
|
2003-07-02 13:01:53 +08:00
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
if (ngx_quit) {
|
|
|
|
ngx_log_error(NGX_LOG_INFO, cycle->log, 0,
|
2004-01-23 17:26:18 +08:00
|
|
|
"gracefully shutting down");
|
|
|
|
ngx_setproctitle("worker process is shutting down");
|
2004-01-07 00:49:34 +08:00
|
|
|
break;
|
2003-07-01 23:00:03 +08:00
|
|
|
}
|
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
if (ngx_reopen) {
|
|
|
|
ngx_log_error(NGX_LOG_INFO, cycle->log, 0, "reopen logs");
|
2004-01-23 01:10:46 +08:00
|
|
|
ngx_reopen_files(cycle, -1);
|
2004-01-07 00:49:34 +08:00
|
|
|
ngx_reopen = 0;
|
2003-07-01 23:00:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
ngx_close_listening_sockets(cycle);
|
2003-01-10 14:09:20 +08:00
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
for ( ;; ) {
|
|
|
|
if (ngx_event_timer_rbtree == &ngx_event_timer_sentinel) {
|
|
|
|
ngx_log_error(NGX_LOG_INFO, cycle->log, 0, "exiting");
|
|
|
|
exit(0);
|
2003-05-30 22:27:59 +08:00
|
|
|
}
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
ngx_log_debug0(NGX_LOG_DEBUG_EVENT, cycle->log, 0, "worker cycle");
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
ngx_process_events(cycle->log);
|
2004-02-05 04:30:08 +08:00
|
|
|
|
|
|
|
if (ngx_reopen) {
|
|
|
|
ngx_log_error(NGX_LOG_INFO, cycle->log, 0, "reopen logs");
|
|
|
|
ngx_reopen_files(cycle, -1);
|
|
|
|
ngx_reopen = 0;
|
|
|
|
}
|
2003-05-27 20:18:54 +08:00
|
|
|
}
|
2002-08-20 22:48:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-24 04:57:12 +08:00
|
|
|
#if (NGX_THREADS)
|
|
|
|
|
|
|
|
int ngx_worker_thread_cycle(void *data)
|
|
|
|
{
|
|
|
|
ngx_cycle_t *cycle = data;
|
|
|
|
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
/* STUB */
|
|
|
|
|
|
|
|
ngx_log_debug1(NGX_LOG_DEBUG_CORE, ngx_cycle->log, ngx_errno,
|
|
|
|
"thread %d started", ngx_thread_self());
|
|
|
|
|
|
|
|
ngx_setproctitle("worker thread");
|
|
|
|
|
|
|
|
sleep(5);
|
|
|
|
|
|
|
|
ngx_gettimeofday(&tv);
|
|
|
|
ngx_time_update(tv.tv_sec);
|
|
|
|
|
|
|
|
ngx_log_debug1(NGX_LOG_DEBUG_CORE, ngx_cycle->log, ngx_errno,
|
|
|
|
"thread %d done", ngx_thread_self());
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
static ngx_int_t ngx_add_inherited_sockets(ngx_cycle_t *cycle, char **envp)
|
2004-01-06 04:55:48 +08:00
|
|
|
{
|
|
|
|
char *p, *v;
|
|
|
|
ngx_socket_t s;
|
|
|
|
ngx_listening_t *ls;
|
2003-06-11 23:28:34 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
for ( /* void */ ; *envp; envp++) {
|
|
|
|
if (ngx_strncmp(*envp, NGINX_VAR, NGINX_VAR_LEN) != 0) {
|
|
|
|
continue;
|
|
|
|
}
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_log_error(NGX_LOG_INFO, cycle->log, 0,
|
|
|
|
"using inherited sockets from \"%s\"", *envp);
|
2002-08-20 22:48:28 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_init_array(cycle->listening, cycle->pool,
|
|
|
|
10, sizeof(ngx_listening_t), NGX_ERROR);
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
for (p = *envp + NGINX_VAR_LEN, v = p; *p; p++) {
|
|
|
|
if (*p == ':' || *p == ';') {
|
|
|
|
s = ngx_atoi(v, p - v);
|
|
|
|
if (s == NGX_ERROR) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, 0,
|
|
|
|
"invalid socket number \"%s\" "
|
|
|
|
"in NGINX enviroment variable, "
|
|
|
|
"ignoring the rest of the variable", v);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
v = p + 1;
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
if (!(ls = ngx_push_array(&cycle->listening))) {
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
ls->fd = s;
|
2002-08-20 22:48:28 +08:00
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
|
2004-01-09 05:02:06 +08:00
|
|
|
ngx_inherited = 1;
|
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
return ngx_set_inherited_sockets(cycle);
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
2003-07-07 14:11:50 +08:00
|
|
|
|
2004-01-14 05:33:59 +08:00
|
|
|
static ngx_pid_t ngx_exec_new_binary(ngx_cycle_t *cycle, char *const *argv)
|
2003-07-07 14:11:50 +08:00
|
|
|
{
|
2004-01-06 04:55:48 +08:00
|
|
|
char *env[2], *var, *p;
|
|
|
|
ngx_int_t i;
|
2004-01-14 05:33:59 +08:00
|
|
|
ngx_pid_t pid;
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_exec_ctx_t ctx;
|
|
|
|
ngx_listening_t *ls;
|
2003-07-07 14:11:50 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
ctx.path = argv[0];
|
|
|
|
ctx.name = "new binary process";
|
|
|
|
ctx.argv = argv;
|
2003-07-07 14:11:50 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
var = ngx_alloc(NGINX_VAR_LEN
|
|
|
|
+ cycle->listening.nelts * (NGX_INT32_LEN + 1) + 1,
|
|
|
|
cycle->log);
|
2003-07-07 14:11:50 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
p = ngx_cpymem(var, NGINX_VAR, NGINX_VAR_LEN);
|
2003-07-07 14:11:50 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
ls = cycle->listening.elts;
|
|
|
|
for (i = 0; i < cycle->listening.nelts; i++) {
|
|
|
|
p += ngx_snprintf(p, NGX_INT32_LEN + 2, "%u;", ls[i].fd);
|
|
|
|
}
|
2003-07-07 14:11:50 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
env[0] = var;
|
|
|
|
env[1] = NULL;
|
|
|
|
ctx.envp = (char *const *) &env;
|
2003-07-07 14:11:50 +08:00
|
|
|
|
2004-01-14 05:33:59 +08:00
|
|
|
pid = ngx_exec(cycle, &ctx);
|
2003-07-07 14:11:50 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_free(var);
|
2004-01-14 05:33:59 +08:00
|
|
|
|
|
|
|
return pid;
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
2003-07-07 14:11:50 +08:00
|
|
|
|
|
|
|
|
2004-02-10 04:47:18 +08:00
|
|
|
static ngx_int_t ngx_getopt(ngx_master_ctx_t *ctx, ngx_cycle_t *cycle)
|
|
|
|
{
|
|
|
|
ngx_int_t i;
|
|
|
|
|
|
|
|
for (i = 1; i < ctx->argc; i++) {
|
|
|
|
if (ctx->argv[i][0] != '-') {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, 0,
|
|
|
|
"invalid option: \"%s\"", ctx->argv[i]);
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ctx->argv[i][1]) {
|
|
|
|
|
|
|
|
case 'c':
|
|
|
|
cycle->conf_file.data = ctx->argv[++i];
|
|
|
|
cycle->conf_file.len = ngx_strlen(cycle->conf_file.data);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, 0,
|
|
|
|
"invalid option: \"%s\"", ctx->argv[i]);
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-11 00:23:38 +08:00
|
|
|
if (cycle->conf_file.data == NULL) {
|
2004-02-10 04:47:18 +08:00
|
|
|
cycle->conf_file.len = sizeof(NGINX_CONF) - 1;
|
|
|
|
cycle->conf_file.data = NGINX_CONF;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
static ngx_int_t ngx_core_module_init(ngx_cycle_t *cycle)
|
|
|
|
{
|
|
|
|
ngx_core_conf_t *ccf;
|
2003-07-07 14:11:50 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
/*
|
|
|
|
* ngx_core_module has a special init procedure: it is called by
|
|
|
|
* ngx_init_cycle() before the configuration file parsing to create
|
|
|
|
* ngx_core_module configuration and to set its default parameters
|
|
|
|
*/
|
2003-07-07 14:11:50 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
if (((void **)(cycle->conf_ctx))[ngx_core_module.index] != NULL) {
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
2003-07-07 14:11:50 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
if (!(ccf = ngx_pcalloc(cycle->pool, sizeof(ngx_core_conf_t)))) {
|
|
|
|
return NGX_ERROR;
|
2003-07-07 14:11:50 +08:00
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
/* set by pcalloc()
|
|
|
|
*
|
|
|
|
* ccf->pid = NULL;
|
2004-02-11 00:23:38 +08:00
|
|
|
* ccf->newpid = NULL;
|
2004-01-06 04:55:48 +08:00
|
|
|
*/
|
2004-01-21 04:40:08 +08:00
|
|
|
ccf->daemon = NGX_CONF_UNSET;
|
|
|
|
ccf->master = NGX_CONF_UNSET;
|
2004-01-22 14:47:28 +08:00
|
|
|
ccf->worker_reopen = NGX_CONF_UNSET;
|
2004-01-21 04:40:08 +08:00
|
|
|
ccf->user = (uid_t) NGX_CONF_UNSET;
|
|
|
|
ccf->group = (gid_t) NGX_CONF_UNSET;
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
((void **)(cycle->conf_ctx))[ngx_core_module.index] = ccf;
|
|
|
|
|
|
|
|
return NGX_OK;
|
2003-07-07 14:11:50 +08:00
|
|
|
}
|
2004-01-21 04:40:08 +08:00
|
|
|
|
|
|
|
|
|
|
|
static char *ngx_set_user(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
|
|
|
|
{
|
|
|
|
struct passwd *pwd;
|
|
|
|
struct group *grp;
|
|
|
|
ngx_str_t *value;
|
|
|
|
ngx_core_conf_t *ccf;
|
|
|
|
|
|
|
|
ccf = *(void **)conf;
|
|
|
|
|
|
|
|
if (ccf->user != (uid_t) NGX_CONF_UNSET) {
|
|
|
|
return "is duplicate";
|
|
|
|
}
|
|
|
|
|
|
|
|
value = (ngx_str_t *) cf->args->elts;
|
|
|
|
|
|
|
|
pwd = getpwnam(value[1].data);
|
|
|
|
if (pwd == NULL) {
|
|
|
|
ngx_conf_log_error(NGX_LOG_EMERG, cf, ngx_errno,
|
|
|
|
"getpwnam(%s) failed", value[1].data);
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ccf->user = pwd->pw_uid;
|
|
|
|
|
|
|
|
if (cf->args->nelts == 2) {
|
|
|
|
return NGX_CONF_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
grp = getgrnam(value[2].data);
|
|
|
|
if (grp == NULL) {
|
|
|
|
ngx_conf_log_error(NGX_LOG_EMERG, cf, ngx_errno,
|
|
|
|
"getgrnam(%s) failed", value[1].data);
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ccf->group = grp->gr_gid;
|
|
|
|
|
|
|
|
return NGX_CONF_OK;
|
|
|
|
}
|