]> andersk Git - openssh.git/blame - log.c
*** empty log message ***
[openssh.git] / log.c
CommitLineData
6a17f9c2 1/*
5260325f 2 *
3 * Shared versions of debug(), log(), etc.
4 *
6a17f9c2 5*/
6
7#include "includes.h"
5260325f 8RCSID("$OpenBSD: log.c,v 1.5 1999/11/24 00:26:02 deraadt Exp $");
6a17f9c2 9
10#include "ssh.h"
11#include "xmalloc.h"
12
13/* Fatal messages. This function never returns. */
14
15void
5260325f 16fatal(const char *fmt,...)
6a17f9c2 17{
5260325f 18 va_list args;
19 va_start(args, fmt);
20 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
21 va_end(args);
22 fatal_cleanup();
6a17f9c2 23}
24
25/* Error messages that should be logged. */
26
27void
5260325f 28error(const char *fmt,...)
6a17f9c2 29{
5260325f 30 va_list args;
31 va_start(args, fmt);
32 do_log(SYSLOG_LEVEL_ERROR, fmt, args);
33 va_end(args);
6a17f9c2 34}
35
36/* Log this message (information that usually should go to the log). */
37
38void
5260325f 39log(const char *fmt,...)
6a17f9c2 40{
5260325f 41 va_list args;
42 va_start(args, fmt);
43 do_log(SYSLOG_LEVEL_INFO, fmt, args);
44 va_end(args);
6a17f9c2 45}
46
47/* More detailed messages (information that does not need to go to the log). */
48
49void
5260325f 50verbose(const char *fmt,...)
6a17f9c2 51{
5260325f 52 va_list args;
53 va_start(args, fmt);
54 do_log(SYSLOG_LEVEL_VERBOSE, fmt, args);
55 va_end(args);
6a17f9c2 56}
57
58/* Debugging messages that should not be logged during normal operation. */
59
60void
5260325f 61debug(const char *fmt,...)
6a17f9c2 62{
5260325f 63 va_list args;
64 va_start(args, fmt);
65 do_log(SYSLOG_LEVEL_DEBUG, fmt, args);
66 va_end(args);
6a17f9c2 67}
68
69/* Fatal cleanup */
70
5260325f 71struct fatal_cleanup {
72 struct fatal_cleanup *next;
73 void (*proc) (void *);
74 void *context;
6a17f9c2 75};
76
77static struct fatal_cleanup *fatal_cleanups = NULL;
78
79/* Registers a cleanup function to be called by fatal() before exiting. */
80
81void
5260325f 82fatal_add_cleanup(void (*proc) (void *), void *context)
6a17f9c2 83{
5260325f 84 struct fatal_cleanup *cu;
6a17f9c2 85
5260325f 86 cu = xmalloc(sizeof(*cu));
87 cu->proc = proc;
88 cu->context = context;
89 cu->next = fatal_cleanups;
90 fatal_cleanups = cu;
6a17f9c2 91}
92
93/* Removes a cleanup frunction to be called at fatal(). */
94
95void
5260325f 96fatal_remove_cleanup(void (*proc) (void *context), void *context)
6a17f9c2 97{
5260325f 98 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 }
6a17f9c2 107 }
5260325f 108 fatal("fatal_remove_cleanup: no such cleanup function: 0x%lx 0x%lx\n",
109 (unsigned long) proc, (unsigned long) context);
6a17f9c2 110}
111
112/* Cleanup and exit */
113void
114fatal_cleanup(void)
115{
5260325f 116 struct fatal_cleanup *cu, *next_cu;
117 static int called = 0;
118
119 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);
6a17f9c2 130}
9d6b7add 131
132/* textual representation of log-facilities/levels */
133
5260325f 134static 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 }
9d6b7add 150};
151
5260325f 152static struct {
153 const char *name;
154 LogLevel val;
9d6b7add 155} log_levels[] =
156{
5260325f 157 { "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 }
9d6b7add 164};
165
166SyslogFacility
167log_facility_number(char *name)
168{
5260325f 169 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;
9d6b7add 175}
176
177LogLevel
178log_level_number(char *name)
179{
5260325f 180 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;
9d6b7add 186}
This page took 0.073454 seconds and 5 git commands to generate.