DPDK  22.07.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 
25 #include <rte_common.h>
26 #include <rte_config.h>
27 #include <rte_compat.h>
28 
29 /* SDK log type */
30 #define RTE_LOGTYPE_EAL 0
31 #define RTE_LOGTYPE_MALLOC 1
32 #define RTE_LOGTYPE_RING 2
33 #define RTE_LOGTYPE_MEMPOOL 3
34 #define RTE_LOGTYPE_TIMER 4
35 #define RTE_LOGTYPE_PMD 5
36 #define RTE_LOGTYPE_HASH 6
37 #define RTE_LOGTYPE_LPM 7
38 #define RTE_LOGTYPE_KNI 8
39 #define RTE_LOGTYPE_ACL 9
40 #define RTE_LOGTYPE_POWER 10
41 #define RTE_LOGTYPE_METER 11
42 #define RTE_LOGTYPE_SCHED 12
43 #define RTE_LOGTYPE_PORT 13
44 #define RTE_LOGTYPE_TABLE 14
45 #define RTE_LOGTYPE_PIPELINE 15
46 #define RTE_LOGTYPE_MBUF 16
47 #define RTE_LOGTYPE_CRYPTODEV 17
48 #define RTE_LOGTYPE_EFD 18
49 #define RTE_LOGTYPE_EVENTDEV 19
50 #define RTE_LOGTYPE_GSO 20
52 /* these log types can be used in an application */
53 #define RTE_LOGTYPE_USER1 24
54 #define RTE_LOGTYPE_USER2 25
55 #define RTE_LOGTYPE_USER3 26
56 #define RTE_LOGTYPE_USER4 27
57 #define RTE_LOGTYPE_USER5 28
58 #define RTE_LOGTYPE_USER6 29
59 #define RTE_LOGTYPE_USER7 30
60 #define RTE_LOGTYPE_USER8 31
63 #define RTE_LOGTYPE_FIRST_EXT_ID 32
64 
65 /* Can't use 0, as it gives compiler warnings */
66 #define RTE_LOG_EMERG 1U
67 #define RTE_LOG_ALERT 2U
68 #define RTE_LOG_CRIT 3U
69 #define RTE_LOG_ERR 4U
70 #define RTE_LOG_WARNING 5U
71 #define RTE_LOG_NOTICE 6U
72 #define RTE_LOG_INFO 7U
73 #define RTE_LOG_DEBUG 8U
74 #define RTE_LOG_MAX RTE_LOG_DEBUG
89 int rte_openlog_stream(FILE *f);
90 
98 FILE *rte_log_get_stream(void);
99 
109 void rte_log_set_global_level(uint32_t level);
110 
117 uint32_t rte_log_get_global_level(void);
118 
127 int rte_log_get_level(uint32_t logtype);
128 
139 bool rte_log_can_log(uint32_t logtype, uint32_t loglevel);
140 
151 int rte_log_set_level_pattern(const char *pattern, uint32_t level);
152 
163 int rte_log_set_level_regexp(const char *regex, uint32_t level);
164 
175 int rte_log_set_level(uint32_t logtype, uint32_t level);
176 
189 int rte_log_cur_msg_loglevel(void);
190 
203 int rte_log_cur_msg_logtype(void);
204 
217 int rte_log_register(const char *name);
218 
235 int rte_log_register_type_and_pick_level(const char *name, uint32_t level_def);
236 
248 __rte_experimental
249 void rte_log_list_types(FILE *out, const char *prefix);
250 
259 void rte_log_dump(FILE *f);
260 
284 int rte_log(uint32_t level, uint32_t logtype, const char *format, ...)
285 #ifdef __GNUC__
286 #if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 2))
287  __rte_cold
288 #endif
289 #endif
290  __rte_format_printf(3, 4);
291 
318 int rte_vlog(uint32_t level, uint32_t logtype, const char *format, va_list ap)
319  __rte_format_printf(3, 0);
320 
340 #define RTE_LOG(l, t, ...) \
341  rte_log(RTE_LOG_ ## l, \
342  RTE_LOGTYPE_ ## t, # t ": " __VA_ARGS__)
343 
364 #define RTE_LOG_DP(l, t, ...) \
365  (void)((RTE_LOG_ ## l <= RTE_LOG_DP_LEVEL) ? \
366  rte_log(RTE_LOG_ ## l, \
367  RTE_LOGTYPE_ ## t, # t ": " __VA_ARGS__) : \
368  0)
369 
370 #define RTE_LOG_REGISTER_IMPL(type, name, level) \
371 int type; \
372 RTE_INIT(__##type) \
373 { \
374  type = rte_log_register_type_and_pick_level(name, RTE_LOG_##level); \
375  if (type < 0) \
376  type = RTE_LOGTYPE_EAL; \
377 }
378 
392 #define RTE_LOG_REGISTER(type, name, level) \
393  RTE_LOG_REGISTER_IMPL(type, RTE_STR(name), level)
394 
399 #define RTE_LOG_REGISTER_DEFAULT(type, level) \
400  RTE_LOG_REGISTER_IMPL(type, RTE_STR(RTE_LOG_DEFAULT_LOGTYPE), level)
401 
406 #define RTE_LOG_REGISTER_SUFFIX(type, suffix, level) \
407  RTE_LOG_REGISTER_IMPL(type, \
408  RTE_STR(RTE_LOG_DEFAULT_LOGTYPE) "." RTE_STR(suffix), level)
409 
410 #ifdef __cplusplus
411 }
412 #endif
413 
414 #endif /* _RTE_LOG_H_ */
int rte_log_set_level_pattern(const char *pattern, uint32_t level)
bool rte_log_can_log(uint32_t logtype, uint32_t loglevel)
int rte_log_set_level_regexp(const char *regex, uint32_t level)
#define __rte_cold
Definition: rte_common.h:273
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:151
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)
int rte_log_register_type_and_pick_level(const char *name, uint32_t level_def)
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)