blob: 1249a54d17e0ab471501919dbdc8d63e27658c35 [file] [log] [blame]
Linus Torvalds968ab182010-11-15 13:37:37 -08001#ifndef __KERNEL_PRINTK__
2#define __KERNEL_PRINTK__
3
Mike Travis162a7e72011-05-24 17:13:20 -07004#include <linux/init.h>
Joe Perches314ba352012-07-30 14:40:11 -07005#include <linux/kern_levels.h>
Mike Travis162a7e72011-05-24 17:13:20 -07006
Linus Torvalds968ab182010-11-15 13:37:37 -08007extern const char linux_banner[];
8extern const char linux_proc_banner[];
9
Joe Perchesacc8fa412012-07-30 14:40:09 -070010static inline int printk_get_level(const char *buffer)
11{
Joe Perches04d2c8c2012-07-30 14:40:17 -070012 if (buffer[0] == KERN_SOH_ASCII && buffer[1]) {
Joe Perchesacc8fa412012-07-30 14:40:09 -070013 switch (buffer[1]) {
14 case '0' ... '7':
15 case 'd': /* KERN_DEFAULT */
Joe Perchesacc8fa412012-07-30 14:40:09 -070016 return buffer[1];
17 }
18 }
19 return 0;
20}
21
22static inline const char *printk_skip_level(const char *buffer)
23{
24 if (printk_get_level(buffer)) {
25 switch (buffer[1]) {
26 case '0' ... '7':
27 case 'd': /* KERN_DEFAULT */
Joe Perches04d2c8c2012-07-30 14:40:17 -070028 return buffer + 2;
Joe Perchesacc8fa412012-07-30 14:40:09 -070029 }
30 }
31 return buffer;
32}
33
Linus Torvalds968ab182010-11-15 13:37:37 -080034extern int console_printk[];
35
36#define console_loglevel (console_printk[0])
37#define default_message_loglevel (console_printk[1])
38#define minimum_console_loglevel (console_printk[2])
39#define default_console_loglevel (console_printk[3])
40
Joe Perchesa9747cc2011-01-12 16:59:43 -080041static inline void console_silent(void)
42{
43 console_loglevel = 0;
44}
45
46static inline void console_verbose(void)
47{
48 if (console_loglevel)
49 console_loglevel = 15;
50}
51
Linus Torvalds968ab182010-11-15 13:37:37 -080052struct va_format {
53 const char *fmt;
54 va_list *va;
55};
56
57/*
58 * FW_BUG
59 * Add this to a message where you are sure the firmware is buggy or behaves
60 * really stupid or out of spec. Be aware that the responsible BIOS developer
61 * should be able to fix this issue or at least get a concrete idea of the
62 * problem by reading your message without the need of looking at the kernel
63 * code.
64 *
65 * Use it for definite and high priority BIOS bugs.
66 *
67 * FW_WARN
68 * Use it for not that clear (e.g. could the kernel messed up things already?)
69 * and medium priority BIOS bugs.
70 *
71 * FW_INFO
72 * Use this one if you want to tell the user or vendor about something
73 * suspicious, but generally harmless related to the firmware.
74 *
75 * Use it for information or very low priority BIOS bugs.
76 */
77#define FW_BUG "[Firmware Bug]: "
78#define FW_WARN "[Firmware Warn]: "
79#define FW_INFO "[Firmware Info]: "
80
81/*
82 * HW_ERR
83 * Add this to a message for hardware errors, so that user can report
84 * it to hardware vendor instead of LKML or software vendor.
85 */
86#define HW_ERR "[Hardware Error]: "
87
Joe Perches5264f2f2011-01-12 16:59:45 -080088/*
89 * Dummy printk for disabled debugging statements to use whilst maintaining
90 * gcc's format and side-effect checking.
91 */
Joe Perchesb9075fa2011-10-31 17:11:33 -070092static inline __printf(1, 2)
Joe Perches5264f2f2011-01-12 16:59:45 -080093int no_printk(const char *fmt, ...)
94{
95 return 0;
96}
97
Joe Perchesb9075fa2011-10-31 17:11:33 -070098extern asmlinkage __printf(1, 2)
Joe Perches5264f2f2011-01-12 16:59:45 -080099void early_printk(const char *fmt, ...);
100
Linus Torvalds968ab182010-11-15 13:37:37 -0800101#ifdef CONFIG_PRINTK
Kay Sievers7ff95542012-05-03 02:29:13 +0200102asmlinkage __printf(5, 0)
103int vprintk_emit(int facility, int level,
104 const char *dict, size_t dictlen,
105 const char *fmt, va_list args);
106
Joe Perchesb9075fa2011-10-31 17:11:33 -0700107asmlinkage __printf(1, 0)
Joe Perches5264f2f2011-01-12 16:59:45 -0800108int vprintk(const char *fmt, va_list args);
Kay Sievers7ff95542012-05-03 02:29:13 +0200109
110asmlinkage __printf(5, 6) __cold
111asmlinkage int printk_emit(int facility, int level,
112 const char *dict, size_t dictlen,
113 const char *fmt, ...);
114
Joe Perchesb9075fa2011-10-31 17:11:33 -0700115asmlinkage __printf(1, 2) __cold
Joe Perches5264f2f2011-01-12 16:59:45 -0800116int printk(const char *fmt, ...);
Linus Torvalds968ab182010-11-15 13:37:37 -0800117
118/*
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100119 * Special printk facility for scheduler use only, _DO_NOT_USE_ !
120 */
121__printf(1, 2) __cold int printk_sched(const char *fmt, ...);
122
123/*
Linus Torvalds968ab182010-11-15 13:37:37 -0800124 * Please don't use printk_ratelimit(), because it shares ratelimiting state
125 * with all other unrelated printk_ratelimit() callsites. Instead use
126 * printk_ratelimited() or plain old __ratelimit().
127 */
128extern int __printk_ratelimit(const char *func);
129#define printk_ratelimit() __printk_ratelimit(__func__)
130extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
131 unsigned int interval_msec);
132
133extern int printk_delay_msec;
134extern int dmesg_restrict;
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800135extern int kptr_restrict;
Linus Torvalds968ab182010-11-15 13:37:37 -0800136
Linus Torvalds968ab182010-11-15 13:37:37 -0800137void log_buf_kexec_setup(void);
Mike Travis162a7e72011-05-24 17:13:20 -0700138void __init setup_log_buf(int early);
Linus Torvalds968ab182010-11-15 13:37:37 -0800139#else
Joe Perchesb9075fa2011-10-31 17:11:33 -0700140static inline __printf(1, 0)
Joe Perches5264f2f2011-01-12 16:59:45 -0800141int vprintk(const char *s, va_list args)
142{
143 return 0;
144}
Joe Perchesb9075fa2011-10-31 17:11:33 -0700145static inline __printf(1, 2) __cold
Joe Perches5264f2f2011-01-12 16:59:45 -0800146int printk(const char *s, ...)
147{
148 return 0;
149}
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100150static inline __printf(1, 2) __cold
151int printk_sched(const char *s, ...)
152{
153 return 0;
154}
Joe Perches5264f2f2011-01-12 16:59:45 -0800155static inline int printk_ratelimit(void)
156{
157 return 0;
158}
159static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies,
160 unsigned int interval_msec)
161{
162 return false;
163}
Linus Torvalds968ab182010-11-15 13:37:37 -0800164
Linus Torvalds968ab182010-11-15 13:37:37 -0800165static inline void log_buf_kexec_setup(void)
166{
167}
Mike Travis162a7e72011-05-24 17:13:20 -0700168
169static inline void setup_log_buf(int early)
170{
171}
Linus Torvalds968ab182010-11-15 13:37:37 -0800172#endif
173
Linus Torvalds968ab182010-11-15 13:37:37 -0800174extern void dump_stack(void) __cold;
175
Linus Torvalds968ab182010-11-15 13:37:37 -0800176#ifndef pr_fmt
177#define pr_fmt(fmt) fmt
178#endif
179
180#define pr_emerg(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800181 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800182#define pr_alert(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800183 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800184#define pr_crit(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800185 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800186#define pr_err(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800187 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800188#define pr_warning(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800189 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800190#define pr_warn pr_warning
191#define pr_notice(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800192 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800193#define pr_info(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800194 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800195#define pr_cont(fmt, ...) \
196 printk(KERN_CONT fmt, ##__VA_ARGS__)
197
198/* pr_devel() should produce zero code unless DEBUG is defined */
199#ifdef DEBUG
200#define pr_devel(fmt, ...) \
201 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
202#else
203#define pr_devel(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800204 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800205#endif
206
207/* If you are writing a driver, please use dev_dbg instead */
Jim Cromieb558c962011-12-19 17:11:18 -0500208#if defined(CONFIG_DYNAMIC_DEBUG)
Linus Torvalds968ab182010-11-15 13:37:37 -0800209/* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */
210#define pr_debug(fmt, ...) \
211 dynamic_pr_debug(fmt, ##__VA_ARGS__)
Jim Cromieb558c962011-12-19 17:11:18 -0500212#elif defined(DEBUG)
213#define pr_debug(fmt, ...) \
214 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800215#else
216#define pr_debug(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800217 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800218#endif
219
220/*
Joe Perches16cb8392011-01-12 16:59:46 -0800221 * Print a one-time message (analogous to WARN_ONCE() et al):
222 */
223
224#ifdef CONFIG_PRINTK
225#define printk_once(fmt, ...) \
226({ \
227 static bool __print_once; \
228 \
229 if (!__print_once) { \
230 __print_once = true; \
231 printk(fmt, ##__VA_ARGS__); \
232 } \
233})
234#else
235#define printk_once(fmt, ...) \
236 no_printk(fmt, ##__VA_ARGS__)
237#endif
238
239#define pr_emerg_once(fmt, ...) \
240 printk_once(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
241#define pr_alert_once(fmt, ...) \
242 printk_once(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
243#define pr_crit_once(fmt, ...) \
244 printk_once(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
245#define pr_err_once(fmt, ...) \
246 printk_once(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
247#define pr_warn_once(fmt, ...) \
248 printk_once(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
249#define pr_notice_once(fmt, ...) \
250 printk_once(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
251#define pr_info_once(fmt, ...) \
252 printk_once(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
253#define pr_cont_once(fmt, ...) \
254 printk_once(KERN_CONT pr_fmt(fmt), ##__VA_ARGS__)
Mikhail Gruzdev36d308d2013-02-21 16:43:10 -0800255
256#if defined(DEBUG)
257#define pr_devel_once(fmt, ...) \
258 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
259#else
260#define pr_devel_once(fmt, ...) \
261 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
262#endif
263
Joe Perches16cb8392011-01-12 16:59:46 -0800264/* If you are writing a driver, please use dev_dbg instead */
265#if defined(DEBUG)
266#define pr_debug_once(fmt, ...) \
267 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
268#else
269#define pr_debug_once(fmt, ...) \
270 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
271#endif
272
273/*
Linus Torvalds968ab182010-11-15 13:37:37 -0800274 * ratelimited messages with local ratelimit_state,
275 * no local ratelimit_state used in the !PRINTK case
276 */
277#ifdef CONFIG_PRINTK
Joe Perches6ec42a562011-01-12 16:59:47 -0800278#define printk_ratelimited(fmt, ...) \
279({ \
Linus Torvalds968ab182010-11-15 13:37:37 -0800280 static DEFINE_RATELIMIT_STATE(_rs, \
281 DEFAULT_RATELIMIT_INTERVAL, \
282 DEFAULT_RATELIMIT_BURST); \
283 \
284 if (__ratelimit(&_rs)) \
285 printk(fmt, ##__VA_ARGS__); \
286})
287#else
Joe Perches6ec42a562011-01-12 16:59:47 -0800288#define printk_ratelimited(fmt, ...) \
289 no_printk(fmt, ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800290#endif
291
Joe Perches6ec42a562011-01-12 16:59:47 -0800292#define pr_emerg_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800293 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800294#define pr_alert_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800295 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800296#define pr_crit_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800297 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800298#define pr_err_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800299 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800300#define pr_warn_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800301 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800302#define pr_notice_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800303 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800304#define pr_info_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800305 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
306/* no pr_cont_ratelimited, don't do that... */
Mikhail Gruzdev36d308d2013-02-21 16:43:10 -0800307
308#if defined(DEBUG)
309#define pr_devel_ratelimited(fmt, ...) \
310 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
311#else
312#define pr_devel_ratelimited(fmt, ...) \
313 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
314#endif
315
Linus Torvalds968ab182010-11-15 13:37:37 -0800316/* If you are writing a driver, please use dev_dbg instead */
317#if defined(DEBUG)
Joe Perches6ec42a562011-01-12 16:59:47 -0800318#define pr_debug_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800319 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
320#else
321#define pr_debug_ratelimited(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800322 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800323#endif
324
Kay Sieverse11fea92012-05-03 02:29:41 +0200325extern const struct file_operations kmsg_fops;
326
Joe Perchesac83ed62011-01-12 16:59:47 -0800327enum {
328 DUMP_PREFIX_NONE,
329 DUMP_PREFIX_ADDRESS,
330 DUMP_PREFIX_OFFSET
331};
332extern void hex_dump_to_buffer(const void *buf, size_t len,
333 int rowsize, int groupsize,
334 char *linebuf, size_t linebuflen, bool ascii);
335#ifdef CONFIG_PRINTK
336extern void print_hex_dump(const char *level, const char *prefix_str,
337 int prefix_type, int rowsize, int groupsize,
338 const void *buf, size_t len, bool ascii);
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500339#if defined(CONFIG_DYNAMIC_DEBUG)
340#define print_hex_dump_bytes(prefix_str, prefix_type, buf, len) \
341 dynamic_hex_dump(prefix_str, prefix_type, 16, 1, buf, len, true)
342#else
Joe Perchesac83ed62011-01-12 16:59:47 -0800343extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
344 const void *buf, size_t len);
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500345#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
Joe Perchesac83ed62011-01-12 16:59:47 -0800346#else
347static inline void print_hex_dump(const char *level, const char *prefix_str,
348 int prefix_type, int rowsize, int groupsize,
349 const void *buf, size_t len, bool ascii)
350{
351}
352static inline void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
353 const void *buf, size_t len)
354{
355}
356
357#endif
358
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500359#if defined(CONFIG_DYNAMIC_DEBUG)
360#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
361 groupsize, buf, len, ascii) \
362 dynamic_hex_dump(prefix_str, prefix_type, rowsize, \
363 groupsize, buf, len, ascii)
364#else
365#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
366 groupsize, buf, len, ascii) \
367 print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, rowsize, \
368 groupsize, buf, len, ascii)
369#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
370
Linus Torvalds968ab182010-11-15 13:37:37 -0800371#endif