]> git.proxmox.com Git - mirror_frr.git/blame - lib/log.h
pimd: static joins no longer worked
[mirror_frr.git] / lib / log.h
CommitLineData
274a4a44 1/*
274a4a44 2 * Zebra logging funcions.
718e3744 3 * Copyright (C) 1997, 1998, 1999 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23#ifndef _ZEBRA_LOG_H
24#define _ZEBRA_LOG_H
25
26#include <syslog.h>
27
5e764774 28/* Here is some guidance on logging levels to use:
29 *
30 * LOG_DEBUG - For all messages that are enabled by optional debugging
31 * features, typically preceded by "if (IS...DEBUG...)"
32 * LOG_INFO - Information that may be of interest, but everything seems
33 * to be working properly.
34 * LOG_NOTICE - Only for message pertaining to daemon startup or shutdown.
35 * LOG_WARNING - Warning conditions: unexpected events, but the daemon believes
36 * it can continue to operate correctly.
37 * LOG_ERR - Error situations indicating malfunctions. Probably require
38 * attention.
39 *
40 * Note: LOG_CRIT, LOG_ALERT, and LOG_EMERG are currently not used anywhere,
41 * please use LOG_ERR instead.
42 */
43
718e3744 44typedef enum
45{
46 ZLOG_NONE,
47 ZLOG_DEFAULT,
48 ZLOG_ZEBRA,
49 ZLOG_RIP,
50 ZLOG_BGP,
51 ZLOG_OSPF,
5734509c 52 ZLOG_RIPNG,
718e3744 53 ZLOG_OSPF6,
9e867fe6 54 ZLOG_ISIS,
12e41d03 55 ZLOG_PIM,
718e3744 56 ZLOG_MASC
57} zlog_proto_t;
58
274a4a44 59/* If maxlvl is set to ZLOG_DISABLED, then no messages will be sent
60 to that logging destination. */
61#define ZLOG_DISABLED (LOG_EMERG-1)
62
63typedef enum
64{
65 ZLOG_DEST_SYSLOG = 0,
66 ZLOG_DEST_STDOUT,
67 ZLOG_DEST_MONITOR,
68 ZLOG_DEST_FILE
69} zlog_dest_t;
70#define ZLOG_NUM_DESTS (ZLOG_DEST_FILE+1)
71
718e3744 72struct zlog
73{
7d149b8e 74 const char *ident; /* daemon name (first arg to openlog) */
718e3744 75 zlog_proto_t protocol;
7c8ff89e 76 u_short instance;
274a4a44 77 int maxlvl[ZLOG_NUM_DESTS]; /* maximum priority to send to associated
78 logging destination */
79 int default_lvl; /* maxlvl to use if none is specified */
718e3744 80 FILE *fp;
81 char *filename;
718e3744 82 int facility; /* as per syslog facility */
7d149b8e 83 int record_priority; /* should messages logged through stdio include the
84 priority of the message? */
85 int syslog_options; /* 2nd arg to openlog */
1ed72e0b 86 int timestamp_precision; /* # of digits of subsecond precision */
718e3744 87};
88
89/* Message structure. */
90struct message
91{
92 int key;
b04c699e 93 const char *str;
718e3744 94};
95
96/* Default logging strucutre. */
97extern struct zlog *zlog_default;
98
99/* Open zlog function */
8cc4198f 100extern struct zlog *openzlog (const char *progname, zlog_proto_t protocol,
7c8ff89e 101 u_short instance, int syslog_options, int syslog_facility);
718e3744 102
103/* Close zlog function. */
8cc4198f 104extern void closezlog (struct zlog *zl);
718e3744 105
106/* GCC have printf type attribute check. */
107#ifdef __GNUC__
108#define PRINTF_ATTRIBUTE(a,b) __attribute__ ((__format__ (__printf__, a, b)))
109#else
110#define PRINTF_ATTRIBUTE(a,b)
111#endif /* __GNUC__ */
112
113/* Generic function for zlog. */
80c375e7
SH
114extern void zlog (struct zlog *zl, int priority, const char *format, ...)
115 PRINTF_ATTRIBUTE(3, 4);
718e3744 116
117/* Handy zlog functions. */
8cc4198f 118extern void zlog_err (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
119extern void zlog_warn (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
120extern void zlog_info (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
121extern void zlog_notice (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
122extern void zlog_debug (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
718e3744 123
d1265948
DL
124extern void zlog_thread_info (int log_level);
125
274a4a44 126/* Set logging level for the given destination. If the log_level
127 argument is ZLOG_DISABLED, then the destination is disabled.
128 This function should not be used for file logging (use zlog_set_file
129 or zlog_reset_file instead). */
8cc4198f 130extern void zlog_set_level (struct zlog *zl, zlog_dest_t, int log_level);
718e3744 131
274a4a44 132/* Set logging to the given filename at the specified level. */
8cc4198f 133extern int zlog_set_file (struct zlog *zl, const char *filename, int log_level);
274a4a44 134/* Disable file logging. */
8cc4198f 135extern int zlog_reset_file (struct zlog *zl);
718e3744 136
137/* Rotate log. */
8cc4198f 138extern int zlog_rotate (struct zlog *);
718e3744 139
1e0ce7ca
LR
140/* For hackey message lookup and check */
141#define LOOKUP_DEF(x, y, def) mes_lookup(x, x ## _max, y, def, #x)
142#define LOOKUP(x, y) LOOKUP_DEF(x, y, "(no item found)")
718e3744 143
1423c809 144extern const char *lookup (const struct message *, int);
8e4c0930 145extern const char *mes_lookup (const struct message *meslist,
11486b52 146 int max, int index,
51abba50 147 const char *no_item, const char *mesname);
718e3744 148
149extern const char *zlog_priority[];
274a4a44 150extern const char *zlog_proto_names[];
718e3744 151
ca359769 152/* Safe version of strerror -- never returns NULL. */
153extern const char *safe_strerror(int errnum);
154
59a06a91 155/* To be called when a fatal signal is caught. */
31364274 156extern void zlog_signal(int signo, const char *action
157#ifdef SA_SIGINFO
158 , siginfo_t *siginfo, void *program_counter
159#endif
160 );
59a06a91 161
063ee52a 162/* Log a backtrace. */
163extern void zlog_backtrace(int priority);
164
165/* Log a backtrace, but in an async-signal-safe way. Should not be
166 called unless the program is about to exit or abort, since it messes
239c26fd 167 up the state of zlog file pointers. If program_counter is non-NULL,
168 that is logged in addition to the current backtrace. */
169extern void zlog_backtrace_sigsafe(int priority, void *program_counter);
063ee52a 170
1ed72e0b
AS
171/* Puts a current timestamp in buf and returns the number of characters
172 written (not including the terminating NUL). The purpose of
173 this function is to avoid calls to localtime appearing all over the code.
174 It caches the most recent localtime result and can therefore
175 avoid multiple calls within the same second. If buflen is too small,
176 *buf will be set to '\0', and 0 will be returned. */
ae616d60 177#define QUAGGA_TIMESTAMP_LEN 40
1ed72e0b
AS
178extern size_t quagga_timestamp(int timestamp_precision /* # subsecond digits */,
179 char *buf, size_t buflen);
180
a9b5cbe5 181extern void zlog_hexdump(const void *mem, unsigned int len);
99a6c6cd 182
1ed72e0b
AS
183/* structure useful for avoiding repeated rendering of the same timestamp */
184struct timestamp_control {
185 size_t len; /* length of rendered timestamp */
186 int precision; /* configuration parameter */
187 int already_rendered; /* should be initialized to 0 */
ae616d60 188 char buf[QUAGGA_TIMESTAMP_LEN]; /* will contain the rendered timestamp */
1ed72e0b
AS
189};
190
274a4a44 191/* Defines for use in command construction: */
192
193#define LOG_LEVELS "(emergencies|alerts|critical|errors|warnings|notifications|informational|debugging)"
194
195#define LOG_LEVEL_DESC \
196 "System is unusable\n" \
197 "Immediate action needed\n" \
198 "Critical conditions\n" \
199 "Error conditions\n" \
200 "Warning conditions\n" \
201 "Normal but significant conditions\n" \
202 "Informational messages\n" \
203 "Debugging messages\n"
204
205#define LOG_FACILITIES "(kern|user|mail|daemon|auth|syslog|lpr|news|uucp|cron|local0|local1|local2|local3|local4|local5|local6|local7)"
206
207#define LOG_FACILITY_DESC \
208 "Kernel\n" \
209 "User process\n" \
210 "Mail system\n" \
211 "System daemons\n" \
212 "Authorization system\n" \
213 "Syslog itself\n" \
214 "Line printer system\n" \
215 "USENET news\n" \
216 "Unix-to-Unix copy system\n" \
217 "Cron/at facility\n" \
218 "Local use\n" \
219 "Local use\n" \
220 "Local use\n" \
221 "Local use\n" \
222 "Local use\n" \
223 "Local use\n" \
224 "Local use\n" \
225 "Local use\n"
226
718e3744 227#endif /* _ZEBRA_LOG_H */