blob: fa47e2708c01748a958f40300c900673cfaa3777 [file] [log] [blame]
Linus Torvalds968ab182010-11-15 13:37:37 -08001#ifndef __KERNEL_PRINTK__
2#define __KERNEL_PRINTK__
3
Andrew Morton1b2c2892013-04-29 16:17:19 -07004#include <stdarg.h>
Mike Travis162a7e72011-05-24 17:13:20 -07005#include <linux/init.h>
Joe Perches314ba352012-07-30 14:40:11 -07006#include <linux/kern_levels.h>
Ralf Baechle154c2672013-05-21 10:51:10 +02007#include <linux/linkage.h>
Joe Perchesc28aa1f2014-01-23 15:54:16 -08008#include <linux/cache.h>
Mike Travis162a7e72011-05-24 17:13:20 -07009
Linus Torvalds968ab182010-11-15 13:37:37 -080010extern const char linux_banner[];
11extern const char linux_proc_banner[];
12
Joe Perchesacc8fa412012-07-30 14:40:09 -070013static inline int printk_get_level(const char *buffer)
14{
Joe Perches04d2c8c2012-07-30 14:40:17 -070015 if (buffer[0] == KERN_SOH_ASCII && buffer[1]) {
Joe Perchesacc8fa412012-07-30 14:40:09 -070016 switch (buffer[1]) {
17 case '0' ... '7':
18 case 'd': /* KERN_DEFAULT */
Joe Perchesacc8fa412012-07-30 14:40:09 -070019 return buffer[1];
20 }
21 }
22 return 0;
23}
24
25static inline const char *printk_skip_level(const char *buffer)
26{
27 if (printk_get_level(buffer)) {
28 switch (buffer[1]) {
29 case '0' ... '7':
30 case 'd': /* KERN_DEFAULT */
Joe Perches04d2c8c2012-07-30 14:40:17 -070031 return buffer + 2;
Joe Perchesacc8fa412012-07-30 14:40:09 -070032 }
33 }
34 return buffer;
35}
36
Linus Torvalds968ab182010-11-15 13:37:37 -080037extern int console_printk[];
38
39#define console_loglevel (console_printk[0])
40#define default_message_loglevel (console_printk[1])
41#define minimum_console_loglevel (console_printk[2])
42#define default_console_loglevel (console_printk[3])
43
Joe Perchesa9747cc2011-01-12 16:59:43 -080044static inline void console_silent(void)
45{
46 console_loglevel = 0;
47}
48
49static inline void console_verbose(void)
50{
51 if (console_loglevel)
52 console_loglevel = 15;
53}
54
Linus Torvalds968ab182010-11-15 13:37:37 -080055struct va_format {
56 const char *fmt;
57 va_list *va;
58};
59
60/*
61 * FW_BUG
62 * Add this to a message where you are sure the firmware is buggy or behaves
63 * really stupid or out of spec. Be aware that the responsible BIOS developer
64 * should be able to fix this issue or at least get a concrete idea of the
65 * problem by reading your message without the need of looking at the kernel
66 * code.
67 *
68 * Use it for definite and high priority BIOS bugs.
69 *
70 * FW_WARN
71 * Use it for not that clear (e.g. could the kernel messed up things already?)
72 * and medium priority BIOS bugs.
73 *
74 * FW_INFO
75 * Use this one if you want to tell the user or vendor about something
76 * suspicious, but generally harmless related to the firmware.
77 *
78 * Use it for information or very low priority BIOS bugs.
79 */
80#define FW_BUG "[Firmware Bug]: "
81#define FW_WARN "[Firmware Warn]: "
82#define FW_INFO "[Firmware Info]: "
83
84/*
85 * HW_ERR
86 * Add this to a message for hardware errors, so that user can report
87 * it to hardware vendor instead of LKML or software vendor.
88 */
89#define HW_ERR "[Hardware Error]: "
90
Joe Perches5264f2f2011-01-12 16:59:45 -080091/*
Neil Horman0a9a8bf2013-12-23 08:29:42 -050092 * DEPRECATED
93 * Add this to a message whenever you want to warn user space about the use
94 * of a deprecated aspect of an API so they can stop using it
95 */
96#define DEPRECATED "[Deprecated]: "
97
98/*
Joe Perches5264f2f2011-01-12 16:59:45 -080099 * Dummy printk for disabled debugging statements to use whilst maintaining
100 * gcc's format and side-effect checking.
101 */
Joe Perchesb9075fa2011-10-31 17:11:33 -0700102static inline __printf(1, 2)
Joe Perches5264f2f2011-01-12 16:59:45 -0800103int no_printk(const char *fmt, ...)
104{
105 return 0;
106}
107
Thomas Gleixnerd0380e62013-04-29 16:17:18 -0700108#ifdef CONFIG_EARLY_PRINTK
Joe Perchesb9075fa2011-10-31 17:11:33 -0700109extern asmlinkage __printf(1, 2)
Joe Perches5264f2f2011-01-12 16:59:45 -0800110void early_printk(const char *fmt, ...);
Thomas Gleixnerd0380e62013-04-29 16:17:18 -0700111void early_vprintk(const char *fmt, va_list ap);
112#else
113static inline __printf(1, 2) __cold
114void early_printk(const char *s, ...) { }
115#endif
Joe Perches5264f2f2011-01-12 16:59:45 -0800116
Linus Torvalds968ab182010-11-15 13:37:37 -0800117#ifdef CONFIG_PRINTK
Kay Sievers7ff95542012-05-03 02:29:13 +0200118asmlinkage __printf(5, 0)
119int vprintk_emit(int facility, int level,
120 const char *dict, size_t dictlen,
121 const char *fmt, va_list args);
122
Joe Perchesb9075fa2011-10-31 17:11:33 -0700123asmlinkage __printf(1, 0)
Joe Perches5264f2f2011-01-12 16:59:45 -0800124int vprintk(const char *fmt, va_list args);
Kay Sievers7ff95542012-05-03 02:29:13 +0200125
126asmlinkage __printf(5, 6) __cold
127asmlinkage int printk_emit(int facility, int level,
128 const char *dict, size_t dictlen,
129 const char *fmt, ...);
130
Joe Perchesb9075fa2011-10-31 17:11:33 -0700131asmlinkage __printf(1, 2) __cold
Joe Perches5264f2f2011-01-12 16:59:45 -0800132int printk(const char *fmt, ...);
Linus Torvalds968ab182010-11-15 13:37:37 -0800133
134/*
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100135 * Special printk facility for scheduler use only, _DO_NOT_USE_ !
136 */
137__printf(1, 2) __cold int printk_sched(const char *fmt, ...);
138
139/*
Linus Torvalds968ab182010-11-15 13:37:37 -0800140 * Please don't use printk_ratelimit(), because it shares ratelimiting state
141 * with all other unrelated printk_ratelimit() callsites. Instead use
142 * printk_ratelimited() or plain old __ratelimit().
143 */
144extern int __printk_ratelimit(const char *func);
145#define printk_ratelimit() __printk_ratelimit(__func__)
146extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
147 unsigned int interval_msec);
148
149extern int printk_delay_msec;
150extern int dmesg_restrict;
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800151extern int kptr_restrict;
Linus Torvalds968ab182010-11-15 13:37:37 -0800152
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -0700153extern void wake_up_klogd(void);
154
Linus Torvalds968ab182010-11-15 13:37:37 -0800155void log_buf_kexec_setup(void);
Mike Travis162a7e72011-05-24 17:13:20 -0700156void __init setup_log_buf(int early);
Tejun Heo98e5e1b2013-04-30 15:27:15 -0700157void dump_stack_set_arch_desc(const char *fmt, ...);
Tejun Heo196779b2013-04-30 15:27:12 -0700158void dump_stack_print_info(const char *log_lvl);
Tejun Heoa43cb952013-04-30 15:27:17 -0700159void show_regs_print_info(const char *log_lvl);
Linus Torvalds968ab182010-11-15 13:37:37 -0800160#else
Joe Perchesb9075fa2011-10-31 17:11:33 -0700161static inline __printf(1, 0)
Joe Perches5264f2f2011-01-12 16:59:45 -0800162int vprintk(const char *s, va_list args)
163{
164 return 0;
165}
Joe Perchesb9075fa2011-10-31 17:11:33 -0700166static inline __printf(1, 2) __cold
Joe Perches5264f2f2011-01-12 16:59:45 -0800167int printk(const char *s, ...)
168{
169 return 0;
170}
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100171static inline __printf(1, 2) __cold
172int printk_sched(const char *s, ...)
173{
174 return 0;
175}
Joe Perches5264f2f2011-01-12 16:59:45 -0800176static inline int printk_ratelimit(void)
177{
178 return 0;
179}
180static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies,
181 unsigned int interval_msec)
182{
183 return false;
184}
Linus Torvalds968ab182010-11-15 13:37:37 -0800185
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -0700186static inline void wake_up_klogd(void)
187{
188}
189
Linus Torvalds968ab182010-11-15 13:37:37 -0800190static inline void log_buf_kexec_setup(void)
191{
192}
Mike Travis162a7e72011-05-24 17:13:20 -0700193
194static inline void setup_log_buf(int early)
195{
196}
Tejun Heo196779b2013-04-30 15:27:12 -0700197
Tejun Heo98e5e1b2013-04-30 15:27:15 -0700198static inline void dump_stack_set_arch_desc(const char *fmt, ...)
199{
200}
201
Tejun Heo196779b2013-04-30 15:27:12 -0700202static inline void dump_stack_print_info(const char *log_lvl)
203{
204}
Tejun Heoa43cb952013-04-30 15:27:17 -0700205
206static inline void show_regs_print_info(const char *log_lvl)
207{
208}
Linus Torvalds968ab182010-11-15 13:37:37 -0800209#endif
210
Andi Kleenb6c035d2013-08-05 15:02:48 -0700211extern asmlinkage void dump_stack(void) __cold;
Linus Torvalds968ab182010-11-15 13:37:37 -0800212
Linus Torvalds968ab182010-11-15 13:37:37 -0800213#ifndef pr_fmt
214#define pr_fmt(fmt) fmt
215#endif
216
217#define pr_emerg(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800218 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800219#define pr_alert(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800220 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800221#define pr_crit(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800222 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800223#define pr_err(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800224 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800225#define pr_warning(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800226 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800227#define pr_warn pr_warning
228#define pr_notice(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800229 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800230#define pr_info(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800231 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800232#define pr_cont(fmt, ...) \
233 printk(KERN_CONT fmt, ##__VA_ARGS__)
234
235/* pr_devel() should produce zero code unless DEBUG is defined */
236#ifdef DEBUG
237#define pr_devel(fmt, ...) \
238 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
239#else
240#define pr_devel(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800241 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800242#endif
243
Joe Perches29fc2bc2013-10-26 20:41:53 -0700244#include <linux/dynamic_debug.h>
245
Linus Torvalds968ab182010-11-15 13:37:37 -0800246/* If you are writing a driver, please use dev_dbg instead */
Jim Cromieb558c962011-12-19 17:11:18 -0500247#if defined(CONFIG_DYNAMIC_DEBUG)
Linus Torvalds968ab182010-11-15 13:37:37 -0800248/* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */
249#define pr_debug(fmt, ...) \
250 dynamic_pr_debug(fmt, ##__VA_ARGS__)
Jim Cromieb558c962011-12-19 17:11:18 -0500251#elif defined(DEBUG)
252#define pr_debug(fmt, ...) \
253 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800254#else
255#define pr_debug(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800256 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800257#endif
258
259/*
Joe Perches16cb8392011-01-12 16:59:46 -0800260 * Print a one-time message (analogous to WARN_ONCE() et al):
261 */
262
263#ifdef CONFIG_PRINTK
Joe Perchesc28aa1f2014-01-23 15:54:16 -0800264#define printk_once(fmt, ...) \
265({ \
266 static bool __print_once __read_mostly; \
267 \
268 if (!__print_once) { \
269 __print_once = true; \
270 printk(fmt, ##__VA_ARGS__); \
271 } \
Joe Perches16cb8392011-01-12 16:59:46 -0800272})
273#else
Joe Perchesc28aa1f2014-01-23 15:54:16 -0800274#define printk_once(fmt, ...) \
Joe Perches16cb8392011-01-12 16:59:46 -0800275 no_printk(fmt, ##__VA_ARGS__)
276#endif
277
278#define pr_emerg_once(fmt, ...) \
279 printk_once(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
280#define pr_alert_once(fmt, ...) \
281 printk_once(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
282#define pr_crit_once(fmt, ...) \
283 printk_once(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
284#define pr_err_once(fmt, ...) \
285 printk_once(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
286#define pr_warn_once(fmt, ...) \
287 printk_once(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
288#define pr_notice_once(fmt, ...) \
289 printk_once(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
290#define pr_info_once(fmt, ...) \
291 printk_once(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
292#define pr_cont_once(fmt, ...) \
293 printk_once(KERN_CONT pr_fmt(fmt), ##__VA_ARGS__)
Mikhail Gruzdev36d308d2013-02-21 16:43:10 -0800294
295#if defined(DEBUG)
296#define pr_devel_once(fmt, ...) \
297 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
298#else
299#define pr_devel_once(fmt, ...) \
300 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
301#endif
302
Joe Perches16cb8392011-01-12 16:59:46 -0800303/* If you are writing a driver, please use dev_dbg instead */
304#if defined(DEBUG)
305#define pr_debug_once(fmt, ...) \
306 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
307#else
308#define pr_debug_once(fmt, ...) \
309 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
310#endif
311
312/*
Linus Torvalds968ab182010-11-15 13:37:37 -0800313 * ratelimited messages with local ratelimit_state,
314 * no local ratelimit_state used in the !PRINTK case
315 */
316#ifdef CONFIG_PRINTK
Joe Perches6ec42a562011-01-12 16:59:47 -0800317#define printk_ratelimited(fmt, ...) \
318({ \
Linus Torvalds968ab182010-11-15 13:37:37 -0800319 static DEFINE_RATELIMIT_STATE(_rs, \
320 DEFAULT_RATELIMIT_INTERVAL, \
321 DEFAULT_RATELIMIT_BURST); \
322 \
323 if (__ratelimit(&_rs)) \
324 printk(fmt, ##__VA_ARGS__); \
325})
326#else
Joe Perches6ec42a562011-01-12 16:59:47 -0800327#define printk_ratelimited(fmt, ...) \
328 no_printk(fmt, ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800329#endif
330
Joe Perches6ec42a562011-01-12 16:59:47 -0800331#define pr_emerg_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800332 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800333#define pr_alert_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800334 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800335#define pr_crit_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800336 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800337#define pr_err_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800338 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800339#define pr_warn_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800340 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800341#define pr_notice_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800342 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800343#define pr_info_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800344 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
345/* no pr_cont_ratelimited, don't do that... */
Mikhail Gruzdev36d308d2013-02-21 16:43:10 -0800346
347#if defined(DEBUG)
348#define pr_devel_ratelimited(fmt, ...) \
349 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
350#else
351#define pr_devel_ratelimited(fmt, ...) \
352 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
353#endif
354
Linus Torvalds968ab182010-11-15 13:37:37 -0800355/* If you are writing a driver, please use dev_dbg instead */
Joe Perches29fc2bc2013-10-26 20:41:53 -0700356#if defined(CONFIG_DYNAMIC_DEBUG)
357/* descriptor check is first to prevent flooding with "callbacks suppressed" */
358#define pr_debug_ratelimited(fmt, ...) \
359do { \
360 static DEFINE_RATELIMIT_STATE(_rs, \
361 DEFAULT_RATELIMIT_INTERVAL, \
362 DEFAULT_RATELIMIT_BURST); \
363 DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, fmt); \
364 if (unlikely(descriptor.flags & _DPRINTK_FLAGS_PRINT) && \
365 __ratelimit(&_rs)) \
366 __dynamic_pr_debug(&descriptor, fmt, ##__VA_ARGS__); \
367} while (0)
368#elif defined(DEBUG)
Joe Perches6ec42a562011-01-12 16:59:47 -0800369#define pr_debug_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800370 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
371#else
372#define pr_debug_ratelimited(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800373 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800374#endif
375
Kay Sieverse11fea92012-05-03 02:29:41 +0200376extern const struct file_operations kmsg_fops;
377
Joe Perchesac83ed62011-01-12 16:59:47 -0800378enum {
379 DUMP_PREFIX_NONE,
380 DUMP_PREFIX_ADDRESS,
381 DUMP_PREFIX_OFFSET
382};
383extern void hex_dump_to_buffer(const void *buf, size_t len,
384 int rowsize, int groupsize,
385 char *linebuf, size_t linebuflen, bool ascii);
386#ifdef CONFIG_PRINTK
387extern void print_hex_dump(const char *level, const char *prefix_str,
388 int prefix_type, int rowsize, int groupsize,
389 const void *buf, size_t len, bool ascii);
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500390#if defined(CONFIG_DYNAMIC_DEBUG)
391#define print_hex_dump_bytes(prefix_str, prefix_type, buf, len) \
392 dynamic_hex_dump(prefix_str, prefix_type, 16, 1, buf, len, true)
393#else
Joe Perchesac83ed62011-01-12 16:59:47 -0800394extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
395 const void *buf, size_t len);
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500396#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
Joe Perchesac83ed62011-01-12 16:59:47 -0800397#else
398static inline void print_hex_dump(const char *level, const char *prefix_str,
399 int prefix_type, int rowsize, int groupsize,
400 const void *buf, size_t len, bool ascii)
401{
402}
403static inline void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
404 const void *buf, size_t len)
405{
406}
407
408#endif
409
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500410#if defined(CONFIG_DYNAMIC_DEBUG)
411#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
412 groupsize, buf, len, ascii) \
413 dynamic_hex_dump(prefix_str, prefix_type, rowsize, \
414 groupsize, buf, len, ascii)
415#else
416#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
417 groupsize, buf, len, ascii) \
418 print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, rowsize, \
419 groupsize, buf, len, ascii)
420#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
421
Linus Torvalds968ab182010-11-15 13:37:37 -0800422#endif