Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/kernel/printk.c |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 5 | * |
| 6 | * Modified to make sys_syslog() more flexible: added commands to |
| 7 | * return the last 4k of kernel messages, regardless of whether |
| 8 | * they've been read or not. Added option to suppress kernel printk's |
| 9 | * to the console. Added hook for sending the console messages |
| 10 | * elsewhere, in preparation for a serial line console (someday). |
| 11 | * Ted Ts'o, 2/11/93. |
| 12 | * Modified for sysctl support, 1/8/97, Chris Horn. |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 13 | * Fixed SMP synchronization, 08/08/99, Manfred Spraul |
Christian Kujau | 624dffc | 2006-01-15 02:43:54 +0100 | [diff] [blame] | 14 | * manfred@colorfullife.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | * Rewrote bits to get rid of console_lock |
Francois Cami | e1f8e87 | 2008-10-15 22:01:59 -0700 | [diff] [blame] | 16 | * 01Mar01 Andrew Morton |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
| 18 | |
| 19 | #include <linux/kernel.h> |
| 20 | #include <linux/mm.h> |
| 21 | #include <linux/tty.h> |
| 22 | #include <linux/tty_driver.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/console.h> |
| 24 | #include <linux/init.h> |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 25 | #include <linux/jiffies.h> |
| 26 | #include <linux/nmi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/module.h> |
Jan Engelhardt | 3b9c041 | 2006-06-25 05:48:15 -0700 | [diff] [blame] | 28 | #include <linux/moduleparam.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/interrupt.h> /* For in_interrupt() */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/delay.h> |
| 31 | #include <linux/smp.h> |
| 32 | #include <linux/security.h> |
| 33 | #include <linux/bootmem.h> |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 34 | #include <linux/memblock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/syscalls.h> |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 36 | #include <linux/kexec.h> |
Jason Wessel | d37d39a | 2010-05-20 21:04:27 -0500 | [diff] [blame] | 37 | #include <linux/kdb.h> |
Ingo Molnar | 3fff4c4 | 2009-09-22 16:18:09 +0200 | [diff] [blame] | 38 | #include <linux/ratelimit.h> |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 39 | #include <linux/kmsg_dump.h> |
Kees Cook | 0023459 | 2010-02-03 15:36:43 -0800 | [diff] [blame] | 40 | #include <linux/syslog.h> |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 41 | #include <linux/cpu.h> |
| 42 | #include <linux/notifier.h> |
Huang Ying | fb842b0 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 43 | #include <linux/rculist.h> |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 44 | #include <linux/poll.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | #include <asm/uaccess.h> |
| 47 | |
Johannes Berg | 9510035 | 2011-11-24 20:03:08 +0100 | [diff] [blame] | 48 | #define CREATE_TRACE_POINTS |
| 49 | #include <trace/events/printk.h> |
| 50 | |
Ingo Molnar | 076f977 | 2008-01-30 13:33:06 +0100 | [diff] [blame] | 51 | /* |
| 52 | * Architectures can override it: |
| 53 | */ |
Jiri Slaby | e17ba73 | 2008-05-12 15:44:40 +0200 | [diff] [blame] | 54 | void asmlinkage __attribute__((weak)) early_printk(const char *fmt, ...) |
Ingo Molnar | 076f977 | 2008-01-30 13:33:06 +0100 | [diff] [blame] | 55 | { |
| 56 | } |
| 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | /* printk's without a loglevel use this.. */ |
Mandeep Singh Baines | 5af5bcb | 2011-03-22 16:34:23 -0700 | [diff] [blame] | 59 | #define DEFAULT_MESSAGE_LOGLEVEL CONFIG_DEFAULT_MESSAGE_LOGLEVEL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | /* We show everything that is MORE important than this.. */ |
| 62 | #define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */ |
| 63 | #define DEFAULT_CONSOLE_LOGLEVEL 7 /* anything MORE serious than KERN_DEBUG */ |
| 64 | |
| 65 | DECLARE_WAIT_QUEUE_HEAD(log_wait); |
| 66 | |
| 67 | int console_printk[4] = { |
| 68 | DEFAULT_CONSOLE_LOGLEVEL, /* console_loglevel */ |
| 69 | DEFAULT_MESSAGE_LOGLEVEL, /* default_message_loglevel */ |
| 70 | MINIMUM_CONSOLE_LOGLEVEL, /* minimum_console_loglevel */ |
| 71 | DEFAULT_CONSOLE_LOGLEVEL, /* default_console_loglevel */ |
| 72 | }; |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | /* |
Patrick Pletscher | 0bbfb7c | 2007-02-17 20:10:16 +0100 | [diff] [blame] | 75 | * Low level drivers may need that to know if they can schedule in |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | * their unblank() callback or not. So let's export it. |
| 77 | */ |
| 78 | int oops_in_progress; |
| 79 | EXPORT_SYMBOL(oops_in_progress); |
| 80 | |
| 81 | /* |
| 82 | * console_sem protects the console_drivers list, and also |
| 83 | * provides serialisation for access to the entire console |
| 84 | * driver system. |
| 85 | */ |
Thomas Gleixner | 5b8c4f2 | 2010-09-07 14:33:43 +0000 | [diff] [blame] | 86 | static DEFINE_SEMAPHORE(console_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | struct console *console_drivers; |
Ingo Molnar | a29d1cf | 2008-06-02 13:19:08 +0200 | [diff] [blame] | 88 | EXPORT_SYMBOL_GPL(console_drivers); |
| 89 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | /* |
| 91 | * This is used for debugging the mess that is the VT code by |
| 92 | * keeping track if we have the console semaphore held. It's |
| 93 | * definitely not the perfect debug tool (we don't know if _WE_ |
| 94 | * hold it are racing, but it helps tracking those weird code |
| 95 | * path in the console code where we end up in places I want |
| 96 | * locked without the console sempahore held |
| 97 | */ |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 98 | static int console_locked, console_suspended; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
| 100 | /* |
Feng Tang | fe3d8ad | 2011-03-22 16:34:21 -0700 | [diff] [blame] | 101 | * If exclusive_console is non-NULL then only this console is to be printed to. |
| 102 | */ |
| 103 | static struct console *exclusive_console; |
| 104 | |
| 105 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | * Array of consoles built from command line options (console=) |
| 107 | */ |
| 108 | struct console_cmdline |
| 109 | { |
| 110 | char name[8]; /* Name of the driver */ |
| 111 | int index; /* Minor dev. to use */ |
| 112 | char *options; /* Options for the driver */ |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 113 | #ifdef CONFIG_A11Y_BRAILLE_CONSOLE |
| 114 | char *brl_options; /* Options for braille driver */ |
| 115 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | }; |
| 117 | |
| 118 | #define MAX_CMDLINECONSOLES 8 |
| 119 | |
| 120 | static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES]; |
| 121 | static int selected_console = -1; |
| 122 | static int preferred_console = -1; |
Markus Armbruster | 9e124fe | 2008-05-26 23:31:07 +0100 | [diff] [blame] | 123 | int console_set_on_cmdline; |
| 124 | EXPORT_SYMBOL(console_set_on_cmdline); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
| 126 | /* Flag: console code may call schedule() */ |
| 127 | static int console_may_schedule; |
| 128 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 129 | /* |
| 130 | * The printk log buffer consists of a chain of concatenated variable |
| 131 | * length records. Every record starts with a record header, containing |
| 132 | * the overall length of the record. |
| 133 | * |
| 134 | * The heads to the first and last entry in the buffer, as well as the |
| 135 | * sequence numbers of these both entries are maintained when messages |
| 136 | * are stored.. |
| 137 | * |
| 138 | * If the heads indicate available messages, the length in the header |
| 139 | * tells the start next message. A length == 0 for the next message |
| 140 | * indicates a wrap-around to the beginning of the buffer. |
| 141 | * |
| 142 | * Every record carries the monotonic timestamp in microseconds, as well as |
| 143 | * the standard userspace syslog level and syslog facility. The usual |
| 144 | * kernel messages use LOG_KERN; userspace-injected messages always carry |
| 145 | * a matching syslog facility, by default LOG_USER. The origin of every |
| 146 | * message can be reliably determined that way. |
| 147 | * |
| 148 | * The human readable log message directly follows the message header. The |
| 149 | * length of the message text is stored in the header, the stored message |
| 150 | * is not terminated. |
| 151 | * |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 152 | * Optionally, a message can carry a dictionary of properties (key/value pairs), |
| 153 | * to provide userspace with a machine-readable message context. |
| 154 | * |
| 155 | * Examples for well-defined, commonly used property names are: |
| 156 | * DEVICE=b12:8 device identifier |
| 157 | * b12:8 block dev_t |
| 158 | * c127:3 char dev_t |
| 159 | * n8 netdev ifindex |
| 160 | * +sound:card0 subsystem:devname |
| 161 | * SUBSYSTEM=pci driver-core subsystem name |
| 162 | * |
| 163 | * Valid characters in property names are [a-zA-Z0-9.-_]. The plain text value |
| 164 | * follows directly after a '=' character. Every property is terminated by |
| 165 | * a '\0' character. The last property is not terminated. |
| 166 | * |
| 167 | * Example of a message structure: |
| 168 | * 0000 ff 8f 00 00 00 00 00 00 monotonic time in nsec |
| 169 | * 0008 34 00 record is 52 bytes long |
| 170 | * 000a 0b 00 text is 11 bytes long |
| 171 | * 000c 1f 00 dictionary is 23 bytes long |
| 172 | * 000e 03 00 LOG_KERN (facility) LOG_ERR (level) |
| 173 | * 0010 69 74 27 73 20 61 20 6c "it's a l" |
| 174 | * 69 6e 65 "ine" |
| 175 | * 001b 44 45 56 49 43 "DEVIC" |
| 176 | * 45 3d 62 38 3a 32 00 44 "E=b8:2\0D" |
| 177 | * 52 49 56 45 52 3d 62 75 "RIVER=bu" |
| 178 | * 67 "g" |
| 179 | * 0032 00 00 00 padding to next message header |
| 180 | * |
| 181 | * The 'struct log' buffer header must never be directly exported to |
| 182 | * userspace, it is a kernel-private implementation detail that might |
| 183 | * need to be changed in the future, when the requirements change. |
| 184 | * |
| 185 | * /dev/kmsg exports the structured data in the following line format: |
| 186 | * "level,sequnum,timestamp;<message text>\n" |
| 187 | * |
| 188 | * The optional key/value pairs are attached as continuation lines starting |
| 189 | * with a space character and terminated by a newline. All possible |
| 190 | * non-prinatable characters are escaped in the "\xff" notation. |
| 191 | * |
| 192 | * Users of the export format should ignore possible additional values |
| 193 | * separated by ',', and find the message after the ';' character. |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 194 | */ |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 195 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 196 | struct log { |
| 197 | u64 ts_nsec; /* timestamp in nanoseconds */ |
| 198 | u16 len; /* length of entire record */ |
| 199 | u16 text_len; /* length of text buffer */ |
| 200 | u16 dict_len; /* length of dictionary buffer */ |
| 201 | u16 level; /* syslog level + facility */ |
| 202 | }; |
| 203 | |
| 204 | /* |
| 205 | * The logbuf_lock protects kmsg buffer, indices, counters. It is also |
| 206 | * used in interesting ways to provide interlocking in console_unlock(); |
| 207 | */ |
| 208 | static DEFINE_RAW_SPINLOCK(logbuf_lock); |
| 209 | |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 210 | /* the next printk record to read by syslog(READ) or /proc/kmsg */ |
| 211 | static u64 syslog_seq; |
| 212 | static u32 syslog_idx; |
| 213 | |
| 214 | /* index and sequence number of the first record stored in the buffer */ |
| 215 | static u64 log_first_seq; |
| 216 | static u32 log_first_idx; |
| 217 | |
| 218 | /* index and sequence number of the next record to store in the buffer */ |
| 219 | static u64 log_next_seq; |
| 220 | #ifdef CONFIG_PRINTK |
| 221 | static u32 log_next_idx; |
| 222 | |
| 223 | /* the next printk record to read after the last 'clear' command */ |
| 224 | static u64 clear_seq; |
| 225 | static u32 clear_idx; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 226 | |
| 227 | #define LOG_LINE_MAX 1024 |
| 228 | |
| 229 | /* record buffer */ |
Andrew Lunn | 6ebb017 | 2012-06-05 08:52:34 +0200 | [diff] [blame] | 230 | #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) |
Stephen Warren | f8450fc | 2012-05-10 16:14:33 -0600 | [diff] [blame] | 231 | #define LOG_ALIGN 4 |
| 232 | #else |
Andrew Lunn | 6ebb017 | 2012-06-05 08:52:34 +0200 | [diff] [blame] | 233 | #define LOG_ALIGN __alignof__(struct log) |
Stephen Warren | f8450fc | 2012-05-10 16:14:33 -0600 | [diff] [blame] | 234 | #endif |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 235 | #define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT) |
Stephen Warren | f8450fc | 2012-05-10 16:14:33 -0600 | [diff] [blame] | 236 | static char __log_buf[__LOG_BUF_LEN] __aligned(LOG_ALIGN); |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 237 | static char *log_buf = __log_buf; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 238 | static u32 log_buf_len = __LOG_BUF_LEN; |
| 239 | |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 240 | /* cpu currently holding logbuf_lock */ |
| 241 | static volatile unsigned int logbuf_cpu = UINT_MAX; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 242 | |
| 243 | /* human readable text of the record */ |
| 244 | static char *log_text(const struct log *msg) |
| 245 | { |
| 246 | return (char *)msg + sizeof(struct log); |
| 247 | } |
| 248 | |
| 249 | /* optional key/value pair dictionary attached to the record */ |
| 250 | static char *log_dict(const struct log *msg) |
| 251 | { |
| 252 | return (char *)msg + sizeof(struct log) + msg->text_len; |
| 253 | } |
| 254 | |
| 255 | /* get record by index; idx must point to valid msg */ |
| 256 | static struct log *log_from_idx(u32 idx) |
| 257 | { |
| 258 | struct log *msg = (struct log *)(log_buf + idx); |
| 259 | |
| 260 | /* |
| 261 | * A length == 0 record is the end of buffer marker. Wrap around and |
| 262 | * read the message at the start of the buffer. |
| 263 | */ |
| 264 | if (!msg->len) |
| 265 | return (struct log *)log_buf; |
| 266 | return msg; |
| 267 | } |
| 268 | |
| 269 | /* get next record; idx must point to valid msg */ |
| 270 | static u32 log_next(u32 idx) |
| 271 | { |
| 272 | struct log *msg = (struct log *)(log_buf + idx); |
| 273 | |
| 274 | /* length == 0 indicates the end of the buffer; wrap */ |
| 275 | /* |
| 276 | * A length == 0 record is the end of buffer marker. Wrap around and |
| 277 | * read the message at the start of the buffer as *this* one, and |
| 278 | * return the one after that. |
| 279 | */ |
| 280 | if (!msg->len) { |
| 281 | msg = (struct log *)log_buf; |
| 282 | return msg->len; |
| 283 | } |
| 284 | return idx + msg->len; |
| 285 | } |
| 286 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 287 | /* insert record into the buffer, discard old ones, update heads */ |
| 288 | static void log_store(int facility, int level, |
| 289 | const char *dict, u16 dict_len, |
| 290 | const char *text, u16 text_len) |
| 291 | { |
| 292 | struct log *msg; |
| 293 | u32 size, pad_len; |
| 294 | |
| 295 | /* number of '\0' padding bytes to next message */ |
| 296 | size = sizeof(struct log) + text_len + dict_len; |
| 297 | pad_len = (-size) & (LOG_ALIGN - 1); |
| 298 | size += pad_len; |
| 299 | |
| 300 | while (log_first_seq < log_next_seq) { |
| 301 | u32 free; |
| 302 | |
| 303 | if (log_next_idx > log_first_idx) |
| 304 | free = max(log_buf_len - log_next_idx, log_first_idx); |
| 305 | else |
| 306 | free = log_first_idx - log_next_idx; |
| 307 | |
| 308 | if (free > size + sizeof(struct log)) |
| 309 | break; |
| 310 | |
| 311 | /* drop old messages until we have enough contiuous space */ |
| 312 | log_first_idx = log_next(log_first_idx); |
| 313 | log_first_seq++; |
| 314 | } |
| 315 | |
| 316 | if (log_next_idx + size + sizeof(struct log) >= log_buf_len) { |
| 317 | /* |
| 318 | * This message + an additional empty header does not fit |
| 319 | * at the end of the buffer. Add an empty header with len == 0 |
| 320 | * to signify a wrap around. |
| 321 | */ |
| 322 | memset(log_buf + log_next_idx, 0, sizeof(struct log)); |
| 323 | log_next_idx = 0; |
| 324 | } |
| 325 | |
| 326 | /* fill message */ |
| 327 | msg = (struct log *)(log_buf + log_next_idx); |
| 328 | memcpy(log_text(msg), text, text_len); |
| 329 | msg->text_len = text_len; |
| 330 | memcpy(log_dict(msg), dict, dict_len); |
| 331 | msg->dict_len = dict_len; |
| 332 | msg->level = (facility << 3) | (level & 7); |
| 333 | msg->ts_nsec = local_clock(); |
| 334 | memset(log_dict(msg) + dict_len, 0, pad_len); |
| 335 | msg->len = sizeof(struct log) + text_len + dict_len + pad_len; |
| 336 | |
| 337 | /* insert message */ |
| 338 | log_next_idx += msg->len; |
| 339 | log_next_seq++; |
| 340 | } |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 341 | |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 342 | /* /dev/kmsg - userspace message inject/listen interface */ |
| 343 | struct devkmsg_user { |
| 344 | u64 seq; |
| 345 | u32 idx; |
| 346 | struct mutex lock; |
| 347 | char buf[8192]; |
| 348 | }; |
| 349 | |
| 350 | static ssize_t devkmsg_writev(struct kiocb *iocb, const struct iovec *iv, |
| 351 | unsigned long count, loff_t pos) |
| 352 | { |
| 353 | char *buf, *line; |
| 354 | int i; |
| 355 | int level = default_message_loglevel; |
| 356 | int facility = 1; /* LOG_USER */ |
| 357 | size_t len = iov_length(iv, count); |
| 358 | ssize_t ret = len; |
| 359 | |
| 360 | if (len > LOG_LINE_MAX) |
| 361 | return -EINVAL; |
| 362 | buf = kmalloc(len+1, GFP_KERNEL); |
| 363 | if (buf == NULL) |
| 364 | return -ENOMEM; |
| 365 | |
| 366 | line = buf; |
| 367 | for (i = 0; i < count; i++) { |
| 368 | if (copy_from_user(line, iv[i].iov_base, iv[i].iov_len)) |
| 369 | goto out; |
| 370 | line += iv[i].iov_len; |
| 371 | } |
| 372 | |
| 373 | /* |
| 374 | * Extract and skip the syslog prefix <[0-9]*>. Coming from userspace |
| 375 | * the decimal value represents 32bit, the lower 3 bit are the log |
| 376 | * level, the rest are the log facility. |
| 377 | * |
| 378 | * If no prefix or no userspace facility is specified, we |
| 379 | * enforce LOG_USER, to be able to reliably distinguish |
| 380 | * kernel-generated messages from userspace-injected ones. |
| 381 | */ |
| 382 | line = buf; |
| 383 | if (line[0] == '<') { |
| 384 | char *endp = NULL; |
| 385 | |
| 386 | i = simple_strtoul(line+1, &endp, 10); |
| 387 | if (endp && endp[0] == '>') { |
| 388 | level = i & 7; |
| 389 | if (i >> 3) |
| 390 | facility = i >> 3; |
| 391 | endp++; |
| 392 | len -= endp - line; |
| 393 | line = endp; |
| 394 | } |
| 395 | } |
| 396 | line[len] = '\0'; |
| 397 | |
| 398 | printk_emit(facility, level, NULL, 0, "%s", line); |
| 399 | out: |
| 400 | kfree(buf); |
| 401 | return ret; |
| 402 | } |
| 403 | |
| 404 | static ssize_t devkmsg_read(struct file *file, char __user *buf, |
| 405 | size_t count, loff_t *ppos) |
| 406 | { |
| 407 | struct devkmsg_user *user = file->private_data; |
| 408 | struct log *msg; |
Kay Sievers | 5fc32490 | 2012-05-08 13:04:17 +0200 | [diff] [blame] | 409 | u64 ts_usec; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 410 | size_t i; |
| 411 | size_t len; |
| 412 | ssize_t ret; |
| 413 | |
| 414 | if (!user) |
| 415 | return -EBADF; |
| 416 | |
Yuanhan Liu | 4a77a5a | 2012-06-16 21:21:51 +0800 | [diff] [blame] | 417 | ret = mutex_lock_interruptible(&user->lock); |
| 418 | if (ret) |
| 419 | return ret; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 420 | raw_spin_lock(&logbuf_lock); |
| 421 | while (user->seq == log_next_seq) { |
| 422 | if (file->f_flags & O_NONBLOCK) { |
| 423 | ret = -EAGAIN; |
| 424 | raw_spin_unlock(&logbuf_lock); |
| 425 | goto out; |
| 426 | } |
| 427 | |
| 428 | raw_spin_unlock(&logbuf_lock); |
| 429 | ret = wait_event_interruptible(log_wait, |
| 430 | user->seq != log_next_seq); |
| 431 | if (ret) |
| 432 | goto out; |
| 433 | raw_spin_lock(&logbuf_lock); |
| 434 | } |
| 435 | |
| 436 | if (user->seq < log_first_seq) { |
| 437 | /* our last seen message is gone, return error and reset */ |
| 438 | user->idx = log_first_idx; |
| 439 | user->seq = log_first_seq; |
| 440 | ret = -EPIPE; |
| 441 | raw_spin_unlock(&logbuf_lock); |
| 442 | goto out; |
| 443 | } |
| 444 | |
| 445 | msg = log_from_idx(user->idx); |
Kay Sievers | 5fc32490 | 2012-05-08 13:04:17 +0200 | [diff] [blame] | 446 | ts_usec = msg->ts_nsec; |
| 447 | do_div(ts_usec, 1000); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 448 | len = sprintf(user->buf, "%u,%llu,%llu;", |
Kay Sievers | 5fc32490 | 2012-05-08 13:04:17 +0200 | [diff] [blame] | 449 | msg->level, user->seq, ts_usec); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 450 | |
| 451 | /* escape non-printable characters */ |
| 452 | for (i = 0; i < msg->text_len; i++) { |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 453 | unsigned char c = log_text(msg)[i]; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 454 | |
| 455 | if (c < ' ' || c >= 128) |
| 456 | len += sprintf(user->buf + len, "\\x%02x", c); |
| 457 | else |
| 458 | user->buf[len++] = c; |
| 459 | } |
| 460 | user->buf[len++] = '\n'; |
| 461 | |
| 462 | if (msg->dict_len) { |
| 463 | bool line = true; |
| 464 | |
| 465 | for (i = 0; i < msg->dict_len; i++) { |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 466 | unsigned char c = log_dict(msg)[i]; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 467 | |
| 468 | if (line) { |
| 469 | user->buf[len++] = ' '; |
| 470 | line = false; |
| 471 | } |
| 472 | |
| 473 | if (c == '\0') { |
| 474 | user->buf[len++] = '\n'; |
| 475 | line = true; |
| 476 | continue; |
| 477 | } |
| 478 | |
| 479 | if (c < ' ' || c >= 128) { |
| 480 | len += sprintf(user->buf + len, "\\x%02x", c); |
| 481 | continue; |
| 482 | } |
| 483 | |
| 484 | user->buf[len++] = c; |
| 485 | } |
| 486 | user->buf[len++] = '\n'; |
| 487 | } |
| 488 | |
| 489 | user->idx = log_next(user->idx); |
| 490 | user->seq++; |
| 491 | raw_spin_unlock(&logbuf_lock); |
| 492 | |
| 493 | if (len > count) { |
| 494 | ret = -EINVAL; |
| 495 | goto out; |
| 496 | } |
| 497 | |
| 498 | if (copy_to_user(buf, user->buf, len)) { |
| 499 | ret = -EFAULT; |
| 500 | goto out; |
| 501 | } |
| 502 | ret = len; |
| 503 | out: |
| 504 | mutex_unlock(&user->lock); |
| 505 | return ret; |
| 506 | } |
| 507 | |
| 508 | static loff_t devkmsg_llseek(struct file *file, loff_t offset, int whence) |
| 509 | { |
| 510 | struct devkmsg_user *user = file->private_data; |
| 511 | loff_t ret = 0; |
| 512 | |
| 513 | if (!user) |
| 514 | return -EBADF; |
| 515 | if (offset) |
| 516 | return -ESPIPE; |
| 517 | |
| 518 | raw_spin_lock(&logbuf_lock); |
| 519 | switch (whence) { |
| 520 | case SEEK_SET: |
| 521 | /* the first record */ |
| 522 | user->idx = log_first_idx; |
| 523 | user->seq = log_first_seq; |
| 524 | break; |
| 525 | case SEEK_DATA: |
| 526 | /* |
| 527 | * The first record after the last SYSLOG_ACTION_CLEAR, |
| 528 | * like issued by 'dmesg -c'. Reading /dev/kmsg itself |
| 529 | * changes no global state, and does not clear anything. |
| 530 | */ |
| 531 | user->idx = clear_idx; |
| 532 | user->seq = clear_seq; |
| 533 | break; |
| 534 | case SEEK_END: |
| 535 | /* after the last record */ |
| 536 | user->idx = log_next_idx; |
| 537 | user->seq = log_next_seq; |
| 538 | break; |
| 539 | default: |
| 540 | ret = -EINVAL; |
| 541 | } |
| 542 | raw_spin_unlock(&logbuf_lock); |
| 543 | return ret; |
| 544 | } |
| 545 | |
| 546 | static unsigned int devkmsg_poll(struct file *file, poll_table *wait) |
| 547 | { |
| 548 | struct devkmsg_user *user = file->private_data; |
| 549 | int ret = 0; |
| 550 | |
| 551 | if (!user) |
| 552 | return POLLERR|POLLNVAL; |
| 553 | |
| 554 | poll_wait(file, &log_wait, wait); |
| 555 | |
| 556 | raw_spin_lock(&logbuf_lock); |
| 557 | if (user->seq < log_next_seq) { |
| 558 | /* return error when data has vanished underneath us */ |
| 559 | if (user->seq < log_first_seq) |
| 560 | ret = POLLIN|POLLRDNORM|POLLERR|POLLPRI; |
| 561 | ret = POLLIN|POLLRDNORM; |
| 562 | } |
| 563 | raw_spin_unlock(&logbuf_lock); |
| 564 | |
| 565 | return ret; |
| 566 | } |
| 567 | |
| 568 | static int devkmsg_open(struct inode *inode, struct file *file) |
| 569 | { |
| 570 | struct devkmsg_user *user; |
| 571 | int err; |
| 572 | |
| 573 | /* write-only does not need any file context */ |
| 574 | if ((file->f_flags & O_ACCMODE) == O_WRONLY) |
| 575 | return 0; |
| 576 | |
| 577 | err = security_syslog(SYSLOG_ACTION_READ_ALL); |
| 578 | if (err) |
| 579 | return err; |
| 580 | |
| 581 | user = kmalloc(sizeof(struct devkmsg_user), GFP_KERNEL); |
| 582 | if (!user) |
| 583 | return -ENOMEM; |
| 584 | |
| 585 | mutex_init(&user->lock); |
| 586 | |
| 587 | raw_spin_lock(&logbuf_lock); |
| 588 | user->idx = log_first_idx; |
| 589 | user->seq = log_first_seq; |
| 590 | raw_spin_unlock(&logbuf_lock); |
| 591 | |
| 592 | file->private_data = user; |
| 593 | return 0; |
| 594 | } |
| 595 | |
| 596 | static int devkmsg_release(struct inode *inode, struct file *file) |
| 597 | { |
| 598 | struct devkmsg_user *user = file->private_data; |
| 599 | |
| 600 | if (!user) |
| 601 | return 0; |
| 602 | |
| 603 | mutex_destroy(&user->lock); |
| 604 | kfree(user); |
| 605 | return 0; |
| 606 | } |
| 607 | |
| 608 | const struct file_operations kmsg_fops = { |
| 609 | .open = devkmsg_open, |
| 610 | .read = devkmsg_read, |
| 611 | .aio_write = devkmsg_writev, |
| 612 | .llseek = devkmsg_llseek, |
| 613 | .poll = devkmsg_poll, |
| 614 | .release = devkmsg_release, |
| 615 | }; |
| 616 | |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 617 | #ifdef CONFIG_KEXEC |
| 618 | /* |
| 619 | * This appends the listed symbols to /proc/vmcoreinfo |
| 620 | * |
| 621 | * /proc/vmcoreinfo is used by various utiilties, like crash and makedumpfile to |
| 622 | * obtain access to symbols that are otherwise very difficult to locate. These |
| 623 | * symbols are specifically used so that utilities can access and extract the |
| 624 | * dmesg log from a vmcore file after a crash. |
| 625 | */ |
| 626 | void log_buf_kexec_setup(void) |
| 627 | { |
| 628 | VMCOREINFO_SYMBOL(log_buf); |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 629 | VMCOREINFO_SYMBOL(log_buf_len); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 630 | VMCOREINFO_SYMBOL(log_first_idx); |
| 631 | VMCOREINFO_SYMBOL(log_next_idx); |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 632 | } |
| 633 | #endif |
| 634 | |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 635 | /* requested log_buf_len from kernel cmdline */ |
| 636 | static unsigned long __initdata new_log_buf_len; |
| 637 | |
| 638 | /* save requested log_buf_len since it's too early to process it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | static int __init log_buf_len_setup(char *str) |
| 640 | { |
Denys Vlasenko | eed4a2a | 2008-02-06 01:37:02 -0800 | [diff] [blame] | 641 | unsigned size = memparse(str, &str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | |
| 643 | if (size) |
| 644 | size = roundup_pow_of_two(size); |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 645 | if (size > log_buf_len) |
| 646 | new_log_buf_len = size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 648 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | } |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 650 | early_param("log_buf_len", log_buf_len_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 652 | void __init setup_log_buf(int early) |
| 653 | { |
| 654 | unsigned long flags; |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 655 | char *new_log_buf; |
| 656 | int free; |
| 657 | |
| 658 | if (!new_log_buf_len) |
| 659 | return; |
| 660 | |
| 661 | if (early) { |
| 662 | unsigned long mem; |
| 663 | |
| 664 | mem = memblock_alloc(new_log_buf_len, PAGE_SIZE); |
Tejun Heo | 1f5026a | 2011-07-12 09:58:09 +0200 | [diff] [blame] | 665 | if (!mem) |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 666 | return; |
| 667 | new_log_buf = __va(mem); |
| 668 | } else { |
| 669 | new_log_buf = alloc_bootmem_nopanic(new_log_buf_len); |
| 670 | } |
| 671 | |
| 672 | if (unlikely(!new_log_buf)) { |
| 673 | pr_err("log_buf_len: %ld bytes not available\n", |
| 674 | new_log_buf_len); |
| 675 | return; |
| 676 | } |
| 677 | |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 678 | raw_spin_lock_irqsave(&logbuf_lock, flags); |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 679 | log_buf_len = new_log_buf_len; |
| 680 | log_buf = new_log_buf; |
| 681 | new_log_buf_len = 0; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 682 | free = __LOG_BUF_LEN - log_next_idx; |
| 683 | memcpy(log_buf, __log_buf, __LOG_BUF_LEN); |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 684 | raw_spin_unlock_irqrestore(&logbuf_lock, flags); |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 685 | |
| 686 | pr_info("log_buf_len: %d\n", log_buf_len); |
| 687 | pr_info("early log buf free: %d(%d%%)\n", |
| 688 | free, (free * 100) / __LOG_BUF_LEN); |
| 689 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 691 | #ifdef CONFIG_BOOT_PRINTK_DELAY |
| 692 | |
Namhyung Kim | 674dff6 | 2010-10-26 14:22:48 -0700 | [diff] [blame] | 693 | static int boot_delay; /* msecs delay after each printk during bootup */ |
Dave Young | 3a3b6ed | 2009-09-22 16:43:31 -0700 | [diff] [blame] | 694 | static unsigned long long loops_per_msec; /* based on boot_delay */ |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 695 | |
| 696 | static int __init boot_delay_setup(char *str) |
| 697 | { |
| 698 | unsigned long lpj; |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 699 | |
| 700 | lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */ |
| 701 | loops_per_msec = (unsigned long long)lpj / 1000 * HZ; |
| 702 | |
| 703 | get_option(&str, &boot_delay); |
| 704 | if (boot_delay > 10 * 1000) |
| 705 | boot_delay = 0; |
| 706 | |
Dave Young | 3a3b6ed | 2009-09-22 16:43:31 -0700 | [diff] [blame] | 707 | pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, " |
| 708 | "HZ: %d, loops_per_msec: %llu\n", |
| 709 | boot_delay, preset_lpj, lpj, HZ, loops_per_msec); |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 710 | return 1; |
| 711 | } |
| 712 | __setup("boot_delay=", boot_delay_setup); |
| 713 | |
| 714 | static void boot_delay_msec(void) |
| 715 | { |
| 716 | unsigned long long k; |
| 717 | unsigned long timeout; |
| 718 | |
| 719 | if (boot_delay == 0 || system_state != SYSTEM_BOOTING) |
| 720 | return; |
| 721 | |
Dave Young | 3a3b6ed | 2009-09-22 16:43:31 -0700 | [diff] [blame] | 722 | k = (unsigned long long)loops_per_msec * boot_delay; |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 723 | |
| 724 | timeout = jiffies + msecs_to_jiffies(boot_delay); |
| 725 | while (k) { |
| 726 | k--; |
| 727 | cpu_relax(); |
| 728 | /* |
| 729 | * use (volatile) jiffies to prevent |
| 730 | * compiler reduction; loop termination via jiffies |
| 731 | * is secondary and may or may not happen. |
| 732 | */ |
| 733 | if (time_after(jiffies, timeout)) |
| 734 | break; |
| 735 | touch_nmi_watchdog(); |
| 736 | } |
| 737 | } |
| 738 | #else |
| 739 | static inline void boot_delay_msec(void) |
| 740 | { |
| 741 | } |
| 742 | #endif |
| 743 | |
Dan Rosenberg | eaf06b2 | 2010-11-11 14:05:18 -0800 | [diff] [blame] | 744 | #ifdef CONFIG_SECURITY_DMESG_RESTRICT |
| 745 | int dmesg_restrict = 1; |
| 746 | #else |
| 747 | int dmesg_restrict; |
| 748 | #endif |
| 749 | |
Linus Torvalds | ee24aeb | 2011-02-10 17:53:55 -0800 | [diff] [blame] | 750 | static int syslog_action_restricted(int type) |
| 751 | { |
| 752 | if (dmesg_restrict) |
| 753 | return 1; |
| 754 | /* Unless restricted, we allow "read all" and "get buffer size" for everybody */ |
| 755 | return type != SYSLOG_ACTION_READ_ALL && type != SYSLOG_ACTION_SIZE_BUFFER; |
| 756 | } |
| 757 | |
| 758 | static int check_syslog_permissions(int type, bool from_file) |
| 759 | { |
| 760 | /* |
| 761 | * If this is from /proc/kmsg and we've already opened it, then we've |
| 762 | * already done the capabilities checks at open time. |
| 763 | */ |
| 764 | if (from_file && type != SYSLOG_ACTION_OPEN) |
| 765 | return 0; |
| 766 | |
| 767 | if (syslog_action_restricted(type)) { |
| 768 | if (capable(CAP_SYSLOG)) |
| 769 | return 0; |
| 770 | /* For historical reasons, accept CAP_SYS_ADMIN too, with a warning */ |
| 771 | if (capable(CAP_SYS_ADMIN)) { |
Jonathan Nieder | f2c0d02 | 2011-08-08 06:22:43 +0200 | [diff] [blame] | 772 | printk_once(KERN_WARNING "%s (%d): " |
| 773 | "Attempt to access syslog with CAP_SYS_ADMIN " |
| 774 | "but no CAP_SYSLOG (deprecated).\n", |
| 775 | current->comm, task_pid_nr(current)); |
Linus Torvalds | ee24aeb | 2011-02-10 17:53:55 -0800 | [diff] [blame] | 776 | return 0; |
| 777 | } |
| 778 | return -EPERM; |
| 779 | } |
| 780 | return 0; |
| 781 | } |
| 782 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 783 | #if defined(CONFIG_PRINTK_TIME) |
| 784 | static bool printk_time = 1; |
| 785 | #else |
| 786 | static bool printk_time; |
| 787 | #endif |
| 788 | module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR); |
| 789 | |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 790 | static size_t print_prefix(const struct log *msg, bool syslog, char *buf) |
Kay Sievers | 649e6ee | 2012-05-10 04:30:45 +0200 | [diff] [blame] | 791 | { |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 792 | size_t len = 0; |
Kay Sievers | 649e6ee | 2012-05-10 04:30:45 +0200 | [diff] [blame] | 793 | |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 794 | if (syslog) { |
| 795 | if (buf) { |
| 796 | len += sprintf(buf, "<%u>", msg->level); |
| 797 | } else { |
| 798 | len += 3; |
| 799 | if (msg->level > 9) |
| 800 | len++; |
| 801 | if (msg->level > 99) |
| 802 | len++; |
| 803 | } |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 804 | } |
| 805 | |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 806 | if (printk_time) { |
| 807 | if (buf) { |
| 808 | unsigned long long ts = msg->ts_nsec; |
| 809 | unsigned long rem_nsec = do_div(ts, 1000000000); |
| 810 | |
| 811 | len += sprintf(buf + len, "[%5lu.%06lu] ", |
| 812 | (unsigned long) ts, rem_nsec / 1000); |
| 813 | } else { |
| 814 | len += 15; |
| 815 | } |
| 816 | } |
| 817 | |
| 818 | return len; |
| 819 | } |
| 820 | |
| 821 | static size_t msg_print_text(const struct log *msg, bool syslog, |
| 822 | char *buf, size_t size) |
| 823 | { |
| 824 | const char *text = log_text(msg); |
| 825 | size_t text_size = msg->text_len; |
| 826 | size_t len = 0; |
| 827 | |
| 828 | do { |
| 829 | const char *next = memchr(text, '\n', text_size); |
| 830 | size_t text_len; |
| 831 | |
| 832 | if (next) { |
| 833 | text_len = next - text; |
| 834 | next++; |
| 835 | text_size -= next - text; |
| 836 | } else { |
| 837 | text_len = text_size; |
| 838 | } |
| 839 | |
| 840 | if (buf) { |
| 841 | if (print_prefix(msg, syslog, NULL) + |
| 842 | text_len + 1>= size - len) |
| 843 | break; |
| 844 | |
| 845 | len += print_prefix(msg, syslog, buf + len); |
| 846 | memcpy(buf + len, text, text_len); |
| 847 | len += text_len; |
| 848 | buf[len++] = '\n'; |
| 849 | } else { |
| 850 | /* SYSLOG_ACTION_* buffer size only calculation */ |
| 851 | len += print_prefix(msg, syslog, NULL); |
| 852 | len += text_len + 1; |
| 853 | } |
| 854 | |
| 855 | text = next; |
| 856 | } while (text); |
| 857 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 858 | return len; |
| 859 | } |
| 860 | |
| 861 | static int syslog_print(char __user *buf, int size) |
| 862 | { |
| 863 | char *text; |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 864 | struct log *msg; |
Jan Beulich | 116e90b | 2012-06-22 16:36:09 +0100 | [diff] [blame^] | 865 | int len = 0; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 866 | |
| 867 | text = kmalloc(LOG_LINE_MAX, GFP_KERNEL); |
| 868 | if (!text) |
| 869 | return -ENOMEM; |
| 870 | |
Jan Beulich | 116e90b | 2012-06-22 16:36:09 +0100 | [diff] [blame^] | 871 | while (size > 0) { |
| 872 | size_t n; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 873 | |
Jan Beulich | 116e90b | 2012-06-22 16:36:09 +0100 | [diff] [blame^] | 874 | raw_spin_lock_irq(&logbuf_lock); |
| 875 | if (syslog_seq < log_first_seq) { |
| 876 | /* messages are gone, move to first one */ |
| 877 | syslog_seq = log_first_seq; |
| 878 | syslog_idx = log_first_idx; |
| 879 | } |
| 880 | if (syslog_seq == log_next_seq) { |
| 881 | raw_spin_unlock_irq(&logbuf_lock); |
| 882 | break; |
| 883 | } |
| 884 | msg = log_from_idx(syslog_idx); |
| 885 | n = msg_print_text(msg, true, text, LOG_LINE_MAX); |
| 886 | if (n <= size) { |
| 887 | syslog_idx = log_next(syslog_idx); |
| 888 | syslog_seq++; |
| 889 | } else |
| 890 | n = 0; |
| 891 | raw_spin_unlock_irq(&logbuf_lock); |
| 892 | |
| 893 | if (!n) |
| 894 | break; |
| 895 | |
| 896 | len += n; |
| 897 | size -= n; |
| 898 | buf += n; |
| 899 | n = copy_to_user(buf - n, text, n); |
| 900 | |
| 901 | if (n) { |
| 902 | len -= n; |
| 903 | if (!len) |
| 904 | len = -EFAULT; |
| 905 | break; |
| 906 | } |
| 907 | } |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 908 | |
| 909 | kfree(text); |
| 910 | return len; |
| 911 | } |
| 912 | |
| 913 | static int syslog_print_all(char __user *buf, int size, bool clear) |
| 914 | { |
| 915 | char *text; |
| 916 | int len = 0; |
| 917 | |
| 918 | text = kmalloc(LOG_LINE_MAX, GFP_KERNEL); |
| 919 | if (!text) |
| 920 | return -ENOMEM; |
| 921 | |
| 922 | raw_spin_lock_irq(&logbuf_lock); |
| 923 | if (buf) { |
| 924 | u64 next_seq; |
| 925 | u64 seq; |
| 926 | u32 idx; |
| 927 | |
| 928 | if (clear_seq < log_first_seq) { |
| 929 | /* messages are gone, move to first available one */ |
| 930 | clear_seq = log_first_seq; |
| 931 | clear_idx = log_first_idx; |
| 932 | } |
| 933 | |
| 934 | /* |
| 935 | * Find first record that fits, including all following records, |
| 936 | * into the user-provided buffer for this dump. |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 937 | */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 938 | seq = clear_seq; |
| 939 | idx = clear_idx; |
| 940 | while (seq < log_next_seq) { |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 941 | struct log *msg = log_from_idx(idx); |
| 942 | |
| 943 | len += msg_print_text(msg, true, NULL, 0); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 944 | idx = log_next(idx); |
| 945 | seq++; |
| 946 | } |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 947 | |
| 948 | /* move first record forward until length fits into the buffer */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 949 | seq = clear_seq; |
| 950 | idx = clear_idx; |
| 951 | while (len > size && seq < log_next_seq) { |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 952 | struct log *msg = log_from_idx(idx); |
| 953 | |
| 954 | len -= msg_print_text(msg, true, NULL, 0); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 955 | idx = log_next(idx); |
| 956 | seq++; |
| 957 | } |
| 958 | |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 959 | /* last message fitting into this dump */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 960 | next_seq = log_next_seq; |
| 961 | |
| 962 | len = 0; |
| 963 | while (len >= 0 && seq < next_seq) { |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 964 | struct log *msg = log_from_idx(idx); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 965 | int textlen; |
| 966 | |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 967 | textlen = msg_print_text(msg, true, text, LOG_LINE_MAX); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 968 | if (textlen < 0) { |
| 969 | len = textlen; |
| 970 | break; |
| 971 | } |
| 972 | idx = log_next(idx); |
| 973 | seq++; |
| 974 | |
| 975 | raw_spin_unlock_irq(&logbuf_lock); |
| 976 | if (copy_to_user(buf + len, text, textlen)) |
| 977 | len = -EFAULT; |
| 978 | else |
| 979 | len += textlen; |
| 980 | raw_spin_lock_irq(&logbuf_lock); |
| 981 | |
| 982 | if (seq < log_first_seq) { |
| 983 | /* messages are gone, move to next one */ |
| 984 | seq = log_first_seq; |
| 985 | idx = log_first_idx; |
| 986 | } |
| 987 | } |
| 988 | } |
| 989 | |
| 990 | if (clear) { |
| 991 | clear_seq = log_next_seq; |
| 992 | clear_idx = log_next_idx; |
| 993 | } |
| 994 | raw_spin_unlock_irq(&logbuf_lock); |
| 995 | |
| 996 | kfree(text); |
| 997 | return len; |
| 998 | } |
| 999 | |
Kees Cook | 0023459 | 2010-02-03 15:36:43 -0800 | [diff] [blame] | 1000 | int do_syslog(int type, char __user *buf, int len, bool from_file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | { |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1002 | bool clear = false; |
| 1003 | static int saved_console_loglevel = -1; |
Yuanhan Liu | 4a77a5a | 2012-06-16 21:21:51 +0800 | [diff] [blame] | 1004 | static DEFINE_MUTEX(syslog_mutex); |
Linus Torvalds | ee24aeb | 2011-02-10 17:53:55 -0800 | [diff] [blame] | 1005 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | |
Linus Torvalds | ee24aeb | 2011-02-10 17:53:55 -0800 | [diff] [blame] | 1007 | error = check_syslog_permissions(type, from_file); |
| 1008 | if (error) |
| 1009 | goto out; |
Eric Paris | 12b3052 | 2010-11-15 18:36:29 -0500 | [diff] [blame] | 1010 | |
| 1011 | error = security_syslog(type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | if (error) |
| 1013 | return error; |
| 1014 | |
| 1015 | switch (type) { |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1016 | case SYSLOG_ACTION_CLOSE: /* Close log */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1018 | case SYSLOG_ACTION_OPEN: /* Open log */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1020 | case SYSLOG_ACTION_READ: /* Read from log */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | error = -EINVAL; |
| 1022 | if (!buf || len < 0) |
| 1023 | goto out; |
| 1024 | error = 0; |
| 1025 | if (!len) |
| 1026 | goto out; |
| 1027 | if (!access_ok(VERIFY_WRITE, buf, len)) { |
| 1028 | error = -EFAULT; |
| 1029 | goto out; |
| 1030 | } |
Yuanhan Liu | 4a77a5a | 2012-06-16 21:21:51 +0800 | [diff] [blame] | 1031 | error = mutex_lock_interruptible(&syslog_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | if (error) |
| 1033 | goto out; |
Yuanhan Liu | 4a77a5a | 2012-06-16 21:21:51 +0800 | [diff] [blame] | 1034 | error = wait_event_interruptible(log_wait, |
| 1035 | syslog_seq != log_next_seq); |
| 1036 | if (error) { |
| 1037 | mutex_unlock(&syslog_mutex); |
| 1038 | goto out; |
| 1039 | } |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1040 | error = syslog_print(buf, len); |
Yuanhan Liu | 4a77a5a | 2012-06-16 21:21:51 +0800 | [diff] [blame] | 1041 | mutex_unlock(&syslog_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1043 | /* Read/clear last kernel messages */ |
| 1044 | case SYSLOG_ACTION_READ_CLEAR: |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1045 | clear = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | /* FALL THRU */ |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1047 | /* Read last kernel messages */ |
| 1048 | case SYSLOG_ACTION_READ_ALL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | error = -EINVAL; |
| 1050 | if (!buf || len < 0) |
| 1051 | goto out; |
| 1052 | error = 0; |
| 1053 | if (!len) |
| 1054 | goto out; |
| 1055 | if (!access_ok(VERIFY_WRITE, buf, len)) { |
| 1056 | error = -EFAULT; |
| 1057 | goto out; |
| 1058 | } |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1059 | error = syslog_print_all(buf, len, clear); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1061 | /* Clear ring buffer */ |
| 1062 | case SYSLOG_ACTION_CLEAR: |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1063 | syslog_print_all(NULL, 0, true); |
Alan Stern | 4661e35 | 2012-06-22 17:12:19 -0400 | [diff] [blame] | 1064 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1065 | /* Disable logging to console */ |
| 1066 | case SYSLOG_ACTION_CONSOLE_OFF: |
Frans Pop | 1aaad49 | 2009-07-06 13:31:48 +0200 | [diff] [blame] | 1067 | if (saved_console_loglevel == -1) |
| 1068 | saved_console_loglevel = console_loglevel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | console_loglevel = minimum_console_loglevel; |
| 1070 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1071 | /* Enable logging to console */ |
| 1072 | case SYSLOG_ACTION_CONSOLE_ON: |
Frans Pop | 1aaad49 | 2009-07-06 13:31:48 +0200 | [diff] [blame] | 1073 | if (saved_console_loglevel != -1) { |
| 1074 | console_loglevel = saved_console_loglevel; |
| 1075 | saved_console_loglevel = -1; |
| 1076 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1078 | /* Set level of messages printed to console */ |
| 1079 | case SYSLOG_ACTION_CONSOLE_LEVEL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | error = -EINVAL; |
| 1081 | if (len < 1 || len > 8) |
| 1082 | goto out; |
| 1083 | if (len < minimum_console_loglevel) |
| 1084 | len = minimum_console_loglevel; |
| 1085 | console_loglevel = len; |
Frans Pop | 1aaad49 | 2009-07-06 13:31:48 +0200 | [diff] [blame] | 1086 | /* Implicitly re-enable logging to console */ |
| 1087 | saved_console_loglevel = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | error = 0; |
| 1089 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1090 | /* Number of chars in the log buffer */ |
| 1091 | case SYSLOG_ACTION_SIZE_UNREAD: |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1092 | raw_spin_lock_irq(&logbuf_lock); |
| 1093 | if (syslog_seq < log_first_seq) { |
| 1094 | /* messages are gone, move to first one */ |
| 1095 | syslog_seq = log_first_seq; |
| 1096 | syslog_idx = log_first_idx; |
| 1097 | } |
| 1098 | if (from_file) { |
| 1099 | /* |
| 1100 | * Short-cut for poll(/"proc/kmsg") which simply checks |
| 1101 | * for pending data, not the size; return the count of |
| 1102 | * records, not the length. |
| 1103 | */ |
| 1104 | error = log_next_idx - syslog_idx; |
| 1105 | } else { |
| 1106 | u64 seq; |
| 1107 | u32 idx; |
| 1108 | |
| 1109 | error = 0; |
| 1110 | seq = syslog_seq; |
| 1111 | idx = syslog_idx; |
| 1112 | while (seq < log_next_seq) { |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1113 | struct log *msg = log_from_idx(idx); |
| 1114 | |
| 1115 | error += msg_print_text(msg, true, NULL, 0); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1116 | idx = log_next(idx); |
| 1117 | seq++; |
| 1118 | } |
| 1119 | } |
| 1120 | raw_spin_unlock_irq(&logbuf_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1122 | /* Size of the log buffer */ |
| 1123 | case SYSLOG_ACTION_SIZE_BUFFER: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | error = log_buf_len; |
| 1125 | break; |
| 1126 | default: |
| 1127 | error = -EINVAL; |
| 1128 | break; |
| 1129 | } |
| 1130 | out: |
| 1131 | return error; |
| 1132 | } |
| 1133 | |
Heiko Carstens | 1e7bfb2 | 2009-01-14 14:14:29 +0100 | [diff] [blame] | 1134 | SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | { |
Kees Cook | 0023459 | 2010-02-03 15:36:43 -0800 | [diff] [blame] | 1136 | return do_syslog(type, buf, len, SYSLOG_FROM_CALL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | } |
| 1138 | |
Jason Wessel | 67fc4e0 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 1139 | #ifdef CONFIG_KGDB_KDB |
| 1140 | /* kdb dmesg command needs access to the syslog buffer. do_syslog() |
| 1141 | * uses locks so it cannot be used during debugging. Just tell kdb |
| 1142 | * where the start and end of the physical and logical logs are. This |
| 1143 | * is equivalent to do_syslog(3). |
| 1144 | */ |
| 1145 | void kdb_syslog_data(char *syslog_data[4]) |
| 1146 | { |
| 1147 | syslog_data[0] = log_buf; |
| 1148 | syslog_data[1] = log_buf + log_buf_len; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1149 | syslog_data[2] = log_buf + log_first_idx; |
| 1150 | syslog_data[3] = log_buf + log_next_idx; |
Jason Wessel | 67fc4e0 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 1151 | } |
| 1152 | #endif /* CONFIG_KGDB_KDB */ |
| 1153 | |
Rusty Russell | 2329abf | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 1154 | static bool __read_mostly ignore_loglevel; |
Ingo Molnar | 79290822 | 2006-12-06 20:40:51 -0800 | [diff] [blame] | 1155 | |
Adrian Bunk | 99eea6a | 2006-12-22 01:07:00 -0800 | [diff] [blame] | 1156 | static int __init ignore_loglevel_setup(char *str) |
Ingo Molnar | 79290822 | 2006-12-06 20:40:51 -0800 | [diff] [blame] | 1157 | { |
| 1158 | ignore_loglevel = 1; |
| 1159 | printk(KERN_INFO "debug: ignoring loglevel setting.\n"); |
| 1160 | |
Ingo Molnar | c4772d9 | 2008-01-31 22:45:23 +0100 | [diff] [blame] | 1161 | return 0; |
Ingo Molnar | 79290822 | 2006-12-06 20:40:51 -0800 | [diff] [blame] | 1162 | } |
| 1163 | |
Ingo Molnar | c4772d9 | 2008-01-31 22:45:23 +0100 | [diff] [blame] | 1164 | early_param("ignore_loglevel", ignore_loglevel_setup); |
Rusty Russell | 29d4d6d | 2012-01-13 09:32:17 +1030 | [diff] [blame] | 1165 | module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR); |
Yanmin Zhang | 0eca6b7 | 2011-10-31 17:11:25 -0700 | [diff] [blame] | 1166 | MODULE_PARM_DESC(ignore_loglevel, "ignore loglevel setting, to" |
| 1167 | "print all kernel messages to the console."); |
Ingo Molnar | 79290822 | 2006-12-06 20:40:51 -0800 | [diff] [blame] | 1168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | * Call the console drivers, asking them to write out |
| 1171 | * log_buf[start] to log_buf[end - 1]. |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1172 | * The console_lock must be held. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1174 | static void call_console_drivers(int level, const char *text, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | { |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1176 | struct console *con; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1178 | trace_console(text, 0, len, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1180 | if (level >= console_loglevel && !ignore_loglevel) |
| 1181 | return; |
| 1182 | if (!console_drivers) |
| 1183 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1185 | for_each_console(con) { |
| 1186 | if (exclusive_console && con != exclusive_console) |
| 1187 | continue; |
| 1188 | if (!(con->flags & CON_ENABLED)) |
| 1189 | continue; |
| 1190 | if (!con->write) |
| 1191 | continue; |
| 1192 | if (!cpu_online(smp_processor_id()) && |
| 1193 | !(con->flags & CON_ANYTIME)) |
| 1194 | continue; |
| 1195 | con->write(con, text, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | } |
| 1198 | |
| 1199 | /* |
| 1200 | * Zap console related locks when oopsing. Only zap at most once |
| 1201 | * every 10 seconds, to leave time for slow consoles to print a |
| 1202 | * full oops. |
| 1203 | */ |
| 1204 | static void zap_locks(void) |
| 1205 | { |
| 1206 | static unsigned long oops_timestamp; |
| 1207 | |
| 1208 | if (time_after_eq(jiffies, oops_timestamp) && |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 1209 | !time_after(jiffies, oops_timestamp + 30 * HZ)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | return; |
| 1211 | |
| 1212 | oops_timestamp = jiffies; |
| 1213 | |
Peter Zijlstra | 94d24fc | 2011-06-07 11:17:30 +0200 | [diff] [blame] | 1214 | debug_locks_off(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | /* If a crash is occurring, make sure we can't deadlock */ |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 1216 | raw_spin_lock_init(&logbuf_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | /* And make sure that we print immediately */ |
Thomas Gleixner | 5b8c4f2 | 2010-09-07 14:33:43 +0000 | [diff] [blame] | 1218 | sema_init(&console_sem, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | } |
| 1220 | |
Michael Ellerman | 76a8ad2 | 2006-06-25 05:47:40 -0700 | [diff] [blame] | 1221 | /* Check if we have any console registered that can be called early in boot. */ |
| 1222 | static int have_callable_console(void) |
| 1223 | { |
| 1224 | struct console *con; |
| 1225 | |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1226 | for_each_console(con) |
Michael Ellerman | 76a8ad2 | 2006-06-25 05:47:40 -0700 | [diff] [blame] | 1227 | if (con->flags & CON_ANYTIME) |
| 1228 | return 1; |
| 1229 | |
| 1230 | return 0; |
| 1231 | } |
| 1232 | |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1233 | /* |
| 1234 | * Can we actually use the console at this time on this cpu? |
| 1235 | * |
| 1236 | * Console drivers may assume that per-cpu resources have |
| 1237 | * been allocated. So unless they're explicitly marked as |
| 1238 | * being able to cope (CON_ANYTIME) don't call them until |
| 1239 | * this CPU is officially up. |
| 1240 | */ |
| 1241 | static inline int can_use_console(unsigned int cpu) |
| 1242 | { |
| 1243 | return cpu_online(cpu) || have_callable_console(); |
| 1244 | } |
| 1245 | |
| 1246 | /* |
| 1247 | * Try to get console ownership to actually show the kernel |
| 1248 | * messages from a 'printk'. Return true (and with the |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1249 | * console_lock held, and 'console_locked' set) if it |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1250 | * is successful, false otherwise. |
| 1251 | * |
| 1252 | * This gets called with the 'logbuf_lock' spinlock held and |
| 1253 | * interrupts disabled. It should return with 'lockbuf_lock' |
| 1254 | * released but interrupts still disabled. |
| 1255 | */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1256 | static int console_trylock_for_printk(unsigned int cpu) |
Namhyung Kim | 8155c02 | 2010-10-26 14:22:47 -0700 | [diff] [blame] | 1257 | __releases(&logbuf_lock) |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1258 | { |
Peter Zijlstra | 0b5e1c5 | 2011-06-07 11:15:33 +0200 | [diff] [blame] | 1259 | int retval = 0, wake = 0; |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1260 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1261 | if (console_trylock()) { |
Linus Torvalds | 093a07e | 2008-04-15 13:09:54 -0700 | [diff] [blame] | 1262 | retval = 1; |
| 1263 | |
| 1264 | /* |
| 1265 | * If we can't use the console, we need to release |
| 1266 | * the console semaphore by hand to avoid flushing |
| 1267 | * the buffer. We need to hold the console semaphore |
| 1268 | * in order to do this test safely. |
| 1269 | */ |
| 1270 | if (!can_use_console(cpu)) { |
| 1271 | console_locked = 0; |
Peter Zijlstra | 0b5e1c5 | 2011-06-07 11:15:33 +0200 | [diff] [blame] | 1272 | wake = 1; |
Linus Torvalds | 093a07e | 2008-04-15 13:09:54 -0700 | [diff] [blame] | 1273 | retval = 0; |
| 1274 | } |
| 1275 | } |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1276 | logbuf_cpu = UINT_MAX; |
Peter Zijlstra | 0b5e1c5 | 2011-06-07 11:15:33 +0200 | [diff] [blame] | 1277 | if (wake) |
| 1278 | up(&console_sem); |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 1279 | raw_spin_unlock(&logbuf_lock); |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1280 | return retval; |
| 1281 | } |
Ingo Molnar | 32a7600 | 2008-01-25 21:07:58 +0100 | [diff] [blame] | 1282 | |
Dave Young | af91322 | 2009-09-22 16:43:33 -0700 | [diff] [blame] | 1283 | int printk_delay_msec __read_mostly; |
| 1284 | |
| 1285 | static inline void printk_delay(void) |
| 1286 | { |
| 1287 | if (unlikely(printk_delay_msec)) { |
| 1288 | int m = printk_delay_msec; |
| 1289 | |
| 1290 | while (m--) { |
| 1291 | mdelay(1); |
| 1292 | touch_nmi_watchdog(); |
| 1293 | } |
| 1294 | } |
| 1295 | } |
| 1296 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1297 | asmlinkage int vprintk_emit(int facility, int level, |
| 1298 | const char *dict, size_t dictlen, |
| 1299 | const char *fmt, va_list args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | { |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1301 | static int recursion_bug; |
Kay Sievers | c313af1 | 2012-05-14 20:46:27 +0200 | [diff] [blame] | 1302 | static char cont_buf[LOG_LINE_MAX]; |
| 1303 | static size_t cont_len; |
| 1304 | static int cont_level; |
| 1305 | static struct task_struct *cont_task; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1306 | static char textbuf[LOG_LINE_MAX]; |
| 1307 | char *text = textbuf; |
Kay Sievers | c313af1 | 2012-05-14 20:46:27 +0200 | [diff] [blame] | 1308 | size_t text_len; |
Nick Andrew | ac60ad7 | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 1309 | unsigned long flags; |
Ingo Molnar | 32a7600 | 2008-01-25 21:07:58 +0100 | [diff] [blame] | 1310 | int this_cpu; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1311 | bool newline = false; |
Kay Sievers | 5c5d5ca | 2012-05-10 04:32:53 +0200 | [diff] [blame] | 1312 | bool prefix = false; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1313 | int printed_len = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 1315 | boot_delay_msec(); |
Dave Young | af91322 | 2009-09-22 16:43:33 -0700 | [diff] [blame] | 1316 | printk_delay(); |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 1317 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | /* This stops the holder of console_sem just where we want him */ |
Peter Zijlstra | 1a9a8ae | 2011-06-07 11:17:30 +0200 | [diff] [blame] | 1319 | local_irq_save(flags); |
Ingo Molnar | 32a7600 | 2008-01-25 21:07:58 +0100 | [diff] [blame] | 1320 | this_cpu = smp_processor_id(); |
| 1321 | |
| 1322 | /* |
| 1323 | * Ouch, printk recursed into itself! |
| 1324 | */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1325 | if (unlikely(logbuf_cpu == this_cpu)) { |
Ingo Molnar | 32a7600 | 2008-01-25 21:07:58 +0100 | [diff] [blame] | 1326 | /* |
| 1327 | * If a crash is occurring during printk() on this CPU, |
| 1328 | * then try to get the crash message out but make sure |
| 1329 | * we can't deadlock. Otherwise just return to avoid the |
| 1330 | * recursion and return - but flag the recursion so that |
| 1331 | * it can be printed at the next appropriate moment: |
| 1332 | */ |
Peter Zijlstra | 94d24fc | 2011-06-07 11:17:30 +0200 | [diff] [blame] | 1333 | if (!oops_in_progress && !lockdep_recursing(current)) { |
Tejun Heo | 3b8945e | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 1334 | recursion_bug = 1; |
Ingo Molnar | 32a7600 | 2008-01-25 21:07:58 +0100 | [diff] [blame] | 1335 | goto out_restore_irqs; |
| 1336 | } |
| 1337 | zap_locks(); |
| 1338 | } |
| 1339 | |
Ingo Molnar | a0f1ccf | 2006-07-03 00:24:58 -0700 | [diff] [blame] | 1340 | lockdep_off(); |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 1341 | raw_spin_lock(&logbuf_lock); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1342 | logbuf_cpu = this_cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | |
Tejun Heo | 3b8945e | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 1344 | if (recursion_bug) { |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1345 | static const char recursion_msg[] = |
| 1346 | "BUG: recent printk recursion!"; |
| 1347 | |
Tejun Heo | 3b8945e | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 1348 | recursion_bug = 0; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1349 | printed_len += strlen(recursion_msg); |
| 1350 | /* emit KERN_CRIT message */ |
| 1351 | log_store(0, 2, NULL, 0, recursion_msg, printed_len); |
Linus Torvalds | 5fd29d6 | 2009-06-16 10:57:02 -0700 | [diff] [blame] | 1352 | } |
| 1353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | /* |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1355 | * The printf needs to come first; we need the syslog |
| 1356 | * prefix which might be passed-in as a parameter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | */ |
Kay Sievers | c313af1 | 2012-05-14 20:46:27 +0200 | [diff] [blame] | 1358 | text_len = vscnprintf(text, sizeof(textbuf), fmt, args); |
Nick Andrew | ac60ad7 | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 1359 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1360 | /* mark and strip a trailing newline */ |
Kay Sievers | c313af1 | 2012-05-14 20:46:27 +0200 | [diff] [blame] | 1361 | if (text_len && text[text_len-1] == '\n') { |
| 1362 | text_len--; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1363 | newline = true; |
| 1364 | } |
Kay Sievers | 9d90c8d | 2011-03-13 03:19:51 +0100 | [diff] [blame] | 1365 | |
Kay Sievers | c313af1 | 2012-05-14 20:46:27 +0200 | [diff] [blame] | 1366 | /* strip syslog prefix and extract log level or control flags */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1367 | if (text[0] == '<' && text[1] && text[2] == '>') { |
| 1368 | switch (text[1]) { |
| 1369 | case '0' ... '7': |
| 1370 | if (level == -1) |
| 1371 | level = text[1] - '0'; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1372 | case 'd': /* KERN_DEFAULT */ |
Kay Sievers | 5c5d5ca | 2012-05-10 04:32:53 +0200 | [diff] [blame] | 1373 | prefix = true; |
| 1374 | case 'c': /* KERN_CONT */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1375 | text += 3; |
Kay Sievers | c313af1 | 2012-05-14 20:46:27 +0200 | [diff] [blame] | 1376 | text_len -= 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | } |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1378 | } |
Nick Andrew | ac60ad7 | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 1379 | |
Kay Sievers | c313af1 | 2012-05-14 20:46:27 +0200 | [diff] [blame] | 1380 | if (level == -1) |
| 1381 | level = default_message_loglevel; |
| 1382 | |
| 1383 | if (dict) { |
| 1384 | prefix = true; |
| 1385 | newline = true; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1386 | } |
| 1387 | |
Kay Sievers | c313af1 | 2012-05-14 20:46:27 +0200 | [diff] [blame] | 1388 | if (!newline) { |
| 1389 | if (cont_len && (prefix || cont_task != current)) { |
| 1390 | /* |
| 1391 | * Flush earlier buffer, which is either from a |
| 1392 | * different thread, or when we got a new prefix. |
| 1393 | */ |
| 1394 | log_store(facility, cont_level, NULL, 0, cont_buf, cont_len); |
| 1395 | cont_len = 0; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1396 | } |
Kay Sievers | c313af1 | 2012-05-14 20:46:27 +0200 | [diff] [blame] | 1397 | |
| 1398 | if (!cont_len) { |
| 1399 | cont_level = level; |
| 1400 | cont_task = current; |
| 1401 | } |
| 1402 | |
| 1403 | /* buffer or append to earlier buffer from the same thread */ |
| 1404 | if (cont_len + text_len > sizeof(cont_buf)) |
| 1405 | text_len = sizeof(cont_buf) - cont_len; |
| 1406 | memcpy(cont_buf + cont_len, text, text_len); |
| 1407 | cont_len += text_len; |
Kay Sievers | 5c5d5ca | 2012-05-10 04:32:53 +0200 | [diff] [blame] | 1408 | } else { |
Kay Sievers | c313af1 | 2012-05-14 20:46:27 +0200 | [diff] [blame] | 1409 | if (cont_len && cont_task == current) { |
| 1410 | if (prefix) { |
| 1411 | /* |
| 1412 | * New prefix from the same thread; flush. We |
| 1413 | * either got no earlier newline, or we race |
| 1414 | * with an interrupt. |
| 1415 | */ |
| 1416 | log_store(facility, cont_level, |
| 1417 | NULL, 0, cont_buf, cont_len); |
| 1418 | cont_len = 0; |
| 1419 | } |
| 1420 | |
| 1421 | /* append to the earlier buffer and flush */ |
| 1422 | if (cont_len + text_len > sizeof(cont_buf)) |
| 1423 | text_len = sizeof(cont_buf) - cont_len; |
| 1424 | memcpy(cont_buf + cont_len, text, text_len); |
| 1425 | cont_len += text_len; |
| 1426 | log_store(facility, cont_level, |
| 1427 | NULL, 0, cont_buf, cont_len); |
| 1428 | cont_len = 0; |
| 1429 | cont_task = NULL; |
| 1430 | printed_len = cont_len; |
| 1431 | } else { |
| 1432 | /* ordinary single and terminated line */ |
| 1433 | log_store(facility, level, |
| 1434 | dict, dictlen, text, text_len); |
| 1435 | printed_len = text_len; |
| 1436 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | } |
| 1438 | |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1439 | /* |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1440 | * Try to acquire and then immediately release the console semaphore. |
| 1441 | * The release will print out buffers and wake up /dev/kmsg and syslog() |
| 1442 | * users. |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1443 | * |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1444 | * The console_trylock_for_printk() function will release 'logbuf_lock' |
| 1445 | * regardless of whether it actually gets the console semaphore or not. |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1446 | */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1447 | if (console_trylock_for_printk(this_cpu)) |
| 1448 | console_unlock(); |
Michael Ellerman | 76a8ad2 | 2006-06-25 05:47:40 -0700 | [diff] [blame] | 1449 | |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1450 | lockdep_on(); |
Ingo Molnar | 32a7600 | 2008-01-25 21:07:58 +0100 | [diff] [blame] | 1451 | out_restore_irqs: |
Peter Zijlstra | 1a9a8ae | 2011-06-07 11:17:30 +0200 | [diff] [blame] | 1452 | local_irq_restore(flags); |
Michael Ellerman | 76a8ad2 | 2006-06-25 05:47:40 -0700 | [diff] [blame] | 1453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1454 | return printed_len; |
| 1455 | } |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1456 | EXPORT_SYMBOL(vprintk_emit); |
| 1457 | |
| 1458 | asmlinkage int vprintk(const char *fmt, va_list args) |
| 1459 | { |
| 1460 | return vprintk_emit(0, -1, NULL, 0, fmt, args); |
| 1461 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | EXPORT_SYMBOL(vprintk); |
| 1463 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1464 | asmlinkage int printk_emit(int facility, int level, |
| 1465 | const char *dict, size_t dictlen, |
| 1466 | const char *fmt, ...) |
| 1467 | { |
| 1468 | va_list args; |
| 1469 | int r; |
| 1470 | |
| 1471 | va_start(args, fmt); |
| 1472 | r = vprintk_emit(facility, level, dict, dictlen, fmt, args); |
| 1473 | va_end(args); |
| 1474 | |
| 1475 | return r; |
| 1476 | } |
| 1477 | EXPORT_SYMBOL(printk_emit); |
| 1478 | |
| 1479 | /** |
| 1480 | * printk - print a kernel message |
| 1481 | * @fmt: format string |
| 1482 | * |
| 1483 | * This is printk(). It can be called from any context. We want it to work. |
| 1484 | * |
| 1485 | * We try to grab the console_lock. If we succeed, it's easy - we log the |
| 1486 | * output and call the console drivers. If we fail to get the semaphore, we |
| 1487 | * place the output into the log buffer and return. The current holder of |
| 1488 | * the console_sem will notice the new output in console_unlock(); and will |
| 1489 | * send it to the consoles before releasing the lock. |
| 1490 | * |
| 1491 | * One effect of this deferred printing is that code which calls printk() and |
| 1492 | * then changes console_loglevel may break. This is because console_loglevel |
| 1493 | * is inspected when the actual printing occurs. |
| 1494 | * |
| 1495 | * See also: |
| 1496 | * printf(3) |
| 1497 | * |
| 1498 | * See the vsnprintf() documentation for format string extensions over C99. |
| 1499 | */ |
| 1500 | asmlinkage int printk(const char *fmt, ...) |
| 1501 | { |
| 1502 | va_list args; |
| 1503 | int r; |
| 1504 | |
| 1505 | #ifdef CONFIG_KGDB_KDB |
| 1506 | if (unlikely(kdb_trap_printk)) { |
| 1507 | va_start(args, fmt); |
| 1508 | r = vkdb_printf(fmt, args); |
| 1509 | va_end(args); |
| 1510 | return r; |
| 1511 | } |
| 1512 | #endif |
| 1513 | va_start(args, fmt); |
| 1514 | r = vprintk_emit(0, -1, NULL, 0, fmt, args); |
| 1515 | va_end(args); |
| 1516 | |
| 1517 | return r; |
| 1518 | } |
| 1519 | EXPORT_SYMBOL(printk); |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 1520 | |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 1521 | #else |
| 1522 | |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 1523 | #define LOG_LINE_MAX 0 |
| 1524 | static struct log *log_from_idx(u32 idx) { return NULL; } |
| 1525 | static u32 log_next(u32 idx) { return 0; } |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 1526 | static void call_console_drivers(int level, const char *text, size_t len) {} |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1527 | static size_t msg_print_text(const struct log *msg, bool syslog, |
| 1528 | char *buf, size_t size) { return 0; } |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 1529 | |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 1530 | #endif /* CONFIG_PRINTK */ |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 1531 | |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 1532 | static int __add_preferred_console(char *name, int idx, char *options, |
| 1533 | char *brl_options) |
| 1534 | { |
| 1535 | struct console_cmdline *c; |
| 1536 | int i; |
| 1537 | |
| 1538 | /* |
| 1539 | * See if this tty is not yet registered, and |
| 1540 | * if we have a slot free. |
| 1541 | */ |
| 1542 | for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++) |
| 1543 | if (strcmp(console_cmdline[i].name, name) == 0 && |
| 1544 | console_cmdline[i].index == idx) { |
| 1545 | if (!brl_options) |
| 1546 | selected_console = i; |
| 1547 | return 0; |
| 1548 | } |
| 1549 | if (i == MAX_CMDLINECONSOLES) |
| 1550 | return -E2BIG; |
| 1551 | if (!brl_options) |
| 1552 | selected_console = i; |
| 1553 | c = &console_cmdline[i]; |
| 1554 | strlcpy(c->name, name, sizeof(c->name)); |
| 1555 | c->options = options; |
| 1556 | #ifdef CONFIG_A11Y_BRAILLE_CONSOLE |
| 1557 | c->brl_options = brl_options; |
| 1558 | #endif |
| 1559 | c->index = idx; |
| 1560 | return 0; |
| 1561 | } |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1562 | /* |
| 1563 | * Set up a list of consoles. Called from init/main.c |
| 1564 | */ |
| 1565 | static int __init console_setup(char *str) |
| 1566 | { |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 1567 | char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for index */ |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 1568 | char *s, *options, *brl_options = NULL; |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1569 | int idx; |
| 1570 | |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 1571 | #ifdef CONFIG_A11Y_BRAILLE_CONSOLE |
| 1572 | if (!memcmp(str, "brl,", 4)) { |
| 1573 | brl_options = ""; |
| 1574 | str += 4; |
| 1575 | } else if (!memcmp(str, "brl=", 4)) { |
| 1576 | brl_options = str + 4; |
| 1577 | str = strchr(brl_options, ','); |
| 1578 | if (!str) { |
| 1579 | printk(KERN_ERR "need port name after brl=\n"); |
| 1580 | return 1; |
| 1581 | } |
| 1582 | *(str++) = 0; |
| 1583 | } |
| 1584 | #endif |
| 1585 | |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1586 | /* |
| 1587 | * Decode str into name, index, options. |
| 1588 | */ |
| 1589 | if (str[0] >= '0' && str[0] <= '9') { |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 1590 | strcpy(buf, "ttyS"); |
| 1591 | strncpy(buf + 4, str, sizeof(buf) - 5); |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1592 | } else { |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 1593 | strncpy(buf, str, sizeof(buf) - 1); |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1594 | } |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 1595 | buf[sizeof(buf) - 1] = 0; |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1596 | if ((options = strchr(str, ',')) != NULL) |
| 1597 | *(options++) = 0; |
| 1598 | #ifdef __sparc__ |
| 1599 | if (!strcmp(str, "ttya")) |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 1600 | strcpy(buf, "ttyS0"); |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1601 | if (!strcmp(str, "ttyb")) |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 1602 | strcpy(buf, "ttyS1"); |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1603 | #endif |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 1604 | for (s = buf; *s; s++) |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1605 | if ((*s >= '0' && *s <= '9') || *s == ',') |
| 1606 | break; |
| 1607 | idx = simple_strtoul(s, NULL, 10); |
| 1608 | *s = 0; |
| 1609 | |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 1610 | __add_preferred_console(buf, idx, options, brl_options); |
Markus Armbruster | 9e124fe | 2008-05-26 23:31:07 +0100 | [diff] [blame] | 1611 | console_set_on_cmdline = 1; |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1612 | return 1; |
| 1613 | } |
| 1614 | __setup("console=", console_setup); |
| 1615 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | /** |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 1617 | * add_preferred_console - add a device to the list of preferred consoles. |
Martin Waitz | ddad86c | 2005-11-13 16:08:14 -0800 | [diff] [blame] | 1618 | * @name: device name |
| 1619 | * @idx: device index |
| 1620 | * @options: options for this console |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 1621 | * |
| 1622 | * The last preferred console added will be used for kernel messages |
| 1623 | * and stdin/out/err for init. Normally this is used by console_setup |
| 1624 | * above to handle user-supplied console arguments; however it can also |
| 1625 | * be used by arch-specific code either to override the user or more |
| 1626 | * commonly to provide a default console (ie from PROM variables) when |
| 1627 | * the user has not supplied one. |
| 1628 | */ |
David S. Miller | fb445ee | 2007-12-29 01:19:49 -0800 | [diff] [blame] | 1629 | int add_preferred_console(char *name, int idx, char *options) |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 1630 | { |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 1631 | return __add_preferred_console(name, idx, options, NULL); |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 1632 | } |
| 1633 | |
Daniel Ritz | b6b1d87 | 2007-08-03 16:07:43 +0200 | [diff] [blame] | 1634 | int update_console_cmdline(char *name, int idx, char *name_new, int idx_new, char *options) |
Yinghai Lu | 18a8bd9 | 2007-07-15 23:37:59 -0700 | [diff] [blame] | 1635 | { |
| 1636 | struct console_cmdline *c; |
| 1637 | int i; |
| 1638 | |
| 1639 | for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++) |
| 1640 | if (strcmp(console_cmdline[i].name, name) == 0 && |
| 1641 | console_cmdline[i].index == idx) { |
| 1642 | c = &console_cmdline[i]; |
Markus Armbruster | f735295 | 2008-04-30 00:54:52 -0700 | [diff] [blame] | 1643 | strlcpy(c->name, name_new, sizeof(c->name)); |
Yinghai Lu | 18a8bd9 | 2007-07-15 23:37:59 -0700 | [diff] [blame] | 1644 | c->name[sizeof(c->name) - 1] = 0; |
| 1645 | c->options = options; |
| 1646 | c->index = idx_new; |
| 1647 | return i; |
| 1648 | } |
| 1649 | /* not found */ |
| 1650 | return -1; |
| 1651 | } |
| 1652 | |
Rusty Russell | 2329abf | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 1653 | bool console_suspend_enabled = 1; |
Andres Salomon | 8f4ce8c | 2007-10-18 03:04:50 -0700 | [diff] [blame] | 1654 | EXPORT_SYMBOL(console_suspend_enabled); |
| 1655 | |
| 1656 | static int __init console_suspend_disable(char *str) |
| 1657 | { |
| 1658 | console_suspend_enabled = 0; |
| 1659 | return 1; |
| 1660 | } |
| 1661 | __setup("no_console_suspend", console_suspend_disable); |
Yanmin Zhang | 134620f | 2011-10-31 17:11:27 -0700 | [diff] [blame] | 1662 | module_param_named(console_suspend, console_suspend_enabled, |
| 1663 | bool, S_IRUGO | S_IWUSR); |
| 1664 | MODULE_PARM_DESC(console_suspend, "suspend console during suspend" |
| 1665 | " and hibernate operations"); |
Andres Salomon | 8f4ce8c | 2007-10-18 03:04:50 -0700 | [diff] [blame] | 1666 | |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 1667 | /** |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 1668 | * suspend_console - suspend the console subsystem |
| 1669 | * |
| 1670 | * This disables printk() while we go into suspend states |
| 1671 | */ |
| 1672 | void suspend_console(void) |
| 1673 | { |
Andres Salomon | 8f4ce8c | 2007-10-18 03:04:50 -0700 | [diff] [blame] | 1674 | if (!console_suspend_enabled) |
| 1675 | return; |
Pavel Machek | 0d63081 | 2008-07-23 21:28:32 -0700 | [diff] [blame] | 1676 | printk("Suspending console(s) (use no_console_suspend to debug)\n"); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1677 | console_lock(); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 1678 | console_suspended = 1; |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 1679 | up(&console_sem); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 1680 | } |
| 1681 | |
| 1682 | void resume_console(void) |
| 1683 | { |
Andres Salomon | 8f4ce8c | 2007-10-18 03:04:50 -0700 | [diff] [blame] | 1684 | if (!console_suspend_enabled) |
| 1685 | return; |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 1686 | down(&console_sem); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 1687 | console_suspended = 0; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1688 | console_unlock(); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 1689 | } |
| 1690 | |
| 1691 | /** |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 1692 | * console_cpu_notify - print deferred console messages after CPU hotplug |
| 1693 | * @self: notifier struct |
| 1694 | * @action: CPU hotplug event |
| 1695 | * @hcpu: unused |
| 1696 | * |
| 1697 | * If printk() is called from a CPU that is not online yet, the messages |
| 1698 | * will be spooled but will not show up on the console. This function is |
| 1699 | * called when a new CPU comes online (or fails to come up), and ensures |
| 1700 | * that any such output gets printed. |
| 1701 | */ |
| 1702 | static int __cpuinit console_cpu_notify(struct notifier_block *self, |
| 1703 | unsigned long action, void *hcpu) |
| 1704 | { |
| 1705 | switch (action) { |
| 1706 | case CPU_ONLINE: |
| 1707 | case CPU_DEAD: |
| 1708 | case CPU_DYING: |
| 1709 | case CPU_DOWN_FAILED: |
| 1710 | case CPU_UP_CANCELED: |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1711 | console_lock(); |
| 1712 | console_unlock(); |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 1713 | } |
| 1714 | return NOTIFY_OK; |
| 1715 | } |
| 1716 | |
| 1717 | /** |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1718 | * console_lock - lock the console system for exclusive use. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1719 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1720 | * Acquires a lock which guarantees that the caller has |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | * exclusive access to the console system and the console_drivers list. |
| 1722 | * |
| 1723 | * Can sleep, returns nothing. |
| 1724 | */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1725 | void console_lock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1726 | { |
Eric Sesterhenn | 8abd8e2 | 2006-04-01 01:21:17 +0200 | [diff] [blame] | 1727 | BUG_ON(in_interrupt()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | down(&console_sem); |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 1729 | if (console_suspended) |
| 1730 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | console_locked = 1; |
| 1732 | console_may_schedule = 1; |
| 1733 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1734 | EXPORT_SYMBOL(console_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1736 | /** |
| 1737 | * console_trylock - try to lock the console system for exclusive use. |
| 1738 | * |
| 1739 | * Tried to acquire a lock which guarantees that the caller has |
| 1740 | * exclusive access to the console system and the console_drivers list. |
| 1741 | * |
| 1742 | * returns 1 on success, and 0 on failure to acquire the lock. |
| 1743 | */ |
| 1744 | int console_trylock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | { |
| 1746 | if (down_trylock(&console_sem)) |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1747 | return 0; |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 1748 | if (console_suspended) { |
| 1749 | up(&console_sem); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1750 | return 0; |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 1751 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | console_locked = 1; |
| 1753 | console_may_schedule = 0; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1754 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1756 | EXPORT_SYMBOL(console_trylock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | |
| 1758 | int is_console_locked(void) |
| 1759 | { |
| 1760 | return console_locked; |
| 1761 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 1763 | /* |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1764 | * Delayed printk version, for scheduler-internal messages: |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 1765 | */ |
| 1766 | #define PRINTK_BUF_SIZE 512 |
| 1767 | |
| 1768 | #define PRINTK_PENDING_WAKEUP 0x01 |
| 1769 | #define PRINTK_PENDING_SCHED 0x02 |
| 1770 | |
Peter Zijlstra | b845b51 | 2008-08-08 21:47:09 +0200 | [diff] [blame] | 1771 | static DEFINE_PER_CPU(int, printk_pending); |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 1772 | static DEFINE_PER_CPU(char [PRINTK_BUF_SIZE], printk_sched_buf); |
Peter Zijlstra | b845b51 | 2008-08-08 21:47:09 +0200 | [diff] [blame] | 1773 | |
| 1774 | void printk_tick(void) |
| 1775 | { |
Eric Dumazet | 40dc11f | 2010-11-26 17:22:16 +0100 | [diff] [blame] | 1776 | if (__this_cpu_read(printk_pending)) { |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 1777 | int pending = __this_cpu_xchg(printk_pending, 0); |
| 1778 | if (pending & PRINTK_PENDING_SCHED) { |
| 1779 | char *buf = __get_cpu_var(printk_sched_buf); |
| 1780 | printk(KERN_WARNING "[sched_delayed] %s", buf); |
| 1781 | } |
| 1782 | if (pending & PRINTK_PENDING_WAKEUP) |
| 1783 | wake_up_interruptible(&log_wait); |
Peter Zijlstra | b845b51 | 2008-08-08 21:47:09 +0200 | [diff] [blame] | 1784 | } |
| 1785 | } |
| 1786 | |
| 1787 | int printk_needs_cpu(int cpu) |
| 1788 | { |
Eric Dumazet | 40dc11f | 2010-11-26 17:22:16 +0100 | [diff] [blame] | 1789 | if (cpu_is_offline(cpu)) |
Heiko Carstens | 61ab254 | 2010-11-26 13:00:59 +0100 | [diff] [blame] | 1790 | printk_tick(); |
Eric Dumazet | 40dc11f | 2010-11-26 17:22:16 +0100 | [diff] [blame] | 1791 | return __this_cpu_read(printk_pending); |
Peter Zijlstra | b845b51 | 2008-08-08 21:47:09 +0200 | [diff] [blame] | 1792 | } |
| 1793 | |
Kirill Korotaev | e3e8a75 | 2007-02-10 01:46:19 -0800 | [diff] [blame] | 1794 | void wake_up_klogd(void) |
| 1795 | { |
Peter Zijlstra | b845b51 | 2008-08-08 21:47:09 +0200 | [diff] [blame] | 1796 | if (waitqueue_active(&log_wait)) |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 1797 | this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP); |
Kirill Korotaev | e3e8a75 | 2007-02-10 01:46:19 -0800 | [diff] [blame] | 1798 | } |
| 1799 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1800 | /* the next printk record to write to the console */ |
| 1801 | static u64 console_seq; |
| 1802 | static u32 console_idx; |
| 1803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | /** |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1805 | * console_unlock - unlock the console system |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1807 | * Releases the console_lock which the caller holds on the console system |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | * and the console driver list. |
| 1809 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1810 | * While the console_lock was held, console output may have been buffered |
| 1811 | * by printk(). If this is the case, console_unlock(); emits |
| 1812 | * the output prior to releasing the lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | * |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 1814 | * If there is output waiting, we wake /dev/kmsg and syslog() users. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1816 | * console_unlock(); may be called from any context. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1818 | void console_unlock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | { |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1820 | static u64 seen_seq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | unsigned long flags; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1822 | bool wake_klogd = false; |
| 1823 | bool retry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 1825 | if (console_suspended) { |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 1826 | up(&console_sem); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 1827 | return; |
| 1828 | } |
Antonino A. Daplas | 78944e5 | 2006-08-05 12:14:16 -0700 | [diff] [blame] | 1829 | |
| 1830 | console_may_schedule = 0; |
| 1831 | |
Peter Zijlstra | 4f2a8d3 | 2011-06-22 11:20:09 +0200 | [diff] [blame] | 1832 | again: |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1833 | for (;;) { |
| 1834 | struct log *msg; |
| 1835 | static char text[LOG_LINE_MAX]; |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1836 | size_t len; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1837 | int level; |
| 1838 | |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 1839 | raw_spin_lock_irqsave(&logbuf_lock, flags); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1840 | if (seen_seq != log_next_seq) { |
| 1841 | wake_klogd = true; |
| 1842 | seen_seq = log_next_seq; |
| 1843 | } |
| 1844 | |
| 1845 | if (console_seq < log_first_seq) { |
| 1846 | /* messages are gone, move to first one */ |
| 1847 | console_seq = log_first_seq; |
| 1848 | console_idx = log_first_idx; |
| 1849 | } |
| 1850 | |
| 1851 | if (console_seq == log_next_seq) |
| 1852 | break; |
| 1853 | |
| 1854 | msg = log_from_idx(console_idx); |
| 1855 | level = msg->level & 7; |
Kay Sievers | 649e6ee | 2012-05-10 04:30:45 +0200 | [diff] [blame] | 1856 | |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1857 | len = msg_print_text(msg, false, text, sizeof(text)); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1858 | |
| 1859 | console_idx = log_next(console_idx); |
| 1860 | console_seq++; |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 1861 | raw_spin_unlock(&logbuf_lock); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1862 | |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 1863 | stop_critical_timings(); /* don't trace print latency */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1864 | call_console_drivers(level, text, len); |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 1865 | start_critical_timings(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1866 | local_irq_restore(flags); |
| 1867 | } |
| 1868 | console_locked = 0; |
Feng Tang | fe3d8ad | 2011-03-22 16:34:21 -0700 | [diff] [blame] | 1869 | |
| 1870 | /* Release the exclusive_console once it is used */ |
| 1871 | if (unlikely(exclusive_console)) |
| 1872 | exclusive_console = NULL; |
| 1873 | |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 1874 | raw_spin_unlock(&logbuf_lock); |
Peter Zijlstra | 4f2a8d3 | 2011-06-22 11:20:09 +0200 | [diff] [blame] | 1875 | |
Peter Zijlstra | 0b5e1c5 | 2011-06-07 11:15:33 +0200 | [diff] [blame] | 1876 | up(&console_sem); |
Peter Zijlstra | 4f2a8d3 | 2011-06-22 11:20:09 +0200 | [diff] [blame] | 1877 | |
| 1878 | /* |
| 1879 | * Someone could have filled up the buffer again, so re-check if there's |
| 1880 | * something to flush. In case we cannot trylock the console_sem again, |
| 1881 | * there's a new owner and the console_unlock() from them will do the |
| 1882 | * flush, no worries. |
| 1883 | */ |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 1884 | raw_spin_lock(&logbuf_lock); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1885 | retry = console_seq != log_next_seq; |
Peter Zijlstra | 09dc3cf | 2011-12-08 14:34:13 -0800 | [diff] [blame] | 1886 | raw_spin_unlock_irqrestore(&logbuf_lock, flags); |
| 1887 | |
Peter Zijlstra | 4f2a8d3 | 2011-06-22 11:20:09 +0200 | [diff] [blame] | 1888 | if (retry && console_trylock()) |
| 1889 | goto again; |
| 1890 | |
Kirill Korotaev | e3e8a75 | 2007-02-10 01:46:19 -0800 | [diff] [blame] | 1891 | if (wake_klogd) |
| 1892 | wake_up_klogd(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1894 | EXPORT_SYMBOL(console_unlock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | |
Martin Waitz | ddad86c | 2005-11-13 16:08:14 -0800 | [diff] [blame] | 1896 | /** |
| 1897 | * console_conditional_schedule - yield the CPU if required |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | * |
| 1899 | * If the console code is currently allowed to sleep, and |
| 1900 | * if this CPU should yield the CPU to another task, do |
| 1901 | * so here. |
| 1902 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1903 | * Must be called within console_lock();. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | */ |
| 1905 | void __sched console_conditional_schedule(void) |
| 1906 | { |
| 1907 | if (console_may_schedule) |
| 1908 | cond_resched(); |
| 1909 | } |
| 1910 | EXPORT_SYMBOL(console_conditional_schedule); |
| 1911 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 | void console_unblank(void) |
| 1913 | { |
| 1914 | struct console *c; |
| 1915 | |
| 1916 | /* |
| 1917 | * console_unblank can no longer be called in interrupt context unless |
| 1918 | * oops_in_progress is set to 1.. |
| 1919 | */ |
| 1920 | if (oops_in_progress) { |
| 1921 | if (down_trylock(&console_sem) != 0) |
| 1922 | return; |
| 1923 | } else |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1924 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | |
| 1926 | console_locked = 1; |
| 1927 | console_may_schedule = 0; |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1928 | for_each_console(c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1929 | if ((c->flags & CON_ENABLED) && c->unblank) |
| 1930 | c->unblank(); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1931 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | |
| 1934 | /* |
| 1935 | * Return the console tty driver structure and its associated index |
| 1936 | */ |
| 1937 | struct tty_driver *console_device(int *index) |
| 1938 | { |
| 1939 | struct console *c; |
| 1940 | struct tty_driver *driver = NULL; |
| 1941 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1942 | console_lock(); |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1943 | for_each_console(c) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | if (!c->device) |
| 1945 | continue; |
| 1946 | driver = c->device(c, index); |
| 1947 | if (driver) |
| 1948 | break; |
| 1949 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1950 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | return driver; |
| 1952 | } |
| 1953 | |
| 1954 | /* |
| 1955 | * Prevent further output on the passed console device so that (for example) |
| 1956 | * serial drivers can disable console output before suspending a port, and can |
| 1957 | * re-enable output afterwards. |
| 1958 | */ |
| 1959 | void console_stop(struct console *console) |
| 1960 | { |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1961 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | console->flags &= ~CON_ENABLED; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1963 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | } |
| 1965 | EXPORT_SYMBOL(console_stop); |
| 1966 | |
| 1967 | void console_start(struct console *console) |
| 1968 | { |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1969 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1970 | console->flags |= CON_ENABLED; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1971 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1972 | } |
| 1973 | EXPORT_SYMBOL(console_start); |
| 1974 | |
Fabio M. Di Nitto | 7bf6939 | 2011-03-22 16:34:20 -0700 | [diff] [blame] | 1975 | static int __read_mostly keep_bootcon; |
| 1976 | |
| 1977 | static int __init keep_bootcon_setup(char *str) |
| 1978 | { |
| 1979 | keep_bootcon = 1; |
| 1980 | printk(KERN_INFO "debug: skip boot console de-registration.\n"); |
| 1981 | |
| 1982 | return 0; |
| 1983 | } |
| 1984 | |
| 1985 | early_param("keep_bootcon", keep_bootcon_setup); |
| 1986 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | /* |
| 1988 | * The console driver calls this routine during kernel initialization |
| 1989 | * to register the console printing procedure with printk() and to |
| 1990 | * print any messages that were printed by the kernel before the |
| 1991 | * console driver was initialized. |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1992 | * |
| 1993 | * This can happen pretty early during the boot process (because of |
| 1994 | * early_printk) - sometimes before setup_arch() completes - be careful |
| 1995 | * of what kernel features are used - they may not be initialised yet. |
| 1996 | * |
| 1997 | * There are two types of consoles - bootconsoles (early_printk) and |
| 1998 | * "real" consoles (everything which is not a bootconsole) which are |
| 1999 | * handled differently. |
| 2000 | * - Any number of bootconsoles can be registered at any time. |
| 2001 | * - As soon as a "real" console is registered, all bootconsoles |
| 2002 | * will be unregistered automatically. |
| 2003 | * - Once a "real" console is registered, any attempt to register a |
| 2004 | * bootconsoles will be rejected |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | */ |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2006 | void register_console(struct console *newcon) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2007 | { |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 2008 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2009 | unsigned long flags; |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2010 | struct console *bcon = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2012 | /* |
| 2013 | * before we register a new CON_BOOT console, make sure we don't |
| 2014 | * already have a valid console |
| 2015 | */ |
| 2016 | if (console_drivers && newcon->flags & CON_BOOT) { |
| 2017 | /* find the last or real console */ |
| 2018 | for_each_console(bcon) { |
| 2019 | if (!(bcon->flags & CON_BOOT)) { |
| 2020 | printk(KERN_INFO "Too late to register bootconsole %s%d\n", |
| 2021 | newcon->name, newcon->index); |
| 2022 | return; |
| 2023 | } |
| 2024 | } |
Gerd Hoffmann | 69331af | 2007-05-08 00:26:49 -0700 | [diff] [blame] | 2025 | } |
| 2026 | |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2027 | if (console_drivers && console_drivers->flags & CON_BOOT) |
| 2028 | bcon = console_drivers; |
| 2029 | |
| 2030 | if (preferred_console < 0 || bcon || !console_drivers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2031 | preferred_console = selected_console; |
| 2032 | |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2033 | if (newcon->early_setup) |
| 2034 | newcon->early_setup(); |
Yinghai Lu | 18a8bd9 | 2007-07-15 23:37:59 -0700 | [diff] [blame] | 2035 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2036 | /* |
| 2037 | * See if we want to use this console driver. If we |
| 2038 | * didn't select a console we take the first one |
| 2039 | * that registers here. |
| 2040 | */ |
| 2041 | if (preferred_console < 0) { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2042 | if (newcon->index < 0) |
| 2043 | newcon->index = 0; |
| 2044 | if (newcon->setup == NULL || |
| 2045 | newcon->setup(newcon, NULL) == 0) { |
| 2046 | newcon->flags |= CON_ENABLED; |
| 2047 | if (newcon->device) { |
| 2048 | newcon->flags |= CON_CONSDEV; |
Jan Kiszka | cd3a1b8 | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 2049 | preferred_console = 0; |
| 2050 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2051 | } |
| 2052 | } |
| 2053 | |
| 2054 | /* |
| 2055 | * See if this console matches one we selected on |
| 2056 | * the command line. |
| 2057 | */ |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 2058 | for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; |
| 2059 | i++) { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2060 | if (strcmp(console_cmdline[i].name, newcon->name) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | continue; |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2062 | if (newcon->index >= 0 && |
| 2063 | newcon->index != console_cmdline[i].index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2064 | continue; |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2065 | if (newcon->index < 0) |
| 2066 | newcon->index = console_cmdline[i].index; |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 2067 | #ifdef CONFIG_A11Y_BRAILLE_CONSOLE |
| 2068 | if (console_cmdline[i].brl_options) { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2069 | newcon->flags |= CON_BRL; |
| 2070 | braille_register_console(newcon, |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 2071 | console_cmdline[i].index, |
| 2072 | console_cmdline[i].options, |
| 2073 | console_cmdline[i].brl_options); |
| 2074 | return; |
| 2075 | } |
| 2076 | #endif |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2077 | if (newcon->setup && |
| 2078 | newcon->setup(newcon, console_cmdline[i].options) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2079 | break; |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2080 | newcon->flags |= CON_ENABLED; |
| 2081 | newcon->index = console_cmdline[i].index; |
Greg Edwards | ab4af03 | 2005-06-23 00:09:05 -0700 | [diff] [blame] | 2082 | if (i == selected_console) { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2083 | newcon->flags |= CON_CONSDEV; |
Greg Edwards | ab4af03 | 2005-06-23 00:09:05 -0700 | [diff] [blame] | 2084 | preferred_console = selected_console; |
| 2085 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2086 | break; |
| 2087 | } |
| 2088 | |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2089 | if (!(newcon->flags & CON_ENABLED)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | return; |
| 2091 | |
Robin Getz | 8259cf4 | 2009-07-09 13:08:37 -0400 | [diff] [blame] | 2092 | /* |
| 2093 | * If we have a bootconsole, and are switching to a real console, |
| 2094 | * don't print everything out again, since when the boot console, and |
| 2095 | * the real console are the same physical device, it's annoying to |
| 2096 | * see the beginning boot messages twice |
| 2097 | */ |
| 2098 | if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV)) |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2099 | newcon->flags &= ~CON_PRINTBUFFER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | |
| 2101 | /* |
| 2102 | * Put this console in the list - keep the |
| 2103 | * preferred driver at the head of the list. |
| 2104 | */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2105 | console_lock(); |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2106 | if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) { |
| 2107 | newcon->next = console_drivers; |
| 2108 | console_drivers = newcon; |
| 2109 | if (newcon->next) |
| 2110 | newcon->next->flags &= ~CON_CONSDEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2111 | } else { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2112 | newcon->next = console_drivers->next; |
| 2113 | console_drivers->next = newcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | } |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2115 | if (newcon->flags & CON_PRINTBUFFER) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | /* |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2117 | * console_unlock(); will print out the buffered messages |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | * for us. |
| 2119 | */ |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 2120 | raw_spin_lock_irqsave(&logbuf_lock, flags); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2121 | console_seq = syslog_seq; |
| 2122 | console_idx = syslog_idx; |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 2123 | raw_spin_unlock_irqrestore(&logbuf_lock, flags); |
Feng Tang | fe3d8ad | 2011-03-22 16:34:21 -0700 | [diff] [blame] | 2124 | /* |
| 2125 | * We're about to replay the log buffer. Only do this to the |
| 2126 | * just-registered console to avoid excessive message spam to |
| 2127 | * the already-registered consoles. |
| 2128 | */ |
| 2129 | exclusive_console = newcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2131 | console_unlock(); |
Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 2132 | console_sysfs_notify(); |
Robin Getz | 8259cf4 | 2009-07-09 13:08:37 -0400 | [diff] [blame] | 2133 | |
| 2134 | /* |
| 2135 | * By unregistering the bootconsoles after we enable the real console |
| 2136 | * we get the "console xxx enabled" message on all the consoles - |
| 2137 | * boot consoles, real consoles, etc - this is to ensure that end |
| 2138 | * users know there might be something in the kernel's log buffer that |
| 2139 | * went to the bootconsole (that they do not see on the real console) |
| 2140 | */ |
Fabio M. Di Nitto | 7bf6939 | 2011-03-22 16:34:20 -0700 | [diff] [blame] | 2141 | if (bcon && |
| 2142 | ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) && |
| 2143 | !keep_bootcon) { |
Robin Getz | 8259cf4 | 2009-07-09 13:08:37 -0400 | [diff] [blame] | 2144 | /* we need to iterate through twice, to make sure we print |
| 2145 | * everything out, before we unregister the console(s) |
| 2146 | */ |
| 2147 | printk(KERN_INFO "console [%s%d] enabled, bootconsole disabled\n", |
| 2148 | newcon->name, newcon->index); |
| 2149 | for_each_console(bcon) |
| 2150 | if (bcon->flags & CON_BOOT) |
| 2151 | unregister_console(bcon); |
| 2152 | } else { |
| 2153 | printk(KERN_INFO "%sconsole [%s%d] enabled\n", |
| 2154 | (newcon->flags & CON_BOOT) ? "boot" : "" , |
| 2155 | newcon->name, newcon->index); |
| 2156 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2157 | } |
| 2158 | EXPORT_SYMBOL(register_console); |
| 2159 | |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 2160 | int unregister_console(struct console *console) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2161 | { |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 2162 | struct console *a, *b; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2163 | int res = 1; |
| 2164 | |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 2165 | #ifdef CONFIG_A11Y_BRAILLE_CONSOLE |
| 2166 | if (console->flags & CON_BRL) |
| 2167 | return braille_unregister_console(console); |
| 2168 | #endif |
| 2169 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2170 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | if (console_drivers == console) { |
| 2172 | console_drivers=console->next; |
| 2173 | res = 0; |
Benjamin Herrenschmidt | e9b15b5 | 2005-11-23 13:37:44 -0800 | [diff] [blame] | 2174 | } else if (console_drivers) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | for (a=console_drivers->next, b=console_drivers ; |
| 2176 | a; b=a, a=b->next) { |
| 2177 | if (a == console) { |
| 2178 | b->next = a->next; |
| 2179 | res = 0; |
| 2180 | break; |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 2181 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | } |
| 2183 | } |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 2184 | |
Gerd Hoffmann | 69331af | 2007-05-08 00:26:49 -0700 | [diff] [blame] | 2185 | /* |
Greg Edwards | ab4af03 | 2005-06-23 00:09:05 -0700 | [diff] [blame] | 2186 | * If this isn't the last console and it has CON_CONSDEV set, we |
| 2187 | * need to set it on the next preferred console. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2188 | */ |
Gerd Hoffmann | 69331af | 2007-05-08 00:26:49 -0700 | [diff] [blame] | 2189 | if (console_drivers != NULL && console->flags & CON_CONSDEV) |
Greg Edwards | ab4af03 | 2005-06-23 00:09:05 -0700 | [diff] [blame] | 2190 | console_drivers->flags |= CON_CONSDEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2191 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2192 | console_unlock(); |
Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 2193 | console_sysfs_notify(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | return res; |
| 2195 | } |
| 2196 | EXPORT_SYMBOL(unregister_console); |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 2197 | |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 2198 | static int __init printk_late_init(void) |
Robin Getz | 0c5564b | 2007-08-20 15:22:47 -0400 | [diff] [blame] | 2199 | { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2200 | struct console *con; |
| 2201 | |
| 2202 | for_each_console(con) { |
Nishanth Aravamudan | 4c30c6f | 2011-08-25 15:59:11 -0700 | [diff] [blame] | 2203 | if (!keep_bootcon && con->flags & CON_BOOT) { |
Robin Getz | cb00e99 | 2007-08-21 23:14:58 -0400 | [diff] [blame] | 2204 | printk(KERN_INFO "turn off boot console %s%d\n", |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2205 | con->name, con->index); |
Sonic Zhang | 42c2c8c | 2009-08-06 15:58:11 -0700 | [diff] [blame] | 2206 | unregister_console(con); |
Robin Getz | cb00e99 | 2007-08-21 23:14:58 -0400 | [diff] [blame] | 2207 | } |
Robin Getz | 0c5564b | 2007-08-20 15:22:47 -0400 | [diff] [blame] | 2208 | } |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 2209 | hotcpu_notifier(console_cpu_notify, 0); |
Robin Getz | 0c5564b | 2007-08-20 15:22:47 -0400 | [diff] [blame] | 2210 | return 0; |
| 2211 | } |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 2212 | late_initcall(printk_late_init); |
Robin Getz | 0c5564b | 2007-08-20 15:22:47 -0400 | [diff] [blame] | 2213 | |
Joe Perches | 7ef3d2f | 2008-02-08 04:21:25 -0800 | [diff] [blame] | 2214 | #if defined CONFIG_PRINTK |
Dave Young | 717115e | 2008-07-25 01:45:58 -0700 | [diff] [blame] | 2215 | |
Peter Zijlstra | 600e145 | 2012-03-15 12:35:37 +0100 | [diff] [blame] | 2216 | int printk_sched(const char *fmt, ...) |
| 2217 | { |
| 2218 | unsigned long flags; |
| 2219 | va_list args; |
| 2220 | char *buf; |
| 2221 | int r; |
| 2222 | |
| 2223 | local_irq_save(flags); |
| 2224 | buf = __get_cpu_var(printk_sched_buf); |
| 2225 | |
| 2226 | va_start(args, fmt); |
| 2227 | r = vsnprintf(buf, PRINTK_BUF_SIZE, fmt, args); |
| 2228 | va_end(args); |
| 2229 | |
| 2230 | __this_cpu_or(printk_pending, PRINTK_PENDING_SCHED); |
| 2231 | local_irq_restore(flags); |
| 2232 | |
| 2233 | return r; |
| 2234 | } |
| 2235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | /* |
| 2237 | * printk rate limiting, lifted from the networking subsystem. |
| 2238 | * |
Uwe Kleine-König | 641de9d | 2008-07-29 22:33:38 -0700 | [diff] [blame] | 2239 | * This enforces a rate limit: not more than 10 kernel messages |
| 2240 | * every 5s to make a denial-of-service attack impossible. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | */ |
Uwe Kleine-König | 641de9d | 2008-07-29 22:33:38 -0700 | [diff] [blame] | 2242 | DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10); |
| 2243 | |
Christian Borntraeger | 5c82871 | 2009-10-23 14:58:11 +0200 | [diff] [blame] | 2244 | int __printk_ratelimit(const char *func) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | { |
Christian Borntraeger | 5c82871 | 2009-10-23 14:58:11 +0200 | [diff] [blame] | 2246 | return ___ratelimit(&printk_ratelimit_state, func); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2247 | } |
Christian Borntraeger | 5c82871 | 2009-10-23 14:58:11 +0200 | [diff] [blame] | 2248 | EXPORT_SYMBOL(__printk_ratelimit); |
Andrew Morton | f46c483 | 2006-11-02 22:07:16 -0800 | [diff] [blame] | 2249 | |
| 2250 | /** |
| 2251 | * printk_timed_ratelimit - caller-controlled printk ratelimiting |
| 2252 | * @caller_jiffies: pointer to caller's state |
| 2253 | * @interval_msecs: minimum interval between prints |
| 2254 | * |
| 2255 | * printk_timed_ratelimit() returns true if more than @interval_msecs |
| 2256 | * milliseconds have elapsed since the last time printk_timed_ratelimit() |
| 2257 | * returned true. |
| 2258 | */ |
| 2259 | bool printk_timed_ratelimit(unsigned long *caller_jiffies, |
| 2260 | unsigned int interval_msecs) |
| 2261 | { |
Guillaume Knispel | f2d28a2 | 2009-03-17 16:18:42 +0100 | [diff] [blame] | 2262 | if (*caller_jiffies == 0 |
| 2263 | || !time_in_range(jiffies, *caller_jiffies, |
| 2264 | *caller_jiffies |
| 2265 | + msecs_to_jiffies(interval_msecs))) { |
| 2266 | *caller_jiffies = jiffies; |
Andrew Morton | f46c483 | 2006-11-02 22:07:16 -0800 | [diff] [blame] | 2267 | return true; |
| 2268 | } |
| 2269 | return false; |
| 2270 | } |
| 2271 | EXPORT_SYMBOL(printk_timed_ratelimit); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2272 | |
| 2273 | static DEFINE_SPINLOCK(dump_list_lock); |
| 2274 | static LIST_HEAD(dump_list); |
| 2275 | |
| 2276 | /** |
| 2277 | * kmsg_dump_register - register a kernel log dumper. |
Randy Dunlap | 6485536 | 2009-12-17 15:27:27 -0800 | [diff] [blame] | 2278 | * @dumper: pointer to the kmsg_dumper structure |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2279 | * |
| 2280 | * Adds a kernel log dumper to the system. The dump callback in the |
| 2281 | * structure will be called when the kernel oopses or panics and must be |
| 2282 | * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise. |
| 2283 | */ |
| 2284 | int kmsg_dump_register(struct kmsg_dumper *dumper) |
| 2285 | { |
| 2286 | unsigned long flags; |
| 2287 | int err = -EBUSY; |
| 2288 | |
| 2289 | /* The dump callback needs to be set */ |
| 2290 | if (!dumper->dump) |
| 2291 | return -EINVAL; |
| 2292 | |
| 2293 | spin_lock_irqsave(&dump_list_lock, flags); |
| 2294 | /* Don't allow registering multiple times */ |
| 2295 | if (!dumper->registered) { |
| 2296 | dumper->registered = 1; |
Huang Ying | fb842b0 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 2297 | list_add_tail_rcu(&dumper->list, &dump_list); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2298 | err = 0; |
| 2299 | } |
| 2300 | spin_unlock_irqrestore(&dump_list_lock, flags); |
| 2301 | |
| 2302 | return err; |
| 2303 | } |
| 2304 | EXPORT_SYMBOL_GPL(kmsg_dump_register); |
| 2305 | |
| 2306 | /** |
| 2307 | * kmsg_dump_unregister - unregister a kmsg dumper. |
Randy Dunlap | 6485536 | 2009-12-17 15:27:27 -0800 | [diff] [blame] | 2308 | * @dumper: pointer to the kmsg_dumper structure |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2309 | * |
| 2310 | * Removes a dump device from the system. Returns zero on success and |
| 2311 | * %-EINVAL otherwise. |
| 2312 | */ |
| 2313 | int kmsg_dump_unregister(struct kmsg_dumper *dumper) |
| 2314 | { |
| 2315 | unsigned long flags; |
| 2316 | int err = -EINVAL; |
| 2317 | |
| 2318 | spin_lock_irqsave(&dump_list_lock, flags); |
| 2319 | if (dumper->registered) { |
| 2320 | dumper->registered = 0; |
Huang Ying | fb842b0 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 2321 | list_del_rcu(&dumper->list); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2322 | err = 0; |
| 2323 | } |
| 2324 | spin_unlock_irqrestore(&dump_list_lock, flags); |
Huang Ying | fb842b0 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 2325 | synchronize_rcu(); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2326 | |
| 2327 | return err; |
| 2328 | } |
| 2329 | EXPORT_SYMBOL_GPL(kmsg_dump_unregister); |
| 2330 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2331 | static bool always_kmsg_dump; |
| 2332 | module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR); |
| 2333 | |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2334 | /** |
| 2335 | * kmsg_dump - dump kernel log to kernel message dumpers. |
| 2336 | * @reason: the reason (oops, panic etc) for dumping |
| 2337 | * |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 2338 | * Call each of the registered dumper's dump() callback, which can |
| 2339 | * retrieve the kmsg records with kmsg_dump_get_line() or |
| 2340 | * kmsg_dump_get_buffer(). |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2341 | */ |
| 2342 | void kmsg_dump(enum kmsg_dump_reason reason) |
| 2343 | { |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2344 | struct kmsg_dumper *dumper; |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2345 | unsigned long flags; |
| 2346 | |
Matthew Garrett | c22ab33 | 2012-03-05 14:59:10 -0800 | [diff] [blame] | 2347 | if ((reason > KMSG_DUMP_OOPS) && !always_kmsg_dump) |
| 2348 | return; |
| 2349 | |
Huang Ying | fb842b0 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 2350 | rcu_read_lock(); |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 2351 | list_for_each_entry_rcu(dumper, &dump_list, list) { |
| 2352 | if (dumper->max_reason && reason > dumper->max_reason) |
| 2353 | continue; |
| 2354 | |
| 2355 | /* initialize iterator with data about the stored records */ |
| 2356 | dumper->active = true; |
| 2357 | |
| 2358 | raw_spin_lock_irqsave(&logbuf_lock, flags); |
| 2359 | dumper->cur_seq = clear_seq; |
| 2360 | dumper->cur_idx = clear_idx; |
| 2361 | dumper->next_seq = log_next_seq; |
| 2362 | dumper->next_idx = log_next_idx; |
| 2363 | raw_spin_unlock_irqrestore(&logbuf_lock, flags); |
| 2364 | |
| 2365 | /* invoke dumper which will iterate over records */ |
| 2366 | dumper->dump(dumper, reason); |
| 2367 | |
| 2368 | /* reset iterator */ |
| 2369 | dumper->active = false; |
| 2370 | } |
Huang Ying | fb842b0 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 2371 | rcu_read_unlock(); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2372 | } |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 2373 | |
| 2374 | /** |
| 2375 | * kmsg_dump_get_line - retrieve one kmsg log line |
| 2376 | * @dumper: registered kmsg dumper |
| 2377 | * @syslog: include the "<4>" prefixes |
| 2378 | * @line: buffer to copy the line to |
| 2379 | * @size: maximum size of the buffer |
| 2380 | * @len: length of line placed into buffer |
| 2381 | * |
| 2382 | * Start at the beginning of the kmsg buffer, with the oldest kmsg |
| 2383 | * record, and copy one record into the provided buffer. |
| 2384 | * |
| 2385 | * Consecutive calls will return the next available record moving |
| 2386 | * towards the end of the buffer with the youngest messages. |
| 2387 | * |
| 2388 | * A return value of FALSE indicates that there are no more records to |
| 2389 | * read. |
| 2390 | */ |
| 2391 | bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog, |
| 2392 | char *line, size_t size, size_t *len) |
| 2393 | { |
| 2394 | unsigned long flags; |
| 2395 | struct log *msg; |
| 2396 | size_t l = 0; |
| 2397 | bool ret = false; |
| 2398 | |
| 2399 | if (!dumper->active) |
| 2400 | goto out; |
| 2401 | |
| 2402 | raw_spin_lock_irqsave(&logbuf_lock, flags); |
| 2403 | if (dumper->cur_seq < log_first_seq) { |
| 2404 | /* messages are gone, move to first available one */ |
| 2405 | dumper->cur_seq = log_first_seq; |
| 2406 | dumper->cur_idx = log_first_idx; |
| 2407 | } |
| 2408 | |
| 2409 | /* last entry */ |
| 2410 | if (dumper->cur_seq >= log_next_seq) { |
| 2411 | raw_spin_unlock_irqrestore(&logbuf_lock, flags); |
| 2412 | goto out; |
| 2413 | } |
| 2414 | |
| 2415 | msg = log_from_idx(dumper->cur_idx); |
| 2416 | l = msg_print_text(msg, syslog, |
| 2417 | line, size); |
| 2418 | |
| 2419 | dumper->cur_idx = log_next(dumper->cur_idx); |
| 2420 | dumper->cur_seq++; |
| 2421 | ret = true; |
| 2422 | raw_spin_unlock_irqrestore(&logbuf_lock, flags); |
| 2423 | out: |
| 2424 | if (len) |
| 2425 | *len = l; |
| 2426 | return ret; |
| 2427 | } |
| 2428 | EXPORT_SYMBOL_GPL(kmsg_dump_get_line); |
| 2429 | |
| 2430 | /** |
| 2431 | * kmsg_dump_get_buffer - copy kmsg log lines |
| 2432 | * @dumper: registered kmsg dumper |
| 2433 | * @syslog: include the "<4>" prefixes |
| 2434 | * @line: buffer to copy the line to |
| 2435 | * @size: maximum size of the buffer |
| 2436 | * @len: length of line placed into buffer |
| 2437 | * |
| 2438 | * Start at the end of the kmsg buffer and fill the provided buffer |
| 2439 | * with as many of the the *youngest* kmsg records that fit into it. |
| 2440 | * If the buffer is large enough, all available kmsg records will be |
| 2441 | * copied with a single call. |
| 2442 | * |
| 2443 | * Consecutive calls will fill the buffer with the next block of |
| 2444 | * available older records, not including the earlier retrieved ones. |
| 2445 | * |
| 2446 | * A return value of FALSE indicates that there are no more records to |
| 2447 | * read. |
| 2448 | */ |
| 2449 | bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog, |
| 2450 | char *buf, size_t size, size_t *len) |
| 2451 | { |
| 2452 | unsigned long flags; |
| 2453 | u64 seq; |
| 2454 | u32 idx; |
| 2455 | u64 next_seq; |
| 2456 | u32 next_idx; |
| 2457 | size_t l = 0; |
| 2458 | bool ret = false; |
| 2459 | |
| 2460 | if (!dumper->active) |
| 2461 | goto out; |
| 2462 | |
| 2463 | raw_spin_lock_irqsave(&logbuf_lock, flags); |
| 2464 | if (dumper->cur_seq < log_first_seq) { |
| 2465 | /* messages are gone, move to first available one */ |
| 2466 | dumper->cur_seq = log_first_seq; |
| 2467 | dumper->cur_idx = log_first_idx; |
| 2468 | } |
| 2469 | |
| 2470 | /* last entry */ |
| 2471 | if (dumper->cur_seq >= dumper->next_seq) { |
| 2472 | raw_spin_unlock_irqrestore(&logbuf_lock, flags); |
| 2473 | goto out; |
| 2474 | } |
| 2475 | |
| 2476 | /* calculate length of entire buffer */ |
| 2477 | seq = dumper->cur_seq; |
| 2478 | idx = dumper->cur_idx; |
| 2479 | while (seq < dumper->next_seq) { |
| 2480 | struct log *msg = log_from_idx(idx); |
| 2481 | |
| 2482 | l += msg_print_text(msg, true, NULL, 0); |
| 2483 | idx = log_next(idx); |
| 2484 | seq++; |
| 2485 | } |
| 2486 | |
| 2487 | /* move first record forward until length fits into the buffer */ |
| 2488 | seq = dumper->cur_seq; |
| 2489 | idx = dumper->cur_idx; |
| 2490 | while (l > size && seq < dumper->next_seq) { |
| 2491 | struct log *msg = log_from_idx(idx); |
| 2492 | |
| 2493 | l -= msg_print_text(msg, true, NULL, 0); |
| 2494 | idx = log_next(idx); |
| 2495 | seq++; |
| 2496 | } |
| 2497 | |
| 2498 | /* last message in next interation */ |
| 2499 | next_seq = seq; |
| 2500 | next_idx = idx; |
| 2501 | |
| 2502 | l = 0; |
| 2503 | while (seq < dumper->next_seq) { |
| 2504 | struct log *msg = log_from_idx(idx); |
| 2505 | |
| 2506 | l += msg_print_text(msg, syslog, |
| 2507 | buf + l, size - l); |
| 2508 | |
| 2509 | idx = log_next(idx); |
| 2510 | seq++; |
| 2511 | } |
| 2512 | |
| 2513 | dumper->next_seq = next_seq; |
| 2514 | dumper->next_idx = next_idx; |
| 2515 | ret = true; |
| 2516 | raw_spin_unlock_irqrestore(&logbuf_lock, flags); |
| 2517 | out: |
| 2518 | if (len) |
| 2519 | *len = l; |
| 2520 | return ret; |
| 2521 | } |
| 2522 | EXPORT_SYMBOL_GPL(kmsg_dump_get_buffer); |
| 2523 | |
| 2524 | /** |
| 2525 | * kmsg_dump_rewind - reset the interator |
| 2526 | * @dumper: registered kmsg dumper |
| 2527 | * |
| 2528 | * Reset the dumper's iterator so that kmsg_dump_get_line() and |
| 2529 | * kmsg_dump_get_buffer() can be called again and used multiple |
| 2530 | * times within the same dumper.dump() callback. |
| 2531 | */ |
| 2532 | void kmsg_dump_rewind(struct kmsg_dumper *dumper) |
| 2533 | { |
| 2534 | unsigned long flags; |
| 2535 | |
| 2536 | raw_spin_lock_irqsave(&logbuf_lock, flags); |
| 2537 | dumper->cur_seq = clear_seq; |
| 2538 | dumper->cur_idx = clear_idx; |
| 2539 | dumper->next_seq = log_next_seq; |
| 2540 | dumper->next_idx = log_next_idx; |
| 2541 | raw_spin_unlock_irqrestore(&logbuf_lock, flags); |
| 2542 | } |
| 2543 | EXPORT_SYMBOL_GPL(kmsg_dump_rewind); |
Joe Perches | 7ef3d2f | 2008-02-08 04:21:25 -0800 | [diff] [blame] | 2544 | #endif |