blob: 7a8c57079cca6242938bc18ce901143c5996be43 [file] [log] [blame]
Damien Miller99a648e2006-08-19 00:32:20 +10001/* $OpenBSD: log.h,v 1.15 2006/08/18 09:13:25 deraadt Exp $ */
Ben Lindstrom36579d32001-01-29 07:39:26 +00002
Ben Lindstrom226cfa02001-01-22 05:34:40 +00003/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
7 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 */
14
15#ifndef SSH_LOG_H
16#define SSH_LOG_H
17
18/* Supported syslog facilities and levels. */
19typedef enum {
20 SYSLOG_FACILITY_DAEMON,
21 SYSLOG_FACILITY_USER,
22 SYSLOG_FACILITY_AUTH,
23#ifdef LOG_AUTHPRIV
Kevin Stevesef4eea92001-02-05 12:42:17 +000024 SYSLOG_FACILITY_AUTHPRIV,
Ben Lindstrom226cfa02001-01-22 05:34:40 +000025#endif
26 SYSLOG_FACILITY_LOCAL0,
27 SYSLOG_FACILITY_LOCAL1,
28 SYSLOG_FACILITY_LOCAL2,
29 SYSLOG_FACILITY_LOCAL3,
30 SYSLOG_FACILITY_LOCAL4,
31 SYSLOG_FACILITY_LOCAL5,
32 SYSLOG_FACILITY_LOCAL6,
Damien Millerfcd93202002-02-05 12:26:34 +110033 SYSLOG_FACILITY_LOCAL7,
Ben Lindstrom38ed63d2002-06-06 19:51:06 +000034 SYSLOG_FACILITY_NOT_SET = -1
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035} SyslogFacility;
36
37typedef enum {
38 SYSLOG_LEVEL_QUIET,
39 SYSLOG_LEVEL_FATAL,
40 SYSLOG_LEVEL_ERROR,
41 SYSLOG_LEVEL_INFO,
42 SYSLOG_LEVEL_VERBOSE,
43 SYSLOG_LEVEL_DEBUG1,
44 SYSLOG_LEVEL_DEBUG2,
Damien Millerfcd93202002-02-05 12:26:34 +110045 SYSLOG_LEVEL_DEBUG3,
Ben Lindstrom38ed63d2002-06-06 19:51:06 +000046 SYSLOG_LEVEL_NOT_SET = -1
Ben Lindstrom226cfa02001-01-22 05:34:40 +000047} LogLevel;
Ben Lindstrom226cfa02001-01-22 05:34:40 +000048
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000049void log_init(char *, LogLevel, SyslogFacility, int);
Ben Lindstrom226cfa02001-01-22 05:34:40 +000050
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000051SyslogFacility log_facility_number(char *);
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000052LogLevel log_level_number(char *);
Ben Lindstrom226cfa02001-01-22 05:34:40 +000053
Darren Tuckerefa62f92004-06-22 12:57:44 +100054void fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2)));
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000055void error(const char *, ...) __attribute__((format(printf, 1, 2)));
Damien Miller99a648e2006-08-19 00:32:20 +100056void sigdie(const char *, ...) __attribute__((format(printf, 1, 2)));
Damien Miller996acd22003-04-09 20:59:48 +100057void logit(const char *, ...) __attribute__((format(printf, 1, 2)));
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000058void verbose(const char *, ...) __attribute__((format(printf, 1, 2)));
59void debug(const char *, ...) __attribute__((format(printf, 1, 2)));
60void debug2(const char *, ...) __attribute__((format(printf, 1, 2)));
61void debug3(const char *, ...) __attribute__((format(printf, 1, 2)));
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062
Ben Lindstrom9c8edc92002-02-26 17:52:14 +000063void do_log(LogLevel, const char *, va_list);
Darren Tuckerefa62f92004-06-22 12:57:44 +100064void cleanup_exit(int) __dead;
Ben Lindstrom226cfa02001-01-22 05:34:40 +000065#endif