summaryrefslogtreecommitdiff
path: root/debug.c
diff options
context:
space:
mode:
authorvenaas <venaas>2007-05-04 14:46:49 +0000
committervenaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf>2007-05-04 14:46:49 +0000
commite103487ade654c8cb2bd20fcaadf97ee98faa737 (patch)
tree63b195783c52e776229ffbe042df576d82aad1ac /debug.c
parentf32f6b2ef9cd578920c98b7b60c56b8ed1c4bc1c (diff)
added logging to file and syslog (need to add support for specifying facility)
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@72 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c87
1 files changed, 83 insertions, 4 deletions
diff --git a/debug.c b/debug.c
index 3959987..e5908e2 100644
--- a/debug.c
+++ b/debug.c
@@ -10,22 +10,101 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
+#include <string.h>
+#include <strings.h>
+#include <time.h>
+#include <sys/time.h>
+#include <syslog.h>
+#include <errno.h>
#include "debug.h"
+static char *debug_ident = NULL;
static uint8_t debug_level = DBG_WARN;
+static FILE *debug_file = NULL;
+static int debug_syslogfacility = 0;
+
+void debug_init(char *ident) {
+ debug_file = stderr;
+ setvbuf(debug_file, NULL, _IONBF, 0);
+ debug_ident = ident;
+}
void debug_set_level(uint8_t level) {
debug_level = level;
}
+uint8_t debug_get_level() {
+ return debug_level;
+}
+
+int debug_set_destination(char *dest) {
+ extern int errno;
+
+ if (!strncasecmp(dest, "file:///", 8)) {
+ debug_file = fopen(dest + 7, "a");
+ if (!debug_file)
+ debugx(1, DBG_ERR, "Failed to open logfile %s\n%s",
+ dest + 7, strerror(errno));
+ setvbuf(debug_file, NULL, _IONBF, 0);
+ return 1;
+ }
+ if (!strcasecmp(dest, "x-syslog://")) {
+ debug_syslogfacility = LOG_DAEMON;
+ openlog(debug_ident, LOG_PID, debug_syslogfacility);
+ return 1;
+ }
+ return 0;
+}
+
+void debug_logit(uint8_t level, const char *format, va_list ap) {
+ struct timeval now;
+ char *timebuf;
+ int priority;
+
+ if (debug_syslogfacility) {
+ switch (level) {
+ case DBG_INFO:
+ priority = LOG_INFO;
+ break;
+ case DBG_WARN:
+ priority = LOG_WARNING;
+ break;
+ case DBG_ERR:
+ priority = LOG_ERR;
+ break;
+ default:
+ priority = LOG_DEBUG;
+ }
+ vsyslog(priority, format, ap);
+ } else {
+ timebuf = malloc(256);
+ if (timebuf) {
+ gettimeofday(&now, NULL);
+ ctime_r(&now.tv_sec, timebuf);
+ timebuf[strlen(timebuf) - 1] = '\0';
+ fprintf(debug_file, "%s: ", timebuf);
+ free(timebuf);
+ }
+ vfprintf(debug_file, format, ap);
+ fprintf(debug_file, "\n");
+ }
+}
+
void debug(uint8_t level, char *format, ...) {
+ va_list ap;
+ if (level < debug_level)
+ return;
+ va_start(ap, format);
+ debug_logit(level, format, ap);
+ va_end(ap);
+}
+
+void debugx(int status, uint8_t level, char *format, ...) {
if (level >= debug_level) {
va_list ap;
va_start(ap, format);
- vfprintf(stderr, format, ap);
+ debug_logit(level, format, ap);
va_end(ap);
- fprintf(stderr, "\n");
}
- if (level >= DBG_ERR)
- exit(1);
+ exit(status);
}