2008-11-06 16:36:07 +00:00
|
|
|
/*
|
|
|
|
* logging.c: internal logging and debugging
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2008-12-22 10:36:54 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2009-01-06 18:32:03 +00:00
|
|
|
#include <unistd.h>
|
2008-12-22 10:36:54 +00:00
|
|
|
#if HAVE_SYSLOG_H
|
|
|
|
#include <syslog.h>
|
|
|
|
#endif
|
|
|
|
|
2008-11-06 16:36:07 +00:00
|
|
|
#include "logging.h"
|
2008-12-22 10:36:54 +00:00
|
|
|
#include "memory.h"
|
|
|
|
#include "util.h"
|
2009-10-08 15:05:01 +00:00
|
|
|
#include "buf.h"
|
2009-01-15 19:56:05 +00:00
|
|
|
#include "threads.h"
|
2008-11-06 16:36:07 +00:00
|
|
|
|
2008-12-22 10:36:54 +00:00
|
|
|
/*
|
|
|
|
* Macro used to format the message as a string in virLogMessage
|
|
|
|
* and borrowed from libxml2 (also used in virRaiseError)
|
|
|
|
*/
|
|
|
|
#define VIR_GET_VAR_STR(msg, str) { \
|
|
|
|
int size, prev_size = -1; \
|
|
|
|
int chars; \
|
|
|
|
char *larger; \
|
|
|
|
va_list ap; \
|
|
|
|
\
|
|
|
|
str = (char *) malloc(150); \
|
|
|
|
if (str != NULL) { \
|
|
|
|
\
|
|
|
|
size = 150; \
|
|
|
|
\
|
|
|
|
while (1) { \
|
|
|
|
va_start(ap, msg); \
|
|
|
|
chars = vsnprintf(str, size, msg, ap); \
|
|
|
|
va_end(ap); \
|
|
|
|
if ((chars > -1) && (chars < size)) { \
|
|
|
|
if (prev_size == chars) { \
|
|
|
|
break; \
|
|
|
|
} else { \
|
|
|
|
prev_size = chars; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
if (chars > -1) \
|
|
|
|
size += chars + 1; \
|
|
|
|
else \
|
|
|
|
size += 100; \
|
|
|
|
if ((larger = (char *) realloc(str, size)) == NULL) { \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
str = larger; \
|
|
|
|
}} \
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A logging buffer to keep some history over logs
|
|
|
|
*/
|
|
|
|
#define LOG_BUFFER_SIZE 64000
|
|
|
|
|
|
|
|
static char virLogBuffer[LOG_BUFFER_SIZE + 1];
|
|
|
|
static int virLogLen = 0;
|
|
|
|
static int virLogStart = 0;
|
|
|
|
static int virLogEnd = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Filters are used to refine the rules on what to keep or drop
|
|
|
|
* based on a matching pattern (currently a substring)
|
|
|
|
*/
|
|
|
|
struct _virLogFilter {
|
|
|
|
const char *match;
|
|
|
|
int priority;
|
|
|
|
};
|
|
|
|
typedef struct _virLogFilter virLogFilter;
|
|
|
|
typedef virLogFilter *virLogFilterPtr;
|
|
|
|
|
|
|
|
static virLogFilterPtr virLogFilters = NULL;
|
|
|
|
static int virLogNbFilters = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Outputs are used to emit the messages retained
|
|
|
|
* after filtering, multiple output can be used simultaneously
|
|
|
|
*/
|
|
|
|
struct _virLogOutput {
|
|
|
|
void *data;
|
|
|
|
virLogOutputFunc f;
|
|
|
|
virLogCloseFunc c;
|
|
|
|
int priority;
|
2009-10-08 15:05:01 +00:00
|
|
|
virLogDestination dest;
|
|
|
|
const char *name;
|
2008-12-22 10:36:54 +00:00
|
|
|
};
|
|
|
|
typedef struct _virLogOutput virLogOutput;
|
|
|
|
typedef virLogOutput *virLogOutputPtr;
|
|
|
|
|
|
|
|
static virLogOutputPtr virLogOutputs = NULL;
|
|
|
|
static int virLogNbOutputs = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Default priorities
|
|
|
|
*/
|
2009-07-01 11:21:15 +00:00
|
|
|
static virLogPriority virLogDefaultPriority = VIR_LOG_DEFAULT;
|
2008-12-22 10:36:54 +00:00
|
|
|
|
|
|
|
static int virLogResetFilters(void);
|
|
|
|
static int virLogResetOutputs(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Logs accesses must be serialized though a mutex
|
|
|
|
*/
|
2009-01-15 19:56:05 +00:00
|
|
|
virMutex virLogMutex;
|
2008-12-22 10:36:54 +00:00
|
|
|
|
|
|
|
static void virLogLock(void)
|
|
|
|
{
|
2009-01-15 19:56:05 +00:00
|
|
|
virMutexLock(&virLogMutex);
|
2008-12-22 10:36:54 +00:00
|
|
|
}
|
|
|
|
static void virLogUnlock(void)
|
|
|
|
{
|
2009-01-15 19:56:05 +00:00
|
|
|
virMutexUnlock(&virLogMutex);
|
2008-12-22 10:36:54 +00:00
|
|
|
}
|
|
|
|
|
2009-10-08 15:05:01 +00:00
|
|
|
static const char *virLogOutputString(virLogDestination ldest) {
|
|
|
|
switch (ldest) {
|
|
|
|
case VIR_LOG_TO_STDERR:
|
|
|
|
return("stderr");
|
|
|
|
case VIR_LOG_TO_SYSLOG:
|
|
|
|
return("syslog");
|
|
|
|
case VIR_LOG_TO_FILE:
|
|
|
|
return("file");
|
|
|
|
}
|
|
|
|
return("unknown");
|
|
|
|
}
|
2008-12-22 10:36:54 +00:00
|
|
|
|
|
|
|
static const char *virLogPriorityString(virLogPriority lvl) {
|
|
|
|
switch (lvl) {
|
|
|
|
case VIR_LOG_DEBUG:
|
|
|
|
return("debug");
|
|
|
|
case VIR_LOG_INFO:
|
|
|
|
return("info");
|
|
|
|
case VIR_LOG_WARN:
|
|
|
|
return("warning");
|
|
|
|
case VIR_LOG_ERROR:
|
|
|
|
return("error");
|
|
|
|
}
|
|
|
|
return("unknown");
|
|
|
|
}
|
|
|
|
|
|
|
|
static int virLogInitialized = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogStartup:
|
|
|
|
*
|
|
|
|
* Initialize the logging module
|
|
|
|
*
|
|
|
|
* Returns 0 if successful, and -1 in case or error
|
|
|
|
*/
|
|
|
|
int virLogStartup(void) {
|
|
|
|
if (virLogInitialized)
|
|
|
|
return(-1);
|
2009-01-15 19:56:05 +00:00
|
|
|
|
|
|
|
if (virMutexInit(&virLogMutex) < 0)
|
|
|
|
return -1;
|
|
|
|
|
2008-12-22 10:36:54 +00:00
|
|
|
virLogInitialized = 1;
|
|
|
|
virLogLock();
|
|
|
|
virLogLen = 0;
|
|
|
|
virLogStart = 0;
|
|
|
|
virLogEnd = 0;
|
2009-07-01 11:21:15 +00:00
|
|
|
virLogDefaultPriority = VIR_LOG_DEFAULT;
|
2008-12-22 10:36:54 +00:00
|
|
|
virLogUnlock();
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogReset:
|
|
|
|
*
|
|
|
|
* Reset the logging module to its default initial state
|
|
|
|
*
|
|
|
|
* Returns 0 if successful, and -1 in case or error
|
|
|
|
*/
|
|
|
|
int virLogReset(void) {
|
|
|
|
if (!virLogInitialized)
|
|
|
|
return(virLogStartup());
|
|
|
|
|
|
|
|
virLogLock();
|
|
|
|
virLogResetFilters();
|
|
|
|
virLogResetOutputs();
|
|
|
|
virLogLen = 0;
|
|
|
|
virLogStart = 0;
|
|
|
|
virLogEnd = 0;
|
2009-07-01 11:21:15 +00:00
|
|
|
virLogDefaultPriority = VIR_LOG_DEFAULT;
|
2008-12-22 10:36:54 +00:00
|
|
|
virLogUnlock();
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* virLogShutdown:
|
|
|
|
*
|
|
|
|
* Shutdown the logging module
|
|
|
|
*/
|
|
|
|
void virLogShutdown(void) {
|
|
|
|
if (!virLogInitialized)
|
|
|
|
return;
|
|
|
|
virLogLock();
|
|
|
|
virLogResetFilters();
|
|
|
|
virLogResetOutputs();
|
|
|
|
virLogLen = 0;
|
|
|
|
virLogStart = 0;
|
|
|
|
virLogEnd = 0;
|
|
|
|
virLogUnlock();
|
2009-01-15 19:56:05 +00:00
|
|
|
virMutexDestroy(&virLogMutex);
|
2008-12-22 10:36:54 +00:00
|
|
|
virLogInitialized = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Store a string in the ring buffer
|
|
|
|
*/
|
|
|
|
static void virLogStr(const char *str, int len) {
|
|
|
|
int tmp;
|
|
|
|
|
|
|
|
if (str == NULL)
|
|
|
|
return;
|
|
|
|
if (len <= 0)
|
|
|
|
len = strlen(str);
|
|
|
|
if (len > LOG_BUFFER_SIZE)
|
|
|
|
return;
|
|
|
|
virLogLock();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* copy the data and reset the end, we cycle over the end of the buffer
|
|
|
|
*/
|
|
|
|
if (virLogEnd + len >= LOG_BUFFER_SIZE) {
|
|
|
|
tmp = LOG_BUFFER_SIZE - virLogEnd;
|
|
|
|
memcpy(&virLogBuffer[virLogEnd], str, tmp);
|
|
|
|
virLogBuffer[LOG_BUFFER_SIZE] = 0;
|
2009-09-03 16:36:59 +00:00
|
|
|
memcpy(&virLogBuffer[0], &str[tmp], len - tmp);
|
2008-12-22 10:36:54 +00:00
|
|
|
virLogEnd = len - tmp;
|
|
|
|
} else {
|
|
|
|
memcpy(&virLogBuffer[virLogEnd], str, len);
|
|
|
|
virLogEnd += len;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Update the log length, and if full move the start index
|
|
|
|
*/
|
|
|
|
virLogLen += len;
|
|
|
|
if (virLogLen > LOG_BUFFER_SIZE) {
|
|
|
|
tmp = virLogLen - LOG_BUFFER_SIZE;
|
|
|
|
virLogLen = LOG_BUFFER_SIZE;
|
|
|
|
virLogStart += tmp;
|
|
|
|
}
|
|
|
|
virLogUnlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
/*
|
|
|
|
* Output the ring buffer
|
|
|
|
*/
|
|
|
|
static int virLogDump(void *data, virLogOutputFunc f) {
|
|
|
|
int ret = 0, tmp;
|
|
|
|
|
|
|
|
if ((virLogLen == 0) || (f == NULL))
|
|
|
|
return(0);
|
|
|
|
virLogLock();
|
|
|
|
if (virLogStart + virLogLen < LOG_BUFFER_SIZE) {
|
|
|
|
push_end:
|
|
|
|
virLogBuffer[virLogStart + virLogLen] = 0;
|
|
|
|
tmp = f(data, &virLogBuffer[virLogStart], virLogLen);
|
|
|
|
if (tmp < 0) {
|
|
|
|
ret = -1;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
ret += tmp;
|
|
|
|
virLogStart += tmp;
|
|
|
|
virLogLen -= tmp;
|
|
|
|
} else {
|
|
|
|
tmp = LOG_BUFFER_SIZE - virLogStart;
|
|
|
|
ret = f(data, &virLogBuffer[virLogStart], tmp);
|
|
|
|
if (ret < 0) {
|
|
|
|
ret = -1;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (ret < tmp) {
|
|
|
|
virLogStart += ret;
|
|
|
|
virLogLen -= ret;
|
|
|
|
} else {
|
|
|
|
virLogStart = 0;
|
|
|
|
virLogLen -= tmp;
|
|
|
|
/* dump the second part */
|
|
|
|
if (virLogLen > 0)
|
|
|
|
goto push_end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
error:
|
|
|
|
virLogUnlock();
|
|
|
|
return(ret);
|
|
|
|
}
|
2008-11-06 16:36:07 +00:00
|
|
|
#endif
|
|
|
|
|
2008-12-22 10:36:54 +00:00
|
|
|
/**
|
|
|
|
* virLogSetDefaultPriority:
|
|
|
|
* @priority: the default priority level
|
|
|
|
*
|
|
|
|
* Set the default priority level, i.e. any logged data of a priority
|
|
|
|
* equal or superior to this level will be logged, unless a specific rule
|
|
|
|
* was defined for the log category of the message.
|
|
|
|
*
|
|
|
|
* Returns 0 if successful, -1 in case of error.
|
|
|
|
*/
|
|
|
|
int virLogSetDefaultPriority(int priority) {
|
2009-08-06 13:38:11 +00:00
|
|
|
if ((priority < VIR_LOG_DEBUG) || (priority > VIR_LOG_ERROR)) {
|
|
|
|
VIR_WARN0(_("Ignoring invalid log level setting."));
|
2008-12-22 10:36:54 +00:00
|
|
|
return(-1);
|
2009-08-06 13:38:11 +00:00
|
|
|
}
|
2008-12-22 10:36:54 +00:00
|
|
|
if (!virLogInitialized)
|
|
|
|
virLogStartup();
|
|
|
|
virLogDefaultPriority = priority;
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogResetFilters:
|
|
|
|
*
|
|
|
|
* Removes the set of logging filters defined.
|
|
|
|
*
|
|
|
|
* Returns the number of filters removed
|
|
|
|
*/
|
|
|
|
static int virLogResetFilters(void) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < virLogNbFilters;i++)
|
|
|
|
VIR_FREE(virLogFilters[i].match);
|
|
|
|
VIR_FREE(virLogFilters);
|
|
|
|
virLogNbFilters = 0;
|
|
|
|
return(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogDefineFilter:
|
|
|
|
* @match: the pattern to match
|
|
|
|
* @priority: the priority to give to messages matching the pattern
|
|
|
|
* @flags: extra flag, currently unused
|
|
|
|
*
|
|
|
|
* Defines a pattern used for log filtering, it allow to select or
|
|
|
|
* reject messages independently of the default priority.
|
|
|
|
* The filter defines a rules that will apply only to messages matching
|
|
|
|
* the pattern (currently if @match is a substring of the message category)
|
|
|
|
*
|
|
|
|
* Returns -1 in case of failure or the filter number if successful
|
|
|
|
*/
|
|
|
|
int virLogDefineFilter(const char *match, int priority,
|
|
|
|
int flags ATTRIBUTE_UNUSED) {
|
|
|
|
int i;
|
|
|
|
char *mdup = NULL;
|
|
|
|
|
|
|
|
if ((match == NULL) || (priority < VIR_LOG_DEBUG) ||
|
|
|
|
(priority > VIR_LOG_ERROR))
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
virLogLock();
|
|
|
|
for (i = 0;i < virLogNbFilters;i++) {
|
|
|
|
if (STREQ(virLogFilters[i].match, match)) {
|
|
|
|
virLogFilters[i].priority = priority;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mdup = strdup(match);
|
2009-11-10 11:56:11 +00:00
|
|
|
if (mdup == NULL) {
|
2008-12-22 10:36:54 +00:00
|
|
|
i = -1;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
i = virLogNbFilters;
|
|
|
|
if (VIR_REALLOC_N(virLogFilters, virLogNbFilters + 1)) {
|
|
|
|
i = -1;
|
|
|
|
VIR_FREE(mdup);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
virLogFilters[i].match = mdup;
|
|
|
|
virLogFilters[i].priority = priority;
|
|
|
|
virLogNbFilters++;
|
|
|
|
cleanup:
|
|
|
|
virLogUnlock();
|
|
|
|
return(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogFiltersCheck:
|
|
|
|
* @input: the input string
|
|
|
|
*
|
|
|
|
* Check the input of the message against the existing filters. Currently
|
|
|
|
* the match is just a substring check of the category used as the input
|
|
|
|
* string, a more subtle approach could be used instead
|
|
|
|
*
|
|
|
|
* Returns 0 if not matched or the new priority if found.
|
|
|
|
*/
|
|
|
|
static int virLogFiltersCheck(const char *input) {
|
|
|
|
int ret = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
virLogLock();
|
|
|
|
for (i = 0;i < virLogNbFilters;i++) {
|
|
|
|
if (strstr(input, virLogFilters[i].match)) {
|
|
|
|
ret = virLogFilters[i].priority;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
virLogUnlock();
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogResetOutputs:
|
|
|
|
*
|
|
|
|
* Removes the set of logging output defined.
|
|
|
|
*
|
|
|
|
* Returns the number of output removed
|
|
|
|
*/
|
|
|
|
static int virLogResetOutputs(void) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0;i < virLogNbOutputs;i++) {
|
|
|
|
if (virLogOutputs[i].c != NULL)
|
|
|
|
virLogOutputs[i].c(virLogOutputs[i].data);
|
2009-10-08 15:05:01 +00:00
|
|
|
VIR_FREE(virLogOutputs[i].name);
|
2008-12-22 10:36:54 +00:00
|
|
|
}
|
|
|
|
VIR_FREE(virLogOutputs);
|
|
|
|
i = virLogNbOutputs;
|
|
|
|
virLogNbOutputs = 0;
|
|
|
|
return(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogDefineOutput:
|
|
|
|
* @f: the function to call to output a message
|
2009-10-08 15:05:01 +00:00
|
|
|
* @c: the function to call to close the output (or NULL)
|
2008-12-22 10:36:54 +00:00
|
|
|
* @data: extra data passed as first arg to the function
|
|
|
|
* @priority: minimal priority for this filter, use 0 for none
|
2009-10-08 15:05:01 +00:00
|
|
|
* @dest: where to send output of this priority
|
|
|
|
* @name: optional name data associated with an output
|
2008-12-22 10:36:54 +00:00
|
|
|
* @flags: extra flag, currently unused
|
|
|
|
*
|
|
|
|
* Defines an output function for log messages. Each message once
|
|
|
|
* gone though filtering is emitted through each registered output.
|
|
|
|
*
|
|
|
|
* Returns -1 in case of failure or the output number if successful
|
|
|
|
*/
|
|
|
|
int virLogDefineOutput(virLogOutputFunc f, virLogCloseFunc c, void *data,
|
2009-10-08 15:05:01 +00:00
|
|
|
int priority, int dest, const char *name,
|
|
|
|
int flags ATTRIBUTE_UNUSED) {
|
2008-12-22 10:36:54 +00:00
|
|
|
int ret = -1;
|
2009-10-08 15:05:01 +00:00
|
|
|
char *ndup = NULL;
|
2008-12-22 10:36:54 +00:00
|
|
|
|
|
|
|
if (f == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
2009-10-08 15:05:01 +00:00
|
|
|
if (dest == VIR_LOG_TO_SYSLOG || dest == VIR_LOG_TO_FILE) {
|
|
|
|
if (name == NULL)
|
|
|
|
return(-1);
|
|
|
|
ndup = strdup(name);
|
|
|
|
if (ndup == NULL)
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2008-12-22 10:36:54 +00:00
|
|
|
virLogLock();
|
|
|
|
if (VIR_REALLOC_N(virLogOutputs, virLogNbOutputs + 1)) {
|
2009-11-10 11:56:11 +00:00
|
|
|
VIR_FREE(ndup);
|
2008-12-22 10:36:54 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
ret = virLogNbOutputs++;
|
|
|
|
virLogOutputs[ret].f = f;
|
|
|
|
virLogOutputs[ret].c = c;
|
|
|
|
virLogOutputs[ret].data = data;
|
|
|
|
virLogOutputs[ret].priority = priority;
|
2009-10-08 15:05:01 +00:00
|
|
|
virLogOutputs[ret].dest = dest;
|
|
|
|
virLogOutputs[ret].name = ndup;
|
2008-12-22 10:36:54 +00:00
|
|
|
cleanup:
|
|
|
|
virLogUnlock();
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogMessage:
|
|
|
|
* @category: where is that message coming from
|
|
|
|
* @priority: the priority level
|
2008-12-22 10:44:10 +00:00
|
|
|
* @funcname: the function emitting the (debug) message
|
|
|
|
* @linenr: line where the message was emitted
|
2008-12-22 10:36:54 +00:00
|
|
|
* @flags: extra flags, 1 if coming from the error handler
|
|
|
|
* @fmt: the string format
|
|
|
|
* @...: the arguments
|
|
|
|
*
|
|
|
|
* Call the libvirt logger with some informations. Based on the configuration
|
|
|
|
* the message may be stored, sent to output or just discarded
|
|
|
|
*/
|
2008-12-22 10:44:10 +00:00
|
|
|
void virLogMessage(const char *category, int priority, const char *funcname,
|
|
|
|
long long linenr, int flags, const char *fmt, ...) {
|
2008-12-22 10:36:54 +00:00
|
|
|
char *str = NULL;
|
|
|
|
char *msg;
|
|
|
|
struct timeval cur_time;
|
|
|
|
struct tm time_info;
|
2008-12-22 10:44:10 +00:00
|
|
|
int len, fprio, i, ret;
|
2008-12-22 10:36:54 +00:00
|
|
|
|
|
|
|
if (!virLogInitialized)
|
|
|
|
virLogStartup();
|
|
|
|
|
|
|
|
if (fmt == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check against list of specific logging patterns
|
|
|
|
*/
|
|
|
|
fprio = virLogFiltersCheck(category);
|
|
|
|
if (fprio == 0) {
|
|
|
|
if (priority < virLogDefaultPriority)
|
|
|
|
return;
|
|
|
|
} else if (priority < fprio)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* serialize the error message, add level and timestamp
|
|
|
|
*/
|
|
|
|
VIR_GET_VAR_STR(fmt, str);
|
|
|
|
if (str == NULL)
|
|
|
|
return;
|
|
|
|
gettimeofday(&cur_time, NULL);
|
|
|
|
localtime_r(&cur_time.tv_sec, &time_info);
|
|
|
|
|
2009-05-28 12:54:07 +00:00
|
|
|
if ((funcname != NULL)) {
|
2008-12-23 13:03:29 +00:00
|
|
|
ret = virAsprintf(&msg, "%02d:%02d:%02d.%03d: %s : %s:%lld : %s\n",
|
|
|
|
time_info.tm_hour, time_info.tm_min,
|
|
|
|
time_info.tm_sec, (int) cur_time.tv_usec / 1000,
|
|
|
|
virLogPriorityString(priority), funcname, linenr, str);
|
2008-12-22 10:44:10 +00:00
|
|
|
} else {
|
2008-12-23 13:03:29 +00:00
|
|
|
ret = virAsprintf(&msg, "%02d:%02d:%02d.%03d: %s : %s\n",
|
|
|
|
time_info.tm_hour, time_info.tm_min,
|
|
|
|
time_info.tm_sec, (int) cur_time.tv_usec / 1000,
|
|
|
|
virLogPriorityString(priority), str);
|
2008-12-22 10:44:10 +00:00
|
|
|
}
|
|
|
|
VIR_FREE(str);
|
|
|
|
if (ret < 0) {
|
2008-12-22 10:36:54 +00:00
|
|
|
/* apparently we're running out of memory */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Log based on defaults, first store in the history buffer
|
|
|
|
* then push the message on the outputs defined, if none
|
|
|
|
* use stderr.
|
|
|
|
* NOTE: the locking is a single point of contention for multiple
|
|
|
|
* threads, but avoid intermixing. Maybe set up locks per output
|
|
|
|
* to improve paralellism.
|
|
|
|
*/
|
|
|
|
len = strlen(msg);
|
|
|
|
virLogStr(msg, len);
|
|
|
|
virLogLock();
|
|
|
|
for (i = 0; i < virLogNbOutputs;i++) {
|
|
|
|
if (priority >= virLogOutputs[i].priority)
|
2008-12-22 10:44:10 +00:00
|
|
|
virLogOutputs[i].f(category, priority, funcname, linenr,
|
|
|
|
msg, len, virLogOutputs[i].data);
|
2008-12-22 10:36:54 +00:00
|
|
|
}
|
|
|
|
if ((virLogNbOutputs == 0) && (flags != 1))
|
|
|
|
safewrite(2, msg, len);
|
|
|
|
virLogUnlock();
|
|
|
|
|
|
|
|
VIR_FREE(msg);
|
|
|
|
}
|
|
|
|
|
2008-12-22 10:44:10 +00:00
|
|
|
static int virLogOutputToFd(const char *category ATTRIBUTE_UNUSED,
|
2008-12-22 10:36:54 +00:00
|
|
|
int priority ATTRIBUTE_UNUSED,
|
2008-12-22 10:44:10 +00:00
|
|
|
const char *funcname ATTRIBUTE_UNUSED,
|
|
|
|
long long linenr ATTRIBUTE_UNUSED,
|
|
|
|
const char *str, int len, void *data) {
|
2008-12-22 10:36:54 +00:00
|
|
|
int fd = (long) data;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (fd < 0)
|
|
|
|
return(-1);
|
|
|
|
ret = safewrite(fd, str, len);
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void virLogCloseFd(void *data) {
|
|
|
|
int fd = (long) data;
|
|
|
|
|
|
|
|
if (fd >= 0)
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int virLogAddOutputToStderr(int priority) {
|
2009-10-08 15:05:01 +00:00
|
|
|
if (virLogDefineOutput(virLogOutputToFd, NULL, (void *)2L, priority,
|
|
|
|
VIR_LOG_TO_STDERR, NULL, 0) < 0)
|
2008-12-22 10:36:54 +00:00
|
|
|
return(-1);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int virLogAddOutputToFile(int priority, const char *file) {
|
|
|
|
int fd;
|
|
|
|
|
2009-10-08 15:05:01 +00:00
|
|
|
fd = open(file, O_CREAT | O_APPEND | O_WRONLY, S_IRUSR | S_IWUSR);
|
2008-12-22 10:36:54 +00:00
|
|
|
if (fd < 0)
|
|
|
|
return(-1);
|
|
|
|
if (virLogDefineOutput(virLogOutputToFd, virLogCloseFd, (void *)(long)fd,
|
2009-10-08 15:05:01 +00:00
|
|
|
priority, VIR_LOG_TO_FILE, file, 0) < 0) {
|
2008-12-22 10:36:54 +00:00
|
|
|
close(fd);
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if HAVE_SYSLOG_H
|
2008-12-22 10:44:10 +00:00
|
|
|
static int virLogOutputToSyslog(const char *category ATTRIBUTE_UNUSED,
|
|
|
|
int priority,
|
|
|
|
const char *funcname ATTRIBUTE_UNUSED,
|
|
|
|
long long linenr ATTRIBUTE_UNUSED,
|
|
|
|
const char *str, int len ATTRIBUTE_UNUSED,
|
|
|
|
void *data ATTRIBUTE_UNUSED) {
|
2008-12-22 10:36:54 +00:00
|
|
|
int prio;
|
|
|
|
|
|
|
|
switch (priority) {
|
|
|
|
case VIR_LOG_DEBUG:
|
|
|
|
prio = LOG_DEBUG;
|
|
|
|
break;
|
|
|
|
case VIR_LOG_INFO:
|
|
|
|
prio = LOG_INFO;
|
|
|
|
break;
|
|
|
|
case VIR_LOG_WARN:
|
|
|
|
prio = LOG_WARNING;
|
|
|
|
break;
|
|
|
|
case VIR_LOG_ERROR:
|
|
|
|
prio = LOG_ERR;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
prio = LOG_ERR;
|
|
|
|
}
|
|
|
|
syslog(prio, "%s", str);
|
|
|
|
return(len);
|
|
|
|
}
|
|
|
|
|
2009-01-20 21:34:44 +00:00
|
|
|
static char *current_ident = NULL;
|
|
|
|
|
2008-12-22 10:36:54 +00:00
|
|
|
static void virLogCloseSyslog(void *data ATTRIBUTE_UNUSED) {
|
|
|
|
closelog();
|
2009-01-20 21:34:44 +00:00
|
|
|
VIR_FREE(current_ident);
|
2008-12-22 10:36:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int virLogAddOutputToSyslog(int priority, const char *ident) {
|
2009-01-20 21:34:44 +00:00
|
|
|
/*
|
|
|
|
* ident needs to be kept around on Solaris
|
|
|
|
*/
|
|
|
|
VIR_FREE(current_ident);
|
|
|
|
current_ident = strdup(ident);
|
|
|
|
if (current_ident == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
openlog(current_ident, 0, 0);
|
2008-12-22 10:36:54 +00:00
|
|
|
if (virLogDefineOutput(virLogOutputToSyslog, virLogCloseSyslog, NULL,
|
2009-10-08 15:05:01 +00:00
|
|
|
priority, VIR_LOG_TO_SYSLOG, ident, 0) < 0) {
|
2008-12-22 10:36:54 +00:00
|
|
|
closelog();
|
2009-01-20 21:34:44 +00:00
|
|
|
VIR_FREE(current_ident);
|
2008-12-22 10:36:54 +00:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
#endif /* HAVE_SYSLOG_H */
|
|
|
|
|
|
|
|
#define IS_SPACE(cur) \
|
|
|
|
((*cur == ' ') || (*cur == '\t') || (*cur == '\n') || \
|
|
|
|
(*cur == '\r') || (*cur == '\\'))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogParseOutputs:
|
|
|
|
* @outputs: string defining a (set of) output(s)
|
|
|
|
*
|
|
|
|
* The format for an output can be:
|
|
|
|
* x:stderr
|
|
|
|
* output goes to stderr
|
|
|
|
* x:syslog:name
|
|
|
|
* use syslog for the output and use the given name as the ident
|
|
|
|
* x:file:file_path
|
|
|
|
* output to a file, with the given filepath
|
|
|
|
* In all case the x prefix is the minimal level, acting as a filter
|
|
|
|
* 0: everything
|
|
|
|
* 1: DEBUG
|
|
|
|
* 2: INFO
|
|
|
|
* 3: WARNING
|
|
|
|
* 4: ERROR
|
|
|
|
*
|
|
|
|
* Multiple output can be defined in a single @output, they just need to be
|
|
|
|
* separated by spaces.
|
|
|
|
*
|
|
|
|
* Returns the number of output parsed and installed or -1 in case of error
|
|
|
|
*/
|
|
|
|
int virLogParseOutputs(const char *outputs) {
|
|
|
|
const char *cur = outputs, *str;
|
|
|
|
char *name;
|
2009-10-08 15:05:01 +00:00
|
|
|
char *abspath;
|
2008-12-22 10:36:54 +00:00
|
|
|
int prio;
|
2009-08-06 13:38:11 +00:00
|
|
|
int ret = -1;
|
|
|
|
int count = 0;
|
2008-12-22 10:36:54 +00:00
|
|
|
|
|
|
|
if (cur == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
virSkipSpaces(&cur);
|
|
|
|
while (*cur != 0) {
|
|
|
|
prio= virParseNumber(&cur);
|
2009-07-01 11:21:15 +00:00
|
|
|
if ((prio < VIR_LOG_DEBUG) || (prio > VIR_LOG_ERROR))
|
2009-08-06 13:38:11 +00:00
|
|
|
goto cleanup;
|
2008-12-22 10:36:54 +00:00
|
|
|
if (*cur != ':')
|
2009-08-06 13:38:11 +00:00
|
|
|
goto cleanup;
|
2008-12-22 10:36:54 +00:00
|
|
|
cur++;
|
|
|
|
if (STREQLEN(cur, "stderr", 6)) {
|
|
|
|
cur += 6;
|
|
|
|
if (virLogAddOutputToStderr(prio) == 0)
|
2009-08-06 13:38:11 +00:00
|
|
|
count++;
|
2008-12-22 10:36:54 +00:00
|
|
|
} else if (STREQLEN(cur, "syslog", 6)) {
|
|
|
|
cur += 6;
|
|
|
|
if (*cur != ':')
|
2009-08-06 13:38:11 +00:00
|
|
|
goto cleanup;
|
2008-12-22 10:36:54 +00:00
|
|
|
cur++;
|
|
|
|
str = cur;
|
|
|
|
while ((*cur != 0) && (!IS_SPACE(cur)))
|
|
|
|
cur++;
|
|
|
|
if (str == cur)
|
2009-08-06 13:38:11 +00:00
|
|
|
goto cleanup;
|
2008-12-22 10:36:54 +00:00
|
|
|
#if HAVE_SYSLOG_H
|
|
|
|
name = strndup(str, cur - str);
|
|
|
|
if (name == NULL)
|
2009-08-06 13:38:11 +00:00
|
|
|
goto cleanup;
|
2008-12-22 10:36:54 +00:00
|
|
|
if (virLogAddOutputToSyslog(prio, name) == 0)
|
2009-08-06 13:38:11 +00:00
|
|
|
count++;
|
2008-12-22 10:36:54 +00:00
|
|
|
VIR_FREE(name);
|
|
|
|
#endif /* HAVE_SYSLOG_H */
|
|
|
|
} else if (STREQLEN(cur, "file", 4)) {
|
|
|
|
cur += 4;
|
|
|
|
if (*cur != ':')
|
2009-08-06 13:38:11 +00:00
|
|
|
goto cleanup;
|
2008-12-22 10:36:54 +00:00
|
|
|
cur++;
|
|
|
|
str = cur;
|
|
|
|
while ((*cur != 0) && (!IS_SPACE(cur)))
|
|
|
|
cur++;
|
|
|
|
if (str == cur)
|
2009-08-06 13:38:11 +00:00
|
|
|
goto cleanup;
|
2008-12-22 10:36:54 +00:00
|
|
|
name = strndup(str, cur - str);
|
|
|
|
if (name == NULL)
|
2009-08-06 13:38:11 +00:00
|
|
|
goto cleanup;
|
2009-10-08 15:05:01 +00:00
|
|
|
if (virFileAbsPath(name, &abspath) < 0) {
|
|
|
|
VIR_FREE(name);
|
|
|
|
return -1; /* skip warning here because setting was fine */
|
|
|
|
}
|
|
|
|
if (virLogAddOutputToFile(prio, abspath) == 0)
|
2009-08-06 13:38:11 +00:00
|
|
|
count++;
|
2008-12-22 10:36:54 +00:00
|
|
|
VIR_FREE(name);
|
2009-10-08 15:05:01 +00:00
|
|
|
VIR_FREE(abspath);
|
2008-12-22 10:36:54 +00:00
|
|
|
} else {
|
2009-08-06 13:38:11 +00:00
|
|
|
goto cleanup;
|
2008-12-22 10:36:54 +00:00
|
|
|
}
|
|
|
|
virSkipSpaces(&cur);
|
|
|
|
}
|
2009-08-06 13:38:11 +00:00
|
|
|
ret = count;
|
|
|
|
cleanup:
|
|
|
|
if (ret == -1)
|
|
|
|
VIR_WARN0(_("Ignoring invalid log output setting."));
|
2008-12-22 10:36:54 +00:00
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogParseFilters:
|
|
|
|
* @filters: string defining a (set of) filter(s)
|
|
|
|
*
|
|
|
|
* The format for a filter is:
|
|
|
|
* x:name
|
|
|
|
* where name is a match string
|
|
|
|
* the x prefix is the minimal level where the messages should be logged
|
|
|
|
* 1: DEBUG
|
|
|
|
* 2: INFO
|
|
|
|
* 3: WARNING
|
|
|
|
* 4: ERROR
|
|
|
|
*
|
|
|
|
* Multiple filter can be defined in a single @filters, they just need to be
|
|
|
|
* separated by spaces.
|
|
|
|
*
|
|
|
|
* Returns the number of filter parsed and installed or -1 in case of error
|
|
|
|
*/
|
|
|
|
int virLogParseFilters(const char *filters) {
|
|
|
|
const char *cur = filters, *str;
|
|
|
|
char *name;
|
|
|
|
int prio;
|
2009-08-06 13:38:11 +00:00
|
|
|
int ret = -1;
|
|
|
|
int count = 0;
|
2008-12-22 10:36:54 +00:00
|
|
|
|
|
|
|
if (cur == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
virSkipSpaces(&cur);
|
|
|
|
while (*cur != 0) {
|
|
|
|
prio= virParseNumber(&cur);
|
2009-07-01 11:21:15 +00:00
|
|
|
if ((prio < VIR_LOG_DEBUG) || (prio > VIR_LOG_ERROR))
|
2009-08-06 13:38:11 +00:00
|
|
|
goto cleanup;
|
2008-12-22 10:36:54 +00:00
|
|
|
if (*cur != ':')
|
2009-08-06 13:38:11 +00:00
|
|
|
goto cleanup;
|
2008-12-22 10:36:54 +00:00
|
|
|
cur++;
|
|
|
|
str = cur;
|
|
|
|
while ((*cur != 0) && (!IS_SPACE(cur)))
|
|
|
|
cur++;
|
|
|
|
if (str == cur)
|
2009-08-06 13:38:11 +00:00
|
|
|
goto cleanup;
|
2008-12-22 10:36:54 +00:00
|
|
|
name = strndup(str, cur - str);
|
|
|
|
if (name == NULL)
|
2009-08-06 13:38:11 +00:00
|
|
|
goto cleanup;
|
2008-12-22 10:36:54 +00:00
|
|
|
if (virLogDefineFilter(name, prio, 0) >= 0)
|
2009-08-06 13:38:11 +00:00
|
|
|
count++;
|
2008-12-22 10:36:54 +00:00
|
|
|
VIR_FREE(name);
|
|
|
|
virSkipSpaces(&cur);
|
|
|
|
}
|
2009-08-06 13:38:11 +00:00
|
|
|
ret = count;
|
|
|
|
cleanup:
|
|
|
|
if (ret == -1)
|
|
|
|
VIR_WARN0(_("Ignoring invalid log filter setting."));
|
2008-12-22 10:36:54 +00:00
|
|
|
return(ret);
|
|
|
|
}
|
2009-08-06 13:45:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogGetDefaultPriority:
|
|
|
|
*
|
|
|
|
* Returns the current logging priority level.
|
|
|
|
*/
|
|
|
|
int virLogGetDefaultPriority(void) {
|
|
|
|
return (virLogDefaultPriority);
|
|
|
|
}
|
|
|
|
|
2009-10-08 15:05:01 +00:00
|
|
|
/**
|
|
|
|
* virLogGetFilters:
|
|
|
|
*
|
|
|
|
* Returns a string listing the current filters, in the format originally
|
|
|
|
* specified in the config file or environment. Caller must free the
|
|
|
|
* result.
|
|
|
|
*/
|
|
|
|
char *virLogGetFilters(void) {
|
|
|
|
int i;
|
|
|
|
virBuffer filterbuf = VIR_BUFFER_INITIALIZER;
|
|
|
|
|
|
|
|
virLogLock();
|
|
|
|
for (i = 0; i < virLogNbFilters; i++) {
|
|
|
|
virBufferVSprintf(&filterbuf, "%d:%s ", virLogFilters[i].priority,
|
|
|
|
virLogFilters[i].match);
|
|
|
|
}
|
|
|
|
virLogUnlock();
|
|
|
|
|
2009-12-09 23:00:50 +00:00
|
|
|
if (virBufferError(&filterbuf)) {
|
|
|
|
virBufferFreeAndReset(&filterbuf);
|
2009-10-08 15:05:01 +00:00
|
|
|
return NULL;
|
2009-12-09 23:00:50 +00:00
|
|
|
}
|
2009-10-08 15:05:01 +00:00
|
|
|
|
|
|
|
return virBufferContentAndReset(&filterbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogGetOutputs:
|
|
|
|
*
|
|
|
|
* Returns a string listing the current outputs, in the format originally
|
|
|
|
* specified in the config file or environment. Caller must free the
|
|
|
|
* result.
|
|
|
|
*/
|
|
|
|
char *virLogGetOutputs(void) {
|
|
|
|
int i;
|
|
|
|
virBuffer outputbuf = VIR_BUFFER_INITIALIZER;
|
|
|
|
|
|
|
|
virLogLock();
|
|
|
|
for (i = 0; i < virLogNbOutputs; i++) {
|
|
|
|
int dest = virLogOutputs[i].dest;
|
|
|
|
if (i)
|
|
|
|
virBufferVSprintf(&outputbuf, " ");
|
|
|
|
switch (dest) {
|
|
|
|
case VIR_LOG_TO_SYSLOG:
|
|
|
|
case VIR_LOG_TO_FILE:
|
|
|
|
virBufferVSprintf(&outputbuf, "%d:%s:%s",
|
|
|
|
virLogOutputs[i].priority,
|
|
|
|
virLogOutputString(dest),
|
|
|
|
virLogOutputs[i].name);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
virBufferVSprintf(&outputbuf, "%d:%s",
|
|
|
|
virLogOutputs[i].priority,
|
|
|
|
virLogOutputString(dest));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
virLogUnlock();
|
|
|
|
|
2009-12-09 23:00:50 +00:00
|
|
|
if (virBufferError(&outputbuf)) {
|
|
|
|
virBufferFreeAndReset(&outputbuf);
|
2009-10-08 15:05:01 +00:00
|
|
|
return NULL;
|
2009-12-09 23:00:50 +00:00
|
|
|
}
|
2009-10-08 15:05:01 +00:00
|
|
|
|
|
|
|
return virBufferContentAndReset(&outputbuf);
|
|
|
|
}
|
|
|
|
|
2009-08-06 13:45:50 +00:00
|
|
|
/**
|
|
|
|
* virLogGetNbFilters:
|
|
|
|
*
|
|
|
|
* Returns the current number of defined log filters.
|
|
|
|
*/
|
|
|
|
int virLogGetNbFilters(void) {
|
|
|
|
return (virLogNbFilters);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogGetNbOutputs:
|
|
|
|
*
|
|
|
|
* Returns the current number of defined log outputs.
|
|
|
|
*/
|
|
|
|
int virLogGetNbOutputs(void) {
|
|
|
|
return (virLogNbOutputs);
|
|
|
|
}
|
2009-08-06 13:55:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogParseDefaultPriority:
|
|
|
|
* @priority: string defining the desired logging level
|
|
|
|
*
|
|
|
|
* Parses and sets the default log priority level. It can take a string or
|
|
|
|
* number corresponding to the following levels:
|
|
|
|
* 1: DEBUG
|
|
|
|
* 2: INFO
|
|
|
|
* 3: WARNING
|
|
|
|
* 4: ERROR
|
|
|
|
*
|
|
|
|
* Returns the parsed log level or -1 on error.
|
|
|
|
*/
|
|
|
|
int virLogParseDefaultPriority(const char *priority) {
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (STREQ(priority, "1") || STREQ(priority, "debug"))
|
|
|
|
ret = virLogSetDefaultPriority(VIR_LOG_DEBUG);
|
|
|
|
else if (STREQ(priority, "2") || STREQ(priority, "info"))
|
|
|
|
ret = virLogSetDefaultPriority(VIR_LOG_INFO);
|
|
|
|
else if (STREQ(priority, "3") || STREQ(priority, "warning"))
|
|
|
|
ret = virLogSetDefaultPriority(VIR_LOG_WARN);
|
|
|
|
else if (STREQ(priority, "4") || STREQ(priority, "error"))
|
|
|
|
ret = virLogSetDefaultPriority(VIR_LOG_ERROR);
|
|
|
|
else
|
|
|
|
VIR_WARN0(_("Ignoring invalid log level setting"));
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogSetFromEnv:
|
|
|
|
*
|
|
|
|
* Sets virLogDefaultPriority, virLogFilters and virLogOutputs based on
|
|
|
|
* environment variables.
|
|
|
|
*/
|
|
|
|
void virLogSetFromEnv(void) {
|
|
|
|
char *debugEnv;
|
|
|
|
|
|
|
|
debugEnv = getenv("LIBVIRT_DEBUG");
|
|
|
|
if (debugEnv && *debugEnv)
|
|
|
|
virLogParseDefaultPriority(debugEnv);
|
|
|
|
debugEnv = getenv("LIBVIRT_LOG_FILTERS");
|
|
|
|
if (debugEnv && *debugEnv)
|
|
|
|
virLogParseFilters(strdup(debugEnv));
|
|
|
|
debugEnv = getenv("LIBVIRT_LOG_OUTPUTS");
|
|
|
|
if (debugEnv && *debugEnv)
|
|
|
|
virLogParseOutputs(strdup(debugEnv));
|
|
|
|
}
|