blob: 58ba8591c74b0176fe74275afe560e7abead5b7a [file] [log] [blame]
Damien Miller5ce662a1999-11-11 17:57:39 +11001/*
Damien Millere4340be2000-09-16 13:29:08 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5 *
6 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
11 */
12/*
Damien Millere4340be2000-09-16 13:29:08 +110013 * Copyright (c) 2000 Markus Friedl. All rights reserved.
14 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller5428f641999-11-25 11:54:57 +110034 */
Damien Miller5ce662a1999-11-11 17:57:39 +110035
36#include "includes.h"
Damien Miller5ce662a1999-11-11 17:57:39 +110037
Ben Lindstrom226cfa02001-01-22 05:34:40 +000038#include "log.h"
Damien Miller5ce662a1999-11-11 17:57:39 +110039#include "xmalloc.h"
40
Ben Lindstrom8a432f52001-03-05 07:24:46 +000041#include <syslog.h>
Damien Miller5c3a5582003-09-23 22:12:38 +100042#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H)
43# include <vis.h>
44#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +000045
46static LogLevel log_level = SYSLOG_LEVEL_INFO;
47static int log_on_stderr = 1;
48static int log_facility = LOG_AUTH;
49static char *argv0;
50
51extern char *__progname;
52
Damien Miller23a70272004-07-21 10:52:13 +100053#define LOG_SYSLOG_VIS (VIS_CSTYLE|VIS_NL|VIS_TAB|VIS_OCTAL)
54#define LOG_STDERR_VIS (VIS_SAFE|VIS_OCTAL)
55
Ben Lindstrom8a432f52001-03-05 07:24:46 +000056/* textual representation of log-facilities/levels */
57
58static struct {
59 const char *name;
60 SyslogFacility val;
61} log_facilities[] = {
62 { "DAEMON", SYSLOG_FACILITY_DAEMON },
63 { "USER", SYSLOG_FACILITY_USER },
64 { "AUTH", SYSLOG_FACILITY_AUTH },
Damien Miller30246a82001-03-05 21:23:31 +110065#ifdef LOG_AUTHPRIV
66 { "AUTHPRIV", SYSLOG_FACILITY_AUTHPRIV },
67#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +000068 { "LOCAL0", SYSLOG_FACILITY_LOCAL0 },
69 { "LOCAL1", SYSLOG_FACILITY_LOCAL1 },
70 { "LOCAL2", SYSLOG_FACILITY_LOCAL2 },
71 { "LOCAL3", SYSLOG_FACILITY_LOCAL3 },
72 { "LOCAL4", SYSLOG_FACILITY_LOCAL4 },
73 { "LOCAL5", SYSLOG_FACILITY_LOCAL5 },
74 { "LOCAL6", SYSLOG_FACILITY_LOCAL6 },
75 { "LOCAL7", SYSLOG_FACILITY_LOCAL7 },
Damien Millerfcd93202002-02-05 12:26:34 +110076 { NULL, SYSLOG_FACILITY_NOT_SET }
Ben Lindstrom8a432f52001-03-05 07:24:46 +000077};
78
79static struct {
80 const char *name;
81 LogLevel val;
82} log_levels[] =
83{
84 { "QUIET", SYSLOG_LEVEL_QUIET },
85 { "FATAL", SYSLOG_LEVEL_FATAL },
86 { "ERROR", SYSLOG_LEVEL_ERROR },
87 { "INFO", SYSLOG_LEVEL_INFO },
88 { "VERBOSE", SYSLOG_LEVEL_VERBOSE },
89 { "DEBUG", SYSLOG_LEVEL_DEBUG1 },
90 { "DEBUG1", SYSLOG_LEVEL_DEBUG1 },
91 { "DEBUG2", SYSLOG_LEVEL_DEBUG2 },
92 { "DEBUG3", SYSLOG_LEVEL_DEBUG3 },
Damien Millerfcd93202002-02-05 12:26:34 +110093 { NULL, SYSLOG_LEVEL_NOT_SET }
Ben Lindstrom8a432f52001-03-05 07:24:46 +000094};
95
96SyslogFacility
97log_facility_number(char *name)
98{
99 int i;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000100
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000101 if (name != NULL)
102 for (i = 0; log_facilities[i].name; i++)
103 if (strcasecmp(log_facilities[i].name, name) == 0)
104 return log_facilities[i].val;
Damien Millerfcd93202002-02-05 12:26:34 +1100105 return SYSLOG_FACILITY_NOT_SET;
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000106}
107
108LogLevel
109log_level_number(char *name)
110{
111 int i;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000112
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000113 if (name != NULL)
114 for (i = 0; log_levels[i].name; i++)
115 if (strcasecmp(log_levels[i].name, name) == 0)
116 return log_levels[i].val;
Damien Millerfcd93202002-02-05 12:26:34 +1100117 return SYSLOG_LEVEL_NOT_SET;
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000118}
Damien Miller5ce662a1999-11-11 17:57:39 +1100119
120/* Error messages that should be logged. */
121
122void
Damien Miller95def091999-11-25 00:26:21 +1100123error(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100124{
Damien Miller95def091999-11-25 00:26:21 +1100125 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000126
Damien Miller95def091999-11-25 00:26:21 +1100127 va_start(args, fmt);
128 do_log(SYSLOG_LEVEL_ERROR, fmt, args);
129 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100130}
131
132/* Log this message (information that usually should go to the log). */
133
134void
Damien Miller996acd22003-04-09 20:59:48 +1000135logit(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100136{
Damien Miller95def091999-11-25 00:26:21 +1100137 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000138
Damien Miller95def091999-11-25 00:26:21 +1100139 va_start(args, fmt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000140 do_log(SYSLOG_LEVEL_INFO, fmt, args);
Damien Miller95def091999-11-25 00:26:21 +1100141 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100142}
143
144/* More detailed messages (information that does not need to go to the log). */
145
146void
Damien Miller95def091999-11-25 00:26:21 +1100147verbose(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100148{
Damien Miller95def091999-11-25 00:26:21 +1100149 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000150
Damien Miller95def091999-11-25 00:26:21 +1100151 va_start(args, fmt);
152 do_log(SYSLOG_LEVEL_VERBOSE, fmt, args);
153 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100154}
155
156/* Debugging messages that should not be logged during normal operation. */
157
158void
Damien Miller95def091999-11-25 00:26:21 +1100159debug(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100160{
Damien Miller95def091999-11-25 00:26:21 +1100161 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000162
Damien Miller95def091999-11-25 00:26:21 +1100163 va_start(args, fmt);
Damien Millere4340be2000-09-16 13:29:08 +1100164 do_log(SYSLOG_LEVEL_DEBUG1, fmt, args);
165 va_end(args);
166}
167
168void
169debug2(const char *fmt,...)
170{
171 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000172
Damien Millere4340be2000-09-16 13:29:08 +1100173 va_start(args, fmt);
174 do_log(SYSLOG_LEVEL_DEBUG2, fmt, args);
175 va_end(args);
176}
177
178void
179debug3(const char *fmt,...)
180{
181 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000182
Damien Millere4340be2000-09-16 13:29:08 +1100183 va_start(args, fmt);
184 do_log(SYSLOG_LEVEL_DEBUG3, fmt, args);
Damien Miller95def091999-11-25 00:26:21 +1100185 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100186}
187
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000188/*
189 * Initialize the log.
190 */
191
192void
193log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr)
194{
Darren Tucker9b5495d2005-02-01 17:35:09 +1100195#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
196 struct syslog_data sdata = SYSLOG_DATA_INIT;
197#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000198
Darren Tucker835903d2005-03-09 20:12:47 +1100199 argv0 = av0;
200
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000201 switch (level) {
202 case SYSLOG_LEVEL_QUIET:
203 case SYSLOG_LEVEL_FATAL:
204 case SYSLOG_LEVEL_ERROR:
205 case SYSLOG_LEVEL_INFO:
206 case SYSLOG_LEVEL_VERBOSE:
207 case SYSLOG_LEVEL_DEBUG1:
208 case SYSLOG_LEVEL_DEBUG2:
209 case SYSLOG_LEVEL_DEBUG3:
210 log_level = level;
211 break;
212 default:
Kevin Stevesedcd5762001-04-02 13:45:00 +0000213 fprintf(stderr, "Unrecognized internal syslog level code %d\n",
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000214 (int) level);
215 exit(1);
216 }
217
218 log_on_stderr = on_stderr;
219 if (on_stderr)
220 return;
221
222 switch (facility) {
223 case SYSLOG_FACILITY_DAEMON:
224 log_facility = LOG_DAEMON;
225 break;
226 case SYSLOG_FACILITY_USER:
227 log_facility = LOG_USER;
228 break;
229 case SYSLOG_FACILITY_AUTH:
230 log_facility = LOG_AUTH;
231 break;
Damien Miller30246a82001-03-05 21:23:31 +1100232#ifdef LOG_AUTHPRIV
233 case SYSLOG_FACILITY_AUTHPRIV:
234 log_facility = LOG_AUTHPRIV;
235 break;
Ben Lindstrom53f11c62001-03-05 08:18:17 +0000236#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000237 case SYSLOG_FACILITY_LOCAL0:
238 log_facility = LOG_LOCAL0;
239 break;
240 case SYSLOG_FACILITY_LOCAL1:
241 log_facility = LOG_LOCAL1;
242 break;
243 case SYSLOG_FACILITY_LOCAL2:
244 log_facility = LOG_LOCAL2;
245 break;
246 case SYSLOG_FACILITY_LOCAL3:
247 log_facility = LOG_LOCAL3;
248 break;
249 case SYSLOG_FACILITY_LOCAL4:
250 log_facility = LOG_LOCAL4;
251 break;
252 case SYSLOG_FACILITY_LOCAL5:
253 log_facility = LOG_LOCAL5;
254 break;
255 case SYSLOG_FACILITY_LOCAL6:
256 log_facility = LOG_LOCAL6;
257 break;
258 case SYSLOG_FACILITY_LOCAL7:
259 log_facility = LOG_LOCAL7;
260 break;
261 default:
262 fprintf(stderr,
Kevin Stevesedcd5762001-04-02 13:45:00 +0000263 "Unrecognized internal syslog facility code %d\n",
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000264 (int) facility);
265 exit(1);
266 }
Darren Tucker9b5495d2005-02-01 17:35:09 +1100267
268 /*
269 * If an external library (eg libwrap) attempts to use syslog
270 * immediately after reexec, syslog may be pointing to the wrong
271 * facility, so we force an open/close of syslog here.
272 */
273#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
274 openlog_r(argv0 ? argv0 : __progname, LOG_PID, log_facility, &sdata);
275 closelog_r(&sdata);
276#else
277 openlog(argv0 ? argv0 : __progname, LOG_PID, log_facility);
278 closelog();
279#endif
Damien Miller6162d121999-11-21 13:23:52 +1100280}
281
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000282#define MSGBUFSIZ 1024
283
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000284void
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000285do_log(LogLevel level, const char *fmt, va_list args)
Damien Miller6162d121999-11-21 13:23:52 +1100286{
Damien Miller051b0ac2004-02-18 22:59:43 +1100287#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
Damien Miller74a34422003-05-20 09:24:17 +1000288 struct syslog_data sdata = SYSLOG_DATA_INIT;
289#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000290 char msgbuf[MSGBUFSIZ];
291 char fmtbuf[MSGBUFSIZ];
292 char *txt = NULL;
293 int pri = LOG_INFO;
294
295 if (level > log_level)
296 return;
297
298 switch (level) {
299 case SYSLOG_LEVEL_FATAL:
300 if (!log_on_stderr)
301 txt = "fatal";
302 pri = LOG_CRIT;
303 break;
304 case SYSLOG_LEVEL_ERROR:
305 if (!log_on_stderr)
306 txt = "error";
307 pri = LOG_ERR;
308 break;
309 case SYSLOG_LEVEL_INFO:
310 pri = LOG_INFO;
311 break;
312 case SYSLOG_LEVEL_VERBOSE:
313 pri = LOG_INFO;
314 break;
315 case SYSLOG_LEVEL_DEBUG1:
316 txt = "debug1";
317 pri = LOG_DEBUG;
318 break;
319 case SYSLOG_LEVEL_DEBUG2:
320 txt = "debug2";
321 pri = LOG_DEBUG;
322 break;
323 case SYSLOG_LEVEL_DEBUG3:
324 txt = "debug3";
325 pri = LOG_DEBUG;
326 break;
327 default:
328 txt = "internal error";
329 pri = LOG_ERR;
330 break;
331 }
332 if (txt != NULL) {
333 snprintf(fmtbuf, sizeof(fmtbuf), "%s: %s", txt, fmt);
334 vsnprintf(msgbuf, sizeof(msgbuf), fmtbuf, args);
335 } else {
336 vsnprintf(msgbuf, sizeof(msgbuf), fmt, args);
337 }
Damien Miller23a70272004-07-21 10:52:13 +1000338 strnvis(fmtbuf, msgbuf, sizeof(fmtbuf),
339 log_on_stderr ? LOG_STDERR_VIS : LOG_SYSLOG_VIS);
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000340 if (log_on_stderr) {
Damien Millerc11fe252003-05-25 14:38:02 +1000341 snprintf(msgbuf, sizeof msgbuf, "%s\r\n", fmtbuf);
342 write(STDERR_FILENO, msgbuf, strlen(msgbuf));
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000343 } else {
Damien Miller051b0ac2004-02-18 22:59:43 +1100344#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
Damien Miller74a34422003-05-20 09:24:17 +1000345 openlog_r(argv0 ? argv0 : __progname, LOG_PID, log_facility, &sdata);
Damien Millerc11fe252003-05-25 14:38:02 +1000346 syslog_r(pri, &sdata, "%.500s", fmtbuf);
Damien Miller74a34422003-05-20 09:24:17 +1000347 closelog_r(&sdata);
348#else
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000349 openlog(argv0 ? argv0 : __progname, LOG_PID, log_facility);
Damien Millerb93addb2003-01-07 17:04:18 +1100350 syslog(pri, "%.500s", fmtbuf);
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000351 closelog();
Damien Miller74a34422003-05-20 09:24:17 +1000352#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000353 }
Damien Miller6162d121999-11-21 13:23:52 +1100354}