blob: 32db0cb5f52ddd7ab48493e2ea8ed7f5c8f13e41 [file] [log] [blame]
Damien Miller99a648e2006-08-19 00:32:20 +10001/* $OpenBSD: log.c,v 1.39 2006/08/18 09:13:25 deraadt Exp $ */
Damien Miller5ce662a1999-11-11 17:57:39 +11002/*
Damien Millere4340be2000-09-16 13:29:08 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
6 *
7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
12 */
13/*
Damien Millere4340be2000-09-16 13:29:08 +110014 * Copyright (c) 2000 Markus Friedl. All rights reserved.
15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller5428f641999-11-25 11:54:57 +110035 */
Damien Miller5ce662a1999-11-11 17:57:39 +110036
37#include "includes.h"
Damien Miller5ce662a1999-11-11 17:57:39 +110038
Damien Millerd7834352006-08-05 12:39:39 +100039#include <sys/types.h>
40
Darren Tucker5d196262006-07-12 22:15:16 +100041#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100042#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100043#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100044#include <string.h>
Ben Lindstrom8a432f52001-03-05 07:24:46 +000045#include <syslog.h>
Damien Millere6b3b612006-07-24 14:01:23 +100046#include <unistd.h>
Damien Miller5c3a5582003-09-23 22:12:38 +100047#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H)
48# include <vis.h>
49#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +000050
Damien Miller194a1cb2006-07-10 21:09:22 +100051#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100052#include "log.h"
Damien Miller194a1cb2006-07-10 21:09:22 +100053
Ben Lindstrom8a432f52001-03-05 07:24:46 +000054static LogLevel log_level = SYSLOG_LEVEL_INFO;
55static int log_on_stderr = 1;
56static int log_facility = LOG_AUTH;
57static char *argv0;
58
59extern char *__progname;
60
Damien Miller23a70272004-07-21 10:52:13 +100061#define LOG_SYSLOG_VIS (VIS_CSTYLE|VIS_NL|VIS_TAB|VIS_OCTAL)
62#define LOG_STDERR_VIS (VIS_SAFE|VIS_OCTAL)
63
Ben Lindstrom8a432f52001-03-05 07:24:46 +000064/* textual representation of log-facilities/levels */
65
66static struct {
67 const char *name;
68 SyslogFacility val;
69} log_facilities[] = {
70 { "DAEMON", SYSLOG_FACILITY_DAEMON },
71 { "USER", SYSLOG_FACILITY_USER },
72 { "AUTH", SYSLOG_FACILITY_AUTH },
Damien Miller30246a82001-03-05 21:23:31 +110073#ifdef LOG_AUTHPRIV
74 { "AUTHPRIV", SYSLOG_FACILITY_AUTHPRIV },
75#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +000076 { "LOCAL0", SYSLOG_FACILITY_LOCAL0 },
77 { "LOCAL1", SYSLOG_FACILITY_LOCAL1 },
78 { "LOCAL2", SYSLOG_FACILITY_LOCAL2 },
79 { "LOCAL3", SYSLOG_FACILITY_LOCAL3 },
80 { "LOCAL4", SYSLOG_FACILITY_LOCAL4 },
81 { "LOCAL5", SYSLOG_FACILITY_LOCAL5 },
82 { "LOCAL6", SYSLOG_FACILITY_LOCAL6 },
83 { "LOCAL7", SYSLOG_FACILITY_LOCAL7 },
Damien Millerfcd93202002-02-05 12:26:34 +110084 { NULL, SYSLOG_FACILITY_NOT_SET }
Ben Lindstrom8a432f52001-03-05 07:24:46 +000085};
86
87static struct {
88 const char *name;
89 LogLevel val;
90} log_levels[] =
91{
92 { "QUIET", SYSLOG_LEVEL_QUIET },
93 { "FATAL", SYSLOG_LEVEL_FATAL },
94 { "ERROR", SYSLOG_LEVEL_ERROR },
95 { "INFO", SYSLOG_LEVEL_INFO },
96 { "VERBOSE", SYSLOG_LEVEL_VERBOSE },
97 { "DEBUG", SYSLOG_LEVEL_DEBUG1 },
98 { "DEBUG1", SYSLOG_LEVEL_DEBUG1 },
99 { "DEBUG2", SYSLOG_LEVEL_DEBUG2 },
100 { "DEBUG3", SYSLOG_LEVEL_DEBUG3 },
Damien Millerfcd93202002-02-05 12:26:34 +1100101 { NULL, SYSLOG_LEVEL_NOT_SET }
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000102};
103
104SyslogFacility
105log_facility_number(char *name)
106{
107 int i;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000108
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000109 if (name != NULL)
110 for (i = 0; log_facilities[i].name; i++)
111 if (strcasecmp(log_facilities[i].name, name) == 0)
112 return log_facilities[i].val;
Damien Millerfcd93202002-02-05 12:26:34 +1100113 return SYSLOG_FACILITY_NOT_SET;
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000114}
115
116LogLevel
117log_level_number(char *name)
118{
119 int i;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000120
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000121 if (name != NULL)
122 for (i = 0; log_levels[i].name; i++)
123 if (strcasecmp(log_levels[i].name, name) == 0)
124 return log_levels[i].val;
Damien Millerfcd93202002-02-05 12:26:34 +1100125 return SYSLOG_LEVEL_NOT_SET;
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000126}
Damien Miller5ce662a1999-11-11 17:57:39 +1100127
128/* Error messages that should be logged. */
129
130void
Damien Miller95def091999-11-25 00:26:21 +1100131error(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100132{
Damien Miller95def091999-11-25 00:26:21 +1100133 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000134
Damien Miller95def091999-11-25 00:26:21 +1100135 va_start(args, fmt);
136 do_log(SYSLOG_LEVEL_ERROR, fmt, args);
137 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100138}
139
Damien Miller99a648e2006-08-19 00:32:20 +1000140void
141sigdie(const char *fmt,...)
142{
143 va_list args;
144
145 va_start(args, fmt);
146 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
147 va_end(args);
148 _exit(1);
149}
150
151
Damien Miller5ce662a1999-11-11 17:57:39 +1100152/* Log this message (information that usually should go to the log). */
153
154void
Damien Miller996acd22003-04-09 20:59:48 +1000155logit(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100156{
Damien Miller95def091999-11-25 00:26:21 +1100157 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000158
Damien Miller95def091999-11-25 00:26:21 +1100159 va_start(args, fmt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000160 do_log(SYSLOG_LEVEL_INFO, fmt, args);
Damien Miller95def091999-11-25 00:26:21 +1100161 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100162}
163
164/* More detailed messages (information that does not need to go to the log). */
165
166void
Damien Miller95def091999-11-25 00:26:21 +1100167verbose(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100168{
Damien Miller95def091999-11-25 00:26:21 +1100169 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000170
Damien Miller95def091999-11-25 00:26:21 +1100171 va_start(args, fmt);
172 do_log(SYSLOG_LEVEL_VERBOSE, fmt, args);
173 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100174}
175
176/* Debugging messages that should not be logged during normal operation. */
177
178void
Damien Miller95def091999-11-25 00:26:21 +1100179debug(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100180{
Damien Miller95def091999-11-25 00:26:21 +1100181 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000182
Damien Miller95def091999-11-25 00:26:21 +1100183 va_start(args, fmt);
Damien Millere4340be2000-09-16 13:29:08 +1100184 do_log(SYSLOG_LEVEL_DEBUG1, fmt, args);
185 va_end(args);
186}
187
188void
189debug2(const char *fmt,...)
190{
191 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000192
Damien Millere4340be2000-09-16 13:29:08 +1100193 va_start(args, fmt);
194 do_log(SYSLOG_LEVEL_DEBUG2, fmt, args);
195 va_end(args);
196}
197
198void
199debug3(const char *fmt,...)
200{
201 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000202
Damien Millere4340be2000-09-16 13:29:08 +1100203 va_start(args, fmt);
204 do_log(SYSLOG_LEVEL_DEBUG3, fmt, args);
Damien Miller95def091999-11-25 00:26:21 +1100205 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100206}
207
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000208/*
209 * Initialize the log.
210 */
211
212void
213log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr)
214{
Darren Tucker9b5495d2005-02-01 17:35:09 +1100215#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
216 struct syslog_data sdata = SYSLOG_DATA_INIT;
217#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000218
Darren Tucker835903d2005-03-09 20:12:47 +1100219 argv0 = av0;
220
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000221 switch (level) {
222 case SYSLOG_LEVEL_QUIET:
223 case SYSLOG_LEVEL_FATAL:
224 case SYSLOG_LEVEL_ERROR:
225 case SYSLOG_LEVEL_INFO:
226 case SYSLOG_LEVEL_VERBOSE:
227 case SYSLOG_LEVEL_DEBUG1:
228 case SYSLOG_LEVEL_DEBUG2:
229 case SYSLOG_LEVEL_DEBUG3:
230 log_level = level;
231 break;
232 default:
Kevin Stevesedcd5762001-04-02 13:45:00 +0000233 fprintf(stderr, "Unrecognized internal syslog level code %d\n",
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000234 (int) level);
235 exit(1);
236 }
237
238 log_on_stderr = on_stderr;
239 if (on_stderr)
240 return;
241
242 switch (facility) {
243 case SYSLOG_FACILITY_DAEMON:
244 log_facility = LOG_DAEMON;
245 break;
246 case SYSLOG_FACILITY_USER:
247 log_facility = LOG_USER;
248 break;
249 case SYSLOG_FACILITY_AUTH:
250 log_facility = LOG_AUTH;
251 break;
Damien Miller30246a82001-03-05 21:23:31 +1100252#ifdef LOG_AUTHPRIV
253 case SYSLOG_FACILITY_AUTHPRIV:
254 log_facility = LOG_AUTHPRIV;
255 break;
Ben Lindstrom53f11c62001-03-05 08:18:17 +0000256#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000257 case SYSLOG_FACILITY_LOCAL0:
258 log_facility = LOG_LOCAL0;
259 break;
260 case SYSLOG_FACILITY_LOCAL1:
261 log_facility = LOG_LOCAL1;
262 break;
263 case SYSLOG_FACILITY_LOCAL2:
264 log_facility = LOG_LOCAL2;
265 break;
266 case SYSLOG_FACILITY_LOCAL3:
267 log_facility = LOG_LOCAL3;
268 break;
269 case SYSLOG_FACILITY_LOCAL4:
270 log_facility = LOG_LOCAL4;
271 break;
272 case SYSLOG_FACILITY_LOCAL5:
273 log_facility = LOG_LOCAL5;
274 break;
275 case SYSLOG_FACILITY_LOCAL6:
276 log_facility = LOG_LOCAL6;
277 break;
278 case SYSLOG_FACILITY_LOCAL7:
279 log_facility = LOG_LOCAL7;
280 break;
281 default:
282 fprintf(stderr,
Kevin Stevesedcd5762001-04-02 13:45:00 +0000283 "Unrecognized internal syslog facility code %d\n",
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000284 (int) facility);
285 exit(1);
286 }
Darren Tucker9b5495d2005-02-01 17:35:09 +1100287
288 /*
289 * If an external library (eg libwrap) attempts to use syslog
290 * immediately after reexec, syslog may be pointing to the wrong
291 * facility, so we force an open/close of syslog here.
292 */
293#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
294 openlog_r(argv0 ? argv0 : __progname, LOG_PID, log_facility, &sdata);
295 closelog_r(&sdata);
296#else
297 openlog(argv0 ? argv0 : __progname, LOG_PID, log_facility);
298 closelog();
299#endif
Damien Miller6162d121999-11-21 13:23:52 +1100300}
301
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000302#define MSGBUFSIZ 1024
303
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000304void
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000305do_log(LogLevel level, const char *fmt, va_list args)
Damien Miller6162d121999-11-21 13:23:52 +1100306{
Damien Miller051b0ac2004-02-18 22:59:43 +1100307#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
Damien Miller74a34422003-05-20 09:24:17 +1000308 struct syslog_data sdata = SYSLOG_DATA_INIT;
309#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000310 char msgbuf[MSGBUFSIZ];
311 char fmtbuf[MSGBUFSIZ];
312 char *txt = NULL;
313 int pri = LOG_INFO;
314
315 if (level > log_level)
316 return;
317
318 switch (level) {
319 case SYSLOG_LEVEL_FATAL:
320 if (!log_on_stderr)
321 txt = "fatal";
322 pri = LOG_CRIT;
323 break;
324 case SYSLOG_LEVEL_ERROR:
325 if (!log_on_stderr)
326 txt = "error";
327 pri = LOG_ERR;
328 break;
329 case SYSLOG_LEVEL_INFO:
330 pri = LOG_INFO;
331 break;
332 case SYSLOG_LEVEL_VERBOSE:
333 pri = LOG_INFO;
334 break;
335 case SYSLOG_LEVEL_DEBUG1:
336 txt = "debug1";
337 pri = LOG_DEBUG;
338 break;
339 case SYSLOG_LEVEL_DEBUG2:
340 txt = "debug2";
341 pri = LOG_DEBUG;
342 break;
343 case SYSLOG_LEVEL_DEBUG3:
344 txt = "debug3";
345 pri = LOG_DEBUG;
346 break;
347 default:
348 txt = "internal error";
349 pri = LOG_ERR;
350 break;
351 }
352 if (txt != NULL) {
353 snprintf(fmtbuf, sizeof(fmtbuf), "%s: %s", txt, fmt);
354 vsnprintf(msgbuf, sizeof(msgbuf), fmtbuf, args);
355 } else {
356 vsnprintf(msgbuf, sizeof(msgbuf), fmt, args);
357 }
Damien Miller23a70272004-07-21 10:52:13 +1000358 strnvis(fmtbuf, msgbuf, sizeof(fmtbuf),
359 log_on_stderr ? LOG_STDERR_VIS : LOG_SYSLOG_VIS);
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000360 if (log_on_stderr) {
Damien Millerc11fe252003-05-25 14:38:02 +1000361 snprintf(msgbuf, sizeof msgbuf, "%s\r\n", fmtbuf);
362 write(STDERR_FILENO, msgbuf, strlen(msgbuf));
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000363 } else {
Damien Miller051b0ac2004-02-18 22:59:43 +1100364#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
Damien Miller74a34422003-05-20 09:24:17 +1000365 openlog_r(argv0 ? argv0 : __progname, LOG_PID, log_facility, &sdata);
Damien Millerc11fe252003-05-25 14:38:02 +1000366 syslog_r(pri, &sdata, "%.500s", fmtbuf);
Damien Miller74a34422003-05-20 09:24:17 +1000367 closelog_r(&sdata);
368#else
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000369 openlog(argv0 ? argv0 : __progname, LOG_PID, log_facility);
Damien Millerb93addb2003-01-07 17:04:18 +1100370 syslog(pri, "%.500s", fmtbuf);
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000371 closelog();
Damien Miller74a34422003-05-20 09:24:17 +1000372#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000373 }
Damien Miller6162d121999-11-21 13:23:52 +1100374}