blob: 694925837a1645bb7297cc9254efee7173a32197 [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>
Mike Travis162a7e72011-05-24 17:13:20 -07008
Linus Torvalds968ab182010-11-15 13:37:37 -08009extern const char linux_banner[];
10extern const char linux_proc_banner[];
11
Joe Perchesacc8fa412012-07-30 14:40:09 -070012static inline int printk_get_level(const char *buffer)
13{
Joe Perches04d2c8c2012-07-30 14:40:17 -070014 if (buffer[0] == KERN_SOH_ASCII && buffer[1]) {
Joe Perchesacc8fa412012-07-30 14:40:09 -070015 switch (buffer[1]) {
16 case '0' ... '7':
17 case 'd': /* KERN_DEFAULT */
Joe Perchesacc8fa412012-07-30 14:40:09 -070018 return buffer[1];
19 }
20 }
21 return 0;
22}
23
24static inline const char *printk_skip_level(const char *buffer)
25{
26 if (printk_get_level(buffer)) {
27 switch (buffer[1]) {
28 case '0' ... '7':
29 case 'd': /* KERN_DEFAULT */
Joe Perches04d2c8c2012-07-30 14:40:17 -070030 return buffer + 2;
Joe Perchesacc8fa412012-07-30 14:40:09 -070031 }
32 }
33 return buffer;
34}
35
Linus Torvalds968ab182010-11-15 13:37:37 -080036extern int console_printk[];
37
38#define console_loglevel (console_printk[0])
39#define default_message_loglevel (console_printk[1])
40#define minimum_console_loglevel (console_printk[2])
41#define default_console_loglevel (console_printk[3])
42
Joe Perchesa9747cc2011-01-12 16:59:43 -080043static inline void console_silent(void)
44{
45 console_loglevel = 0;
46}
47
48static inline void console_verbose(void)
49{
50 if (console_loglevel)
51 console_loglevel = 15;
52}
53
Linus Torvalds968ab182010-11-15 13:37:37 -080054struct va_format {
55 const char *fmt;
56 va_list *va;
57};
58
59/*
60 * FW_BUG
61 * Add this to a message where you are sure the firmware is buggy or behaves
62 * really stupid or out of spec. Be aware that the responsible BIOS developer
63 * should be able to fix this issue or at least get a concrete idea of the
64 * problem by reading your message without the need of looking at the kernel
65 * code.
66 *
67 * Use it for definite and high priority BIOS bugs.
68 *
69 * FW_WARN
70 * Use it for not that clear (e.g. could the kernel messed up things already?)
71 * and medium priority BIOS bugs.
72 *
73 * FW_INFO
74 * Use this one if you want to tell the user or vendor about something
75 * suspicious, but generally harmless related to the firmware.
76 *
77 * Use it for information or very low priority BIOS bugs.
78 */
79#define FW_BUG "[Firmware Bug]: "
80#define FW_WARN "[Firmware Warn]: "
81#define FW_INFO "[Firmware Info]: "
82
83/*
84 * HW_ERR
85 * Add this to a message for hardware errors, so that user can report
86 * it to hardware vendor instead of LKML or software vendor.
87 */
88#define HW_ERR "[Hardware Error]: "
89
Joe Perches5264f2f2011-01-12 16:59:45 -080090/*
91 * Dummy printk for disabled debugging statements to use whilst maintaining
92 * gcc's format and side-effect checking.
93 */
Joe Perchesb9075fa2011-10-31 17:11:33 -070094static inline __printf(1, 2)
Joe Perches5264f2f2011-01-12 16:59:45 -080095int no_printk(const char *fmt, ...)
96{
97 return 0;
98}
99
Thomas Gleixnerd0380e62013-04-29 16:17:18 -0700100#ifdef CONFIG_EARLY_PRINTK
Joe Perchesb9075fa2011-10-31 17:11:33 -0700101extern asmlinkage __printf(1, 2)
Joe Perches5264f2f2011-01-12 16:59:45 -0800102void early_printk(const char *fmt, ...);
Thomas Gleixnerd0380e62013-04-29 16:17:18 -0700103void early_vprintk(const char *fmt, va_list ap);
104#else
105static inline __printf(1, 2) __cold
106void early_printk(const char *s, ...) { }
107#endif
Joe Perches5264f2f2011-01-12 16:59:45 -0800108
Linus Torvalds968ab182010-11-15 13:37:37 -0800109#ifdef CONFIG_PRINTK
Kay Sievers7ff95542012-05-03 02:29:13 +0200110asmlinkage __printf(5, 0)
111int vprintk_emit(int facility, int level,
112 const char *dict, size_t dictlen,
113 const char *fmt, va_list args);
114
Joe Perchesb9075fa2011-10-31 17:11:33 -0700115asmlinkage __printf(1, 0)
Joe Perches5264f2f2011-01-12 16:59:45 -0800116int vprintk(const char *fmt, va_list args);
Kay Sievers7ff95542012-05-03 02:29:13 +0200117
118asmlinkage __printf(5, 6) __cold
119asmlinkage int printk_emit(int facility, int level,
120 const char *dict, size_t dictlen,
121 const char *fmt, ...);
122
Joe Perchesb9075fa2011-10-31 17:11:33 -0700123asmlinkage __printf(1, 2) __cold
Joe Perches5264f2f2011-01-12 16:59:45 -0800124int printk(const char *fmt, ...);
Linus Torvalds968ab182010-11-15 13:37:37 -0800125
126/*
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100127 * Special printk facility for scheduler use only, _DO_NOT_USE_ !
128 */
129__printf(1, 2) __cold int printk_sched(const char *fmt, ...);
130
131/*
Linus Torvalds968ab182010-11-15 13:37:37 -0800132 * Please don't use printk_ratelimit(), because it shares ratelimiting state
133 * with all other unrelated printk_ratelimit() callsites. Instead use
134 * printk_ratelimited() or plain old __ratelimit().
135 */
136extern int __printk_ratelimit(const char *func);
137#define printk_ratelimit() __printk_ratelimit(__func__)
138extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
139 unsigned int interval_msec);
140
141extern int printk_delay_msec;
142extern int dmesg_restrict;
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800143extern int kptr_restrict;
Linus Torvalds968ab182010-11-15 13:37:37 -0800144
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -0700145extern void wake_up_klogd(void);
146
Linus Torvalds968ab182010-11-15 13:37:37 -0800147void log_buf_kexec_setup(void);
Mike Travis162a7e72011-05-24 17:13:20 -0700148void __init setup_log_buf(int early);
Tejun Heo98e5e1b2013-04-30 15:27:15 -0700149void dump_stack_set_arch_desc(const char *fmt, ...);
Tejun Heo196779b2013-04-30 15:27:12 -0700150void dump_stack_print_info(const char *log_lvl);
Tejun Heoa43cb952013-04-30 15:27:17 -0700151void show_regs_print_info(const char *log_lvl);
Linus Torvalds968ab182010-11-15 13:37:37 -0800152#else
Joe Perchesb9075fa2011-10-31 17:11:33 -0700153static inline __printf(1, 0)
Joe Perches5264f2f2011-01-12 16:59:45 -0800154int vprintk(const char *s, va_list args)
155{
156 return 0;
157}
Joe Perchesb9075fa2011-10-31 17:11:33 -0700158static inline __printf(1, 2) __cold
Joe Perches5264f2f2011-01-12 16:59:45 -0800159int printk(const char *s, ...)
160{
161 return 0;
162}
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100163static inline __printf(1, 2) __cold
164int printk_sched(const char *s, ...)
165{
166 return 0;
167}
Joe Perches5264f2f2011-01-12 16:59:45 -0800168static inline int printk_ratelimit(void)
169{
170 return 0;
171}
172static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies,
173 unsigned int interval_msec)
174{
175 return false;
176}
Linus Torvalds968ab182010-11-15 13:37:37 -0800177
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -0700178static inline void wake_up_klogd(void)
179{
180}
181
Linus Torvalds968ab182010-11-15 13:37:37 -0800182static inline void log_buf_kexec_setup(void)
183{
184}
Mike Travis162a7e72011-05-24 17:13:20 -0700185
186static inline void setup_log_buf(int early)
187{
188}
Tejun Heo196779b2013-04-30 15:27:12 -0700189
Tejun Heo98e5e1b2013-04-30 15:27:15 -0700190static inline void dump_stack_set_arch_desc(const char *fmt, ...)
191{
192}
193
Tejun Heo196779b2013-04-30 15:27:12 -0700194static inline void dump_stack_print_info(const char *log_lvl)
195{
196}
Tejun Heoa43cb952013-04-30 15:27:17 -0700197
198static inline void show_regs_print_info(const char *log_lvl)
199{
200}
Linus Torvalds968ab182010-11-15 13:37:37 -0800201#endif
202
Andi Kleenb6c035d2013-08-05 15:02:48 -0700203extern asmlinkage void dump_stack(void) __cold;
Linus Torvalds968ab182010-11-15 13:37:37 -0800204
Linus Torvalds968ab182010-11-15 13:37:37 -0800205#ifndef pr_fmt
206#define pr_fmt(fmt) fmt
207#endif
208
209#define pr_emerg(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800210 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800211#define pr_alert(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800212 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800213#define pr_crit(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800214 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800215#define pr_err(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800216 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800217#define pr_warning(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800218 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800219#define pr_warn pr_warning
220#define pr_notice(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800221 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800222#define pr_info(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800223 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800224#define pr_cont(fmt, ...) \
225 printk(KERN_CONT fmt, ##__VA_ARGS__)
226
227/* pr_devel() should produce zero code unless DEBUG is defined */
228#ifdef DEBUG
229#define pr_devel(fmt, ...) \
230 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
231#else
232#define pr_devel(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800233 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800234#endif
235
Joe Perches29fc2bc2013-10-26 20:41:53 -0700236#include <linux/dynamic_debug.h>
237
Linus Torvalds968ab182010-11-15 13:37:37 -0800238/* If you are writing a driver, please use dev_dbg instead */
Jim Cromieb558c962011-12-19 17:11:18 -0500239#if defined(CONFIG_DYNAMIC_DEBUG)
Linus Torvalds968ab182010-11-15 13:37:37 -0800240/* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */
241#define pr_debug(fmt, ...) \
242 dynamic_pr_debug(fmt, ##__VA_ARGS__)
Jim Cromieb558c962011-12-19 17:11:18 -0500243#elif defined(DEBUG)
244#define pr_debug(fmt, ...) \
245 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800246#else
247#define pr_debug(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800248 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800249#endif
250
251/*
Joe Perches16cb8392011-01-12 16:59:46 -0800252 * Print a one-time message (analogous to WARN_ONCE() et al):
253 */
254
255#ifdef CONFIG_PRINTK
256#define printk_once(fmt, ...) \
257({ \
258 static bool __print_once; \
259 \
260 if (!__print_once) { \
261 __print_once = true; \
262 printk(fmt, ##__VA_ARGS__); \
263 } \
264})
265#else
266#define printk_once(fmt, ...) \
267 no_printk(fmt, ##__VA_ARGS__)
268#endif
269
270#define pr_emerg_once(fmt, ...) \
271 printk_once(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
272#define pr_alert_once(fmt, ...) \
273 printk_once(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
274#define pr_crit_once(fmt, ...) \
275 printk_once(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
276#define pr_err_once(fmt, ...) \
277 printk_once(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
278#define pr_warn_once(fmt, ...) \
279 printk_once(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
280#define pr_notice_once(fmt, ...) \
281 printk_once(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
282#define pr_info_once(fmt, ...) \
283 printk_once(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
284#define pr_cont_once(fmt, ...) \
285 printk_once(KERN_CONT pr_fmt(fmt), ##__VA_ARGS__)
Mikhail Gruzdev36d308d2013-02-21 16:43:10 -0800286
287#if defined(DEBUG)
288#define pr_devel_once(fmt, ...) \
289 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
290#else
291#define pr_devel_once(fmt, ...) \
292 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
293#endif
294
Joe Perches16cb8392011-01-12 16:59:46 -0800295/* If you are writing a driver, please use dev_dbg instead */
296#if defined(DEBUG)
297#define pr_debug_once(fmt, ...) \
298 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
299#else
300#define pr_debug_once(fmt, ...) \
301 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
302#endif
303
304/*
Linus Torvalds968ab182010-11-15 13:37:37 -0800305 * ratelimited messages with local ratelimit_state,
306 * no local ratelimit_state used in the !PRINTK case
307 */
308#ifdef CONFIG_PRINTK
Joe Perches6ec42a562011-01-12 16:59:47 -0800309#define printk_ratelimited(fmt, ...) \
310({ \
Linus Torvalds968ab182010-11-15 13:37:37 -0800311 static DEFINE_RATELIMIT_STATE(_rs, \
312 DEFAULT_RATELIMIT_INTERVAL, \
313 DEFAULT_RATELIMIT_BURST); \
314 \
315 if (__ratelimit(&_rs)) \
316 printk(fmt, ##__VA_ARGS__); \
317})
318#else
Joe Perches6ec42a562011-01-12 16:59:47 -0800319#define printk_ratelimited(fmt, ...) \
320 no_printk(fmt, ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800321#endif
322
Joe Perches6ec42a562011-01-12 16:59:47 -0800323#define pr_emerg_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800324 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800325#define pr_alert_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800326 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800327#define pr_crit_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800328 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800329#define pr_err_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800330 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800331#define pr_warn_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800332 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800333#define pr_notice_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800334 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800335#define pr_info_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800336 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
337/* no pr_cont_ratelimited, don't do that... */
Mikhail Gruzdev36d308d2013-02-21 16:43:10 -0800338
339#if defined(DEBUG)
340#define pr_devel_ratelimited(fmt, ...) \
341 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
342#else
343#define pr_devel_ratelimited(fmt, ...) \
344 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
345#endif
346
Linus Torvalds968ab182010-11-15 13:37:37 -0800347/* If you are writing a driver, please use dev_dbg instead */
Joe Perches29fc2bc2013-10-26 20:41:53 -0700348#if defined(CONFIG_DYNAMIC_DEBUG)
349/* descriptor check is first to prevent flooding with "callbacks suppressed" */
350#define pr_debug_ratelimited(fmt, ...) \
351do { \
352 static DEFINE_RATELIMIT_STATE(_rs, \
353 DEFAULT_RATELIMIT_INTERVAL, \
354 DEFAULT_RATELIMIT_BURST); \
355 DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, fmt); \
356 if (unlikely(descriptor.flags & _DPRINTK_FLAGS_PRINT) && \
357 __ratelimit(&_rs)) \
358 __dynamic_pr_debug(&descriptor, fmt, ##__VA_ARGS__); \
359} while (0)
360#elif defined(DEBUG)
Joe Perches6ec42a562011-01-12 16:59:47 -0800361#define pr_debug_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800362 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
363#else
364#define pr_debug_ratelimited(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800365 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800366#endif
367
Kay Sieverse11fea92012-05-03 02:29:41 +0200368extern const struct file_operations kmsg_fops;
369
Joe Perchesac83ed62011-01-12 16:59:47 -0800370enum {
371 DUMP_PREFIX_NONE,
372 DUMP_PREFIX_ADDRESS,
373 DUMP_PREFIX_OFFSET
374};
375extern void hex_dump_to_buffer(const void *buf, size_t len,
376 int rowsize, int groupsize,
377 char *linebuf, size_t linebuflen, bool ascii);
378#ifdef CONFIG_PRINTK
379extern void print_hex_dump(const char *level, const char *prefix_str,
380 int prefix_type, int rowsize, int groupsize,
381 const void *buf, size_t len, bool ascii);
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500382#if defined(CONFIG_DYNAMIC_DEBUG)
383#define print_hex_dump_bytes(prefix_str, prefix_type, buf, len) \
384 dynamic_hex_dump(prefix_str, prefix_type, 16, 1, buf, len, true)
385#else
Joe Perchesac83ed62011-01-12 16:59:47 -0800386extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
387 const void *buf, size_t len);
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500388#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
Joe Perchesac83ed62011-01-12 16:59:47 -0800389#else
390static inline void print_hex_dump(const char *level, const char *prefix_str,
391 int prefix_type, int rowsize, int groupsize,
392 const void *buf, size_t len, bool ascii)
393{
394}
395static inline void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
396 const void *buf, size_t len)
397{
398}
399
400#endif
401
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500402#if defined(CONFIG_DYNAMIC_DEBUG)
403#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
404 groupsize, buf, len, ascii) \
405 dynamic_hex_dump(prefix_str, prefix_type, rowsize, \
406 groupsize, buf, len, ascii)
407#else
408#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
409 groupsize, buf, len, ascii) \
410 print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, rowsize, \
411 groupsize, buf, len, ascii)
412#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
413
Linus Torvalds968ab182010-11-15 13:37:37 -0800414#endif