log: introduce macro for maximum level
[dpdk.git] / lib / librte_eal / common / eal_common_log.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation
3  */
4
5 #include <stdio.h>
6 #include <stdint.h>
7 #include <stdarg.h>
8 #include <stdlib.h>
9 #include <string.h>
10 #include <errno.h>
11 #include <regex.h>
12 #include <fnmatch.h>
13
14 #include <rte_eal.h>
15 #include <rte_log.h>
16 #include <rte_per_lcore.h>
17
18 #include "eal_log.h"
19
20 struct rte_log_dynamic_type {
21         const char *name;
22         uint32_t loglevel;
23 };
24
25 /** The rte_log structure. */
26 static struct rte_logs {
27         uint32_t type;  /**< Bitfield with enabled logs. */
28         uint32_t level; /**< Log level. */
29         FILE *file;     /**< Output file set by rte_openlog_stream, or NULL. */
30         size_t dynamic_types_len;
31         struct rte_log_dynamic_type *dynamic_types;
32 } rte_logs = {
33         .type = ~0,
34         .level = RTE_LOG_DEBUG,
35 };
36
37 struct rte_eal_opt_loglevel {
38         /** Next list entry */
39         TAILQ_ENTRY(rte_eal_opt_loglevel) next;
40         /** Compiled regular expression obtained from the option */
41         regex_t re_match;
42         /** Globbing pattern option */
43         char *pattern;
44         /** Log level value obtained from the option */
45         uint32_t level;
46 };
47
48 TAILQ_HEAD(rte_eal_opt_loglevel_list, rte_eal_opt_loglevel);
49
50 /** List of valid EAL log level options */
51 static struct rte_eal_opt_loglevel_list opt_loglevel_list =
52         TAILQ_HEAD_INITIALIZER(opt_loglevel_list);
53
54 /* Stream to use for logging if rte_logs.file is NULL */
55 static FILE *default_log_stream;
56
57 /**
58  * This global structure stores some information about the message
59  * that is currently being processed by one lcore
60  */
61 struct log_cur_msg {
62         uint32_t loglevel; /**< log level - see rte_log.h */
63         uint32_t logtype;  /**< log type  - see rte_log.h */
64 };
65
66  /* per core log */
67 static RTE_DEFINE_PER_LCORE(struct log_cur_msg, log_cur_msg);
68
69 /* default logs */
70
71 /* Change the stream that will be used by logging system */
72 int
73 rte_openlog_stream(FILE *f)
74 {
75         rte_logs.file = f;
76         return 0;
77 }
78
79 FILE *
80 rte_log_get_stream(void)
81 {
82         FILE *f = rte_logs.file;
83
84         if (f == NULL) {
85                 /*
86                  * Grab the current value of stderr here, rather than
87                  * just initializing default_log_stream to stderr. This
88                  * ensures that we will always use the current value
89                  * of stderr, even if the application closes and
90                  * reopens it.
91                  */
92                 return default_log_stream ? : stderr;
93         }
94         return f;
95 }
96
97 /* Set global log level */
98 void
99 rte_log_set_global_level(uint32_t level)
100 {
101         rte_logs.level = (uint32_t)level;
102 }
103
104 /* Get global log level */
105 uint32_t
106 rte_log_get_global_level(void)
107 {
108         return rte_logs.level;
109 }
110
111 int
112 rte_log_get_level(uint32_t type)
113 {
114         if (type >= rte_logs.dynamic_types_len)
115                 return -1;
116
117         return rte_logs.dynamic_types[type].loglevel;
118 }
119
120 bool
121 rte_log_can_log(uint32_t logtype, uint32_t level)
122 {
123         int log_level;
124
125         if (level > rte_log_get_global_level())
126                 return false;
127
128         log_level = rte_log_get_level(logtype);
129         if (log_level < 0)
130                 return false;
131
132         if (level > (uint32_t)log_level)
133                 return false;
134
135         return true;
136 }
137
138 int
139 rte_log_set_level(uint32_t type, uint32_t level)
140 {
141         if (type >= rte_logs.dynamic_types_len)
142                 return -1;
143         if (level > RTE_LOG_MAX)
144                 return -1;
145
146         rte_logs.dynamic_types[type].loglevel = level;
147
148         return 0;
149 }
150
151 /* set log level by regular expression */
152 int
153 rte_log_set_level_regexp(const char *regex, uint32_t level)
154 {
155         regex_t r;
156         size_t i;
157
158         if (level > RTE_LOG_MAX)
159                 return -1;
160
161         if (regcomp(&r, regex, 0) != 0)
162                 return -1;
163
164         for (i = 0; i < rte_logs.dynamic_types_len; i++) {
165                 if (rte_logs.dynamic_types[i].name == NULL)
166                         continue;
167                 if (regexec(&r, rte_logs.dynamic_types[i].name, 0,
168                                 NULL, 0) == 0)
169                         rte_logs.dynamic_types[i].loglevel = level;
170         }
171
172         regfree(&r);
173
174         return 0;
175 }
176
177 /*
178  * Save the type string and the loglevel for later dynamic
179  * logtypes which may register later.
180  */
181 static int
182 log_save_level(uint32_t priority, const char *regex, const char *pattern)
183 {
184         struct rte_eal_opt_loglevel *opt_ll = NULL;
185
186         opt_ll = malloc(sizeof(*opt_ll));
187         if (opt_ll == NULL)
188                 goto fail;
189
190         opt_ll->level = priority;
191
192         if (regex) {
193                 opt_ll->pattern = NULL;
194                 if (regcomp(&opt_ll->re_match, regex, 0) != 0)
195                         goto fail;
196         } else if (pattern) {
197                 opt_ll->pattern = strdup(pattern);
198                 if (opt_ll->pattern == NULL)
199                         goto fail;
200         } else
201                 goto fail;
202
203         TAILQ_INSERT_HEAD(&opt_loglevel_list, opt_ll, next);
204         return 0;
205 fail:
206         free(opt_ll);
207         return -1;
208 }
209
210 int
211 eal_log_save_regexp(const char *regex, uint32_t level)
212 {
213         return log_save_level(level, regex, NULL);
214 }
215
216 /* set log level based on globbing pattern */
217 int
218 rte_log_set_level_pattern(const char *pattern, uint32_t level)
219 {
220         size_t i;
221
222         if (level > RTE_LOG_MAX)
223                 return -1;
224
225         for (i = 0; i < rte_logs.dynamic_types_len; i++) {
226                 if (rte_logs.dynamic_types[i].name == NULL)
227                         continue;
228
229                 if (fnmatch(pattern, rte_logs.dynamic_types[i].name, 0) == 0)
230                         rte_logs.dynamic_types[i].loglevel = level;
231         }
232
233         return 0;
234 }
235
236 int
237 eal_log_save_pattern(const char *pattern, uint32_t level)
238 {
239         return log_save_level(level, NULL, pattern);
240 }
241
242 /* get the current loglevel for the message being processed */
243 int rte_log_cur_msg_loglevel(void)
244 {
245         return RTE_PER_LCORE(log_cur_msg).loglevel;
246 }
247
248 /* get the current logtype for the message being processed */
249 int rte_log_cur_msg_logtype(void)
250 {
251         return RTE_PER_LCORE(log_cur_msg).logtype;
252 }
253
254 static int
255 log_lookup(const char *name)
256 {
257         size_t i;
258
259         for (i = 0; i < rte_logs.dynamic_types_len; i++) {
260                 if (rte_logs.dynamic_types[i].name == NULL)
261                         continue;
262                 if (strcmp(name, rte_logs.dynamic_types[i].name) == 0)
263                         return i;
264         }
265
266         return -1;
267 }
268
269 /* register an extended log type, assuming table is large enough, and id
270  * is not yet registered.
271  */
272 static int
273 log_register(const char *name, int id)
274 {
275         char *dup_name = strdup(name);
276
277         if (dup_name == NULL)
278                 return -ENOMEM;
279
280         rte_logs.dynamic_types[id].name = dup_name;
281         rte_logs.dynamic_types[id].loglevel = RTE_LOG_INFO;
282
283         return id;
284 }
285
286 /* register an extended log type */
287 int
288 rte_log_register(const char *name)
289 {
290         struct rte_log_dynamic_type *new_dynamic_types;
291         int id, ret;
292
293         id = log_lookup(name);
294         if (id >= 0)
295                 return id;
296
297         new_dynamic_types = realloc(rte_logs.dynamic_types,
298                 sizeof(struct rte_log_dynamic_type) *
299                 (rte_logs.dynamic_types_len + 1));
300         if (new_dynamic_types == NULL)
301                 return -ENOMEM;
302         rte_logs.dynamic_types = new_dynamic_types;
303
304         ret = log_register(name, rte_logs.dynamic_types_len);
305         if (ret < 0)
306                 return ret;
307
308         rte_logs.dynamic_types_len++;
309
310         return ret;
311 }
312
313 /* Register an extended log type and try to pick its level from EAL options */
314 int
315 rte_log_register_type_and_pick_level(const char *name, uint32_t level_def)
316 {
317         struct rte_eal_opt_loglevel *opt_ll;
318         uint32_t level = level_def;
319         int type;
320
321         type = rte_log_register(name);
322         if (type < 0)
323                 return type;
324
325         TAILQ_FOREACH(opt_ll, &opt_loglevel_list, next) {
326                 if (opt_ll->level > RTE_LOG_MAX)
327                         continue;
328
329                 if (opt_ll->pattern) {
330                         if (fnmatch(opt_ll->pattern, name, 0) == 0)
331                                 level = opt_ll->level;
332                 } else {
333                         if (regexec(&opt_ll->re_match, name, 0, NULL, 0) == 0)
334                                 level = opt_ll->level;
335                 }
336         }
337
338         rte_logs.dynamic_types[type].loglevel = level;
339
340         return type;
341 }
342
343 struct logtype {
344         uint32_t log_id;
345         const char *logtype;
346 };
347
348 static const struct logtype logtype_strings[] = {
349         {RTE_LOGTYPE_EAL,        "lib.eal"},
350         {RTE_LOGTYPE_MALLOC,     "lib.malloc"},
351         {RTE_LOGTYPE_RING,       "lib.ring"},
352         {RTE_LOGTYPE_MEMPOOL,    "lib.mempool"},
353         {RTE_LOGTYPE_TIMER,      "lib.timer"},
354         {RTE_LOGTYPE_PMD,        "pmd"},
355         {RTE_LOGTYPE_HASH,       "lib.hash"},
356         {RTE_LOGTYPE_LPM,        "lib.lpm"},
357         {RTE_LOGTYPE_KNI,        "lib.kni"},
358         {RTE_LOGTYPE_ACL,        "lib.acl"},
359         {RTE_LOGTYPE_POWER,      "lib.power"},
360         {RTE_LOGTYPE_METER,      "lib.meter"},
361         {RTE_LOGTYPE_SCHED,      "lib.sched"},
362         {RTE_LOGTYPE_PORT,       "lib.port"},
363         {RTE_LOGTYPE_TABLE,      "lib.table"},
364         {RTE_LOGTYPE_PIPELINE,   "lib.pipeline"},
365         {RTE_LOGTYPE_MBUF,       "lib.mbuf"},
366         {RTE_LOGTYPE_CRYPTODEV,  "lib.cryptodev"},
367         {RTE_LOGTYPE_EFD,        "lib.efd"},
368         {RTE_LOGTYPE_EVENTDEV,   "lib.eventdev"},
369         {RTE_LOGTYPE_GSO,        "lib.gso"},
370         {RTE_LOGTYPE_USER1,      "user1"},
371         {RTE_LOGTYPE_USER2,      "user2"},
372         {RTE_LOGTYPE_USER3,      "user3"},
373         {RTE_LOGTYPE_USER4,      "user4"},
374         {RTE_LOGTYPE_USER5,      "user5"},
375         {RTE_LOGTYPE_USER6,      "user6"},
376         {RTE_LOGTYPE_USER7,      "user7"},
377         {RTE_LOGTYPE_USER8,      "user8"}
378 };
379
380 /* Logging should be first initializer (before drivers and bus) */
381 RTE_INIT_PRIO(log_init, LOG)
382 {
383         uint32_t i;
384
385         rte_log_set_global_level(RTE_LOG_DEBUG);
386
387         rte_logs.dynamic_types = calloc(RTE_LOGTYPE_FIRST_EXT_ID,
388                 sizeof(struct rte_log_dynamic_type));
389         if (rte_logs.dynamic_types == NULL)
390                 return;
391
392         /* register legacy log types */
393         for (i = 0; i < RTE_DIM(logtype_strings); i++)
394                 log_register(logtype_strings[i].logtype,
395                                 logtype_strings[i].log_id);
396
397         rte_logs.dynamic_types_len = RTE_LOGTYPE_FIRST_EXT_ID;
398 }
399
400 static const char *
401 loglevel_to_string(uint32_t level)
402 {
403         switch (level) {
404         case 0: return "disabled";
405         case RTE_LOG_EMERG: return "emerg";
406         case RTE_LOG_ALERT: return "alert";
407         case RTE_LOG_CRIT: return "critical";
408         case RTE_LOG_ERR: return "error";
409         case RTE_LOG_WARNING: return "warning";
410         case RTE_LOG_NOTICE: return "notice";
411         case RTE_LOG_INFO: return "info";
412         case RTE_LOG_DEBUG: return "debug";
413         default: return "unknown";
414         }
415 }
416
417 /* dump global level and registered log types */
418 void
419 rte_log_dump(FILE *f)
420 {
421         size_t i;
422
423         fprintf(f, "global log level is %s\n",
424                 loglevel_to_string(rte_log_get_global_level()));
425
426         for (i = 0; i < rte_logs.dynamic_types_len; i++) {
427                 if (rte_logs.dynamic_types[i].name == NULL)
428                         continue;
429                 fprintf(f, "id %zu: %s, level is %s\n",
430                         i, rte_logs.dynamic_types[i].name,
431                         loglevel_to_string(rte_logs.dynamic_types[i].loglevel));
432         }
433 }
434
435 /*
436  * Generates a log message The message will be sent in the stream
437  * defined by the previous call to rte_openlog_stream().
438  */
439 int
440 rte_vlog(uint32_t level, uint32_t logtype, const char *format, va_list ap)
441 {
442         FILE *f = rte_log_get_stream();
443         int ret;
444
445         if (logtype >= rte_logs.dynamic_types_len)
446                 return -1;
447         if (!rte_log_can_log(logtype, level))
448                 return 0;
449
450         /* save loglevel and logtype in a global per-lcore variable */
451         RTE_PER_LCORE(log_cur_msg).loglevel = level;
452         RTE_PER_LCORE(log_cur_msg).logtype = logtype;
453
454         ret = vfprintf(f, format, ap);
455         fflush(f);
456         return ret;
457 }
458
459 /*
460  * Generates a log message The message will be sent in the stream
461  * defined by the previous call to rte_openlog_stream().
462  * No need to check level here, done by rte_vlog().
463  */
464 int
465 rte_log(uint32_t level, uint32_t logtype, const char *format, ...)
466 {
467         va_list ap;
468         int ret;
469
470         va_start(ap, format);
471         ret = rte_vlog(level, logtype, format, ap);
472         va_end(ap);
473         return ret;
474 }
475
476 /*
477  * Called by environment-specific initialization functions.
478  */
479 void
480 eal_log_set_default(FILE *default_log)
481 {
482         default_log_stream = default_log;
483
484 #if RTE_LOG_DP_LEVEL >= RTE_LOG_DEBUG
485         RTE_LOG(NOTICE, EAL,
486                 "Debug dataplane logs available - lower performance\n");
487 #endif
488 }