blob: 2d27f9f657e4b88724ef3411a658edf234162cd4 [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 Glass90526e92020-05-10 11:39:56 -060012#include <stdio.h>
Simon Glass09140112020-05-10 11:40:03 -060013#include <linker_lists.h>
Simon Glasse9c8d492017-12-04 13:48:24 -070014#include <dm/uclass-id.h>
Heinrich Schuchardt3c21d772020-06-17 21:52:44 +020015#include <linux/bitops.h>
Simon Glasse9c8d492017-12-04 13:48:24 -070016#include <linux/list.h>
17
Simon Glass09140112020-05-10 11:40:03 -060018struct cmd_tbl;
19
Sean Anderson00ebb7f2020-10-27 19:55:40 -040020/**
21 * enum log_level_t - Log levels supported, ranging from most to least important
22 */
Simon Glasse9c8d492017-12-04 13:48:24 -070023enum log_level_t {
Sean Anderson00ebb7f2020-10-27 19:55:40 -040024 /** @LOGL_EMERG: U-Boot is unstable */
25 LOGL_EMERG = 0,
26 /** @LOGL_ALERT: Action must be taken immediately */
27 LOGL_ALERT,
28 /** @LOGL_CRIT: Critical conditions */
29 LOGL_CRIT,
30 /** @LOGL_ERR: Error that prevents something from working */
31 LOGL_ERR,
Heinrich Schuchardt9e925d02020-11-30 09:04:48 +010032 /** @LOGL_WARNING: Warning may prevent optimal operation */
Sean Anderson00ebb7f2020-10-27 19:55:40 -040033 LOGL_WARNING,
34 /** @LOGL_NOTICE: Normal but significant condition, printf() */
35 LOGL_NOTICE,
36 /** @LOGL_INFO: General information message */
37 LOGL_INFO,
38 /** @LOGL_DEBUG: Basic debug-level message */
39 LOGL_DEBUG,
40 /** @LOGL_DEBUG_CONTENT: Debug message showing full message content */
41 LOGL_DEBUG_CONTENT,
42 /** @LOGL_DEBUG_IO: Debug message showing hardware I/O access */
43 LOGL_DEBUG_IO,
Simon Glasse9c8d492017-12-04 13:48:24 -070044
Sean Anderson00ebb7f2020-10-27 19:55:40 -040045 /** @LOGL_COUNT: Total number of valid log levels */
Simon Glasse9c8d492017-12-04 13:48:24 -070046 LOGL_COUNT,
Sean Anderson00ebb7f2020-10-27 19:55:40 -040047 /** @LOGL_NONE: Used to indicate that there is no valid log level */
Simon Glassf941c8d2017-12-28 13:14:16 -070048 LOGL_NONE,
49
Sean Anderson00ebb7f2020-10-27 19:55:40 -040050 /** @LOGL_LEVEL_MASK: Mask for valid log levels */
51 LOGL_LEVEL_MASK = 0xf,
52 /** @LOGL_FORCE_DEBUG: Mask to force output due to LOG_DEBUG */
53 LOGL_FORCE_DEBUG = 0x10,
Simon Glass52d3df72020-09-12 11:13:34 -060054
Sean Anderson00ebb7f2020-10-27 19:55:40 -040055 /** @LOGL_FIRST: The first, most-important log level */
Simon Glasse9c8d492017-12-04 13:48:24 -070056 LOGL_FIRST = LOGL_EMERG,
Sean Anderson00ebb7f2020-10-27 19:55:40 -040057 /** @LOGL_MAX: The last, least-important log level */
Simon Glassf941c8d2017-12-28 13:14:16 -070058 LOGL_MAX = LOGL_DEBUG_IO,
Sean Anderson00ebb7f2020-10-27 19:55:40 -040059 /** @LOGL_CONT: Use same log level as in previous call */
60 LOGL_CONT = -1,
Simon Glasse9c8d492017-12-04 13:48:24 -070061};
62
63/**
Sean Anderson00ebb7f2020-10-27 19:55:40 -040064 * enum log_category_t - Log categories supported.
65 *
66 * Log categories between %LOGC_FIRST and %LOGC_NONE correspond to uclasses
67 * (i.e. &enum uclass_id), but there are also some more generic categories.
Simon Glass80212962020-09-27 18:46:13 -060068 *
69 * Remember to update log_cat_name[] after adding a new category.
Simon Glasse9c8d492017-12-04 13:48:24 -070070 */
71enum log_category_t {
Sean Anderson00ebb7f2020-10-27 19:55:40 -040072 /** @LOGC_FIRST: First log category */
Simon Glasse9c8d492017-12-04 13:48:24 -070073 LOGC_FIRST = 0, /* First part mirrors UCLASS_... */
74
Sean Anderson00ebb7f2020-10-27 19:55:40 -040075 /** @LOGC_NONE: Default log category */
Simon Glass0bf96452018-10-01 12:22:32 -060076 LOGC_NONE = UCLASS_COUNT, /* First number is after all uclasses */
Sean Anderson00ebb7f2020-10-27 19:55:40 -040077 /** @LOGC_ARCH: Related to arch-specific code */
78 LOGC_ARCH,
79 /** @LOGC_BOARD: Related to board-specific code */
80 LOGC_BOARD,
81 /** @LOGC_CORE: Related to core features (non-driver-model) */
82 LOGC_CORE,
83 /** @LOGC_DM: Core driver-model */
84 LOGC_DM,
85 /** @LOGC_DT: Device-tree */
86 LOGC_DT,
87 /** @LOGC_EFI: EFI implementation */
88 LOGC_EFI,
89 /** @LOGC_ALLOC: Memory allocation */
90 LOGC_ALLOC,
91 /** @LOGC_SANDBOX: Related to the sandbox board */
92 LOGC_SANDBOX,
93 /** @LOGC_BLOBLIST: Bloblist */
94 LOGC_BLOBLIST,
95 /** @LOGC_DEVRES: Device resources (``devres_...`` functions) */
96 LOGC_DEVRES,
97 /** @LOGC_ACPI: Advanced Configuration and Power Interface (ACPI) */
Simon Glass7ca28502020-04-09 10:27:38 -060098 LOGC_ACPI,
Simon Glassd61e7842020-11-29 17:07:04 -070099 /** @LOGC_BOOT: Related to boot process / boot image processing */
100 LOGC_BOOT,
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400101 /** @LOGC_COUNT: Number of log categories */
102 LOGC_COUNT,
103 /** @LOGC_END: Sentinel value for lists of log categories */
104 LOGC_END,
105 /** @LOGC_CONT: Use same category as in previous call */
106 LOGC_CONT = -1,
Simon Glasse9c8d492017-12-04 13:48:24 -0700107};
108
109/* Helper to cast a uclass ID to a log category */
110static inline int log_uc_cat(enum uclass_id id)
111{
112 return (enum log_category_t)id;
113}
114
115/**
116 * _log() - Internal function to emit a new log record
117 *
118 * @cat: Category of log record (indicating which subsystem generated it)
119 * @level: Level of log record (indicating its severity)
120 * @file: File name of file where log record was generated
121 * @line: Line number in file where log record was generated
122 * @func: Function where log record was generated
123 * @fmt: printf() format string for log record
124 * @...: Optional parameters, according to the format string @fmt
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400125 * Return: 0 if log record was emitted, -ve on error
Simon Glasse9c8d492017-12-04 13:48:24 -0700126 */
127int _log(enum log_category_t cat, enum log_level_t level, const char *file,
Simon Glassed4e9332019-01-07 16:44:19 -0700128 int line, const char *func, const char *fmt, ...)
129 __attribute__ ((format (__printf__, 6, 7)));
Simon Glasse9c8d492017-12-04 13:48:24 -0700130
Simon Glassfd429482019-09-25 08:56:23 -0600131static inline int _log_nop(enum log_category_t cat, enum log_level_t level,
132 const char *file, int line, const char *func,
133 const char *fmt, ...)
134 __attribute__ ((format (__printf__, 6, 7)));
135
136static inline int _log_nop(enum log_category_t cat, enum log_level_t level,
137 const char *file, int line, const char *func,
138 const char *fmt, ...)
139{
140 return 0;
141}
142
Simon Glasse9c8d492017-12-04 13:48:24 -0700143/* Define this at the top of a file to add a prefix to debug messages */
144#ifndef pr_fmt
145#define pr_fmt(fmt) fmt
146#endif
147
148/* Use a default category if this file does not supply one */
149#ifndef LOG_CATEGORY
150#define LOG_CATEGORY LOGC_NONE
151#endif
152
153/*
154 * This header may be including when CONFIG_LOG is disabled, in which case
155 * CONFIG_LOG_MAX_LEVEL is not defined. Add a check for this.
156 */
157#if CONFIG_IS_ENABLED(LOG)
158#define _LOG_MAX_LEVEL CONFIG_VAL(LOG_MAX_LEVEL)
Heinrich Schuchardt24967962021-01-04 08:02:54 +0100159#define log_emer(_fmt...) log(LOG_CATEGORY, LOGL_EMERG, ##_fmt)
160#define log_alert(_fmt...) log(LOG_CATEGORY, LOGL_ALERT, ##_fmt)
161#define log_crit(_fmt...) log(LOG_CATEGORY, LOGL_CRIT, ##_fmt)
Simon Glasscdd140a2018-10-01 11:55:06 -0600162#define log_err(_fmt...) log(LOG_CATEGORY, LOGL_ERR, ##_fmt)
163#define log_warning(_fmt...) log(LOG_CATEGORY, LOGL_WARNING, ##_fmt)
164#define log_notice(_fmt...) log(LOG_CATEGORY, LOGL_NOTICE, ##_fmt)
165#define log_info(_fmt...) log(LOG_CATEGORY, LOGL_INFO, ##_fmt)
166#define log_debug(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG, ##_fmt)
167#define log_content(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG_CONTENT, ##_fmt)
168#define log_io(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG_IO, ##_fmt)
Heinrich Schuchardt24967962021-01-04 08:02:54 +0100169#define log_cont(_fmt...) log(LOGC_CONT, LOGL_CONT, ##_fmt)
Simon Glasse9c8d492017-12-04 13:48:24 -0700170#else
171#define _LOG_MAX_LEVEL LOGL_INFO
Heinrich Schuchardt24967962021-01-04 08:02:54 +0100172#define log_emerg(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
173#define log_alert(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
174#define log_crit(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
Heinrich Schuchardt20fd2562020-02-26 21:48:17 +0100175#define log_err(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
176#define log_warning(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
177#define log_notice(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
178#define log_info(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
Heinrich Schuchardt24967962021-01-04 08:02:54 +0100179#define log_cont(_fmt, ...) printf(_fmt, ##__VA_ARGS__)
Heinrich Schuchardt20fd2562020-02-26 21:48:17 +0100180#define log_debug(_fmt, ...) debug(_fmt, ##__VA_ARGS__)
Simon Glassfd429482019-09-25 08:56:23 -0600181#define log_content(_fmt...) log_nop(LOG_CATEGORY, \
182 LOGL_DEBUG_CONTENT, ##_fmt)
183#define log_io(_fmt...) log_nop(LOG_CATEGORY, LOGL_DEBUG_IO, ##_fmt)
Simon Glasse9c8d492017-12-04 13:48:24 -0700184#endif
185
Simon Glass4d8d3052018-11-15 18:43:49 -0700186#if CONFIG_IS_ENABLED(LOG)
Simon Glassf9811e82019-02-16 20:24:37 -0700187#ifdef LOG_DEBUG
Simon Glass52d3df72020-09-12 11:13:34 -0600188#define _LOG_DEBUG LOGL_FORCE_DEBUG
Simon Glassf9811e82019-02-16 20:24:37 -0700189#else
190#define _LOG_DEBUG 0
191#endif
Simon Glass4d8d3052018-11-15 18:43:49 -0700192
Simon Glasse9c8d492017-12-04 13:48:24 -0700193/* Emit a log record if the level is less that the maximum */
194#define log(_cat, _level, _fmt, _args...) ({ \
195 int _l = _level; \
Simon Glass52d3df72020-09-12 11:13:34 -0600196 if (CONFIG_IS_ENABLED(LOG) && \
197 (_LOG_DEBUG != 0 || _l <= _LOG_MAX_LEVEL)) \
198 _log((enum log_category_t)(_cat), \
199 (enum log_level_t)(_l | _LOG_DEBUG), __FILE__, \
200 __LINE__, __func__, \
Simon Glasse9c8d492017-12-04 13:48:24 -0700201 pr_fmt(_fmt), ##_args); \
202 })
Simon Glass4d8d3052018-11-15 18:43:49 -0700203#else
204#define log(_cat, _level, _fmt, _args...)
205#endif
Simon Glasse9c8d492017-12-04 13:48:24 -0700206
Simon Glassfd429482019-09-25 08:56:23 -0600207#define log_nop(_cat, _level, _fmt, _args...) ({ \
208 int _l = _level; \
209 _log_nop((enum log_category_t)(_cat), _l, __FILE__, __LINE__, \
210 __func__, pr_fmt(_fmt), ##_args); \
211})
212
Simon Glass0e98b0a2017-12-04 13:48:20 -0700213#ifdef DEBUG
214#define _DEBUG 1
215#else
216#define _DEBUG 0
217#endif
218
219#ifdef CONFIG_SPL_BUILD
220#define _SPL_BUILD 1
221#else
222#define _SPL_BUILD 0
223#endif
224
Simon Glasse9c8d492017-12-04 13:48:24 -0700225#if !_DEBUG && CONFIG_IS_ENABLED(LOG)
226
227#define debug_cond(cond, fmt, args...) \
Heinrich Schuchardt51763652021-01-04 08:02:53 +0100228({ \
229 log(LOG_CATEGORY, LOGL_DEBUG, fmt, ##args); \
230})
Simon Glasse9c8d492017-12-04 13:48:24 -0700231
232#else /* _DEBUG */
233
Simon Glass0e98b0a2017-12-04 13:48:20 -0700234/*
235 * Output a debug text when condition "cond" is met. The "cond" should be
236 * computed by a preprocessor in the best case, allowing for the best
237 * optimization.
238 */
Heinrich Schuchardt51763652021-01-04 08:02:53 +0100239#define debug_cond(cond, fmt, args...) \
240({ \
241 if (cond) \
242 printf(pr_fmt(fmt), ##args); \
243})
Simon Glass0e98b0a2017-12-04 13:48:20 -0700244
Simon Glasse9c8d492017-12-04 13:48:24 -0700245#endif /* _DEBUG */
246
Simon Glass0e98b0a2017-12-04 13:48:20 -0700247/* Show a message if DEBUG is defined in a file */
248#define debug(fmt, args...) \
249 debug_cond(_DEBUG, fmt, ##args)
250
251/* Show a message if not in SPL */
252#define warn_non_spl(fmt, args...) \
253 debug_cond(!_SPL_BUILD, fmt, ##args)
254
255/*
256 * An assertion is run-time check done in debug mode only. If DEBUG is not
257 * defined then it is skipped. If DEBUG is defined and the assertion fails,
258 * then it calls panic*( which may or may not reset/halt U-Boot (see
259 * CONFIG_PANIC_HANG), It is hoped that all failing assertions are found
260 * before release, and after release it is hoped that they don't matter. But
261 * in any case these failing assertions cannot be fixed with a reset (which
262 * may just do the same assertion again).
263 */
264void __assert_fail(const char *assertion, const char *file, unsigned int line,
265 const char *function);
Heinrich Schuchardtb236f8c2019-07-27 20:21:06 +0200266
267/**
268 * assert() - assert expression is true
269 *
270 * If the expression x evaluates to false and _DEBUG evaluates to true, a panic
271 * message is written and the system stalls. The value of _DEBUG is set to true
272 * if DEBUG is defined before including common.h.
273 *
274 * The expression x is always executed irrespective of the value of _DEBUG.
275 *
276 * @x: expression to test
277 */
Simon Glass0e98b0a2017-12-04 13:48:20 -0700278#define assert(x) \
279 ({ if (!(x) && _DEBUG) \
280 __assert_fail(#x, __FILE__, __LINE__, __func__); })
281
Simon Glasscd01d2d2019-12-29 21:19:10 -0700282/*
283 * This one actually gets compiled in even without DEBUG. It doesn't include the
284 * full pathname as it may be huge. Only use this when the user should be
285 * warning, similar to BUG_ON() in linux.
286 *
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400287 * Return: true if assertion succeeded (condition is true), else false
Simon Glasscd01d2d2019-12-29 21:19:10 -0700288 */
289#define assert_noisy(x) \
290 ({ bool _val = (x); \
291 if (!_val) \
292 __assert_fail(#x, "?", __LINE__, __func__); \
293 _val; \
294 })
295
Simon Glass4d8d3052018-11-15 18:43:49 -0700296#if CONFIG_IS_ENABLED(LOG) && defined(CONFIG_LOG_ERROR_RETURN)
297/*
298 * Log an error return value, possibly with a message. Usage:
299 *
300 * return log_ret(fred_call());
301 *
302 * or:
303 *
304 * return log_msg_ret("fred failed", fred_call());
305 */
Simon Glass3707c6e2017-12-28 13:14:23 -0700306#define log_ret(_ret) ({ \
307 int __ret = (_ret); \
308 if (__ret < 0) \
309 log(LOG_CATEGORY, LOGL_ERR, "returning err=%d\n", __ret); \
310 __ret; \
311 })
Simon Glassb616cef2018-06-11 13:07:14 -0600312#define log_msg_ret(_msg, _ret) ({ \
313 int __ret = (_ret); \
314 if (__ret < 0) \
315 log(LOG_CATEGORY, LOGL_ERR, "%s: returning err=%d\n", _msg, \
316 __ret); \
317 __ret; \
318 })
Simon Glass3707c6e2017-12-28 13:14:23 -0700319#else
Simon Glass4d8d3052018-11-15 18:43:49 -0700320/* Non-logging versions of the above which just return the error code */
Simon Glass3707c6e2017-12-28 13:14:23 -0700321#define log_ret(_ret) (_ret)
Simon Glass4d8d3052018-11-15 18:43:49 -0700322#define log_msg_ret(_msg, _ret) ((void)(_msg), _ret)
Simon Glass3707c6e2017-12-28 13:14:23 -0700323#endif
324
Simon Glasse9c8d492017-12-04 13:48:24 -0700325/**
326 * struct log_rec - a single log record
327 *
328 * Holds information about a single record in the log
329 *
330 * Members marked as 'not allocated' are stored as pointers and the caller is
331 * responsible for making sure that the data pointed to is not overwritten.
Heinrich Schuchardt9e925d02020-11-30 09:04:48 +0100332 * Members marked as 'allocated' are allocated (e.g. via strdup()) by the log
Simon Glasse9c8d492017-12-04 13:48:24 -0700333 * system.
334 *
Simon Glass52d3df72020-09-12 11:13:34 -0600335 * TODO(sjg@chromium.org): Compress this struct down a bit to reduce space, e.g.
336 * a single u32 for cat, level, line and force_debug
337 *
Simon Glasse9c8d492017-12-04 13:48:24 -0700338 * @cat: Category, representing a uclass or part of U-Boot
339 * @level: Severity level, less severe is higher
Simon Glass52d3df72020-09-12 11:13:34 -0600340 * @force_debug: Force output of debug
Simon Glasse9c8d492017-12-04 13:48:24 -0700341 * @file: Name of file where the log record was generated (not allocated)
342 * @line: Line number where the log record was generated
343 * @func: Function where the log record was generated (not allocated)
344 * @msg: Log message (allocated)
345 */
346struct log_rec {
347 enum log_category_t cat;
348 enum log_level_t level;
Simon Glass52d3df72020-09-12 11:13:34 -0600349 bool force_debug;
Simon Glasse9c8d492017-12-04 13:48:24 -0700350 const char *file;
351 int line;
352 const char *func;
353 const char *msg;
354};
355
356struct log_device;
357
Simon Glassb4520302020-09-12 12:28:47 -0600358enum log_device_flags {
359 LOGDF_ENABLE = BIT(0), /* Device is enabled */
360};
361
Simon Glasse9c8d492017-12-04 13:48:24 -0700362/**
363 * struct log_driver - a driver which accepts and processes log records
364 *
365 * @name: Name of driver
Simon Glassb4520302020-09-12 12:28:47 -0600366 * @emit: Method to call to emit a log record via this device
367 * @flags: Initial value for flags (use LOGDF_ENABLE to enable on start-up)
Simon Glasse9c8d492017-12-04 13:48:24 -0700368 */
369struct log_driver {
370 const char *name;
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400371
Simon Glasse9c8d492017-12-04 13:48:24 -0700372 /**
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400373 * @emit: emit a log record
Simon Glasse9c8d492017-12-04 13:48:24 -0700374 *
375 * Called by the log system to pass a log record to a particular driver
376 * for processing. The filter is checked before calling this function.
377 */
378 int (*emit)(struct log_device *ldev, struct log_rec *rec);
Simon Glassb4520302020-09-12 12:28:47 -0600379 unsigned short flags;
Simon Glasse9c8d492017-12-04 13:48:24 -0700380};
381
382/**
383 * struct log_device - an instance of a log driver
384 *
385 * Since drivers are set up at build-time we need to have a separate device for
386 * the run-time aspects of drivers (currently just a list of filters to apply
387 * to records send to this device).
388 *
Heinrich Schuchardt9e925d02020-11-30 09:04:48 +0100389 * @next_filter_num: Sequence number of next filter filter added (0=no filters
Simon Glasse9c8d492017-12-04 13:48:24 -0700390 * yet). This increments with each new filter on the device, but never
391 * decrements
Simon Glassb4520302020-09-12 12:28:47 -0600392 * @flags: Flags for this filter (enum log_device_flags)
Simon Glasse9c8d492017-12-04 13:48:24 -0700393 * @drv: Pointer to driver for this device
394 * @filter_head: List of filters for this device
395 * @sibling_node: Next device in the list of all devices
396 */
397struct log_device {
Simon Glassb4520302020-09-12 12:28:47 -0600398 unsigned short next_filter_num;
399 unsigned short flags;
Simon Glasse9c8d492017-12-04 13:48:24 -0700400 struct log_driver *drv;
401 struct list_head filter_head;
402 struct list_head sibling_node;
403};
404
405enum {
406 LOGF_MAX_CATEGORIES = 5, /* maximum categories per filter */
407};
408
Sean Andersonfe3b1a22020-10-27 19:55:26 -0400409/**
410 * enum log_filter_flags - Flags which modify a filter
411 */
Simon Glasse9c8d492017-12-04 13:48:24 -0700412enum log_filter_flags {
Sean Andersonfe3b1a22020-10-27 19:55:26 -0400413 /** @LOGFF_HAS_CAT: Filter has a category list */
414 LOGFF_HAS_CAT = 1 << 0,
415 /** @LOGFF_DENY: Filter denies matching messages */
416 LOGFF_DENY = 1 << 1,
Sean Anderson40455a62020-10-27 19:55:30 -0400417 /** @LOGFF_LEVEL_MIN: Filter's level is a minimum, not a maximum */
418 LOGFF_LEVEL_MIN = 1 << 2,
Simon Glasse9c8d492017-12-04 13:48:24 -0700419};
420
421/**
Heinrich Schuchardt9e925d02020-11-30 09:04:48 +0100422 * struct log_filter - criteria to filter out log messages
Simon Glasse9c8d492017-12-04 13:48:24 -0700423 *
Sean Andersonfe3b1a22020-10-27 19:55:26 -0400424 * If a message matches all criteria, then it is allowed. If LOGFF_DENY is set,
425 * then it is denied instead.
426 *
Simon Glasse9c8d492017-12-04 13:48:24 -0700427 * @filter_num: Sequence number of this filter. This is returned when adding a
428 * new filter, and must be provided when removing a previously added
429 * filter.
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400430 * @flags: Flags for this filter (``LOGFF_...``)
Sean Andersonb66a9242020-10-27 19:55:21 -0400431 * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400432 * then all categories are permitted. Up to %LOGF_MAX_CATEGORIES entries
Simon Glasse9c8d492017-12-04 13:48:24 -0700433 * can be provided
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400434 * @level: Maximum (or minimum, if %LOGFF_MIN_LEVEL) log level to allow
Simon Glasse9c8d492017-12-04 13:48:24 -0700435 * @file_list: List of files to allow, separated by comma. If NULL then all
436 * files are permitted
437 * @sibling_node: Next filter in the list of filters for this log device
438 */
439struct log_filter {
440 int filter_num;
441 int flags;
442 enum log_category_t cat_list[LOGF_MAX_CATEGORIES];
Sean Anderson40455a62020-10-27 19:55:30 -0400443 enum log_level_t level;
Simon Glasse9c8d492017-12-04 13:48:24 -0700444 const char *file_list;
445 struct list_head sibling_node;
446};
447
448#define LOG_DRIVER(_name) \
449 ll_entry_declare(struct log_driver, _name, log_driver)
450
Simon Glass3d03ab62020-09-12 12:28:49 -0600451/* Get a pointer to a given driver */
452#define LOG_GET_DRIVER(__name) \
453 ll_entry_get(struct log_driver, __name, log_driver)
454
Simon Glassf941c8d2017-12-28 13:14:16 -0700455/**
456 * log_get_cat_name() - Get the name of a category
457 *
458 * @cat: Category to look up
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400459 * Return: category name (which may be a uclass driver name) if found, or
Sean Anderson1c593a12020-10-27 19:55:34 -0400460 * "<invalid>" if invalid, or "<missing>" if not found. All error
461 * responses begin with '<'.
Simon Glassf941c8d2017-12-28 13:14:16 -0700462 */
463const char *log_get_cat_name(enum log_category_t cat);
464
465/**
466 * log_get_cat_by_name() - Look up a category by name
467 *
468 * @name: Name to look up
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400469 * Return: Category, or %LOGC_NONE if not found
Simon Glassf941c8d2017-12-28 13:14:16 -0700470 */
471enum log_category_t log_get_cat_by_name(const char *name);
472
473/**
474 * log_get_level_name() - Get the name of a log level
475 *
476 * @level: Log level to look up
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400477 * Return: Log level name (in ALL CAPS)
Simon Glassf941c8d2017-12-28 13:14:16 -0700478 */
479const char *log_get_level_name(enum log_level_t level);
480
481/**
482 * log_get_level_by_name() - Look up a log level by name
483 *
484 * @name: Name to look up
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400485 * Return: Log level, or %LOGL_NONE if not found
Simon Glassf941c8d2017-12-28 13:14:16 -0700486 */
487enum log_level_t log_get_level_by_name(const char *name);
488
Sean Anderson3102c1d2020-10-27 19:55:24 -0400489/**
490 * log_device_find_by_name() - Look up a log device by its driver's name
491 *
492 * @drv_name: Name of the driver
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400493 * Return: the log device, or %NULL if not found
Sean Anderson3102c1d2020-10-27 19:55:24 -0400494 */
495struct log_device *log_device_find_by_name(const char *drv_name);
496
497/**
498 * log_has_cat() - check if a log category exists within a list
499 *
500 * @cat_list: List of categories to check, at most %LOGF_MAX_CATEGORIES entries
501 * long, terminated by %LC_END if fewer
502 * @cat: Category to search for
503 *
504 * Return: ``true`` if @cat is in @cat_list, else ``false``
505 */
506bool log_has_cat(enum log_category_t cat_list[], enum log_category_t cat);
507
508/**
509 * log_has_file() - check if a file is with a list
510 *
511 * @file_list: List of files to check, separated by comma
512 * @file: File to check for. This string is matched against the end of each
513 * file in the list, i.e. ignoring any preceding path. The list is
514 * intended to consist of relative pathnames, e.g. common/main.c,cmd/log.c
515 *
516 * Return: ``true`` if @file is in @file_list, else ``false``
517 */
518bool log_has_file(const char *file_list, const char *file);
519
Simon Glass3b73e8d2017-12-28 13:14:17 -0700520/* Log format flags (bit numbers) for gd->log_fmt. See log_fmt_chars */
521enum log_fmt {
522 LOGF_CAT = 0,
523 LOGF_LEVEL,
524 LOGF_FILE,
525 LOGF_LINE,
526 LOGF_FUNC,
527 LOGF_MSG,
528
529 LOGF_COUNT,
Simon Glass3b73e8d2017-12-28 13:14:17 -0700530 LOGF_ALL = 0x3f,
531};
532
Simon Glassef11ed82017-12-04 13:48:27 -0700533/* Handle the 'log test' command */
Simon Glass09140112020-05-10 11:40:03 -0600534int do_log_test(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
Simon Glassef11ed82017-12-04 13:48:27 -0700535
Simon Glasse9c8d492017-12-04 13:48:24 -0700536/**
Sean Andersona02f84e2020-10-27 19:55:25 -0400537 * log_add_filter_flags() - Add a new filter to a log device, specifying flags
538 *
539 * @drv_name: Driver name to add the filter to (since each driver only has a
540 * single device)
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400541 * @flags: Flags for this filter (``LOGFF_...``)
Sean Andersona02f84e2020-10-27 19:55:25 -0400542 * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400543 * then all categories are permitted. Up to %LOGF_MAX_CATEGORIES entries
Sean Andersona02f84e2020-10-27 19:55:25 -0400544 * can be provided
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400545 * @level: Maximum (or minimum, if %LOGFF_LEVEL_MIN) log level to allow
Sean Andersona02f84e2020-10-27 19:55:25 -0400546 * @file_list: List of files to allow, separated by comma. If NULL then all
547 * files are permitted
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400548 * Return:
549 * the sequence number of the new filter (>=0) if the filter was added, or a
550 * -ve value on error
Sean Andersona02f84e2020-10-27 19:55:25 -0400551 */
552int log_add_filter_flags(const char *drv_name, enum log_category_t cat_list[],
Sean Anderson40455a62020-10-27 19:55:30 -0400553 enum log_level_t level, const char *file_list,
Sean Andersona02f84e2020-10-27 19:55:25 -0400554 int flags);
555
556/**
Simon Glasse9c8d492017-12-04 13:48:24 -0700557 * log_add_filter() - Add a new filter to a log device
558 *
559 * @drv_name: Driver name to add the filter to (since each driver only has a
560 * single device)
Sean Andersonb66a9242020-10-27 19:55:21 -0400561 * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400562 * then all categories are permitted. Up to %LOGF_MAX_CATEGORIES entries
Simon Glasse9c8d492017-12-04 13:48:24 -0700563 * can be provided
564 * @max_level: Maximum log level to allow
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400565 * @file_list: List of files to allow, separated by comma. If %NULL then all
Simon Glasse9c8d492017-12-04 13:48:24 -0700566 * files are permitted
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400567 * Return:
568 * the sequence number of the new filter (>=0) if the filter was added, or a
569 * -ve value on error
Simon Glasse9c8d492017-12-04 13:48:24 -0700570 */
Sean Andersona02f84e2020-10-27 19:55:25 -0400571static inline int log_add_filter(const char *drv_name,
572 enum log_category_t cat_list[],
573 enum log_level_t max_level,
574 const char *file_list)
575{
576 return log_add_filter_flags(drv_name, cat_list, max_level, file_list,
577 0);
578}
Simon Glasse9c8d492017-12-04 13:48:24 -0700579
580/**
581 * log_remove_filter() - Remove a filter from a log device
582 *
583 * @drv_name: Driver name to remove the filter from (since each driver only has
584 * a single device)
585 * @filter_num: Filter number to remove (as returned by log_add_filter())
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400586 * Return:
587 * 0 if the filter was removed, -%ENOENT if either the driver or the filter
588 * number was not found
Simon Glasse9c8d492017-12-04 13:48:24 -0700589 */
590int log_remove_filter(const char *drv_name, int filter_num);
591
Simon Glass3d03ab62020-09-12 12:28:49 -0600592/**
593 * log_device_set_enable() - Enable or disable a log device
594 *
595 * Devices are referenced by their driver, so use LOG_GET_DRIVER(name) to pass
596 * the driver to this function. For example if the driver is declared with
597 * LOG_DRIVER(wibble) then pass LOG_GET_DRIVER(wibble) here.
598 *
599 * @drv: Driver of device to enable
600 * @enable: true to enable, false to disable
601 * @return 0 if OK, -ENOENT if the driver was not found
602 */
603int log_device_set_enable(struct log_driver *drv, bool enable);
604
Simon Glasse9c8d492017-12-04 13:48:24 -0700605#if CONFIG_IS_ENABLED(LOG)
606/**
607 * log_init() - Set up the log system ready for use
608 *
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400609 * Return: 0 if OK, -%ENOMEM if out of memory
Simon Glasse9c8d492017-12-04 13:48:24 -0700610 */
611int log_init(void);
612#else
613static inline int log_init(void)
614{
615 return 0;
616}
617#endif
618
Heinrich Schuchardt3c21d772020-06-17 21:52:44 +0200619/**
620 * log_get_default_format() - get default log format
621 *
622 * The default log format is configurable via
Sean Anderson00ebb7f2020-10-27 19:55:40 -0400623 * %CONFIG_LOGF_FILE, %CONFIG_LOGF_LINE, and %CONFIG_LOGF_FUNC.
Heinrich Schuchardt3c21d772020-06-17 21:52:44 +0200624 *
625 * Return: default log format
626 */
627static inline int log_get_default_format(void)
628{
629 return BIT(LOGF_MSG) |
630 (IS_ENABLED(CONFIG_LOGF_FILE) ? BIT(LOGF_FILE) : 0) |
631 (IS_ENABLED(CONFIG_LOGF_LINE) ? BIT(LOGF_LINE) : 0) |
632 (IS_ENABLED(CONFIG_LOGF_FUNC) ? BIT(LOGF_FUNC) : 0);
633}
634
Simon Glass0e98b0a2017-12-04 13:48:20 -0700635#endif