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