eal: no more bare metal environment
[dpdk.git] / lib / librte_eal / common / include / rte_log.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef _RTE_LOG_H_
35 #define _RTE_LOG_H_
36
37 /**
38  * @file
39  *
40  * RTE Logs API
41  *
42  * This file provides a log API to RTE applications.
43  */
44
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
48
49 #include <stdint.h>
50 #include <stdio.h>
51 #include <stdarg.h>
52
53 /** The rte_log structure. */
54 struct rte_logs {
55         uint32_t type;  /**< Bitfield with enabled logs. */
56         uint32_t level; /**< Log level. */
57         FILE *file;     /**< Pointer to current FILE* for logs. */
58 };
59
60 /** Global log informations */
61 extern struct rte_logs rte_logs;
62
63 /* SDK log type */
64 #define RTE_LOGTYPE_EAL     0x00000001 /**< Log related to eal. */
65 #define RTE_LOGTYPE_MALLOC  0x00000002 /**< Log related to malloc. */
66 #define RTE_LOGTYPE_RING    0x00000004 /**< Log related to ring. */
67 #define RTE_LOGTYPE_MEMPOOL 0x00000008 /**< Log related to mempool. */
68 #define RTE_LOGTYPE_TIMER   0x00000010 /**< Log related to timers. */
69 #define RTE_LOGTYPE_PMD     0x00000020 /**< Log related to poll mode driver. */
70 #define RTE_LOGTYPE_HASH    0x00000040 /**< Log related to hash table. */
71 #define RTE_LOGTYPE_LPM     0x00000080 /**< Log related to LPM. */
72 #define RTE_LOGTYPE_KNI     0x00000100 /**< Log related to KNI. */
73 #define RTE_LOGTYPE_ACL     0x00000200 /**< Log related to ACL. */
74 #define RTE_LOGTYPE_POWER   0x00000400 /**< Log related to power. */
75 #define RTE_LOGTYPE_METER   0x00000800 /**< Log related to QoS meter. */
76 #define RTE_LOGTYPE_SCHED   0x00001000 /**< Log related to QoS port scheduler. */
77 #define RTE_LOGTYPE_PORT    0x00002000 /**< Log related to port. */
78 #define RTE_LOGTYPE_TABLE   0x00004000 /**< Log related to table. */
79 #define RTE_LOGTYPE_PIPELINE 0x00008000 /**< Log related to pipeline. */
80
81 /* these log types can be used in an application */
82 #define RTE_LOGTYPE_USER1   0x01000000 /**< User-defined log type 1. */
83 #define RTE_LOGTYPE_USER2   0x02000000 /**< User-defined log type 2. */
84 #define RTE_LOGTYPE_USER3   0x04000000 /**< User-defined log type 3. */
85 #define RTE_LOGTYPE_USER4   0x08000000 /**< User-defined log type 4. */
86 #define RTE_LOGTYPE_USER5   0x10000000 /**< User-defined log type 5. */
87 #define RTE_LOGTYPE_USER6   0x20000000 /**< User-defined log type 6. */
88 #define RTE_LOGTYPE_USER7   0x40000000 /**< User-defined log type 7. */
89 #define RTE_LOGTYPE_USER8   0x80000000 /**< User-defined log type 8. */
90
91 /* Can't use 0, as it gives compiler warnings */
92 #define RTE_LOG_EMERG    1U  /**< System is unusable.               */
93 #define RTE_LOG_ALERT    2U  /**< Action must be taken immediately. */
94 #define RTE_LOG_CRIT     3U  /**< Critical conditions.              */
95 #define RTE_LOG_ERR      4U  /**< Error conditions.                 */
96 #define RTE_LOG_WARNING  5U  /**< Warning conditions.               */
97 #define RTE_LOG_NOTICE   6U  /**< Normal but significant condition. */
98 #define RTE_LOG_INFO     7U  /**< Informational.                    */
99 #define RTE_LOG_DEBUG    8U  /**< Debug-level messages.             */
100
101 /** The default log stream. */
102 extern FILE *eal_default_log_stream;
103
104 /**
105  * Change the stream that will be used by the logging system.
106  *
107  * This can be done at any time. The f argument represents the stream
108  * to be used to send the logs. If f is NULL, the default output is
109  * used (stderr).
110  *
111  * @param f
112  *   Pointer to the stream.
113  * @return
114  *   - 0 on success.
115  *   - Negative on error.
116  */
117 int rte_openlog_stream(FILE *f);
118
119 /**
120  * Set the global log level.
121  *
122  * After this call, all logs that are lower or equal than level and
123  * lower or equal than the RTE_LOG_LEVEL configuration option will be
124  * displayed.
125  *
126  * @param level
127  *   Log level. A value between RTE_LOG_EMERG (1) and RTE_LOG_DEBUG (8).
128  */
129 void rte_set_log_level(uint32_t level);
130
131 /**
132  * Get the global log level.
133  */
134 uint32_t rte_get_log_level(void);
135
136 /**
137  * Enable or disable the log type.
138  *
139  * @param type
140  *   Log type, for example, RTE_LOGTYPE_EAL.
141  * @param enable
142  *   True for enable; false for disable.
143  */
144 void rte_set_log_type(uint32_t type, int enable);
145
146 /**
147  * Get the current loglevel for the message being processed.
148  *
149  * Before calling the user-defined stream for logging, the log
150  * subsystem sets a per-lcore variable containing the loglevel and the
151  * logtype of the message being processed. This information can be
152  * accessed by the user-defined log output function through this
153  * function.
154  *
155  * @return
156  *   The loglevel of the message being processed.
157  */
158 int rte_log_cur_msg_loglevel(void);
159
160 /**
161  * Get the current logtype for the message being processed.
162  *
163  * Before calling the user-defined stream for logging, the log
164  * subsystem sets a per-lcore variable containing the loglevel and the
165  * logtype of the message being processed. This information can be
166  * accessed by the user-defined log output function through this
167  * function.
168  *
169  * @return
170  *   The logtype of the message being processed.
171  */
172 int rte_log_cur_msg_logtype(void);
173
174 /**
175  * Enable or disable the history (enabled by default)
176  *
177  * @param enable
178  *   true to enable, or 0 to disable history.
179  */
180 void rte_log_set_history(int enable);
181
182 /**
183  * Dump the log history to a file
184  *
185  * @param f
186  *   A pointer to a file for output
187  */
188 void rte_log_dump_history(FILE *f);
189
190 /**
191  * Add a log message to the history.
192  *
193  * This function can be called from a user-defined log stream. It adds
194  * the given message in the history that can be dumped using
195  * rte_log_dump_history().
196  *
197  * @param buf
198  *   A data buffer containing the message to be saved in the history.
199  * @param size
200  *   The length of the data buffer.
201  * @return
202  *   - 0: Success.
203  *   - (-ENOBUFS) if there is no room to store the message.
204  */
205 int rte_log_add_in_history(const char *buf, size_t size);
206
207 /**
208  * Generates a log message.
209  *
210  * The message will be sent in the stream defined by the previous call
211  * to rte_openlog_stream().
212  *
213  * The level argument determines if the log should be displayed or
214  * not, depending on the global rte_logs variable.
215  *
216  * The preferred alternative is the RTE_LOG() function because debug logs may
217  * be removed at compilation time if optimization is enabled. Moreover,
218  * logs are automatically prefixed by type when using the macro.
219  *
220  * @param level
221  *   Log level. A value between RTE_LOG_EMERG (1) and RTE_LOG_DEBUG (8).
222  * @param logtype
223  *   The log type, for example, RTE_LOGTYPE_EAL.
224  * @param format
225  *   The format string, as in printf(3), followed by the variable arguments
226  *   required by the format.
227  * @return
228  *   - 0: Success.
229  *   - Negative on error.
230  */
231 int rte_log(uint32_t level, uint32_t logtype, const char *format, ...)
232 #ifdef __GNUC__
233 #if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 2))
234         __attribute__((cold))
235 #endif
236 #endif
237         __attribute__((format(printf, 3, 4)));
238
239 /**
240  * Generates a log message.
241  *
242  * The message will be sent in the stream defined by the previous call
243  * to rte_openlog_stream().
244  *
245  * The level argument determines if the log should be displayed or
246  * not, depending on the global rte_logs variable. A trailing
247  * newline may be added if needed.
248  *
249  * The preferred alternative is the RTE_LOG() because debug logs may be
250  * removed at compilation time.
251  *
252  * @param level
253  *   Log level. A value between RTE_LOG_EMERG (1) and RTE_LOG_DEBUG (8).
254  * @param logtype
255  *   The log type, for example, RTE_LOGTYPE_EAL.
256  * @param format
257  *   The format string, as in printf(3), followed by the variable arguments
258  *   required by the format.
259  * @param ap
260  *   The va_list of the variable arguments required by the format.
261  * @return
262  *   - 0: Success.
263  *   - Negative on error.
264  */
265 int rte_vlog(uint32_t level, uint32_t logtype, const char *format, va_list ap)
266         __attribute__((format(printf,3,0)));
267
268 /**
269  * Generates a log message.
270  *
271  * The RTE_LOG() is equivalent to rte_log() with two differences:
272
273  * - RTE_LOG() can be used to remove debug logs at compilation time,
274  *   depending on RTE_LOG_LEVEL configuration option, and compilation
275  *   optimization level. If optimization is enabled, the tests
276  *   involving constants only are pre-computed. If compilation is done
277  *   with -O0, these tests will be done at run time.
278  * - The log level and log type names are smaller, for example:
279  *   RTE_LOG(INFO, EAL, "this is a %s", "log");
280  *
281  * @param l
282  *   Log level. A value between EMERG (1) and DEBUG (8). The short name is
283  *   expanded by the macro, so it cannot be an integer value.
284  * @param t
285  *   The log type, for example, EAL. The short name is expanded by the
286  *   macro, so it cannot be an integer value.
287  * @param fmt
288  *   The fmt string, as in printf(3), followed by the variable arguments
289  *   required by the format.
290  * @param args
291  *   The variable list of arguments according to the format string.
292  * @return
293  *   - 0: Success.
294  *   - Negative on error.
295  */
296 #define RTE_LOG(l, t, ...)                                      \
297         (void)(((RTE_LOG_ ## l <= RTE_LOG_LEVEL) &&                     \
298           (RTE_LOG_ ## l <= rte_logs.level) &&                  \
299           (RTE_LOGTYPE_ ## t & rte_logs.type)) ?                \
300          rte_log(RTE_LOG_ ## l,                                 \
301                  RTE_LOGTYPE_ ## t, # t ": " __VA_ARGS__) :     \
302          0)
303
304 #ifdef __cplusplus
305 }
306 #endif
307
308 #endif /* _RTE_LOG_H_ */