]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
0e98b0a6 SG |
2 | /* |
3 | * Logging support | |
4 | * | |
5 | * Copyright (c) 2017 Google, Inc | |
6 | * Written by Simon Glass <[email protected]> | |
0e98b0a6 SG |
7 | */ |
8 | ||
9 | #ifndef __LOG_H | |
10 | #define __LOG_H | |
11 | ||
90526e9f | 12 | #include <stdio.h> |
09140113 | 13 | #include <linker_lists.h> |
e9c8d49d | 14 | #include <dm/uclass-id.h> |
3c21d773 | 15 | #include <linux/bitops.h> |
e9c8d49d SG |
16 | #include <linux/list.h> |
17 | ||
09140113 SG |
18 | struct cmd_tbl; |
19 | ||
00ebb7fe SA |
20 | /** |
21 | * enum log_level_t - Log levels supported, ranging from most to least important | |
22 | */ | |
e9c8d49d | 23 | enum log_level_t { |
00ebb7fe SA |
24 | /** @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, | |
9e925d0c | 32 | /** @LOGL_WARNING: Warning may prevent optimal operation */ |
00ebb7fe SA |
33 | 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, | |
44 | ||
45 | /** @LOGL_COUNT: Total number of valid log levels */ | |
e9c8d49d | 46 | LOGL_COUNT, |
00ebb7fe | 47 | /** @LOGL_NONE: Used to indicate that there is no valid log level */ |
f941c8d7 SG |
48 | LOGL_NONE, |
49 | ||
00ebb7fe SA |
50 | /** @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, | |
52d3df7f | 54 | |
00ebb7fe | 55 | /** @LOGL_FIRST: The first, most-important log level */ |
e9c8d49d | 56 | LOGL_FIRST = LOGL_EMERG, |
00ebb7fe | 57 | /** @LOGL_MAX: The last, least-important log level */ |
f941c8d7 | 58 | LOGL_MAX = LOGL_DEBUG_IO, |
00ebb7fe SA |
59 | /** @LOGL_CONT: Use same log level as in previous call */ |
60 | LOGL_CONT = -1, | |
e9c8d49d SG |
61 | }; |
62 | ||
63 | /** | |
00ebb7fe SA |
64 | * 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. | |
8021296a SG |
68 | * |
69 | * Remember to update log_cat_name[] after adding a new category. | |
e9c8d49d SG |
70 | */ |
71 | enum log_category_t { | |
00ebb7fe | 72 | /** @LOGC_FIRST: First log category */ |
e9c8d49d SG |
73 | LOGC_FIRST = 0, /* First part mirrors UCLASS_... */ |
74 | ||
00ebb7fe | 75 | /** @LOGC_NONE: Default log category */ |
0bf96459 | 76 | LOGC_NONE = UCLASS_COUNT, /* First number is after all uclasses */ |
00ebb7fe SA |
77 | /** @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) */ | |
7ca2850c | 98 | LOGC_ACPI, |
d61e7841 SG |
99 | /** @LOGC_BOOT: Related to boot process / boot image processing */ |
100 | LOGC_BOOT, | |
87a5d1b5 SG |
101 | /** @LOGC_EVENT: Related to event and event handling */ |
102 | LOGC_EVENT, | |
4f6daaca SG |
103 | /** @LOGC_FS: Related to filesystems */ |
104 | LOGC_FS, | |
c98cb512 SG |
105 | /** @LOGC_EXPO: Related to expo handling */ |
106 | LOGC_EXPO, | |
90afded4 SG |
107 | /** @LOGC_CONSOLE: Related to the console and stdio */ |
108 | LOGC_CONSOLE, | |
12d583b3 SG |
109 | /** @LOGC_TEST: Related to testing */ |
110 | LOGC_TEST, | |
00ebb7fe SA |
111 | /** @LOGC_COUNT: Number of log categories */ |
112 | LOGC_COUNT, | |
113 | /** @LOGC_END: Sentinel value for lists of log categories */ | |
114 | LOGC_END, | |
115 | /** @LOGC_CONT: Use same category as in previous call */ | |
116 | LOGC_CONT = -1, | |
e9c8d49d SG |
117 | }; |
118 | ||
119 | /* Helper to cast a uclass ID to a log category */ | |
120 | static inline int log_uc_cat(enum uclass_id id) | |
121 | { | |
122 | return (enum log_category_t)id; | |
123 | } | |
124 | ||
125 | /** | |
126 | * _log() - Internal function to emit a new log record | |
127 | * | |
128 | * @cat: Category of log record (indicating which subsystem generated it) | |
129 | * @level: Level of log record (indicating its severity) | |
130 | * @file: File name of file where log record was generated | |
131 | * @line: Line number in file where log record was generated | |
dfc0acd0 | 132 | * @func: Function where log record was generated, NULL if not known |
e9c8d49d SG |
133 | * @fmt: printf() format string for log record |
134 | * @...: Optional parameters, according to the format string @fmt | |
00ebb7fe | 135 | * Return: 0 if log record was emitted, -ve on error |
e9c8d49d SG |
136 | */ |
137 | int _log(enum log_category_t cat, enum log_level_t level, const char *file, | |
ed4e933d SG |
138 | int line, const char *func, const char *fmt, ...) |
139 | __attribute__ ((format (__printf__, 6, 7))); | |
e9c8d49d | 140 | |
58b4b713 SG |
141 | /** |
142 | * _log_buffer - Internal function to print data buffer in hex and ascii form | |
143 | * | |
144 | * @cat: Category of log record (indicating which subsystem generated it) | |
145 | * @level: Level of log record (indicating its severity) | |
146 | * @file: File name of file where log record was generated | |
147 | * @line: Line number in file where log record was generated | |
dfc0acd0 | 148 | * @func: Function where log record was generated, NULL if not known |
58b4b713 SG |
149 | * @addr: Starting address to display at start of line |
150 | * @data: pointer to data buffer | |
151 | * @width: data value width. May be 1, 2, or 4. | |
152 | * @count: number of values to display | |
153 | * @linelen: Number of values to print per line; specify 0 for default length | |
154 | */ | |
155 | int _log_buffer(enum log_category_t cat, enum log_level_t level, | |
156 | const char *file, int line, const char *func, ulong addr, | |
157 | const void *data, uint width, uint count, uint linelen); | |
158 | ||
e9c8d49d SG |
159 | /* Define this at the top of a file to add a prefix to debug messages */ |
160 | #ifndef pr_fmt | |
161 | #define pr_fmt(fmt) fmt | |
162 | #endif | |
163 | ||
164 | /* Use a default category if this file does not supply one */ | |
165 | #ifndef LOG_CATEGORY | |
166 | #define LOG_CATEGORY LOGC_NONE | |
167 | #endif | |
168 | ||
169 | /* | |
170 | * This header may be including when CONFIG_LOG is disabled, in which case | |
171 | * CONFIG_LOG_MAX_LEVEL is not defined. Add a check for this. | |
172 | */ | |
173 | #if CONFIG_IS_ENABLED(LOG) | |
174 | #define _LOG_MAX_LEVEL CONFIG_VAL(LOG_MAX_LEVEL) | |
e1cbd916 SG |
175 | #else |
176 | #define _LOG_MAX_LEVEL LOGL_INFO | |
177 | #endif | |
178 | ||
24967965 HS |
179 | #define log_emer(_fmt...) log(LOG_CATEGORY, LOGL_EMERG, ##_fmt) |
180 | #define log_alert(_fmt...) log(LOG_CATEGORY, LOGL_ALERT, ##_fmt) | |
181 | #define log_crit(_fmt...) log(LOG_CATEGORY, LOGL_CRIT, ##_fmt) | |
cdd140af SG |
182 | #define log_err(_fmt...) log(LOG_CATEGORY, LOGL_ERR, ##_fmt) |
183 | #define log_warning(_fmt...) log(LOG_CATEGORY, LOGL_WARNING, ##_fmt) | |
184 | #define log_notice(_fmt...) log(LOG_CATEGORY, LOGL_NOTICE, ##_fmt) | |
185 | #define log_info(_fmt...) log(LOG_CATEGORY, LOGL_INFO, ##_fmt) | |
186 | #define log_debug(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG, ##_fmt) | |
187 | #define log_content(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG_CONTENT, ##_fmt) | |
188 | #define log_io(_fmt...) log(LOG_CATEGORY, LOGL_DEBUG_IO, ##_fmt) | |
24967965 | 189 | #define log_cont(_fmt...) log(LOGC_CONT, LOGL_CONT, ##_fmt) |
e9c8d49d | 190 | |
f9811e85 | 191 | #ifdef LOG_DEBUG |
52d3df7f | 192 | #define _LOG_DEBUG LOGL_FORCE_DEBUG |
54e89a8b PD |
193 | #ifndef DEBUG |
194 | #define DEBUG | |
195 | #endif | |
f9811e85 SG |
196 | #else |
197 | #define _LOG_DEBUG 0 | |
198 | #endif | |
4d8d3056 | 199 | |
dfc0acd0 SG |
200 | #ifdef CONFIG_LOGF_FUNC |
201 | #define _log_func __func__ | |
202 | #else | |
203 | #define _log_func NULL | |
204 | #endif | |
205 | ||
e1cbd916 SG |
206 | #if CONFIG_IS_ENABLED(LOG) |
207 | ||
e9c8d49d SG |
208 | /* Emit a log record if the level is less that the maximum */ |
209 | #define log(_cat, _level, _fmt, _args...) ({ \ | |
210 | int _l = _level; \ | |
e1cbd916 | 211 | if (_LOG_DEBUG != 0 || _l <= _LOG_MAX_LEVEL) \ |
52d3df7f SG |
212 | _log((enum log_category_t)(_cat), \ |
213 | (enum log_level_t)(_l | _LOG_DEBUG), __FILE__, \ | |
dfc0acd0 | 214 | __LINE__, _log_func, \ |
e9c8d49d SG |
215 | pr_fmt(_fmt), ##_args); \ |
216 | }) | |
58b4b713 SG |
217 | |
218 | /* Emit a dump if the level is less that the maximum */ | |
219 | #define log_buffer(_cat, _level, _addr, _data, _width, _count, _linelen) ({ \ | |
220 | int _l = _level; \ | |
221 | if (_LOG_DEBUG != 0 || _l <= _LOG_MAX_LEVEL) \ | |
222 | _log_buffer((enum log_category_t)(_cat), \ | |
223 | (enum log_level_t)(_l | _LOG_DEBUG), __FILE__, \ | |
dfc0acd0 | 224 | __LINE__, _log_func, _addr, _data, \ |
58b4b713 SG |
225 | _width, _count, _linelen); \ |
226 | }) | |
4d8d3056 | 227 | #else |
e1cbd916 SG |
228 | |
229 | /* Note: _LOG_DEBUG != 0 avoids a warning with clang */ | |
230 | #define log(_cat, _level, _fmt, _args...) ({ \ | |
231 | int _l = _level; \ | |
232 | if (_LOG_DEBUG != 0 || _l <= LOGL_INFO || \ | |
233 | (_DEBUG && _l == LOGL_DEBUG)) \ | |
234 | printf(_fmt, ##_args); \ | |
235 | }) | |
58b4b713 SG |
236 | |
237 | #define log_buffer(_cat, _level, _addr, _data, _width, _count, _linelen) ({ \ | |
238 | int _l = _level; \ | |
239 | if (_LOG_DEBUG != 0 || _l <= LOGL_INFO || \ | |
240 | (_DEBUG && _l == LOGL_DEBUG)) \ | |
241 | print_buffer(_addr, _data, _width, _count, _linelen); \ | |
242 | }) | |
4d8d3056 | 243 | #endif |
e9c8d49d | 244 | |
0e98b0a6 SG |
245 | #ifdef DEBUG |
246 | #define _DEBUG 1 | |
247 | #else | |
248 | #define _DEBUG 0 | |
249 | #endif | |
250 | ||
a64e7d73 SG |
251 | #ifdef CONFIG_XPL_BUILD |
252 | #define _XPL_BUILD 1 | |
0e98b0a6 | 253 | #else |
a64e7d73 | 254 | #define _XPL_BUILD 0 |
0e98b0a6 SG |
255 | #endif |
256 | ||
4ce5b810 | 257 | #if CONFIG_IS_ENABLED(LOG) |
e9c8d49d | 258 | |
4ce5b810 SG |
259 | #define debug_cond(cond, fmt, args...) \ |
260 | ({ \ | |
261 | if (cond) \ | |
262 | log(LOG_CATEGORY, \ | |
263 | (enum log_level_t)(LOGL_FORCE_DEBUG | _LOG_DEBUG), \ | |
264 | fmt, ##args); \ | |
5176365a | 265 | }) |
e9c8d49d SG |
266 | |
267 | #else /* _DEBUG */ | |
268 | ||
0e98b0a6 SG |
269 | /* |
270 | * Output a debug text when condition "cond" is met. The "cond" should be | |
271 | * computed by a preprocessor in the best case, allowing for the best | |
272 | * optimization. | |
273 | */ | |
5176365a HS |
274 | #define debug_cond(cond, fmt, args...) \ |
275 | ({ \ | |
276 | if (cond) \ | |
277 | printf(pr_fmt(fmt), ##args); \ | |
278 | }) | |
0e98b0a6 | 279 | |
e9c8d49d SG |
280 | #endif /* _DEBUG */ |
281 | ||
0e98b0a6 SG |
282 | /* Show a message if DEBUG is defined in a file */ |
283 | #define debug(fmt, args...) \ | |
284 | debug_cond(_DEBUG, fmt, ##args) | |
285 | ||
a64e7d73 SG |
286 | /* Show a message if not in xPL */ |
287 | #define warn_non_xpl(fmt, args...) \ | |
288 | debug_cond(!_XPL_BUILD, fmt, ##args) | |
0e98b0a6 SG |
289 | |
290 | /* | |
291 | * An assertion is run-time check done in debug mode only. If DEBUG is not | |
292 | * defined then it is skipped. If DEBUG is defined and the assertion fails, | |
293 | * then it calls panic*( which may or may not reset/halt U-Boot (see | |
294 | * CONFIG_PANIC_HANG), It is hoped that all failing assertions are found | |
295 | * before release, and after release it is hoped that they don't matter. But | |
296 | * in any case these failing assertions cannot be fixed with a reset (which | |
297 | * may just do the same assertion again). | |
298 | */ | |
299 | void __assert_fail(const char *assertion, const char *file, unsigned int line, | |
300 | const char *function); | |
b236f8c0 HS |
301 | |
302 | /** | |
303 | * assert() - assert expression is true | |
304 | * | |
305 | * If the expression x evaluates to false and _DEBUG evaluates to true, a panic | |
306 | * message is written and the system stalls. The value of _DEBUG is set to true | |
307 | * if DEBUG is defined before including common.h. | |
308 | * | |
309 | * The expression x is always executed irrespective of the value of _DEBUG. | |
310 | * | |
311 | * @x: expression to test | |
312 | */ | |
0e98b0a6 SG |
313 | #define assert(x) \ |
314 | ({ if (!(x) && _DEBUG) \ | |
315 | __assert_fail(#x, __FILE__, __LINE__, __func__); }) | |
316 | ||
cd01d2d5 SG |
317 | /* |
318 | * This one actually gets compiled in even without DEBUG. It doesn't include the | |
319 | * full pathname as it may be huge. Only use this when the user should be | |
320 | * warning, similar to BUG_ON() in linux. | |
321 | * | |
00ebb7fe | 322 | * Return: true if assertion succeeded (condition is true), else false |
cd01d2d5 SG |
323 | */ |
324 | #define assert_noisy(x) \ | |
325 | ({ bool _val = (x); \ | |
326 | if (!_val) \ | |
dfc0acd0 | 327 | __assert_fail(#x, "?", __LINE__, _log_func); \ |
cd01d2d5 SG |
328 | _val; \ |
329 | }) | |
330 | ||
4d8d3056 SG |
331 | #if CONFIG_IS_ENABLED(LOG) && defined(CONFIG_LOG_ERROR_RETURN) |
332 | /* | |
333 | * Log an error return value, possibly with a message. Usage: | |
334 | * | |
335 | * return log_ret(fred_call()); | |
336 | * | |
337 | * or: | |
338 | * | |
b7f134ee SG |
339 | * return log_msg_ret("get", fred_call()); |
340 | * | |
341 | * It is recommended to use <= 3 characters for the name since this will only | |
342 | * use 4 bytes in rodata | |
4d8d3056 | 343 | */ |
3707c6ee SG |
344 | #define log_ret(_ret) ({ \ |
345 | int __ret = (_ret); \ | |
346 | if (__ret < 0) \ | |
347 | log(LOG_CATEGORY, LOGL_ERR, "returning err=%d\n", __ret); \ | |
348 | __ret; \ | |
349 | }) | |
b616cef9 SG |
350 | #define log_msg_ret(_msg, _ret) ({ \ |
351 | int __ret = (_ret); \ | |
352 | if (__ret < 0) \ | |
353 | log(LOG_CATEGORY, LOGL_ERR, "%s: returning err=%d\n", _msg, \ | |
354 | __ret); \ | |
355 | __ret; \ | |
356 | }) | |
7bd06587 SG |
357 | |
358 | /* | |
359 | * Similar to the above, but any non-zero value is consider an error, not just | |
360 | * values less than 0. | |
361 | */ | |
362 | #define log_retz(_ret) ({ \ | |
363 | int __ret = (_ret); \ | |
364 | if (__ret) \ | |
365 | log(LOG_CATEGORY, LOGL_ERR, "returning err=%d\n", __ret); \ | |
366 | __ret; \ | |
367 | }) | |
368 | #define log_msg_retz(_msg, _ret) ({ \ | |
369 | int __ret = (_ret); \ | |
370 | if (__ret) \ | |
371 | log(LOG_CATEGORY, LOGL_ERR, "%s: returning err=%d\n", _msg, \ | |
372 | __ret); \ | |
373 | __ret; \ | |
374 | }) | |
3707c6ee | 375 | #else |
4d8d3056 | 376 | /* Non-logging versions of the above which just return the error code */ |
3707c6ee | 377 | #define log_ret(_ret) (_ret) |
4d8d3056 | 378 | #define log_msg_ret(_msg, _ret) ((void)(_msg), _ret) |
7bd06587 SG |
379 | #define log_retz(_ret) (_ret) |
380 | #define log_msg_retz(_msg, _ret) ((void)(_msg), _ret) | |
3707c6ee SG |
381 | #endif |
382 | ||
79d5983b SG |
383 | /** * enum log_rec_flags - Flags for a log record */ |
384 | enum log_rec_flags { | |
385 | /** @LOGRECF_FORCE_DEBUG: Force output of debug record */ | |
386 | LOGRECF_FORCE_DEBUG = BIT(0), | |
9ad7a6c2 SG |
387 | /** @LOGRECF_CONT: Continuation of previous log record */ |
388 | LOGRECF_CONT = BIT(1), | |
79d5983b SG |
389 | }; |
390 | ||
e9c8d49d SG |
391 | /** |
392 | * struct log_rec - a single log record | |
393 | * | |
394 | * Holds information about a single record in the log | |
395 | * | |
396 | * Members marked as 'not allocated' are stored as pointers and the caller is | |
397 | * responsible for making sure that the data pointed to is not overwritten. | |
9e925d0c | 398 | * Members marked as 'allocated' are allocated (e.g. via strdup()) by the log |
e9c8d49d SG |
399 | * system. |
400 | * | |
52d3df7f SG |
401 | * TODO([email protected]): Compress this struct down a bit to reduce space, e.g. |
402 | * a single u32 for cat, level, line and force_debug | |
403 | * | |
e9c8d49d SG |
404 | * @cat: Category, representing a uclass or part of U-Boot |
405 | * @level: Severity level, less severe is higher | |
e9c8d49d | 406 | * @line: Line number where the log record was generated |
79d5983b SG |
407 | * @flags: Flags for log record (enum log_rec_flags) |
408 | * @file: Name of file where the log record was generated (not allocated) | |
e9c8d49d SG |
409 | * @func: Function where the log record was generated (not allocated) |
410 | * @msg: Log message (allocated) | |
411 | */ | |
412 | struct log_rec { | |
413 | enum log_category_t cat; | |
414 | enum log_level_t level; | |
79d5983b SG |
415 | u16 line; |
416 | u8 flags; | |
e9c8d49d | 417 | const char *file; |
e9c8d49d SG |
418 | const char *func; |
419 | const char *msg; | |
420 | }; | |
421 | ||
422 | struct log_device; | |
423 | ||
b4520300 SG |
424 | enum log_device_flags { |
425 | LOGDF_ENABLE = BIT(0), /* Device is enabled */ | |
426 | }; | |
427 | ||
e9c8d49d SG |
428 | /** |
429 | * struct log_driver - a driver which accepts and processes log records | |
430 | * | |
431 | * @name: Name of driver | |
b4520300 SG |
432 | * @emit: Method to call to emit a log record via this device |
433 | * @flags: Initial value for flags (use LOGDF_ENABLE to enable on start-up) | |
e9c8d49d SG |
434 | */ |
435 | struct log_driver { | |
436 | const char *name; | |
00ebb7fe | 437 | |
e9c8d49d | 438 | /** |
00ebb7fe | 439 | * @emit: emit a log record |
e9c8d49d SG |
440 | * |
441 | * Called by the log system to pass a log record to a particular driver | |
442 | * for processing. The filter is checked before calling this function. | |
443 | */ | |
444 | int (*emit)(struct log_device *ldev, struct log_rec *rec); | |
b4520300 | 445 | unsigned short flags; |
e9c8d49d SG |
446 | }; |
447 | ||
448 | /** | |
449 | * struct log_device - an instance of a log driver | |
450 | * | |
451 | * Since drivers are set up at build-time we need to have a separate device for | |
452 | * the run-time aspects of drivers (currently just a list of filters to apply | |
453 | * to records send to this device). | |
454 | * | |
9e925d0c | 455 | * @next_filter_num: Sequence number of next filter filter added (0=no filters |
e9c8d49d SG |
456 | * yet). This increments with each new filter on the device, but never |
457 | * decrements | |
b4520300 | 458 | * @flags: Flags for this filter (enum log_device_flags) |
e9c8d49d SG |
459 | * @drv: Pointer to driver for this device |
460 | * @filter_head: List of filters for this device | |
461 | * @sibling_node: Next device in the list of all devices | |
462 | */ | |
463 | struct log_device { | |
b4520300 SG |
464 | unsigned short next_filter_num; |
465 | unsigned short flags; | |
e9c8d49d SG |
466 | struct log_driver *drv; |
467 | struct list_head filter_head; | |
468 | struct list_head sibling_node; | |
469 | }; | |
470 | ||
471 | enum { | |
472 | LOGF_MAX_CATEGORIES = 5, /* maximum categories per filter */ | |
473 | }; | |
474 | ||
fe3b1a2d SA |
475 | /** |
476 | * enum log_filter_flags - Flags which modify a filter | |
477 | */ | |
e9c8d49d | 478 | enum log_filter_flags { |
fe3b1a2d SA |
479 | /** @LOGFF_HAS_CAT: Filter has a category list */ |
480 | LOGFF_HAS_CAT = 1 << 0, | |
481 | /** @LOGFF_DENY: Filter denies matching messages */ | |
482 | LOGFF_DENY = 1 << 1, | |
40455a69 SA |
483 | /** @LOGFF_LEVEL_MIN: Filter's level is a minimum, not a maximum */ |
484 | LOGFF_LEVEL_MIN = 1 << 2, | |
e9c8d49d SG |
485 | }; |
486 | ||
487 | /** | |
9e925d0c | 488 | * struct log_filter - criteria to filter out log messages |
e9c8d49d | 489 | * |
fe3b1a2d SA |
490 | * If a message matches all criteria, then it is allowed. If LOGFF_DENY is set, |
491 | * then it is denied instead. | |
492 | * | |
e9c8d49d SG |
493 | * @filter_num: Sequence number of this filter. This is returned when adding a |
494 | * new filter, and must be provided when removing a previously added | |
495 | * filter. | |
00ebb7fe | 496 | * @flags: Flags for this filter (``LOGFF_...``) |
b66a924f | 497 | * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty |
00ebb7fe | 498 | * then all categories are permitted. Up to %LOGF_MAX_CATEGORIES entries |
e9c8d49d | 499 | * can be provided |
00ebb7fe | 500 | * @level: Maximum (or minimum, if %LOGFF_MIN_LEVEL) log level to allow |
e9c8d49d SG |
501 | * @file_list: List of files to allow, separated by comma. If NULL then all |
502 | * files are permitted | |
503 | * @sibling_node: Next filter in the list of filters for this log device | |
504 | */ | |
505 | struct log_filter { | |
506 | int filter_num; | |
507 | int flags; | |
508 | enum log_category_t cat_list[LOGF_MAX_CATEGORIES]; | |
40455a69 | 509 | enum log_level_t level; |
e9c8d49d SG |
510 | const char *file_list; |
511 | struct list_head sibling_node; | |
512 | }; | |
513 | ||
514 | #define LOG_DRIVER(_name) \ | |
515 | ll_entry_declare(struct log_driver, _name, log_driver) | |
516 | ||
3d03ab63 SG |
517 | /* Get a pointer to a given driver */ |
518 | #define LOG_GET_DRIVER(__name) \ | |
519 | ll_entry_get(struct log_driver, __name, log_driver) | |
520 | ||
f941c8d7 SG |
521 | /** |
522 | * log_get_cat_name() - Get the name of a category | |
523 | * | |
524 | * @cat: Category to look up | |
00ebb7fe | 525 | * Return: category name (which may be a uclass driver name) if found, or |
1c593a10 SA |
526 | * "<invalid>" if invalid, or "<missing>" if not found. All error |
527 | * responses begin with '<'. | |
f941c8d7 SG |
528 | */ |
529 | const char *log_get_cat_name(enum log_category_t cat); | |
530 | ||
531 | /** | |
532 | * log_get_cat_by_name() - Look up a category by name | |
533 | * | |
534 | * @name: Name to look up | |
00ebb7fe | 535 | * Return: Category, or %LOGC_NONE if not found |
f941c8d7 SG |
536 | */ |
537 | enum log_category_t log_get_cat_by_name(const char *name); | |
538 | ||
539 | /** | |
540 | * log_get_level_name() - Get the name of a log level | |
541 | * | |
542 | * @level: Log level to look up | |
00ebb7fe | 543 | * Return: Log level name (in ALL CAPS) |
f941c8d7 SG |
544 | */ |
545 | const char *log_get_level_name(enum log_level_t level); | |
546 | ||
547 | /** | |
548 | * log_get_level_by_name() - Look up a log level by name | |
549 | * | |
550 | * @name: Name to look up | |
00ebb7fe | 551 | * Return: Log level, or %LOGL_NONE if not found |
f941c8d7 SG |
552 | */ |
553 | enum log_level_t log_get_level_by_name(const char *name); | |
554 | ||
3102c1d2 SA |
555 | /** |
556 | * log_device_find_by_name() - Look up a log device by its driver's name | |
557 | * | |
558 | * @drv_name: Name of the driver | |
00ebb7fe | 559 | * Return: the log device, or %NULL if not found |
3102c1d2 SA |
560 | */ |
561 | struct log_device *log_device_find_by_name(const char *drv_name); | |
562 | ||
563 | /** | |
564 | * log_has_cat() - check if a log category exists within a list | |
565 | * | |
566 | * @cat_list: List of categories to check, at most %LOGF_MAX_CATEGORIES entries | |
567 | * long, terminated by %LC_END if fewer | |
568 | * @cat: Category to search for | |
569 | * | |
570 | * Return: ``true`` if @cat is in @cat_list, else ``false`` | |
571 | */ | |
572 | bool log_has_cat(enum log_category_t cat_list[], enum log_category_t cat); | |
573 | ||
574 | /** | |
575 | * log_has_file() - check if a file is with a list | |
576 | * | |
577 | * @file_list: List of files to check, separated by comma | |
578 | * @file: File to check for. This string is matched against the end of each | |
579 | * file in the list, i.e. ignoring any preceding path. The list is | |
580 | * intended to consist of relative pathnames, e.g. common/main.c,cmd/log.c | |
581 | * | |
582 | * Return: ``true`` if @file is in @file_list, else ``false`` | |
583 | */ | |
584 | bool log_has_file(const char *file_list, const char *file); | |
585 | ||
3b73e8d0 SG |
586 | /* Log format flags (bit numbers) for gd->log_fmt. See log_fmt_chars */ |
587 | enum log_fmt { | |
588 | LOGF_CAT = 0, | |
589 | LOGF_LEVEL, | |
590 | LOGF_FILE, | |
591 | LOGF_LINE, | |
592 | LOGF_FUNC, | |
593 | LOGF_MSG, | |
594 | ||
595 | LOGF_COUNT, | |
3b73e8d0 SG |
596 | LOGF_ALL = 0x3f, |
597 | }; | |
598 | ||
ef11ed82 | 599 | /* Handle the 'log test' command */ |
09140113 | 600 | int do_log_test(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); |
ef11ed82 | 601 | |
a02f84ee SA |
602 | /** |
603 | * log_add_filter_flags() - Add a new filter to a log device, specifying flags | |
604 | * | |
605 | * @drv_name: Driver name to add the filter to (since each driver only has a | |
606 | * single device) | |
00ebb7fe | 607 | * @flags: Flags for this filter (``LOGFF_...``) |
a02f84ee | 608 | * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty |
00ebb7fe | 609 | * then all categories are permitted. Up to %LOGF_MAX_CATEGORIES entries |
a02f84ee | 610 | * can be provided |
00ebb7fe | 611 | * @level: Maximum (or minimum, if %LOGFF_LEVEL_MIN) log level to allow |
a02f84ee SA |
612 | * @file_list: List of files to allow, separated by comma. If NULL then all |
613 | * files are permitted | |
00ebb7fe SA |
614 | * Return: |
615 | * the sequence number of the new filter (>=0) if the filter was added, or a | |
616 | * -ve value on error | |
a02f84ee SA |
617 | */ |
618 | int log_add_filter_flags(const char *drv_name, enum log_category_t cat_list[], | |
40455a69 | 619 | enum log_level_t level, const char *file_list, |
a02f84ee SA |
620 | int flags); |
621 | ||
e9c8d49d SG |
622 | /** |
623 | * log_add_filter() - Add a new filter to a log device | |
624 | * | |
625 | * @drv_name: Driver name to add the filter to (since each driver only has a | |
626 | * single device) | |
b66a924f | 627 | * @cat_list: List of categories to allow (terminated by %LOGC_END). If empty |
00ebb7fe | 628 | * then all categories are permitted. Up to %LOGF_MAX_CATEGORIES entries |
e9c8d49d SG |
629 | * can be provided |
630 | * @max_level: Maximum log level to allow | |
00ebb7fe | 631 | * @file_list: List of files to allow, separated by comma. If %NULL then all |
e9c8d49d | 632 | * files are permitted |
00ebb7fe SA |
633 | * Return: |
634 | * the sequence number of the new filter (>=0) if the filter was added, or a | |
635 | * -ve value on error | |
e9c8d49d | 636 | */ |
a02f84ee SA |
637 | static inline int log_add_filter(const char *drv_name, |
638 | enum log_category_t cat_list[], | |
639 | enum log_level_t max_level, | |
640 | const char *file_list) | |
641 | { | |
642 | return log_add_filter_flags(drv_name, cat_list, max_level, file_list, | |
643 | 0); | |
644 | } | |
e9c8d49d SG |
645 | |
646 | /** | |
647 | * log_remove_filter() - Remove a filter from a log device | |
648 | * | |
649 | * @drv_name: Driver name to remove the filter from (since each driver only has | |
650 | * a single device) | |
651 | * @filter_num: Filter number to remove (as returned by log_add_filter()) | |
00ebb7fe SA |
652 | * Return: |
653 | * 0 if the filter was removed, -%ENOENT if either the driver or the filter | |
654 | * number was not found | |
e9c8d49d SG |
655 | */ |
656 | int log_remove_filter(const char *drv_name, int filter_num); | |
657 | ||
3d03ab63 SG |
658 | /** |
659 | * log_device_set_enable() - Enable or disable a log device | |
660 | * | |
661 | * Devices are referenced by their driver, so use LOG_GET_DRIVER(name) to pass | |
662 | * the driver to this function. For example if the driver is declared with | |
663 | * LOG_DRIVER(wibble) then pass LOG_GET_DRIVER(wibble) here. | |
664 | * | |
665 | * @drv: Driver of device to enable | |
666 | * @enable: true to enable, false to disable | |
185f812c | 667 | * Return: 0 if OK, -ENOENT if the driver was not found |
3d03ab63 SG |
668 | */ |
669 | int log_device_set_enable(struct log_driver *drv, bool enable); | |
670 | ||
e9c8d49d SG |
671 | #if CONFIG_IS_ENABLED(LOG) |
672 | /** | |
673 | * log_init() - Set up the log system ready for use | |
674 | * | |
00ebb7fe | 675 | * Return: 0 if OK, -%ENOMEM if out of memory |
e9c8d49d SG |
676 | */ |
677 | int log_init(void); | |
678 | #else | |
679 | static inline int log_init(void) | |
680 | { | |
681 | return 0; | |
682 | } | |
683 | #endif | |
684 | ||
3c21d773 HS |
685 | /** |
686 | * log_get_default_format() - get default log format | |
687 | * | |
688 | * The default log format is configurable via | |
00ebb7fe | 689 | * %CONFIG_LOGF_FILE, %CONFIG_LOGF_LINE, and %CONFIG_LOGF_FUNC. |
3c21d773 HS |
690 | * |
691 | * Return: default log format | |
692 | */ | |
693 | static inline int log_get_default_format(void) | |
694 | { | |
695 | return BIT(LOGF_MSG) | | |
696 | (IS_ENABLED(CONFIG_LOGF_FILE) ? BIT(LOGF_FILE) : 0) | | |
697 | (IS_ENABLED(CONFIG_LOGF_LINE) ? BIT(LOGF_LINE) : 0) | | |
698 | (IS_ENABLED(CONFIG_LOGF_FUNC) ? BIT(LOGF_FUNC) : 0); | |
699 | } | |
700 | ||
39162d93 TW |
701 | struct global_data; |
702 | /** | |
703 | * log_fixup_for_gd_move() - Handle global_data moving to a new place | |
704 | * | |
705 | * @new_gd: Pointer to the new global data | |
706 | * | |
707 | * The log_head list is part of global_data. Due to the way lists work, moving | |
708 | * the list will cause it to become invalid. This function fixes that up so | |
709 | * that the log_head list will work correctly. | |
710 | */ | |
711 | void log_fixup_for_gd_move(struct global_data *new_gd); | |
712 | ||
0e98b0a6 | 713 | #endif |