blob: c6f2f023b1fafbfa818f4eeb81e5d205b043e05b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass0e98b0a2017-12-04 13:48:20 -07002/*
3 * Logging support
4 *
5 * Copyright (c) 2017 Google, Inc
6 * Written by Simon Glass <sjg@chromium.org>
Simon Glass0e98b0a2017-12-04 13:48:20 -07007 */
8
9#ifndef __LOG_H
10#define __LOG_H
11
Simon Glasse9c8d492017-12-04 13:48:24 -070012#include <dm/uclass-id.h>
13#include <linux/list.h>
14
15/** Log levels supported, ranging from most to least important */
16enum log_level_t {
Simon Glass6fc7e932019-02-16 20:24:34 -070017 LOGL_EMERG = 0, /* U-Boot is unstable */
Simon Glasse9c8d492017-12-04 13:48:24 -070018 LOGL_ALERT, /* Action must be taken immediately */
19 LOGL_CRIT, /* Critical conditions */
20 LOGL_ERR, /* Error that prevents something from working */
21 LOGL_WARNING, /* Warning may prevent optimial operation */
22 LOGL_NOTICE, /* Normal but significant condition, printf() */
23 LOGL_INFO, /* General information message */
24 LOGL_DEBUG, /* Basic debug-level message */
25 LOGL_DEBUG_CONTENT, /* Debug message showing full message content */
26 LOGL_DEBUG_IO, /* Debug message showing hardware I/O access */
27
28 LOGL_COUNT,
Simon Glassf941c8d2017-12-28 13:14:16 -070029 LOGL_NONE,
30
Simon Glasse9c8d492017-12-04 13:48:24 -070031 LOGL_FIRST = LOGL_EMERG,
Simon Glassf941c8d2017-12-28 13:14:16 -070032 LOGL_MAX = LOGL_DEBUG_IO,
Simon Glasse9c8d492017-12-04 13:48:24 -070033};
34
35/**
36 * Log categories supported. Most of these correspond to uclasses (i.e.
37 * enum uclass_id) but there are also some more generic categories
38 */
39enum log_category_t {
40 LOGC_FIRST = 0, /* First part mirrors UCLASS_... */
41
Simon Glass0bf96452018-10-01 12:22:32 -060042 LOGC_NONE = UCLASS_COUNT, /* First number is after all uclasses */
43 LOGC_ARCH, /* Related to arch-specific code */
44 LOGC_BOARD, /* Related to board-specific code */
45 LOGC_CORE, /* Related to core features (non-driver-model) */
Simon Glassf941c8d2017-12-28 13:14:16 -070046 LOGC_DM, /* Core driver-model */
47 LOGC_DT, /* Device-tree */
Heinrich Schuchardtd8d89972018-03-23 21:12:17 +010048 LOGC_EFI, /* EFI implementation */
Simon Glassc3aed5d2018-10-01 11:55:13 -060049 LOGC_ALLOC, /* Memory allocation */
Simon Glassa5c13b62018-11-06 15:21:24 -070050 LOGC_SANDBOX, /* Related to the sandbox board */
Simon Glass9f407d42018-11-15 18:43:50 -070051 LOGC_BLOBLIST, /* Bloblist */
Simon Glasse9c8d492017-12-04 13:48:24 -070052
Simon Glass0bf96452018-10-01 12:22:32 -060053 LOGC_COUNT, /* Number of log categories */
54 LOGC_END, /* Sentinel value for a list of log categories */
Simon Glasse9c8d492017-12-04 13:48:24 -070055};
56
57/* Helper to cast a uclass ID to a log category */
58static inline int log_uc_cat(enum uclass_id id)
59{
60 return (enum log_category_t)id;
61}
62
63/**
64 * _log() - Internal function to emit a new log record
65 *
66 * @cat: Category of log record (indicating which subsystem generated it)
67 * @level: Level of log record (indicating its severity)
68 * @file: File name of file where log record was generated
69 * @line: Line number in file where log record was generated
70 * @func: Function where log record was generated
71 * @fmt: printf() format string for log record
72 * @...: Optional parameters, according to the format string @fmt
73 * @return 0 if log record was emitted, -ve on error
74 */
75int _log(enum log_category_t cat, enum log_level_t level, const char *file,
Simon Glassed4e9332019-01-07 16:44:19 -070076 int line, const char *func, const char *fmt, ...)
77 __attribute__ ((format (__printf__, 6, 7)));
Simon Glasse9c8d492017-12-04 13:48:24 -070078
Simon Glassfd429482019-09-25 08:56:23 -060079static inline int _log_nop(enum log_category_t cat, enum log_level_t level,
80 const char *file, int line, const char *func,
81 const char *fmt, ...)
82 __attribute__ ((format (__printf__, 6, 7)));
83
84static inline int _log_nop(enum log_category_t cat, enum log_level_t level,
85 const char *file, int line, const char *func,
86 const char *fmt, ...)
87{
88 return 0;
89}
90
Simon Glasse9c8d492017-12-04 13:48:24 -070091/* Define this at the top of a file to add a prefix to debug messages */
92#ifndef pr_fmt
93#define pr_fmt(fmt) fmt
94#endif
95
96/* Use a default category if this file does not supply one */
97#ifndef LOG_CATEGORY
98#define LOG_CATEGORY LOGC_NONE
99#endif
100
101/*
102 * This header may be including when CONFIG_LOG is disabled, in which case
103 * CONFIG_LOG_MAX_LEVEL is not defined. Add a check for this.
104 */
105#if CONFIG_IS_ENABLED(LOG)
106#define _LOG_MAX_LEVEL CONFIG_VAL(LOG_MAX_LEVEL)
Simon Glasscdd140a2018-10-01 11:55:06 -0600107#define log_err(_fmt...) log(LOG_CATEGORY, LOGL_ERR, ##_fmt)
108#define log_warning(_fmt...) log(LOG_CATEGORY, LOGL_WARNING, ##_fmt)
109#define log_notice(_fmt...) log(LOG_CATEGORY, LOGL_NOTICE, ##_fmt)
110#define log_info(_fmt...) log(LOG_CATEGORY, LOGL_INFO, ##_fmt)
111#define log_debug(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG, ##_fmt)
112#define log_content(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG_CONTENT, ##_fmt)
113#define log_io(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG_IO, ##_fmt)
Simon Glasse9c8d492017-12-04 13:48:24 -0700114#else
115#define _LOG_MAX_LEVEL LOGL_INFO
Simon Glassfd429482019-09-25 08:56:23 -0600116#define log_err(_fmt...) log_nop(LOG_CATEGORY, LOGL_ERR, ##_fmt)
117#define log_warning(_fmt...) log_nop(LOG_CATEGORY, LOGL_WARNING, ##_fmt)
118#define log_notice(_fmt...) log_nop(LOG_CATEGORY, LOGL_NOTICE, ##_fmt)
119#define log_info(_fmt...) log_nop(LOG_CATEGORY, LOGL_INFO, ##_fmt)
120#define log_debug(_fmt...) log_nop(LOG_CATEGORY, LOGL_DEBUG, ##_fmt)
121#define log_content(_fmt...) log_nop(LOG_CATEGORY, \
122 LOGL_DEBUG_CONTENT, ##_fmt)
123#define log_io(_fmt...) log_nop(LOG_CATEGORY, LOGL_DEBUG_IO, ##_fmt)
Simon Glasse9c8d492017-12-04 13:48:24 -0700124#endif
125
Simon Glass4d8d3052018-11-15 18:43:49 -0700126#if CONFIG_IS_ENABLED(LOG)
Simon Glassf9811e82019-02-16 20:24:37 -0700127#ifdef LOG_DEBUG
128#define _LOG_DEBUG 1
129#else
130#define _LOG_DEBUG 0
131#endif
Simon Glass4d8d3052018-11-15 18:43:49 -0700132
Simon Glasse9c8d492017-12-04 13:48:24 -0700133/* Emit a log record if the level is less that the maximum */
134#define log(_cat, _level, _fmt, _args...) ({ \
135 int _l = _level; \
Simon Glassf9811e82019-02-16 20:24:37 -0700136 if (CONFIG_IS_ENABLED(LOG) && (_l <= _LOG_MAX_LEVEL || _LOG_DEBUG)) \
Simon Glasse9c8d492017-12-04 13:48:24 -0700137 _log((enum log_category_t)(_cat), _l, __FILE__, __LINE__, \
138 __func__, \
139 pr_fmt(_fmt), ##_args); \
140 })
Simon Glass4d8d3052018-11-15 18:43:49 -0700141#else
142#define log(_cat, _level, _fmt, _args...)
143#endif
Simon Glasse9c8d492017-12-04 13:48:24 -0700144
Simon Glassfd429482019-09-25 08:56:23 -0600145#define log_nop(_cat, _level, _fmt, _args...) ({ \
146 int _l = _level; \
147 _log_nop((enum log_category_t)(_cat), _l, __FILE__, __LINE__, \
148 __func__, pr_fmt(_fmt), ##_args); \
149})
150
Simon Glass0e98b0a2017-12-04 13:48:20 -0700151#ifdef DEBUG
152#define _DEBUG 1
153#else
154#define _DEBUG 0
155#endif
156
157#ifdef CONFIG_SPL_BUILD
158#define _SPL_BUILD 1
159#else
160#define _SPL_BUILD 0
161#endif
162
Simon Glasse9c8d492017-12-04 13:48:24 -0700163#if !_DEBUG && CONFIG_IS_ENABLED(LOG)
164
165#define debug_cond(cond, fmt, args...) \
166 do { \
167 if (1) \
168 log(LOG_CATEGORY, LOGL_DEBUG, fmt, ##args); \
169 } while (0)
170
171#else /* _DEBUG */
172
Simon Glass0e98b0a2017-12-04 13:48:20 -0700173/*
174 * Output a debug text when condition "cond" is met. The "cond" should be
175 * computed by a preprocessor in the best case, allowing for the best
176 * optimization.
177 */
178#define debug_cond(cond, fmt, args...) \
179 do { \
180 if (cond) \
181 printf(pr_fmt(fmt), ##args); \
182 } while (0)
183
Simon Glasse9c8d492017-12-04 13:48:24 -0700184#endif /* _DEBUG */
185
Simon Glass0e98b0a2017-12-04 13:48:20 -0700186/* Show a message if DEBUG is defined in a file */
187#define debug(fmt, args...) \
188 debug_cond(_DEBUG, fmt, ##args)
189
190/* Show a message if not in SPL */
191#define warn_non_spl(fmt, args...) \
192 debug_cond(!_SPL_BUILD, fmt, ##args)
193
194/*
195 * An assertion is run-time check done in debug mode only. If DEBUG is not
196 * defined then it is skipped. If DEBUG is defined and the assertion fails,
197 * then it calls panic*( which may or may not reset/halt U-Boot (see
198 * CONFIG_PANIC_HANG), It is hoped that all failing assertions are found
199 * before release, and after release it is hoped that they don't matter. But
200 * in any case these failing assertions cannot be fixed with a reset (which
201 * may just do the same assertion again).
202 */
203void __assert_fail(const char *assertion, const char *file, unsigned int line,
204 const char *function);
Heinrich Schuchardtb236f8c2019-07-27 20:21:06 +0200205
206/**
207 * assert() - assert expression is true
208 *
209 * If the expression x evaluates to false and _DEBUG evaluates to true, a panic
210 * message is written and the system stalls. The value of _DEBUG is set to true
211 * if DEBUG is defined before including common.h.
212 *
213 * The expression x is always executed irrespective of the value of _DEBUG.
214 *
215 * @x: expression to test
216 */
Simon Glass0e98b0a2017-12-04 13:48:20 -0700217#define assert(x) \
218 ({ if (!(x) && _DEBUG) \
219 __assert_fail(#x, __FILE__, __LINE__, __func__); })
220
Simon Glasscd01d2d2019-12-29 21:19:10 -0700221/*
222 * This one actually gets compiled in even without DEBUG. It doesn't include the
223 * full pathname as it may be huge. Only use this when the user should be
224 * warning, similar to BUG_ON() in linux.
225 *
226 * @return true if assertion succeeded (condition is true), else false
227 */
228#define assert_noisy(x) \
229 ({ bool _val = (x); \
230 if (!_val) \
231 __assert_fail(#x, "?", __LINE__, __func__); \
232 _val; \
233 })
234
Simon Glass4d8d3052018-11-15 18:43:49 -0700235#if CONFIG_IS_ENABLED(LOG) && defined(CONFIG_LOG_ERROR_RETURN)
236/*
237 * Log an error return value, possibly with a message. Usage:
238 *
239 * return log_ret(fred_call());
240 *
241 * or:
242 *
243 * return log_msg_ret("fred failed", fred_call());
244 */
Simon Glass3707c6e2017-12-28 13:14:23 -0700245#define log_ret(_ret) ({ \
246 int __ret = (_ret); \
247 if (__ret < 0) \
248 log(LOG_CATEGORY, LOGL_ERR, "returning err=%d\n", __ret); \
249 __ret; \
250 })
Simon Glassb616cef2018-06-11 13:07:14 -0600251#define log_msg_ret(_msg, _ret) ({ \
252 int __ret = (_ret); \
253 if (__ret < 0) \
254 log(LOG_CATEGORY, LOGL_ERR, "%s: returning err=%d\n", _msg, \
255 __ret); \
256 __ret; \
257 })
Simon Glass3707c6e2017-12-28 13:14:23 -0700258#else
Simon Glass4d8d3052018-11-15 18:43:49 -0700259/* Non-logging versions of the above which just return the error code */
Simon Glass3707c6e2017-12-28 13:14:23 -0700260#define log_ret(_ret) (_ret)
Simon Glass4d8d3052018-11-15 18:43:49 -0700261#define log_msg_ret(_msg, _ret) ((void)(_msg), _ret)
Simon Glass3707c6e2017-12-28 13:14:23 -0700262#endif
263
Simon Glasse9c8d492017-12-04 13:48:24 -0700264/**
265 * struct log_rec - a single log record
266 *
267 * Holds information about a single record in the log
268 *
269 * Members marked as 'not allocated' are stored as pointers and the caller is
270 * responsible for making sure that the data pointed to is not overwritten.
271 * Memebers marked as 'allocated' are allocated (e.g. via strdup()) by the log
272 * system.
273 *
274 * @cat: Category, representing a uclass or part of U-Boot
275 * @level: Severity level, less severe is higher
276 * @file: Name of file where the log record was generated (not allocated)
277 * @line: Line number where the log record was generated
278 * @func: Function where the log record was generated (not allocated)
279 * @msg: Log message (allocated)
280 */
281struct log_rec {
282 enum log_category_t cat;
283 enum log_level_t level;
284 const char *file;
285 int line;
286 const char *func;
287 const char *msg;
288};
289
290struct log_device;
291
292/**
293 * struct log_driver - a driver which accepts and processes log records
294 *
295 * @name: Name of driver
296 */
297struct log_driver {
298 const char *name;
299 /**
300 * emit() - emit a log record
301 *
302 * Called by the log system to pass a log record to a particular driver
303 * for processing. The filter is checked before calling this function.
304 */
305 int (*emit)(struct log_device *ldev, struct log_rec *rec);
306};
307
308/**
309 * struct log_device - an instance of a log driver
310 *
311 * Since drivers are set up at build-time we need to have a separate device for
312 * the run-time aspects of drivers (currently just a list of filters to apply
313 * to records send to this device).
314 *
315 * @next_filter_num: Seqence number of next filter filter added (0=no filters
316 * yet). This increments with each new filter on the device, but never
317 * decrements
318 * @drv: Pointer to driver for this device
319 * @filter_head: List of filters for this device
320 * @sibling_node: Next device in the list of all devices
321 */
322struct log_device {
323 int next_filter_num;
324 struct log_driver *drv;
325 struct list_head filter_head;
326 struct list_head sibling_node;
327};
328
329enum {
330 LOGF_MAX_CATEGORIES = 5, /* maximum categories per filter */
331};
332
333enum log_filter_flags {
334 LOGFF_HAS_CAT = 1 << 0, /* Filter has a category list */
335};
336
337/**
338 * struct log_filter - criterial to filter out log messages
339 *
340 * @filter_num: Sequence number of this filter. This is returned when adding a
341 * new filter, and must be provided when removing a previously added
342 * filter.
343 * @flags: Flags for this filter (LOGFF_...)
344 * @cat_list: List of categories to allow (terminated by LOGC_none). If empty
345 * then all categories are permitted. Up to LOGF_MAX_CATEGORIES entries
346 * can be provided
347 * @max_level: Maximum log level to allow
348 * @file_list: List of files to allow, separated by comma. If NULL then all
349 * files are permitted
350 * @sibling_node: Next filter in the list of filters for this log device
351 */
352struct log_filter {
353 int filter_num;
354 int flags;
355 enum log_category_t cat_list[LOGF_MAX_CATEGORIES];
356 enum log_level_t max_level;
357 const char *file_list;
358 struct list_head sibling_node;
359};
360
361#define LOG_DRIVER(_name) \
362 ll_entry_declare(struct log_driver, _name, log_driver)
363
Simon Glassf941c8d2017-12-28 13:14:16 -0700364/**
365 * log_get_cat_name() - Get the name of a category
366 *
367 * @cat: Category to look up
Simon Glassc2e4e7e2018-06-12 00:04:55 -0600368 * @return category name (which may be a uclass driver name) if found, or
369 * "<invalid>" if invalid, or "<missing>" if not found
Simon Glassf941c8d2017-12-28 13:14:16 -0700370 */
371const char *log_get_cat_name(enum log_category_t cat);
372
373/**
374 * log_get_cat_by_name() - Look up a category by name
375 *
376 * @name: Name to look up
377 * @return category ID, or LOGC_NONE if not found
378 */
379enum log_category_t log_get_cat_by_name(const char *name);
380
381/**
382 * log_get_level_name() - Get the name of a log level
383 *
384 * @level: Log level to look up
385 * @return log level name (in ALL CAPS)
386 */
387const char *log_get_level_name(enum log_level_t level);
388
389/**
390 * log_get_level_by_name() - Look up a log level by name
391 *
392 * @name: Name to look up
393 * @return log level ID, or LOGL_NONE if not found
394 */
395enum log_level_t log_get_level_by_name(const char *name);
396
Simon Glass3b73e8d2017-12-28 13:14:17 -0700397/* Log format flags (bit numbers) for gd->log_fmt. See log_fmt_chars */
398enum log_fmt {
399 LOGF_CAT = 0,
400 LOGF_LEVEL,
401 LOGF_FILE,
402 LOGF_LINE,
403 LOGF_FUNC,
404 LOGF_MSG,
405
406 LOGF_COUNT,
407 LOGF_DEFAULT = (1 << LOGF_FUNC) | (1 << LOGF_MSG),
408 LOGF_ALL = 0x3f,
409};
410
Simon Glassef11ed82017-12-04 13:48:27 -0700411/* Handle the 'log test' command */
412int do_log_test(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]);
413
Simon Glasse9c8d492017-12-04 13:48:24 -0700414/**
415 * log_add_filter() - Add a new filter to a log device
416 *
417 * @drv_name: Driver name to add the filter to (since each driver only has a
418 * single device)
419 * @cat_list: List of categories to allow (terminated by LOGC_none). If empty
420 * then all categories are permitted. Up to LOGF_MAX_CATEGORIES entries
421 * can be provided
422 * @max_level: Maximum log level to allow
423 * @file_list: List of files to allow, separated by comma. If NULL then all
424 * files are permitted
425 * @return the sequence number of the new filter (>=0) if the filter was added,
426 * or a -ve value on error
427 */
428int log_add_filter(const char *drv_name, enum log_category_t cat_list[],
429 enum log_level_t max_level, const char *file_list);
430
431/**
432 * log_remove_filter() - Remove a filter from a log device
433 *
434 * @drv_name: Driver name to remove the filter from (since each driver only has
435 * a single device)
436 * @filter_num: Filter number to remove (as returned by log_add_filter())
437 * @return 0 if the filter was removed, -ENOENT if either the driver or the
438 * filter number was not found
439 */
440int log_remove_filter(const char *drv_name, int filter_num);
441
442#if CONFIG_IS_ENABLED(LOG)
443/**
444 * log_init() - Set up the log system ready for use
445 *
446 * @return 0 if OK, -ENOMEM if out of memory
447 */
448int log_init(void);
449#else
450static inline int log_init(void)
451{
452 return 0;
453}
454#endif
455
Simon Glass0e98b0a2017-12-04 13:48:20 -0700456#endif