lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1829 lines
48 KiB
1829 lines
48 KiB
#include "first.h" |
|
|
|
#include "base.h" |
|
#include "buffer.h" |
|
#include "burl.h" |
|
#include "network.h" |
|
#include "log.h" |
|
#include "rand.h" |
|
#include "chunk.h" |
|
#include "http_auth.h" |
|
#include "http_vhostdb.h" |
|
#include "fdevent.h" |
|
#include "connections.h" |
|
#include "sock_addr.h" |
|
#include "stat_cache.h" |
|
#include "plugin.h" |
|
#include "network_write.h" |
|
|
|
#ifdef HAVE_VERSIONSTAMP_H |
|
# include "versionstamp.h" |
|
#else |
|
# define REPO_VERSION "" |
|
#endif |
|
|
|
#define PACKAGE_DESC PACKAGE_NAME "/" PACKAGE_VERSION REPO_VERSION |
|
static const buffer default_server_tag = { CONST_STR_LEN(PACKAGE_DESC), 0 }; |
|
|
|
#include <sys/types.h> |
|
#include <sys/time.h> |
|
#include <sys/stat.h> |
|
#include <sys/wait.h> |
|
|
|
#include <string.h> |
|
#include <errno.h> |
|
#include <fcntl.h> |
|
#include <unistd.h> |
|
#include <stdlib.h> |
|
#include <time.h> |
|
#include <signal.h> |
|
#include <locale.h> |
|
|
|
#include <stdio.h> |
|
|
|
#ifdef HAVE_GETOPT_H |
|
# include <getopt.h> |
|
#endif |
|
|
|
#ifdef HAVE_VALGRIND_VALGRIND_H |
|
# include <valgrind/valgrind.h> |
|
#endif |
|
|
|
#ifdef HAVE_SYS_WAIT_H |
|
# include <sys/wait.h> |
|
#endif |
|
|
|
#ifdef HAVE_PWD_H |
|
# include <grp.h> |
|
# include <pwd.h> |
|
#endif |
|
|
|
#ifdef HAVE_SYSLOG_H |
|
# include <syslog.h> |
|
#endif |
|
|
|
#ifdef HAVE_SYS_LOADAVG_H |
|
# include <sys/loadavg.h> |
|
#endif |
|
|
|
#ifdef HAVE_SYS_RESOURCE_H |
|
# include <sys/resource.h> |
|
#endif |
|
|
|
#ifdef HAVE_SYS_PRCTL_H |
|
# include <sys/prctl.h> |
|
#endif |
|
|
|
#include "sys-crypto.h" |
|
#ifdef USE_OPENSSL_CRYPTO |
|
#define USE_SSL |
|
#define TEXT_SSL " (ssl)" |
|
#else |
|
#define TEXT_SSL |
|
#endif |
|
|
|
#ifndef __sgi |
|
/* IRIX doesn't like the alarm based time() optimization */ |
|
/* #define USE_ALARM */ |
|
#endif |
|
|
|
typedef struct { |
|
PLUGIN_DATA; |
|
specific_config defaults; |
|
} config_data_base; |
|
|
|
static int oneshot_fd = 0; |
|
static volatile int pid_fd = -2; |
|
static server_socket_array graceful_sockets; |
|
static server_socket_array inherited_sockets; |
|
static volatile sig_atomic_t graceful_restart = 0; |
|
static volatile sig_atomic_t graceful_shutdown = 0; |
|
static volatile sig_atomic_t srv_shutdown = 0; |
|
static volatile sig_atomic_t handle_sig_child = 0; |
|
static volatile sig_atomic_t handle_sig_alarm = 1; |
|
static volatile sig_atomic_t handle_sig_hup = 0; |
|
static time_t idle_limit = 0; |
|
|
|
#if defined(HAVE_SIGACTION) && defined(SA_SIGINFO) |
|
static volatile siginfo_t last_sigterm_info; |
|
static volatile siginfo_t last_sighup_info; |
|
|
|
static void sigaction_handler(int sig, siginfo_t *si, void *context) { |
|
static const siginfo_t empty_siginfo; |
|
UNUSED(context); |
|
|
|
if (!si) *(const siginfo_t **)&si = &empty_siginfo; |
|
|
|
switch (sig) { |
|
case SIGTERM: |
|
srv_shutdown = 1; |
|
last_sigterm_info = *si; |
|
break; |
|
case SIGUSR1: |
|
if (!graceful_shutdown) { |
|
graceful_restart = 1; |
|
graceful_shutdown = 1; |
|
last_sigterm_info = *si; |
|
} |
|
break; |
|
case SIGINT: |
|
if (graceful_shutdown) { |
|
if (2 == graceful_restart) |
|
graceful_restart = 1; |
|
else |
|
srv_shutdown = 1; |
|
} else { |
|
graceful_shutdown = 1; |
|
} |
|
last_sigterm_info = *si; |
|
|
|
break; |
|
case SIGALRM: |
|
handle_sig_alarm = 1; |
|
break; |
|
case SIGHUP: |
|
handle_sig_hup = 1; |
|
last_sighup_info = *si; |
|
break; |
|
case SIGCHLD: |
|
handle_sig_child = 1; |
|
break; |
|
} |
|
} |
|
#elif defined(HAVE_SIGNAL) || defined(HAVE_SIGACTION) |
|
static void signal_handler(int sig) { |
|
switch (sig) { |
|
case SIGTERM: srv_shutdown = 1; break; |
|
case SIGUSR1: |
|
if (!graceful_shutdown) { |
|
graceful_restart = 1; |
|
graceful_shutdown = 1; |
|
} |
|
break; |
|
case SIGINT: |
|
if (graceful_shutdown) { |
|
if (2 == graceful_restart) |
|
graceful_restart = 1; |
|
else |
|
srv_shutdown = 1; |
|
} else { |
|
graceful_shutdown = 1; |
|
} |
|
break; |
|
case SIGALRM: handle_sig_alarm = 1; break; |
|
case SIGHUP: handle_sig_hup = 1; break; |
|
case SIGCHLD: handle_sig_child = 1; break; |
|
} |
|
} |
|
#endif |
|
|
|
#ifdef HAVE_FORK |
|
static int daemonize(void) { |
|
int pipefd[2]; |
|
pid_t pid; |
|
#ifdef SIGTTOU |
|
signal(SIGTTOU, SIG_IGN); |
|
#endif |
|
#ifdef SIGTTIN |
|
signal(SIGTTIN, SIG_IGN); |
|
#endif |
|
#ifdef SIGTSTP |
|
signal(SIGTSTP, SIG_IGN); |
|
#endif |
|
|
|
if (pipe(pipefd) < 0) exit(-1); |
|
|
|
if (0 > (pid = fork())) exit(-1); |
|
|
|
if (0 < pid) { |
|
char buf; |
|
ssize_t bytes; |
|
|
|
close(pipefd[1]); |
|
/* parent waits for grandchild to be ready */ |
|
do { |
|
bytes = read(pipefd[0], &buf, sizeof(buf)); |
|
} while (bytes < 0 && EINTR == errno); |
|
close(pipefd[0]); |
|
|
|
if (bytes <= 0) { |
|
/* closed fd (without writing) == failure in grandchild */ |
|
fputs("daemonized server failed to start; check error log for details\n", stderr); |
|
exit(-1); |
|
} |
|
|
|
exit(0); |
|
} |
|
|
|
close(pipefd[0]); |
|
|
|
if (-1 == setsid()) exit(0); |
|
|
|
signal(SIGHUP, SIG_IGN); |
|
|
|
if (0 != fork()) exit(0); |
|
|
|
if (0 != chdir("/")) exit(0); |
|
|
|
fdevent_setfd_cloexec(pipefd[1]); |
|
return pipefd[1]; |
|
} |
|
#endif |
|
|
|
__attribute_cold__ |
|
static server *server_init(void) { |
|
server *srv = calloc(1, sizeof(*srv)); |
|
force_assert(srv); |
|
#define CLEAN(x) \ |
|
srv->x = buffer_init(); |
|
|
|
CLEAN(ts_date_str); |
|
CLEAN(tmp_buf); |
|
CLEAN(tmp_chunk_len); |
|
#undef CLEAN |
|
|
|
for (int i = 0; i < FILE_CACHE_MAX; ++i) { |
|
srv->mtime_cache[i].mtime = (time_t)-1; |
|
} |
|
|
|
li_rand_reseed(); |
|
|
|
srv->cur_ts = time(NULL); |
|
srv->startup_ts = srv->cur_ts; |
|
|
|
srv->errh = log_error_st_init(&srv->cur_ts, &srv->last_generated_debug_ts); |
|
|
|
config_init(srv); |
|
|
|
srv->request_env = plugins_call_handle_request_env; |
|
|
|
srv->loadavg[0] = 0.0; |
|
srv->loadavg[1] = 0.0; |
|
srv->loadavg[2] = 0.0; |
|
|
|
return srv; |
|
} |
|
|
|
__attribute_cold__ |
|
static void server_free(server *srv) { |
|
for (int i = 0; i < FILE_CACHE_MAX; ++i) { |
|
free(srv->mtime_cache[i].str.ptr); |
|
} |
|
|
|
if (oneshot_fd > 0) { |
|
close(oneshot_fd); |
|
} |
|
|
|
#define CLEAN(x) \ |
|
buffer_free(srv->x); |
|
|
|
CLEAN(ts_date_str); |
|
CLEAN(tmp_buf); |
|
|
|
CLEAN(tmp_chunk_len); |
|
#undef CLEAN |
|
|
|
fdevent_free(srv->ev); |
|
|
|
config_free(srv); |
|
|
|
array_free_data(&srv->status); |
|
|
|
free(srv->joblist.ptr); |
|
free(srv->fdwaitqueue.ptr); |
|
|
|
if (srv->stat_cache) { |
|
stat_cache_free(srv->stat_cache); |
|
} |
|
|
|
li_rand_cleanup(); |
|
chunkqueue_chunk_pool_free(); |
|
|
|
log_error_st_free(srv->errh); |
|
free(srv); |
|
} |
|
|
|
__attribute_cold__ |
|
static void remove_pid_file(server *srv) { |
|
if (pid_fd <= -2) return; |
|
if (!buffer_string_is_empty(srv->srvconf.pid_file) && 0 <= pid_fd) { |
|
if (0 != ftruncate(pid_fd, 0)) { |
|
log_error_write(srv, __FILE__, __LINE__, "sbds", |
|
"ftruncate failed for:", |
|
srv->srvconf.pid_file, |
|
errno, |
|
strerror(errno)); |
|
} |
|
} |
|
if (0 <= pid_fd) { |
|
close(pid_fd); |
|
pid_fd = -1; |
|
} |
|
if (!buffer_string_is_empty(srv->srvconf.pid_file) && |
|
buffer_string_is_empty(srv->srvconf.changeroot)) { |
|
if (0 != unlink(srv->srvconf.pid_file->ptr)) { |
|
if (errno != EACCES && errno != EPERM) { |
|
log_error_write(srv, __FILE__, __LINE__, "sbds", |
|
"unlink failed for:", |
|
srv->srvconf.pid_file, |
|
errno, |
|
strerror(errno)); |
|
} |
|
} |
|
} |
|
} |
|
|
|
|
|
__attribute_cold__ |
|
static server_socket * server_oneshot_getsock(server *srv, sock_addr *cnt_addr) { |
|
server_socket *srv_socket, *srv_socket_wild = NULL; |
|
for (uint32_t i = 0; i < srv->srv_sockets.used; ++i) { |
|
srv_socket = srv->srv_sockets.ptr[i]; |
|
if (!sock_addr_is_port_eq(&srv_socket->addr,cnt_addr)) continue; |
|
if (sock_addr_is_addr_eq(&srv_socket->addr,cnt_addr)) return srv_socket; |
|
|
|
if (NULL != srv_socket_wild) continue; |
|
if (sock_addr_is_addr_wildcard(&srv_socket->addr)) { |
|
srv_socket_wild = srv_socket; |
|
} |
|
} |
|
|
|
if (NULL != srv_socket_wild) { |
|
return srv_socket_wild; |
|
} else if (srv->srv_sockets.used) { |
|
return srv->srv_sockets.ptr[0]; |
|
} else { |
|
log_error_write(srv, __FILE__, __LINE__, "s", "no sockets configured"); |
|
return NULL; |
|
} |
|
} |
|
|
|
|
|
__attribute_cold__ |
|
static int server_oneshot_init(server *srv, int fd) { |
|
/* Note: does not work with netcat due to requirement that fd be socket. |
|
* STDOUT_FILENO was not saved earlier in startup, and that is to where |
|
* netcat expects output to be sent. Since lighttpd expects connections |
|
* to be sockets, con->fd is where output is sent; separate fds are not |
|
* stored for input and output, but netcat has different fds for stdin |
|
* and * stdout. To support netcat, would additionally need to avoid |
|
* S_ISSOCK(), getsockname(), and getpeername() below, reconstructing |
|
* addresses from environment variables: |
|
* NCAT_LOCAL_ADDR NCAT_LOCAL_PORT |
|
* NCAT_REMOTE_ADDR NCAT_REMOTE_PORT |
|
* NCAT_PROTO |
|
*/ |
|
connection *con; |
|
server_socket *srv_socket; |
|
sock_addr cnt_addr; |
|
socklen_t cnt_len; |
|
struct stat st; |
|
|
|
if (0 != fstat(fd, &st)) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", "fstat:", strerror(errno)); |
|
return 0; |
|
} |
|
|
|
if (!S_ISSOCK(st.st_mode)) { |
|
/* require that fd is a socket |
|
* (modules might expect STDIN_FILENO and STDOUT_FILENO opened to /dev/null) */ |
|
log_error_write(srv, __FILE__, __LINE__, "s", "lighttpd -1 stdin is not a socket"); |
|
return 0; |
|
} |
|
|
|
cnt_len = sizeof(cnt_addr); |
|
if (0 != getsockname(fd, (struct sockaddr *)&cnt_addr, &cnt_len)) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", "getsockname:", strerror(errno)); |
|
return 0; |
|
} |
|
|
|
srv_socket = server_oneshot_getsock(srv, &cnt_addr); |
|
if (NULL == srv_socket) return 0; |
|
|
|
cnt_len = sizeof(cnt_addr); |
|
if (0 != getpeername(fd, (struct sockaddr *)&cnt_addr, &cnt_len)) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", "getpeername:", strerror(errno)); |
|
return 0; |
|
} |
|
|
|
/*(must set flags; fd did not pass through fdevent accept() logic)*/ |
|
if (-1 == fdevent_fcntl_set_nb_cloexec(srv->ev, fd)) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", "fcntl:", strerror(errno)); |
|
return 0; |
|
} |
|
|
|
if (sock_addr_get_family(&cnt_addr) != AF_UNIX) { |
|
network_accept_tcp_nagle_disable(fd); |
|
} |
|
|
|
con = connection_accepted(srv, srv_socket, &cnt_addr, fd); |
|
if (NULL == con) return 0; |
|
|
|
connection_state_machine(srv, con); |
|
return 1; |
|
} |
|
|
|
|
|
__attribute_cold__ |
|
static void show_version (void) { |
|
char *b = PACKAGE_DESC TEXT_SSL \ |
|
" - a light and fast webserver\n" |
|
#ifdef NONREPRODUCIBLE_BUILD |
|
"Build-Date: " __DATE__ " " __TIME__ "\n"; |
|
#endif |
|
; |
|
write_all(STDOUT_FILENO, b, strlen(b)); |
|
} |
|
|
|
__attribute_cold__ |
|
static void show_features (void) { |
|
static const char features[] = |
|
"\nFeatures:\n\n" |
|
#ifdef HAVE_IPV6 |
|
"\t+ IPv6 support\n" |
|
#else |
|
"\t- IPv6 support\n" |
|
#endif |
|
#if defined HAVE_ZLIB_H && defined HAVE_LIBZ |
|
"\t+ zlib support\n" |
|
#else |
|
"\t- zlib support\n" |
|
#endif |
|
#if defined HAVE_BZLIB_H && defined HAVE_LIBBZ2 |
|
"\t+ bzip2 support\n" |
|
#else |
|
"\t- bzip2 support\n" |
|
#endif |
|
#if defined(HAVE_CRYPT) || defined(HAVE_CRYPT_R) || defined(HAVE_LIBCRYPT) |
|
"\t+ crypt support\n" |
|
#else |
|
"\t- crypt support\n" |
|
#endif |
|
#ifdef USE_SSL |
|
"\t+ SSL support\n" |
|
#else |
|
"\t- SSL support\n" |
|
#endif |
|
#ifdef HAVE_LIBPCRE |
|
"\t+ PCRE support\n" |
|
#else |
|
"\t- PCRE support\n" |
|
#endif |
|
#ifdef HAVE_MYSQL |
|
"\t+ MySQL support\n" |
|
#else |
|
"\t- MySQL support\n" |
|
#endif |
|
#ifdef HAVE_PGSQL |
|
"\t+ PgSQL support\n" |
|
#else |
|
"\t- PgSQL support\n" |
|
#endif |
|
#ifdef HAVE_DBI |
|
"\t+ DBI support\n" |
|
#else |
|
"\t- DBI support\n" |
|
#endif |
|
#ifdef HAVE_KRB5 |
|
"\t+ Kerberos support\n" |
|
#else |
|
"\t- Kerberos support\n" |
|
#endif |
|
#if defined(HAVE_LDAP_H) && defined(HAVE_LBER_H) && defined(HAVE_LIBLDAP) && defined(HAVE_LIBLBER) |
|
"\t+ LDAP support\n" |
|
#else |
|
"\t- LDAP support\n" |
|
#endif |
|
#ifdef HAVE_PAM |
|
"\t+ PAM support\n" |
|
#else |
|
"\t- PAM support\n" |
|
#endif |
|
#ifdef USE_MEMCACHED |
|
"\t+ memcached support\n" |
|
#else |
|
"\t- memcached support\n" |
|
#endif |
|
#ifdef HAVE_FAM_H |
|
"\t+ FAM support\n" |
|
#else |
|
"\t- FAM support\n" |
|
#endif |
|
#ifdef HAVE_LUA_H |
|
"\t+ LUA support\n" |
|
#else |
|
"\t- LUA support\n" |
|
#endif |
|
#ifdef HAVE_LIBXML_H |
|
"\t+ xml support\n" |
|
#else |
|
"\t- xml support\n" |
|
#endif |
|
#ifdef HAVE_SQLITE3_H |
|
"\t+ SQLite support\n" |
|
#else |
|
"\t- SQLite support\n" |
|
#endif |
|
#ifdef HAVE_GDBM_H |
|
"\t+ GDBM support\n" |
|
#else |
|
"\t- GDBM support\n" |
|
#endif |
|
; |
|
show_version(); |
|
printf("%s%s%s\n", fdevent_show_event_handlers(), network_write_show_handlers(), features); |
|
} |
|
|
|
__attribute_cold__ |
|
static void show_help (void) { |
|
char *b = PACKAGE_DESC TEXT_SSL |
|
#ifdef NONREPRODUCIBLE_BUILD |
|
" ("__DATE__ " " __TIME__ ")" |
|
#endif |
|
" - a light and fast webserver\n" \ |
|
"usage:\n" \ |
|
" -f <name> filename of the config-file\n" \ |
|
" -m <name> module directory (default: "LIBRARY_DIR")\n" \ |
|
" -i <secs> graceful shutdown after <secs> of inactivity\n" \ |
|
" -1 process single (one) request on stdin socket, then exit\n" \ |
|
" -p print the parsed config-file in internal form, and exit\n" \ |
|
" -t test config-file syntax, then exit\n" \ |
|
" -tt test config-file syntax, load and init modules, then exit\n" \ |
|
" -D don't go to background (default: go to background)\n" \ |
|
" -v show version\n" \ |
|
" -V show compile-time features\n" \ |
|
" -h show this help\n" \ |
|
"\n" |
|
; |
|
write_all(STDOUT_FILENO, b, strlen(b)); |
|
} |
|
|
|
/** |
|
* open the errorlog |
|
* |
|
* we have 4 possibilities: |
|
* - stderr (default) |
|
* - syslog |
|
* - logfile |
|
* - pipe |
|
* |
|
*/ |
|
|
|
static int log_error_open(server *srv) { |
|
log_error_st *errh = srv->errh; |
|
int errfd; |
|
#ifdef HAVE_SYSLOG_H |
|
/* perhaps someone wants to use syslog() */ |
|
int facility = -1; |
|
if (!buffer_string_is_empty(srv->srvconf.syslog_facility)) { |
|
static const struct facility_name_st { |
|
const char *name; |
|
int val; |
|
} facility_names[] = { |
|
{ "auth", LOG_AUTH } |
|
#ifdef LOG_AUTHPRIV |
|
,{ "authpriv", LOG_AUTHPRIV } |
|
#endif |
|
#ifdef LOG_CRON |
|
,{ "cron", LOG_CRON } |
|
#endif |
|
,{ "daemon", LOG_DAEMON } |
|
#ifdef LOG_FTP |
|
,{ "ftp", LOG_FTP } |
|
#endif |
|
#ifdef LOG_KERN |
|
,{ "kern", LOG_KERN } |
|
#endif |
|
#ifdef LOG_LPR |
|
,{ "lpr", LOG_LPR } |
|
#endif |
|
#ifdef LOG_MAIL |
|
,{ "mail", LOG_MAIL } |
|
#endif |
|
#ifdef LOG_NEWS |
|
,{ "news", LOG_NEWS } |
|
#endif |
|
,{ "security", LOG_AUTH } /* DEPRECATED */ |
|
#ifdef LOG_SYSLOG |
|
,{ "syslog", LOG_SYSLOG } |
|
#endif |
|
#ifdef LOG_USER |
|
,{ "user", LOG_USER } |
|
#endif |
|
#ifdef LOG_UUCP |
|
,{ "uucp", LOG_UUCP } |
|
#endif |
|
,{ "local0", LOG_LOCAL0 } |
|
,{ "local1", LOG_LOCAL1 } |
|
,{ "local2", LOG_LOCAL2 } |
|
,{ "local3", LOG_LOCAL3 } |
|
,{ "local4", LOG_LOCAL4 } |
|
,{ "local5", LOG_LOCAL5 } |
|
,{ "local6", LOG_LOCAL6 } |
|
,{ "local7", LOG_LOCAL7 } |
|
}; |
|
for (unsigned int i = 0; i < sizeof(facility_names)/sizeof(facility_names[0]); ++i) { |
|
const struct facility_name_st *f = facility_names+i; |
|
if (0 == strcmp(srv->srvconf.syslog_facility->ptr, f->name)) { |
|
facility = f->val; |
|
break; |
|
} |
|
} |
|
if (-1 == facility) { |
|
log_error_write(srv, __FILE__, __LINE__, "SBS", |
|
"unrecognized server.syslog-facility: \"", |
|
srv->srvconf.syslog_facility, |
|
"\"; defaulting to \"daemon\" facility"); |
|
} |
|
} |
|
openlog("lighttpd", LOG_CONS|LOG_PID, -1==facility ? LOG_DAEMON : facility); |
|
#endif |
|
|
|
errh->errorlog_mode = ERRORLOG_FD; |
|
errh->errorlog_fd = STDERR_FILENO; |
|
|
|
if (srv->srvconf.errorlog_use_syslog) { |
|
errh->errorlog_mode = ERRORLOG_SYSLOG; |
|
} |
|
else if (!buffer_string_is_empty(srv->srvconf.errorlog_file)) { |
|
const char *logfile = srv->srvconf.errorlog_file->ptr; |
|
int fd = fdevent_open_logger(logfile); |
|
if (-1 == fd) { |
|
log_error_write(srv, __FILE__, __LINE__, "SSSS", |
|
"opening errorlog '", logfile, |
|
"' failed: ", strerror(errno)); |
|
return -1; |
|
} |
|
errh->errorlog_fd = fd; |
|
errh->errorlog_mode = logfile[0] == '|' ? ERRORLOG_PIPE : ERRORLOG_FILE; |
|
} |
|
|
|
if (errh->errorlog_mode == ERRORLOG_FD && !srv->srvconf.dont_daemonize) { |
|
/* We can only log to stderr in dont-daemonize mode; |
|
* if we do daemonize and no errorlog file is specified, |
|
* we log into /dev/null |
|
*/ |
|
errh->errorlog_fd = -1; |
|
} |
|
|
|
if (!buffer_string_is_empty(srv->srvconf.breakagelog_file)) { |
|
const char *logfile = srv->srvconf.breakagelog_file->ptr; |
|
|
|
if (errh->errorlog_mode == ERRORLOG_FD) { |
|
errh->errorlog_fd = dup(STDERR_FILENO); |
|
fdevent_setfd_cloexec(errh->errorlog_fd); |
|
} |
|
|
|
if (-1 == (errfd = fdevent_open_logger(logfile))) { |
|
log_error_write(srv, __FILE__, __LINE__, "SSSS", |
|
"opening errorlog '", logfile, |
|
"' failed: ", strerror(errno)); |
|
return -1; |
|
} |
|
|
|
if (*logfile == '|') fdevent_breakagelog_logger_pipe(errfd); |
|
} |
|
else if (!srv->srvconf.dont_daemonize) { |
|
/* move STDERR_FILENO to /dev/null */ |
|
if (-1 == (errfd = fdevent_open_devnull())) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", |
|
"opening /dev/null failed:", strerror(errno)); |
|
return -1; |
|
} |
|
} |
|
else { |
|
/*(leave STDERR_FILENO as-is)*/ |
|
errfd = -1; |
|
} |
|
|
|
if (0 != fdevent_set_stdin_stdout_stderr(-1, -1, errfd)) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", |
|
"setting stderr failed:", strerror(errno)); |
|
#ifdef FD_CLOEXEC |
|
if (-1 != errfd) close(errfd); |
|
#endif |
|
return -1; |
|
} |
|
#ifdef FD_CLOEXEC |
|
if (-1 != errfd) close(errfd); |
|
#endif |
|
|
|
return 0; |
|
} |
|
|
|
/** |
|
* cycle the errorlog |
|
* |
|
*/ |
|
|
|
static int log_error_cycle(server *srv) { |
|
/* cycle only if the error log is a file */ |
|
|
|
log_error_st *errh = srv->errh; |
|
if (errh->errorlog_mode == ERRORLOG_FILE) { |
|
const char *logfile = srv->srvconf.errorlog_file->ptr; |
|
if (-1 == fdevent_cycle_logger(logfile, &errh->errorlog_fd)) { |
|
/* write to old log */ |
|
log_error_write(srv, __FILE__, __LINE__, "SSSS", |
|
"cycling errorlog '", logfile, |
|
"' failed: ", strerror(errno)); |
|
} |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
__attribute_cold__ |
|
static int log_error_close(server *srv) { |
|
log_error_st *errh = srv->errh; |
|
switch(errh->errorlog_mode) { |
|
case ERRORLOG_PIPE: |
|
case ERRORLOG_FILE: |
|
case ERRORLOG_FD: |
|
if (-1 != errh->errorlog_fd) { |
|
/* don't close STDERR */ |
|
/* fdevent_close_logger_pipes() closes ERRORLOG_PIPE */ |
|
if (STDERR_FILENO != errh->errorlog_fd |
|
&& ERRORLOG_PIPE != errh->errorlog_mode) { |
|
close(errh->errorlog_fd); |
|
} |
|
errh->errorlog_fd = -1; |
|
} |
|
break; |
|
case ERRORLOG_SYSLOG: |
|
#ifdef HAVE_SYSLOG_H |
|
closelog(); |
|
#endif |
|
break; |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
__attribute_cold__ |
|
static void server_sockets_save (server *srv) { /* graceful_restart */ |
|
memcpy(&graceful_sockets, &srv->srv_sockets, sizeof(server_socket_array)); |
|
memset(&srv->srv_sockets, 0, sizeof(server_socket_array)); |
|
memcpy(&inherited_sockets, &srv->srv_sockets_inherited, sizeof(server_socket_array)); |
|
memset(&srv->srv_sockets_inherited, 0, sizeof(server_socket_array)); |
|
} |
|
|
|
__attribute_cold__ |
|
static void server_sockets_restore (server *srv) { /* graceful_restart */ |
|
memcpy(&srv->srv_sockets, &graceful_sockets, sizeof(server_socket_array)); |
|
memset(&graceful_sockets, 0, sizeof(server_socket_array)); |
|
memcpy(&srv->srv_sockets_inherited, &inherited_sockets, sizeof(server_socket_array)); |
|
memset(&inherited_sockets, 0, sizeof(server_socket_array)); |
|
} |
|
|
|
__attribute_cold__ |
|
static int server_sockets_set_nb_cloexec (server *srv) { |
|
if (srv->sockets_disabled) return 0; /* lighttpd -1 (one-shot mode) */ |
|
for (uint32_t i = 0; i < srv->srv_sockets.used; ++i) { |
|
server_socket *srv_socket = srv->srv_sockets.ptr[i]; |
|
if (-1 == fdevent_fcntl_set_nb_cloexec_sock(srv->ev, srv_socket->fd)) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", |
|
"fcntl failed:", strerror(errno)); |
|
return -1; |
|
} |
|
} |
|
return 0; |
|
} |
|
|
|
__attribute_cold__ |
|
static void server_sockets_set_event (server *srv, int event) { |
|
for (uint32_t i = 0; i < srv->srv_sockets.used; ++i) { |
|
server_socket *srv_socket = srv->srv_sockets.ptr[i]; |
|
fdevent_fdnode_event_set(srv->ev, srv_socket->fdn, event); |
|
} |
|
} |
|
|
|
__attribute_cold__ |
|
static void server_sockets_unregister (server *srv) { |
|
if (2 == srv->sockets_disabled) return; |
|
srv->sockets_disabled = 2; |
|
for (uint32_t i = 0; i < srv->srv_sockets.used; ++i) |
|
network_unregister_sock(srv, srv->srv_sockets.ptr[i]); |
|
} |
|
|
|
__attribute_cold__ |
|
static void server_sockets_close (server *srv) { |
|
/* closing socket right away will make it possible for the next lighttpd |
|
* to take over (old-style graceful restart), but only if backends |
|
* (e.g. fastcgi, scgi, etc) are independent from lighttpd, rather |
|
* than started by lighttpd via "bin-path") |
|
*/ |
|
if (3 == srv->sockets_disabled) return; |
|
for (uint32_t i = 0; i < srv->srv_sockets.used; ++i) { |
|
server_socket *srv_socket = srv->srv_sockets.ptr[i]; |
|
if (-1 == srv_socket->fd) continue; |
|
if (2 != srv->sockets_disabled) network_unregister_sock(srv,srv_socket); |
|
close(srv_socket->fd); |
|
srv_socket->fd = -1; |
|
/* network_close() will cleanup after us */ |
|
} |
|
srv->sockets_disabled = 3; |
|
} |
|
|
|
__attribute_cold__ |
|
static void server_graceful_state (server *srv) { |
|
|
|
if (!srv_shutdown) connection_graceful_shutdown_maint(srv); |
|
|
|
if (!oneshot_fd |
|
&& (2 == srv->sockets_disabled || 3 == srv->sockets_disabled)) return; |
|
|
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"[note] graceful shutdown started"); |
|
|
|
/* no graceful restart if chroot()ed, if oneshot mode, or if idle timeout */ |
|
if (!buffer_string_is_empty(srv->srvconf.changeroot) |
|
|| oneshot_fd || 2 == graceful_shutdown) |
|
graceful_restart = 0; |
|
|
|
if (graceful_restart) { |
|
server_sockets_unregister(srv); |
|
if (pid_fd > 0) pid_fd = -pid_fd; /*(flag to skip removing pid file)*/ |
|
} |
|
else { |
|
server_sockets_close(srv); |
|
remove_pid_file(srv); |
|
/*(prevent more removal attempts)*/ |
|
if (srv->srvconf.pid_file) buffer_clear(srv->srvconf.pid_file); |
|
} |
|
} |
|
|
|
__attribute_cold__ |
|
static void server_sockets_enable (server *srv) { |
|
server_sockets_set_event(srv, FDEVENT_IN); |
|
srv->sockets_disabled = 0; |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"[note] sockets enabled again"); |
|
} |
|
|
|
__attribute_cold__ |
|
static void server_sockets_disable (server *srv) { |
|
server_sockets_set_event(srv, 0); |
|
srv->sockets_disabled = 1; |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
(srv->conns.used >= srv->max_conns) |
|
? "[note] sockets disabled, connection limit reached" |
|
: "[note] sockets disabled, out-of-fds"); |
|
} |
|
|
|
__attribute_cold__ |
|
static void server_overload_check (server *srv) { |
|
if (srv->cur_fds + (int)srv->fdwaitqueue.used < srv->max_fds_lowat |
|
&& srv->conns.used <= srv->max_conns * 9 / 10) { |
|
|
|
server_sockets_enable(srv); |
|
} |
|
} |
|
|
|
static void server_load_check (server *srv) { |
|
/* check if hit limits for num fds used or num connections */ |
|
if (srv->cur_fds + (int)srv->fdwaitqueue.used > srv->max_fds_hiwat |
|
|| srv->conns.used >= srv->max_conns) { |
|
|
|
server_sockets_disable(srv); |
|
} |
|
} |
|
|
|
__attribute_cold__ |
|
static void server_process_fdwaitqueue (server *srv) { |
|
connections * const fdwaitqueue = &srv->fdwaitqueue; |
|
uint32_t i = 0; |
|
for (int n = srv->max_fds - srv->cur_fds - 16; n > 0; --n) { |
|
if (i == fdwaitqueue->used) break; |
|
connection_state_machine(srv, fdwaitqueue->ptr[i++]); |
|
} |
|
if (i > 0 && 0 != (fdwaitqueue->used -= i)) { |
|
memmove(fdwaitqueue->ptr, fdwaitqueue->ptr+i, fdwaitqueue->used * sizeof(*(fdwaitqueue->ptr))); |
|
} |
|
} |
|
|
|
__attribute_cold__ |
|
static int server_main (server * const srv, int argc, char **argv) { |
|
int print_config = 0; |
|
int test_config = 0; |
|
int i_am_root = 0; |
|
int o; |
|
#ifdef HAVE_FORK |
|
int num_childs = 0; |
|
#endif |
|
uint32_t i; |
|
#ifdef HAVE_SIGACTION |
|
struct sigaction act; |
|
#endif |
|
|
|
#ifdef HAVE_FORK |
|
int parent_pipe_fd = -1; |
|
#endif |
|
int stdin_fd = -1; |
|
|
|
#ifdef HAVE_GETUID |
|
i_am_root = (0 == getuid()); |
|
#endif |
|
|
|
/* initialize globals (including file-scoped static globals) */ |
|
oneshot_fd = 0; |
|
srv_shutdown = 0; |
|
graceful_shutdown = 0; |
|
handle_sig_alarm = 1; |
|
handle_sig_hup = 0; |
|
idle_limit = 0; |
|
chunkqueue_set_tempdirs_default_reset(); |
|
http_auth_dumbdata_reset(); |
|
http_vhostdb_dumbdata_reset(); |
|
/*graceful_restart = 0;*//*(reset below to avoid further daemonizing)*/ |
|
/*(intentionally preserved)*/ |
|
/*memset(graceful_sockets, 0, sizeof(graceful_sockets));*/ |
|
/*memset(inherited_sockets, 0, sizeof(inherited_sockets));*/ |
|
/*pid_fd = -1;*/ |
|
|
|
while(-1 != (o = getopt(argc, argv, "f:m:i:hvVD1pt"))) { |
|
switch(o) { |
|
case 'f': |
|
if (srv->config_data_base) { |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"Can only read one config file. Use the include command to use multiple config files."); |
|
return -1; |
|
} |
|
if (config_read(srv, optarg)) { |
|
return -1; |
|
} |
|
break; |
|
case 'm': |
|
buffer_copy_string(srv->srvconf.modules_dir, optarg); |
|
break; |
|
case 'i': { |
|
char *endptr; |
|
long timeout = strtol(optarg, &endptr, 0); |
|
if (!*optarg || *endptr || timeout < 0) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", |
|
"Invalid idle timeout value:", optarg); |
|
return -1; |
|
} |
|
idle_limit = (time_t)timeout; |
|
break; |
|
} |
|
case 'p': print_config = 1; break; |
|
case 't': ++test_config; break; |
|
case '1': if (0 == oneshot_fd) oneshot_fd = dup(STDIN_FILENO); |
|
break; |
|
case 'D': srv->srvconf.dont_daemonize = 1; break; |
|
case 'v': show_version(); return 0; |
|
case 'V': show_features(); return 0; |
|
case 'h': show_help(); return 0; |
|
default: |
|
show_help(); |
|
return -1; |
|
} |
|
} |
|
|
|
#ifdef __CYGWIN__ |
|
if (!srv->config_data_base && NULL != getenv("NSSM_SERVICE_NAME")) { |
|
char *dir = getenv("NSSM_SERVICE_DIR"); |
|
if (NULL != dir && 0 != chdir(dir)) { |
|
log_error_write(srv, __FILE__, __LINE__, "sss", "chdir failed:", dir, strerror(errno)); |
|
return -1; |
|
} |
|
srv->srvconf.dont_daemonize = 1; |
|
buffer_copy_string_len(srv->srvconf.modules_dir, CONST_STR_LEN("modules")); |
|
if (config_read(srv, "conf/lighttpd.conf")) return -1; |
|
} |
|
#endif |
|
|
|
if (!srv->config_data_base) { |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"No configuration available. Try using -f option."); |
|
return -1; |
|
} |
|
|
|
if (print_config) { |
|
config_print(srv); |
|
fprintf(stdout, "\n"); |
|
} |
|
|
|
if (test_config) { |
|
if (srv->srvconf.pid_file) buffer_clear(srv->srvconf.pid_file); |
|
if (1 == test_config) { |
|
printf("Syntax OK\n"); |
|
} else { /*(test_config > 1)*/ |
|
test_config = 0; |
|
srv->srvconf.preflight_check = 1; |
|
srv->srvconf.dont_daemonize = 1; |
|
} |
|
} |
|
|
|
if (test_config || print_config) { |
|
return 0; |
|
} |
|
|
|
if (oneshot_fd) { |
|
if (oneshot_fd <= STDERR_FILENO) { |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"Invalid fds at startup with lighttpd -1"); |
|
return -1; |
|
} |
|
graceful_shutdown = 1; |
|
srv->sockets_disabled = 1; |
|
srv->srvconf.dont_daemonize = 1; |
|
if (srv->srvconf.pid_file) buffer_clear(srv->srvconf.pid_file); |
|
if (srv->srvconf.max_worker) { |
|
srv->srvconf.max_worker = 0; |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"server one-shot command line option disables server.max-worker config file option."); |
|
} |
|
} |
|
|
|
if (srv->srvconf.bindhost && buffer_is_equal_string(srv->srvconf.bindhost, CONST_STR_LEN("/dev/stdin"))) { |
|
stdin_fd = dup(STDIN_FILENO); |
|
if (stdin_fd <= STDERR_FILENO) { |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"Invalid fds at startup"); |
|
return -1; |
|
} |
|
} |
|
|
|
/* close stdin and stdout, as they are not needed */ |
|
{ |
|
struct stat st; |
|
int devnull; |
|
int errfd; |
|
do { |
|
/* coverity[overwrite_var : FALSE] */ |
|
devnull = fdevent_open_devnull(); |
|
#ifdef __COVERITY__ |
|
__coverity_escape__(devnull); |
|
#endif |
|
} while (-1 != devnull && devnull <= STDERR_FILENO); |
|
if (-1 == devnull) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", |
|
"opening /dev/null failed:", strerror(errno)); |
|
return -1; |
|
} |
|
errfd = (0 == fstat(STDERR_FILENO, &st)) ? -1 : devnull; |
|
if (0 != fdevent_set_stdin_stdout_stderr(devnull, devnull, errfd)) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", |
|
"setting default fds failed:", strerror(errno)); |
|
#ifdef FD_CLOEXEC |
|
if (-1 != errfd) close(errfd); |
|
if (devnull != errfd) close(devnull); |
|
#endif |
|
return -1; |
|
} |
|
#ifdef FD_CLOEXEC |
|
if (-1 != errfd) close(errfd); |
|
if (devnull != errfd) close(devnull); |
|
#endif |
|
} |
|
|
|
if (0 != config_set_defaults(srv)) { |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"setting default values failed"); |
|
return -1; |
|
} |
|
|
|
if (plugins_load(srv)) { |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"loading plugins finally failed"); |
|
return -1; |
|
} |
|
|
|
if (HANDLER_GO_ON != plugins_call_init(srv)) { |
|
log_error_write(srv, __FILE__, __LINE__, "s", "Initialization of plugins failed. Going down."); |
|
return -1; |
|
} |
|
|
|
/* mod_indexfile should be listed in server.modules prior to dynamic handlers */ |
|
i = 0; |
|
for (const char *pname = NULL; i < srv->plugins.used; ++i) { |
|
plugin *p = ((plugin **)srv->plugins.ptr)[i]; |
|
if (NULL != pname && 0 == strcmp(p->name, "indexfile")) { |
|
log_error_write(srv, __FILE__, __LINE__, "SS", |
|
"Warning: mod_indexfile should be listed in server.modules prior to mod_", pname); |
|
break; |
|
} |
|
if (p->handle_subrequest_start && p->handle_subrequest) { |
|
if (!pname) pname = p->name; |
|
} |
|
} |
|
|
|
/* open pid file BEFORE chroot */ |
|
if (-2 == pid_fd) pid_fd = -1; /*(initial startup state)*/ |
|
if (-1 == pid_fd && !buffer_string_is_empty(srv->srvconf.pid_file)) { |
|
if (-1 == (pid_fd = fdevent_open_cloexec(srv->srvconf.pid_file->ptr, 0, O_WRONLY | O_CREAT | O_EXCL | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH))) { |
|
struct stat st; |
|
if (errno != EEXIST) { |
|
log_error_write(srv, __FILE__, __LINE__, "sbs", |
|
"opening pid-file failed:", srv->srvconf.pid_file, strerror(errno)); |
|
return -1; |
|
} |
|
|
|
if (0 != stat(srv->srvconf.pid_file->ptr, &st)) { |
|
log_error_write(srv, __FILE__, __LINE__, "sbs", |
|
"stating existing pid-file failed:", srv->srvconf.pid_file, strerror(errno)); |
|
} |
|
|
|
if (!S_ISREG(st.st_mode)) { |
|
log_error_write(srv, __FILE__, __LINE__, "sb", |
|
"pid-file exists and isn't regular file:", srv->srvconf.pid_file); |
|
return -1; |
|
} |
|
|
|
if (-1 == (pid_fd = fdevent_open_cloexec(srv->srvconf.pid_file->ptr, 0, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH))) { |
|
log_error_write(srv, __FILE__, __LINE__, "sbs", |
|
"opening pid-file failed:", srv->srvconf.pid_file, strerror(errno)); |
|
return -1; |
|
} |
|
} |
|
} |
|
|
|
{ |
|
#ifdef HAVE_GETRLIMIT |
|
struct rlimit rlim; |
|
int use_rlimit = 1; |
|
#ifdef HAVE_VALGRIND_VALGRIND_H |
|
if (RUNNING_ON_VALGRIND) use_rlimit = 0; |
|
#endif |
|
|
|
if (0 != getrlimit(RLIMIT_NOFILE, &rlim)) { |
|
log_error_write(srv, __FILE__, __LINE__, |
|
"ss", "couldn't get 'max filedescriptors'", |
|
strerror(errno)); |
|
return -1; |
|
} |
|
|
|
/** |
|
* if we are not root can can't increase the fd-limit above rlim_max, but we can reduce it |
|
*/ |
|
if (use_rlimit && srv->srvconf.max_fds |
|
&& (i_am_root || srv->srvconf.max_fds <= rlim.rlim_max)) { |
|
/* set rlimits */ |
|
|
|
rlim.rlim_cur = srv->srvconf.max_fds; |
|
if (i_am_root) rlim.rlim_max = srv->srvconf.max_fds; |
|
|
|
if (0 != setrlimit(RLIMIT_NOFILE, &rlim)) { |
|
log_error_write(srv, __FILE__, __LINE__, |
|
"ss", "couldn't set 'max filedescriptors'", |
|
strerror(errno)); |
|
return -1; |
|
} |
|
} |
|
|
|
srv->max_fds = rlim.rlim_cur; |
|
/*(default upper limit of 4k if server.max-fds not specified)*/ |
|
if (i_am_root && 0 == srv->srvconf.max_fds && rlim.rlim_cur > 4096) |
|
srv->max_fds = 4096; |
|
|
|
/* set core file rlimit, if enable_cores is set */ |
|
if (use_rlimit && srv->srvconf.enable_cores && getrlimit(RLIMIT_CORE, &rlim) == 0) { |
|
rlim.rlim_cur = rlim.rlim_max; |
|
setrlimit(RLIMIT_CORE, &rlim); |
|
} |
|
#endif |
|
} |
|
|
|
/* we need root-perms for port < 1024 */ |
|
if (0 != network_init(srv, stdin_fd)) { |
|
return -1; |
|
} |
|
|
|
if (i_am_root) { |
|
#ifdef HAVE_PWD_H |
|
/* set user and group */ |
|
struct group *grp = NULL; |
|
struct passwd *pwd = NULL; |
|
|
|
if (!buffer_string_is_empty(srv->srvconf.groupname)) { |
|
if (NULL == (grp = getgrnam(srv->srvconf.groupname->ptr))) { |
|
log_error_write(srv, __FILE__, __LINE__, "sb", |
|
"can't find groupname", srv->srvconf.groupname); |
|
return -1; |
|
} |
|
} |
|
|
|
if (!buffer_string_is_empty(srv->srvconf.username)) { |
|
if (NULL == (pwd = getpwnam(srv->srvconf.username->ptr))) { |
|
log_error_write(srv, __FILE__, __LINE__, "sb", |
|
"can't find username", srv->srvconf.username); |
|
return -1; |
|
} |
|
|
|
if (pwd->pw_uid == 0) { |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"I will not set uid to 0\n"); |
|
return -1; |
|
} |
|
|
|
if (NULL == grp && NULL == (grp = getgrgid(pwd->pw_gid))) { |
|
log_error_write(srv, __FILE__, __LINE__, "sd", |
|
"can't find group id", pwd->pw_gid); |
|
return -1; |
|
} |
|
} |
|
|
|
if (NULL != grp) { |
|
if (grp->gr_gid == 0) { |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"I will not set gid to 0\n"); |
|
return -1; |
|
} |
|
} |
|
|
|
/* |
|
* Change group before chroot, when we have access |
|
* to /etc/group |
|
* */ |
|
if (NULL != grp) { |
|
if (-1 == setgid(grp->gr_gid)) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", "setgid failed: ", strerror(errno)); |
|
return -1; |
|
} |
|
if (-1 == setgroups(0, NULL)) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", "setgroups failed: ", strerror(errno)); |
|
return -1; |
|
} |
|
if (!buffer_string_is_empty(srv->srvconf.username)) { |
|
initgroups(srv->srvconf.username->ptr, grp->gr_gid); |
|
} |
|
} |
|
#endif |
|
#ifdef HAVE_CHROOT |
|
if (!buffer_string_is_empty(srv->srvconf.changeroot)) { |
|
tzset(); |
|
|
|
if (-1 == chroot(srv->srvconf.changeroot->ptr)) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", "chroot failed: ", strerror(errno)); |
|
return -1; |
|
} |
|
if (-1 == chdir("/")) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", "chdir failed: ", strerror(errno)); |
|
return -1; |
|
} |
|
} |
|
#endif |
|
#ifdef HAVE_PWD_H |
|
/* drop root privs */ |
|
if (NULL != pwd) { |
|
if (-1 == setuid(pwd->pw_uid)) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", "setuid failed: ", strerror(errno)); |
|
return -1; |
|
} |
|
} |
|
#endif |
|
#if defined(HAVE_SYS_PRCTL_H) && defined(PR_SET_DUMPABLE) |
|
/** |
|
* on IRIX 6.5.30 they have prctl() but no DUMPABLE |
|
*/ |
|
if (srv->srvconf.enable_cores) { |
|
prctl(PR_SET_DUMPABLE, 1, 0, 0, 0); |
|
} |
|
#endif |
|
} |
|
|
|
/* set max-conns */ |
|
if (srv->srvconf.max_conns > srv->max_fds/2) { |
|
/* we can't have more connections than max-fds/2 */ |
|
log_error_write(srv, __FILE__, __LINE__, "sdd", "can't have more connections than fds/2: ", srv->srvconf.max_conns, srv->max_fds); |
|
srv->max_conns = srv->max_fds/2; |
|
} else if (srv->srvconf.max_conns) { |
|
/* otherwise respect the wishes of the user */ |
|
srv->max_conns = srv->srvconf.max_conns; |
|
} else { |
|
/* or use the default: we really don't want to hit max-fds */ |
|
srv->max_conns = srv->max_fds/3; |
|
} |
|
|
|
#ifdef HAVE_FORK |
|
/* network is up, let's daemonize ourself */ |
|
if (0 == srv->srvconf.dont_daemonize && 0 == graceful_restart) { |
|
parent_pipe_fd = daemonize(); |
|
} |
|
#endif |
|
graceful_restart = 0;/*(reset here after avoiding further daemonizing)*/ |
|
if (0 == oneshot_fd) graceful_shutdown = 0; |
|
|
|
|
|
#ifdef HAVE_SIGACTION |
|
memset(&act, 0, sizeof(act)); |
|
act.sa_handler = SIG_IGN; |
|
sigaction(SIGPIPE, &act, NULL); |
|
# if defined(SA_SIGINFO) |
|
last_sighup_info.si_uid = 0, |
|
last_sighup_info.si_pid = 0; |
|
last_sigterm_info.si_uid = 0, |
|
last_sigterm_info.si_pid = 0; |
|
act.sa_sigaction = sigaction_handler; |
|
sigemptyset(&act.sa_mask); |
|
act.sa_flags = SA_SIGINFO; |
|
# else |
|
act.sa_handler = signal_handler; |
|
sigemptyset(&act.sa_mask); |
|
act.sa_flags = 0; |
|
# endif |
|
sigaction(SIGINT, &act, NULL); |
|
sigaction(SIGTERM, &act, NULL); |
|
sigaction(SIGHUP, &act, NULL); |
|
sigaction(SIGALRM, &act, NULL); |
|
sigaction(SIGUSR1, &act, NULL); |
|
|
|
/* it should be safe to restart syscalls after SIGCHLD */ |
|
act.sa_flags |= SA_RESTART | SA_NOCLDSTOP; |
|
sigaction(SIGCHLD, &act, NULL); |
|
|
|
#elif defined(HAVE_SIGNAL) |
|
/* ignore the SIGPIPE from sendfile() */ |
|
signal(SIGPIPE, SIG_IGN); |
|
signal(SIGALRM, signal_handler); |
|
signal(SIGTERM, signal_handler); |
|
signal(SIGHUP, signal_handler); |
|
signal(SIGCHLD, signal_handler); |
|
signal(SIGINT, signal_handler); |
|
signal(SIGUSR1, signal_handler); |
|
#endif |
|
|
|
|
|
srv->gid = getgid(); |
|
srv->uid = getuid(); |
|
srv->pid = getpid(); |
|
|
|
/* write pid file */ |
|
if (pid_fd > 2) { |
|
buffer_copy_int(srv->tmp_buf, srv->pid); |
|
buffer_append_string_len(srv->tmp_buf, CONST_STR_LEN("\n")); |
|
if (-1 == write_all(pid_fd, CONST_BUF_LEN(srv->tmp_buf))) { |
|
log_error_write(srv, __FILE__, __LINE__, "ss", "Couldn't write pid file:", strerror(errno)); |
|
close(pid_fd); |
|
pid_fd = -1; |
|
return -1; |
|
} |
|
} else if (pid_fd < -2) { |
|
pid_fd = -pid_fd; |
|
} |
|
|
|
/* Close stderr ASAP in the child process to make sure that nothing |
|
* is being written to that fd which may not be valid anymore. */ |
|
if (!srv->srvconf.preflight_check) { |
|
if (-1 == log_error_open(srv)) { |
|
log_error_write(srv, __FILE__, __LINE__, "s", "Opening errorlog failed. Going down."); |
|
return -1; |
|
} |
|
log_error_write(srv, __FILE__, __LINE__, "s", "server started (" PACKAGE_DESC ")"); |
|
} |
|
|
|
if (HANDLER_GO_ON != plugins_call_set_defaults(srv)) { |
|
log_error_write(srv, __FILE__, __LINE__, "s", "Configuration of plugins failed. Going down."); |
|
return -1; |
|
} |
|
|
|
if (!config_finalize(srv, &default_server_tag)) { |
|
return -1; |
|
} |
|
|
|
if (srv->srvconf.preflight_check) { |
|
/*printf("Preflight OK");*//*(stdout reopened to /dev/null)*/ |
|
return 0; |
|
} |
|
|
|
|
|
#ifdef HAVE_FORK |
|
/** |
|
* notify daemonize-grandparent of successful startup |
|
* do this before any further forking is done (workers) |
|
*/ |
|
if (0 == srv->srvconf.dont_daemonize && -1 != parent_pipe_fd) { |
|
if (0 > write(parent_pipe_fd, "", 1)) return -1; |
|
close(parent_pipe_fd); |
|
} |
|
|
|
if (idle_limit && srv->srvconf.max_worker) { |
|
srv->srvconf.max_worker = 0; |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"server idle time limit command line option disables server.max-worker config file option."); |
|
} |
|
|
|
/* start watcher and workers */ |
|
num_childs = srv->srvconf.max_worker; |
|
if (num_childs > 0) { |
|
pid_t pids[num_childs]; |
|
pid_t pid; |
|
const int npids = num_childs; |
|
int child = 0; |
|
unsigned int timer = 0; |
|
for (int n = 0; n < npids; ++n) pids[n] = -1; |
|
while (!child && !srv_shutdown && !graceful_shutdown) { |
|
if (num_childs > 0) { |
|
switch ((pid = fork())) { |
|
case -1: |
|
return -1; |
|
case 0: |
|
child = 1; |
|
alarm(0); |
|
break; |
|
default: |
|
num_childs--; |
|
for (int n = 0; n < npids; ++n) { |
|
if (-1 == pids[n]) { |
|
pids[n] = pid; |
|
break; |
|
} |
|
} |
|
break; |
|
} |
|
} else { |
|
int status; |
|
|
|
if (-1 != (pid = wait(&status))) { |
|
srv->cur_ts = time(NULL); |
|
if (plugins_call_handle_waitpid(srv, pid, status) != HANDLER_GO_ON) { |
|
if (!timer) alarm((timer = 5)); |
|
continue; |
|
} |
|
switch (fdevent_reaped_logger_pipe(pid)) { |
|
default: break; |
|
case -1: if (!timer) alarm((timer = 5)); |
|
/* fall through */ |
|
case 1: continue; |
|
} |
|
/** |
|
* check if one of our workers went away |
|
*/ |
|
for (int n = 0; n < npids; ++n) { |
|
if (pid == pids[n]) { |
|
pids[n] = -1; |
|
num_childs++; |
|
break; |
|
} |
|
} |
|
} else { |
|
switch (errno) { |
|
case EINTR: |
|
srv->cur_ts = time(NULL); |
|
/** |
|
* if we receive a SIGHUP we have to close our logs ourself as we don't |
|
* have the mainloop who can help us here |
|
*/ |
|
if (handle_sig_hup) { |
|
handle_sig_hup = 0; |
|
|
|
log_error_cycle(srv); |
|
|
|
/* forward SIGHUP to workers */ |
|
for (int n = 0; n < npids; ++n) { |
|
if (pids[n] > 0) kill(pids[n], SIGHUP); |
|
} |
|
} |
|
if (handle_sig_alarm) { |
|
handle_sig_alarm = 0; |
|
timer = 0; |
|
plugins_call_handle_trigger(srv); |
|
fdevent_restart_logger_pipes(srv->cur_ts); |
|
} |
|
break; |
|
default: |
|
break; |
|
} |
|
} |
|
} |
|
} |
|
|
|
/** |
|
* for the parent this is the exit-point |
|
*/ |
|
if (!child) { |
|
/** |
|
* kill all children too |
|
*/ |
|
if (graceful_shutdown || graceful_restart) { |
|
/* flag to ignore one SIGINT if graceful_restart */ |
|
if (graceful_restart) graceful_restart = 2; |
|
kill(0, SIGINT); |
|
server_graceful_state(srv); |
|
} else if (srv_shutdown) { |
|
kill(0, SIGTERM); |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
/* ignore SIGUSR1 in workers; only parent directs graceful restart */ |
|
#ifdef HAVE_SIGACTION |
|
{ |
|
struct sigaction actignore; |
|
memset(&actignore, 0, sizeof(actignore)); |
|
actignore.sa_handler = SIG_IGN; |
|
sigaction(SIGUSR1, &actignore, NULL); |
|
} |
|
#elif defined(HAVE_SIGNAL) |
|
signal(SIGUSR1, SIG_IGN); |
|
#endif |
|
|
|
/** |
|
* make sure workers do not muck with pid-file |
|
*/ |
|
if (0 <= pid_fd) { |
|
close(pid_fd); |
|
pid_fd = -1; |
|
} |
|
if (srv->srvconf.pid_file) buffer_clear(srv->srvconf.pid_file); |
|
|
|
fdevent_clr_logger_pipe_pids(); |
|
srv->pid = getpid(); |
|
li_rand_reseed(); |
|
} |
|
#endif |
|
|
|
if (NULL == (srv->ev = fdevent_init(srv))) { |
|
log_error_write(srv, __FILE__, __LINE__, |
|
"s", "fdevent_init failed"); |
|
return -1; |
|
} |
|
|
|
srv->max_fds_lowat = srv->max_fds * 8 / 10; |
|
srv->max_fds_hiwat = srv->max_fds * 9 / 10; |
|
|
|
/* libev backend overwrites our SIGCHLD handler and calls waitpid on SIGCHLD; we want our own SIGCHLD handling. */ |
|
#ifdef HAVE_SIGACTION |
|
sigaction(SIGCHLD, &act, NULL); |
|
#elif defined(HAVE_SIGNAL) |
|
signal(SIGCHLD, signal_handler); |
|
#endif |
|
|
|
/* |
|
* kqueue() is called here, select resets its internals, |
|
* all server sockets get their handlers |
|
* |
|
* */ |
|
if (0 != network_register_fdevents(srv)) { |
|
return -1; |
|
} |
|
|
|
/* might fail if user is using fam (not gamin) and famd isn't running */ |
|
if (NULL == (srv->stat_cache = stat_cache_init(srv))) { |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"stat-cache could not be setup, dieing."); |
|
return -1; |
|
} |
|
|
|
#ifdef USE_ALARM |
|
{ |
|
/* setup periodic timer (1 second) */ |
|
struct itimerval interval; |
|
interval.it_interval.tv_sec = 1; |
|
interval.it_interval.tv_usec = 0; |
|
interval.it_value.tv_sec = 1; |
|
interval.it_value.tv_usec = 0; |
|
if (setitimer(ITIMER_REAL, &interval, NULL)) { |
|
log_error_write(srv, __FILE__, __LINE__, "s", "setting timer failed"); |
|
return -1; |
|
} |
|
} |
|
#endif |
|
|
|
|
|
/* get the current number of FDs */ |
|
{ |
|
int fd = fdevent_open_devnull(); |
|
if (fd >= 0) { |
|
srv->cur_fds = fd; |
|
close(fd); |
|
} |
|
} |
|
|
|
if (0 != server_sockets_set_nb_cloexec(srv)) { |
|
return -1; |
|
} |
|
|
|
/* plugin hook for worker_init */ |
|
if (HANDLER_GO_ON != plugins_call_worker_init(srv)) |
|
return -1; |
|
|
|
if (oneshot_fd && server_oneshot_init(srv, oneshot_fd)) { |
|
oneshot_fd = -1; |
|
} |
|
|
|
return 1; |
|
} |
|
|
|
__attribute_cold__ |
|
__attribute_noinline__ |
|
static int server_handle_sighup (server * const srv) { |
|
|
|
/* cycle logfiles */ |
|
|
|
plugins_call_handle_sighup(srv); |
|
|
|
if (-1 == log_error_cycle(srv)) { |
|
log_error_write(srv, __FILE__, __LINE__, "s", "cycling errorlog failed, dying"); |
|
|
|
return -1; |
|
} else { |
|
#ifdef HAVE_SIGACTION |
|
log_error_write(srv, __FILE__, __LINE__, "sdsd", |
|
"logfiles cycled UID =", |
|
last_sighup_info.si_uid, |
|
"PID =", |
|
last_sighup_info.si_pid); |
|
#else |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"logfiles cycled"); |
|
#endif |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
__attribute_noinline__ |
|
static void server_handle_sigalrm (server * const srv, time_t min_ts, time_t last_active_ts) { |
|
|
|
plugins_call_handle_trigger(srv); |
|
|
|
srv->cur_ts = min_ts; |
|
|
|
/* check idle time limit, if enabled */ |
|
if (idle_limit && idle_limit < min_ts - last_active_ts && !graceful_shutdown) { |
|
log_error_write(srv, __FILE__, __LINE__, "sDs", "[note] idle timeout", (int)idle_limit, |
|
"s exceeded, initiating graceful shutdown"); |
|
graceful_shutdown = 2; /* value 2 indicates idle timeout */ |
|
if (graceful_restart) { |
|
graceful_restart = 0; |
|
if (pid_fd < -2) pid_fd = -pid_fd; |
|
server_sockets_close(srv); |
|
} |
|
} |
|
|
|
#ifdef HAVE_GETLOADAVG |
|
/* refresh loadavg data every 30 seconds */ |
|
if (srv->loadts + 30 < min_ts) { |
|
if (-1 != getloadavg(srv->loadavg, 3)) { |
|
srv->loadts = min_ts; |
|
} |
|
} |
|
#endif |
|
|
|
/* free excess chunkqueue buffers every 64 seconds */ |
|
if (0 == (min_ts & 0x3f)) chunkqueue_chunk_pool_clear(); |
|
/* cleanup stat-cache */ |
|
stat_cache_trigger_cleanup(srv); |
|
/* reset global/aggregate rate limit counters */ |
|
config_reset_config_bytes_sec(srv->config_data_base); |
|
/* if graceful_shutdown, accelerate cleanup of recently completed request/responses */ |
|
if (graceful_shutdown && !srv_shutdown) connection_graceful_shutdown_maint(srv); |
|
connection_periodic_maint(srv, min_ts); |
|
} |
|
|
|
__attribute_noinline__ |
|
static void server_handle_sigchld (server * const srv) { |
|
pid_t pid; |
|
do { |
|
int status; |
|
pid = waitpid(-1, &status, WNOHANG); |
|
if (pid > 0) { |
|
if (plugins_call_handle_waitpid(srv, pid, status) != HANDLER_GO_ON) { |
|
continue; |
|
} |
|
if (0 == srv->srvconf.max_worker) { |
|
/* check piped-loggers and restart, even if shutting down */ |
|
if (fdevent_waitpid_logger_pipe_pid(pid, srv->cur_ts)) { |
|
continue; |
|
} |
|
} |
|
} |
|
} while (pid > 0 || (-1 == pid && errno == EINTR)); |
|
} |
|
|
|
__attribute_hot__ |
|
__attribute_noinline__ |
|
static int server_main_loop (server * const srv) { |
|
connections * const joblist = &srv->joblist; |
|
time_t last_active_ts = time(NULL); |
|
|
|
while (!srv_shutdown) { |
|
|
|
if (handle_sig_hup) { |
|
handle_sig_hup = 0; |
|
if (server_handle_sighup(srv)) return -1; |
|
} |
|
|
|
/*(USE_ALARM not used; fdevent_poll() is effective periodic timer)*/ |
|
#ifdef USE_ALARM |
|
if (handle_sig_alarm) { |
|
handle_sig_alarm = 0; |
|
#endif |
|
time_t min_ts = time(NULL); |
|
if (min_ts != srv->cur_ts) { |
|
server_handle_sigalrm(srv, min_ts, last_active_ts); |
|
} |
|
#ifdef USE_ALARM |
|
} |
|
#endif |
|
|
|
if (handle_sig_child) { |
|
handle_sig_child = 0; |
|
server_handle_sigchld(srv); |
|
} |
|
|
|
if (graceful_shutdown) { |
|
server_graceful_state(srv); |
|
if (0 == srv->conns.used) { |
|
/* we are in graceful shutdown phase and all connections are closed |
|
* we are ready to terminate without harming anyone */ |
|
srv_shutdown = 1; |
|
break; |
|
} |
|
} else if (srv->sockets_disabled) { |
|
server_overload_check(srv); |
|
} else { |
|
server_load_check(srv); |
|
} |
|
|
|
if (srv->fdwaitqueue.used) { |
|
server_process_fdwaitqueue(srv); |
|
} |
|
|
|
if (fdevent_poll(srv->ev, 1000) > 0) { |
|
last_active_ts = srv->cur_ts; |
|
} |
|
|
|
for (uint32_t ndx = 0; ndx < joblist->used; ++ndx) { |
|
connection *con = joblist->ptr[ndx]; |
|
connection_state_machine(srv, con); |
|
} |
|
joblist->used = 0; |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
__attribute_cold__ |
|
int main (int argc, char **argv) { |
|
int rc; |
|
|
|
#ifdef HAVE_GETUID |
|
#ifndef HAVE_ISSETUGID |
|
#define issetugid() (geteuid() != getuid() || getegid() != getgid()) |
|
#endif |
|
if (0 != getuid() && issetugid()) { /*check as early as possible in main()*/ |
|
fprintf(stderr, |
|
"Are you nuts ? Don't apply a SUID bit to this binary\n"); |
|
return -1; |
|
} |
|
#endif |
|
|
|
/* for nice %b handling in strftime() */ |
|
setlocale(LC_TIME, "C"); |
|
|
|
do { |
|
server * const srv = server_init(); |
|
|
|
if (graceful_restart) { |
|
server_sockets_restore(srv); |
|
optind = 1; |
|
} |
|
|
|
rc = server_main(srv, argc, argv); |
|
if (rc > 0 && 0 == (rc = server_main_loop(srv))) { |
|
if (graceful_shutdown || graceful_restart) { |
|
server_graceful_state(srv); |
|
} |
|
|
|
if (2 == graceful_shutdown) { /* value 2 indicates idle timeout */ |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"server stopped after idle timeout"); |
|
} else { |
|
#ifdef HAVE_SIGACTION |
|
log_error_write(srv, __FILE__, __LINE__, "sdsd", |
|
"server stopped by UID =", |
|
last_sigterm_info.si_uid, |
|
"PID =", |
|
last_sigterm_info.si_pid); |
|
#else |
|
log_error_write(srv, __FILE__, __LINE__, "s", |
|
"server stopped"); |
|
#endif |
|
} |
|
} |
|
|
|
/* clean-up */ |
|
remove_pid_file(srv); |
|
log_error_close(srv); |
|
fdevent_close_logger_pipes(); |
|
if (graceful_restart) |
|
server_sockets_save(srv); |
|
else |
|
network_close(srv); |
|
connections_free(srv); |
|
plugins_free(srv); |
|
server_free(srv); |
|
|
|
if (0 != rc || !graceful_restart) break; |
|
|
|
/* wait for all children to exit before graceful restart */ |
|
while (waitpid(-1, NULL, 0) > 0) ; |
|
} while (graceful_restart); |
|
|
|
return rc; |
|
}
|
|
|