]> andersk Git - openssh.git/blob - log.c
- djm@cvs.openbsd.org 2006/08/18 14:40:34
[openssh.git] / log.c
1 /* $OpenBSD: log.c,v 1.39 2006/08/18 09:13:25 deraadt Exp $ */
2 /*
3  * 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 /*
14  * 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.
35  */
36
37 #include "includes.h"
38
39 #include <sys/types.h>
40
41 #include <stdarg.h>
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include <syslog.h>
46 #include <unistd.h>
47 #if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H)
48 # include <vis.h>
49 #endif
50
51 #include "xmalloc.h"
52 #include "log.h"
53
54 static LogLevel log_level = SYSLOG_LEVEL_INFO;
55 static int log_on_stderr = 1;
56 static int log_facility = LOG_AUTH;
57 static char *argv0;
58
59 extern char *__progname;
60
61 #define LOG_SYSLOG_VIS  (VIS_CSTYLE|VIS_NL|VIS_TAB|VIS_OCTAL)
62 #define LOG_STDERR_VIS  (VIS_SAFE|VIS_OCTAL)
63
64 /* textual representation of log-facilities/levels */
65
66 static 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 },
73 #ifdef LOG_AUTHPRIV
74         { "AUTHPRIV",   SYSLOG_FACILITY_AUTHPRIV },
75 #endif
76         { "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 },
84         { NULL,         SYSLOG_FACILITY_NOT_SET }
85 };
86
87 static 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 },
101         { NULL,         SYSLOG_LEVEL_NOT_SET }
102 };
103
104 SyslogFacility
105 log_facility_number(char *name)
106 {
107         int i;
108
109         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;
113         return SYSLOG_FACILITY_NOT_SET;
114 }
115
116 LogLevel
117 log_level_number(char *name)
118 {
119         int i;
120
121         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;
125         return SYSLOG_LEVEL_NOT_SET;
126 }
127
128 /* Error messages that should be logged. */
129
130 void
131 error(const char *fmt,...)
132 {
133         va_list args;
134
135         va_start(args, fmt);
136         do_log(SYSLOG_LEVEL_ERROR, fmt, args);
137         va_end(args);
138 }
139
140 void
141 sigdie(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
152 /* Log this message (information that usually should go to the log). */
153
154 void
155 logit(const char *fmt,...)
156 {
157         va_list args;
158
159         va_start(args, fmt);
160         do_log(SYSLOG_LEVEL_INFO, fmt, args);
161         va_end(args);
162 }
163
164 /* More detailed messages (information that does not need to go to the log). */
165
166 void
167 verbose(const char *fmt,...)
168 {
169         va_list args;
170
171         va_start(args, fmt);
172         do_log(SYSLOG_LEVEL_VERBOSE, fmt, args);
173         va_end(args);
174 }
175
176 /* Debugging messages that should not be logged during normal operation. */
177
178 void
179 debug(const char *fmt,...)
180 {
181         va_list args;
182
183         va_start(args, fmt);
184         do_log(SYSLOG_LEVEL_DEBUG1, fmt, args);
185         va_end(args);
186 }
187
188 void
189 debug2(const char *fmt,...)
190 {
191         va_list args;
192
193         va_start(args, fmt);
194         do_log(SYSLOG_LEVEL_DEBUG2, fmt, args);
195         va_end(args);
196 }
197
198 void
199 debug3(const char *fmt,...)
200 {
201         va_list args;
202
203         va_start(args, fmt);
204         do_log(SYSLOG_LEVEL_DEBUG3, fmt, args);
205         va_end(args);
206 }
207
208 /*
209  * Initialize the log.
210  */
211
212 void
213 log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr)
214 {
215 #if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
216         struct syslog_data sdata = SYSLOG_DATA_INIT;
217 #endif
218
219         argv0 = av0;
220
221         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:
233                 fprintf(stderr, "Unrecognized internal syslog level code %d\n",
234                     (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;
252 #ifdef LOG_AUTHPRIV
253         case SYSLOG_FACILITY_AUTHPRIV:
254                 log_facility = LOG_AUTHPRIV;
255                 break;
256 #endif
257         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,
283                     "Unrecognized internal syslog facility code %d\n",
284                     (int) facility);
285                 exit(1);
286         }
287
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
300 }
301
302 #define MSGBUFSIZ 1024
303
304 void
305 do_log(LogLevel level, const char *fmt, va_list args)
306 {
307 #if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
308         struct syslog_data sdata = SYSLOG_DATA_INIT;
309 #endif
310         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         }
358         strnvis(fmtbuf, msgbuf, sizeof(fmtbuf),
359             log_on_stderr ? LOG_STDERR_VIS : LOG_SYSLOG_VIS);
360         if (log_on_stderr) {
361                 snprintf(msgbuf, sizeof msgbuf, "%s\r\n", fmtbuf);
362                 write(STDERR_FILENO, msgbuf, strlen(msgbuf));
363         } else {
364 #if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
365                 openlog_r(argv0 ? argv0 : __progname, LOG_PID, log_facility, &sdata);
366                 syslog_r(pri, &sdata, "%.500s", fmtbuf);
367                 closelog_r(&sdata);
368 #else
369                 openlog(argv0 ? argv0 : __progname, LOG_PID, log_facility);
370                 syslog(pri, "%.500s", fmtbuf);
371                 closelog();
372 #endif
373         }
374 }
This page took 0.054822 seconds and 5 git commands to generate.