blob: 26fb95ce5080dec51eb9c1f654ac81af87e53a07 [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/*
Neil Horman0a9a8bf2013-12-23 08:29:42 -050091 * DEPRECATED
92 * Add this to a message whenever you want to warn user space about the use
93 * of a deprecated aspect of an API so they can stop using it
94 */
95#define DEPRECATED "[Deprecated]: "
96
97/*
Joe Perches5264f2f2011-01-12 16:59:45 -080098 * Dummy printk for disabled debugging statements to use whilst maintaining
99 * gcc's format and side-effect checking.
100 */
Joe Perchesb9075fa2011-10-31 17:11:33 -0700101static inline __printf(1, 2)
Joe Perches5264f2f2011-01-12 16:59:45 -0800102int no_printk(const char *fmt, ...)
103{
104 return 0;
105}
106
Thomas Gleixnerd0380e62013-04-29 16:17:18 -0700107#ifdef CONFIG_EARLY_PRINTK
Joe Perchesb9075fa2011-10-31 17:11:33 -0700108extern asmlinkage __printf(1, 2)
Joe Perches5264f2f2011-01-12 16:59:45 -0800109void early_printk(const char *fmt, ...);
Thomas Gleixnerd0380e62013-04-29 16:17:18 -0700110void early_vprintk(const char *fmt, va_list ap);
111#else
112static inline __printf(1, 2) __cold
113void early_printk(const char *s, ...) { }
114#endif
Joe Perches5264f2f2011-01-12 16:59:45 -0800115
Linus Torvalds968ab182010-11-15 13:37:37 -0800116#ifdef CONFIG_PRINTK
Kay Sievers7ff95542012-05-03 02:29:13 +0200117asmlinkage __printf(5, 0)
118int vprintk_emit(int facility, int level,
119 const char *dict, size_t dictlen,
120 const char *fmt, va_list args);
121
Joe Perchesb9075fa2011-10-31 17:11:33 -0700122asmlinkage __printf(1, 0)
Joe Perches5264f2f2011-01-12 16:59:45 -0800123int vprintk(const char *fmt, va_list args);
Kay Sievers7ff95542012-05-03 02:29:13 +0200124
125asmlinkage __printf(5, 6) __cold
126asmlinkage int printk_emit(int facility, int level,
127 const char *dict, size_t dictlen,
128 const char *fmt, ...);
129
Joe Perchesb9075fa2011-10-31 17:11:33 -0700130asmlinkage __printf(1, 2) __cold
Joe Perches5264f2f2011-01-12 16:59:45 -0800131int printk(const char *fmt, ...);
Linus Torvalds968ab182010-11-15 13:37:37 -0800132
133/*
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100134 * Special printk facility for scheduler use only, _DO_NOT_USE_ !
135 */
136__printf(1, 2) __cold int printk_sched(const char *fmt, ...);
137
138/*
Linus Torvalds968ab182010-11-15 13:37:37 -0800139 * Please don't use printk_ratelimit(), because it shares ratelimiting state
140 * with all other unrelated printk_ratelimit() callsites. Instead use
141 * printk_ratelimited() or plain old __ratelimit().
142 */
143extern int __printk_ratelimit(const char *func);
144#define printk_ratelimit() __printk_ratelimit(__func__)
145extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
146 unsigned int interval_msec);
147
148extern int printk_delay_msec;
149extern int dmesg_restrict;
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800150extern int kptr_restrict;
Linus Torvalds968ab182010-11-15 13:37:37 -0800151
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -0700152extern void wake_up_klogd(void);
153
Linus Torvalds968ab182010-11-15 13:37:37 -0800154void log_buf_kexec_setup(void);
Mike Travis162a7e72011-05-24 17:13:20 -0700155void __init setup_log_buf(int early);
Tejun Heo98e5e1b2013-04-30 15:27:15 -0700156void dump_stack_set_arch_desc(const char *fmt, ...);
Tejun Heo196779b2013-04-30 15:27:12 -0700157void dump_stack_print_info(const char *log_lvl);
Tejun Heoa43cb952013-04-30 15:27:17 -0700158void show_regs_print_info(const char *log_lvl);
Linus Torvalds968ab182010-11-15 13:37:37 -0800159#else
Joe Perchesb9075fa2011-10-31 17:11:33 -0700160static inline __printf(1, 0)
Joe Perches5264f2f2011-01-12 16:59:45 -0800161int vprintk(const char *s, va_list args)
162{
163 return 0;
164}
Joe Perchesb9075fa2011-10-31 17:11:33 -0700165static inline __printf(1, 2) __cold
Joe Perches5264f2f2011-01-12 16:59:45 -0800166int printk(const char *s, ...)
167{
168 return 0;
169}
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100170static inline __printf(1, 2) __cold
171int printk_sched(const char *s, ...)
172{
173 return 0;
174}
Joe Perches5264f2f2011-01-12 16:59:45 -0800175static inline int printk_ratelimit(void)
176{
177 return 0;
178}
179static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies,
180 unsigned int interval_msec)
181{
182 return false;
183}
Linus Torvalds968ab182010-11-15 13:37:37 -0800184
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -0700185static inline void wake_up_klogd(void)
186{
187}
188
Linus Torvalds968ab182010-11-15 13:37:37 -0800189static inline void log_buf_kexec_setup(void)
190{
191}
Mike Travis162a7e72011-05-24 17:13:20 -0700192
193static inline void setup_log_buf(int early)
194{
195}
Tejun Heo196779b2013-04-30 15:27:12 -0700196
Tejun Heo98e5e1b2013-04-30 15:27:15 -0700197static inline void dump_stack_set_arch_desc(const char *fmt, ...)
198{
199}
200
Tejun Heo196779b2013-04-30 15:27:12 -0700201static inline void dump_stack_print_info(const char *log_lvl)
202{
203}
Tejun Heoa43cb952013-04-30 15:27:17 -0700204
205static inline void show_regs_print_info(const char *log_lvl)
206{
207}
Linus Torvalds968ab182010-11-15 13:37:37 -0800208#endif
209
Andi Kleenb6c035d2013-08-05 15:02:48 -0700210extern asmlinkage void dump_stack(void) __cold;
Linus Torvalds968ab182010-11-15 13:37:37 -0800211
Linus Torvalds968ab182010-11-15 13:37:37 -0800212#ifndef pr_fmt
213#define pr_fmt(fmt) fmt
214#endif
215
216#define pr_emerg(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800217 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800218#define pr_alert(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800219 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800220#define pr_crit(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800221 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800222#define pr_err(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800223 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800224#define pr_warning(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800225 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800226#define pr_warn pr_warning
227#define pr_notice(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800228 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800229#define pr_info(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800230 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800231#define pr_cont(fmt, ...) \
232 printk(KERN_CONT fmt, ##__VA_ARGS__)
233
234/* pr_devel() should produce zero code unless DEBUG is defined */
235#ifdef DEBUG
236#define pr_devel(fmt, ...) \
237 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
238#else
239#define pr_devel(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800240 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800241#endif
242
Joe Perches29fc2bc2013-10-26 20:41:53 -0700243#include <linux/dynamic_debug.h>
244
Linus Torvalds968ab182010-11-15 13:37:37 -0800245/* If you are writing a driver, please use dev_dbg instead */
Jim Cromieb558c962011-12-19 17:11:18 -0500246#if defined(CONFIG_DYNAMIC_DEBUG)
Linus Torvalds968ab182010-11-15 13:37:37 -0800247/* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */
248#define pr_debug(fmt, ...) \
249 dynamic_pr_debug(fmt, ##__VA_ARGS__)
Jim Cromieb558c962011-12-19 17:11:18 -0500250#elif defined(DEBUG)
251#define pr_debug(fmt, ...) \
252 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800253#else
254#define pr_debug(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800255 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800256#endif
257
258/*
Joe Perches16cb8392011-01-12 16:59:46 -0800259 * Print a one-time message (analogous to WARN_ONCE() et al):
260 */
261
262#ifdef CONFIG_PRINTK
263#define printk_once(fmt, ...) \
264({ \
265 static bool __print_once; \
266 \
267 if (!__print_once) { \
268 __print_once = true; \
269 printk(fmt, ##__VA_ARGS__); \
270 } \
271})
272#else
273#define printk_once(fmt, ...) \
274 no_printk(fmt, ##__VA_ARGS__)
275#endif
276
277#define pr_emerg_once(fmt, ...) \
278 printk_once(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
279#define pr_alert_once(fmt, ...) \
280 printk_once(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
281#define pr_crit_once(fmt, ...) \
282 printk_once(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
283#define pr_err_once(fmt, ...) \
284 printk_once(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
285#define pr_warn_once(fmt, ...) \
286 printk_once(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
287#define pr_notice_once(fmt, ...) \
288 printk_once(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
289#define pr_info_once(fmt, ...) \
290 printk_once(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
291#define pr_cont_once(fmt, ...) \
292 printk_once(KERN_CONT pr_fmt(fmt), ##__VA_ARGS__)
Mikhail Gruzdev36d308d2013-02-21 16:43:10 -0800293
294#if defined(DEBUG)
295#define pr_devel_once(fmt, ...) \
296 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
297#else
298#define pr_devel_once(fmt, ...) \
299 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
300#endif
301
Joe Perches16cb8392011-01-12 16:59:46 -0800302/* If you are writing a driver, please use dev_dbg instead */
303#if defined(DEBUG)
304#define pr_debug_once(fmt, ...) \
305 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
306#else
307#define pr_debug_once(fmt, ...) \
308 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
309#endif
310
311/*
Linus Torvalds968ab182010-11-15 13:37:37 -0800312 * ratelimited messages with local ratelimit_state,
313 * no local ratelimit_state used in the !PRINTK case
314 */
315#ifdef CONFIG_PRINTK
Joe Perches6ec42a562011-01-12 16:59:47 -0800316#define printk_ratelimited(fmt, ...) \
317({ \
Linus Torvalds968ab182010-11-15 13:37:37 -0800318 static DEFINE_RATELIMIT_STATE(_rs, \
319 DEFAULT_RATELIMIT_INTERVAL, \
320 DEFAULT_RATELIMIT_BURST); \
321 \
322 if (__ratelimit(&_rs)) \
323 printk(fmt, ##__VA_ARGS__); \
324})
325#else
Joe Perches6ec42a562011-01-12 16:59:47 -0800326#define printk_ratelimited(fmt, ...) \
327 no_printk(fmt, ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800328#endif
329
Joe Perches6ec42a562011-01-12 16:59:47 -0800330#define pr_emerg_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800331 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800332#define pr_alert_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800333 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800334#define pr_crit_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800335 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800336#define pr_err_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800337 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800338#define pr_warn_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800339 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800340#define pr_notice_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800341 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800342#define pr_info_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800343 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
344/* no pr_cont_ratelimited, don't do that... */
Mikhail Gruzdev36d308d2013-02-21 16:43:10 -0800345
346#if defined(DEBUG)
347#define pr_devel_ratelimited(fmt, ...) \
348 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
349#else
350#define pr_devel_ratelimited(fmt, ...) \
351 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
352#endif
353
Linus Torvalds968ab182010-11-15 13:37:37 -0800354/* If you are writing a driver, please use dev_dbg instead */
Joe Perches29fc2bc2013-10-26 20:41:53 -0700355#if defined(CONFIG_DYNAMIC_DEBUG)
356/* descriptor check is first to prevent flooding with "callbacks suppressed" */
357#define pr_debug_ratelimited(fmt, ...) \
358do { \
359 static DEFINE_RATELIMIT_STATE(_rs, \
360 DEFAULT_RATELIMIT_INTERVAL, \
361 DEFAULT_RATELIMIT_BURST); \
362 DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, fmt); \
363 if (unlikely(descriptor.flags & _DPRINTK_FLAGS_PRINT) && \
364 __ratelimit(&_rs)) \
365 __dynamic_pr_debug(&descriptor, fmt, ##__VA_ARGS__); \
366} while (0)
367#elif defined(DEBUG)
Joe Perches6ec42a562011-01-12 16:59:47 -0800368#define pr_debug_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800369 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
370#else
371#define pr_debug_ratelimited(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800372 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800373#endif
374
Kay Sieverse11fea92012-05-03 02:29:41 +0200375extern const struct file_operations kmsg_fops;
376
Joe Perchesac83ed62011-01-12 16:59:47 -0800377enum {
378 DUMP_PREFIX_NONE,
379 DUMP_PREFIX_ADDRESS,
380 DUMP_PREFIX_OFFSET
381};
382extern void hex_dump_to_buffer(const void *buf, size_t len,
383 int rowsize, int groupsize,
384 char *linebuf, size_t linebuflen, bool ascii);
385#ifdef CONFIG_PRINTK
386extern void print_hex_dump(const char *level, const char *prefix_str,
387 int prefix_type, int rowsize, int groupsize,
388 const void *buf, size_t len, bool ascii);
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500389#if defined(CONFIG_DYNAMIC_DEBUG)
390#define print_hex_dump_bytes(prefix_str, prefix_type, buf, len) \
391 dynamic_hex_dump(prefix_str, prefix_type, 16, 1, buf, len, true)
392#else
Joe Perchesac83ed62011-01-12 16:59:47 -0800393extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
394 const void *buf, size_t len);
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500395#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
Joe Perchesac83ed62011-01-12 16:59:47 -0800396#else
397static inline void print_hex_dump(const char *level, const char *prefix_str,
398 int prefix_type, int rowsize, int groupsize,
399 const void *buf, size_t len, bool ascii)
400{
401}
402static inline void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
403 const void *buf, size_t len)
404{
405}
406
407#endif
408
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500409#if defined(CONFIG_DYNAMIC_DEBUG)
410#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
411 groupsize, buf, len, ascii) \
412 dynamic_hex_dump(prefix_str, prefix_type, rowsize, \
413 groupsize, buf, len, ascii)
414#else
415#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
416 groupsize, buf, len, ascii) \
417 print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, rowsize, \
418 groupsize, buf, len, ascii)
419#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
420
Linus Torvalds968ab182010-11-15 13:37:37 -0800421#endif