DPDK  21.08.0
rte_log.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2017 Intel Corporation
3  */
4 
5 #ifndef _RTE_LOG_H_
6 #define _RTE_LOG_H_
7 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 #include <stdint.h>
21 #include <stdio.h>
22 #include <stdarg.h>
23 #include <stdbool.h>
24 #include <sys/queue.h>
25 
26 #include <rte_common.h>
27 #include <rte_config.h>
28 #include <rte_compat.h>
29 
30 /* SDK log type */
31 #define RTE_LOGTYPE_EAL 0
32 #define RTE_LOGTYPE_MALLOC 1
33 #define RTE_LOGTYPE_RING 2
34 #define RTE_LOGTYPE_MEMPOOL 3
35 #define RTE_LOGTYPE_TIMER 4
36 #define RTE_LOGTYPE_PMD 5
37 #define RTE_LOGTYPE_HASH 6
38 #define RTE_LOGTYPE_LPM 7
39 #define RTE_LOGTYPE_KNI 8
40 #define RTE_LOGTYPE_ACL 9
41 #define RTE_LOGTYPE_POWER 10
42 #define RTE_LOGTYPE_METER 11
43 #define RTE_LOGTYPE_SCHED 12
44 #define RTE_LOGTYPE_PORT 13
45 #define RTE_LOGTYPE_TABLE 14
46 #define RTE_LOGTYPE_PIPELINE 15
47 #define RTE_LOGTYPE_MBUF 16
48 #define RTE_LOGTYPE_CRYPTODEV 17
49 #define RTE_LOGTYPE_EFD 18
50 #define RTE_LOGTYPE_EVENTDEV 19
51 #define RTE_LOGTYPE_GSO 20
53 /* these log types can be used in an application */
54 #define RTE_LOGTYPE_USER1 24
55 #define RTE_LOGTYPE_USER2 25
56 #define RTE_LOGTYPE_USER3 26
57 #define RTE_LOGTYPE_USER4 27
58 #define RTE_LOGTYPE_USER5 28
59 #define RTE_LOGTYPE_USER6 29
60 #define RTE_LOGTYPE_USER7 30
61 #define RTE_LOGTYPE_USER8 31
64 #define RTE_LOGTYPE_FIRST_EXT_ID 32
65 
66 /* Can't use 0, as it gives compiler warnings */
67 #define RTE_LOG_EMERG 1U
68 #define RTE_LOG_ALERT 2U
69 #define RTE_LOG_CRIT 3U
70 #define RTE_LOG_ERR 4U
71 #define RTE_LOG_WARNING 5U
72 #define RTE_LOG_NOTICE 6U
73 #define RTE_LOG_INFO 7U
74 #define RTE_LOG_DEBUG 8U
75 #define RTE_LOG_MAX RTE_LOG_DEBUG
90 int rte_openlog_stream(FILE *f);
91 
99 FILE *rte_log_get_stream(void);
100 
110 void rte_log_set_global_level(uint32_t level);
111 
118 uint32_t rte_log_get_global_level(void);
119 
128 int rte_log_get_level(uint32_t logtype);
129 
140 __rte_experimental
141 bool rte_log_can_log(uint32_t logtype, uint32_t loglevel);
142 
153 int rte_log_set_level_pattern(const char *pattern, uint32_t level);
154 
165 int rte_log_set_level_regexp(const char *regex, uint32_t level);
166 
177 int rte_log_set_level(uint32_t logtype, uint32_t level);
178 
191 int rte_log_cur_msg_loglevel(void);
192 
205 int rte_log_cur_msg_logtype(void);
206 
219 int rte_log_register(const char *name);
220 
240 __rte_experimental
241 int rte_log_register_type_and_pick_level(const char *name, uint32_t level_def);
242 
254 __rte_experimental
255 void rte_log_list_types(FILE *out, const char *prefix);
256 
265 void rte_log_dump(FILE *f);
266 
290 int rte_log(uint32_t level, uint32_t logtype, const char *format, ...)
291 #ifdef __GNUC__
292 #if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 2))
293  __rte_cold
294 #endif
295 #endif
296  __rte_format_printf(3, 4);
297 
324 int rte_vlog(uint32_t level, uint32_t logtype, const char *format, va_list ap)
325  __rte_format_printf(3, 0);
326 
346 #define RTE_LOG(l, t, ...) \
347  rte_log(RTE_LOG_ ## l, \
348  RTE_LOGTYPE_ ## t, # t ": " __VA_ARGS__)
349 
370 #define RTE_LOG_DP(l, t, ...) \
371  (void)((RTE_LOG_ ## l <= RTE_LOG_DP_LEVEL) ? \
372  rte_log(RTE_LOG_ ## l, \
373  RTE_LOGTYPE_ ## t, # t ": " __VA_ARGS__) : \
374  0)
375 
376 #define RTE_LOG_REGISTER_IMPL(type, name, level) \
377 int type; \
378 RTE_INIT(__##type) \
379 { \
380  type = rte_log_register_type_and_pick_level(name, RTE_LOG_##level); \
381  if (type < 0) \
382  type = RTE_LOGTYPE_EAL; \
383 }
384 
401 #define RTE_LOG_REGISTER(type, name, level) \
402  RTE_LOG_REGISTER_IMPL(type, RTE_STR(name), level)
403 
411 #define RTE_LOG_REGISTER_DEFAULT(type, level) \
412  RTE_LOG_REGISTER_IMPL(type, RTE_STR(RTE_LOG_DEFAULT_LOGTYPE), level)
413 
421 #define RTE_LOG_REGISTER_SUFFIX(type, suffix, level) \
422  RTE_LOG_REGISTER_IMPL(type, \
423  RTE_STR(RTE_LOG_DEFAULT_LOGTYPE) "." RTE_STR(suffix), level)
424 
425 #ifdef __cplusplus
426 }
427 #endif
428 
429 #endif /* _RTE_LOG_H_ */
int rte_log_set_level_pattern(const char *pattern, uint32_t level)
int rte_log_set_level_regexp(const char *regex, uint32_t level)
__rte_experimental int rte_log_register_type_and_pick_level(const char *name, uint32_t level_def)
#define __rte_cold
Definition: rte_common.h:243
int rte_log_set_level(uint32_t logtype, uint32_t level)
void rte_log_dump(FILE *f)
#define __rte_format_printf(format_index, first_arg)
Definition: rte_common.h:146
uint32_t rte_log_get_global_level(void)
int rte_log(uint32_t level, uint32_t logtype, const char *format,...) __rte_format_printf(3
int rte_log_cur_msg_logtype(void)
__rte_experimental bool rte_log_can_log(uint32_t logtype, uint32_t loglevel)
FILE * rte_log_get_stream(void)
__rte_experimental void rte_log_list_types(FILE *out, const char *prefix)
int rte_log_get_level(uint32_t logtype)
void rte_log_set_global_level(uint32_t level)
int int rte_vlog(uint32_t level, uint32_t logtype, const char *format, va_list ap) __rte_format_printf(3
int rte_log_register(const char *name)
int rte_log_cur_msg_loglevel(void)