blob: 13033ab4260e96e2de93b7c396be1e1031aef977 [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 Miller95def091999-11-25 00:26:21 +110013 * Shared versions of debug(), log(), etc.
Damien Millere4340be2000-09-16 13:29:08 +110014 *
15 * Copyright (c) 2000 Markus Friedl. All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller5428f641999-11-25 11:54:57 +110036 */
Damien Miller5ce662a1999-11-11 17:57:39 +110037
38#include "includes.h"
Damien Millere4340be2000-09-16 13:29:08 +110039RCSID("$OpenBSD: log.c,v 1.10 2000/09/12 20:53:10 markus Exp $");
Damien Miller5ce662a1999-11-11 17:57:39 +110040
41#include "ssh.h"
42#include "xmalloc.h"
43
44/* Fatal messages. This function never returns. */
45
46void
Damien Miller95def091999-11-25 00:26:21 +110047fatal(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +110048{
Damien Miller95def091999-11-25 00:26:21 +110049 va_list args;
50 va_start(args, fmt);
51 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
52 va_end(args);
53 fatal_cleanup();
Damien Miller5ce662a1999-11-11 17:57:39 +110054}
55
56/* Error messages that should be logged. */
57
58void
Damien Miller95def091999-11-25 00:26:21 +110059error(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +110060{
Damien Miller95def091999-11-25 00:26:21 +110061 va_list args;
62 va_start(args, fmt);
63 do_log(SYSLOG_LEVEL_ERROR, fmt, args);
64 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +110065}
66
67/* Log this message (information that usually should go to the log). */
68
69void
Damien Miller95def091999-11-25 00:26:21 +110070log(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +110071{
Damien Miller95def091999-11-25 00:26:21 +110072 va_list args;
73 va_start(args, fmt);
74 do_log(SYSLOG_LEVEL_INFO, fmt, args);
75 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +110076}
77
78/* More detailed messages (information that does not need to go to the log). */
79
80void
Damien Miller95def091999-11-25 00:26:21 +110081verbose(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +110082{
Damien Miller95def091999-11-25 00:26:21 +110083 va_list args;
84 va_start(args, fmt);
85 do_log(SYSLOG_LEVEL_VERBOSE, fmt, args);
86 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +110087}
88
89/* Debugging messages that should not be logged during normal operation. */
90
91void
Damien Miller95def091999-11-25 00:26:21 +110092debug(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +110093{
Damien Miller95def091999-11-25 00:26:21 +110094 va_list args;
95 va_start(args, fmt);
Damien Millere4340be2000-09-16 13:29:08 +110096 do_log(SYSLOG_LEVEL_DEBUG1, fmt, args);
97 va_end(args);
98}
99
100void
101debug2(const char *fmt,...)
102{
103 va_list args;
104 va_start(args, fmt);
105 do_log(SYSLOG_LEVEL_DEBUG2, fmt, args);
106 va_end(args);
107}
108
109void
110debug3(const char *fmt,...)
111{
112 va_list args;
113 va_start(args, fmt);
114 do_log(SYSLOG_LEVEL_DEBUG3, fmt, args);
Damien Miller95def091999-11-25 00:26:21 +1100115 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100116}
117
118/* Fatal cleanup */
119
Damien Miller95def091999-11-25 00:26:21 +1100120struct fatal_cleanup {
121 struct fatal_cleanup *next;
122 void (*proc) (void *);
123 void *context;
Damien Miller5ce662a1999-11-11 17:57:39 +1100124};
125
126static struct fatal_cleanup *fatal_cleanups = NULL;
127
128/* Registers a cleanup function to be called by fatal() before exiting. */
129
130void
Damien Miller95def091999-11-25 00:26:21 +1100131fatal_add_cleanup(void (*proc) (void *), void *context)
Damien Miller5ce662a1999-11-11 17:57:39 +1100132{
Damien Miller95def091999-11-25 00:26:21 +1100133 struct fatal_cleanup *cu;
Damien Miller5ce662a1999-11-11 17:57:39 +1100134
Damien Miller95def091999-11-25 00:26:21 +1100135 cu = xmalloc(sizeof(*cu));
136 cu->proc = proc;
137 cu->context = context;
138 cu->next = fatal_cleanups;
139 fatal_cleanups = cu;
Damien Miller5ce662a1999-11-11 17:57:39 +1100140}
141
142/* Removes a cleanup frunction to be called at fatal(). */
143
144void
Damien Miller95def091999-11-25 00:26:21 +1100145fatal_remove_cleanup(void (*proc) (void *context), void *context)
Damien Miller5ce662a1999-11-11 17:57:39 +1100146{
Damien Miller95def091999-11-25 00:26:21 +1100147 struct fatal_cleanup **cup, *cu;
148
149 for (cup = &fatal_cleanups; *cup; cup = &cu->next) {
150 cu = *cup;
151 if (cu->proc == proc && cu->context == context) {
152 *cup = cu->next;
153 xfree(cu);
154 return;
155 }
Damien Miller5ce662a1999-11-11 17:57:39 +1100156 }
Damien Miller95def091999-11-25 00:26:21 +1100157 fatal("fatal_remove_cleanup: no such cleanup function: 0x%lx 0x%lx\n",
158 (unsigned long) proc, (unsigned long) context);
Damien Miller5ce662a1999-11-11 17:57:39 +1100159}
160
161/* Cleanup and exit */
162void
163fatal_cleanup(void)
164{
Damien Miller95def091999-11-25 00:26:21 +1100165 struct fatal_cleanup *cu, *next_cu;
166 static int called = 0;
Damien Miller5ce662a1999-11-11 17:57:39 +1100167
Damien Miller95def091999-11-25 00:26:21 +1100168 if (called)
169 exit(255);
170 called = 1;
171 /* Call cleanup functions. */
172 for (cu = fatal_cleanups; cu; cu = next_cu) {
173 next_cu = cu->next;
174 debug("Calling cleanup 0x%lx(0x%lx)",
175 (unsigned long) cu->proc, (unsigned long) cu->context);
176 (*cu->proc) (cu->context);
177 }
178 exit(255);
Damien Miller5ce662a1999-11-11 17:57:39 +1100179}
Damien Miller6162d121999-11-21 13:23:52 +1100180
181/* textual representation of log-facilities/levels */
182
Damien Miller95def091999-11-25 00:26:21 +1100183static struct {
184 const char *name;
185 SyslogFacility val;
186} log_facilities[] = {
187 { "DAEMON", SYSLOG_FACILITY_DAEMON },
188 { "USER", SYSLOG_FACILITY_USER },
189 { "AUTH", SYSLOG_FACILITY_AUTH },
190 { "LOCAL0", SYSLOG_FACILITY_LOCAL0 },
191 { "LOCAL1", SYSLOG_FACILITY_LOCAL1 },
192 { "LOCAL2", SYSLOG_FACILITY_LOCAL2 },
193 { "LOCAL3", SYSLOG_FACILITY_LOCAL3 },
194 { "LOCAL4", SYSLOG_FACILITY_LOCAL4 },
195 { "LOCAL5", SYSLOG_FACILITY_LOCAL5 },
196 { "LOCAL6", SYSLOG_FACILITY_LOCAL6 },
197 { "LOCAL7", SYSLOG_FACILITY_LOCAL7 },
198 { NULL, 0 }
Damien Miller6162d121999-11-21 13:23:52 +1100199};
200
Damien Miller95def091999-11-25 00:26:21 +1100201static struct {
202 const char *name;
203 LogLevel val;
Damien Miller6162d121999-11-21 13:23:52 +1100204} log_levels[] =
205{
Damien Miller95def091999-11-25 00:26:21 +1100206 { "QUIET", SYSLOG_LEVEL_QUIET },
207 { "FATAL", SYSLOG_LEVEL_FATAL },
208 { "ERROR", SYSLOG_LEVEL_ERROR },
209 { "INFO", SYSLOG_LEVEL_INFO },
210 { "VERBOSE", SYSLOG_LEVEL_VERBOSE },
Damien Millere4340be2000-09-16 13:29:08 +1100211 { "DEBUG1", SYSLOG_LEVEL_DEBUG1 },
212 { "DEBUG2", SYSLOG_LEVEL_DEBUG2 },
213 { "DEBUG3", SYSLOG_LEVEL_DEBUG3 },
Damien Miller95def091999-11-25 00:26:21 +1100214 { NULL, 0 }
Damien Miller6162d121999-11-21 13:23:52 +1100215};
216
217SyslogFacility
218log_facility_number(char *name)
219{
Damien Miller95def091999-11-25 00:26:21 +1100220 int i;
221 if (name != NULL)
222 for (i = 0; log_facilities[i].name; i++)
223 if (strcasecmp(log_facilities[i].name, name) == 0)
224 return log_facilities[i].val;
225 return (SyslogFacility) - 1;
Damien Miller6162d121999-11-21 13:23:52 +1100226}
227
228LogLevel
229log_level_number(char *name)
230{
Damien Miller95def091999-11-25 00:26:21 +1100231 int i;
232 if (name != NULL)
233 for (i = 0; log_levels[i].name; i++)
234 if (strcasecmp(log_levels[i].name, name) == 0)
235 return log_levels[i].val;
236 return (LogLevel) - 1;
Damien Miller6162d121999-11-21 13:23:52 +1100237}