]> git.proxmox.com Git - mirror_frr.git/blob - lib/log.h
Merge commit '78986c0' into tmp-3.0-master-merge
[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 along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #ifndef _ZEBRA_LOG_H
23 #define _ZEBRA_LOG_H
24
25 #include <syslog.h>
26 #include <stdint.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 /* If maxlvl is set to ZLOG_DISABLED, then no messages will be sent
46 to that logging destination. */
47 #define ZLOG_DISABLED (LOG_EMERG-1)
48
49 typedef enum {
50 ZLOG_DEST_SYSLOG = 0,
51 ZLOG_DEST_STDOUT,
52 ZLOG_DEST_MONITOR,
53 ZLOG_DEST_FILE
54 } zlog_dest_t;
55 #define ZLOG_NUM_DESTS (ZLOG_DEST_FILE+1)
56
57 /* Message structure. */
58 struct message {
59 int key;
60 const char *str;
61 };
62
63 /* Open zlog function */
64 extern void openzlog(const char *progname, const char *protoname,
65 uint16_t instance, int syslog_options,
66 int syslog_facility);
67
68 /* Close zlog function. */
69 extern void closezlog(void);
70
71 /* GCC have printf type attribute check. */
72 #ifdef __GNUC__
73 #define PRINTF_ATTRIBUTE(a,b) __attribute__ ((__format__ (__printf__, a, b)))
74 #else
75 #define PRINTF_ATTRIBUTE(a,b)
76 #endif /* __GNUC__ */
77
78 /* Handy zlog functions. */
79 extern void zlog_err(const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
80 extern void zlog_warn(const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
81 extern void zlog_info(const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
82 extern void zlog_notice(const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
83 extern void zlog_debug(const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
84
85 extern void zlog_thread_info(int log_level);
86
87 /* Set logging level for the given destination. If the log_level
88 argument is ZLOG_DISABLED, then the destination is disabled.
89 This function should not be used for file logging (use zlog_set_file
90 or zlog_reset_file instead). */
91 extern void zlog_set_level(zlog_dest_t, int log_level);
92
93 /* Set logging to the given filename at the specified level. */
94 extern int zlog_set_file(const char *filename, int log_level);
95 /* Disable file logging. */
96 extern int zlog_reset_file(void);
97
98 /* Rotate log. */
99 extern int zlog_rotate(void);
100
101 const char *lookup_msg(const struct message *mz, int kz, const char *nf);
102
103 /* Safe version of strerror -- never returns NULL. */
104 extern const char *safe_strerror(int errnum);
105
106 /* To be called when a fatal signal is caught. */
107 extern void zlog_signal(int signo, const char *action
108 #ifdef SA_SIGINFO
109 ,
110 siginfo_t *siginfo, void *program_counter
111 #endif
112 );
113
114 /* Log a backtrace. */
115 extern void zlog_backtrace(int priority);
116
117 /* Log a backtrace, but in an async-signal-safe way. Should not be
118 called unless the program is about to exit or abort, since it messes
119 up the state of zlog file pointers. If program_counter is non-NULL,
120 that is logged in addition to the current backtrace. */
121 extern void zlog_backtrace_sigsafe(int priority, void *program_counter);
122
123 /* Puts a current timestamp in buf and returns the number of characters
124 written (not including the terminating NUL). The purpose of
125 this function is to avoid calls to localtime appearing all over the code.
126 It caches the most recent localtime result and can therefore
127 avoid multiple calls within the same second. If buflen is too small,
128 *buf will be set to '\0', and 0 will be returned. */
129 #define QUAGGA_TIMESTAMP_LEN 40
130 extern size_t quagga_timestamp(int timestamp_precision /* # subsecond digits */,
131 char *buf, size_t buflen);
132
133 extern void zlog_hexdump(const void *mem, unsigned int len);
134 extern const char *zlog_sanitize(char *buf, size_t bufsz, const void *in,
135 size_t inlen);
136
137
138 extern int vzlog_test(int priority);
139
140 /* structure useful for avoiding repeated rendering of the same timestamp */
141 struct timestamp_control {
142 size_t len; /* length of rendered timestamp */
143 int precision; /* configuration parameter */
144 int already_rendered; /* should be initialized to 0 */
145 char buf[QUAGGA_TIMESTAMP_LEN]; /* will contain the rendered timestamp
146 */
147 };
148
149 /* Defines for use in command construction: */
150
151 #define LOG_LEVEL_DESC \
152 "System is unusable\n" \
153 "Immediate action needed\n" \
154 "Critical conditions\n" \
155 "Error conditions\n" \
156 "Warning conditions\n" \
157 "Normal but significant conditions\n" \
158 "Informational messages\n" \
159 "Debugging messages\n"
160
161 #define LOG_FACILITY_DESC \
162 "Kernel\n" \
163 "User process\n" \
164 "Mail system\n" \
165 "System daemons\n" \
166 "Authorization system\n" \
167 "Syslog itself\n" \
168 "Line printer system\n" \
169 "USENET news\n" \
170 "Unix-to-Unix copy system\n" \
171 "Cron/at facility\n" \
172 "Local use\n" \
173 "Local use\n" \
174 "Local use\n" \
175 "Local use\n" \
176 "Local use\n" \
177 "Local use\n" \
178 "Local use\n" \
179 "Local use\n"
180
181 #endif /* _ZEBRA_LOG_H */