2002-08-07 00:39:45 +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
|
|
|
*/
|
|
|
|
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
#include <ngx_config.h>
|
2003-05-20 23:37:55 +08:00
|
|
|
#include <ngx_core.h>
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
static void ngx_log_write(ngx_log_t *log, u_char *errstr, size_t len);
|
2003-06-03 23:42:58 +08:00
|
|
|
static char *ngx_set_error_log(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
|
|
|
|
|
|
|
|
|
|
|
|
static ngx_command_t ngx_errlog_commands[] = {
|
|
|
|
|
|
|
|
{ngx_string("error_log"),
|
2003-12-09 04:48:12 +08:00
|
|
|
NGX_MAIN_CONF|NGX_CONF_1MORE,
|
2003-06-03 23:42:58 +08:00
|
|
|
ngx_set_error_log,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
NULL},
|
|
|
|
|
|
|
|
ngx_null_command
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-04-13 00:38:09 +08:00
|
|
|
static ngx_core_module_t ngx_errlog_module_ctx = {
|
|
|
|
ngx_string("errlog"),
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-06-03 23:42:58 +08:00
|
|
|
ngx_module_t ngx_errlog_module = {
|
|
|
|
NGX_MODULE,
|
2004-04-13 00:38:09 +08:00
|
|
|
&ngx_errlog_module_ctx, /* module context */
|
2003-06-03 23:42:58 +08:00
|
|
|
ngx_errlog_commands, /* module directives */
|
|
|
|
NGX_CORE_MODULE, /* module type */
|
2003-07-11 12:50:59 +08:00
|
|
|
NULL, /* init module */
|
2004-11-11 22:07:14 +08:00
|
|
|
NULL /* init process */
|
2003-06-03 23:42:58 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-06-26 23:35:36 +08:00
|
|
|
static ngx_log_t ngx_log;
|
2004-09-06 03:54:02 +08:00
|
|
|
static ngx_open_file_t ngx_stderr;
|
2003-06-03 23:42:58 +08:00
|
|
|
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
static const char *err_levels[] = {
|
2003-05-20 23:37:55 +08:00
|
|
|
"stderr", "emerg", "alert", "crit", "error",
|
|
|
|
"warn", "notice", "info", "debug"
|
2002-08-07 00:39:45 +08:00
|
|
|
};
|
|
|
|
|
2003-12-09 04:48:12 +08:00
|
|
|
static const char *debug_levels[] = {
|
2004-09-07 23:29:22 +08:00
|
|
|
"debug_core", "debug_alloc", "debug_mutex", "debug_event",
|
|
|
|
"debug_http", "debug_imap"
|
2003-12-09 04:48:12 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
#if (NGX_HAVE_VARIADIC_MACROS)
|
2004-03-04 15:04:55 +08:00
|
|
|
void ngx_log_error_core(ngx_uint_t level, ngx_log_t *log, ngx_err_t err,
|
2002-08-07 00:39:45 +08:00
|
|
|
const char *fmt, ...)
|
|
|
|
#else
|
2004-03-04 15:04:55 +08:00
|
|
|
void ngx_log_error_core(ngx_uint_t level, ngx_log_t *log, ngx_err_t err,
|
2002-08-07 00:39:45 +08:00
|
|
|
const char *fmt, va_list args)
|
|
|
|
#endif
|
|
|
|
{
|
2004-10-21 23:34:38 +08:00
|
|
|
#if (NGX_HAVE_VARIADIC_MACROS)
|
2004-11-11 22:07:14 +08:00
|
|
|
va_list args;
|
2002-08-07 00:39:45 +08:00
|
|
|
#endif
|
2004-11-11 22:07:14 +08:00
|
|
|
u_char errstr[NGX_MAX_ERROR_STR], *p, *last;
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2003-07-21 05:15:59 +08:00
|
|
|
if (log->file->fd == NGX_INVALID_FILE) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
last = errstr + NGX_MAX_ERROR_STR;
|
|
|
|
|
2003-11-13 14:14:05 +08:00
|
|
|
ngx_memcpy(errstr, ngx_cached_err_log_time.data,
|
|
|
|
ngx_cached_err_log_time.len);
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
p = errstr + ngx_cached_err_log_time.len;
|
2003-11-13 14:14:05 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
p = ngx_sprintf(p, " [%s] ", err_levels[level]);
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2002-12-23 14:29:22 +08:00
|
|
|
/* pid#tid */
|
2004-11-11 22:07:14 +08:00
|
|
|
p = ngx_sprintf(p, "%P#" NGX_TID_T_FMT ": ", ngx_log_pid, ngx_log_tid);
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2004-02-12 01:08:49 +08:00
|
|
|
if (log->data && *(int *) log->data != -1) {
|
2004-11-11 22:07:14 +08:00
|
|
|
p = ngx_sprintf(p, "*%ud ", *(u_int *) log->data);
|
2003-11-20 00:26:41 +08:00
|
|
|
}
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
#if (NGX_HAVE_VARIADIC_MACROS)
|
2003-11-20 00:26:41 +08:00
|
|
|
|
2002-08-26 23:18:19 +08:00
|
|
|
va_start(args, fmt);
|
2004-11-11 22:07:14 +08:00
|
|
|
p = ngx_vsnprintf(p, last - p, fmt, args);
|
2002-08-26 23:18:19 +08:00
|
|
|
va_end(args);
|
2003-11-20 00:26:41 +08:00
|
|
|
|
2002-08-26 23:18:19 +08:00
|
|
|
#else
|
2003-11-20 00:26:41 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
p = ngx_vsnprintf(p, last - p, fmt, args);
|
2003-11-20 00:26:41 +08:00
|
|
|
|
2002-08-26 23:18:19 +08:00
|
|
|
#endif
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
if (err) {
|
2003-04-28 23:06:39 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
if (p > last - 50) {
|
2004-09-30 00:00:49 +08:00
|
|
|
|
2004-01-22 00:38:54 +08:00
|
|
|
/* leave a space for an error code */
|
2004-09-30 00:00:49 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
p = last - 50;
|
|
|
|
*p++ = '.';
|
|
|
|
*p++ = '.';
|
|
|
|
*p++ = '.';
|
2004-01-22 00:38:54 +08:00
|
|
|
}
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
#if (NGX_WIN32)
|
|
|
|
|
2003-04-28 23:06:39 +08:00
|
|
|
if ((unsigned) err >= 0x80000000) {
|
2004-11-11 22:07:14 +08:00
|
|
|
p = ngx_snprintf(p, last - p, " (%Xd: ", err);
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
} else {
|
|
|
|
p = ngx_snprintf(p, last - p, " (%d: ", err);
|
2004-01-22 00:38:54 +08:00
|
|
|
}
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
#else
|
2004-01-22 00:38:54 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
p = ngx_snprintf(p, last - p, " (%d: ", err);
|
2004-01-22 00:38:54 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
#endif
|
2004-01-22 00:38:54 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
p = ngx_strerror_r(err, p, last - p);
|
2004-01-22 00:38:54 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
if (p < last) {
|
|
|
|
*p++ = ')';
|
2002-08-07 00:39:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-23 14:29:22 +08:00
|
|
|
if (level != NGX_LOG_DEBUG && log->handler) {
|
2004-11-11 22:07:14 +08:00
|
|
|
p = log->handler(log->data, p, last - p);
|
2002-12-23 14:29:22 +08:00
|
|
|
}
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
ngx_log_write(log, errstr, p - errstr);
|
2002-08-07 00:39:45 +08:00
|
|
|
}
|
|
|
|
|
2003-05-20 23:37:55 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
static void ngx_log_write(ngx_log_t *log, u_char *errstr, size_t len)
|
2004-01-22 00:38:54 +08:00
|
|
|
{
|
2004-11-11 22:07:14 +08:00
|
|
|
#if (NGX_WIN32)
|
2004-01-22 00:38:54 +08:00
|
|
|
u_long written;
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
if (len >= NGX_MAX_ERROR_STR - 1) {
|
|
|
|
len = NGX_MAX_ERROR_STR - 2;
|
|
|
|
}
|
|
|
|
|
2004-01-22 14:47:28 +08:00
|
|
|
errstr[len++] = CR;
|
|
|
|
errstr[len++] = LF;
|
2004-11-21 03:52:20 +08:00
|
|
|
|
2004-01-22 14:47:28 +08:00
|
|
|
WriteFile(log->file->fd, errstr, len, &written, NULL);
|
2004-01-22 00:38:54 +08:00
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
#if 0
|
|
|
|
if (WriteFile(log->file->fd, errstr, len, &written, NULL) == 0) {
|
|
|
|
ngx_message_box("nginx", MB_OK, ngx_errno, "WriteFile() failed");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-01-22 00:38:54 +08:00
|
|
|
#else
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
if (len == NGX_MAX_ERROR_STR) {
|
|
|
|
len--;
|
|
|
|
}
|
|
|
|
|
2004-01-22 14:47:28 +08:00
|
|
|
errstr[len++] = LF;
|
2004-11-21 03:52:20 +08:00
|
|
|
|
2004-01-22 14:47:28 +08:00
|
|
|
write(log->file->fd, errstr, len);
|
2004-01-22 00:38:54 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
#if !(NGX_HAVE_VARIADIC_MACROS)
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2004-03-04 15:04:55 +08:00
|
|
|
void ngx_log_error(ngx_uint_t level, ngx_log_t *log, ngx_err_t err,
|
2002-08-07 00:39:45 +08:00
|
|
|
const char *fmt, ...)
|
|
|
|
{
|
2004-11-11 22:07:14 +08:00
|
|
|
va_list args;
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
if (log->log_level >= level) {
|
|
|
|
va_start(args, fmt);
|
|
|
|
ngx_log_error_core(level, log, err, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-20 23:37:55 +08:00
|
|
|
|
2003-12-01 04:03:18 +08:00
|
|
|
void ngx_log_debug_core(ngx_log_t *log, ngx_err_t err, const char *fmt, ...)
|
2002-08-07 00:39:45 +08:00
|
|
|
{
|
2004-11-11 22:07:14 +08:00
|
|
|
va_list args;
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
va_start(args, fmt);
|
2003-12-01 04:03:18 +08:00
|
|
|
ngx_log_error_core(NGX_LOG_DEBUG, log, err, fmt, args);
|
2002-08-07 00:39:45 +08:00
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2003-05-20 23:37:55 +08:00
|
|
|
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
ngx_log_t *ngx_log_init()
|
2003-06-03 23:42:58 +08:00
|
|
|
{
|
2003-06-26 23:35:36 +08:00
|
|
|
ngx_log.file = &ngx_stderr;
|
2004-10-21 23:34:38 +08:00
|
|
|
ngx_log.log_level = NGX_LOG_NOTICE;
|
2004-09-29 04:09:22 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
#if (NGX_WIN32)
|
2004-10-01 23:53:53 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
ngx_stderr.fd = ngx_open_file(NGX_ERROR_LOG_PATH, NGX_FILE_RDWR,
|
|
|
|
NGX_FILE_CREATE_OR_OPEN|NGX_FILE_APPEND);
|
2004-10-04 04:02:06 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
if (ngx_stderr.fd == NGX_INVALID_FILE) {
|
|
|
|
ngx_message_box("nginx", MB_OK, ngx_errno,
|
|
|
|
"Could not open error log file: "
|
|
|
|
ngx_open_file_n " \"" NGX_ERROR_LOG_PATH "\" failed");
|
|
|
|
return NULL;
|
2004-09-29 04:09:22 +08:00
|
|
|
}
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
if (ngx_file_append_mode(ngx_stderr.fd) == NGX_ERROR) {
|
|
|
|
ngx_message_box("nginx", MB_OK, ngx_errno,
|
|
|
|
"Could not open error log file: "
|
|
|
|
ngx_file_append_mode_n " \"" NGX_ERROR_LOG_PATH
|
|
|
|
"\" failed");
|
|
|
|
return NULL;
|
2004-09-29 04:09:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
ngx_stderr.fd = STDERR_FILENO;
|
2004-09-30 14:38:49 +08:00
|
|
|
|
2004-09-29 04:09:22 +08:00
|
|
|
#endif
|
2003-12-06 01:07:27 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
return &ngx_log;
|
2003-06-03 23:42:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-09 04:48:12 +08:00
|
|
|
ngx_log_t *ngx_log_create_errlog(ngx_cycle_t *cycle, ngx_array_t *args)
|
2003-07-02 22:41:17 +08:00
|
|
|
{
|
|
|
|
ngx_log_t *log;
|
2003-12-09 04:48:12 +08:00
|
|
|
ngx_str_t *value, *name;
|
|
|
|
|
|
|
|
if (args) {
|
|
|
|
value = args->elts;
|
|
|
|
name = &value[1];
|
|
|
|
|
|
|
|
} else {
|
|
|
|
name = NULL;
|
|
|
|
}
|
2003-07-02 22:41:17 +08:00
|
|
|
|
2004-09-06 03:54:02 +08:00
|
|
|
if (!(log = ngx_pcalloc(cycle->pool, sizeof(ngx_log_t)))) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(log->file = ngx_conf_open_file(cycle, name))) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2003-07-21 05:15:59 +08:00
|
|
|
|
2003-07-02 22:41:17 +08:00
|
|
|
return log;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-01-21 04:40:08 +08:00
|
|
|
char *ngx_set_error_log_levels(ngx_conf_t *cf, ngx_log_t *log)
|
|
|
|
{
|
2004-03-16 15:10:12 +08:00
|
|
|
ngx_uint_t i, n, d;
|
|
|
|
ngx_str_t *value;
|
2004-01-21 04:40:08 +08:00
|
|
|
|
|
|
|
value = cf->args->elts;
|
|
|
|
|
2003-12-09 04:48:12 +08:00
|
|
|
for (i = 2; i < cf->args->nelts; i++) {
|
|
|
|
|
2004-02-12 01:08:49 +08:00
|
|
|
for (n = 1; n <= NGX_LOG_DEBUG; n++) {
|
2003-12-09 04:48:12 +08:00
|
|
|
if (ngx_strcmp(value[i].data, err_levels[n]) == 0) {
|
|
|
|
|
2004-01-21 04:40:08 +08:00
|
|
|
if (log->log_level != 0) {
|
2003-12-09 04:48:12 +08:00
|
|
|
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
|
|
|
|
"invalid log level \"%s\"",
|
|
|
|
value[i].data);
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
2004-01-21 04:40:08 +08:00
|
|
|
log->log_level = n;
|
2003-12-09 04:48:12 +08:00
|
|
|
continue;
|
2003-12-06 01:07:27 +08:00
|
|
|
}
|
|
|
|
}
|
2003-12-09 04:48:12 +08:00
|
|
|
|
2004-01-22 14:47:28 +08:00
|
|
|
for (n = 0, d = NGX_LOG_DEBUG_FIRST; d <= NGX_LOG_DEBUG_LAST; d <<= 1) {
|
|
|
|
if (ngx_strcmp(value[i].data, debug_levels[n++]) == 0) {
|
2004-01-21 04:40:08 +08:00
|
|
|
if (log->log_level & ~NGX_LOG_DEBUG_ALL) {
|
2003-12-09 04:48:12 +08:00
|
|
|
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
|
|
|
|
"invalid log level \"%s\"",
|
|
|
|
value[i].data);
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
2004-01-21 04:40:08 +08:00
|
|
|
log->log_level |= d;
|
2003-12-09 04:48:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-01-21 04:40:08 +08:00
|
|
|
if (log->log_level == 0) {
|
2003-12-06 01:07:27 +08:00
|
|
|
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
|
2003-12-09 04:48:12 +08:00
|
|
|
"invalid log level \"%s\"", value[i].data);
|
2003-12-06 01:07:27 +08:00
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
2003-06-03 23:42:58 +08:00
|
|
|
}
|
|
|
|
|
2004-02-12 01:08:49 +08:00
|
|
|
if (log->log_level == NGX_LOG_DEBUG) {
|
|
|
|
log->log_level = NGX_LOG_DEBUG_ALL;
|
|
|
|
}
|
|
|
|
|
2003-06-03 23:42:58 +08:00
|
|
|
return NGX_CONF_OK;
|
|
|
|
}
|
2004-04-15 23:34:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
static char *ngx_set_error_log(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
|
|
|
|
{
|
|
|
|
ngx_str_t *value;
|
|
|
|
|
|
|
|
value = cf->args->elts;
|
|
|
|
|
2004-09-30 14:38:49 +08:00
|
|
|
if (value[1].len == 6 && ngx_strcmp(value[1].data, "stderr") == 0) {
|
|
|
|
cf->cycle->new_log->file->fd = ngx_stderr.fd;
|
|
|
|
cf->cycle->new_log->file->name.len = 0;
|
|
|
|
cf->cycle->new_log->file->name.data = NULL;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
cf->cycle->new_log->file->name = value[1];
|
2004-09-28 00:03:21 +08:00
|
|
|
|
2004-09-30 14:38:49 +08:00
|
|
|
if (ngx_conf_full_name(cf->cycle, &cf->cycle->new_log->file->name)
|
2004-09-28 00:03:21 +08:00
|
|
|
== NGX_ERROR)
|
2004-09-30 14:38:49 +08:00
|
|
|
{
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
2004-04-15 23:34:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return ngx_set_error_log_levels(cf, cf->cycle->new_log);
|
|
|
|
}
|