blob: e7052115e1f09b1b84ed86fa26f78adae98ad136 [file] [log] [blame]
Damien Miller5ce662a1999-11-11 17:57:39 +11001/*
Damien Miller95def091999-11-25 00:26:21 +11002 *
3 * Shared versions of debug(), log(), etc.
4 *
Damien Miller5ce662a1999-11-11 17:57:39 +11005*/
6
7#include "includes.h"
Damien Miller95def091999-11-25 00:26:21 +11008RCSID("$OpenBSD: log.c,v 1.5 1999/11/24 00:26:02 deraadt Exp $");
Damien Miller5ce662a1999-11-11 17:57:39 +11009
10#include "ssh.h"
11#include "xmalloc.h"
12
13/* Fatal messages. This function never returns. */
14
15void
Damien Miller95def091999-11-25 00:26:21 +110016fatal(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +110017{
Damien Miller95def091999-11-25 00:26:21 +110018 va_list args;
19 va_start(args, fmt);
20 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
21 va_end(args);
22 fatal_cleanup();
Damien Miller5ce662a1999-11-11 17:57:39 +110023}
24
25/* Error messages that should be logged. */
26
27void
Damien Miller95def091999-11-25 00:26:21 +110028error(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +110029{
Damien Miller95def091999-11-25 00:26:21 +110030 va_list args;
31 va_start(args, fmt);
32 do_log(SYSLOG_LEVEL_ERROR, fmt, args);
33 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +110034}
35
36/* Log this message (information that usually should go to the log). */
37
38void
Damien Miller95def091999-11-25 00:26:21 +110039log(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +110040{
Damien Miller95def091999-11-25 00:26:21 +110041 va_list args;
42 va_start(args, fmt);
43 do_log(SYSLOG_LEVEL_INFO, fmt, args);
44 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +110045}
46
47/* More detailed messages (information that does not need to go to the log). */
48
49void
Damien Miller95def091999-11-25 00:26:21 +110050verbose(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +110051{
Damien Miller95def091999-11-25 00:26:21 +110052 va_list args;
53 va_start(args, fmt);
54 do_log(SYSLOG_LEVEL_VERBOSE, fmt, args);
55 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +110056}
57
58/* Debugging messages that should not be logged during normal operation. */
59
60void
Damien Miller95def091999-11-25 00:26:21 +110061debug(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +110062{
Damien Miller95def091999-11-25 00:26:21 +110063 va_list args;
64 va_start(args, fmt);
65 do_log(SYSLOG_LEVEL_DEBUG, fmt, args);
66 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +110067}
68
69/* Fatal cleanup */
70
Damien Miller95def091999-11-25 00:26:21 +110071struct fatal_cleanup {
72 struct fatal_cleanup *next;
73 void (*proc) (void *);
74 void *context;
Damien Miller5ce662a1999-11-11 17:57:39 +110075};
76
77static struct fatal_cleanup *fatal_cleanups = NULL;
78
79/* Registers a cleanup function to be called by fatal() before exiting. */
80
81void
Damien Miller95def091999-11-25 00:26:21 +110082fatal_add_cleanup(void (*proc) (void *), void *context)
Damien Miller5ce662a1999-11-11 17:57:39 +110083{
Damien Miller95def091999-11-25 00:26:21 +110084 struct fatal_cleanup *cu;
Damien Miller5ce662a1999-11-11 17:57:39 +110085
Damien Miller95def091999-11-25 00:26:21 +110086 cu = xmalloc(sizeof(*cu));
87 cu->proc = proc;
88 cu->context = context;
89 cu->next = fatal_cleanups;
90 fatal_cleanups = cu;
Damien Miller5ce662a1999-11-11 17:57:39 +110091}
92
93/* Removes a cleanup frunction to be called at fatal(). */
94
95void
Damien Miller95def091999-11-25 00:26:21 +110096fatal_remove_cleanup(void (*proc) (void *context), void *context)
Damien Miller5ce662a1999-11-11 17:57:39 +110097{
Damien Miller95def091999-11-25 00:26:21 +110098 struct fatal_cleanup **cup, *cu;
99
100 for (cup = &fatal_cleanups; *cup; cup = &cu->next) {
101 cu = *cup;
102 if (cu->proc == proc && cu->context == context) {
103 *cup = cu->next;
104 xfree(cu);
105 return;
106 }
Damien Miller5ce662a1999-11-11 17:57:39 +1100107 }
Damien Miller95def091999-11-25 00:26:21 +1100108 fatal("fatal_remove_cleanup: no such cleanup function: 0x%lx 0x%lx\n",
109 (unsigned long) proc, (unsigned long) context);
Damien Miller5ce662a1999-11-11 17:57:39 +1100110}
111
112/* Cleanup and exit */
113void
114fatal_cleanup(void)
115{
Damien Miller95def091999-11-25 00:26:21 +1100116 struct fatal_cleanup *cu, *next_cu;
117 static int called = 0;
Damien Miller5ce662a1999-11-11 17:57:39 +1100118
Damien Miller95def091999-11-25 00:26:21 +1100119 if (called)
120 exit(255);
121 called = 1;
122 /* Call cleanup functions. */
123 for (cu = fatal_cleanups; cu; cu = next_cu) {
124 next_cu = cu->next;
125 debug("Calling cleanup 0x%lx(0x%lx)",
126 (unsigned long) cu->proc, (unsigned long) cu->context);
127 (*cu->proc) (cu->context);
128 }
129 exit(255);
Damien Miller5ce662a1999-11-11 17:57:39 +1100130}
Damien Miller6162d121999-11-21 13:23:52 +1100131
132/* textual representation of log-facilities/levels */
133
Damien Miller95def091999-11-25 00:26:21 +1100134static struct {
135 const char *name;
136 SyslogFacility val;
137} log_facilities[] = {
138 { "DAEMON", SYSLOG_FACILITY_DAEMON },
139 { "USER", SYSLOG_FACILITY_USER },
140 { "AUTH", SYSLOG_FACILITY_AUTH },
141 { "LOCAL0", SYSLOG_FACILITY_LOCAL0 },
142 { "LOCAL1", SYSLOG_FACILITY_LOCAL1 },
143 { "LOCAL2", SYSLOG_FACILITY_LOCAL2 },
144 { "LOCAL3", SYSLOG_FACILITY_LOCAL3 },
145 { "LOCAL4", SYSLOG_FACILITY_LOCAL4 },
146 { "LOCAL5", SYSLOG_FACILITY_LOCAL5 },
147 { "LOCAL6", SYSLOG_FACILITY_LOCAL6 },
148 { "LOCAL7", SYSLOG_FACILITY_LOCAL7 },
149 { NULL, 0 }
Damien Miller6162d121999-11-21 13:23:52 +1100150};
151
Damien Miller95def091999-11-25 00:26:21 +1100152static struct {
153 const char *name;
154 LogLevel val;
Damien Miller6162d121999-11-21 13:23:52 +1100155} log_levels[] =
156{
Damien Miller95def091999-11-25 00:26:21 +1100157 { "QUIET", SYSLOG_LEVEL_QUIET },
158 { "FATAL", SYSLOG_LEVEL_FATAL },
159 { "ERROR", SYSLOG_LEVEL_ERROR },
160 { "INFO", SYSLOG_LEVEL_INFO },
161 { "VERBOSE", SYSLOG_LEVEL_VERBOSE },
162 { "DEBUG", SYSLOG_LEVEL_DEBUG },
163 { NULL, 0 }
Damien Miller6162d121999-11-21 13:23:52 +1100164};
165
166SyslogFacility
167log_facility_number(char *name)
168{
Damien Miller95def091999-11-25 00:26:21 +1100169 int i;
170 if (name != NULL)
171 for (i = 0; log_facilities[i].name; i++)
172 if (strcasecmp(log_facilities[i].name, name) == 0)
173 return log_facilities[i].val;
174 return (SyslogFacility) - 1;
Damien Miller6162d121999-11-21 13:23:52 +1100175}
176
177LogLevel
178log_level_number(char *name)
179{
Damien Miller95def091999-11-25 00:26:21 +1100180 int i;
181 if (name != NULL)
182 for (i = 0; log_levels[i].name; i++)
183 if (strcasecmp(log_levels[i].name, name) == 0)
184 return log_levels[i].val;
185 return (LogLevel) - 1;
Damien Miller6162d121999-11-21 13:23:52 +1100186}