chiark / gitweb /
log: more general error message formatting
[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 207 * @param pri Message priority (as per syslog)
92db088e 208 * @param ec Error class
840f3008 209 * @param fmt Format string
14ad73b9 210 * @param errno_value Errno value to include as a string, or 0
840f3008 211 * @param ap Argument list
14ad73b9 212 */
92db088e 213void elog(int pri, enum error_class ec, int errno_value, const char *fmt, va_list ap) {
460b9539 214 char buffer[1024];
92db088e 215 char errbuf[1024];
460b9539 216
217 if(errno_value == 0)
218 vlogger(pri, fmt, ap);
219 else {
220 memset(buffer, 0, sizeof buffer);
221 byte_vsnprintf(buffer, sizeof buffer, fmt, ap);
222 buffer[sizeof buffer - 1] = 0;
92db088e
RK
223 logger(pri, "%s: %s", buffer,
224 format_error(ec, errno_value, errbuf, sizeof errbuf));
460b9539 225 }
226}
227
093ec810
RK
228/** @brief Log an error and quit
229 *
230 * If @c ${DISORDER_FATAL_ABORT} is defined (as anything) then the process
231 * is aborted, so you can get a backtrace.
232 */
233void disorder_fatal(int errno_value, const char *msg, ...) {
234 va_list ap;
235
236 va_start(ap, msg);
92db088e
RK
237 elog(LOG_CRIT, ec_errno, errno_value, msg, ap);
238 va_end(ap);
239 if(getenv("DISORDER_FATAL_ABORT")) abort();
240 exitfn(EXIT_FAILURE);
241}
242
243/** @brief Log an error and quit
244 *
245 * If @c ${DISORDER_FATAL_ABORT} is defined (as anything) then the process
246 * is aborted, so you can get a backtrace.
247 */
248void disorder_fatal_ec(enum error_class ec, int errno_value, const char *msg, ...) {
249 va_list ap;
250
251 va_start(ap, msg);
252 elog(LOG_CRIT, ec, errno_value, msg, ap);
093ec810
RK
253 va_end(ap);
254 if(getenv("DISORDER_FATAL_ABORT")) abort();
255 exitfn(EXIT_FAILURE);
256}
257
258/** @brief Log an error */
259void disorder_error(int errno_value, const char *msg, ...) {
260 va_list ap;
460b9539 261
093ec810 262 va_start(ap, msg);
92db088e
RK
263 elog(LOG_ERR, ec_errno, errno_value, msg, ap);
264 va_end(ap);
265}
266
267/** @brief Log an error */
268void disorder_error_ec(enum error_class ec, int errno_value, const char *msg, ...) {
269 va_list ap;
270
271 va_start(ap, msg);
272 elog(LOG_ERR, ec, errno_value, msg, ap);
093ec810
RK
273 va_end(ap);
274}
275
276/** @brief Log an informational message */
277void disorder_info(const char *msg, ...) {
278 va_list ap;
279
280 va_start(ap, msg);
92db088e 281 elog(LOG_INFO, ec_none, 0, msg, ap);
093ec810
RK
282 va_end(ap);
283}
460b9539 284
14ad73b9 285/** @brief Log a debug message */
093ec810 286void disorder_debug(const char *msg, ...) {
460b9539 287 va_list ap;
288
289 va_start(ap, msg);
290 vlogger(LOG_DEBUG, msg, ap);
291 va_end(ap);
292}
293
14ad73b9 294/** @brief Set the program name from @c argc */
460b9539 295void set_progname(char **argv) {
296 if((progname = strrchr(argv[0], '/')))
297 ++progname;
298 else
299 progname = argv[0];
300}
301
92db088e
RK
302/** @brief Format an error string
303 * @param ec Error class
304 * @param err Error code (interpretation defined by @p ec)
305 * @param buffer Output buffer
306 * @param bufsize Size of output buffer
307 * @return Pointer to error string
308 *
309 * The return value may or may not be @p buffer.
310 */
311#pragma GCC diagnostic ignored "-Wunused-parameter"
312const char *format_error(enum error_class ec, int err, char buffer[], size_t bufsize) {
313 switch(ec) {
314 default:
315 return strerror(err);
316 case ec_getaddrinfo:
317 return gai_strerror(err);
318 case ec_none:
319 return "(none)";
320 }
321}
322
460b9539 323/*
324Local Variables:
325c-basic-offset:2
326comment-column:40
327End:
328*/