2 * Zebra logging funcions.
3 * Copyright (C) 1997, 1998, 1999 Kunihiro Ishiguro
5 * This file is part of GNU Zebra.
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
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.
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
29 /* Here is some guidance on logging levels to use:
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
41 * Note: LOG_CRIT, LOG_ALERT, and LOG_EMERG are currently not used anywhere,
42 * please use LOG_ERR instead.
62 /* If maxlvl is set to ZLOG_DISABLED, then no messages will be sent
63 to that logging destination. */
64 #define ZLOG_DISABLED (LOG_EMERG-1)
73 #define ZLOG_NUM_DESTS (ZLOG_DEST_FILE+1)
77 const char *ident; /* daemon name (first arg to openlog) */
78 zlog_proto_t protocol;
79 int maxlvl[ZLOG_NUM_DESTS]; /* maximum priority to send to associated
80 logging destination */
81 int default_lvl; /* maxlvl to use if none is specified */
84 int facility; /* as per syslog facility */
85 int record_priority; /* should messages logged through stdio include the
86 priority of the message? */
87 int syslog_options; /* 2nd arg to openlog */
88 int timestamp_precision; /* # of digits of subsecond precision */
91 /* Message structure. */
98 /* Default logging strucutre. */
99 extern struct zlog *zlog_default;
101 /* Open zlog function */
102 extern struct zlog *openzlog (const char *progname, zlog_proto_t protocol,
103 int syslog_options, int syslog_facility);
105 /* Close zlog function. */
106 extern void closezlog (struct zlog *zl);
108 /* GCC have printf type attribute check. */
110 #define PRINTF_ATTRIBUTE(a,b) __attribute__ ((__format__ (__printf__, a, b)))
112 #define PRINTF_ATTRIBUTE(a,b)
113 #endif /* __GNUC__ */
115 /* Generic function for zlog. */
116 extern void zlog (struct zlog *zl, int priority, const char *format, ...)
117 PRINTF_ATTRIBUTE(3, 4);
119 /* Handy zlog functions. */
120 extern void zlog_err (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
121 extern void zlog_warn (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
122 extern void zlog_info (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
123 extern void zlog_notice (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
124 extern void zlog_debug (const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
126 /* For bgpd's peer oriented log. */
127 extern void plog_err (struct zlog *, const char *format, ...)
128 PRINTF_ATTRIBUTE(2, 3);
129 extern void plog_warn (struct zlog *, const char *format, ...)
130 PRINTF_ATTRIBUTE(2, 3);
131 extern void plog_info (struct zlog *, const char *format, ...)
132 PRINTF_ATTRIBUTE(2, 3);
133 extern void plog_notice (struct zlog *, const char *format, ...)
134 PRINTF_ATTRIBUTE(2, 3);
135 extern void plog_debug (struct zlog *, const char *format, ...)
136 PRINTF_ATTRIBUTE(2, 3);
138 extern void zlog_thread_info (int log_level);
140 /* Set logging level for the given destination. If the log_level
141 argument is ZLOG_DISABLED, then the destination is disabled.
142 This function should not be used for file logging (use zlog_set_file
143 or zlog_reset_file instead). */
144 extern void zlog_set_level (struct zlog *zl, zlog_dest_t, int log_level);
146 /* Set logging to the given filename at the specified level. */
147 extern int zlog_set_file (struct zlog *zl, const char *filename, int log_level);
148 /* Disable file logging. */
149 extern int zlog_reset_file (struct zlog *zl);
152 extern int zlog_rotate (struct zlog *);
154 /* For hackey message lookup and check */
155 #define LOOKUP_DEF(x, y, def) mes_lookup(x, x ## _max, y, def, #x)
156 #define LOOKUP(x, y) LOOKUP_DEF(x, y, "(no item found)")
158 extern const char *lookup (const struct message *, int);
159 extern const char *mes_lookup (const struct message *meslist,
161 const char *no_item, const char *mesname);
163 extern const char *zlog_priority[];
164 extern const char *zlog_proto_names[];
166 /* Safe version of strerror -- never returns NULL. */
167 extern const char *safe_strerror(int errnum);
169 /* To be called when a fatal signal is caught. */
170 extern void zlog_signal(int signo, const char *action
172 , siginfo_t *siginfo, void *program_counter
176 /* Log a backtrace. */
177 extern void zlog_backtrace(int priority);
179 /* Log a backtrace, but in an async-signal-safe way. Should not be
180 called unless the program is about to exit or abort, since it messes
181 up the state of zlog file pointers. If program_counter is non-NULL,
182 that is logged in addition to the current backtrace. */
183 extern void zlog_backtrace_sigsafe(int priority, void *program_counter);
185 /* Puts a current timestamp in buf and returns the number of characters
186 written (not including the terminating NUL). The purpose of
187 this function is to avoid calls to localtime appearing all over the code.
188 It caches the most recent localtime result and can therefore
189 avoid multiple calls within the same second. If buflen is too small,
190 *buf will be set to '\0', and 0 will be returned. */
191 #define QUAGGA_TIMESTAMP_LEN 40
192 extern size_t quagga_timestamp(int timestamp_precision /* # subsecond digits */,
193 char *buf, size_t buflen);
195 extern void zlog_hexdump(void *mem, unsigned int len);
197 /* structure useful for avoiding repeated rendering of the same timestamp */
198 struct timestamp_control {
199 size_t len; /* length of rendered timestamp */
200 int precision; /* configuration parameter */
201 int already_rendered; /* should be initialized to 0 */
202 char buf[QUAGGA_TIMESTAMP_LEN]; /* will contain the rendered timestamp */
205 /* Defines for use in command construction: */
207 #define LOG_LEVELS "(emergencies|alerts|critical|errors|warnings|notifications|informational|debugging)"
209 #define LOG_LEVEL_DESC \
210 "System is unusable\n" \
211 "Immediate action needed\n" \
212 "Critical conditions\n" \
213 "Error conditions\n" \
214 "Warning conditions\n" \
215 "Normal but significant conditions\n" \
216 "Informational messages\n" \
217 "Debugging messages\n"
219 #define LOG_FACILITIES "(kern|user|mail|daemon|auth|syslog|lpr|news|uucp|cron|local0|local1|local2|local3|local4|local5|local6|local7)"
221 #define LOG_FACILITY_DESC \
226 "Authorization system\n" \
228 "Line printer system\n" \
230 "Unix-to-Unix copy system\n" \
231 "Cron/at facility\n" \
241 #endif /* _ZEBRA_LOG_H */