printk: tweak do_syslog() to match comments
[linux-2.6-block.git] / include / linux / printk.h
CommitLineData
968ab183
LT
1#ifndef __KERNEL_PRINTK__
2#define __KERNEL_PRINTK__
3
1b2c289b 4#include <stdarg.h>
162a7e75 5#include <linux/init.h>
314ba352 6#include <linux/kern_levels.h>
154c2670 7#include <linux/linkage.h>
c28aa1f0 8#include <linux/cache.h>
162a7e75 9
968ab183
LT
10extern const char linux_banner[];
11extern const char linux_proc_banner[];
12
acc8fa41
JP
13static inline int printk_get_level(const char *buffer)
14{
04d2c8c8 15 if (buffer[0] == KERN_SOH_ASCII && buffer[1]) {
acc8fa41
JP
16 switch (buffer[1]) {
17 case '0' ... '7':
18 case 'd': /* KERN_DEFAULT */
acc8fa41
JP
19 return buffer[1];
20 }
21 }
22 return 0;
23}
24
25static inline const char *printk_skip_level(const char *buffer)
26{
0185698c
PM
27 if (printk_get_level(buffer))
28 return buffer + 2;
29
acc8fa41
JP
30 return buffer;
31}
32
a8fe19eb
BP
33/* printk's without a loglevel use this.. */
34#define DEFAULT_MESSAGE_LOGLEVEL CONFIG_DEFAULT_MESSAGE_LOGLEVEL
35
36/* We show everything that is MORE important than this.. */
37#define CONSOLE_LOGLEVEL_SILENT 0 /* Mum's the word */
38#define CONSOLE_LOGLEVEL_MIN 1 /* Minimum loglevel we let people use */
39#define CONSOLE_LOGLEVEL_QUIET 4 /* Shhh ..., when booted with "quiet" */
40#define CONSOLE_LOGLEVEL_DEFAULT 7 /* anything MORE serious than KERN_DEBUG */
41#define CONSOLE_LOGLEVEL_DEBUG 10 /* issue debug messages */
42#define CONSOLE_LOGLEVEL_MOTORMOUTH 15 /* You can't shut this one up */
43
968ab183
LT
44extern int console_printk[];
45
46#define console_loglevel (console_printk[0])
47#define default_message_loglevel (console_printk[1])
48#define minimum_console_loglevel (console_printk[2])
49#define default_console_loglevel (console_printk[3])
50
a9747cc3
JP
51static inline void console_silent(void)
52{
a8fe19eb 53 console_loglevel = CONSOLE_LOGLEVEL_SILENT;
a9747cc3
JP
54}
55
56static inline void console_verbose(void)
57{
58 if (console_loglevel)
a8fe19eb 59 console_loglevel = CONSOLE_LOGLEVEL_MOTORMOUTH;
a9747cc3
JP
60}
61
968ab183
LT
62struct va_format {
63 const char *fmt;
64 va_list *va;
65};
66
67/*
68 * FW_BUG
69 * Add this to a message where you are sure the firmware is buggy or behaves
70 * really stupid or out of spec. Be aware that the responsible BIOS developer
71 * should be able to fix this issue or at least get a concrete idea of the
72 * problem by reading your message without the need of looking at the kernel
73 * code.
74 *
75 * Use it for definite and high priority BIOS bugs.
76 *
77 * FW_WARN
78 * Use it for not that clear (e.g. could the kernel messed up things already?)
79 * and medium priority BIOS bugs.
80 *
81 * FW_INFO
82 * Use this one if you want to tell the user or vendor about something
83 * suspicious, but generally harmless related to the firmware.
84 *
85 * Use it for information or very low priority BIOS bugs.
86 */
87#define FW_BUG "[Firmware Bug]: "
88#define FW_WARN "[Firmware Warn]: "
89#define FW_INFO "[Firmware Info]: "
90
91/*
92 * HW_ERR
93 * Add this to a message for hardware errors, so that user can report
94 * it to hardware vendor instead of LKML or software vendor.
95 */
96#define HW_ERR "[Hardware Error]: "
97
0a9a8bfd
NH
98/*
99 * DEPRECATED
100 * Add this to a message whenever you want to warn user space about the use
101 * of a deprecated aspect of an API so they can stop using it
102 */
103#define DEPRECATED "[Deprecated]: "
104
5264f2f7
JP
105/*
106 * Dummy printk for disabled debugging statements to use whilst maintaining
107 * gcc's format and side-effect checking.
108 */
b9075fa9 109static inline __printf(1, 2)
5264f2f7
JP
110int no_printk(const char *fmt, ...)
111{
112 return 0;
113}
114
d0380e6c 115#ifdef CONFIG_EARLY_PRINTK
b9075fa9 116extern asmlinkage __printf(1, 2)
5264f2f7 117void early_printk(const char *fmt, ...);
d0380e6c
TG
118void early_vprintk(const char *fmt, va_list ap);
119#else
120static inline __printf(1, 2) __cold
121void early_printk(const char *s, ...) { }
122#endif
5264f2f7 123
968ab183 124#ifdef CONFIG_PRINTK
7ff9554b
KS
125asmlinkage __printf(5, 0)
126int vprintk_emit(int facility, int level,
127 const char *dict, size_t dictlen,
128 const char *fmt, va_list args);
129
b9075fa9 130asmlinkage __printf(1, 0)
5264f2f7 131int vprintk(const char *fmt, va_list args);
7ff9554b
KS
132
133asmlinkage __printf(5, 6) __cold
d487d575
SK
134int printk_emit(int facility, int level,
135 const char *dict, size_t dictlen,
136 const char *fmt, ...);
7ff9554b 137
b9075fa9 138asmlinkage __printf(1, 2) __cold
5264f2f7 139int printk(const char *fmt, ...);
968ab183 140
3ccf3e83 141/*
aac74dc4 142 * Special printk facility for scheduler/timekeeping use only, _DO_NOT_USE_ !
3ccf3e83 143 */
aac74dc4 144__printf(1, 2) __cold int printk_deferred(const char *fmt, ...);
3ccf3e83 145
968ab183
LT
146/*
147 * Please don't use printk_ratelimit(), because it shares ratelimiting state
148 * with all other unrelated printk_ratelimit() callsites. Instead use
149 * printk_ratelimited() or plain old __ratelimit().
150 */
151extern int __printk_ratelimit(const char *func);
152#define printk_ratelimit() __printk_ratelimit(__func__)
153extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
154 unsigned int interval_msec);
155
156extern int printk_delay_msec;
157extern int dmesg_restrict;
455cd5ab 158extern int kptr_restrict;
968ab183 159
dc72c32e
FW
160extern void wake_up_klogd(void);
161
968ab183 162void log_buf_kexec_setup(void);
162a7e75 163void __init setup_log_buf(int early);
98e5e1bf 164void dump_stack_set_arch_desc(const char *fmt, ...);
196779b9 165void dump_stack_print_info(const char *log_lvl);
a43cb95d 166void show_regs_print_info(const char *log_lvl);
968ab183 167#else
b9075fa9 168static inline __printf(1, 0)
5264f2f7
JP
169int vprintk(const char *s, va_list args)
170{
171 return 0;
172}
b9075fa9 173static inline __printf(1, 2) __cold
5264f2f7
JP
174int printk(const char *s, ...)
175{
176 return 0;
177}
3ccf3e83 178static inline __printf(1, 2) __cold
aac74dc4 179int printk_deferred(const char *s, ...)
3ccf3e83
PZ
180{
181 return 0;
182}
5264f2f7
JP
183static inline int printk_ratelimit(void)
184{
185 return 0;
186}
187static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies,
188 unsigned int interval_msec)
189{
190 return false;
191}
968ab183 192
dc72c32e
FW
193static inline void wake_up_klogd(void)
194{
195}
196
968ab183
LT
197static inline void log_buf_kexec_setup(void)
198{
199}
162a7e75
MT
200
201static inline void setup_log_buf(int early)
202{
203}
196779b9 204
98e5e1bf
TH
205static inline void dump_stack_set_arch_desc(const char *fmt, ...)
206{
207}
208
196779b9
TH
209static inline void dump_stack_print_info(const char *log_lvl)
210{
211}
a43cb95d
TH
212
213static inline void show_regs_print_info(const char *log_lvl)
214{
215}
968ab183
LT
216#endif
217
b6c035d0 218extern asmlinkage void dump_stack(void) __cold;
968ab183 219
968ab183
LT
220#ifndef pr_fmt
221#define pr_fmt(fmt) fmt
222#endif
223
6e099f55
DS
224/*
225 * These can be used to print at the various log levels.
226 * All of these will print unconditionally, although note that pr_debug()
227 * and other debug macros are compiled out unless either DEBUG is defined
228 * or CONFIG_DYNAMIC_DEBUG is set.
229 */
968ab183 230#define pr_emerg(fmt, ...) \
a3f938bf 231 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
968ab183 232#define pr_alert(fmt, ...) \
a3f938bf 233 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
968ab183 234#define pr_crit(fmt, ...) \
a3f938bf 235 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
968ab183 236#define pr_err(fmt, ...) \
a3f938bf 237 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
968ab183 238#define pr_warning(fmt, ...) \
a3f938bf 239 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
968ab183
LT
240#define pr_warn pr_warning
241#define pr_notice(fmt, ...) \
a3f938bf 242 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
968ab183 243#define pr_info(fmt, ...) \
a3f938bf 244 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
968ab183
LT
245#define pr_cont(fmt, ...) \
246 printk(KERN_CONT fmt, ##__VA_ARGS__)
247
248/* pr_devel() should produce zero code unless DEBUG is defined */
249#ifdef DEBUG
250#define pr_devel(fmt, ...) \
251 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
252#else
253#define pr_devel(fmt, ...) \
5264f2f7 254 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
968ab183
LT
255#endif
256
29fc2bc7
JP
257#include <linux/dynamic_debug.h>
258
968ab183 259/* If you are writing a driver, please use dev_dbg instead */
b558c96f 260#if defined(CONFIG_DYNAMIC_DEBUG)
968ab183
LT
261/* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */
262#define pr_debug(fmt, ...) \
263 dynamic_pr_debug(fmt, ##__VA_ARGS__)
b558c96f
JC
264#elif defined(DEBUG)
265#define pr_debug(fmt, ...) \
266 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
968ab183
LT
267#else
268#define pr_debug(fmt, ...) \
5264f2f7 269 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
968ab183
LT
270#endif
271
16cb839f
JP
272/*
273 * Print a one-time message (analogous to WARN_ONCE() et al):
274 */
275
276#ifdef CONFIG_PRINTK
c28aa1f0
JP
277#define printk_once(fmt, ...) \
278({ \
279 static bool __print_once __read_mostly; \
280 \
281 if (!__print_once) { \
282 __print_once = true; \
283 printk(fmt, ##__VA_ARGS__); \
284 } \
16cb839f 285})
c224815d
JS
286#define printk_deferred_once(fmt, ...) \
287({ \
288 static bool __print_once __read_mostly; \
289 \
290 if (!__print_once) { \
291 __print_once = true; \
292 printk_deferred(fmt, ##__VA_ARGS__); \
293 } \
294})
16cb839f 295#else
c28aa1f0 296#define printk_once(fmt, ...) \
16cb839f 297 no_printk(fmt, ##__VA_ARGS__)
c224815d
JS
298#define printk_deferred_once(fmt, ...) \
299 no_printk(fmt, ##__VA_ARGS__)
16cb839f
JP
300#endif
301
302#define pr_emerg_once(fmt, ...) \
303 printk_once(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
304#define pr_alert_once(fmt, ...) \
305 printk_once(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
306#define pr_crit_once(fmt, ...) \
307 printk_once(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
308#define pr_err_once(fmt, ...) \
309 printk_once(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
310#define pr_warn_once(fmt, ...) \
311 printk_once(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
312#define pr_notice_once(fmt, ...) \
313 printk_once(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
314#define pr_info_once(fmt, ...) \
315 printk_once(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
316#define pr_cont_once(fmt, ...) \
317 printk_once(KERN_CONT pr_fmt(fmt), ##__VA_ARGS__)
36d308d8
MG
318
319#if defined(DEBUG)
320#define pr_devel_once(fmt, ...) \
321 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
322#else
323#define pr_devel_once(fmt, ...) \
324 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
325#endif
326
16cb839f
JP
327/* If you are writing a driver, please use dev_dbg instead */
328#if defined(DEBUG)
329#define pr_debug_once(fmt, ...) \
330 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
331#else
332#define pr_debug_once(fmt, ...) \
333 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
334#endif
335
968ab183
LT
336/*
337 * ratelimited messages with local ratelimit_state,
338 * no local ratelimit_state used in the !PRINTK case
339 */
340#ifdef CONFIG_PRINTK
6ec42a56
JP
341#define printk_ratelimited(fmt, ...) \
342({ \
968ab183
LT
343 static DEFINE_RATELIMIT_STATE(_rs, \
344 DEFAULT_RATELIMIT_INTERVAL, \
345 DEFAULT_RATELIMIT_BURST); \
346 \
347 if (__ratelimit(&_rs)) \
348 printk(fmt, ##__VA_ARGS__); \
349})
350#else
6ec42a56
JP
351#define printk_ratelimited(fmt, ...) \
352 no_printk(fmt, ##__VA_ARGS__)
968ab183
LT
353#endif
354
6ec42a56 355#define pr_emerg_ratelimited(fmt, ...) \
968ab183 356 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
6ec42a56 357#define pr_alert_ratelimited(fmt, ...) \
968ab183 358 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
6ec42a56 359#define pr_crit_ratelimited(fmt, ...) \
968ab183 360 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
6ec42a56 361#define pr_err_ratelimited(fmt, ...) \
968ab183 362 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
6ec42a56 363#define pr_warn_ratelimited(fmt, ...) \
968ab183 364 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
6ec42a56 365#define pr_notice_ratelimited(fmt, ...) \
968ab183 366 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
6ec42a56 367#define pr_info_ratelimited(fmt, ...) \
968ab183
LT
368 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
369/* no pr_cont_ratelimited, don't do that... */
36d308d8
MG
370
371#if defined(DEBUG)
372#define pr_devel_ratelimited(fmt, ...) \
373 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
374#else
375#define pr_devel_ratelimited(fmt, ...) \
376 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
377#endif
378
968ab183 379/* If you are writing a driver, please use dev_dbg instead */
29fc2bc7
JP
380#if defined(CONFIG_DYNAMIC_DEBUG)
381/* descriptor check is first to prevent flooding with "callbacks suppressed" */
382#define pr_debug_ratelimited(fmt, ...) \
383do { \
384 static DEFINE_RATELIMIT_STATE(_rs, \
385 DEFAULT_RATELIMIT_INTERVAL, \
386 DEFAULT_RATELIMIT_BURST); \
387 DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, fmt); \
388 if (unlikely(descriptor.flags & _DPRINTK_FLAGS_PRINT) && \
389 __ratelimit(&_rs)) \
390 __dynamic_pr_debug(&descriptor, fmt, ##__VA_ARGS__); \
391} while (0)
392#elif defined(DEBUG)
6ec42a56 393#define pr_debug_ratelimited(fmt, ...) \
968ab183
LT
394 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
395#else
396#define pr_debug_ratelimited(fmt, ...) \
5264f2f7 397 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
968ab183
LT
398#endif
399
e11fea92
KS
400extern const struct file_operations kmsg_fops;
401
ac83ed68
JP
402enum {
403 DUMP_PREFIX_NONE,
404 DUMP_PREFIX_ADDRESS,
405 DUMP_PREFIX_OFFSET
406};
407extern void hex_dump_to_buffer(const void *buf, size_t len,
408 int rowsize, int groupsize,
409 char *linebuf, size_t linebuflen, bool ascii);
410#ifdef CONFIG_PRINTK
411extern void print_hex_dump(const char *level, const char *prefix_str,
412 int prefix_type, int rowsize, int groupsize,
413 const void *buf, size_t len, bool ascii);
7a555613
VK
414#if defined(CONFIG_DYNAMIC_DEBUG)
415#define print_hex_dump_bytes(prefix_str, prefix_type, buf, len) \
416 dynamic_hex_dump(prefix_str, prefix_type, 16, 1, buf, len, true)
417#else
ac83ed68
JP
418extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
419 const void *buf, size_t len);
7a555613 420#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
ac83ed68
JP
421#else
422static inline void print_hex_dump(const char *level, const char *prefix_str,
423 int prefix_type, int rowsize, int groupsize,
424 const void *buf, size_t len, bool ascii)
425{
426}
427static inline void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
428 const void *buf, size_t len)
429{
430}
431
432#endif
433
7a555613
VK
434#if defined(CONFIG_DYNAMIC_DEBUG)
435#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
436 groupsize, buf, len, ascii) \
437 dynamic_hex_dump(prefix_str, prefix_type, rowsize, \
438 groupsize, buf, len, ascii)
439#else
440#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
441 groupsize, buf, len, ascii) \
442 print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, rowsize, \
443 groupsize, buf, len, ascii)
444#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
445
968ab183 446#endif