]> git.proxmox.com Git - mirror_frr.git/blob - lib/log.h
nhrpd: implement next hop resolution protocol
[mirror_frr.git] / lib / log.h
1 /*
2 * Zebra logging funcions.
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 #include <stdio.h>
28
29 /* Here is some guidance on logging levels to use:
30 *
31 * LOG_DEBUG - For all messages that are enabled by optional debugging
32 * features, typically preceded by "if (IS...DEBUG...)"
33 * LOG_INFO - Information that may be of interest, but everything seems
34 * to be working properly.
35 * LOG_NOTICE - Only for message pertaining to daemon startup or shutdown.
36 * LOG_WARNING - Warning conditions: unexpected events, but the daemon believes
37 * it can continue to operate correctly.
38 * LOG_ERR - Error situations indicating malfunctions. Probably require
39 * attention.
40 *
41 * Note: LOG_CRIT, LOG_ALERT, and LOG_EMERG are currently not used anywhere,
42 * please use LOG_ERR instead.
43 */
44
45 /*
46 * This must be kept in the same order as
47 * zlog_proto_names[]
48 */
49 typedef enum
50 {
51 ZLOG_NONE,
52 ZLOG_DEFAULT,
53 ZLOG_ZEBRA,
54 ZLOG_RIP,
55 ZLOG_BGP,
56 ZLOG_OSPF,
57 ZLOG_RIPNG,
58 ZLOG_OSPF6,
59 ZLOG_LDP,
60 ZLOG_ISIS,
61 ZLOG_PIM,
62 ZLOG_NHRP,
63 ZLOG_RFP,
64 ZLOG_WATCHFRR,
65 } zlog_proto_t;
66
67 /* If maxlvl is set to ZLOG_DISABLED, then no messages will be sent
68 to that logging destination. */
69 #define ZLOG_DISABLED (LOG_EMERG-1)
70
71 typedef enum
72 {
73 ZLOG_DEST_SYSLOG = 0,
74 ZLOG_DEST_STDOUT,
75 ZLOG_DEST_MONITOR,
76 ZLOG_DEST_FILE
77 } zlog_dest_t;
78 #define ZLOG_NUM_DESTS (ZLOG_DEST_FILE+1)
79
80 struct zlog
81 {
82 const char *ident; /* daemon name (first arg to openlog) */
83 zlog_proto_t protocol;
84 u_short instance;
85 int maxlvl[ZLOG_NUM_DESTS]; /* maximum priority to send to associated
86 logging destination */
87 int default_lvl; /* maxlvl to use if none is specified */
88 FILE *fp;
89 char *filename;
90 int facility; /* as per syslog facility */
91 int record_priority; /* should messages logged through stdio include the
92 priority of the message? */
93 int syslog_options; /* 2nd arg to openlog */
94 int timestamp_precision; /* # of digits of subsecond precision */
95 };
96
97 /* Message structure. */
98 struct message
99 {
100 int key;
101 const char *str;
102 };
103
104 /* Default logging strucutre. */
105 extern struct zlog *zlog_default;
106
107 /* Open zlog function */
108 extern struct zlog *openzlog (const char *progname, zlog_proto_t protocol,
109 u_short instance, int syslog_options, int syslog_facility);
110
111 /* Close zlog function. */
112 extern void closezlog (struct zlog *zl);
113
114 /* GCC have printf type attribute check. */
115 #ifdef __GNUC__
116 #define PRINTF_ATTRIBUTE(a,b) __attribute__ ((__format__ (__printf__, a, b)))
117 #else
118 #define PRINTF_ATTRIBUTE(a,b)
119 #endif /* __GNUC__ */
120
121 /* Generic function for zlog. */
122 extern void zlog (struct zlog *zl, int priority, const char *format, ...)
123 PRINTF_ATTRIBUTE(3, 4);
124
125 /* Handy zlog functions. */
126 extern void vzlog (struct zlog *zl, int priority, const char *format, va_list args);
127 extern void zlog_err (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
128 extern void zlog_warn (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
129 extern void zlog_info (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
130 extern void zlog_notice (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
131 extern void zlog_debug (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
132
133 extern void vzlog (struct zlog *, int , const char *, va_list );
134
135 extern void zlog_thread_info (int log_level);
136
137 /* Set logging level for the given destination. If the log_level
138 argument is ZLOG_DISABLED, then the destination is disabled.
139 This function should not be used for file logging (use zlog_set_file
140 or zlog_reset_file instead). */
141 extern void zlog_set_level (struct zlog *zl, zlog_dest_t, int log_level);
142
143 /* Set logging to the given filename at the specified level. */
144 extern int zlog_set_file (struct zlog *zl, const char *filename, int log_level);
145 /* Disable file logging. */
146 extern int zlog_reset_file (struct zlog *zl);
147
148 /* Rotate log. */
149 extern int zlog_rotate (struct zlog *);
150
151 /* For hackey message lookup and check */
152 #define LOOKUP_DEF(x, y, def) mes_lookup(x, x ## _max, y, def, #x)
153 #define LOOKUP(x, y) LOOKUP_DEF(x, y, "(no item found)")
154
155 extern const char *lookup (const struct message *, int);
156 extern const char *mes_lookup (const struct message *meslist,
157 int max, int index,
158 const char *no_item, const char *mesname);
159
160 extern const char *zlog_priority[];
161 extern const char *zlog_proto_names[];
162
163 /* Safe version of strerror -- never returns NULL. */
164 extern const char *safe_strerror(int errnum);
165
166 /* To be called when a fatal signal is caught. */
167 extern void zlog_signal(int signo, const char *action
168 #ifdef SA_SIGINFO
169 , siginfo_t *siginfo, void *program_counter
170 #endif
171 );
172
173 /* Log a backtrace. */
174 extern void zlog_backtrace(int priority);
175
176 /* Log a backtrace, but in an async-signal-safe way. Should not be
177 called unless the program is about to exit or abort, since it messes
178 up the state of zlog file pointers. If program_counter is non-NULL,
179 that is logged in addition to the current backtrace. */
180 extern void zlog_backtrace_sigsafe(int priority, void *program_counter);
181
182 /* Puts a current timestamp in buf and returns the number of characters
183 written (not including the terminating NUL). The purpose of
184 this function is to avoid calls to localtime appearing all over the code.
185 It caches the most recent localtime result and can therefore
186 avoid multiple calls within the same second. If buflen is too small,
187 *buf will be set to '\0', and 0 will be returned. */
188 #define QUAGGA_TIMESTAMP_LEN 40
189 extern size_t quagga_timestamp(int timestamp_precision /* # subsecond digits */,
190 char *buf, size_t buflen);
191
192 extern void zlog_hexdump(const void *mem, unsigned int len);
193
194
195 extern int
196 vzlog_test (struct zlog *zl, int priority);
197
198 /* structure useful for avoiding repeated rendering of the same timestamp */
199 struct timestamp_control {
200 size_t len; /* length of rendered timestamp */
201 int precision; /* configuration parameter */
202 int already_rendered; /* should be initialized to 0 */
203 char buf[QUAGGA_TIMESTAMP_LEN]; /* will contain the rendered timestamp */
204 };
205
206 #define LOG_DEFAULT_FILENAME "/var/log/quagga/Quagga.log"
207
208 /* Defines for use in command construction: */
209
210 #define LOG_LEVEL_DESC \
211 "System is unusable\n" \
212 "Immediate action needed\n" \
213 "Critical conditions\n" \
214 "Error conditions\n" \
215 "Warning conditions\n" \
216 "Normal but significant conditions\n" \
217 "Informational messages\n" \
218 "Debugging messages\n"
219
220 #define LOG_FACILITY_DESC \
221 "Kernel\n" \
222 "User process\n" \
223 "Mail system\n" \
224 "System daemons\n" \
225 "Authorization system\n" \
226 "Syslog itself\n" \
227 "Line printer system\n" \
228 "USENET news\n" \
229 "Unix-to-Unix copy system\n" \
230 "Cron/at facility\n" \
231 "Local use\n" \
232 "Local use\n" \
233 "Local use\n" \
234 "Local use\n" \
235 "Local use\n" \
236 "Local use\n" \
237 "Local use\n" \
238 "Local use\n"
239
240 #endif /* _ZEBRA_LOG_H */