blob: d6a1412f6b09f3e0a460300c069895e5484202dc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Juhl40dc5652005-10-30 15:02:46 -080013 * Fixed SMP synchronization, 08/08/99, Manfred Spraul
Christian Kujau624dffc2006-01-15 02:43:54 +010014 * manfred@colorfullife.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Rewrote bits to get rid of console_lock
Francois Camie1f8e872008-10-15 22:01:59 -070016 * 01Mar01 Andrew Morton
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
19#include <linux/kernel.h>
20#include <linux/mm.h>
21#include <linux/tty.h>
22#include <linux/tty_driver.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/console.h>
24#include <linux/init.h>
Randy Dunlapbfe8df32007-10-16 01:23:46 -070025#include <linux/jiffies.h>
26#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/module.h>
Jan Engelhardt3b9c0412006-06-25 05:48:15 -070028#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/interrupt.h> /* For in_interrupt() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/delay.h>
31#include <linux/smp.h>
32#include <linux/security.h>
33#include <linux/bootmem.h>
Mike Travis162a7e72011-05-24 17:13:20 -070034#include <linux/memblock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/syscalls.h>
Neil Horman04d491a2009-04-02 16:58:57 -070036#include <linux/kexec.h>
Jason Wesseld37d39a2010-05-20 21:04:27 -050037#include <linux/kdb.h>
Ingo Molnar3fff4c42009-09-22 16:18:09 +020038#include <linux/ratelimit.h>
Simon Kagstrom456b5652009-10-16 14:09:18 +020039#include <linux/kmsg_dump.h>
Kees Cook00234592010-02-03 15:36:43 -080040#include <linux/syslog.h>
Kevin Cernekee034260d2010-06-03 22:11:25 -070041#include <linux/cpu.h>
42#include <linux/notifier.h>
Huang Yingfb842b02011-01-12 16:59:43 -080043#include <linux/rculist.h>
Kay Sieverse11fea92012-05-03 02:29:41 +020044#include <linux/poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <asm/uaccess.h>
47
Johannes Berg95100352011-11-24 20:03:08 +010048#define CREATE_TRACE_POINTS
49#include <trace/events/printk.h>
50
Ingo Molnar076f9772008-01-30 13:33:06 +010051/*
52 * Architectures can override it:
53 */
Jiri Slabye17ba732008-05-12 15:44:40 +020054void asmlinkage __attribute__((weak)) early_printk(const char *fmt, ...)
Ingo Molnar076f9772008-01-30 13:33:06 +010055{
56}
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/* printk's without a loglevel use this.. */
Mandeep Singh Baines5af5bcb2011-03-22 16:34:23 -070059#define DEFAULT_MESSAGE_LOGLEVEL CONFIG_DEFAULT_MESSAGE_LOGLEVEL
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
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
65DECLARE_WAIT_QUEUE_HEAD(log_wait);
66
67int 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 Torvalds1da177e2005-04-16 15:20:36 -070074/*
Patrick Pletscher0bbfb7c2007-02-17 20:10:16 +010075 * Low level drivers may need that to know if they can schedule in
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 * their unblank() callback or not. So let's export it.
77 */
78int oops_in_progress;
79EXPORT_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 Gleixner5b8c4f22010-09-07 14:33:43 +000086static DEFINE_SEMAPHORE(console_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087struct console *console_drivers;
Ingo Molnara29d1cf2008-06-02 13:19:08 +020088EXPORT_SYMBOL_GPL(console_drivers);
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090/*
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 Torvalds557240b2006-06-19 18:16:01 -070098static int console_locked, console_suspended;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100/*
Feng Tangfe3d8ad2011-03-22 16:34:21 -0700101 * If exclusive_console is non-NULL then only this console is to be printed to.
102 */
103static struct console *exclusive_console;
104
105/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * Array of consoles built from command line options (console=)
107 */
108struct 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 Thibaultf7511d52008-04-30 00:54:51 -0700113#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
114 char *brl_options; /* Options for braille driver */
115#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
118#define MAX_CMDLINECONSOLES 8
119
120static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
121static int selected_console = -1;
122static int preferred_console = -1;
Markus Armbruster9e124fe2008-05-26 23:31:07 +0100123int console_set_on_cmdline;
124EXPORT_SYMBOL(console_set_on_cmdline);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126/* Flag: console code may call schedule() */
127static int console_may_schedule;
128
Kay Sievers7ff95542012-05-03 02:29:13 +0200129/*
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 Sieverse11fea92012-05-03 02:29:41 +0200152 * 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 Sievers7ff95542012-05-03 02:29:13 +0200194 */
Matt Mackalld59745c2005-05-01 08:59:02 -0700195
Kay Sievers7ff95542012-05-03 02:29:13 +0200196struct 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 */
208static DEFINE_RAW_SPINLOCK(logbuf_lock);
209
Kay Sievers7f3a7812012-05-09 01:37:51 +0200210/* the next printk record to read by syslog(READ) or /proc/kmsg */
211static u64 syslog_seq;
212static u32 syslog_idx;
213
214/* index and sequence number of the first record stored in the buffer */
215static u64 log_first_seq;
216static u32 log_first_idx;
217
218/* index and sequence number of the next record to store in the buffer */
219static u64 log_next_seq;
220#ifdef CONFIG_PRINTK
221static u32 log_next_idx;
222
223/* the next printk record to read after the last 'clear' command */
224static u64 clear_seq;
225static u32 clear_idx;
Kay Sievers7ff95542012-05-03 02:29:13 +0200226
227#define LOG_LINE_MAX 1024
228
229/* record buffer */
Andrew Lunn6ebb0172012-06-05 08:52:34 +0200230#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
Stephen Warrenf8450fc2012-05-10 16:14:33 -0600231#define LOG_ALIGN 4
232#else
Andrew Lunn6ebb0172012-06-05 08:52:34 +0200233#define LOG_ALIGN __alignof__(struct log)
Stephen Warrenf8450fc2012-05-10 16:14:33 -0600234#endif
Kay Sievers7ff95542012-05-03 02:29:13 +0200235#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
Stephen Warrenf8450fc2012-05-10 16:14:33 -0600236static char __log_buf[__LOG_BUF_LEN] __aligned(LOG_ALIGN);
Matt Mackalld59745c2005-05-01 08:59:02 -0700237static char *log_buf = __log_buf;
Kay Sievers7ff95542012-05-03 02:29:13 +0200238static u32 log_buf_len = __LOG_BUF_LEN;
239
Kay Sievers7f3a7812012-05-09 01:37:51 +0200240/* cpu currently holding logbuf_lock */
241static volatile unsigned int logbuf_cpu = UINT_MAX;
Kay Sievers7ff95542012-05-03 02:29:13 +0200242
243/* human readable text of the record */
244static 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 */
250static 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 */
256static 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 */
270static 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 Sievers7ff95542012-05-03 02:29:13 +0200287/* insert record into the buffer, discard old ones, update heads */
288static 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 Mackalld59745c2005-05-01 08:59:02 -0700341
Kay Sieverse11fea92012-05-03 02:29:41 +0200342/* /dev/kmsg - userspace message inject/listen interface */
343struct devkmsg_user {
344 u64 seq;
345 u32 idx;
346 struct mutex lock;
347 char buf[8192];
348};
349
350static 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);
399out:
400 kfree(buf);
401 return ret;
402}
403
404static 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 Sievers5fc324902012-05-08 13:04:17 +0200409 u64 ts_usec;
Kay Sieverse11fea92012-05-03 02:29:41 +0200410 size_t i;
411 size_t len;
412 ssize_t ret;
413
414 if (!user)
415 return -EBADF;
416
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +0800417 ret = mutex_lock_interruptible(&user->lock);
418 if (ret)
419 return ret;
Kay Sieverse11fea92012-05-03 02:29:41 +0200420 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 Sievers5fc324902012-05-08 13:04:17 +0200446 ts_usec = msg->ts_nsec;
447 do_div(ts_usec, 1000);
Kay Sieverse11fea92012-05-03 02:29:41 +0200448 len = sprintf(user->buf, "%u,%llu,%llu;",
Kay Sievers5fc324902012-05-08 13:04:17 +0200449 msg->level, user->seq, ts_usec);
Kay Sieverse11fea92012-05-03 02:29:41 +0200450
451 /* escape non-printable characters */
452 for (i = 0; i < msg->text_len; i++) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200453 unsigned char c = log_text(msg)[i];
Kay Sieverse11fea92012-05-03 02:29:41 +0200454
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 Sievers3ce9a7c2012-05-13 23:30:46 +0200466 unsigned char c = log_dict(msg)[i];
Kay Sieverse11fea92012-05-03 02:29:41 +0200467
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;
503out:
504 mutex_unlock(&user->lock);
505 return ret;
506}
507
508static 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
546static 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
568static 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
596static 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
608const 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 Horman04d491a2009-04-02 16:58:57 -0700617#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 */
626void log_buf_kexec_setup(void)
627{
628 VMCOREINFO_SYMBOL(log_buf);
Neil Horman04d491a2009-04-02 16:58:57 -0700629 VMCOREINFO_SYMBOL(log_buf_len);
Kay Sievers7ff95542012-05-03 02:29:13 +0200630 VMCOREINFO_SYMBOL(log_first_idx);
631 VMCOREINFO_SYMBOL(log_next_idx);
Neil Horman04d491a2009-04-02 16:58:57 -0700632}
633#endif
634
Mike Travis162a7e72011-05-24 17:13:20 -0700635/* requested log_buf_len from kernel cmdline */
636static unsigned long __initdata new_log_buf_len;
637
638/* save requested log_buf_len since it's too early to process it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639static int __init log_buf_len_setup(char *str)
640{
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800641 unsigned size = memparse(str, &str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 if (size)
644 size = roundup_pow_of_two(size);
Mike Travis162a7e72011-05-24 17:13:20 -0700645 if (size > log_buf_len)
646 new_log_buf_len = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Mike Travis162a7e72011-05-24 17:13:20 -0700648 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
Mike Travis162a7e72011-05-24 17:13:20 -0700650early_param("log_buf_len", log_buf_len_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Mike Travis162a7e72011-05-24 17:13:20 -0700652void __init setup_log_buf(int early)
653{
654 unsigned long flags;
Mike Travis162a7e72011-05-24 17:13:20 -0700655 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 Heo1f5026a2011-07-12 09:58:09 +0200665 if (!mem)
Mike Travis162a7e72011-05-24 17:13:20 -0700666 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 Gleixner07354eb2009-07-25 17:50:36 +0200678 raw_spin_lock_irqsave(&logbuf_lock, flags);
Mike Travis162a7e72011-05-24 17:13:20 -0700679 log_buf_len = new_log_buf_len;
680 log_buf = new_log_buf;
681 new_log_buf_len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +0200682 free = __LOG_BUF_LEN - log_next_idx;
683 memcpy(log_buf, __log_buf, __LOG_BUF_LEN);
Thomas Gleixner07354eb2009-07-25 17:50:36 +0200684 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Mike Travis162a7e72011-05-24 17:13:20 -0700685
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 Torvalds1da177e2005-04-16 15:20:36 -0700690
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700691#ifdef CONFIG_BOOT_PRINTK_DELAY
692
Namhyung Kim674dff62010-10-26 14:22:48 -0700693static int boot_delay; /* msecs delay after each printk during bootup */
Dave Young3a3b6ed2009-09-22 16:43:31 -0700694static unsigned long long loops_per_msec; /* based on boot_delay */
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700695
696static int __init boot_delay_setup(char *str)
697{
698 unsigned long lpj;
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700699
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 Young3a3b6ed2009-09-22 16:43:31 -0700707 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 Dunlapbfe8df32007-10-16 01:23:46 -0700710 return 1;
711}
712__setup("boot_delay=", boot_delay_setup);
713
714static 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 Young3a3b6ed2009-09-22 16:43:31 -0700722 k = (unsigned long long)loops_per_msec * boot_delay;
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700723
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
739static inline void boot_delay_msec(void)
740{
741}
742#endif
743
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800744#ifdef CONFIG_SECURITY_DMESG_RESTRICT
745int dmesg_restrict = 1;
746#else
747int dmesg_restrict;
748#endif
749
Linus Torvaldsee24aeb2011-02-10 17:53:55 -0800750static 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
758static 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 Niederf2c0d022011-08-08 06:22:43 +0200772 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 Torvaldsee24aeb2011-02-10 17:53:55 -0800776 return 0;
777 }
778 return -EPERM;
779 }
780 return 0;
781}
782
Kay Sievers7ff95542012-05-03 02:29:13 +0200783#if defined(CONFIG_PRINTK_TIME)
784static bool printk_time = 1;
785#else
786static bool printk_time;
787#endif
788module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
789
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200790static size_t print_prefix(const struct log *msg, bool syslog, char *buf)
Kay Sievers649e6ee2012-05-10 04:30:45 +0200791{
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200792 size_t len = 0;
Kay Sievers649e6ee2012-05-10 04:30:45 +0200793
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200794 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 Sievers7ff95542012-05-03 02:29:13 +0200804 }
805
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200806 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
821static 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 Sievers7ff95542012-05-03 02:29:13 +0200858 return len;
859}
860
861static int syslog_print(char __user *buf, int size)
862{
863 char *text;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200864 struct log *msg;
Kay Sievers7ff95542012-05-03 02:29:13 +0200865 int len;
866
867 text = kmalloc(LOG_LINE_MAX, GFP_KERNEL);
868 if (!text)
869 return -ENOMEM;
870
871 raw_spin_lock_irq(&logbuf_lock);
872 if (syslog_seq < log_first_seq) {
873 /* messages are gone, move to first one */
874 syslog_seq = log_first_seq;
875 syslog_idx = log_first_idx;
876 }
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200877 msg = log_from_idx(syslog_idx);
878 len = msg_print_text(msg, true, text, LOG_LINE_MAX);
Kay Sievers7ff95542012-05-03 02:29:13 +0200879 syslog_idx = log_next(syslog_idx);
880 syslog_seq++;
881 raw_spin_unlock_irq(&logbuf_lock);
882
Yuanhan Liub56a39a2012-06-16 12:40:55 +0800883 if (len > size)
884 len = -EINVAL;
885 else if (len > 0 && copy_to_user(buf, text, len))
Kay Sievers7ff95542012-05-03 02:29:13 +0200886 len = -EFAULT;
887
888 kfree(text);
889 return len;
890}
891
892static int syslog_print_all(char __user *buf, int size, bool clear)
893{
894 char *text;
895 int len = 0;
896
897 text = kmalloc(LOG_LINE_MAX, GFP_KERNEL);
898 if (!text)
899 return -ENOMEM;
900
901 raw_spin_lock_irq(&logbuf_lock);
902 if (buf) {
903 u64 next_seq;
904 u64 seq;
905 u32 idx;
906
907 if (clear_seq < log_first_seq) {
908 /* messages are gone, move to first available one */
909 clear_seq = log_first_seq;
910 clear_idx = log_first_idx;
911 }
912
913 /*
914 * Find first record that fits, including all following records,
915 * into the user-provided buffer for this dump.
Kay Sieverse2ae7152012-06-15 14:07:51 +0200916 */
Kay Sievers7ff95542012-05-03 02:29:13 +0200917 seq = clear_seq;
918 idx = clear_idx;
919 while (seq < log_next_seq) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200920 struct log *msg = log_from_idx(idx);
921
922 len += msg_print_text(msg, true, NULL, 0);
Kay Sievers7ff95542012-05-03 02:29:13 +0200923 idx = log_next(idx);
924 seq++;
925 }
Kay Sieverse2ae7152012-06-15 14:07:51 +0200926
927 /* move first record forward until length fits into the buffer */
Kay Sievers7ff95542012-05-03 02:29:13 +0200928 seq = clear_seq;
929 idx = clear_idx;
930 while (len > size && seq < log_next_seq) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200931 struct log *msg = log_from_idx(idx);
932
933 len -= msg_print_text(msg, true, NULL, 0);
Kay Sievers7ff95542012-05-03 02:29:13 +0200934 idx = log_next(idx);
935 seq++;
936 }
937
Kay Sieverse2ae7152012-06-15 14:07:51 +0200938 /* last message fitting into this dump */
Kay Sievers7ff95542012-05-03 02:29:13 +0200939 next_seq = log_next_seq;
940
941 len = 0;
942 while (len >= 0 && seq < next_seq) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200943 struct log *msg = log_from_idx(idx);
Kay Sievers7ff95542012-05-03 02:29:13 +0200944 int textlen;
945
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200946 textlen = msg_print_text(msg, true, text, LOG_LINE_MAX);
Kay Sievers7ff95542012-05-03 02:29:13 +0200947 if (textlen < 0) {
948 len = textlen;
949 break;
950 }
951 idx = log_next(idx);
952 seq++;
953
954 raw_spin_unlock_irq(&logbuf_lock);
955 if (copy_to_user(buf + len, text, textlen))
956 len = -EFAULT;
957 else
958 len += textlen;
959 raw_spin_lock_irq(&logbuf_lock);
960
961 if (seq < log_first_seq) {
962 /* messages are gone, move to next one */
963 seq = log_first_seq;
964 idx = log_first_idx;
965 }
966 }
967 }
968
969 if (clear) {
970 clear_seq = log_next_seq;
971 clear_idx = log_next_idx;
972 }
973 raw_spin_unlock_irq(&logbuf_lock);
974
975 kfree(text);
976 return len;
977}
978
Kees Cook00234592010-02-03 15:36:43 -0800979int do_syslog(int type, char __user *buf, int len, bool from_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
Kay Sievers7ff95542012-05-03 02:29:13 +0200981 bool clear = false;
982 static int saved_console_loglevel = -1;
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +0800983 static DEFINE_MUTEX(syslog_mutex);
Linus Torvaldsee24aeb2011-02-10 17:53:55 -0800984 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Linus Torvaldsee24aeb2011-02-10 17:53:55 -0800986 error = check_syslog_permissions(type, from_file);
987 if (error)
988 goto out;
Eric Paris12b30522010-11-15 18:36:29 -0500989
990 error = security_syslog(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if (error)
992 return error;
993
994 switch (type) {
Kees Cookd78ca3c2010-02-03 15:37:13 -0800995 case SYSLOG_ACTION_CLOSE: /* Close log */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800997 case SYSLOG_ACTION_OPEN: /* Open log */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800999 case SYSLOG_ACTION_READ: /* Read from log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 error = -EINVAL;
1001 if (!buf || len < 0)
1002 goto out;
1003 error = 0;
1004 if (!len)
1005 goto out;
1006 if (!access_ok(VERIFY_WRITE, buf, len)) {
1007 error = -EFAULT;
1008 goto out;
1009 }
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +08001010 error = mutex_lock_interruptible(&syslog_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (error)
1012 goto out;
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +08001013 error = wait_event_interruptible(log_wait,
1014 syslog_seq != log_next_seq);
1015 if (error) {
1016 mutex_unlock(&syslog_mutex);
1017 goto out;
1018 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001019 error = syslog_print(buf, len);
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +08001020 mutex_unlock(&syslog_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001022 /* Read/clear last kernel messages */
1023 case SYSLOG_ACTION_READ_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +02001024 clear = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 /* FALL THRU */
Kees Cookd78ca3c2010-02-03 15:37:13 -08001026 /* Read last kernel messages */
1027 case SYSLOG_ACTION_READ_ALL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 error = -EINVAL;
1029 if (!buf || len < 0)
1030 goto out;
1031 error = 0;
1032 if (!len)
1033 goto out;
1034 if (!access_ok(VERIFY_WRITE, buf, len)) {
1035 error = -EFAULT;
1036 goto out;
1037 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001038 error = syslog_print_all(buf, len, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001040 /* Clear ring buffer */
1041 case SYSLOG_ACTION_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +02001042 syslog_print_all(NULL, 0, true);
Alan Stern4661e352012-06-22 17:12:19 -04001043 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001044 /* Disable logging to console */
1045 case SYSLOG_ACTION_CONSOLE_OFF:
Frans Pop1aaad492009-07-06 13:31:48 +02001046 if (saved_console_loglevel == -1)
1047 saved_console_loglevel = console_loglevel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 console_loglevel = minimum_console_loglevel;
1049 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001050 /* Enable logging to console */
1051 case SYSLOG_ACTION_CONSOLE_ON:
Frans Pop1aaad492009-07-06 13:31:48 +02001052 if (saved_console_loglevel != -1) {
1053 console_loglevel = saved_console_loglevel;
1054 saved_console_loglevel = -1;
1055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001057 /* Set level of messages printed to console */
1058 case SYSLOG_ACTION_CONSOLE_LEVEL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 error = -EINVAL;
1060 if (len < 1 || len > 8)
1061 goto out;
1062 if (len < minimum_console_loglevel)
1063 len = minimum_console_loglevel;
1064 console_loglevel = len;
Frans Pop1aaad492009-07-06 13:31:48 +02001065 /* Implicitly re-enable logging to console */
1066 saved_console_loglevel = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 error = 0;
1068 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001069 /* Number of chars in the log buffer */
1070 case SYSLOG_ACTION_SIZE_UNREAD:
Kay Sievers7ff95542012-05-03 02:29:13 +02001071 raw_spin_lock_irq(&logbuf_lock);
1072 if (syslog_seq < log_first_seq) {
1073 /* messages are gone, move to first one */
1074 syslog_seq = log_first_seq;
1075 syslog_idx = log_first_idx;
1076 }
1077 if (from_file) {
1078 /*
1079 * Short-cut for poll(/"proc/kmsg") which simply checks
1080 * for pending data, not the size; return the count of
1081 * records, not the length.
1082 */
1083 error = log_next_idx - syslog_idx;
1084 } else {
1085 u64 seq;
1086 u32 idx;
1087
1088 error = 0;
1089 seq = syslog_seq;
1090 idx = syslog_idx;
1091 while (seq < log_next_seq) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001092 struct log *msg = log_from_idx(idx);
1093
1094 error += msg_print_text(msg, true, NULL, 0);
Kay Sievers7ff95542012-05-03 02:29:13 +02001095 idx = log_next(idx);
1096 seq++;
1097 }
1098 }
1099 raw_spin_unlock_irq(&logbuf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001101 /* Size of the log buffer */
1102 case SYSLOG_ACTION_SIZE_BUFFER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 error = log_buf_len;
1104 break;
1105 default:
1106 error = -EINVAL;
1107 break;
1108 }
1109out:
1110 return error;
1111}
1112
Heiko Carstens1e7bfb22009-01-14 14:14:29 +01001113SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Kees Cook00234592010-02-03 15:36:43 -08001115 return do_syslog(type, buf, len, SYSLOG_FROM_CALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116}
1117
Jason Wessel67fc4e02010-05-20 21:04:21 -05001118#ifdef CONFIG_KGDB_KDB
1119/* kdb dmesg command needs access to the syslog buffer. do_syslog()
1120 * uses locks so it cannot be used during debugging. Just tell kdb
1121 * where the start and end of the physical and logical logs are. This
1122 * is equivalent to do_syslog(3).
1123 */
1124void kdb_syslog_data(char *syslog_data[4])
1125{
1126 syslog_data[0] = log_buf;
1127 syslog_data[1] = log_buf + log_buf_len;
Kay Sievers7ff95542012-05-03 02:29:13 +02001128 syslog_data[2] = log_buf + log_first_idx;
1129 syslog_data[3] = log_buf + log_next_idx;
Jason Wessel67fc4e02010-05-20 21:04:21 -05001130}
1131#endif /* CONFIG_KGDB_KDB */
1132
Rusty Russell2329abf2012-01-13 09:32:18 +10301133static bool __read_mostly ignore_loglevel;
Ingo Molnar792908222006-12-06 20:40:51 -08001134
Adrian Bunk99eea6a2006-12-22 01:07:00 -08001135static int __init ignore_loglevel_setup(char *str)
Ingo Molnar792908222006-12-06 20:40:51 -08001136{
1137 ignore_loglevel = 1;
1138 printk(KERN_INFO "debug: ignoring loglevel setting.\n");
1139
Ingo Molnarc4772d92008-01-31 22:45:23 +01001140 return 0;
Ingo Molnar792908222006-12-06 20:40:51 -08001141}
1142
Ingo Molnarc4772d92008-01-31 22:45:23 +01001143early_param("ignore_loglevel", ignore_loglevel_setup);
Rusty Russell29d4d6d2012-01-13 09:32:17 +10301144module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR);
Yanmin Zhang0eca6b72011-10-31 17:11:25 -07001145MODULE_PARM_DESC(ignore_loglevel, "ignore loglevel setting, to"
1146 "print all kernel messages to the console.");
Ingo Molnar792908222006-12-06 20:40:51 -08001147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 * Call the console drivers, asking them to write out
1150 * log_buf[start] to log_buf[end - 1].
Torben Hohnac751ef2011-01-25 15:07:35 -08001151 * The console_lock must be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001153static void call_console_drivers(int level, const char *text, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
Kay Sievers7ff95542012-05-03 02:29:13 +02001155 struct console *con;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Kay Sievers7ff95542012-05-03 02:29:13 +02001157 trace_console(text, 0, len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Kay Sievers7ff95542012-05-03 02:29:13 +02001159 if (level >= console_loglevel && !ignore_loglevel)
1160 return;
1161 if (!console_drivers)
1162 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Kay Sievers7ff95542012-05-03 02:29:13 +02001164 for_each_console(con) {
1165 if (exclusive_console && con != exclusive_console)
1166 continue;
1167 if (!(con->flags & CON_ENABLED))
1168 continue;
1169 if (!con->write)
1170 continue;
1171 if (!cpu_online(smp_processor_id()) &&
1172 !(con->flags & CON_ANYTIME))
1173 continue;
1174 con->write(con, text, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176}
1177
1178/*
1179 * Zap console related locks when oopsing. Only zap at most once
1180 * every 10 seconds, to leave time for slow consoles to print a
1181 * full oops.
1182 */
1183static void zap_locks(void)
1184{
1185 static unsigned long oops_timestamp;
1186
1187 if (time_after_eq(jiffies, oops_timestamp) &&
Jesper Juhl40dc5652005-10-30 15:02:46 -08001188 !time_after(jiffies, oops_timestamp + 30 * HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 return;
1190
1191 oops_timestamp = jiffies;
1192
Peter Zijlstra94d24fc2011-06-07 11:17:30 +02001193 debug_locks_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 /* If a crash is occurring, make sure we can't deadlock */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001195 raw_spin_lock_init(&logbuf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 /* And make sure that we print immediately */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +00001197 sema_init(&console_sem, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
Michael Ellerman76a8ad22006-06-25 05:47:40 -07001200/* Check if we have any console registered that can be called early in boot. */
1201static int have_callable_console(void)
1202{
1203 struct console *con;
1204
Robin Getz4d091612009-07-01 21:08:37 -04001205 for_each_console(con)
Michael Ellerman76a8ad22006-06-25 05:47:40 -07001206 if (con->flags & CON_ANYTIME)
1207 return 1;
1208
1209 return 0;
1210}
1211
Linus Torvalds266c2e02008-03-24 19:25:08 -07001212/*
1213 * Can we actually use the console at this time on this cpu?
1214 *
1215 * Console drivers may assume that per-cpu resources have
1216 * been allocated. So unless they're explicitly marked as
1217 * being able to cope (CON_ANYTIME) don't call them until
1218 * this CPU is officially up.
1219 */
1220static inline int can_use_console(unsigned int cpu)
1221{
1222 return cpu_online(cpu) || have_callable_console();
1223}
1224
1225/*
1226 * Try to get console ownership to actually show the kernel
1227 * messages from a 'printk'. Return true (and with the
Torben Hohnac751ef2011-01-25 15:07:35 -08001228 * console_lock held, and 'console_locked' set) if it
Linus Torvalds266c2e02008-03-24 19:25:08 -07001229 * is successful, false otherwise.
1230 *
1231 * This gets called with the 'logbuf_lock' spinlock held and
1232 * interrupts disabled. It should return with 'lockbuf_lock'
1233 * released but interrupts still disabled.
1234 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001235static int console_trylock_for_printk(unsigned int cpu)
Namhyung Kim8155c022010-10-26 14:22:47 -07001236 __releases(&logbuf_lock)
Linus Torvalds266c2e02008-03-24 19:25:08 -07001237{
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02001238 int retval = 0, wake = 0;
Linus Torvalds266c2e02008-03-24 19:25:08 -07001239
Torben Hohnac751ef2011-01-25 15:07:35 -08001240 if (console_trylock()) {
Linus Torvalds093a07e2008-04-15 13:09:54 -07001241 retval = 1;
1242
1243 /*
1244 * If we can't use the console, we need to release
1245 * the console semaphore by hand to avoid flushing
1246 * the buffer. We need to hold the console semaphore
1247 * in order to do this test safely.
1248 */
1249 if (!can_use_console(cpu)) {
1250 console_locked = 0;
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02001251 wake = 1;
Linus Torvalds093a07e2008-04-15 13:09:54 -07001252 retval = 0;
1253 }
1254 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001255 logbuf_cpu = UINT_MAX;
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02001256 if (wake)
1257 up(&console_sem);
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001258 raw_spin_unlock(&logbuf_lock);
Linus Torvalds266c2e02008-03-24 19:25:08 -07001259 return retval;
1260}
Ingo Molnar32a76002008-01-25 21:07:58 +01001261
Dave Youngaf913222009-09-22 16:43:33 -07001262int printk_delay_msec __read_mostly;
1263
1264static inline void printk_delay(void)
1265{
1266 if (unlikely(printk_delay_msec)) {
1267 int m = printk_delay_msec;
1268
1269 while (m--) {
1270 mdelay(1);
1271 touch_nmi_watchdog();
1272 }
1273 }
1274}
1275
Kay Sievers7ff95542012-05-03 02:29:13 +02001276asmlinkage int vprintk_emit(int facility, int level,
1277 const char *dict, size_t dictlen,
1278 const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
Kay Sievers7ff95542012-05-03 02:29:13 +02001280 static int recursion_bug;
Kay Sieversc313af12012-05-14 20:46:27 +02001281 static char cont_buf[LOG_LINE_MAX];
1282 static size_t cont_len;
1283 static int cont_level;
1284 static struct task_struct *cont_task;
Kay Sievers7ff95542012-05-03 02:29:13 +02001285 static char textbuf[LOG_LINE_MAX];
1286 char *text = textbuf;
Kay Sieversc313af12012-05-14 20:46:27 +02001287 size_t text_len;
Nick Andrewac60ad72008-05-12 21:21:04 +02001288 unsigned long flags;
Ingo Molnar32a76002008-01-25 21:07:58 +01001289 int this_cpu;
Kay Sievers7ff95542012-05-03 02:29:13 +02001290 bool newline = false;
Kay Sievers5c5d5ca2012-05-10 04:32:53 +02001291 bool prefix = false;
Kay Sievers7ff95542012-05-03 02:29:13 +02001292 int printed_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001294 boot_delay_msec();
Dave Youngaf913222009-09-22 16:43:33 -07001295 printk_delay();
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 /* This stops the holder of console_sem just where we want him */
Peter Zijlstra1a9a8ae2011-06-07 11:17:30 +02001298 local_irq_save(flags);
Ingo Molnar32a76002008-01-25 21:07:58 +01001299 this_cpu = smp_processor_id();
1300
1301 /*
1302 * Ouch, printk recursed into itself!
1303 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001304 if (unlikely(logbuf_cpu == this_cpu)) {
Ingo Molnar32a76002008-01-25 21:07:58 +01001305 /*
1306 * If a crash is occurring during printk() on this CPU,
1307 * then try to get the crash message out but make sure
1308 * we can't deadlock. Otherwise just return to avoid the
1309 * recursion and return - but flag the recursion so that
1310 * it can be printed at the next appropriate moment:
1311 */
Peter Zijlstra94d24fc2011-06-07 11:17:30 +02001312 if (!oops_in_progress && !lockdep_recursing(current)) {
Tejun Heo3b8945e2008-05-12 21:21:04 +02001313 recursion_bug = 1;
Ingo Molnar32a76002008-01-25 21:07:58 +01001314 goto out_restore_irqs;
1315 }
1316 zap_locks();
1317 }
1318
Ingo Molnara0f1ccf2006-07-03 00:24:58 -07001319 lockdep_off();
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001320 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02001321 logbuf_cpu = this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Tejun Heo3b8945e2008-05-12 21:21:04 +02001323 if (recursion_bug) {
Kay Sievers7ff95542012-05-03 02:29:13 +02001324 static const char recursion_msg[] =
1325 "BUG: recent printk recursion!";
1326
Tejun Heo3b8945e2008-05-12 21:21:04 +02001327 recursion_bug = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001328 printed_len += strlen(recursion_msg);
1329 /* emit KERN_CRIT message */
1330 log_store(0, 2, NULL, 0, recursion_msg, printed_len);
Linus Torvalds5fd29d62009-06-16 10:57:02 -07001331 }
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 /*
Kay Sievers7ff95542012-05-03 02:29:13 +02001334 * The printf needs to come first; we need the syslog
1335 * prefix which might be passed-in as a parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 */
Kay Sieversc313af12012-05-14 20:46:27 +02001337 text_len = vscnprintf(text, sizeof(textbuf), fmt, args);
Nick Andrewac60ad72008-05-12 21:21:04 +02001338
Kay Sievers7ff95542012-05-03 02:29:13 +02001339 /* mark and strip a trailing newline */
Kay Sieversc313af12012-05-14 20:46:27 +02001340 if (text_len && text[text_len-1] == '\n') {
1341 text_len--;
Kay Sievers7ff95542012-05-03 02:29:13 +02001342 newline = true;
1343 }
Kay Sievers9d90c8d2011-03-13 03:19:51 +01001344
Kay Sieversc313af12012-05-14 20:46:27 +02001345 /* strip syslog prefix and extract log level or control flags */
Kay Sievers7ff95542012-05-03 02:29:13 +02001346 if (text[0] == '<' && text[1] && text[2] == '>') {
1347 switch (text[1]) {
1348 case '0' ... '7':
1349 if (level == -1)
1350 level = text[1] - '0';
Kay Sievers7ff95542012-05-03 02:29:13 +02001351 case 'd': /* KERN_DEFAULT */
Kay Sievers5c5d5ca2012-05-10 04:32:53 +02001352 prefix = true;
1353 case 'c': /* KERN_CONT */
Kay Sievers7ff95542012-05-03 02:29:13 +02001354 text += 3;
Kay Sieversc313af12012-05-14 20:46:27 +02001355 text_len -= 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001357 }
Nick Andrewac60ad72008-05-12 21:21:04 +02001358
Kay Sieversc313af12012-05-14 20:46:27 +02001359 if (level == -1)
1360 level = default_message_loglevel;
1361
1362 if (dict) {
1363 prefix = true;
1364 newline = true;
Kay Sievers7ff95542012-05-03 02:29:13 +02001365 }
1366
Kay Sieversc313af12012-05-14 20:46:27 +02001367 if (!newline) {
1368 if (cont_len && (prefix || cont_task != current)) {
1369 /*
1370 * Flush earlier buffer, which is either from a
1371 * different thread, or when we got a new prefix.
1372 */
1373 log_store(facility, cont_level, NULL, 0, cont_buf, cont_len);
1374 cont_len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001375 }
Kay Sieversc313af12012-05-14 20:46:27 +02001376
1377 if (!cont_len) {
1378 cont_level = level;
1379 cont_task = current;
1380 }
1381
1382 /* buffer or append to earlier buffer from the same thread */
1383 if (cont_len + text_len > sizeof(cont_buf))
1384 text_len = sizeof(cont_buf) - cont_len;
1385 memcpy(cont_buf + cont_len, text, text_len);
1386 cont_len += text_len;
Kay Sievers5c5d5ca2012-05-10 04:32:53 +02001387 } else {
Kay Sieversc313af12012-05-14 20:46:27 +02001388 if (cont_len && cont_task == current) {
1389 if (prefix) {
1390 /*
1391 * New prefix from the same thread; flush. We
1392 * either got no earlier newline, or we race
1393 * with an interrupt.
1394 */
1395 log_store(facility, cont_level,
1396 NULL, 0, cont_buf, cont_len);
1397 cont_len = 0;
1398 }
1399
1400 /* append to the earlier buffer and flush */
1401 if (cont_len + text_len > sizeof(cont_buf))
1402 text_len = sizeof(cont_buf) - cont_len;
1403 memcpy(cont_buf + cont_len, text, text_len);
1404 cont_len += text_len;
1405 log_store(facility, cont_level,
1406 NULL, 0, cont_buf, cont_len);
1407 cont_len = 0;
1408 cont_task = NULL;
1409 printed_len = cont_len;
1410 } else {
1411 /* ordinary single and terminated line */
1412 log_store(facility, level,
1413 dict, dictlen, text, text_len);
1414 printed_len = text_len;
1415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417
Linus Torvalds266c2e02008-03-24 19:25:08 -07001418 /*
Kay Sievers7ff95542012-05-03 02:29:13 +02001419 * Try to acquire and then immediately release the console semaphore.
1420 * The release will print out buffers and wake up /dev/kmsg and syslog()
1421 * users.
Linus Torvalds266c2e02008-03-24 19:25:08 -07001422 *
Kay Sievers7ff95542012-05-03 02:29:13 +02001423 * The console_trylock_for_printk() function will release 'logbuf_lock'
1424 * regardless of whether it actually gets the console semaphore or not.
Linus Torvalds266c2e02008-03-24 19:25:08 -07001425 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001426 if (console_trylock_for_printk(this_cpu))
1427 console_unlock();
Michael Ellerman76a8ad22006-06-25 05:47:40 -07001428
Linus Torvalds266c2e02008-03-24 19:25:08 -07001429 lockdep_on();
Ingo Molnar32a76002008-01-25 21:07:58 +01001430out_restore_irqs:
Peter Zijlstra1a9a8ae2011-06-07 11:17:30 +02001431 local_irq_restore(flags);
Michael Ellerman76a8ad22006-06-25 05:47:40 -07001432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 return printed_len;
1434}
Kay Sievers7ff95542012-05-03 02:29:13 +02001435EXPORT_SYMBOL(vprintk_emit);
1436
1437asmlinkage int vprintk(const char *fmt, va_list args)
1438{
1439 return vprintk_emit(0, -1, NULL, 0, fmt, args);
1440}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441EXPORT_SYMBOL(vprintk);
1442
Kay Sievers7ff95542012-05-03 02:29:13 +02001443asmlinkage int printk_emit(int facility, int level,
1444 const char *dict, size_t dictlen,
1445 const char *fmt, ...)
1446{
1447 va_list args;
1448 int r;
1449
1450 va_start(args, fmt);
1451 r = vprintk_emit(facility, level, dict, dictlen, fmt, args);
1452 va_end(args);
1453
1454 return r;
1455}
1456EXPORT_SYMBOL(printk_emit);
1457
1458/**
1459 * printk - print a kernel message
1460 * @fmt: format string
1461 *
1462 * This is printk(). It can be called from any context. We want it to work.
1463 *
1464 * We try to grab the console_lock. If we succeed, it's easy - we log the
1465 * output and call the console drivers. If we fail to get the semaphore, we
1466 * place the output into the log buffer and return. The current holder of
1467 * the console_sem will notice the new output in console_unlock(); and will
1468 * send it to the consoles before releasing the lock.
1469 *
1470 * One effect of this deferred printing is that code which calls printk() and
1471 * then changes console_loglevel may break. This is because console_loglevel
1472 * is inspected when the actual printing occurs.
1473 *
1474 * See also:
1475 * printf(3)
1476 *
1477 * See the vsnprintf() documentation for format string extensions over C99.
1478 */
1479asmlinkage int printk(const char *fmt, ...)
1480{
1481 va_list args;
1482 int r;
1483
1484#ifdef CONFIG_KGDB_KDB
1485 if (unlikely(kdb_trap_printk)) {
1486 va_start(args, fmt);
1487 r = vkdb_printf(fmt, args);
1488 va_end(args);
1489 return r;
1490 }
1491#endif
1492 va_start(args, fmt);
1493 r = vprintk_emit(0, -1, NULL, 0, fmt, args);
1494 va_end(args);
1495
1496 return r;
1497}
1498EXPORT_SYMBOL(printk);
Kay Sievers7f3a7812012-05-09 01:37:51 +02001499
Matt Mackalld59745c2005-05-01 08:59:02 -07001500#else
1501
Kay Sievers7f3a7812012-05-09 01:37:51 +02001502#define LOG_LINE_MAX 0
1503static struct log *log_from_idx(u32 idx) { return NULL; }
1504static u32 log_next(u32 idx) { return 0; }
Kay Sievers7f3a7812012-05-09 01:37:51 +02001505static void call_console_drivers(int level, const char *text, size_t len) {}
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001506static size_t msg_print_text(const struct log *msg, bool syslog,
1507 char *buf, size_t size) { return 0; }
Matt Mackalld59745c2005-05-01 08:59:02 -07001508
Kay Sievers7f3a7812012-05-09 01:37:51 +02001509#endif /* CONFIG_PRINTK */
Matt Mackalld59745c2005-05-01 08:59:02 -07001510
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001511static int __add_preferred_console(char *name, int idx, char *options,
1512 char *brl_options)
1513{
1514 struct console_cmdline *c;
1515 int i;
1516
1517 /*
1518 * See if this tty is not yet registered, and
1519 * if we have a slot free.
1520 */
1521 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
1522 if (strcmp(console_cmdline[i].name, name) == 0 &&
1523 console_cmdline[i].index == idx) {
1524 if (!brl_options)
1525 selected_console = i;
1526 return 0;
1527 }
1528 if (i == MAX_CMDLINECONSOLES)
1529 return -E2BIG;
1530 if (!brl_options)
1531 selected_console = i;
1532 c = &console_cmdline[i];
1533 strlcpy(c->name, name, sizeof(c->name));
1534 c->options = options;
1535#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1536 c->brl_options = brl_options;
1537#endif
1538 c->index = idx;
1539 return 0;
1540}
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001541/*
1542 * Set up a list of consoles. Called from init/main.c
1543 */
1544static int __init console_setup(char *str)
1545{
Yinghai Lueaa944a2007-07-15 23:37:27 -07001546 char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for index */
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001547 char *s, *options, *brl_options = NULL;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001548 int idx;
1549
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001550#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1551 if (!memcmp(str, "brl,", 4)) {
1552 brl_options = "";
1553 str += 4;
1554 } else if (!memcmp(str, "brl=", 4)) {
1555 brl_options = str + 4;
1556 str = strchr(brl_options, ',');
1557 if (!str) {
1558 printk(KERN_ERR "need port name after brl=\n");
1559 return 1;
1560 }
1561 *(str++) = 0;
1562 }
1563#endif
1564
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001565 /*
1566 * Decode str into name, index, options.
1567 */
1568 if (str[0] >= '0' && str[0] <= '9') {
Yinghai Lueaa944a2007-07-15 23:37:27 -07001569 strcpy(buf, "ttyS");
1570 strncpy(buf + 4, str, sizeof(buf) - 5);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001571 } else {
Yinghai Lueaa944a2007-07-15 23:37:27 -07001572 strncpy(buf, str, sizeof(buf) - 1);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001573 }
Yinghai Lueaa944a2007-07-15 23:37:27 -07001574 buf[sizeof(buf) - 1] = 0;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001575 if ((options = strchr(str, ',')) != NULL)
1576 *(options++) = 0;
1577#ifdef __sparc__
1578 if (!strcmp(str, "ttya"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07001579 strcpy(buf, "ttyS0");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001580 if (!strcmp(str, "ttyb"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07001581 strcpy(buf, "ttyS1");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001582#endif
Yinghai Lueaa944a2007-07-15 23:37:27 -07001583 for (s = buf; *s; s++)
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001584 if ((*s >= '0' && *s <= '9') || *s == ',')
1585 break;
1586 idx = simple_strtoul(s, NULL, 10);
1587 *s = 0;
1588
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001589 __add_preferred_console(buf, idx, options, brl_options);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001590 console_set_on_cmdline = 1;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001591 return 1;
1592}
1593__setup("console=", console_setup);
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595/**
Matt Mackall3c0547b2005-05-16 21:53:47 -07001596 * add_preferred_console - add a device to the list of preferred consoles.
Martin Waitzddad86c2005-11-13 16:08:14 -08001597 * @name: device name
1598 * @idx: device index
1599 * @options: options for this console
Matt Mackall3c0547b2005-05-16 21:53:47 -07001600 *
1601 * The last preferred console added will be used for kernel messages
1602 * and stdin/out/err for init. Normally this is used by console_setup
1603 * above to handle user-supplied console arguments; however it can also
1604 * be used by arch-specific code either to override the user or more
1605 * commonly to provide a default console (ie from PROM variables) when
1606 * the user has not supplied one.
1607 */
David S. Millerfb445ee2007-12-29 01:19:49 -08001608int add_preferred_console(char *name, int idx, char *options)
Matt Mackall3c0547b2005-05-16 21:53:47 -07001609{
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001610 return __add_preferred_console(name, idx, options, NULL);
Matt Mackall3c0547b2005-05-16 21:53:47 -07001611}
1612
Daniel Ritzb6b1d872007-08-03 16:07:43 +02001613int update_console_cmdline(char *name, int idx, char *name_new, int idx_new, char *options)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07001614{
1615 struct console_cmdline *c;
1616 int i;
1617
1618 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
1619 if (strcmp(console_cmdline[i].name, name) == 0 &&
1620 console_cmdline[i].index == idx) {
1621 c = &console_cmdline[i];
Markus Armbrusterf7352952008-04-30 00:54:52 -07001622 strlcpy(c->name, name_new, sizeof(c->name));
Yinghai Lu18a8bd92007-07-15 23:37:59 -07001623 c->name[sizeof(c->name) - 1] = 0;
1624 c->options = options;
1625 c->index = idx_new;
1626 return i;
1627 }
1628 /* not found */
1629 return -1;
1630}
1631
Rusty Russell2329abf2012-01-13 09:32:18 +10301632bool console_suspend_enabled = 1;
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001633EXPORT_SYMBOL(console_suspend_enabled);
1634
1635static int __init console_suspend_disable(char *str)
1636{
1637 console_suspend_enabled = 0;
1638 return 1;
1639}
1640__setup("no_console_suspend", console_suspend_disable);
Yanmin Zhang134620f2011-10-31 17:11:27 -07001641module_param_named(console_suspend, console_suspend_enabled,
1642 bool, S_IRUGO | S_IWUSR);
1643MODULE_PARM_DESC(console_suspend, "suspend console during suspend"
1644 " and hibernate operations");
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001645
Matt Mackall3c0547b2005-05-16 21:53:47 -07001646/**
Linus Torvalds557240b2006-06-19 18:16:01 -07001647 * suspend_console - suspend the console subsystem
1648 *
1649 * This disables printk() while we go into suspend states
1650 */
1651void suspend_console(void)
1652{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001653 if (!console_suspend_enabled)
1654 return;
Pavel Machek0d630812008-07-23 21:28:32 -07001655 printk("Suspending console(s) (use no_console_suspend to debug)\n");
Torben Hohnac751ef2011-01-25 15:07:35 -08001656 console_lock();
Linus Torvalds557240b2006-06-19 18:16:01 -07001657 console_suspended = 1;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001658 up(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07001659}
1660
1661void resume_console(void)
1662{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001663 if (!console_suspend_enabled)
1664 return;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001665 down(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07001666 console_suspended = 0;
Torben Hohnac751ef2011-01-25 15:07:35 -08001667 console_unlock();
Linus Torvalds557240b2006-06-19 18:16:01 -07001668}
1669
1670/**
Kevin Cernekee034260d2010-06-03 22:11:25 -07001671 * console_cpu_notify - print deferred console messages after CPU hotplug
1672 * @self: notifier struct
1673 * @action: CPU hotplug event
1674 * @hcpu: unused
1675 *
1676 * If printk() is called from a CPU that is not online yet, the messages
1677 * will be spooled but will not show up on the console. This function is
1678 * called when a new CPU comes online (or fails to come up), and ensures
1679 * that any such output gets printed.
1680 */
1681static int __cpuinit console_cpu_notify(struct notifier_block *self,
1682 unsigned long action, void *hcpu)
1683{
1684 switch (action) {
1685 case CPU_ONLINE:
1686 case CPU_DEAD:
1687 case CPU_DYING:
1688 case CPU_DOWN_FAILED:
1689 case CPU_UP_CANCELED:
Torben Hohnac751ef2011-01-25 15:07:35 -08001690 console_lock();
1691 console_unlock();
Kevin Cernekee034260d2010-06-03 22:11:25 -07001692 }
1693 return NOTIFY_OK;
1694}
1695
1696/**
Torben Hohnac751ef2011-01-25 15:07:35 -08001697 * console_lock - lock the console system for exclusive use.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001699 * Acquires a lock which guarantees that the caller has
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 * exclusive access to the console system and the console_drivers list.
1701 *
1702 * Can sleep, returns nothing.
1703 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001704void console_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
Eric Sesterhenn8abd8e22006-04-01 01:21:17 +02001706 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 down(&console_sem);
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001708 if (console_suspended)
1709 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 console_locked = 1;
1711 console_may_schedule = 1;
1712}
Torben Hohnac751ef2011-01-25 15:07:35 -08001713EXPORT_SYMBOL(console_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Torben Hohnac751ef2011-01-25 15:07:35 -08001715/**
1716 * console_trylock - try to lock the console system for exclusive use.
1717 *
1718 * Tried to acquire a lock which guarantees that the caller has
1719 * exclusive access to the console system and the console_drivers list.
1720 *
1721 * returns 1 on success, and 0 on failure to acquire the lock.
1722 */
1723int console_trylock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
1725 if (down_trylock(&console_sem))
Torben Hohnac751ef2011-01-25 15:07:35 -08001726 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001727 if (console_suspended) {
1728 up(&console_sem);
Torben Hohnac751ef2011-01-25 15:07:35 -08001729 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 console_locked = 1;
1732 console_may_schedule = 0;
Torben Hohnac751ef2011-01-25 15:07:35 -08001733 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734}
Torben Hohnac751ef2011-01-25 15:07:35 -08001735EXPORT_SYMBOL(console_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
1737int is_console_locked(void)
1738{
1739 return console_locked;
1740}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +01001742/*
Kay Sievers7ff95542012-05-03 02:29:13 +02001743 * Delayed printk version, for scheduler-internal messages:
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +01001744 */
1745#define PRINTK_BUF_SIZE 512
1746
1747#define PRINTK_PENDING_WAKEUP 0x01
1748#define PRINTK_PENDING_SCHED 0x02
1749
Peter Zijlstrab845b512008-08-08 21:47:09 +02001750static DEFINE_PER_CPU(int, printk_pending);
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +01001751static DEFINE_PER_CPU(char [PRINTK_BUF_SIZE], printk_sched_buf);
Peter Zijlstrab845b512008-08-08 21:47:09 +02001752
1753void printk_tick(void)
1754{
Eric Dumazet40dc11f2010-11-26 17:22:16 +01001755 if (__this_cpu_read(printk_pending)) {
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +01001756 int pending = __this_cpu_xchg(printk_pending, 0);
1757 if (pending & PRINTK_PENDING_SCHED) {
1758 char *buf = __get_cpu_var(printk_sched_buf);
1759 printk(KERN_WARNING "[sched_delayed] %s", buf);
1760 }
1761 if (pending & PRINTK_PENDING_WAKEUP)
1762 wake_up_interruptible(&log_wait);
Peter Zijlstrab845b512008-08-08 21:47:09 +02001763 }
1764}
1765
1766int printk_needs_cpu(int cpu)
1767{
Eric Dumazet40dc11f2010-11-26 17:22:16 +01001768 if (cpu_is_offline(cpu))
Heiko Carstens61ab25442010-11-26 13:00:59 +01001769 printk_tick();
Eric Dumazet40dc11f2010-11-26 17:22:16 +01001770 return __this_cpu_read(printk_pending);
Peter Zijlstrab845b512008-08-08 21:47:09 +02001771}
1772
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08001773void wake_up_klogd(void)
1774{
Peter Zijlstrab845b512008-08-08 21:47:09 +02001775 if (waitqueue_active(&log_wait))
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +01001776 this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP);
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08001777}
1778
Kay Sievers7ff95542012-05-03 02:29:13 +02001779/* the next printk record to write to the console */
1780static u64 console_seq;
1781static u32 console_idx;
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783/**
Torben Hohnac751ef2011-01-25 15:07:35 -08001784 * console_unlock - unlock the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001786 * Releases the console_lock which the caller holds on the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 * and the console driver list.
1788 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001789 * While the console_lock was held, console output may have been buffered
1790 * by printk(). If this is the case, console_unlock(); emits
1791 * the output prior to releasing the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 *
Kay Sievers7f3a7812012-05-09 01:37:51 +02001793 * If there is output waiting, we wake /dev/kmsg and syslog() users.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001795 * console_unlock(); may be called from any context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001797void console_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798{
Kay Sievers7ff95542012-05-03 02:29:13 +02001799 static u64 seen_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 unsigned long flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001801 bool wake_klogd = false;
1802 bool retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Linus Torvalds557240b2006-06-19 18:16:01 -07001804 if (console_suspended) {
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001805 up(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07001806 return;
1807 }
Antonino A. Daplas78944e52006-08-05 12:14:16 -07001808
1809 console_may_schedule = 0;
1810
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02001811again:
Kay Sievers7ff95542012-05-03 02:29:13 +02001812 for (;;) {
1813 struct log *msg;
1814 static char text[LOG_LINE_MAX];
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001815 size_t len;
Kay Sievers7ff95542012-05-03 02:29:13 +02001816 int level;
1817
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001818 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02001819 if (seen_seq != log_next_seq) {
1820 wake_klogd = true;
1821 seen_seq = log_next_seq;
1822 }
1823
1824 if (console_seq < log_first_seq) {
1825 /* messages are gone, move to first one */
1826 console_seq = log_first_seq;
1827 console_idx = log_first_idx;
1828 }
1829
1830 if (console_seq == log_next_seq)
1831 break;
1832
1833 msg = log_from_idx(console_idx);
1834 level = msg->level & 7;
Kay Sievers649e6ee2012-05-10 04:30:45 +02001835
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001836 len = msg_print_text(msg, false, text, sizeof(text));
Kay Sievers7ff95542012-05-03 02:29:13 +02001837
1838 console_idx = log_next(console_idx);
1839 console_seq++;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001840 raw_spin_unlock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02001841
Steven Rostedt81d68a92008-05-12 21:20:42 +02001842 stop_critical_timings(); /* don't trace print latency */
Kay Sievers7ff95542012-05-03 02:29:13 +02001843 call_console_drivers(level, text, len);
Steven Rostedt81d68a92008-05-12 21:20:42 +02001844 start_critical_timings();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 local_irq_restore(flags);
1846 }
1847 console_locked = 0;
Feng Tangfe3d8ad2011-03-22 16:34:21 -07001848
1849 /* Release the exclusive_console once it is used */
1850 if (unlikely(exclusive_console))
1851 exclusive_console = NULL;
1852
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001853 raw_spin_unlock(&logbuf_lock);
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02001854
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02001855 up(&console_sem);
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02001856
1857 /*
1858 * Someone could have filled up the buffer again, so re-check if there's
1859 * something to flush. In case we cannot trylock the console_sem again,
1860 * there's a new owner and the console_unlock() from them will do the
1861 * flush, no worries.
1862 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001863 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02001864 retry = console_seq != log_next_seq;
Peter Zijlstra09dc3cf2011-12-08 14:34:13 -08001865 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
1866
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02001867 if (retry && console_trylock())
1868 goto again;
1869
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08001870 if (wake_klogd)
1871 wake_up_klogd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
Torben Hohnac751ef2011-01-25 15:07:35 -08001873EXPORT_SYMBOL(console_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Martin Waitzddad86c2005-11-13 16:08:14 -08001875/**
1876 * console_conditional_schedule - yield the CPU if required
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 *
1878 * If the console code is currently allowed to sleep, and
1879 * if this CPU should yield the CPU to another task, do
1880 * so here.
1881 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001882 * Must be called within console_lock();.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 */
1884void __sched console_conditional_schedule(void)
1885{
1886 if (console_may_schedule)
1887 cond_resched();
1888}
1889EXPORT_SYMBOL(console_conditional_schedule);
1890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891void console_unblank(void)
1892{
1893 struct console *c;
1894
1895 /*
1896 * console_unblank can no longer be called in interrupt context unless
1897 * oops_in_progress is set to 1..
1898 */
1899 if (oops_in_progress) {
1900 if (down_trylock(&console_sem) != 0)
1901 return;
1902 } else
Torben Hohnac751ef2011-01-25 15:07:35 -08001903 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905 console_locked = 1;
1906 console_may_schedule = 0;
Robin Getz4d091612009-07-01 21:08:37 -04001907 for_each_console(c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 if ((c->flags & CON_ENABLED) && c->unblank)
1909 c->unblank();
Torben Hohnac751ef2011-01-25 15:07:35 -08001910 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913/*
1914 * Return the console tty driver structure and its associated index
1915 */
1916struct tty_driver *console_device(int *index)
1917{
1918 struct console *c;
1919 struct tty_driver *driver = NULL;
1920
Torben Hohnac751ef2011-01-25 15:07:35 -08001921 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04001922 for_each_console(c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 if (!c->device)
1924 continue;
1925 driver = c->device(c, index);
1926 if (driver)
1927 break;
1928 }
Torben Hohnac751ef2011-01-25 15:07:35 -08001929 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 return driver;
1931}
1932
1933/*
1934 * Prevent further output on the passed console device so that (for example)
1935 * serial drivers can disable console output before suspending a port, and can
1936 * re-enable output afterwards.
1937 */
1938void console_stop(struct console *console)
1939{
Torben Hohnac751ef2011-01-25 15:07:35 -08001940 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 console->flags &= ~CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08001942 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943}
1944EXPORT_SYMBOL(console_stop);
1945
1946void console_start(struct console *console)
1947{
Torben Hohnac751ef2011-01-25 15:07:35 -08001948 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 console->flags |= CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08001950 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951}
1952EXPORT_SYMBOL(console_start);
1953
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07001954static int __read_mostly keep_bootcon;
1955
1956static int __init keep_bootcon_setup(char *str)
1957{
1958 keep_bootcon = 1;
1959 printk(KERN_INFO "debug: skip boot console de-registration.\n");
1960
1961 return 0;
1962}
1963
1964early_param("keep_bootcon", keep_bootcon_setup);
1965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966/*
1967 * The console driver calls this routine during kernel initialization
1968 * to register the console printing procedure with printk() and to
1969 * print any messages that were printed by the kernel before the
1970 * console driver was initialized.
Robin Getz4d091612009-07-01 21:08:37 -04001971 *
1972 * This can happen pretty early during the boot process (because of
1973 * early_printk) - sometimes before setup_arch() completes - be careful
1974 * of what kernel features are used - they may not be initialised yet.
1975 *
1976 * There are two types of consoles - bootconsoles (early_printk) and
1977 * "real" consoles (everything which is not a bootconsole) which are
1978 * handled differently.
1979 * - Any number of bootconsoles can be registered at any time.
1980 * - As soon as a "real" console is registered, all bootconsoles
1981 * will be unregistered automatically.
1982 * - Once a "real" console is registered, any attempt to register a
1983 * bootconsoles will be rejected
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 */
Robin Getz4d091612009-07-01 21:08:37 -04001985void register_console(struct console *newcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986{
Jesper Juhl40dc5652005-10-30 15:02:46 -08001987 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 unsigned long flags;
Robin Getz4d091612009-07-01 21:08:37 -04001989 struct console *bcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Robin Getz4d091612009-07-01 21:08:37 -04001991 /*
1992 * before we register a new CON_BOOT console, make sure we don't
1993 * already have a valid console
1994 */
1995 if (console_drivers && newcon->flags & CON_BOOT) {
1996 /* find the last or real console */
1997 for_each_console(bcon) {
1998 if (!(bcon->flags & CON_BOOT)) {
1999 printk(KERN_INFO "Too late to register bootconsole %s%d\n",
2000 newcon->name, newcon->index);
2001 return;
2002 }
2003 }
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002004 }
2005
Robin Getz4d091612009-07-01 21:08:37 -04002006 if (console_drivers && console_drivers->flags & CON_BOOT)
2007 bcon = console_drivers;
2008
2009 if (preferred_console < 0 || bcon || !console_drivers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 preferred_console = selected_console;
2011
Robin Getz4d091612009-07-01 21:08:37 -04002012 if (newcon->early_setup)
2013 newcon->early_setup();
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 /*
2016 * See if we want to use this console driver. If we
2017 * didn't select a console we take the first one
2018 * that registers here.
2019 */
2020 if (preferred_console < 0) {
Robin Getz4d091612009-07-01 21:08:37 -04002021 if (newcon->index < 0)
2022 newcon->index = 0;
2023 if (newcon->setup == NULL ||
2024 newcon->setup(newcon, NULL) == 0) {
2025 newcon->flags |= CON_ENABLED;
2026 if (newcon->device) {
2027 newcon->flags |= CON_CONSDEV;
Jan Kiszkacd3a1b82008-05-12 21:21:04 +02002028 preferred_console = 0;
2029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
2031 }
2032
2033 /*
2034 * See if this console matches one we selected on
2035 * the command line.
2036 */
Jesper Juhl40dc5652005-10-30 15:02:46 -08002037 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0];
2038 i++) {
Robin Getz4d091612009-07-01 21:08:37 -04002039 if (strcmp(console_cmdline[i].name, newcon->name) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 continue;
Robin Getz4d091612009-07-01 21:08:37 -04002041 if (newcon->index >= 0 &&
2042 newcon->index != console_cmdline[i].index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 continue;
Robin Getz4d091612009-07-01 21:08:37 -04002044 if (newcon->index < 0)
2045 newcon->index = console_cmdline[i].index;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002046#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
2047 if (console_cmdline[i].brl_options) {
Robin Getz4d091612009-07-01 21:08:37 -04002048 newcon->flags |= CON_BRL;
2049 braille_register_console(newcon,
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002050 console_cmdline[i].index,
2051 console_cmdline[i].options,
2052 console_cmdline[i].brl_options);
2053 return;
2054 }
2055#endif
Robin Getz4d091612009-07-01 21:08:37 -04002056 if (newcon->setup &&
2057 newcon->setup(newcon, console_cmdline[i].options) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 break;
Robin Getz4d091612009-07-01 21:08:37 -04002059 newcon->flags |= CON_ENABLED;
2060 newcon->index = console_cmdline[i].index;
Greg Edwardsab4af032005-06-23 00:09:05 -07002061 if (i == selected_console) {
Robin Getz4d091612009-07-01 21:08:37 -04002062 newcon->flags |= CON_CONSDEV;
Greg Edwardsab4af032005-06-23 00:09:05 -07002063 preferred_console = selected_console;
2064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 break;
2066 }
2067
Robin Getz4d091612009-07-01 21:08:37 -04002068 if (!(newcon->flags & CON_ENABLED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 return;
2070
Robin Getz8259cf42009-07-09 13:08:37 -04002071 /*
2072 * If we have a bootconsole, and are switching to a real console,
2073 * don't print everything out again, since when the boot console, and
2074 * the real console are the same physical device, it's annoying to
2075 * see the beginning boot messages twice
2076 */
2077 if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
Robin Getz4d091612009-07-01 21:08:37 -04002078 newcon->flags &= ~CON_PRINTBUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 /*
2081 * Put this console in the list - keep the
2082 * preferred driver at the head of the list.
2083 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002084 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04002085 if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) {
2086 newcon->next = console_drivers;
2087 console_drivers = newcon;
2088 if (newcon->next)
2089 newcon->next->flags &= ~CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 } else {
Robin Getz4d091612009-07-01 21:08:37 -04002091 newcon->next = console_drivers->next;
2092 console_drivers->next = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 }
Robin Getz4d091612009-07-01 21:08:37 -04002094 if (newcon->flags & CON_PRINTBUFFER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 /*
Torben Hohnac751ef2011-01-25 15:07:35 -08002096 * console_unlock(); will print out the buffered messages
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 * for us.
2098 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002099 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02002100 console_seq = syslog_seq;
2101 console_idx = syslog_idx;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002102 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Feng Tangfe3d8ad2011-03-22 16:34:21 -07002103 /*
2104 * We're about to replay the log buffer. Only do this to the
2105 * just-registered console to avoid excessive message spam to
2106 * the already-registered consoles.
2107 */
2108 exclusive_console = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 }
Torben Hohnac751ef2011-01-25 15:07:35 -08002110 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002111 console_sysfs_notify();
Robin Getz8259cf42009-07-09 13:08:37 -04002112
2113 /*
2114 * By unregistering the bootconsoles after we enable the real console
2115 * we get the "console xxx enabled" message on all the consoles -
2116 * boot consoles, real consoles, etc - this is to ensure that end
2117 * users know there might be something in the kernel's log buffer that
2118 * went to the bootconsole (that they do not see on the real console)
2119 */
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002120 if (bcon &&
2121 ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) &&
2122 !keep_bootcon) {
Robin Getz8259cf42009-07-09 13:08:37 -04002123 /* we need to iterate through twice, to make sure we print
2124 * everything out, before we unregister the console(s)
2125 */
2126 printk(KERN_INFO "console [%s%d] enabled, bootconsole disabled\n",
2127 newcon->name, newcon->index);
2128 for_each_console(bcon)
2129 if (bcon->flags & CON_BOOT)
2130 unregister_console(bcon);
2131 } else {
2132 printk(KERN_INFO "%sconsole [%s%d] enabled\n",
2133 (newcon->flags & CON_BOOT) ? "boot" : "" ,
2134 newcon->name, newcon->index);
2135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136}
2137EXPORT_SYMBOL(register_console);
2138
Jesper Juhl40dc5652005-10-30 15:02:46 -08002139int unregister_console(struct console *console)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
Jesper Juhl40dc5652005-10-30 15:02:46 -08002141 struct console *a, *b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 int res = 1;
2143
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002144#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
2145 if (console->flags & CON_BRL)
2146 return braille_unregister_console(console);
2147#endif
2148
Torben Hohnac751ef2011-01-25 15:07:35 -08002149 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 if (console_drivers == console) {
2151 console_drivers=console->next;
2152 res = 0;
Benjamin Herrenschmidte9b15b52005-11-23 13:37:44 -08002153 } else if (console_drivers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 for (a=console_drivers->next, b=console_drivers ;
2155 a; b=a, a=b->next) {
2156 if (a == console) {
2157 b->next = a->next;
2158 res = 0;
2159 break;
Jesper Juhl40dc5652005-10-30 15:02:46 -08002160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 }
2162 }
Jesper Juhl40dc5652005-10-30 15:02:46 -08002163
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002164 /*
Greg Edwardsab4af032005-06-23 00:09:05 -07002165 * If this isn't the last console and it has CON_CONSDEV set, we
2166 * need to set it on the next preferred console.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 */
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002168 if (console_drivers != NULL && console->flags & CON_CONSDEV)
Greg Edwardsab4af032005-06-23 00:09:05 -07002169 console_drivers->flags |= CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Torben Hohnac751ef2011-01-25 15:07:35 -08002171 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002172 console_sysfs_notify();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 return res;
2174}
2175EXPORT_SYMBOL(unregister_console);
Matt Mackalld59745c2005-05-01 08:59:02 -07002176
Kevin Cernekee034260d2010-06-03 22:11:25 -07002177static int __init printk_late_init(void)
Robin Getz0c5564b2007-08-20 15:22:47 -04002178{
Robin Getz4d091612009-07-01 21:08:37 -04002179 struct console *con;
2180
2181 for_each_console(con) {
Nishanth Aravamudan4c30c6f2011-08-25 15:59:11 -07002182 if (!keep_bootcon && con->flags & CON_BOOT) {
Robin Getzcb00e992007-08-21 23:14:58 -04002183 printk(KERN_INFO "turn off boot console %s%d\n",
Robin Getz4d091612009-07-01 21:08:37 -04002184 con->name, con->index);
Sonic Zhang42c2c8c2009-08-06 15:58:11 -07002185 unregister_console(con);
Robin Getzcb00e992007-08-21 23:14:58 -04002186 }
Robin Getz0c5564b2007-08-20 15:22:47 -04002187 }
Kevin Cernekee034260d2010-06-03 22:11:25 -07002188 hotcpu_notifier(console_cpu_notify, 0);
Robin Getz0c5564b2007-08-20 15:22:47 -04002189 return 0;
2190}
Kevin Cernekee034260d2010-06-03 22:11:25 -07002191late_initcall(printk_late_init);
Robin Getz0c5564b2007-08-20 15:22:47 -04002192
Joe Perches7ef3d2f2008-02-08 04:21:25 -08002193#if defined CONFIG_PRINTK
Dave Young717115e2008-07-25 01:45:58 -07002194
Peter Zijlstra600e1452012-03-15 12:35:37 +01002195int printk_sched(const char *fmt, ...)
2196{
2197 unsigned long flags;
2198 va_list args;
2199 char *buf;
2200 int r;
2201
2202 local_irq_save(flags);
2203 buf = __get_cpu_var(printk_sched_buf);
2204
2205 va_start(args, fmt);
2206 r = vsnprintf(buf, PRINTK_BUF_SIZE, fmt, args);
2207 va_end(args);
2208
2209 __this_cpu_or(printk_pending, PRINTK_PENDING_SCHED);
2210 local_irq_restore(flags);
2211
2212 return r;
2213}
2214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215/*
2216 * printk rate limiting, lifted from the networking subsystem.
2217 *
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002218 * This enforces a rate limit: not more than 10 kernel messages
2219 * every 5s to make a denial-of-service attack impossible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 */
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002221DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10);
2222
Christian Borntraeger5c828712009-10-23 14:58:11 +02002223int __printk_ratelimit(const char *func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224{
Christian Borntraeger5c828712009-10-23 14:58:11 +02002225 return ___ratelimit(&printk_ratelimit_state, func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226}
Christian Borntraeger5c828712009-10-23 14:58:11 +02002227EXPORT_SYMBOL(__printk_ratelimit);
Andrew Mortonf46c4832006-11-02 22:07:16 -08002228
2229/**
2230 * printk_timed_ratelimit - caller-controlled printk ratelimiting
2231 * @caller_jiffies: pointer to caller's state
2232 * @interval_msecs: minimum interval between prints
2233 *
2234 * printk_timed_ratelimit() returns true if more than @interval_msecs
2235 * milliseconds have elapsed since the last time printk_timed_ratelimit()
2236 * returned true.
2237 */
2238bool printk_timed_ratelimit(unsigned long *caller_jiffies,
2239 unsigned int interval_msecs)
2240{
Guillaume Knispelf2d28a22009-03-17 16:18:42 +01002241 if (*caller_jiffies == 0
2242 || !time_in_range(jiffies, *caller_jiffies,
2243 *caller_jiffies
2244 + msecs_to_jiffies(interval_msecs))) {
2245 *caller_jiffies = jiffies;
Andrew Mortonf46c4832006-11-02 22:07:16 -08002246 return true;
2247 }
2248 return false;
2249}
2250EXPORT_SYMBOL(printk_timed_ratelimit);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002251
2252static DEFINE_SPINLOCK(dump_list_lock);
2253static LIST_HEAD(dump_list);
2254
2255/**
2256 * kmsg_dump_register - register a kernel log dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002257 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002258 *
2259 * Adds a kernel log dumper to the system. The dump callback in the
2260 * structure will be called when the kernel oopses or panics and must be
2261 * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise.
2262 */
2263int kmsg_dump_register(struct kmsg_dumper *dumper)
2264{
2265 unsigned long flags;
2266 int err = -EBUSY;
2267
2268 /* The dump callback needs to be set */
2269 if (!dumper->dump)
2270 return -EINVAL;
2271
2272 spin_lock_irqsave(&dump_list_lock, flags);
2273 /* Don't allow registering multiple times */
2274 if (!dumper->registered) {
2275 dumper->registered = 1;
Huang Yingfb842b02011-01-12 16:59:43 -08002276 list_add_tail_rcu(&dumper->list, &dump_list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002277 err = 0;
2278 }
2279 spin_unlock_irqrestore(&dump_list_lock, flags);
2280
2281 return err;
2282}
2283EXPORT_SYMBOL_GPL(kmsg_dump_register);
2284
2285/**
2286 * kmsg_dump_unregister - unregister a kmsg dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002287 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002288 *
2289 * Removes a dump device from the system. Returns zero on success and
2290 * %-EINVAL otherwise.
2291 */
2292int kmsg_dump_unregister(struct kmsg_dumper *dumper)
2293{
2294 unsigned long flags;
2295 int err = -EINVAL;
2296
2297 spin_lock_irqsave(&dump_list_lock, flags);
2298 if (dumper->registered) {
2299 dumper->registered = 0;
Huang Yingfb842b02011-01-12 16:59:43 -08002300 list_del_rcu(&dumper->list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002301 err = 0;
2302 }
2303 spin_unlock_irqrestore(&dump_list_lock, flags);
Huang Yingfb842b02011-01-12 16:59:43 -08002304 synchronize_rcu();
Simon Kagstrom456b5652009-10-16 14:09:18 +02002305
2306 return err;
2307}
2308EXPORT_SYMBOL_GPL(kmsg_dump_unregister);
2309
Kay Sievers7ff95542012-05-03 02:29:13 +02002310static bool always_kmsg_dump;
2311module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR);
2312
Simon Kagstrom456b5652009-10-16 14:09:18 +02002313/**
2314 * kmsg_dump - dump kernel log to kernel message dumpers.
2315 * @reason: the reason (oops, panic etc) for dumping
2316 *
Kay Sieverse2ae7152012-06-15 14:07:51 +02002317 * Call each of the registered dumper's dump() callback, which can
2318 * retrieve the kmsg records with kmsg_dump_get_line() or
2319 * kmsg_dump_get_buffer().
Simon Kagstrom456b5652009-10-16 14:09:18 +02002320 */
2321void kmsg_dump(enum kmsg_dump_reason reason)
2322{
Simon Kagstrom456b5652009-10-16 14:09:18 +02002323 struct kmsg_dumper *dumper;
Simon Kagstrom456b5652009-10-16 14:09:18 +02002324 unsigned long flags;
2325
Matthew Garrettc22ab332012-03-05 14:59:10 -08002326 if ((reason > KMSG_DUMP_OOPS) && !always_kmsg_dump)
2327 return;
2328
Huang Yingfb842b02011-01-12 16:59:43 -08002329 rcu_read_lock();
Kay Sieverse2ae7152012-06-15 14:07:51 +02002330 list_for_each_entry_rcu(dumper, &dump_list, list) {
2331 if (dumper->max_reason && reason > dumper->max_reason)
2332 continue;
2333
2334 /* initialize iterator with data about the stored records */
2335 dumper->active = true;
2336
2337 raw_spin_lock_irqsave(&logbuf_lock, flags);
2338 dumper->cur_seq = clear_seq;
2339 dumper->cur_idx = clear_idx;
2340 dumper->next_seq = log_next_seq;
2341 dumper->next_idx = log_next_idx;
2342 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2343
2344 /* invoke dumper which will iterate over records */
2345 dumper->dump(dumper, reason);
2346
2347 /* reset iterator */
2348 dumper->active = false;
2349 }
Huang Yingfb842b02011-01-12 16:59:43 -08002350 rcu_read_unlock();
Simon Kagstrom456b5652009-10-16 14:09:18 +02002351}
Kay Sieverse2ae7152012-06-15 14:07:51 +02002352
2353/**
2354 * kmsg_dump_get_line - retrieve one kmsg log line
2355 * @dumper: registered kmsg dumper
2356 * @syslog: include the "<4>" prefixes
2357 * @line: buffer to copy the line to
2358 * @size: maximum size of the buffer
2359 * @len: length of line placed into buffer
2360 *
2361 * Start at the beginning of the kmsg buffer, with the oldest kmsg
2362 * record, and copy one record into the provided buffer.
2363 *
2364 * Consecutive calls will return the next available record moving
2365 * towards the end of the buffer with the youngest messages.
2366 *
2367 * A return value of FALSE indicates that there are no more records to
2368 * read.
2369 */
2370bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog,
2371 char *line, size_t size, size_t *len)
2372{
2373 unsigned long flags;
2374 struct log *msg;
2375 size_t l = 0;
2376 bool ret = false;
2377
2378 if (!dumper->active)
2379 goto out;
2380
2381 raw_spin_lock_irqsave(&logbuf_lock, flags);
2382 if (dumper->cur_seq < log_first_seq) {
2383 /* messages are gone, move to first available one */
2384 dumper->cur_seq = log_first_seq;
2385 dumper->cur_idx = log_first_idx;
2386 }
2387
2388 /* last entry */
2389 if (dumper->cur_seq >= log_next_seq) {
2390 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2391 goto out;
2392 }
2393
2394 msg = log_from_idx(dumper->cur_idx);
2395 l = msg_print_text(msg, syslog,
2396 line, size);
2397
2398 dumper->cur_idx = log_next(dumper->cur_idx);
2399 dumper->cur_seq++;
2400 ret = true;
2401 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2402out:
2403 if (len)
2404 *len = l;
2405 return ret;
2406}
2407EXPORT_SYMBOL_GPL(kmsg_dump_get_line);
2408
2409/**
2410 * kmsg_dump_get_buffer - copy kmsg log lines
2411 * @dumper: registered kmsg dumper
2412 * @syslog: include the "<4>" prefixes
2413 * @line: buffer to copy the line to
2414 * @size: maximum size of the buffer
2415 * @len: length of line placed into buffer
2416 *
2417 * Start at the end of the kmsg buffer and fill the provided buffer
2418 * with as many of the the *youngest* kmsg records that fit into it.
2419 * If the buffer is large enough, all available kmsg records will be
2420 * copied with a single call.
2421 *
2422 * Consecutive calls will fill the buffer with the next block of
2423 * available older records, not including the earlier retrieved ones.
2424 *
2425 * A return value of FALSE indicates that there are no more records to
2426 * read.
2427 */
2428bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog,
2429 char *buf, size_t size, size_t *len)
2430{
2431 unsigned long flags;
2432 u64 seq;
2433 u32 idx;
2434 u64 next_seq;
2435 u32 next_idx;
2436 size_t l = 0;
2437 bool ret = false;
2438
2439 if (!dumper->active)
2440 goto out;
2441
2442 raw_spin_lock_irqsave(&logbuf_lock, flags);
2443 if (dumper->cur_seq < log_first_seq) {
2444 /* messages are gone, move to first available one */
2445 dumper->cur_seq = log_first_seq;
2446 dumper->cur_idx = log_first_idx;
2447 }
2448
2449 /* last entry */
2450 if (dumper->cur_seq >= dumper->next_seq) {
2451 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2452 goto out;
2453 }
2454
2455 /* calculate length of entire buffer */
2456 seq = dumper->cur_seq;
2457 idx = dumper->cur_idx;
2458 while (seq < dumper->next_seq) {
2459 struct log *msg = log_from_idx(idx);
2460
2461 l += msg_print_text(msg, true, NULL, 0);
2462 idx = log_next(idx);
2463 seq++;
2464 }
2465
2466 /* move first record forward until length fits into the buffer */
2467 seq = dumper->cur_seq;
2468 idx = dumper->cur_idx;
2469 while (l > size && seq < dumper->next_seq) {
2470 struct log *msg = log_from_idx(idx);
2471
2472 l -= msg_print_text(msg, true, NULL, 0);
2473 idx = log_next(idx);
2474 seq++;
2475 }
2476
2477 /* last message in next interation */
2478 next_seq = seq;
2479 next_idx = idx;
2480
2481 l = 0;
2482 while (seq < dumper->next_seq) {
2483 struct log *msg = log_from_idx(idx);
2484
2485 l += msg_print_text(msg, syslog,
2486 buf + l, size - l);
2487
2488 idx = log_next(idx);
2489 seq++;
2490 }
2491
2492 dumper->next_seq = next_seq;
2493 dumper->next_idx = next_idx;
2494 ret = true;
2495 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2496out:
2497 if (len)
2498 *len = l;
2499 return ret;
2500}
2501EXPORT_SYMBOL_GPL(kmsg_dump_get_buffer);
2502
2503/**
2504 * kmsg_dump_rewind - reset the interator
2505 * @dumper: registered kmsg dumper
2506 *
2507 * Reset the dumper's iterator so that kmsg_dump_get_line() and
2508 * kmsg_dump_get_buffer() can be called again and used multiple
2509 * times within the same dumper.dump() callback.
2510 */
2511void kmsg_dump_rewind(struct kmsg_dumper *dumper)
2512{
2513 unsigned long flags;
2514
2515 raw_spin_lock_irqsave(&logbuf_lock, flags);
2516 dumper->cur_seq = clear_seq;
2517 dumper->cur_idx = clear_idx;
2518 dumper->next_seq = log_next_seq;
2519 dumper->next_idx = log_next_idx;
2520 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2521}
2522EXPORT_SYMBOL_GPL(kmsg_dump_rewind);
Joe Perches7ef3d2f2008-02-08 04:21:25 -08002523#endif