blob: 277afda88f207dc7cda5f67d05440fb4be8679c6 [file] [log] [blame]
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001/* $OpenBSD: log.c,v 1.47 2016/04/29 08:07:53 djm Exp $ */
Damien Miller5ce662a1999-11-11 17:57:39 +11002/*
Damien Millere4340be2000-09-16 13:29:08 +11003 * 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/*
Damien Millere4340be2000-09-16 13:29:08 +110014 * 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.
Damien Miller5428f641999-11-25 11:54:57 +110035 */
Damien Miller5ce662a1999-11-11 17:57:39 +110036
37#include "includes.h"
Damien Miller5ce662a1999-11-11 17:57:39 +110038
Damien Millerd7834352006-08-05 12:39:39 +100039#include <sys/types.h>
40
Damien Miller03d4d7e2013-04-23 15:21:06 +100041#include <fcntl.h>
Darren Tucker5d196262006-07-12 22:15:16 +100042#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100043#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100044#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100045#include <string.h>
Ben Lindstrom8a432f52001-03-05 07:24:46 +000046#include <syslog.h>
Damien Millere6b3b612006-07-24 14:01:23 +100047#include <unistd.h>
Darren Tucker36b78002007-05-20 15:08:15 +100048#include <errno.h>
Damien Miller63b4bcd2013-03-20 12:55:14 +110049#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) && !defined(BROKEN_STRNVIS)
Damien Miller5c3a5582003-09-23 22:12:38 +100050# include <vis.h>
51#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +000052
Damien Millerd7834352006-08-05 12:39:39 +100053#include "log.h"
Damien Miller194a1cb2006-07-10 21:09:22 +100054
Ben Lindstrom8a432f52001-03-05 07:24:46 +000055static LogLevel log_level = SYSLOG_LEVEL_INFO;
56static int log_on_stderr = 1;
Damien Miller03d4d7e2013-04-23 15:21:06 +100057static int log_stderr_fd = STDERR_FILENO;
Ben Lindstrom8a432f52001-03-05 07:24:46 +000058static int log_facility = LOG_AUTH;
59static char *argv0;
Damien Miller8f0bf232011-06-20 14:42:23 +100060static log_handler_fn *log_handler;
61static void *log_handler_ctx;
Ben Lindstrom8a432f52001-03-05 07:24:46 +000062
63extern char *__progname;
64
Damien Miller23a70272004-07-21 10:52:13 +100065#define LOG_SYSLOG_VIS (VIS_CSTYLE|VIS_NL|VIS_TAB|VIS_OCTAL)
66#define LOG_STDERR_VIS (VIS_SAFE|VIS_OCTAL)
67
Ben Lindstrom8a432f52001-03-05 07:24:46 +000068/* textual representation of log-facilities/levels */
69
70static struct {
71 const char *name;
72 SyslogFacility val;
73} log_facilities[] = {
74 { "DAEMON", SYSLOG_FACILITY_DAEMON },
75 { "USER", SYSLOG_FACILITY_USER },
76 { "AUTH", SYSLOG_FACILITY_AUTH },
Damien Miller30246a82001-03-05 21:23:31 +110077#ifdef LOG_AUTHPRIV
78 { "AUTHPRIV", SYSLOG_FACILITY_AUTHPRIV },
79#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +000080 { "LOCAL0", SYSLOG_FACILITY_LOCAL0 },
81 { "LOCAL1", SYSLOG_FACILITY_LOCAL1 },
82 { "LOCAL2", SYSLOG_FACILITY_LOCAL2 },
83 { "LOCAL3", SYSLOG_FACILITY_LOCAL3 },
84 { "LOCAL4", SYSLOG_FACILITY_LOCAL4 },
85 { "LOCAL5", SYSLOG_FACILITY_LOCAL5 },
86 { "LOCAL6", SYSLOG_FACILITY_LOCAL6 },
87 { "LOCAL7", SYSLOG_FACILITY_LOCAL7 },
Damien Millerfcd93202002-02-05 12:26:34 +110088 { NULL, SYSLOG_FACILITY_NOT_SET }
Ben Lindstrom8a432f52001-03-05 07:24:46 +000089};
90
91static struct {
92 const char *name;
93 LogLevel val;
94} log_levels[] =
95{
96 { "QUIET", SYSLOG_LEVEL_QUIET },
97 { "FATAL", SYSLOG_LEVEL_FATAL },
98 { "ERROR", SYSLOG_LEVEL_ERROR },
99 { "INFO", SYSLOG_LEVEL_INFO },
100 { "VERBOSE", SYSLOG_LEVEL_VERBOSE },
101 { "DEBUG", SYSLOG_LEVEL_DEBUG1 },
102 { "DEBUG1", SYSLOG_LEVEL_DEBUG1 },
103 { "DEBUG2", SYSLOG_LEVEL_DEBUG2 },
104 { "DEBUG3", SYSLOG_LEVEL_DEBUG3 },
Damien Millerfcd93202002-02-05 12:26:34 +1100105 { NULL, SYSLOG_LEVEL_NOT_SET }
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000106};
107
108SyslogFacility
109log_facility_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_facilities[i].name; i++)
115 if (strcasecmp(log_facilities[i].name, name) == 0)
116 return log_facilities[i].val;
Damien Millerfcd93202002-02-05 12:26:34 +1100117 return SYSLOG_FACILITY_NOT_SET;
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000118}
119
Darren Tuckere7140f22008-06-10 23:01:51 +1000120const char *
121log_facility_name(SyslogFacility facility)
122{
123 u_int i;
124
125 for (i = 0; log_facilities[i].name; i++)
126 if (log_facilities[i].val == facility)
127 return log_facilities[i].name;
128 return NULL;
129}
130
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000131LogLevel
132log_level_number(char *name)
133{
134 int i;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000135
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000136 if (name != NULL)
137 for (i = 0; log_levels[i].name; i++)
138 if (strcasecmp(log_levels[i].name, name) == 0)
139 return log_levels[i].val;
Damien Millerfcd93202002-02-05 12:26:34 +1100140 return SYSLOG_LEVEL_NOT_SET;
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000141}
Damien Miller5ce662a1999-11-11 17:57:39 +1100142
Darren Tuckere7140f22008-06-10 23:01:51 +1000143const char *
144log_level_name(LogLevel level)
145{
146 u_int i;
147
148 for (i = 0; log_levels[i].name != NULL; i++)
149 if (log_levels[i].val == level)
150 return log_levels[i].name;
151 return NULL;
152}
153
Damien Miller5ce662a1999-11-11 17:57:39 +1100154/* Error messages that should be logged. */
155
156void
Damien Miller95def091999-11-25 00:26:21 +1100157error(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100158{
Damien Miller95def091999-11-25 00:26:21 +1100159 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000160
Damien Miller95def091999-11-25 00:26:21 +1100161 va_start(args, fmt);
162 do_log(SYSLOG_LEVEL_ERROR, fmt, args);
163 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100164}
165
Damien Miller99a648e2006-08-19 00:32:20 +1000166void
167sigdie(const char *fmt,...)
168{
Darren Tuckeraa1517c2006-08-20 17:55:54 +1000169#ifdef DO_LOG_SAFE_IN_SIGHAND
Damien Miller99a648e2006-08-19 00:32:20 +1000170 va_list args;
171
172 va_start(args, fmt);
173 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
174 va_end(args);
Damien Millerbb598142006-08-19 08:38:23 +1000175#endif
Damien Miller99a648e2006-08-19 00:32:20 +1000176 _exit(1);
177}
178
179
Damien Miller5ce662a1999-11-11 17:57:39 +1100180/* Log this message (information that usually should go to the log). */
181
182void
Damien Miller996acd22003-04-09 20:59:48 +1000183logit(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100184{
Damien Miller95def091999-11-25 00:26:21 +1100185 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000186
Damien Miller95def091999-11-25 00:26:21 +1100187 va_start(args, fmt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000188 do_log(SYSLOG_LEVEL_INFO, fmt, args);
Damien Miller95def091999-11-25 00:26:21 +1100189 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100190}
191
192/* More detailed messages (information that does not need to go to the log). */
193
194void
Damien Miller95def091999-11-25 00:26:21 +1100195verbose(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100196{
Damien Miller95def091999-11-25 00:26:21 +1100197 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000198
Damien Miller95def091999-11-25 00:26:21 +1100199 va_start(args, fmt);
200 do_log(SYSLOG_LEVEL_VERBOSE, fmt, args);
201 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100202}
203
204/* Debugging messages that should not be logged during normal operation. */
205
206void
Damien Miller95def091999-11-25 00:26:21 +1100207debug(const char *fmt,...)
Damien Miller5ce662a1999-11-11 17:57:39 +1100208{
Damien Miller95def091999-11-25 00:26:21 +1100209 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000210
Damien Miller95def091999-11-25 00:26:21 +1100211 va_start(args, fmt);
Damien Millere4340be2000-09-16 13:29:08 +1100212 do_log(SYSLOG_LEVEL_DEBUG1, fmt, args);
213 va_end(args);
214}
215
216void
217debug2(const char *fmt,...)
218{
219 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000220
Damien Millere4340be2000-09-16 13:29:08 +1100221 va_start(args, fmt);
222 do_log(SYSLOG_LEVEL_DEBUG2, fmt, args);
223 va_end(args);
224}
225
226void
227debug3(const char *fmt,...)
228{
229 va_list args;
Ben Lindstrom8e8ef2a2002-07-07 22:14:55 +0000230
Damien Millere4340be2000-09-16 13:29:08 +1100231 va_start(args, fmt);
232 do_log(SYSLOG_LEVEL_DEBUG3, fmt, args);
Damien Miller95def091999-11-25 00:26:21 +1100233 va_end(args);
Damien Miller5ce662a1999-11-11 17:57:39 +1100234}
235
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000236/*
237 * Initialize the log.
238 */
239
240void
241log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr)
242{
Darren Tucker9b5495d2005-02-01 17:35:09 +1100243#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
244 struct syslog_data sdata = SYSLOG_DATA_INIT;
245#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000246
Darren Tucker835903d2005-03-09 20:12:47 +1100247 argv0 = av0;
248
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000249 switch (level) {
250 case SYSLOG_LEVEL_QUIET:
251 case SYSLOG_LEVEL_FATAL:
252 case SYSLOG_LEVEL_ERROR:
253 case SYSLOG_LEVEL_INFO:
254 case SYSLOG_LEVEL_VERBOSE:
255 case SYSLOG_LEVEL_DEBUG1:
256 case SYSLOG_LEVEL_DEBUG2:
257 case SYSLOG_LEVEL_DEBUG3:
258 log_level = level;
259 break;
260 default:
Kevin Stevesedcd5762001-04-02 13:45:00 +0000261 fprintf(stderr, "Unrecognized internal syslog level code %d\n",
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000262 (int) level);
263 exit(1);
264 }
265
Damien Miller8f0bf232011-06-20 14:42:23 +1000266 log_handler = NULL;
267 log_handler_ctx = NULL;
268
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000269 log_on_stderr = on_stderr;
270 if (on_stderr)
271 return;
272
273 switch (facility) {
274 case SYSLOG_FACILITY_DAEMON:
275 log_facility = LOG_DAEMON;
276 break;
277 case SYSLOG_FACILITY_USER:
278 log_facility = LOG_USER;
279 break;
280 case SYSLOG_FACILITY_AUTH:
281 log_facility = LOG_AUTH;
282 break;
Damien Miller30246a82001-03-05 21:23:31 +1100283#ifdef LOG_AUTHPRIV
284 case SYSLOG_FACILITY_AUTHPRIV:
285 log_facility = LOG_AUTHPRIV;
286 break;
Ben Lindstrom53f11c62001-03-05 08:18:17 +0000287#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000288 case SYSLOG_FACILITY_LOCAL0:
289 log_facility = LOG_LOCAL0;
290 break;
291 case SYSLOG_FACILITY_LOCAL1:
292 log_facility = LOG_LOCAL1;
293 break;
294 case SYSLOG_FACILITY_LOCAL2:
295 log_facility = LOG_LOCAL2;
296 break;
297 case SYSLOG_FACILITY_LOCAL3:
298 log_facility = LOG_LOCAL3;
299 break;
300 case SYSLOG_FACILITY_LOCAL4:
301 log_facility = LOG_LOCAL4;
302 break;
303 case SYSLOG_FACILITY_LOCAL5:
304 log_facility = LOG_LOCAL5;
305 break;
306 case SYSLOG_FACILITY_LOCAL6:
307 log_facility = LOG_LOCAL6;
308 break;
309 case SYSLOG_FACILITY_LOCAL7:
310 log_facility = LOG_LOCAL7;
311 break;
312 default:
313 fprintf(stderr,
Kevin Stevesedcd5762001-04-02 13:45:00 +0000314 "Unrecognized internal syslog facility code %d\n",
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000315 (int) facility);
316 exit(1);
317 }
Darren Tucker9b5495d2005-02-01 17:35:09 +1100318
319 /*
320 * If an external library (eg libwrap) attempts to use syslog
321 * immediately after reexec, syslog may be pointing to the wrong
322 * facility, so we force an open/close of syslog here.
323 */
324#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
325 openlog_r(argv0 ? argv0 : __progname, LOG_PID, log_facility, &sdata);
326 closelog_r(&sdata);
327#else
328 openlog(argv0 ? argv0 : __progname, LOG_PID, log_facility);
329 closelog();
330#endif
Damien Miller6162d121999-11-21 13:23:52 +1100331}
332
Darren Tucker50a48d02012-09-06 21:25:37 +1000333void
334log_change_level(LogLevel new_log_level)
335{
336 /* no-op if log_init has not been called */
337 if (argv0 == NULL)
338 return;
339 log_init(argv0, new_log_level, log_facility, log_on_stderr);
340}
341
342int
343log_is_on_stderr(void)
344{
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +0000345 return log_on_stderr && log_stderr_fd == STDERR_FILENO;
Darren Tucker50a48d02012-09-06 21:25:37 +1000346}
347
Damien Miller03d4d7e2013-04-23 15:21:06 +1000348/* redirect what would usually get written to stderr to specified file */
349void
350log_redirect_stderr_to(const char *logfile)
351{
352 int fd;
353
354 if ((fd = open(logfile, O_WRONLY|O_CREAT|O_APPEND, 0600)) == -1) {
355 fprintf(stderr, "Couldn't open logfile %s: %s\n", logfile,
356 strerror(errno));
357 exit(1);
358 }
359 log_stderr_fd = fd;
360}
361
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000362#define MSGBUFSIZ 1024
363
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000364void
Damien Miller8f0bf232011-06-20 14:42:23 +1000365set_log_handler(log_handler_fn *handler, void *ctx)
366{
367 log_handler = handler;
368 log_handler_ctx = ctx;
369}
370
371void
372do_log2(LogLevel level, const char *fmt,...)
373{
374 va_list args;
375
376 va_start(args, fmt);
377 do_log(level, fmt, args);
378 va_end(args);
379}
380
381void
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000382do_log(LogLevel level, const char *fmt, va_list args)
Damien Miller6162d121999-11-21 13:23:52 +1100383{
Damien Miller051b0ac2004-02-18 22:59:43 +1100384#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
Damien Miller74a34422003-05-20 09:24:17 +1000385 struct syslog_data sdata = SYSLOG_DATA_INIT;
386#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000387 char msgbuf[MSGBUFSIZ];
388 char fmtbuf[MSGBUFSIZ];
389 char *txt = NULL;
390 int pri = LOG_INFO;
Darren Tucker36b78002007-05-20 15:08:15 +1000391 int saved_errno = errno;
Damien Miller8f0bf232011-06-20 14:42:23 +1000392 log_handler_fn *tmp_handler;
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000393
394 if (level > log_level)
395 return;
396
397 switch (level) {
398 case SYSLOG_LEVEL_FATAL:
399 if (!log_on_stderr)
400 txt = "fatal";
401 pri = LOG_CRIT;
402 break;
403 case SYSLOG_LEVEL_ERROR:
404 if (!log_on_stderr)
405 txt = "error";
406 pri = LOG_ERR;
407 break;
408 case SYSLOG_LEVEL_INFO:
409 pri = LOG_INFO;
410 break;
411 case SYSLOG_LEVEL_VERBOSE:
412 pri = LOG_INFO;
413 break;
414 case SYSLOG_LEVEL_DEBUG1:
415 txt = "debug1";
416 pri = LOG_DEBUG;
417 break;
418 case SYSLOG_LEVEL_DEBUG2:
419 txt = "debug2";
420 pri = LOG_DEBUG;
421 break;
422 case SYSLOG_LEVEL_DEBUG3:
423 txt = "debug3";
424 pri = LOG_DEBUG;
425 break;
426 default:
427 txt = "internal error";
428 pri = LOG_ERR;
429 break;
430 }
Damien Miller8f0bf232011-06-20 14:42:23 +1000431 if (txt != NULL && log_handler == NULL) {
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000432 snprintf(fmtbuf, sizeof(fmtbuf), "%s: %s", txt, fmt);
433 vsnprintf(msgbuf, sizeof(msgbuf), fmtbuf, args);
434 } else {
435 vsnprintf(msgbuf, sizeof(msgbuf), fmt, args);
436 }
Damien Miller23a70272004-07-21 10:52:13 +1000437 strnvis(fmtbuf, msgbuf, sizeof(fmtbuf),
438 log_on_stderr ? LOG_STDERR_VIS : LOG_SYSLOG_VIS);
Damien Miller8f0bf232011-06-20 14:42:23 +1000439 if (log_handler != NULL) {
440 /* Avoid recursion */
441 tmp_handler = log_handler;
442 log_handler = NULL;
443 tmp_handler(level, fmtbuf, log_handler_ctx);
444 log_handler = tmp_handler;
445 } else if (log_on_stderr) {
Damien Millerc11fe252003-05-25 14:38:02 +1000446 snprintf(msgbuf, sizeof msgbuf, "%s\r\n", fmtbuf);
Darren Tuckerdbee3082013-05-16 20:32:29 +1000447 (void)write(log_stderr_fd, msgbuf, strlen(msgbuf));
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000448 } else {
Damien Miller051b0ac2004-02-18 22:59:43 +1100449#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
Damien Miller74a34422003-05-20 09:24:17 +1000450 openlog_r(argv0 ? argv0 : __progname, LOG_PID, log_facility, &sdata);
Damien Millerc11fe252003-05-25 14:38:02 +1000451 syslog_r(pri, &sdata, "%.500s", fmtbuf);
Damien Miller74a34422003-05-20 09:24:17 +1000452 closelog_r(&sdata);
453#else
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000454 openlog(argv0 ? argv0 : __progname, LOG_PID, log_facility);
Damien Millerb93addb2003-01-07 17:04:18 +1100455 syslog(pri, "%.500s", fmtbuf);
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000456 closelog();
Damien Miller74a34422003-05-20 09:24:17 +1000457#endif
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000458 }
Darren Tucker36b78002007-05-20 15:08:15 +1000459 errno = saved_errno;
Damien Miller6162d121999-11-21 13:23:52 +1100460}