2006-11-26 11:13:41 -07:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright 1987, 1998 The Open Group
|
|
|
|
|
|
|
|
Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
the above copyright notice appear in all copies and that both that
|
|
|
|
copyright notice and this permission notice appear in supporting
|
|
|
|
documentation.
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included
|
|
|
|
in all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
Except as contained in this notice, the name of The Open Group shall
|
|
|
|
not be used in advertising or otherwise to promote the sale, use or
|
|
|
|
other dealings in this Software without prior written authorization
|
|
|
|
from The Open Group.
|
|
|
|
|
|
|
|
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
|
|
|
|
Copyright 1994 Quarterdeck Office Systems.
|
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
|
|
|
provided that the above copyright notice appear in all copies and that
|
|
|
|
both that copyright notice and this permission notice appear in
|
|
|
|
supporting documentation, and that the names of Digital and
|
|
|
|
Quarterdeck not be used in advertising or publicity pertaining to
|
|
|
|
distribution of the software without specific, written prior
|
|
|
|
permission.
|
|
|
|
|
|
|
|
DIGITAL AND QUARTERDECK DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
|
|
|
|
SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
FITNESS, IN NO EVENT SHALL DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT
|
|
|
|
OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
|
|
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
|
|
OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
|
|
|
|
OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1997-2003 by The XFree86 Project, Inc.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Except as contained in this notice, the name of the copyright holder(s)
|
|
|
|
* and author(s) shall not be used in advertising or otherwise to promote
|
|
|
|
* the sale, use or other dealings in this Software without prior written
|
|
|
|
* authorization from the copyright holder(s) and author(s).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_DIX_CONFIG_H
|
|
|
|
#include <dix-config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <X11/Xos.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <stdarg.h>
|
2012-06-10 07:21:05 -06:00
|
|
|
#include <stdlib.h> /* for malloc() */
|
2016-05-29 06:02:34 -06:00
|
|
|
#include <errno.h>
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2007-11-24 12:04:00 -07:00
|
|
|
#include "input.h"
|
2006-11-26 11:13:41 -07:00
|
|
|
#include "site.h"
|
|
|
|
#include "opaque.h"
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
#include <process.h>
|
|
|
|
#define getpid(x) _getpid(x)
|
|
|
|
#endif
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
#ifdef XF86BIGFONT
|
|
|
|
#include "xf86bigfontsrv.h"
|
|
|
|
#endif
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2011-11-05 07:32:40 -06:00
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic ignored "-Wformat-nonliteral"
|
|
|
|
#endif
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#ifdef DDXOSVERRORF
|
2012-06-10 07:21:05 -06:00
|
|
|
void (*OsVendorVErrorFProc) (const char *, va_list args) = NULL;
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static FILE *logFile = NULL;
|
2013-06-07 11:28:45 -06:00
|
|
|
static int logFileFd = -1;
|
2006-11-26 11:13:41 -07:00
|
|
|
static Bool logFlush = FALSE;
|
|
|
|
static Bool logSync = FALSE;
|
|
|
|
static int logVerbosity = DEFAULT_LOG_VERBOSITY;
|
|
|
|
static int logFileVerbosity = DEFAULT_LOG_FILE_VERBOSITY;
|
|
|
|
|
|
|
|
/* Buffer to information logged before the log file is opened. */
|
|
|
|
static char *saveBuffer = NULL;
|
|
|
|
static int bufferSize = 0, bufferUnused = 0, bufferPos = 0;
|
|
|
|
static Bool needBuffer = TRUE;
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#include <AvailabilityMacros.h>
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
static char __crashreporter_info_buff__[4096] = { 0 };
|
|
|
|
|
|
|
|
static const char *__crashreporter_info__ __attribute__ ((__used__)) =
|
|
|
|
&__crashreporter_info_buff__[0];
|
2010-07-27 13:02:24 -06:00
|
|
|
#if MAC_OS_X_VERSION_MIN_REQUIRED >= 1050
|
2015-09-16 13:10:19 -06:00
|
|
|
// This is actually a toolchain requirement, but I'm not sure the correct check,
|
2010-07-27 13:02:24 -06:00
|
|
|
// but it should be fine to just only include it for Leopard and later. This line
|
|
|
|
// just tells the linker to never strip this symbol (such as for space optimization)
|
2012-06-10 07:21:05 -06:00
|
|
|
asm(".desc ___crashreporter_info__, 0x10");
|
2010-07-27 13:02:24 -06:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
/* Prefix strings for log messages. */
|
|
|
|
#ifndef X_UNKNOWN_STRING
|
|
|
|
#define X_UNKNOWN_STRING "(\?\?)"
|
|
|
|
#endif
|
|
|
|
#ifndef X_PROBE_STRING
|
|
|
|
#define X_PROBE_STRING "(--)"
|
|
|
|
#endif
|
|
|
|
#ifndef X_CONFIG_STRING
|
|
|
|
#define X_CONFIG_STRING "(**)"
|
|
|
|
#endif
|
|
|
|
#ifndef X_DEFAULT_STRING
|
|
|
|
#define X_DEFAULT_STRING "(==)"
|
|
|
|
#endif
|
|
|
|
#ifndef X_CMDLINE_STRING
|
|
|
|
#define X_CMDLINE_STRING "(++)"
|
|
|
|
#endif
|
|
|
|
#ifndef X_NOTICE_STRING
|
|
|
|
#define X_NOTICE_STRING "(!!)"
|
|
|
|
#endif
|
|
|
|
#ifndef X_ERROR_STRING
|
|
|
|
#define X_ERROR_STRING "(EE)"
|
|
|
|
#endif
|
|
|
|
#ifndef X_WARNING_STRING
|
|
|
|
#define X_WARNING_STRING "(WW)"
|
|
|
|
#endif
|
|
|
|
#ifndef X_INFO_STRING
|
|
|
|
#define X_INFO_STRING "(II)"
|
|
|
|
#endif
|
|
|
|
#ifndef X_NOT_IMPLEMENTED_STRING
|
|
|
|
#define X_NOT_IMPLEMENTED_STRING "(NI)"
|
|
|
|
#endif
|
2013-06-07 11:28:45 -06:00
|
|
|
#ifndef X_DEBUG_STRING
|
|
|
|
#define X_DEBUG_STRING "(DB)"
|
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
#ifndef X_NONE_STRING
|
|
|
|
#define X_NONE_STRING ""
|
|
|
|
#endif
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
static size_t
|
|
|
|
strlen_sigsafe(const char *s)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
for (len = 0; s[len]; len++);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2016-05-29 06:02:34 -06:00
|
|
|
/*
|
|
|
|
* LogFilePrep is called to setup files for logging, including getting
|
|
|
|
* an old file out of the way, but it doesn't actually open the file,
|
|
|
|
* since it may be used for renaming a file we're already logging to.
|
|
|
|
*/
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wformat-nonliteral"
|
|
|
|
|
|
|
|
static char *
|
|
|
|
LogFilePrep(const char *fname, const char *backup, const char *idstring)
|
|
|
|
{
|
|
|
|
char *logFileName = NULL;
|
|
|
|
|
|
|
|
if (asprintf(&logFileName, fname, idstring) == -1)
|
|
|
|
FatalError("Cannot allocate space for the log file name\n");
|
|
|
|
|
|
|
|
if (backup && *backup) {
|
|
|
|
struct stat buf;
|
|
|
|
|
|
|
|
if (!stat(logFileName, &buf) && S_ISREG(buf.st_mode)) {
|
|
|
|
char *suffix;
|
|
|
|
char *oldLog;
|
|
|
|
|
|
|
|
if ((asprintf(&suffix, backup, idstring) == -1) ||
|
|
|
|
(asprintf(&oldLog, "%s%s", logFileName, suffix) == -1)) {
|
|
|
|
FatalError("Cannot allocate space for the log file name\n");
|
|
|
|
}
|
|
|
|
free(suffix);
|
|
|
|
|
|
|
|
if (rename(logFileName, oldLog) == -1) {
|
|
|
|
FatalError("Cannot move old log file \"%s\" to \"%s\"\n",
|
|
|
|
logFileName, oldLog);
|
|
|
|
}
|
|
|
|
free(oldLog);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (remove(logFileName) != 0 && errno != ENOENT) {
|
|
|
|
FatalError("Cannot remove old log file \"%s\": %s\n",
|
|
|
|
logFileName, strerror(errno));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return logFileName;
|
|
|
|
}
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
/*
|
|
|
|
* LogInit is called to start logging to a file. It is also called (with
|
|
|
|
* NULL arguments) when logging to a file is not wanted. It must always be
|
|
|
|
* called, otherwise log messages will continue to accumulate in a buffer.
|
|
|
|
*
|
|
|
|
* %s, if present in the fname or backup strings, is expanded to the display
|
2016-05-29 06:02:34 -06:00
|
|
|
* string (or to a string containing the pid if the display is not yet set).
|
2006-11-26 11:13:41 -07:00
|
|
|
*/
|
|
|
|
|
2016-05-29 06:02:34 -06:00
|
|
|
static char *saved_log_fname;
|
|
|
|
static char *saved_log_backup;
|
|
|
|
static char *saved_log_tempname;
|
2015-09-16 13:10:19 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
const char *
|
|
|
|
LogInit(const char *fname, const char *backup)
|
|
|
|
{
|
|
|
|
char *logFileName = NULL;
|
|
|
|
|
|
|
|
if (fname && *fname) {
|
2016-05-29 06:02:34 -06:00
|
|
|
if (displayfd != -1) {
|
|
|
|
/* Display isn't set yet, so we can't use it in filenames yet. */
|
|
|
|
char pidstring[32];
|
|
|
|
snprintf(pidstring, sizeof(pidstring), "pid-%ld",
|
|
|
|
(unsigned long) getpid());
|
|
|
|
logFileName = LogFilePrep(fname, backup, pidstring);
|
|
|
|
saved_log_tempname = logFileName;
|
|
|
|
|
|
|
|
/* Save the patterns for use when the display is named. */
|
|
|
|
saved_log_fname = strdup(fname);
|
|
|
|
if (backup == NULL)
|
|
|
|
saved_log_backup = NULL;
|
|
|
|
else
|
|
|
|
saved_log_backup = strdup(backup);
|
|
|
|
} else
|
|
|
|
logFileName = LogFilePrep(fname, backup, display);
|
2012-06-10 07:21:05 -06:00
|
|
|
if ((logFile = fopen(logFileName, "w")) == NULL)
|
|
|
|
FatalError("Cannot open log file \"%s\"\n", logFileName);
|
|
|
|
setvbuf(logFile, NULL, _IONBF, 0);
|
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
logFileFd = fileno(logFile);
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Flush saved log information. */
|
|
|
|
if (saveBuffer && bufferSize > 0) {
|
|
|
|
fwrite(saveBuffer, bufferPos, 1, logFile);
|
|
|
|
fflush(logFile);
|
2006-11-26 11:13:41 -07:00
|
|
|
#ifndef WIN32
|
2012-06-10 07:21:05 -06:00
|
|
|
fsync(fileno(logFile));
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unconditionally free the buffer, and flag that the buffer is no longer
|
|
|
|
* needed.
|
|
|
|
*/
|
|
|
|
if (saveBuffer && bufferSize > 0) {
|
2012-06-10 07:21:05 -06:00
|
|
|
free(saveBuffer);
|
|
|
|
saveBuffer = NULL;
|
|
|
|
bufferSize = 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
needBuffer = FALSE;
|
|
|
|
|
|
|
|
return logFileName;
|
|
|
|
}
|
2016-05-29 06:02:34 -06:00
|
|
|
|
|
|
|
void
|
|
|
|
LogSetDisplay(void)
|
|
|
|
{
|
|
|
|
if (saved_log_fname) {
|
|
|
|
char *logFileName;
|
|
|
|
|
|
|
|
logFileName = LogFilePrep(saved_log_fname, saved_log_backup, display);
|
|
|
|
|
|
|
|
if (rename(saved_log_tempname, logFileName) == 0) {
|
|
|
|
LogMessageVerb(X_PROBED, 0,
|
|
|
|
"Log file renamed from \"%s\" to \"%s\"\n",
|
|
|
|
saved_log_tempname, logFileName);
|
|
|
|
|
|
|
|
if (strlen(saved_log_tempname) >= strlen(logFileName))
|
|
|
|
strncpy(saved_log_tempname, logFileName,
|
|
|
|
strlen(saved_log_tempname));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ErrorF("Failed to rename log file \"%s\" to \"%s\": %s\n",
|
|
|
|
saved_log_tempname, logFileName, strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free newly allocated string - can't free old one since existing
|
|
|
|
pointers to it may exist in DDX callers. */
|
|
|
|
free(logFileName);
|
|
|
|
free(saved_log_fname);
|
|
|
|
free(saved_log_backup);
|
|
|
|
}
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
void
|
2011-11-05 07:32:40 -06:00
|
|
|
LogClose(enum ExitCode error)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
if (logFile) {
|
2015-09-16 13:10:19 -06:00
|
|
|
int msgtype = (error == EXIT_NO_ERROR) ? X_INFO : X_ERROR;
|
|
|
|
LogMessageVerbSigSafe(msgtype, -1,
|
|
|
|
"Server terminated %s (%d). Closing log file.\n",
|
|
|
|
(error == EXIT_NO_ERROR) ? "successfully" : "with error",
|
|
|
|
error);
|
2012-06-10 07:21:05 -06:00
|
|
|
fclose(logFile);
|
|
|
|
logFile = NULL;
|
2013-06-07 11:28:45 -06:00
|
|
|
logFileFd = -1;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
|
|
|
LogSetParameter(LogParameter param, int value)
|
|
|
|
{
|
|
|
|
switch (param) {
|
|
|
|
case XLOG_FLUSH:
|
2012-06-10 07:21:05 -06:00
|
|
|
logFlush = value ? TRUE : FALSE;
|
|
|
|
return TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
case XLOG_SYNC:
|
2012-06-10 07:21:05 -06:00
|
|
|
logSync = value ? TRUE : FALSE;
|
|
|
|
return TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
case XLOG_VERBOSITY:
|
2012-06-10 07:21:05 -06:00
|
|
|
logVerbosity = value;
|
|
|
|
return TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
case XLOG_FILE_VERBOSITY:
|
2012-06-10 07:21:05 -06:00
|
|
|
logFileVerbosity = value;
|
|
|
|
return TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
default:
|
2012-06-10 07:21:05 -06:00
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-24 13:44:25 -06:00
|
|
|
enum {
|
|
|
|
LMOD_LONG = 0x1,
|
|
|
|
LMOD_LONGLONG = 0x2,
|
|
|
|
LMOD_SHORT = 0x4,
|
|
|
|
LMOD_SIZET = 0x8,
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse non-digit length modifiers and set the corresponding flag in
|
|
|
|
* flags_return.
|
|
|
|
*
|
|
|
|
* @return the number of bytes parsed
|
|
|
|
*/
|
|
|
|
static int parse_length_modifier(const char *format, size_t len, int *flags_return)
|
|
|
|
{
|
|
|
|
int idx = 0;
|
|
|
|
int length_modifier = 0;
|
|
|
|
|
|
|
|
while (idx < len) {
|
|
|
|
switch (format[idx]) {
|
|
|
|
case 'l':
|
|
|
|
BUG_RETURN_VAL(length_modifier & LMOD_SHORT, 0);
|
|
|
|
|
|
|
|
if (length_modifier & LMOD_LONG)
|
|
|
|
length_modifier |= LMOD_LONGLONG;
|
|
|
|
else
|
|
|
|
length_modifier |= LMOD_LONG;
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
BUG_RETURN_VAL(length_modifier & (LMOD_LONG|LMOD_LONGLONG), 0);
|
|
|
|
length_modifier |= LMOD_SHORT;
|
|
|
|
/* gcc says 'short int' is promoted to 'int' when
|
|
|
|
* passed through '...', so ignored during
|
|
|
|
* processing */
|
|
|
|
break;
|
|
|
|
case 'z':
|
|
|
|
length_modifier |= LMOD_SIZET;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
*flags_return = length_modifier;
|
|
|
|
return idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Signal-safe snprintf, with some limitations over snprintf. Be careful
|
|
|
|
* which directives you use.
|
|
|
|
*/
|
2013-06-07 11:28:45 -06:00
|
|
|
static int
|
2014-09-27 11:52:59 -06:00
|
|
|
vpnprintf(char *string, int size_in, const char *f, va_list args)
|
2013-06-07 11:28:45 -06:00
|
|
|
{
|
|
|
|
int f_idx = 0;
|
|
|
|
int s_idx = 0;
|
|
|
|
int f_len = strlen_sigsafe(f);
|
|
|
|
char *string_arg;
|
|
|
|
char number[21];
|
|
|
|
int p_len;
|
|
|
|
int i;
|
|
|
|
uint64_t ui;
|
|
|
|
int64_t si;
|
2014-09-27 11:52:59 -06:00
|
|
|
size_t size = size_in;
|
2015-09-16 13:10:19 -06:00
|
|
|
int precision;
|
2013-06-07 11:28:45 -06:00
|
|
|
|
|
|
|
for (; f_idx < f_len && s_idx < size - 1; f_idx++) {
|
2013-08-24 13:44:25 -06:00
|
|
|
int length_modifier = 0;
|
2013-06-07 11:28:45 -06:00
|
|
|
if (f[f_idx] != '%') {
|
|
|
|
string[s_idx++] = f[f_idx];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
f_idx++;
|
|
|
|
|
2015-09-16 13:10:19 -06:00
|
|
|
/* silently swallow minimum field width */
|
|
|
|
if (f[f_idx] == '*') {
|
2013-06-07 11:28:45 -06:00
|
|
|
f_idx++;
|
2015-09-16 13:10:19 -06:00
|
|
|
va_arg(args, int);
|
|
|
|
} else {
|
|
|
|
while (f_idx < f_len && ((f[f_idx] >= '0' && f[f_idx] <= '9')))
|
|
|
|
f_idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* is there a precision? */
|
|
|
|
precision = size;
|
|
|
|
if (f[f_idx] == '.') {
|
|
|
|
f_idx++;
|
|
|
|
if (f[f_idx] == '*') {
|
|
|
|
f_idx++;
|
|
|
|
/* precision is supplied in an int argument */
|
|
|
|
precision = va_arg(args, int);
|
|
|
|
} else {
|
|
|
|
/* silently swallow precision digits */
|
|
|
|
while (f_idx < f_len && ((f[f_idx] >= '0' && f[f_idx] <= '9')))
|
|
|
|
f_idx++;
|
|
|
|
}
|
|
|
|
}
|
2013-06-07 11:28:45 -06:00
|
|
|
|
2013-08-24 13:44:25 -06:00
|
|
|
/* non-digit length modifiers */
|
|
|
|
if (f_idx < f_len) {
|
|
|
|
int parsed_bytes = parse_length_modifier(&f[f_idx], f_len - f_idx, &length_modifier);
|
|
|
|
if (parsed_bytes < 0)
|
|
|
|
return 0;
|
|
|
|
f_idx += parsed_bytes;
|
|
|
|
}
|
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
if (f_idx >= f_len)
|
|
|
|
break;
|
|
|
|
|
|
|
|
switch (f[f_idx]) {
|
|
|
|
case 's':
|
|
|
|
string_arg = va_arg(args, char*);
|
|
|
|
|
2015-09-16 13:10:19 -06:00
|
|
|
for (i = 0; string_arg[i] != 0 && s_idx < size - 1 && s_idx < precision; i++)
|
2013-06-07 11:28:45 -06:00
|
|
|
string[s_idx++] = string_arg[i];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'u':
|
2013-08-24 13:44:25 -06:00
|
|
|
if (length_modifier & LMOD_LONGLONG)
|
|
|
|
ui = va_arg(args, unsigned long long);
|
|
|
|
else if (length_modifier & LMOD_LONG)
|
|
|
|
ui = va_arg(args, unsigned long);
|
|
|
|
else if (length_modifier & LMOD_SIZET)
|
|
|
|
ui = va_arg(args, size_t);
|
|
|
|
else
|
|
|
|
ui = va_arg(args, unsigned);
|
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
FormatUInt64(ui, number);
|
|
|
|
p_len = strlen_sigsafe(number);
|
|
|
|
|
|
|
|
for (i = 0; i < p_len && s_idx < size - 1; i++)
|
|
|
|
string[s_idx++] = number[i];
|
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
case 'd':
|
2013-08-24 13:44:25 -06:00
|
|
|
if (length_modifier & LMOD_LONGLONG)
|
|
|
|
si = va_arg(args, long long);
|
|
|
|
else if (length_modifier & LMOD_LONG)
|
|
|
|
si = va_arg(args, long);
|
|
|
|
else if (length_modifier & LMOD_SIZET)
|
|
|
|
si = va_arg(args, ssize_t);
|
|
|
|
else
|
|
|
|
si = va_arg(args, int);
|
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
FormatInt64(si, number);
|
|
|
|
p_len = strlen_sigsafe(number);
|
|
|
|
|
|
|
|
for (i = 0; i < p_len && s_idx < size - 1; i++)
|
|
|
|
string[s_idx++] = number[i];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
string[s_idx++] = '0';
|
|
|
|
if (s_idx < size - 1)
|
|
|
|
string[s_idx++] = 'x';
|
|
|
|
ui = (uintptr_t)va_arg(args, void*);
|
|
|
|
FormatUInt64Hex(ui, number);
|
|
|
|
p_len = strlen_sigsafe(number);
|
|
|
|
|
|
|
|
for (i = 0; i < p_len && s_idx < size - 1; i++)
|
|
|
|
string[s_idx++] = number[i];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'x':
|
2013-08-24 13:44:25 -06:00
|
|
|
if (length_modifier & LMOD_LONGLONG)
|
|
|
|
ui = va_arg(args, unsigned long long);
|
|
|
|
else if (length_modifier & LMOD_LONG)
|
|
|
|
ui = va_arg(args, unsigned long);
|
|
|
|
else if (length_modifier & LMOD_SIZET)
|
|
|
|
ui = va_arg(args, size_t);
|
|
|
|
else
|
|
|
|
ui = va_arg(args, unsigned);
|
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
FormatUInt64Hex(ui, number);
|
|
|
|
p_len = strlen_sigsafe(number);
|
|
|
|
|
|
|
|
for (i = 0; i < p_len && s_idx < size - 1; i++)
|
|
|
|
string[s_idx++] = number[i];
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
{
|
|
|
|
double d = va_arg(args, double);
|
|
|
|
FormatDouble(d, number);
|
|
|
|
p_len = strlen_sigsafe(number);
|
|
|
|
|
|
|
|
for (i = 0; i < p_len && s_idx < size - 1; i++)
|
|
|
|
string[s_idx++] = number[i];
|
|
|
|
}
|
|
|
|
break;
|
2013-08-24 13:44:25 -06:00
|
|
|
case 'c':
|
|
|
|
{
|
|
|
|
char c = va_arg(args, int);
|
|
|
|
if (s_idx < size - 1)
|
|
|
|
string[s_idx++] = c;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '%':
|
|
|
|
string[s_idx++] = '%';
|
|
|
|
break;
|
2013-06-07 11:28:45 -06:00
|
|
|
default:
|
2013-08-24 13:44:25 -06:00
|
|
|
BUG_WARN_MSG(f[f_idx], "Unsupported printf directive '%c'\n", f[f_idx]);
|
2013-06-07 11:28:45 -06:00
|
|
|
va_arg(args, char*);
|
|
|
|
string[s_idx++] = '%';
|
|
|
|
if (s_idx < size - 1)
|
|
|
|
string[s_idx++] = f[f_idx];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
string[s_idx] = '\0';
|
|
|
|
|
|
|
|
return s_idx;
|
|
|
|
}
|
|
|
|
|
2014-09-27 11:52:59 -06:00
|
|
|
static int
|
|
|
|
pnprintf(char *string, int size, const char *f, ...)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, f);
|
|
|
|
rc = vpnprintf(string, size, f, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
/* This function does the actual log message writes. It must be signal safe.
|
|
|
|
* When attempting to call non-signal-safe functions, guard them with a check
|
|
|
|
* of the inSignalContext global variable. */
|
2012-06-10 07:21:05 -06:00
|
|
|
static void
|
|
|
|
LogSWrite(int verb, const char *buf, size_t len, Bool end_line)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2010-07-27 13:02:24 -06:00
|
|
|
static Bool newline = TRUE;
|
2014-09-27 11:52:59 -06:00
|
|
|
int ret;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (verb < 0 || logVerbosity >= verb)
|
2014-09-27 11:52:59 -06:00
|
|
|
ret = write(2, buf, len);
|
2013-06-07 11:28:45 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (verb < 0 || logFileVerbosity >= verb) {
|
2013-06-07 11:28:45 -06:00
|
|
|
if (inSignalContext && logFileFd >= 0) {
|
2014-09-27 11:52:59 -06:00
|
|
|
ret = write(logFileFd, buf, len);
|
2013-06-07 11:28:45 -06:00
|
|
|
#ifndef WIN32
|
|
|
|
if (logFlush && logSync)
|
|
|
|
fsync(logFileFd);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else if (!inSignalContext && logFile) {
|
2012-06-10 07:21:05 -06:00
|
|
|
if (newline)
|
|
|
|
fprintf(logFile, "[%10.3f] ", GetTimeInMillis() / 1000.0);
|
|
|
|
newline = end_line;
|
|
|
|
fwrite(buf, len, 1, logFile);
|
|
|
|
if (logFlush) {
|
|
|
|
fflush(logFile);
|
2006-11-26 11:13:41 -07:00
|
|
|
#ifndef WIN32
|
2012-06-10 07:21:05 -06:00
|
|
|
if (logSync)
|
|
|
|
fsync(fileno(logFile));
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
}
|
|
|
|
}
|
2013-06-07 11:28:45 -06:00
|
|
|
else if (!inSignalContext && needBuffer) {
|
2012-06-10 07:21:05 -06:00
|
|
|
if (len > bufferUnused) {
|
|
|
|
bufferSize += 1024;
|
|
|
|
bufferUnused += 1024;
|
|
|
|
saveBuffer = realloc(saveBuffer, bufferSize);
|
|
|
|
if (!saveBuffer)
|
|
|
|
FatalError("realloc() failed while saving log messages\n");
|
|
|
|
}
|
|
|
|
bufferUnused -= len;
|
|
|
|
memcpy(saveBuffer + bufferPos, buf, len);
|
|
|
|
bufferPos += len;
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2014-09-27 11:52:59 -06:00
|
|
|
|
|
|
|
/* There's no place to log an error message if the log write
|
|
|
|
* fails...
|
|
|
|
*/
|
|
|
|
(void) ret;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
void
|
|
|
|
LogVWrite(int verb, const char *f, va_list args)
|
|
|
|
{
|
|
|
|
return LogVMessageVerb(X_NONE, verb, f, args);
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
void
|
2006-11-26 11:13:41 -07:00
|
|
|
LogWrite(int verb, const char *f, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, f);
|
|
|
|
LogVWrite(verb, f, args);
|
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Returns the Message Type string to prepend to a logging message, or NULL
|
|
|
|
* if the message will be dropped due to insufficient verbosity. */
|
|
|
|
static const char *
|
|
|
|
LogMessageTypeVerbString(MessageType type, int verb)
|
|
|
|
{
|
|
|
|
if (type == X_ERROR)
|
|
|
|
verb = 0;
|
|
|
|
|
|
|
|
if (logVerbosity < verb && logFileVerbosity < verb)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case X_PROBED:
|
|
|
|
return X_PROBE_STRING;
|
|
|
|
case X_CONFIG:
|
|
|
|
return X_CONFIG_STRING;
|
|
|
|
case X_DEFAULT:
|
|
|
|
return X_DEFAULT_STRING;
|
|
|
|
case X_CMDLINE:
|
|
|
|
return X_CMDLINE_STRING;
|
|
|
|
case X_NOTICE:
|
|
|
|
return X_NOTICE_STRING;
|
|
|
|
case X_ERROR:
|
|
|
|
return X_ERROR_STRING;
|
|
|
|
case X_WARNING:
|
|
|
|
return X_WARNING_STRING;
|
|
|
|
case X_INFO:
|
|
|
|
return X_INFO_STRING;
|
|
|
|
case X_NOT_IMPLEMENTED:
|
|
|
|
return X_NOT_IMPLEMENTED_STRING;
|
|
|
|
case X_UNKNOWN:
|
|
|
|
return X_UNKNOWN_STRING;
|
|
|
|
case X_NONE:
|
|
|
|
return X_NONE_STRING;
|
2013-06-07 11:28:45 -06:00
|
|
|
case X_DEBUG:
|
|
|
|
return X_DEBUG_STRING;
|
2012-06-10 07:21:05 -06:00
|
|
|
default:
|
|
|
|
return X_UNKNOWN_STRING;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
void
|
2006-11-26 11:13:41 -07:00
|
|
|
LogVMessageVerb(MessageType type, int verb, const char *format, va_list args)
|
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
const char *type_str;
|
|
|
|
char buf[1024];
|
|
|
|
const size_t size = sizeof(buf);
|
|
|
|
Bool newline;
|
|
|
|
size_t len = 0;
|
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
if (inSignalContext) {
|
2014-09-27 11:52:59 -06:00
|
|
|
LogVMessageVerbSigSafe(type, verb, format, args);
|
|
|
|
return;
|
2013-06-07 11:28:45 -06:00
|
|
|
}
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
type_str = LogMessageTypeVerbString(type, verb);
|
|
|
|
if (!type_str)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* if type_str is not "", prepend it and ' ', to message */
|
|
|
|
if (type_str[0] != '\0')
|
|
|
|
len += Xscnprintf(&buf[len], size - len, "%s ", type_str);
|
|
|
|
|
|
|
|
if (size - len > 1)
|
|
|
|
len += Xvscnprintf(&buf[len], size - len, format, args);
|
|
|
|
|
|
|
|
/* Force '\n' at end of truncated line */
|
|
|
|
if (size - len == 1)
|
|
|
|
buf[len - 1] = '\n';
|
|
|
|
|
|
|
|
newline = (buf[len - 1] == '\n');
|
|
|
|
LogSWrite(verb, buf, len, newline);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Log message with verbosity level specified. */
|
2010-07-27 13:02:24 -06:00
|
|
|
void
|
2006-11-26 11:13:41 -07:00
|
|
|
LogMessageVerb(MessageType type, int verb, const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, format);
|
|
|
|
LogVMessageVerb(type, verb, format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Log a message with the standard verbosity level of 1. */
|
2010-07-27 13:02:24 -06:00
|
|
|
void
|
2006-11-26 11:13:41 -07:00
|
|
|
LogMessage(MessageType type, const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, format);
|
|
|
|
LogVMessageVerb(type, 1, format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
/* Log a message using only signal safe functions. */
|
|
|
|
void
|
|
|
|
LogMessageVerbSigSafe(MessageType type, int verb, const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
|
|
LogVMessageVerbSigSafe(type, verb, format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LogVMessageVerbSigSafe(MessageType type, int verb, const char *format, va_list args)
|
|
|
|
{
|
|
|
|
const char *type_str;
|
|
|
|
char buf[1024];
|
|
|
|
int len;
|
|
|
|
Bool newline;
|
|
|
|
|
|
|
|
type_str = LogMessageTypeVerbString(type, verb);
|
|
|
|
if (!type_str)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* if type_str is not "", prepend it and ' ', to message */
|
|
|
|
if (type_str[0] != '\0') {
|
|
|
|
LogSWrite(verb, type_str, strlen_sigsafe(type_str), FALSE);
|
|
|
|
LogSWrite(verb, " ", 1, FALSE);
|
|
|
|
}
|
|
|
|
|
2014-09-27 11:52:59 -06:00
|
|
|
len = vpnprintf(buf, sizeof(buf), format, args);
|
2013-06-07 11:28:45 -06:00
|
|
|
|
|
|
|
/* Force '\n' at end of truncated line */
|
|
|
|
if (sizeof(buf) - len == 1)
|
|
|
|
buf[len - 1] = '\n';
|
|
|
|
|
2014-09-27 11:52:59 -06:00
|
|
|
newline = (len > 0 && buf[len - 1] == '\n');
|
2013-06-07 11:28:45 -06:00
|
|
|
LogSWrite(verb, buf, len, newline);
|
|
|
|
}
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
LogVHdrMessageVerb(MessageType type, int verb, const char *msg_format,
|
|
|
|
va_list msg_args, const char *hdr_format, va_list hdr_args)
|
|
|
|
{
|
|
|
|
const char *type_str;
|
|
|
|
char buf[1024];
|
|
|
|
const size_t size = sizeof(buf);
|
|
|
|
Bool newline;
|
|
|
|
size_t len = 0;
|
2014-09-27 11:52:59 -06:00
|
|
|
int (*vprintf_func)(char *, int, const char* _X_RESTRICT_KYWD f, va_list args)
|
|
|
|
_X_ATTRIBUTE_PRINTF(3, 0);
|
|
|
|
int (*printf_func)(char *, int, const char* _X_RESTRICT_KYWD f, ...)
|
|
|
|
_X_ATTRIBUTE_PRINTF(3, 4);
|
2013-06-07 11:28:45 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
type_str = LogMessageTypeVerbString(type, verb);
|
|
|
|
if (!type_str)
|
|
|
|
return;
|
|
|
|
|
2014-09-27 11:52:59 -06:00
|
|
|
if (inSignalContext) {
|
|
|
|
vprintf_func = vpnprintf;
|
|
|
|
printf_func = pnprintf;
|
|
|
|
} else {
|
|
|
|
vprintf_func = Xvscnprintf;
|
|
|
|
printf_func = Xscnprintf;
|
|
|
|
}
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* if type_str is not "", prepend it and ' ', to message */
|
|
|
|
if (type_str[0] != '\0')
|
2014-09-27 11:52:59 -06:00
|
|
|
len += printf_func(&buf[len], size - len, "%s ", type_str);
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
if (hdr_format && size - len > 1)
|
2014-09-27 11:52:59 -06:00
|
|
|
len += vprintf_func(&buf[len], size - len, hdr_format, hdr_args);
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
if (msg_format && size - len > 1)
|
2014-09-27 11:52:59 -06:00
|
|
|
len += vprintf_func(&buf[len], size - len, msg_format, msg_args);
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
/* Force '\n' at end of truncated line */
|
|
|
|
if (size - len == 1)
|
|
|
|
buf[len - 1] = '\n';
|
|
|
|
|
|
|
|
newline = (buf[len - 1] == '\n');
|
|
|
|
LogSWrite(verb, buf, len, newline);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LogHdrMessageVerb(MessageType type, int verb, const char *msg_format,
|
|
|
|
va_list msg_args, const char *hdr_format, ...)
|
|
|
|
{
|
|
|
|
va_list hdr_args;
|
|
|
|
|
|
|
|
va_start(hdr_args, hdr_format);
|
|
|
|
LogVHdrMessageVerb(type, verb, msg_format, msg_args, hdr_format, hdr_args);
|
|
|
|
va_end(hdr_args);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LogHdrMessage(MessageType type, const char *msg_format, va_list msg_args,
|
|
|
|
const char *hdr_format, ...)
|
|
|
|
{
|
|
|
|
va_list hdr_args;
|
|
|
|
|
|
|
|
va_start(hdr_args, hdr_format);
|
|
|
|
LogVHdrMessageVerb(type, 1, msg_format, msg_args, hdr_format, hdr_args);
|
|
|
|
va_end(hdr_args);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AbortServer(void)
|
|
|
|
_X_NORETURN;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
void
|
|
|
|
AbortServer(void)
|
|
|
|
{
|
2010-07-27 13:02:24 -06:00
|
|
|
#ifdef XF86BIGFONT
|
|
|
|
XF86BigfontCleanup();
|
|
|
|
#endif
|
2008-10-30 13:59:59 -06:00
|
|
|
CloseWellKnownConnections();
|
2006-11-26 11:13:41 -07:00
|
|
|
OsCleanup(TRUE);
|
2013-06-07 11:28:45 -06:00
|
|
|
AbortDevices();
|
2011-11-05 07:32:40 -06:00
|
|
|
AbortDDX(EXIT_ERR_ABORT);
|
2006-11-26 11:13:41 -07:00
|
|
|
fflush(stderr);
|
|
|
|
if (CoreDump)
|
2012-06-10 07:21:05 -06:00
|
|
|
OsAbort();
|
|
|
|
exit(1);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
#define AUDIT_PREFIX "AUDIT: %s: %ld: "
|
2006-11-26 11:13:41 -07:00
|
|
|
#ifndef AUDIT_TIMEOUT
|
2012-06-10 07:21:05 -06:00
|
|
|
#define AUDIT_TIMEOUT ((CARD32)(120 * 1000)) /* 2 mn */
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static int nrepeat = 0;
|
|
|
|
static int oldlen = -1;
|
|
|
|
static OsTimerPtr auditTimer = NULL;
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
void
|
2006-11-26 11:13:41 -07:00
|
|
|
FreeAuditTimer(void)
|
|
|
|
{
|
|
|
|
if (auditTimer != NULL) {
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Force output of pending messages */
|
|
|
|
TimerForce(auditTimer);
|
|
|
|
TimerFree(auditTimer);
|
|
|
|
auditTimer = NULL;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
AuditPrefix(void)
|
|
|
|
{
|
|
|
|
time_t tm;
|
|
|
|
char *autime, *s;
|
|
|
|
char *tmpBuf;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
time(&tm);
|
|
|
|
autime = ctime(&tm);
|
|
|
|
if ((s = strchr(autime, '\n')))
|
2012-06-10 07:21:05 -06:00
|
|
|
*s = '\0';
|
2009-09-06 13:44:18 -06:00
|
|
|
len = strlen(AUDIT_PREFIX) + strlen(autime) + 10 + 1;
|
2006-11-26 11:13:41 -07:00
|
|
|
tmpBuf = malloc(len);
|
|
|
|
if (!tmpBuf)
|
2012-06-10 07:21:05 -06:00
|
|
|
return NULL;
|
|
|
|
snprintf(tmpBuf, len, AUDIT_PREFIX, autime, (unsigned long) getpid());
|
2006-11-26 11:13:41 -07:00
|
|
|
return tmpBuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
AuditF(const char *f, ...)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, f);
|
|
|
|
|
|
|
|
VAuditF(f, args);
|
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
|
|
|
static CARD32
|
2014-09-27 11:52:59 -06:00
|
|
|
AuditFlush(OsTimerPtr timer, CARD32 now, void *arg)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
char *prefix;
|
|
|
|
|
|
|
|
if (nrepeat > 0) {
|
2012-06-10 07:21:05 -06:00
|
|
|
prefix = AuditPrefix();
|
|
|
|
ErrorF("%slast message repeated %d times\n",
|
|
|
|
prefix != NULL ? prefix : "", nrepeat);
|
|
|
|
nrepeat = 0;
|
|
|
|
free(prefix);
|
|
|
|
return AUDIT_TIMEOUT;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* if the timer expires without anything to print, flush the message */
|
|
|
|
oldlen = -1;
|
|
|
|
return 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
VAuditF(const char *f, va_list args)
|
|
|
|
{
|
|
|
|
char *prefix;
|
|
|
|
char buf[1024];
|
|
|
|
int len;
|
|
|
|
static char oldbuf[1024];
|
|
|
|
|
|
|
|
prefix = AuditPrefix();
|
|
|
|
len = vsnprintf(buf, sizeof(buf), f, args);
|
|
|
|
|
|
|
|
if (len == oldlen && strcmp(buf, oldbuf) == 0) {
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Message already seen */
|
|
|
|
nrepeat++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* new message */
|
|
|
|
if (auditTimer != NULL)
|
|
|
|
TimerForce(auditTimer);
|
|
|
|
ErrorF("%s%s", prefix != NULL ? prefix : "", buf);
|
|
|
|
strlcpy(oldbuf, buf, sizeof(oldbuf));
|
|
|
|
oldlen = len;
|
|
|
|
nrepeat = 0;
|
|
|
|
auditTimer = TimerSet(auditTimer, 0, AUDIT_TIMEOUT, AuditFlush, NULL);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2011-11-05 07:32:40 -06:00
|
|
|
free(prefix);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
void
|
2006-11-26 11:13:41 -07:00
|
|
|
FatalError(const char *f, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
2013-06-07 11:28:45 -06:00
|
|
|
va_list args2;
|
2006-11-26 11:13:41 -07:00
|
|
|
static Bool beenhere = FALSE;
|
|
|
|
|
|
|
|
if (beenhere)
|
2013-08-24 13:44:25 -06:00
|
|
|
ErrorFSigSafe("\nFatalError re-entered, aborting\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
else
|
2013-08-24 13:44:25 -06:00
|
|
|
ErrorFSigSafe("\nFatal server error:\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
va_start(args, f);
|
2013-06-07 11:28:45 -06:00
|
|
|
|
|
|
|
/* Make a copy for OsVendorFatalError */
|
|
|
|
va_copy(args2, args);
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
#ifdef __APPLE__
|
2011-11-05 07:32:40 -06:00
|
|
|
{
|
2013-06-07 11:28:45 -06:00
|
|
|
va_list apple_args;
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
va_copy(apple_args, args);
|
|
|
|
(void)vsnprintf(__crashreporter_info_buff__,
|
|
|
|
sizeof(__crashreporter_info_buff__), f, apple_args);
|
|
|
|
va_end(apple_args);
|
2011-11-05 07:32:40 -06:00
|
|
|
}
|
2010-07-27 13:02:24 -06:00
|
|
|
#endif
|
2013-08-24 13:44:25 -06:00
|
|
|
VErrorFSigSafe(f, args);
|
2006-11-26 11:13:41 -07:00
|
|
|
va_end(args);
|
2013-08-24 13:44:25 -06:00
|
|
|
ErrorFSigSafe("\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
if (!beenhere)
|
2013-06-07 11:28:45 -06:00
|
|
|
OsVendorFatalError(f, args2);
|
|
|
|
va_end(args2);
|
2006-11-26 11:13:41 -07:00
|
|
|
if (!beenhere) {
|
2012-06-10 07:21:05 -06:00
|
|
|
beenhere = TRUE;
|
|
|
|
AbortServer();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
OsAbort();
|
|
|
|
/*NOTREACHED*/}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
void
|
2006-11-26 11:13:41 -07:00
|
|
|
VErrorF(const char *f, va_list args)
|
|
|
|
{
|
|
|
|
#ifdef DDXOSVERRORF
|
|
|
|
if (OsVendorVErrorFProc)
|
2012-06-10 07:21:05 -06:00
|
|
|
OsVendorVErrorFProc(f, args);
|
2006-11-26 11:13:41 -07:00
|
|
|
else
|
2012-06-10 07:21:05 -06:00
|
|
|
LogVWrite(-1, f, args);
|
2006-11-26 11:13:41 -07:00
|
|
|
#else
|
|
|
|
LogVWrite(-1, f, args);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
ErrorF(const char *f, ...)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, f);
|
|
|
|
VErrorF(f, args);
|
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
void
|
|
|
|
VErrorFSigSafe(const char *f, va_list args)
|
|
|
|
{
|
|
|
|
LogVMessageVerbSigSafe(X_ERROR, -1, f, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ErrorFSigSafe(const char *f, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, f);
|
|
|
|
VErrorFSigSafe(f, args);
|
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
void
|
2007-11-24 12:04:00 -07:00
|
|
|
LogPrintMarkers(void)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
/* Show what the message marker symbols mean. */
|
2010-07-27 13:02:24 -06:00
|
|
|
LogWrite(0, "Markers: ");
|
|
|
|
LogMessageVerb(X_PROBED, 0, "probed, ");
|
|
|
|
LogMessageVerb(X_CONFIG, 0, "from config file, ");
|
|
|
|
LogMessageVerb(X_DEFAULT, 0, "default setting,\n\t");
|
|
|
|
LogMessageVerb(X_CMDLINE, 0, "from command line, ");
|
|
|
|
LogMessageVerb(X_NOTICE, 0, "notice, ");
|
|
|
|
LogMessageVerb(X_INFO, 0, "informational,\n\t");
|
|
|
|
LogMessageVerb(X_WARNING, 0, "warning, ");
|
|
|
|
LogMessageVerb(X_ERROR, 0, "error, ");
|
|
|
|
LogMessageVerb(X_NOT_IMPLEMENTED, 0, "not implemented, ");
|
|
|
|
LogMessageVerb(X_UNKNOWN, 0, "unknown.\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|