chiark / gitweb /
Cope with various header files being missing.
[disorder] / lib / log.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
cca89d7c 3 * Copyright (C) 2004-9, 2013 Richard Kettlewell
460b9539 4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
460b9539 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
460b9539 8 * (at your option) any later version.
e7eb3a27
RK
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
460b9539 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
460b9539 17 */
14ad73b9
RK
18/** @file lib/log.c @brief Errors and logging
19 *
2e9ba080
RK
20 * All messages are initially emitted by one of the four functions
21 * below. disorder_debug() is generally invoked via D() so that
22 * mostly you just do a test rather than a complete subroutine call.
14ad73b9
RK
23 *
24 * Messages are dispatched via @ref log_default. This defaults to @ref
25 * log_stderr. daemonize() will turn off @ref log_stderr and use @ref
26 * log_syslog instead.
27 *
2e9ba080
RK
28 * disorder_fatal() will call exitfn() with a nonzero status. The
29 * default value is exit(), but it should be set to _exit() anywhere
30 * but the 'main line' of the program, to guarantee that exit() gets
31 * called at most once.
14ad73b9 32 */
460b9539 33
34#define NO_MEMORY_ALLOCATION
35/* because the memory allocation functions report errors */
36
05b75f8d 37#include "common.h"
460b9539 38
460b9539 39#include <errno.h>
cca89d7c
RK
40#include <sys/types.h>
41#if HAVE_SYSLOG_H
42# include <syslog.h>
43#endif
44#if HAVE_SYS_TIME_H
45# include <sys/time.h>
46#endif
47#if HAVE_SYS_SOCKET_H
48# include <sys/socket.h>
49#endif
50#if HAVE_NETDB_H
51# include <netdb.h>
52#endif
9d7a6129 53#include <time.h>
460b9539 54
55#include "log.h"
56#include "disorder.h"
57#include "printf.h"
58
14ad73b9 59/** @brief Definition of a log output */
460b9539 60struct log_output {
14ad73b9 61 /** @brief Function to call */
460b9539 62 void (*fn)(int pri, const char *msg, void *user);
14ad73b9 63 /** @brief User data */
460b9539 64 void *user;
65};
66
14ad73b9
RK
67/** @brief Function to call on a fatal error
68 *
69 * This is normally @c exit() but in the presence of @c fork() it
70 * sometimes gets set to @c _exit(). */
460b9539 71void (*exitfn)(int) attribute((noreturn)) = exit;
14ad73b9
RK
72
73/** @brief Debug flag */
460b9539 74int debugging;
14ad73b9
RK
75
76/** @brief Program name */
460b9539 77const char *progname;
14ad73b9
RK
78
79/** @brief Filename for debug messages */
460b9539 80const char *debug_filename;
14ad73b9 81
9d7a6129
RK
82/** @brief Set to include timestamps in log messages */
83int logdate;
84
14ad73b9 85/** @brief Line number for debug messages */
460b9539 86int debug_lineno;
14ad73b9
RK
87
88/** @brief Pointer to chosen log output structure */
460b9539 89struct log_output *log_default = &log_stderr;
90
14ad73b9 91/** @brief Filename to debug for */
460b9539 92static const char *debug_only;
93
14ad73b9
RK
94/** @brief Construct log line, encoding special characters
95 *
96 * We might be receiving things in any old encoding, or binary rubbish
97 * in no encoding at all, so escape anything we don't like the look
98 * of. We limit the log message to a kilobyte.
99 */
460b9539 100static void format(char buffer[], size_t bufsize, const char *fmt, va_list ap) {
101 char t[1024];
102 const char *p;
103 int ch;
104 size_t n = 0;
105
cb9a695c
RK
106 if(byte_vsnprintf(t, sizeof t, fmt, ap) < 0) {
107 strcpy(t, "[byte_vsnprintf failed: ");
108 strncat(t, fmt, sizeof t - strlen(t) - 1);
109 }
460b9539 110 p = t;
111 while((ch = (unsigned char)*p++)) {
112 if(ch >= ' ' && ch <= 126) {
113 if(n < bufsize) buffer[n++] = ch;
114 } else {
115 if(n < bufsize) buffer[n++] = '\\';
116 if(n < bufsize) buffer[n++] = '0' + ((ch >> 6) & 7);
117 if(n < bufsize) buffer[n++] = '0' + ((ch >> 3) & 7);
118 if(n < bufsize) buffer[n++] = '0' + ((ch >> 0) & 7);
119 }
120 }
121 if(n >= bufsize)
122 n = bufsize - 1;
123 buffer[n] = 0;
124}
125
14ad73b9 126/** @brief Log to a file
840f3008
RK
127 * @param pri Message priority (as per syslog)
128 * @param msg Messagge to log
14ad73b9
RK
129 * @param user The @c FILE @c * to log to or NULL for @c stderr
130 */
460b9539 131static void logfp(int pri, const char *msg, void *user) {
132 struct timeval tv;
133 FILE *fp = user ? user : stderr;
134 /* ...because stderr is not a constant so we can't initialize log_stderr
135 * sanely */
136 const char *p;
137
9d7a6129
RK
138 if(logdate) {
139 char timebuf[64];
140 struct tm *tm;
141 gettimeofday(&tv, 0);
142 tm = localtime(&tv.tv_sec);
143 strftime(timebuf, sizeof timebuf, "%Y-%m-%d %H:%M:%S %Z", tm);
144 fprintf(fp, "%s: ", timebuf);
5bb00bdd
RK
145 }
146 if(progname)
147 fprintf(fp, "%s: ", progname);
460b9539 148 if(pri <= LOG_ERR)
149 fputs("ERROR: ", fp);
150 else if(pri < LOG_DEBUG)
151 fputs("INFO: ", fp);
152 else {
153 if(!debug_only) {
154 if(!(debug_only = getenv("DISORDER_DEBUG_ONLY")))
155 debug_only = "";
156 }
157 gettimeofday(&tv, 0);
158 p = debug_filename;
159 while(!strncmp(p, "../", 3)) p += 3;
160 if(*debug_only && strcmp(p, debug_only))
161 return;
162 fprintf(fp, "%llu.%06lu: %s:%d: ",
163 (unsigned long long)tv.tv_sec, (unsigned long)tv.tv_usec,
164 p, debug_lineno);
165 }
166 fputs(msg, fp);
167 fputc('\n', fp);
168}
169
cca89d7c 170#if HAVE_SYSLOG_H
14ad73b9 171/** @brief Log to syslog */
460b9539 172static void logsyslog(int pri, const char *msg,
173 void attribute((unused)) *user) {
174 if(pri < LOG_DEBUG)
175 syslog(pri, "%s", msg);
176 else
177 syslog(pri, "%s:%d: %s", debug_filename, debug_lineno, msg);
178}
cca89d7c 179#endif
460b9539 180
14ad73b9 181/** @brief Log output that writes to @c stderr */
460b9539 182struct log_output log_stderr = { logfp, 0 };
14ad73b9 183
cca89d7c 184#if HAVE_SYSLOG_H
14ad73b9 185/** @brief Log output that sends to syslog */
460b9539 186struct log_output log_syslog = { logsyslog, 0 };
cca89d7c 187#endif
460b9539 188
14ad73b9 189/** @brief Format and log a message */
460b9539 190static void vlogger(int pri, const char *fmt, va_list ap) {
191 char buffer[1024];
192
193 format(buffer, sizeof buffer, fmt, ap);
194 log_default->fn(pri, buffer, log_default->user);
195}
196
14ad73b9 197/** @brief Format and log a message */
460b9539 198static void logger(int pri, const char *fmt, ...) {
199 va_list ap;
200
201 va_start(ap, fmt);
202 vlogger(pri, fmt, ap);
203 va_end(ap);
204}
205
14ad73b9 206/** @brief Format and log a message
840f3008
RK
207 * @param pri Message priority (as per syslog)
208 * @param fmt Format string
14ad73b9 209 * @param errno_value Errno value to include as a string, or 0
840f3008 210 * @param ap Argument list
14ad73b9 211 */
460b9539 212void elog(int pri, int errno_value, const char *fmt, va_list ap) {
213 char buffer[1024];
214
215 if(errno_value == 0)
216 vlogger(pri, fmt, ap);
217 else {
218 memset(buffer, 0, sizeof buffer);
219 byte_vsnprintf(buffer, sizeof buffer, fmt, ap);
220 buffer[sizeof buffer - 1] = 0;
221 logger(pri, "%s: %s", buffer, strerror(errno_value));
222 }
223}
224
093ec810
RK
225/** @brief Log an error and quit
226 *
227 * If @c ${DISORDER_FATAL_ABORT} is defined (as anything) then the process
228 * is aborted, so you can get a backtrace.
229 */
230void disorder_fatal(int errno_value, const char *msg, ...) {
231 va_list ap;
232
233 va_start(ap, msg);
234 elog(LOG_CRIT, errno_value, msg, ap);
235 va_end(ap);
236 if(getenv("DISORDER_FATAL_ABORT")) abort();
237 exitfn(EXIT_FAILURE);
238}
239
240/** @brief Log an error */
241void disorder_error(int errno_value, const char *msg, ...) {
242 va_list ap;
460b9539 243
093ec810
RK
244 va_start(ap, msg);
245 elog(LOG_ERR, errno_value, msg, ap);
246 va_end(ap);
247}
248
249/** @brief Log an informational message */
250void disorder_info(const char *msg, ...) {
251 va_list ap;
252
253 va_start(ap, msg);
254 elog(LOG_INFO, 0, msg, ap);
255 va_end(ap);
256}
460b9539 257
14ad73b9 258/** @brief Log a debug message */
093ec810 259void disorder_debug(const char *msg, ...) {
460b9539 260 va_list ap;
261
262 va_start(ap, msg);
263 vlogger(LOG_DEBUG, msg, ap);
264 va_end(ap);
265}
266
14ad73b9 267/** @brief Set the program name from @c argc */
460b9539 268void set_progname(char **argv) {
269 if((progname = strrchr(argv[0], '/')))
270 ++progname;
271 else
272 progname = argv[0];
273}
274
275/*
276Local Variables:
277c-basic-offset:2
278comment-column:40
279End:
280*/