Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 1 | #ifndef __KERNEL_PRINTK__ |
| 2 | #define __KERNEL_PRINTK__ |
| 3 | |
Andrew Morton | 1b2c289 | 2013-04-29 16:17:19 -0700 | [diff] [blame] | 4 | #include <stdarg.h> |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 5 | #include <linux/init.h> |
Joe Perches | 314ba35 | 2012-07-30 14:40:11 -0700 | [diff] [blame] | 6 | #include <linux/kern_levels.h> |
Ralf Baechle | 154c267 | 2013-05-21 10:51:10 +0200 | [diff] [blame] | 7 | #include <linux/linkage.h> |
Joe Perches | c28aa1f | 2014-01-23 15:54:16 -0800 | [diff] [blame] | 8 | #include <linux/cache.h> |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 9 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 10 | extern const char linux_banner[]; |
| 11 | extern const char linux_proc_banner[]; |
| 12 | |
Joe Perches | acc8fa41 | 2012-07-30 14:40:09 -0700 | [diff] [blame] | 13 | static inline int printk_get_level(const char *buffer) |
| 14 | { |
Joe Perches | 04d2c8c | 2012-07-30 14:40:17 -0700 | [diff] [blame] | 15 | if (buffer[0] == KERN_SOH_ASCII && buffer[1]) { |
Joe Perches | acc8fa41 | 2012-07-30 14:40:09 -0700 | [diff] [blame] | 16 | switch (buffer[1]) { |
| 17 | case '0' ... '7': |
| 18 | case 'd': /* KERN_DEFAULT */ |
Joe Perches | acc8fa41 | 2012-07-30 14:40:09 -0700 | [diff] [blame] | 19 | return buffer[1]; |
| 20 | } |
| 21 | } |
| 22 | return 0; |
| 23 | } |
| 24 | |
| 25 | static inline const char *printk_skip_level(const char *buffer) |
| 26 | { |
Petr Mladek | 0185698 | 2014-04-03 14:48:38 -0700 | [diff] [blame] | 27 | if (printk_get_level(buffer)) |
| 28 | return buffer + 2; |
| 29 | |
Joe Perches | acc8fa41 | 2012-07-30 14:40:09 -0700 | [diff] [blame] | 30 | return buffer; |
| 31 | } |
| 32 | |
Tejun Heo | d43ff43 | 2015-06-25 15:01:24 -0700 | [diff] [blame] | 33 | #define CONSOLE_EXT_LOG_MAX 8192 |
| 34 | |
Borislav Petkov | a8fe19e | 2014-06-04 16:11:46 -0700 | [diff] [blame] | 35 | /* printk's without a loglevel use this.. */ |
Alex Elder | 42a9dc0 | 2014-08-06 16:09:01 -0700 | [diff] [blame] | 36 | #define MESSAGE_LOGLEVEL_DEFAULT CONFIG_MESSAGE_LOGLEVEL_DEFAULT |
Borislav Petkov | a8fe19e | 2014-06-04 16:11:46 -0700 | [diff] [blame] | 37 | |
| 38 | /* We show everything that is MORE important than this.. */ |
| 39 | #define CONSOLE_LOGLEVEL_SILENT 0 /* Mum's the word */ |
| 40 | #define CONSOLE_LOGLEVEL_MIN 1 /* Minimum loglevel we let people use */ |
| 41 | #define CONSOLE_LOGLEVEL_QUIET 4 /* Shhh ..., when booted with "quiet" */ |
| 42 | #define CONSOLE_LOGLEVEL_DEFAULT 7 /* anything MORE serious than KERN_DEBUG */ |
| 43 | #define CONSOLE_LOGLEVEL_DEBUG 10 /* issue debug messages */ |
| 44 | #define CONSOLE_LOGLEVEL_MOTORMOUTH 15 /* You can't shut this one up */ |
| 45 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 46 | extern int console_printk[]; |
| 47 | |
| 48 | #define console_loglevel (console_printk[0]) |
| 49 | #define default_message_loglevel (console_printk[1]) |
| 50 | #define minimum_console_loglevel (console_printk[2]) |
| 51 | #define default_console_loglevel (console_printk[3]) |
| 52 | |
Joe Perches | a9747cc | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 53 | static inline void console_silent(void) |
| 54 | { |
Borislav Petkov | a8fe19e | 2014-06-04 16:11:46 -0700 | [diff] [blame] | 55 | console_loglevel = CONSOLE_LOGLEVEL_SILENT; |
Joe Perches | a9747cc | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | static inline void console_verbose(void) |
| 59 | { |
| 60 | if (console_loglevel) |
Borislav Petkov | a8fe19e | 2014-06-04 16:11:46 -0700 | [diff] [blame] | 61 | console_loglevel = CONSOLE_LOGLEVEL_MOTORMOUTH; |
Joe Perches | a9747cc | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 62 | } |
| 63 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 64 | struct va_format { |
| 65 | const char *fmt; |
| 66 | va_list *va; |
| 67 | }; |
| 68 | |
| 69 | /* |
| 70 | * FW_BUG |
| 71 | * Add this to a message where you are sure the firmware is buggy or behaves |
| 72 | * really stupid or out of spec. Be aware that the responsible BIOS developer |
| 73 | * should be able to fix this issue or at least get a concrete idea of the |
| 74 | * problem by reading your message without the need of looking at the kernel |
| 75 | * code. |
| 76 | * |
| 77 | * Use it for definite and high priority BIOS bugs. |
| 78 | * |
| 79 | * FW_WARN |
| 80 | * Use it for not that clear (e.g. could the kernel messed up things already?) |
| 81 | * and medium priority BIOS bugs. |
| 82 | * |
| 83 | * FW_INFO |
| 84 | * Use this one if you want to tell the user or vendor about something |
| 85 | * suspicious, but generally harmless related to the firmware. |
| 86 | * |
| 87 | * Use it for information or very low priority BIOS bugs. |
| 88 | */ |
| 89 | #define FW_BUG "[Firmware Bug]: " |
| 90 | #define FW_WARN "[Firmware Warn]: " |
| 91 | #define FW_INFO "[Firmware Info]: " |
| 92 | |
| 93 | /* |
| 94 | * HW_ERR |
| 95 | * Add this to a message for hardware errors, so that user can report |
| 96 | * it to hardware vendor instead of LKML or software vendor. |
| 97 | */ |
| 98 | #define HW_ERR "[Hardware Error]: " |
| 99 | |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 100 | /* |
Neil Horman | 0a9a8bf | 2013-12-23 08:29:42 -0500 | [diff] [blame] | 101 | * DEPRECATED |
| 102 | * Add this to a message whenever you want to warn user space about the use |
| 103 | * of a deprecated aspect of an API so they can stop using it |
| 104 | */ |
| 105 | #define DEPRECATED "[Deprecated]: " |
| 106 | |
| 107 | /* |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 108 | * Dummy printk for disabled debugging statements to use whilst maintaining |
| 109 | * gcc's format and side-effect checking. |
| 110 | */ |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 111 | static inline __printf(1, 2) |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 112 | int no_printk(const char *fmt, ...) |
| 113 | { |
| 114 | return 0; |
| 115 | } |
| 116 | |
Thomas Gleixner | d0380e6 | 2013-04-29 16:17:18 -0700 | [diff] [blame] | 117 | #ifdef CONFIG_EARLY_PRINTK |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 118 | extern asmlinkage __printf(1, 2) |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 119 | void early_printk(const char *fmt, ...); |
Thomas Gleixner | d0380e6 | 2013-04-29 16:17:18 -0700 | [diff] [blame] | 120 | #else |
| 121 | static inline __printf(1, 2) __cold |
| 122 | void early_printk(const char *s, ...) { } |
| 123 | #endif |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 124 | |
Nicolas Iooss | 8db1486 | 2015-07-17 16:23:42 -0700 | [diff] [blame] | 125 | typedef __printf(1, 0) int (*printk_func_t)(const char *fmt, va_list args); |
Steven Rostedt (Red Hat) | 04b74b2 | 2014-11-21 09:16:58 -0500 | [diff] [blame] | 126 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 127 | #ifdef CONFIG_PRINTK |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 128 | asmlinkage __printf(5, 0) |
| 129 | int vprintk_emit(int facility, int level, |
| 130 | const char *dict, size_t dictlen, |
| 131 | const char *fmt, va_list args); |
| 132 | |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 133 | asmlinkage __printf(1, 0) |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 134 | int vprintk(const char *fmt, va_list args); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 135 | |
| 136 | asmlinkage __printf(5, 6) __cold |
Simon Kågström | d487d57 | 2014-04-03 14:48:44 -0700 | [diff] [blame] | 137 | int printk_emit(int facility, int level, |
| 138 | const char *dict, size_t dictlen, |
| 139 | const char *fmt, ...); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 140 | |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 141 | asmlinkage __printf(1, 2) __cold |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 142 | int printk(const char *fmt, ...); |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 143 | |
| 144 | /* |
John Stultz | aac74dc | 2014-06-04 16:11:40 -0700 | [diff] [blame] | 145 | * Special printk facility for scheduler/timekeeping use only, _DO_NOT_USE_ ! |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 146 | */ |
John Stultz | aac74dc | 2014-06-04 16:11:40 -0700 | [diff] [blame] | 147 | __printf(1, 2) __cold int printk_deferred(const char *fmt, ...); |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 148 | |
| 149 | /* |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 150 | * Please don't use printk_ratelimit(), because it shares ratelimiting state |
| 151 | * with all other unrelated printk_ratelimit() callsites. Instead use |
| 152 | * printk_ratelimited() or plain old __ratelimit(). |
| 153 | */ |
| 154 | extern int __printk_ratelimit(const char *func); |
| 155 | #define printk_ratelimit() __printk_ratelimit(__func__) |
| 156 | extern bool printk_timed_ratelimit(unsigned long *caller_jiffies, |
| 157 | unsigned int interval_msec); |
| 158 | |
| 159 | extern int printk_delay_msec; |
| 160 | extern int dmesg_restrict; |
Dan Rosenberg | 455cd5a | 2011-01-12 16:59:41 -0800 | [diff] [blame] | 161 | extern int kptr_restrict; |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 162 | |
Frederic Weisbecker | dc72c32 | 2013-03-22 15:04:39 -0700 | [diff] [blame] | 163 | extern void wake_up_klogd(void); |
| 164 | |
Pranith Kumar | 07261ed | 2015-01-26 12:58:43 -0800 | [diff] [blame] | 165 | char *log_buf_addr_get(void); |
| 166 | u32 log_buf_len_get(void); |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 167 | void log_buf_kexec_setup(void); |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 168 | void __init setup_log_buf(int early); |
Nicolas Iooss | 8db1486 | 2015-07-17 16:23:42 -0700 | [diff] [blame] | 169 | __printf(1, 2) void dump_stack_set_arch_desc(const char *fmt, ...); |
Tejun Heo | 196779b | 2013-04-30 15:27:12 -0700 | [diff] [blame] | 170 | void dump_stack_print_info(const char *log_lvl); |
Tejun Heo | a43cb95 | 2013-04-30 15:27:17 -0700 | [diff] [blame] | 171 | void show_regs_print_info(const char *log_lvl); |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 172 | #else |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 173 | static inline __printf(1, 0) |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 174 | int vprintk(const char *s, va_list args) |
| 175 | { |
| 176 | return 0; |
| 177 | } |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 178 | static inline __printf(1, 2) __cold |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 179 | int printk(const char *s, ...) |
| 180 | { |
| 181 | return 0; |
| 182 | } |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 183 | static inline __printf(1, 2) __cold |
John Stultz | aac74dc | 2014-06-04 16:11:40 -0700 | [diff] [blame] | 184 | int printk_deferred(const char *s, ...) |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 185 | { |
| 186 | return 0; |
| 187 | } |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 188 | static inline int printk_ratelimit(void) |
| 189 | { |
| 190 | return 0; |
| 191 | } |
| 192 | static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies, |
| 193 | unsigned int interval_msec) |
| 194 | { |
| 195 | return false; |
| 196 | } |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 197 | |
Frederic Weisbecker | dc72c32 | 2013-03-22 15:04:39 -0700 | [diff] [blame] | 198 | static inline void wake_up_klogd(void) |
| 199 | { |
| 200 | } |
| 201 | |
Pranith Kumar | 07261ed | 2015-01-26 12:58:43 -0800 | [diff] [blame] | 202 | static inline char *log_buf_addr_get(void) |
| 203 | { |
| 204 | return NULL; |
| 205 | } |
| 206 | |
| 207 | static inline u32 log_buf_len_get(void) |
| 208 | { |
| 209 | return 0; |
| 210 | } |
| 211 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 212 | static inline void log_buf_kexec_setup(void) |
| 213 | { |
| 214 | } |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 215 | |
| 216 | static inline void setup_log_buf(int early) |
| 217 | { |
| 218 | } |
Tejun Heo | 196779b | 2013-04-30 15:27:12 -0700 | [diff] [blame] | 219 | |
Nicolas Iooss | 8db1486 | 2015-07-17 16:23:42 -0700 | [diff] [blame] | 220 | static inline __printf(1, 2) void dump_stack_set_arch_desc(const char *fmt, ...) |
Tejun Heo | 98e5e1b | 2013-04-30 15:27:15 -0700 | [diff] [blame] | 221 | { |
| 222 | } |
| 223 | |
Tejun Heo | 196779b | 2013-04-30 15:27:12 -0700 | [diff] [blame] | 224 | static inline void dump_stack_print_info(const char *log_lvl) |
| 225 | { |
| 226 | } |
Tejun Heo | a43cb95 | 2013-04-30 15:27:17 -0700 | [diff] [blame] | 227 | |
| 228 | static inline void show_regs_print_info(const char *log_lvl) |
| 229 | { |
| 230 | } |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 231 | #endif |
| 232 | |
Andi Kleen | b6c035d | 2013-08-05 15:02:48 -0700 | [diff] [blame] | 233 | extern asmlinkage void dump_stack(void) __cold; |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 234 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 235 | #ifndef pr_fmt |
| 236 | #define pr_fmt(fmt) fmt |
| 237 | #endif |
| 238 | |
Dan Streetman | 6e099f5 | 2014-06-04 16:11:44 -0700 | [diff] [blame] | 239 | /* |
| 240 | * These can be used to print at the various log levels. |
| 241 | * All of these will print unconditionally, although note that pr_debug() |
| 242 | * and other debug macros are compiled out unless either DEBUG is defined |
| 243 | * or CONFIG_DYNAMIC_DEBUG is set. |
| 244 | */ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 245 | #define pr_emerg(fmt, ...) \ |
Joe Perches | a3f938b | 2011-01-12 16:59:48 -0800 | [diff] [blame] | 246 | printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 247 | #define pr_alert(fmt, ...) \ |
Joe Perches | a3f938b | 2011-01-12 16:59:48 -0800 | [diff] [blame] | 248 | printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 249 | #define pr_crit(fmt, ...) \ |
Joe Perches | a3f938b | 2011-01-12 16:59:48 -0800 | [diff] [blame] | 250 | printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 251 | #define pr_err(fmt, ...) \ |
Joe Perches | a3f938b | 2011-01-12 16:59:48 -0800 | [diff] [blame] | 252 | printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 253 | #define pr_warning(fmt, ...) \ |
Joe Perches | a3f938b | 2011-01-12 16:59:48 -0800 | [diff] [blame] | 254 | printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 255 | #define pr_warn pr_warning |
| 256 | #define pr_notice(fmt, ...) \ |
Joe Perches | a3f938b | 2011-01-12 16:59:48 -0800 | [diff] [blame] | 257 | printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 258 | #define pr_info(fmt, ...) \ |
Joe Perches | a3f938b | 2011-01-12 16:59:48 -0800 | [diff] [blame] | 259 | printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) |
Steven Rostedt | 7b1460e | 2015-04-15 16:16:59 -0700 | [diff] [blame] | 260 | /* |
| 261 | * Like KERN_CONT, pr_cont() should only be used when continuing |
| 262 | * a line with no newline ('\n') enclosed. Otherwise it defaults |
| 263 | * back to KERN_DEFAULT. |
| 264 | */ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 265 | #define pr_cont(fmt, ...) \ |
| 266 | printk(KERN_CONT fmt, ##__VA_ARGS__) |
| 267 | |
| 268 | /* pr_devel() should produce zero code unless DEBUG is defined */ |
| 269 | #ifdef DEBUG |
| 270 | #define pr_devel(fmt, ...) \ |
| 271 | printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 272 | #else |
| 273 | #define pr_devel(fmt, ...) \ |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 274 | no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 275 | #endif |
| 276 | |
Joe Perches | 29fc2bc | 2013-10-26 20:41:53 -0700 | [diff] [blame] | 277 | #include <linux/dynamic_debug.h> |
| 278 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 279 | /* If you are writing a driver, please use dev_dbg instead */ |
Jim Cromie | b558c96 | 2011-12-19 17:11:18 -0500 | [diff] [blame] | 280 | #if defined(CONFIG_DYNAMIC_DEBUG) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 281 | /* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */ |
| 282 | #define pr_debug(fmt, ...) \ |
| 283 | dynamic_pr_debug(fmt, ##__VA_ARGS__) |
Jim Cromie | b558c96 | 2011-12-19 17:11:18 -0500 | [diff] [blame] | 284 | #elif defined(DEBUG) |
| 285 | #define pr_debug(fmt, ...) \ |
| 286 | printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 287 | #else |
| 288 | #define pr_debug(fmt, ...) \ |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 289 | no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 290 | #endif |
| 291 | |
| 292 | /* |
Joe Perches | 16cb839 | 2011-01-12 16:59:46 -0800 | [diff] [blame] | 293 | * Print a one-time message (analogous to WARN_ONCE() et al): |
| 294 | */ |
| 295 | |
| 296 | #ifdef CONFIG_PRINTK |
Joe Perches | c28aa1f | 2014-01-23 15:54:16 -0800 | [diff] [blame] | 297 | #define printk_once(fmt, ...) \ |
| 298 | ({ \ |
| 299 | static bool __print_once __read_mostly; \ |
| 300 | \ |
| 301 | if (!__print_once) { \ |
| 302 | __print_once = true; \ |
| 303 | printk(fmt, ##__VA_ARGS__); \ |
| 304 | } \ |
Joe Perches | 16cb839 | 2011-01-12 16:59:46 -0800 | [diff] [blame] | 305 | }) |
John Stultz | c224815 | 2014-06-04 16:11:41 -0700 | [diff] [blame] | 306 | #define printk_deferred_once(fmt, ...) \ |
| 307 | ({ \ |
| 308 | static bool __print_once __read_mostly; \ |
| 309 | \ |
| 310 | if (!__print_once) { \ |
| 311 | __print_once = true; \ |
| 312 | printk_deferred(fmt, ##__VA_ARGS__); \ |
| 313 | } \ |
| 314 | }) |
Joe Perches | 16cb839 | 2011-01-12 16:59:46 -0800 | [diff] [blame] | 315 | #else |
Joe Perches | c28aa1f | 2014-01-23 15:54:16 -0800 | [diff] [blame] | 316 | #define printk_once(fmt, ...) \ |
Joe Perches | 16cb839 | 2011-01-12 16:59:46 -0800 | [diff] [blame] | 317 | no_printk(fmt, ##__VA_ARGS__) |
John Stultz | c224815 | 2014-06-04 16:11:41 -0700 | [diff] [blame] | 318 | #define printk_deferred_once(fmt, ...) \ |
| 319 | no_printk(fmt, ##__VA_ARGS__) |
Joe Perches | 16cb839 | 2011-01-12 16:59:46 -0800 | [diff] [blame] | 320 | #endif |
| 321 | |
| 322 | #define pr_emerg_once(fmt, ...) \ |
| 323 | printk_once(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__) |
| 324 | #define pr_alert_once(fmt, ...) \ |
| 325 | printk_once(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__) |
| 326 | #define pr_crit_once(fmt, ...) \ |
| 327 | printk_once(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__) |
| 328 | #define pr_err_once(fmt, ...) \ |
| 329 | printk_once(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__) |
| 330 | #define pr_warn_once(fmt, ...) \ |
| 331 | printk_once(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__) |
| 332 | #define pr_notice_once(fmt, ...) \ |
| 333 | printk_once(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__) |
| 334 | #define pr_info_once(fmt, ...) \ |
| 335 | printk_once(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) |
| 336 | #define pr_cont_once(fmt, ...) \ |
| 337 | printk_once(KERN_CONT pr_fmt(fmt), ##__VA_ARGS__) |
Mikhail Gruzdev | 36d308d | 2013-02-21 16:43:10 -0800 | [diff] [blame] | 338 | |
| 339 | #if defined(DEBUG) |
| 340 | #define pr_devel_once(fmt, ...) \ |
| 341 | printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 342 | #else |
| 343 | #define pr_devel_once(fmt, ...) \ |
| 344 | no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 345 | #endif |
| 346 | |
Joe Perches | 16cb839 | 2011-01-12 16:59:46 -0800 | [diff] [blame] | 347 | /* If you are writing a driver, please use dev_dbg instead */ |
| 348 | #if defined(DEBUG) |
| 349 | #define pr_debug_once(fmt, ...) \ |
| 350 | printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 351 | #else |
| 352 | #define pr_debug_once(fmt, ...) \ |
| 353 | no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 354 | #endif |
| 355 | |
| 356 | /* |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 357 | * ratelimited messages with local ratelimit_state, |
| 358 | * no local ratelimit_state used in the !PRINTK case |
| 359 | */ |
| 360 | #ifdef CONFIG_PRINTK |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 361 | #define printk_ratelimited(fmt, ...) \ |
| 362 | ({ \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 363 | static DEFINE_RATELIMIT_STATE(_rs, \ |
| 364 | DEFAULT_RATELIMIT_INTERVAL, \ |
| 365 | DEFAULT_RATELIMIT_BURST); \ |
| 366 | \ |
| 367 | if (__ratelimit(&_rs)) \ |
| 368 | printk(fmt, ##__VA_ARGS__); \ |
| 369 | }) |
| 370 | #else |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 371 | #define printk_ratelimited(fmt, ...) \ |
| 372 | no_printk(fmt, ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 373 | #endif |
| 374 | |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 375 | #define pr_emerg_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 376 | printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__) |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 377 | #define pr_alert_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 378 | printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__) |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 379 | #define pr_crit_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 380 | printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__) |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 381 | #define pr_err_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 382 | printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__) |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 383 | #define pr_warn_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 384 | printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__) |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 385 | #define pr_notice_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 386 | printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__) |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 387 | #define pr_info_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 388 | printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) |
| 389 | /* no pr_cont_ratelimited, don't do that... */ |
Mikhail Gruzdev | 36d308d | 2013-02-21 16:43:10 -0800 | [diff] [blame] | 390 | |
| 391 | #if defined(DEBUG) |
| 392 | #define pr_devel_ratelimited(fmt, ...) \ |
| 393 | printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 394 | #else |
| 395 | #define pr_devel_ratelimited(fmt, ...) \ |
| 396 | no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 397 | #endif |
| 398 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 399 | /* If you are writing a driver, please use dev_dbg instead */ |
Joe Perches | 29fc2bc | 2013-10-26 20:41:53 -0700 | [diff] [blame] | 400 | #if defined(CONFIG_DYNAMIC_DEBUG) |
| 401 | /* descriptor check is first to prevent flooding with "callbacks suppressed" */ |
| 402 | #define pr_debug_ratelimited(fmt, ...) \ |
| 403 | do { \ |
| 404 | static DEFINE_RATELIMIT_STATE(_rs, \ |
| 405 | DEFAULT_RATELIMIT_INTERVAL, \ |
| 406 | DEFAULT_RATELIMIT_BURST); \ |
Jason A. Donenfeld | 515a9ad | 2015-09-09 15:36:12 -0700 | [diff] [blame] | 407 | DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, pr_fmt(fmt)); \ |
Joe Perches | 29fc2bc | 2013-10-26 20:41:53 -0700 | [diff] [blame] | 408 | if (unlikely(descriptor.flags & _DPRINTK_FLAGS_PRINT) && \ |
| 409 | __ratelimit(&_rs)) \ |
Jason A. Donenfeld | 515a9ad | 2015-09-09 15:36:12 -0700 | [diff] [blame] | 410 | __dynamic_pr_debug(&descriptor, pr_fmt(fmt), ##__VA_ARGS__); \ |
Joe Perches | 29fc2bc | 2013-10-26 20:41:53 -0700 | [diff] [blame] | 411 | } while (0) |
| 412 | #elif defined(DEBUG) |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 413 | #define pr_debug_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 414 | printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 415 | #else |
| 416 | #define pr_debug_ratelimited(fmt, ...) \ |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 417 | no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 418 | #endif |
| 419 | |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 420 | extern const struct file_operations kmsg_fops; |
| 421 | |
Joe Perches | ac83ed6 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 422 | enum { |
| 423 | DUMP_PREFIX_NONE, |
| 424 | DUMP_PREFIX_ADDRESS, |
| 425 | DUMP_PREFIX_OFFSET |
| 426 | }; |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 427 | extern int hex_dump_to_buffer(const void *buf, size_t len, int rowsize, |
| 428 | int groupsize, char *linebuf, size_t linebuflen, |
| 429 | bool ascii); |
Joe Perches | ac83ed6 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 430 | #ifdef CONFIG_PRINTK |
| 431 | extern void print_hex_dump(const char *level, const char *prefix_str, |
| 432 | int prefix_type, int rowsize, int groupsize, |
| 433 | const void *buf, size_t len, bool ascii); |
Vladimir Kondratiev | 7a55561 | 2012-12-05 16:48:27 -0500 | [diff] [blame] | 434 | #if defined(CONFIG_DYNAMIC_DEBUG) |
| 435 | #define print_hex_dump_bytes(prefix_str, prefix_type, buf, len) \ |
| 436 | dynamic_hex_dump(prefix_str, prefix_type, 16, 1, buf, len, true) |
| 437 | #else |
Joe Perches | ac83ed6 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 438 | extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type, |
| 439 | const void *buf, size_t len); |
Vladimir Kondratiev | 7a55561 | 2012-12-05 16:48:27 -0500 | [diff] [blame] | 440 | #endif /* defined(CONFIG_DYNAMIC_DEBUG) */ |
Joe Perches | ac83ed6 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 441 | #else |
| 442 | static inline void print_hex_dump(const char *level, const char *prefix_str, |
| 443 | int prefix_type, int rowsize, int groupsize, |
| 444 | const void *buf, size_t len, bool ascii) |
| 445 | { |
| 446 | } |
| 447 | static inline void print_hex_dump_bytes(const char *prefix_str, int prefix_type, |
| 448 | const void *buf, size_t len) |
| 449 | { |
| 450 | } |
| 451 | |
| 452 | #endif |
| 453 | |
Vladimir Kondratiev | 7a55561 | 2012-12-05 16:48:27 -0500 | [diff] [blame] | 454 | #if defined(CONFIG_DYNAMIC_DEBUG) |
| 455 | #define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \ |
| 456 | groupsize, buf, len, ascii) \ |
| 457 | dynamic_hex_dump(prefix_str, prefix_type, rowsize, \ |
| 458 | groupsize, buf, len, ascii) |
Linus Walleij | cdf1744 | 2015-09-09 15:37:11 -0700 | [diff] [blame] | 459 | #elif defined(DEBUG) |
Vladimir Kondratiev | 7a55561 | 2012-12-05 16:48:27 -0500 | [diff] [blame] | 460 | #define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \ |
| 461 | groupsize, buf, len, ascii) \ |
| 462 | print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, rowsize, \ |
| 463 | groupsize, buf, len, ascii) |
Linus Walleij | cdf1744 | 2015-09-09 15:37:11 -0700 | [diff] [blame] | 464 | #else |
| 465 | static inline void print_hex_dump_debug(const char *prefix_str, int prefix_type, |
| 466 | int rowsize, int groupsize, |
| 467 | const void *buf, size_t len, bool ascii) |
| 468 | { |
| 469 | } |
| 470 | #endif |
Vladimir Kondratiev | 7a55561 | 2012-12-05 16:48:27 -0500 | [diff] [blame] | 471 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 472 | #endif |