debug.c
[libradsec.git] / debug.c
1 /*
2  * Copyright (C) 2007 Stig Venaas <venaas@uninett.no>
3  * Copyright (C) 2010 NORDUnet A/S
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  */
9
10 #ifndef SYS_SOLARIS9
11 #include <stdint.h>
12 #endif
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <stdarg.h>
16 #include <string.h>
17 #include <strings.h>
18 #include <time.h>
19 #include <sys/time.h>
20 #include <syslog.h>
21 #include <errno.h>
22 #include <assert.h>
23 #include "debug.h"
24 #include "util.h"
25
26 static char *debug_ident = NULL;
27 static uint8_t debug_level = DBG_INFO;
28 static char *debug_filepath = NULL;
29 static FILE *debug_file = NULL;
30 static int debug_syslogfacility = 0;
31 #if defined(WANT_FTICKS)
32 static int fticks_syslogfacility = 0;
33 #endif
34 static uint8_t debug_timestamp = 0;
35
36 void debug_init(char *ident) {
37     debug_file = stderr;
38     setvbuf(debug_file, NULL, _IONBF, 0);
39     debug_ident = ident;
40 }
41
42 void debug_set_level(uint8_t level) {
43     switch (level) {
44     case 1:
45         debug_level = DBG_ERR;
46         return;
47     case 2:
48         debug_level = DBG_WARN;
49         return;
50     case 3:
51         debug_level = DBG_NOTICE;
52         return;
53     case 4:
54         debug_level = DBG_INFO;
55         return;
56     case 5:
57         debug_level = DBG_DBG;
58         return;
59     }
60 }
61
62 void debug_timestamp_on() {
63     debug_timestamp = 1;
64 }
65
66 uint8_t debug_get_level() {
67     return debug_level;
68 }
69
70 int debug_set_destination(char *dest, int l) {
71     static const char *facstrings[] = { "LOG_DAEMON", "LOG_MAIL", "LOG_USER", "LOG_LOCAL0",
72         "LOG_LOCAL1", "LOG_LOCAL2", "LOG_LOCAL3", "LOG_LOCAL4",
73         "LOG_LOCAL5", "LOG_LOCAL6", "LOG_LOCAL7", NULL };
74     static const int facvals[] = { LOG_DAEMON, LOG_MAIL, LOG_USER, LOG_LOCAL0,
75         LOG_LOCAL1, LOG_LOCAL2, LOG_LOCAL3, LOG_LOCAL4,
76         LOG_LOCAL5, LOG_LOCAL6, LOG_LOCAL7 };
77     extern int errno;
78     int i;
79
80     if (!strncasecmp(dest, "file:///", 8)) {
81         if (l!=1) {
82             debug_filepath = stringcopy(dest + 7, 0);
83             debug_file = fopen(debug_filepath, "a");
84             if (!debug_file) {
85                 debug_file = stderr;
86                 debugx(1, DBG_ERR, "Failed to open logfile %s\n%s",
87                    debug_filepath, strerror(errno));
88             }
89             setvbuf(debug_file, NULL, _IONBF, 0);
90         }
91         return 1;
92     }
93     if (!strncasecmp(dest, "x-syslog://", 11) || (l==1)) {
94         if (!strncasecmp(dest, "x-syslog://", 11) || ((l==1)  && !strncasecmp(dest, "x-syslog://", 11)))  {
95                 dest += 11;
96                 if (*dest == '/')
97                   dest++;
98         }
99         if (*dest) {
100             for (i = 0; facstrings[i]; i++)
101                 if (!strcasecmp(dest, facstrings[i]))
102                     break;
103             if (!facstrings[i])
104                 debugx(1, DBG_ERR, "Unknown syslog facility %s", dest);
105             if (l==1)
106                 fticks_syslogfacility = facvals[i];
107             else
108                 debug_syslogfacility = facvals[i];
109         } else {
110                 if (l==1)
111                    fticks_syslogfacility = 0;
112                 else
113                    debug_syslogfacility = LOG_DAEMON;
114         }
115         if (l==1) {
116            if (fticks_syslogfacility && !debug_syslogfacility) 
117                 openlog(debug_ident, LOG_PID, fticks_syslogfacility);
118         } else 
119                 openlog(debug_ident, LOG_PID, debug_syslogfacility);
120         return 1;
121     }
122     debug(DBG_ERR, "Unknown log destination, exiting %s", dest);
123     exit(1);
124 }
125
126 void debug_reopen_log() {
127     extern int errno;
128
129     /* not a file, noop, return success */
130     if (!debug_filepath) {
131         debug(DBG_ERR, "skipping reopen");
132         return;
133     }
134
135     if (debug_file != stderr)
136         fclose(debug_file);
137
138     debug_file = fopen(debug_filepath, "a");
139     if (debug_file)
140         debug(DBG_ERR, "Reopened logfile %s", debug_filepath);
141     else {
142         debug_file = stderr;
143         debug(DBG_ERR, "Failed to open logfile %s, using stderr\n%s",
144               debug_filepath, strerror(errno));
145     }
146     setvbuf(debug_file, NULL, _IONBF, 0);
147 }
148
149 void debug_logit(uint8_t level, const char *format, va_list ap) {
150     struct timeval now;
151     char *timebuf;
152     int priority;
153
154     if (debug_syslogfacility) {
155         switch (level) {
156         case DBG_DBG:
157             priority = LOG_DEBUG;
158             break;
159         case DBG_INFO:
160             priority = LOG_INFO;
161             break;
162         case DBG_NOTICE:
163             priority = LOG_NOTICE;
164             break;
165         case DBG_WARN:
166             priority = LOG_WARNING;
167             break;
168         case DBG_ERR:
169             priority = LOG_ERR;
170             break;
171         default:
172             priority = LOG_DEBUG;
173         }
174         vsyslog(priority, format, ap);
175     } else {
176         if (debug_timestamp && (timebuf = malloc(256))) {
177             gettimeofday(&now, NULL);
178             ctime_r(&now.tv_sec, timebuf);
179             timebuf[strlen(timebuf) - 1] = '\0';
180             fprintf(debug_file, "%s: ", timebuf + 4);
181             free(timebuf);
182         }
183         vfprintf(debug_file, format, ap);
184         fprintf(debug_file, "\n");
185     }
186 }
187
188 void debug(uint8_t level, char *format, ...) {
189     va_list ap;
190     if (level < debug_level)
191         return;
192     va_start(ap, format);
193     debug_logit(level, format, ap);
194     va_end(ap);
195 }
196
197 void debugx(int status, uint8_t level, char *format, ...) {
198     if (level >= debug_level) {
199         va_list ap;
200         va_start(ap, format);
201         debug_logit(level, format, ap);
202         va_end(ap);
203     }
204     exit(status);
205 }
206
207 void debugerrno(int err, uint8_t level, char *format, ...) {
208     if (level >= debug_level) {
209         va_list ap;
210         size_t len = strlen(format);
211         char *tmp = malloc(len + 1024 + 2);
212         assert(tmp);
213         strcpy(tmp, format);
214         tmp[len++] = ':';
215         tmp[len++] = ' ';
216         if (strerror_r(err, tmp + len, 1024))
217             tmp = format;
218         va_start(ap, format);
219         debug_logit(level, tmp, ap);
220         va_end(ap);
221     }
222 }
223
224 void debugerrnox(int err, uint8_t level, char *format, ...) {
225     if (level >= debug_level) {
226         va_list ap;
227         va_start(ap, format);
228         debugerrno(err, level, format, ap);
229         va_end(ap);
230     }
231     exit(err);
232 }
233
234 #if defined(WANT_FTICKS)
235 void fticks_debug(const char *format, ...) {
236     int priority;
237     va_list ap;
238     va_start(ap, format);
239     if (!debug_syslogfacility && !fticks_syslogfacility)
240         debug_logit(0xff, format, ap);
241     else {
242         if (fticks_syslogfacility) {
243             priority = LOG_DEBUG|fticks_syslogfacility;
244         } else {
245             priority = LOG_DEBUG;
246         }
247         vsyslog(priority, format, ap);
248         va_end(ap);
249     }
250 }
251 #endif
252 /* Local Variables: */
253 /* c-file-style: "stroustrup" */
254 /* End: */