1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __KERNEL_PRINTK__
3 #define __KERNEL_PRINTK__
6 #include <linux/init.h>
7 #include <linux/kern_levels.h>
8 #include <linux/linkage.h>
9 #include <linux/cache.h>
11 extern const char linux_banner[];
12 extern const char linux_proc_banner[];
14 #define PRINTK_MAX_SINGLE_HEADER_LEN 2
16 static inline int printk_get_level(const char *buffer)
18 if (buffer[0] == KERN_SOH_ASCII && buffer[1]) {
21 case 'c': /* KERN_CONT */
28 static inline const char *printk_skip_level(const char *buffer)
30 if (printk_get_level(buffer))
36 static inline const char *printk_skip_headers(const char *buffer)
38 while (printk_get_level(buffer))
39 buffer = printk_skip_level(buffer);
44 #define CONSOLE_EXT_LOG_MAX 8192
46 /* printk's without a loglevel use this.. */
47 #define MESSAGE_LOGLEVEL_DEFAULT CONFIG_MESSAGE_LOGLEVEL_DEFAULT
49 /* We show everything that is MORE important than this.. */
50 #define CONSOLE_LOGLEVEL_SILENT 0 /* Mum's the word */
51 #define CONSOLE_LOGLEVEL_MIN 1 /* Minimum loglevel we let people use */
52 #define CONSOLE_LOGLEVEL_DEBUG 10 /* issue debug messages */
53 #define CONSOLE_LOGLEVEL_MOTORMOUTH 15 /* You can't shut this one up */
56 * Default used to be hard-coded at 7, quiet used to be hardcoded at 4,
57 * we're now allowing both to be set from kernel config.
59 #define CONSOLE_LOGLEVEL_DEFAULT CONFIG_CONSOLE_LOGLEVEL_DEFAULT
60 #define CONSOLE_LOGLEVEL_QUIET CONFIG_CONSOLE_LOGLEVEL_QUIET
62 extern int console_printk[];
64 #define console_loglevel (console_printk[0])
65 #define default_message_loglevel (console_printk[1])
66 #define minimum_console_loglevel (console_printk[2])
67 #define default_console_loglevel (console_printk[3])
69 static inline void console_silent(void)
71 console_loglevel = CONSOLE_LOGLEVEL_SILENT;
74 static inline void console_verbose(void)
77 console_loglevel = CONSOLE_LOGLEVEL_MOTORMOUTH;
80 /* strlen("ratelimit") + 1 */
81 #define DEVKMSG_STR_MAX_SIZE 10
82 extern char devkmsg_log_str[];
85 extern int suppress_printk;
94 * Add this to a message where you are sure the firmware is buggy or behaves
95 * really stupid or out of spec. Be aware that the responsible BIOS developer
96 * should be able to fix this issue or at least get a concrete idea of the
97 * problem by reading your message without the need of looking at the kernel
100 * Use it for definite and high priority BIOS bugs.
103 * Use it for not that clear (e.g. could the kernel messed up things already?)
104 * and medium priority BIOS bugs.
107 * Use this one if you want to tell the user or vendor about something
108 * suspicious, but generally harmless related to the firmware.
110 * Use it for information or very low priority BIOS bugs.
112 #define FW_BUG "[Firmware Bug]: "
113 #define FW_WARN "[Firmware Warn]: "
114 #define FW_INFO "[Firmware Info]: "
118 * Add this to a message for hardware errors, so that user can report
119 * it to hardware vendor instead of LKML or software vendor.
121 #define HW_ERR "[Hardware Error]: "
125 * Add this to a message whenever you want to warn user space about the use
126 * of a deprecated aspect of an API so they can stop using it
128 #define DEPRECATED "[Deprecated]: "
131 * Dummy printk for disabled debugging statements to use whilst maintaining
132 * gcc's format checking.
134 #define no_printk(fmt, ...) \
137 printk(fmt, ##__VA_ARGS__); \
141 #ifdef CONFIG_EARLY_PRINTK
142 extern asmlinkage __printf(1, 2)
143 void early_printk(const char *fmt, ...);
145 static inline __printf(1, 2) __cold
146 void early_printk(const char *s, ...) { }
149 #ifdef CONFIG_PRINTK_NMI
150 extern void printk_nmi_enter(void);
151 extern void printk_nmi_exit(void);
152 extern void printk_nmi_direct_enter(void);
153 extern void printk_nmi_direct_exit(void);
155 static inline void printk_nmi_enter(void) { }
156 static inline void printk_nmi_exit(void) { }
157 static inline void printk_nmi_direct_enter(void) { }
158 static inline void printk_nmi_direct_exit(void) { }
159 #endif /* PRINTK_NMI */
162 asmlinkage __printf(5, 0)
163 int vprintk_emit(int facility, int level,
164 const char *dict, size_t dictlen,
165 const char *fmt, va_list args);
167 asmlinkage __printf(1, 0)
168 int vprintk(const char *fmt, va_list args);
170 asmlinkage __printf(1, 2) __cold
171 int printk(const char *fmt, ...);
174 * Special printk facility for scheduler/timekeeping use only, _DO_NOT_USE_ !
176 __printf(1, 2) __cold int printk_deferred(const char *fmt, ...);
179 * Please don't use printk_ratelimit(), because it shares ratelimiting state
180 * with all other unrelated printk_ratelimit() callsites. Instead use
181 * printk_ratelimited() or plain old __ratelimit().
183 extern int __printk_ratelimit(const char *func);
184 #define printk_ratelimit() __printk_ratelimit(__func__)
185 extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
186 unsigned int interval_msec);
188 extern int printk_delay_msec;
189 extern int dmesg_restrict;
192 devkmsg_sysctl_set_loglvl(struct ctl_table *table, int write, void *buf,
193 size_t *lenp, loff_t *ppos);
195 extern void wake_up_klogd(void);
197 char *log_buf_addr_get(void);
198 u32 log_buf_len_get(void);
199 void log_buf_vmcoreinfo_setup(void);
200 void __init setup_log_buf(int early);
201 __printf(1, 2) void dump_stack_set_arch_desc(const char *fmt, ...);
202 void dump_stack_print_info(const char *log_lvl);
203 void show_regs_print_info(const char *log_lvl);
204 extern asmlinkage void dump_stack(void) __cold;
205 extern void printk_safe_flush(void);
206 extern void printk_safe_flush_on_panic(void);
208 static inline __printf(1, 0)
209 int vprintk(const char *s, va_list args)
213 static inline __printf(1, 2) __cold
214 int printk(const char *s, ...)
218 static inline __printf(1, 2) __cold
219 int printk_deferred(const char *s, ...)
223 static inline int printk_ratelimit(void)
227 static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies,
228 unsigned int interval_msec)
233 static inline void wake_up_klogd(void)
237 static inline char *log_buf_addr_get(void)
242 static inline u32 log_buf_len_get(void)
247 static inline void log_buf_vmcoreinfo_setup(void)
251 static inline void setup_log_buf(int early)
255 static inline __printf(1, 2) void dump_stack_set_arch_desc(const char *fmt, ...)
259 static inline void dump_stack_print_info(const char *log_lvl)
263 static inline void show_regs_print_info(const char *log_lvl)
267 static inline void dump_stack(void)
271 static inline void printk_safe_flush(void)
275 static inline void printk_safe_flush_on_panic(void)
280 extern int kptr_restrict;
283 * pr_fmt - used by the pr_*() macros to generate the printk format string
284 * @fmt: format string passed from a pr_*() macro
286 * This macro can be used to generate a unified format string for pr_*()
287 * macros. A common use is to prefix all pr_*() messages in a file with a common
288 * string. For example, defining this at the top of a source file:
290 * #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
292 * would prefix all pr_info, pr_emerg... messages in the file with the module
296 #define pr_fmt(fmt) fmt
300 * pr_emerg - Print an emergency-level message
301 * @fmt: format string
302 * @...: arguments for the format string
304 * This macro expands to a printk with KERN_EMERG loglevel. It uses pr_fmt() to
305 * generate the format string.
307 #define pr_emerg(fmt, ...) \
308 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
310 * pr_alert - Print an alert-level message
311 * @fmt: format string
312 * @...: arguments for the format string
314 * This macro expands to a printk with KERN_ALERT loglevel. It uses pr_fmt() to
315 * generate the format string.
317 #define pr_alert(fmt, ...) \
318 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
320 * pr_crit - Print a critical-level message
321 * @fmt: format string
322 * @...: arguments for the format string
324 * This macro expands to a printk with KERN_CRIT loglevel. It uses pr_fmt() to
325 * generate the format string.
327 #define pr_crit(fmt, ...) \
328 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
330 * pr_err - Print an error-level message
331 * @fmt: format string
332 * @...: arguments for the format string
334 * This macro expands to a printk with KERN_ERR loglevel. It uses pr_fmt() to
335 * generate the format string.
337 #define pr_err(fmt, ...) \
338 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
340 * pr_warn - Print a warning-level message
341 * @fmt: format string
342 * @...: arguments for the format string
344 * This macro expands to a printk with KERN_WARNING loglevel. It uses pr_fmt()
345 * to generate the format string.
347 #define pr_warn(fmt, ...) \
348 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
350 * pr_notice - Print a notice-level message
351 * @fmt: format string
352 * @...: arguments for the format string
354 * This macro expands to a printk with KERN_NOTICE loglevel. It uses pr_fmt() to
355 * generate the format string.
357 #define pr_notice(fmt, ...) \
358 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
360 * pr_info - Print an info-level message
361 * @fmt: format string
362 * @...: arguments for the format string
364 * This macro expands to a printk with KERN_INFO loglevel. It uses pr_fmt() to
365 * generate the format string.
367 #define pr_info(fmt, ...) \
368 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
371 * pr_cont - Continues a previous log message in the same line.
372 * @fmt: format string
373 * @...: arguments for the format string
375 * This macro expands to a printk with KERN_CONT loglevel. It should only be
376 * used when continuing a log message with no newline ('\n') enclosed. Otherwise
377 * it defaults back to KERN_DEFAULT loglevel.
379 #define pr_cont(fmt, ...) \
380 printk(KERN_CONT fmt, ##__VA_ARGS__)
383 * pr_devel - Print a debug-level message conditionally
384 * @fmt: format string
385 * @...: arguments for the format string
387 * This macro expands to a printk with KERN_DEBUG loglevel if DEBUG is
388 * defined. Otherwise it does nothing.
390 * It uses pr_fmt() to generate the format string.
393 #define pr_devel(fmt, ...) \
394 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
396 #define pr_devel(fmt, ...) \
397 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
401 /* If you are writing a driver, please use dev_dbg instead */
402 #if defined(CONFIG_DYNAMIC_DEBUG)
403 #include <linux/dynamic_debug.h>
406 * pr_debug - Print a debug-level message conditionally
407 * @fmt: format string
408 * @...: arguments for the format string
410 * This macro expands to dynamic_pr_debug() if CONFIG_DYNAMIC_DEBUG is
411 * set. Otherwise, if DEBUG is defined, it's equivalent to a printk with
412 * KERN_DEBUG loglevel. If DEBUG is not defined it does nothing.
414 * It uses pr_fmt() to generate the format string (dynamic_pr_debug() uses
415 * pr_fmt() internally).
417 #define pr_debug(fmt, ...) \
418 dynamic_pr_debug(fmt, ##__VA_ARGS__)
420 #define pr_debug(fmt, ...) \
421 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
423 #define pr_debug(fmt, ...) \
424 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
428 * Print a one-time message (analogous to WARN_ONCE() et al):
432 #define printk_once(fmt, ...) \
434 static bool __section(.data.once) __print_once; \
435 bool __ret_print_once = !__print_once; \
437 if (!__print_once) { \
438 __print_once = true; \
439 printk(fmt, ##__VA_ARGS__); \
441 unlikely(__ret_print_once); \
443 #define printk_deferred_once(fmt, ...) \
445 static bool __section(.data.once) __print_once; \
446 bool __ret_print_once = !__print_once; \
448 if (!__print_once) { \
449 __print_once = true; \
450 printk_deferred(fmt, ##__VA_ARGS__); \
452 unlikely(__ret_print_once); \
455 #define printk_once(fmt, ...) \
456 no_printk(fmt, ##__VA_ARGS__)
457 #define printk_deferred_once(fmt, ...) \
458 no_printk(fmt, ##__VA_ARGS__)
461 #define pr_emerg_once(fmt, ...) \
462 printk_once(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
463 #define pr_alert_once(fmt, ...) \
464 printk_once(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
465 #define pr_crit_once(fmt, ...) \
466 printk_once(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
467 #define pr_err_once(fmt, ...) \
468 printk_once(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
469 #define pr_warn_once(fmt, ...) \
470 printk_once(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
471 #define pr_notice_once(fmt, ...) \
472 printk_once(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
473 #define pr_info_once(fmt, ...) \
474 printk_once(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
475 /* no pr_cont_once, don't do that... */
478 #define pr_devel_once(fmt, ...) \
479 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
481 #define pr_devel_once(fmt, ...) \
482 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
485 /* If you are writing a driver, please use dev_dbg instead */
487 #define pr_debug_once(fmt, ...) \
488 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
490 #define pr_debug_once(fmt, ...) \
491 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
495 * ratelimited messages with local ratelimit_state,
496 * no local ratelimit_state used in the !PRINTK case
499 #define printk_ratelimited(fmt, ...) \
501 static DEFINE_RATELIMIT_STATE(_rs, \
502 DEFAULT_RATELIMIT_INTERVAL, \
503 DEFAULT_RATELIMIT_BURST); \
505 if (__ratelimit(&_rs)) \
506 printk(fmt, ##__VA_ARGS__); \
509 #define printk_ratelimited(fmt, ...) \
510 no_printk(fmt, ##__VA_ARGS__)
513 #define pr_emerg_ratelimited(fmt, ...) \
514 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
515 #define pr_alert_ratelimited(fmt, ...) \
516 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
517 #define pr_crit_ratelimited(fmt, ...) \
518 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
519 #define pr_err_ratelimited(fmt, ...) \
520 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
521 #define pr_warn_ratelimited(fmt, ...) \
522 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
523 #define pr_notice_ratelimited(fmt, ...) \
524 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
525 #define pr_info_ratelimited(fmt, ...) \
526 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
527 /* no pr_cont_ratelimited, don't do that... */
530 #define pr_devel_ratelimited(fmt, ...) \
531 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
533 #define pr_devel_ratelimited(fmt, ...) \
534 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
537 /* If you are writing a driver, please use dev_dbg instead */
538 #if defined(CONFIG_DYNAMIC_DEBUG)
539 /* descriptor check is first to prevent flooding with "callbacks suppressed" */
540 #define pr_debug_ratelimited(fmt, ...) \
542 static DEFINE_RATELIMIT_STATE(_rs, \
543 DEFAULT_RATELIMIT_INTERVAL, \
544 DEFAULT_RATELIMIT_BURST); \
545 DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, pr_fmt(fmt)); \
546 if (DYNAMIC_DEBUG_BRANCH(descriptor) && \
548 __dynamic_pr_debug(&descriptor, pr_fmt(fmt), ##__VA_ARGS__); \
551 #define pr_debug_ratelimited(fmt, ...) \
552 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
554 #define pr_debug_ratelimited(fmt, ...) \
555 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
558 extern const struct file_operations kmsg_fops;
565 extern int hex_dump_to_buffer(const void *buf, size_t len, int rowsize,
566 int groupsize, char *linebuf, size_t linebuflen,
569 extern void print_hex_dump(const char *level, const char *prefix_str,
570 int prefix_type, int rowsize, int groupsize,
571 const void *buf, size_t len, bool ascii);
573 static inline void print_hex_dump(const char *level, const char *prefix_str,
574 int prefix_type, int rowsize, int groupsize,
575 const void *buf, size_t len, bool ascii)
578 static inline void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
579 const void *buf, size_t len)
585 #if defined(CONFIG_DYNAMIC_DEBUG)
586 #define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
587 groupsize, buf, len, ascii) \
588 dynamic_hex_dump(prefix_str, prefix_type, rowsize, \
589 groupsize, buf, len, ascii)
591 #define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
592 groupsize, buf, len, ascii) \
593 print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, rowsize, \
594 groupsize, buf, len, ascii)
596 static inline void print_hex_dump_debug(const char *prefix_str, int prefix_type,
597 int rowsize, int groupsize,
598 const void *buf, size_t len, bool ascii)
604 * print_hex_dump_bytes - shorthand form of print_hex_dump() with default params
605 * @prefix_str: string to prefix each line with;
606 * caller supplies trailing spaces for alignment if desired
607 * @prefix_type: controls whether prefix of an offset, address, or none
608 * is printed (%DUMP_PREFIX_OFFSET, %DUMP_PREFIX_ADDRESS, %DUMP_PREFIX_NONE)
609 * @buf: data blob to dump
610 * @len: number of bytes in the @buf
612 * Calls print_hex_dump(), with log level of KERN_DEBUG,
613 * rowsize of 16, groupsize of 1, and ASCII output included.
615 #define print_hex_dump_bytes(prefix_str, prefix_type, buf, len) \
616 print_hex_dump_debug(prefix_str, prefix_type, 16, 1, buf, len, true)