printk - fix compilation for CONFIG_PRINTK=n
[GitHub/mt8127/android_kernel_alcatel_ttab.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 */
230#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
231static char __log_buf[__LOG_BUF_LEN];
232static char *log_buf = __log_buf;
233static u32 log_buf_len = __LOG_BUF_LEN;
234
235/* cpu currently holding logbuf_lock */
236static volatile unsigned int logbuf_cpu = UINT_MAX;
7ff9554b
KS
237
238/* human readable text of the record */
239static char *log_text(const struct log *msg)
240{
241 return (char *)msg + sizeof(struct log);
242}
243
244/* optional key/value pair dictionary attached to the record */
245static char *log_dict(const struct log *msg)
246{
247 return (char *)msg + sizeof(struct log) + msg->text_len;
248}
249
250/* get record by index; idx must point to valid msg */
251static struct log *log_from_idx(u32 idx)
252{
253 struct log *msg = (struct log *)(log_buf + idx);
254
255 /*
256 * A length == 0 record is the end of buffer marker. Wrap around and
257 * read the message at the start of the buffer.
258 */
259 if (!msg->len)
260 return (struct log *)log_buf;
261 return msg;
262}
263
264/* get next record; idx must point to valid msg */
265static u32 log_next(u32 idx)
266{
267 struct log *msg = (struct log *)(log_buf + idx);
268
269 /* length == 0 indicates the end of the buffer; wrap */
270 /*
271 * A length == 0 record is the end of buffer marker. Wrap around and
272 * read the message at the start of the buffer as *this* one, and
273 * return the one after that.
274 */
275 if (!msg->len) {
276 msg = (struct log *)log_buf;
277 return msg->len;
278 }
279 return idx + msg->len;
280}
281
282#if !defined(CONFIG_64BIT) || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
283#define LOG_ALIGN 4
284#else
285#define LOG_ALIGN 8
286#endif
287
288/* insert record into the buffer, discard old ones, update heads */
289static void log_store(int facility, int level,
290 const char *dict, u16 dict_len,
291 const char *text, u16 text_len)
292{
293 struct log *msg;
294 u32 size, pad_len;
295
296 /* number of '\0' padding bytes to next message */
297 size = sizeof(struct log) + text_len + dict_len;
298 pad_len = (-size) & (LOG_ALIGN - 1);
299 size += pad_len;
300
301 while (log_first_seq < log_next_seq) {
302 u32 free;
303
304 if (log_next_idx > log_first_idx)
305 free = max(log_buf_len - log_next_idx, log_first_idx);
306 else
307 free = log_first_idx - log_next_idx;
308
309 if (free > size + sizeof(struct log))
310 break;
311
312 /* drop old messages until we have enough contiuous space */
313 log_first_idx = log_next(log_first_idx);
314 log_first_seq++;
315 }
316
317 if (log_next_idx + size + sizeof(struct log) >= log_buf_len) {
318 /*
319 * This message + an additional empty header does not fit
320 * at the end of the buffer. Add an empty header with len == 0
321 * to signify a wrap around.
322 */
323 memset(log_buf + log_next_idx, 0, sizeof(struct log));
324 log_next_idx = 0;
325 }
326
327 /* fill message */
328 msg = (struct log *)(log_buf + log_next_idx);
329 memcpy(log_text(msg), text, text_len);
330 msg->text_len = text_len;
331 memcpy(log_dict(msg), dict, dict_len);
332 msg->dict_len = dict_len;
333 msg->level = (facility << 3) | (level & 7);
334 msg->ts_nsec = local_clock();
335 memset(log_dict(msg) + dict_len, 0, pad_len);
336 msg->len = sizeof(struct log) + text_len + dict_len + pad_len;
337
338 /* insert message */
339 log_next_idx += msg->len;
340 log_next_seq++;
341}
d59745ce 342
e11fea92
KS
343/* /dev/kmsg - userspace message inject/listen interface */
344struct devkmsg_user {
345 u64 seq;
346 u32 idx;
347 struct mutex lock;
348 char buf[8192];
349};
350
351static ssize_t devkmsg_writev(struct kiocb *iocb, const struct iovec *iv,
352 unsigned long count, loff_t pos)
353{
354 char *buf, *line;
355 int i;
356 int level = default_message_loglevel;
357 int facility = 1; /* LOG_USER */
358 size_t len = iov_length(iv, count);
359 ssize_t ret = len;
360
361 if (len > LOG_LINE_MAX)
362 return -EINVAL;
363 buf = kmalloc(len+1, GFP_KERNEL);
364 if (buf == NULL)
365 return -ENOMEM;
366
367 line = buf;
368 for (i = 0; i < count; i++) {
369 if (copy_from_user(line, iv[i].iov_base, iv[i].iov_len))
370 goto out;
371 line += iv[i].iov_len;
372 }
373
374 /*
375 * Extract and skip the syslog prefix <[0-9]*>. Coming from userspace
376 * the decimal value represents 32bit, the lower 3 bit are the log
377 * level, the rest are the log facility.
378 *
379 * If no prefix or no userspace facility is specified, we
380 * enforce LOG_USER, to be able to reliably distinguish
381 * kernel-generated messages from userspace-injected ones.
382 */
383 line = buf;
384 if (line[0] == '<') {
385 char *endp = NULL;
386
387 i = simple_strtoul(line+1, &endp, 10);
388 if (endp && endp[0] == '>') {
389 level = i & 7;
390 if (i >> 3)
391 facility = i >> 3;
392 endp++;
393 len -= endp - line;
394 line = endp;
395 }
396 }
397 line[len] = '\0';
398
399 printk_emit(facility, level, NULL, 0, "%s", line);
400out:
401 kfree(buf);
402 return ret;
403}
404
405static ssize_t devkmsg_read(struct file *file, char __user *buf,
406 size_t count, loff_t *ppos)
407{
408 struct devkmsg_user *user = file->private_data;
409 struct log *msg;
5fc32490 410 u64 ts_usec;
e11fea92
KS
411 size_t i;
412 size_t len;
413 ssize_t ret;
414
415 if (!user)
416 return -EBADF;
417
418 mutex_lock(&user->lock);
419 raw_spin_lock(&logbuf_lock);
420 while (user->seq == log_next_seq) {
421 if (file->f_flags & O_NONBLOCK) {
422 ret = -EAGAIN;
423 raw_spin_unlock(&logbuf_lock);
424 goto out;
425 }
426
427 raw_spin_unlock(&logbuf_lock);
428 ret = wait_event_interruptible(log_wait,
429 user->seq != log_next_seq);
430 if (ret)
431 goto out;
432 raw_spin_lock(&logbuf_lock);
433 }
434
435 if (user->seq < log_first_seq) {
436 /* our last seen message is gone, return error and reset */
437 user->idx = log_first_idx;
438 user->seq = log_first_seq;
439 ret = -EPIPE;
440 raw_spin_unlock(&logbuf_lock);
441 goto out;
442 }
443
444 msg = log_from_idx(user->idx);
5fc32490
KS
445 ts_usec = msg->ts_nsec;
446 do_div(ts_usec, 1000);
e11fea92 447 len = sprintf(user->buf, "%u,%llu,%llu;",
5fc32490 448 msg->level, user->seq, ts_usec);
e11fea92
KS
449
450 /* escape non-printable characters */
451 for (i = 0; i < msg->text_len; i++) {
452 char c = log_text(msg)[i];
453
454 if (c < ' ' || c >= 128)
455 len += sprintf(user->buf + len, "\\x%02x", c);
456 else
457 user->buf[len++] = c;
458 }
459 user->buf[len++] = '\n';
460
461 if (msg->dict_len) {
462 bool line = true;
463
464 for (i = 0; i < msg->dict_len; i++) {
465 char c = log_dict(msg)[i];
466
467 if (line) {
468 user->buf[len++] = ' ';
469 line = false;
470 }
471
472 if (c == '\0') {
473 user->buf[len++] = '\n';
474 line = true;
475 continue;
476 }
477
478 if (c < ' ' || c >= 128) {
479 len += sprintf(user->buf + len, "\\x%02x", c);
480 continue;
481 }
482
483 user->buf[len++] = c;
484 }
485 user->buf[len++] = '\n';
486 }
487
488 user->idx = log_next(user->idx);
489 user->seq++;
490 raw_spin_unlock(&logbuf_lock);
491
492 if (len > count) {
493 ret = -EINVAL;
494 goto out;
495 }
496
497 if (copy_to_user(buf, user->buf, len)) {
498 ret = -EFAULT;
499 goto out;
500 }
501 ret = len;
502out:
503 mutex_unlock(&user->lock);
504 return ret;
505}
506
507static loff_t devkmsg_llseek(struct file *file, loff_t offset, int whence)
508{
509 struct devkmsg_user *user = file->private_data;
510 loff_t ret = 0;
511
512 if (!user)
513 return -EBADF;
514 if (offset)
515 return -ESPIPE;
516
517 raw_spin_lock(&logbuf_lock);
518 switch (whence) {
519 case SEEK_SET:
520 /* the first record */
521 user->idx = log_first_idx;
522 user->seq = log_first_seq;
523 break;
524 case SEEK_DATA:
525 /*
526 * The first record after the last SYSLOG_ACTION_CLEAR,
527 * like issued by 'dmesg -c'. Reading /dev/kmsg itself
528 * changes no global state, and does not clear anything.
529 */
530 user->idx = clear_idx;
531 user->seq = clear_seq;
532 break;
533 case SEEK_END:
534 /* after the last record */
535 user->idx = log_next_idx;
536 user->seq = log_next_seq;
537 break;
538 default:
539 ret = -EINVAL;
540 }
541 raw_spin_unlock(&logbuf_lock);
542 return ret;
543}
544
545static unsigned int devkmsg_poll(struct file *file, poll_table *wait)
546{
547 struct devkmsg_user *user = file->private_data;
548 int ret = 0;
549
550 if (!user)
551 return POLLERR|POLLNVAL;
552
553 poll_wait(file, &log_wait, wait);
554
555 raw_spin_lock(&logbuf_lock);
556 if (user->seq < log_next_seq) {
557 /* return error when data has vanished underneath us */
558 if (user->seq < log_first_seq)
559 ret = POLLIN|POLLRDNORM|POLLERR|POLLPRI;
560 ret = POLLIN|POLLRDNORM;
561 }
562 raw_spin_unlock(&logbuf_lock);
563
564 return ret;
565}
566
567static int devkmsg_open(struct inode *inode, struct file *file)
568{
569 struct devkmsg_user *user;
570 int err;
571
572 /* write-only does not need any file context */
573 if ((file->f_flags & O_ACCMODE) == O_WRONLY)
574 return 0;
575
576 err = security_syslog(SYSLOG_ACTION_READ_ALL);
577 if (err)
578 return err;
579
580 user = kmalloc(sizeof(struct devkmsg_user), GFP_KERNEL);
581 if (!user)
582 return -ENOMEM;
583
584 mutex_init(&user->lock);
585
586 raw_spin_lock(&logbuf_lock);
587 user->idx = log_first_idx;
588 user->seq = log_first_seq;
589 raw_spin_unlock(&logbuf_lock);
590
591 file->private_data = user;
592 return 0;
593}
594
595static int devkmsg_release(struct inode *inode, struct file *file)
596{
597 struct devkmsg_user *user = file->private_data;
598
599 if (!user)
600 return 0;
601
602 mutex_destroy(&user->lock);
603 kfree(user);
604 return 0;
605}
606
607const struct file_operations kmsg_fops = {
608 .open = devkmsg_open,
609 .read = devkmsg_read,
610 .aio_write = devkmsg_writev,
611 .llseek = devkmsg_llseek,
612 .poll = devkmsg_poll,
613 .release = devkmsg_release,
614};
615
04d491ab
NH
616#ifdef CONFIG_KEXEC
617/*
618 * This appends the listed symbols to /proc/vmcoreinfo
619 *
620 * /proc/vmcoreinfo is used by various utiilties, like crash and makedumpfile to
621 * obtain access to symbols that are otherwise very difficult to locate. These
622 * symbols are specifically used so that utilities can access and extract the
623 * dmesg log from a vmcore file after a crash.
624 */
625void log_buf_kexec_setup(void)
626{
627 VMCOREINFO_SYMBOL(log_buf);
04d491ab 628 VMCOREINFO_SYMBOL(log_buf_len);
7ff9554b
KS
629 VMCOREINFO_SYMBOL(log_first_idx);
630 VMCOREINFO_SYMBOL(log_next_idx);
04d491ab
NH
631}
632#endif
633
162a7e75
MT
634/* requested log_buf_len from kernel cmdline */
635static unsigned long __initdata new_log_buf_len;
636
637/* save requested log_buf_len since it's too early to process it */
1da177e4
LT
638static int __init log_buf_len_setup(char *str)
639{
eed4a2ab 640 unsigned size = memparse(str, &str);
1da177e4
LT
641
642 if (size)
643 size = roundup_pow_of_two(size);
162a7e75
MT
644 if (size > log_buf_len)
645 new_log_buf_len = size;
646
647 return 0;
1da177e4 648}
162a7e75
MT
649early_param("log_buf_len", log_buf_len_setup);
650
651void __init setup_log_buf(int early)
652{
653 unsigned long flags;
162a7e75
MT
654 char *new_log_buf;
655 int free;
656
657 if (!new_log_buf_len)
658 return;
1da177e4 659
162a7e75
MT
660 if (early) {
661 unsigned long mem;
662
663 mem = memblock_alloc(new_log_buf_len, PAGE_SIZE);
1f5026a7 664 if (!mem)
162a7e75
MT
665 return;
666 new_log_buf = __va(mem);
667 } else {
668 new_log_buf = alloc_bootmem_nopanic(new_log_buf_len);
669 }
670
671 if (unlikely(!new_log_buf)) {
672 pr_err("log_buf_len: %ld bytes not available\n",
673 new_log_buf_len);
674 return;
675 }
676
07354eb1 677 raw_spin_lock_irqsave(&logbuf_lock, flags);
162a7e75
MT
678 log_buf_len = new_log_buf_len;
679 log_buf = new_log_buf;
680 new_log_buf_len = 0;
7ff9554b
KS
681 free = __LOG_BUF_LEN - log_next_idx;
682 memcpy(log_buf, __log_buf, __LOG_BUF_LEN);
07354eb1 683 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
162a7e75
MT
684
685 pr_info("log_buf_len: %d\n", log_buf_len);
686 pr_info("early log buf free: %d(%d%%)\n",
687 free, (free * 100) / __LOG_BUF_LEN);
688}
1da177e4 689
bfe8df3d
RD
690#ifdef CONFIG_BOOT_PRINTK_DELAY
691
674dff65 692static int boot_delay; /* msecs delay after each printk during bootup */
3a3b6ed2 693static unsigned long long loops_per_msec; /* based on boot_delay */
bfe8df3d
RD
694
695static int __init boot_delay_setup(char *str)
696{
697 unsigned long lpj;
bfe8df3d
RD
698
699 lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */
700 loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
701
702 get_option(&str, &boot_delay);
703 if (boot_delay > 10 * 1000)
704 boot_delay = 0;
705
3a3b6ed2
DY
706 pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
707 "HZ: %d, loops_per_msec: %llu\n",
708 boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
bfe8df3d
RD
709 return 1;
710}
711__setup("boot_delay=", boot_delay_setup);
712
713static void boot_delay_msec(void)
714{
715 unsigned long long k;
716 unsigned long timeout;
717
718 if (boot_delay == 0 || system_state != SYSTEM_BOOTING)
719 return;
720
3a3b6ed2 721 k = (unsigned long long)loops_per_msec * boot_delay;
bfe8df3d
RD
722
723 timeout = jiffies + msecs_to_jiffies(boot_delay);
724 while (k) {
725 k--;
726 cpu_relax();
727 /*
728 * use (volatile) jiffies to prevent
729 * compiler reduction; loop termination via jiffies
730 * is secondary and may or may not happen.
731 */
732 if (time_after(jiffies, timeout))
733 break;
734 touch_nmi_watchdog();
735 }
736}
737#else
738static inline void boot_delay_msec(void)
739{
740}
741#endif
742
eaf06b24
DR
743#ifdef CONFIG_SECURITY_DMESG_RESTRICT
744int dmesg_restrict = 1;
745#else
746int dmesg_restrict;
747#endif
748
ee24aebf
LT
749static int syslog_action_restricted(int type)
750{
751 if (dmesg_restrict)
752 return 1;
753 /* Unless restricted, we allow "read all" and "get buffer size" for everybody */
754 return type != SYSLOG_ACTION_READ_ALL && type != SYSLOG_ACTION_SIZE_BUFFER;
755}
756
757static int check_syslog_permissions(int type, bool from_file)
758{
759 /*
760 * If this is from /proc/kmsg and we've already opened it, then we've
761 * already done the capabilities checks at open time.
762 */
763 if (from_file && type != SYSLOG_ACTION_OPEN)
764 return 0;
765
766 if (syslog_action_restricted(type)) {
767 if (capable(CAP_SYSLOG))
768 return 0;
769 /* For historical reasons, accept CAP_SYS_ADMIN too, with a warning */
770 if (capable(CAP_SYS_ADMIN)) {
f2c0d026
JN
771 printk_once(KERN_WARNING "%s (%d): "
772 "Attempt to access syslog with CAP_SYS_ADMIN "
773 "but no CAP_SYSLOG (deprecated).\n",
774 current->comm, task_pid_nr(current));
ee24aebf
LT
775 return 0;
776 }
777 return -EPERM;
778 }
779 return 0;
780}
781
7ff9554b
KS
782#if defined(CONFIG_PRINTK_TIME)
783static bool printk_time = 1;
784#else
785static bool printk_time;
786#endif
787module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
788
789static int syslog_print_line(u32 idx, char *text, size_t size)
790{
791 struct log *msg;
792 size_t len;
793
794 msg = log_from_idx(idx);
795 if (!text) {
796 /* calculate length only */
797 len = 3;
798
799 if (msg->level > 9)
800 len++;
801 if (msg->level > 99)
802 len++;
803
804 if (printk_time)
805 len += 15;
806
807 len += msg->text_len;
808 len++;
809 return len;
810 }
811
812 len = sprintf(text, "<%u>", msg->level);
813
814 if (printk_time) {
815 unsigned long long t = msg->ts_nsec;
816 unsigned long rem_ns = do_div(t, 1000000000);
817
818 len += sprintf(text + len, "[%5lu.%06lu] ",
819 (unsigned long) t, rem_ns / 1000);
820 }
821
822 if (len + msg->text_len > size)
823 return -EINVAL;
824 memcpy(text + len, log_text(msg), msg->text_len);
825 len += msg->text_len;
826 text[len++] = '\n';
827 return len;
828}
829
830static int syslog_print(char __user *buf, int size)
831{
832 char *text;
833 int len;
834
835 text = kmalloc(LOG_LINE_MAX, GFP_KERNEL);
836 if (!text)
837 return -ENOMEM;
838
839 raw_spin_lock_irq(&logbuf_lock);
840 if (syslog_seq < log_first_seq) {
841 /* messages are gone, move to first one */
842 syslog_seq = log_first_seq;
843 syslog_idx = log_first_idx;
844 }
845 len = syslog_print_line(syslog_idx, text, LOG_LINE_MAX);
846 syslog_idx = log_next(syslog_idx);
847 syslog_seq++;
848 raw_spin_unlock_irq(&logbuf_lock);
849
850 if (len > 0 && copy_to_user(buf, text, len))
851 len = -EFAULT;
852
853 kfree(text);
854 return len;
855}
856
857static int syslog_print_all(char __user *buf, int size, bool clear)
858{
859 char *text;
860 int len = 0;
861
862 text = kmalloc(LOG_LINE_MAX, GFP_KERNEL);
863 if (!text)
864 return -ENOMEM;
865
866 raw_spin_lock_irq(&logbuf_lock);
867 if (buf) {
868 u64 next_seq;
869 u64 seq;
870 u32 idx;
871
872 if (clear_seq < log_first_seq) {
873 /* messages are gone, move to first available one */
874 clear_seq = log_first_seq;
875 clear_idx = log_first_idx;
876 }
877
878 /*
879 * Find first record that fits, including all following records,
880 * into the user-provided buffer for this dump.
881 */
882 seq = clear_seq;
883 idx = clear_idx;
884 while (seq < log_next_seq) {
885 len += syslog_print_line(idx, NULL, 0);
886 idx = log_next(idx);
887 seq++;
888 }
889 seq = clear_seq;
890 idx = clear_idx;
891 while (len > size && seq < log_next_seq) {
892 len -= syslog_print_line(idx, NULL, 0);
893 idx = log_next(idx);
894 seq++;
895 }
896
897 /* last message in this dump */
898 next_seq = log_next_seq;
899
900 len = 0;
901 while (len >= 0 && seq < next_seq) {
902 int textlen;
903
904 textlen = syslog_print_line(idx, text, LOG_LINE_MAX);
905 if (textlen < 0) {
906 len = textlen;
907 break;
908 }
909 idx = log_next(idx);
910 seq++;
911
912 raw_spin_unlock_irq(&logbuf_lock);
913 if (copy_to_user(buf + len, text, textlen))
914 len = -EFAULT;
915 else
916 len += textlen;
917 raw_spin_lock_irq(&logbuf_lock);
918
919 if (seq < log_first_seq) {
920 /* messages are gone, move to next one */
921 seq = log_first_seq;
922 idx = log_first_idx;
923 }
924 }
925 }
926
927 if (clear) {
928 clear_seq = log_next_seq;
929 clear_idx = log_next_idx;
930 }
931 raw_spin_unlock_irq(&logbuf_lock);
932
933 kfree(text);
934 return len;
935}
936
00234592 937int do_syslog(int type, char __user *buf, int len, bool from_file)
1da177e4 938{
7ff9554b
KS
939 bool clear = false;
940 static int saved_console_loglevel = -1;
ee24aebf 941 int error;
1da177e4 942
ee24aebf
LT
943 error = check_syslog_permissions(type, from_file);
944 if (error)
945 goto out;
12b3052c
EP
946
947 error = security_syslog(type);
1da177e4
LT
948 if (error)
949 return error;
950
951 switch (type) {
d78ca3cd 952 case SYSLOG_ACTION_CLOSE: /* Close log */
1da177e4 953 break;
d78ca3cd 954 case SYSLOG_ACTION_OPEN: /* Open log */
1da177e4 955 break;
d78ca3cd 956 case SYSLOG_ACTION_READ: /* Read from log */
1da177e4
LT
957 error = -EINVAL;
958 if (!buf || len < 0)
959 goto out;
960 error = 0;
961 if (!len)
962 goto out;
963 if (!access_ok(VERIFY_WRITE, buf, len)) {
964 error = -EFAULT;
965 goto out;
966 }
40dc5651 967 error = wait_event_interruptible(log_wait,
7ff9554b 968 syslog_seq != log_next_seq);
1da177e4
LT
969 if (error)
970 goto out;
7ff9554b 971 error = syslog_print(buf, len);
1da177e4 972 break;
d78ca3cd
KC
973 /* Read/clear last kernel messages */
974 case SYSLOG_ACTION_READ_CLEAR:
7ff9554b 975 clear = true;
1da177e4 976 /* FALL THRU */
d78ca3cd
KC
977 /* Read last kernel messages */
978 case SYSLOG_ACTION_READ_ALL:
1da177e4
LT
979 error = -EINVAL;
980 if (!buf || len < 0)
981 goto out;
982 error = 0;
983 if (!len)
984 goto out;
985 if (!access_ok(VERIFY_WRITE, buf, len)) {
986 error = -EFAULT;
987 goto out;
988 }
7ff9554b 989 error = syslog_print_all(buf, len, clear);
1da177e4 990 break;
d78ca3cd
KC
991 /* Clear ring buffer */
992 case SYSLOG_ACTION_CLEAR:
7ff9554b 993 syslog_print_all(NULL, 0, true);
d78ca3cd
KC
994 /* Disable logging to console */
995 case SYSLOG_ACTION_CONSOLE_OFF:
1aaad49e
FP
996 if (saved_console_loglevel == -1)
997 saved_console_loglevel = console_loglevel;
1da177e4
LT
998 console_loglevel = minimum_console_loglevel;
999 break;
d78ca3cd
KC
1000 /* Enable logging to console */
1001 case SYSLOG_ACTION_CONSOLE_ON:
1aaad49e
FP
1002 if (saved_console_loglevel != -1) {
1003 console_loglevel = saved_console_loglevel;
1004 saved_console_loglevel = -1;
1005 }
1da177e4 1006 break;
d78ca3cd
KC
1007 /* Set level of messages printed to console */
1008 case SYSLOG_ACTION_CONSOLE_LEVEL:
1da177e4
LT
1009 error = -EINVAL;
1010 if (len < 1 || len > 8)
1011 goto out;
1012 if (len < minimum_console_loglevel)
1013 len = minimum_console_loglevel;
1014 console_loglevel = len;
1aaad49e
FP
1015 /* Implicitly re-enable logging to console */
1016 saved_console_loglevel = -1;
1da177e4
LT
1017 error = 0;
1018 break;
d78ca3cd
KC
1019 /* Number of chars in the log buffer */
1020 case SYSLOG_ACTION_SIZE_UNREAD:
7ff9554b
KS
1021 raw_spin_lock_irq(&logbuf_lock);
1022 if (syslog_seq < log_first_seq) {
1023 /* messages are gone, move to first one */
1024 syslog_seq = log_first_seq;
1025 syslog_idx = log_first_idx;
1026 }
1027 if (from_file) {
1028 /*
1029 * Short-cut for poll(/"proc/kmsg") which simply checks
1030 * for pending data, not the size; return the count of
1031 * records, not the length.
1032 */
1033 error = log_next_idx - syslog_idx;
1034 } else {
1035 u64 seq;
1036 u32 idx;
1037
1038 error = 0;
1039 seq = syslog_seq;
1040 idx = syslog_idx;
1041 while (seq < log_next_seq) {
1042 error += syslog_print_line(idx, NULL, 0);
1043 idx = log_next(idx);
1044 seq++;
1045 }
1046 }
1047 raw_spin_unlock_irq(&logbuf_lock);
1da177e4 1048 break;
d78ca3cd
KC
1049 /* Size of the log buffer */
1050 case SYSLOG_ACTION_SIZE_BUFFER:
1da177e4
LT
1051 error = log_buf_len;
1052 break;
1053 default:
1054 error = -EINVAL;
1055 break;
1056 }
1057out:
1058 return error;
1059}
1060
1e7bfb21 1061SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
1da177e4 1062{
00234592 1063 return do_syslog(type, buf, len, SYSLOG_FROM_CALL);
1da177e4
LT
1064}
1065
67fc4e0c
JW
1066#ifdef CONFIG_KGDB_KDB
1067/* kdb dmesg command needs access to the syslog buffer. do_syslog()
1068 * uses locks so it cannot be used during debugging. Just tell kdb
1069 * where the start and end of the physical and logical logs are. This
1070 * is equivalent to do_syslog(3).
1071 */
1072void kdb_syslog_data(char *syslog_data[4])
1073{
1074 syslog_data[0] = log_buf;
1075 syslog_data[1] = log_buf + log_buf_len;
7ff9554b
KS
1076 syslog_data[2] = log_buf + log_first_idx;
1077 syslog_data[3] = log_buf + log_next_idx;
67fc4e0c
JW
1078}
1079#endif /* CONFIG_KGDB_KDB */
1080
2329abfa 1081static bool __read_mostly ignore_loglevel;
79290822 1082
99eea6a1 1083static int __init ignore_loglevel_setup(char *str)
79290822
IM
1084{
1085 ignore_loglevel = 1;
1086 printk(KERN_INFO "debug: ignoring loglevel setting.\n");
1087
c4772d99 1088 return 0;
79290822
IM
1089}
1090
c4772d99 1091early_param("ignore_loglevel", ignore_loglevel_setup);
29d4d6df 1092module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR);
0eca6b7c
YZ
1093MODULE_PARM_DESC(ignore_loglevel, "ignore loglevel setting, to"
1094 "print all kernel messages to the console.");
79290822 1095
1da177e4
LT
1096/*
1097 * Call the console drivers, asking them to write out
1098 * log_buf[start] to log_buf[end - 1].
ac751efa 1099 * The console_lock must be held.
1da177e4 1100 */
7ff9554b 1101static void call_console_drivers(int level, const char *text, size_t len)
1da177e4 1102{
7ff9554b 1103 struct console *con;
1da177e4 1104
7ff9554b
KS
1105 trace_console(text, 0, len, len);
1106
1107 if (level >= console_loglevel && !ignore_loglevel)
1108 return;
1109 if (!console_drivers)
1110 return;
1111
1112 for_each_console(con) {
1113 if (exclusive_console && con != exclusive_console)
1114 continue;
1115 if (!(con->flags & CON_ENABLED))
1116 continue;
1117 if (!con->write)
1118 continue;
1119 if (!cpu_online(smp_processor_id()) &&
1120 !(con->flags & CON_ANYTIME))
1121 continue;
1122 con->write(con, text, len);
1123 }
1da177e4
LT
1124}
1125
1126/*
1127 * Zap console related locks when oopsing. Only zap at most once
1128 * every 10 seconds, to leave time for slow consoles to print a
1129 * full oops.
1130 */
1131static void zap_locks(void)
1132{
1133 static unsigned long oops_timestamp;
1134
1135 if (time_after_eq(jiffies, oops_timestamp) &&
40dc5651 1136 !time_after(jiffies, oops_timestamp + 30 * HZ))
1da177e4
LT
1137 return;
1138
1139 oops_timestamp = jiffies;
1140
94d24fc4 1141 debug_locks_off();
1da177e4 1142 /* If a crash is occurring, make sure we can't deadlock */
07354eb1 1143 raw_spin_lock_init(&logbuf_lock);
1da177e4 1144 /* And make sure that we print immediately */
5b8c4f23 1145 sema_init(&console_sem, 1);
1da177e4
LT
1146}
1147
76a8ad29
ME
1148/* Check if we have any console registered that can be called early in boot. */
1149static int have_callable_console(void)
1150{
1151 struct console *con;
1152
4d091611 1153 for_each_console(con)
76a8ad29
ME
1154 if (con->flags & CON_ANYTIME)
1155 return 1;
1156
1157 return 0;
1158}
1159
266c2e0a
LT
1160/*
1161 * Can we actually use the console at this time on this cpu?
1162 *
1163 * Console drivers may assume that per-cpu resources have
1164 * been allocated. So unless they're explicitly marked as
1165 * being able to cope (CON_ANYTIME) don't call them until
1166 * this CPU is officially up.
1167 */
1168static inline int can_use_console(unsigned int cpu)
1169{
1170 return cpu_online(cpu) || have_callable_console();
1171}
1172
1173/*
1174 * Try to get console ownership to actually show the kernel
1175 * messages from a 'printk'. Return true (and with the
ac751efa 1176 * console_lock held, and 'console_locked' set) if it
266c2e0a
LT
1177 * is successful, false otherwise.
1178 *
1179 * This gets called with the 'logbuf_lock' spinlock held and
1180 * interrupts disabled. It should return with 'lockbuf_lock'
1181 * released but interrupts still disabled.
1182 */
ac751efa 1183static int console_trylock_for_printk(unsigned int cpu)
8155c02a 1184 __releases(&logbuf_lock)
266c2e0a 1185{
0b5e1c52 1186 int retval = 0, wake = 0;
266c2e0a 1187
ac751efa 1188 if (console_trylock()) {
093a07e2
LT
1189 retval = 1;
1190
1191 /*
1192 * If we can't use the console, we need to release
1193 * the console semaphore by hand to avoid flushing
1194 * the buffer. We need to hold the console semaphore
1195 * in order to do this test safely.
1196 */
1197 if (!can_use_console(cpu)) {
1198 console_locked = 0;
0b5e1c52 1199 wake = 1;
093a07e2
LT
1200 retval = 0;
1201 }
1202 }
7ff9554b 1203 logbuf_cpu = UINT_MAX;
0b5e1c52
PZ
1204 if (wake)
1205 up(&console_sem);
07354eb1 1206 raw_spin_unlock(&logbuf_lock);
266c2e0a
LT
1207 return retval;
1208}
32a76006 1209
af91322e
DY
1210int printk_delay_msec __read_mostly;
1211
1212static inline void printk_delay(void)
1213{
1214 if (unlikely(printk_delay_msec)) {
1215 int m = printk_delay_msec;
1216
1217 while (m--) {
1218 mdelay(1);
1219 touch_nmi_watchdog();
1220 }
1221 }
1222}
1223
7ff9554b
KS
1224asmlinkage int vprintk_emit(int facility, int level,
1225 const char *dict, size_t dictlen,
1226 const char *fmt, va_list args)
1da177e4 1227{
7ff9554b
KS
1228 static int recursion_bug;
1229 static char buf[LOG_LINE_MAX];
1230 static size_t buflen;
1231 static int buflevel;
1232 static char textbuf[LOG_LINE_MAX];
1233 char *text = textbuf;
1234 size_t textlen;
ac60ad74 1235 unsigned long flags;
32a76006 1236 int this_cpu;
7ff9554b
KS
1237 bool newline = false;
1238 bool cont = false;
1239 int printed_len = 0;
1da177e4 1240
bfe8df3d 1241 boot_delay_msec();
af91322e 1242 printk_delay();
bfe8df3d 1243
1da177e4 1244 /* This stops the holder of console_sem just where we want him */
1a9a8aef 1245 local_irq_save(flags);
32a76006
IM
1246 this_cpu = smp_processor_id();
1247
1248 /*
1249 * Ouch, printk recursed into itself!
1250 */
7ff9554b 1251 if (unlikely(logbuf_cpu == this_cpu)) {
32a76006
IM
1252 /*
1253 * If a crash is occurring during printk() on this CPU,
1254 * then try to get the crash message out but make sure
1255 * we can't deadlock. Otherwise just return to avoid the
1256 * recursion and return - but flag the recursion so that
1257 * it can be printed at the next appropriate moment:
1258 */
94d24fc4 1259 if (!oops_in_progress && !lockdep_recursing(current)) {
3b8945e8 1260 recursion_bug = 1;
32a76006
IM
1261 goto out_restore_irqs;
1262 }
1263 zap_locks();
1264 }
1265
a0f1ccfd 1266 lockdep_off();
07354eb1 1267 raw_spin_lock(&logbuf_lock);
7ff9554b 1268 logbuf_cpu = this_cpu;
1da177e4 1269
3b8945e8 1270 if (recursion_bug) {
7ff9554b
KS
1271 static const char recursion_msg[] =
1272 "BUG: recent printk recursion!";
1273
3b8945e8 1274 recursion_bug = 0;
7ff9554b
KS
1275 printed_len += strlen(recursion_msg);
1276 /* emit KERN_CRIT message */
1277 log_store(0, 2, NULL, 0, recursion_msg, printed_len);
32a76006 1278 }
1da177e4 1279
7ff9554b
KS
1280 /*
1281 * The printf needs to come first; we need the syslog
1282 * prefix which might be passed-in as a parameter.
1283 */
1284 textlen = vscnprintf(text, sizeof(textbuf), fmt, args);
5fd29d6c 1285
7ff9554b
KS
1286 /* mark and strip a trailing newline */
1287 if (textlen && text[textlen-1] == '\n') {
1288 textlen--;
1289 newline = true;
1290 }
9d90c8d9 1291
7ff9554b
KS
1292 /* strip syslog prefix and extract log level or flags */
1293 if (text[0] == '<' && text[1] && text[2] == '>') {
1294 switch (text[1]) {
1295 case '0' ... '7':
1296 if (level == -1)
1297 level = text[1] - '0';
1298 text += 3;
1299 textlen -= 3;
1300 break;
1301 case 'c': /* KERN_CONT */
1302 cont = true;
1303 case 'd': /* KERN_DEFAULT */
1304 text += 3;
1305 textlen -= 3;
9d90c8d9 1306 break;
5fd29d6c
LT
1307 }
1308 }
1309
7ff9554b
KS
1310 if (buflen && (!cont || dict)) {
1311 /* no continuation; flush existing buffer */
1312 log_store(facility, buflevel, NULL, 0, buf, buflen);
1313 printed_len += buflen;
1314 buflen = 0;
1315 }
9d90c8d9 1316
7ff9554b
KS
1317 if (buflen == 0) {
1318 /* remember level for first message in the buffer */
1319 if (level == -1)
1320 buflevel = default_message_loglevel;
1321 else
1322 buflevel = level;
1323 }
ac60ad74 1324
7ff9554b
KS
1325 if (buflen || !newline) {
1326 /* append to existing buffer, or buffer until next message */
1327 if (buflen + textlen > sizeof(buf))
1328 textlen = sizeof(buf) - buflen;
1329 memcpy(buf + buflen, text, textlen);
1330 buflen += textlen;
1331 }
ac60ad74 1332
7ff9554b
KS
1333 if (newline) {
1334 /* end of line; flush buffer */
1335 if (buflen) {
1336 log_store(facility, buflevel,
1337 dict, dictlen, buf, buflen);
1338 printed_len += buflen;
1339 buflen = 0;
1340 } else {
1341 log_store(facility, buflevel,
1342 dict, dictlen, text, textlen);
1343 printed_len += textlen;
1344 }
1da177e4
LT
1345 }
1346
266c2e0a 1347 /*
7ff9554b
KS
1348 * Try to acquire and then immediately release the console semaphore.
1349 * The release will print out buffers and wake up /dev/kmsg and syslog()
1350 * users.
266c2e0a 1351 *
7ff9554b
KS
1352 * The console_trylock_for_printk() function will release 'logbuf_lock'
1353 * regardless of whether it actually gets the console semaphore or not.
266c2e0a 1354 */
ac751efa
TH
1355 if (console_trylock_for_printk(this_cpu))
1356 console_unlock();
76a8ad29 1357
266c2e0a 1358 lockdep_on();
32a76006 1359out_restore_irqs:
1a9a8aef 1360 local_irq_restore(flags);
76a8ad29 1361
1da177e4
LT
1362 return printed_len;
1363}
7ff9554b
KS
1364EXPORT_SYMBOL(vprintk_emit);
1365
1366asmlinkage int vprintk(const char *fmt, va_list args)
1367{
1368 return vprintk_emit(0, -1, NULL, 0, fmt, args);
1369}
1da177e4
LT
1370EXPORT_SYMBOL(vprintk);
1371
7ff9554b
KS
1372asmlinkage int printk_emit(int facility, int level,
1373 const char *dict, size_t dictlen,
1374 const char *fmt, ...)
1375{
1376 va_list args;
1377 int r;
1378
1379 va_start(args, fmt);
1380 r = vprintk_emit(facility, level, dict, dictlen, fmt, args);
1381 va_end(args);
1382
1383 return r;
1384}
1385EXPORT_SYMBOL(printk_emit);
1386
1387/**
1388 * printk - print a kernel message
1389 * @fmt: format string
1390 *
1391 * This is printk(). It can be called from any context. We want it to work.
1392 *
1393 * We try to grab the console_lock. If we succeed, it's easy - we log the
1394 * output and call the console drivers. If we fail to get the semaphore, we
1395 * place the output into the log buffer and return. The current holder of
1396 * the console_sem will notice the new output in console_unlock(); and will
1397 * send it to the consoles before releasing the lock.
1398 *
1399 * One effect of this deferred printing is that code which calls printk() and
1400 * then changes console_loglevel may break. This is because console_loglevel
1401 * is inspected when the actual printing occurs.
1402 *
1403 * See also:
1404 * printf(3)
1405 *
1406 * See the vsnprintf() documentation for format string extensions over C99.
1407 */
1408asmlinkage int printk(const char *fmt, ...)
1409{
1410 va_list args;
1411 int r;
1412
1413#ifdef CONFIG_KGDB_KDB
1414 if (unlikely(kdb_trap_printk)) {
1415 va_start(args, fmt);
1416 r = vkdb_printf(fmt, args);
1417 va_end(args);
1418 return r;
1419 }
1420#endif
1421 va_start(args, fmt);
1422 r = vprintk_emit(0, -1, NULL, 0, fmt, args);
1423 va_end(args);
1424
1425 return r;
1426}
1427EXPORT_SYMBOL(printk);
7f3a781d 1428
d59745ce
MM
1429#else
1430
7f3a781d
KS
1431#define LOG_LINE_MAX 0
1432static struct log *log_from_idx(u32 idx) { return NULL; }
1433static u32 log_next(u32 idx) { return 0; }
1434static char *log_text(const struct log *msg) { return NULL; }
1435static void call_console_drivers(int level, const char *text, size_t len) {}
d59745ce 1436
7f3a781d 1437#endif /* CONFIG_PRINTK */
d59745ce 1438
f7511d5f
ST
1439static int __add_preferred_console(char *name, int idx, char *options,
1440 char *brl_options)
1441{
1442 struct console_cmdline *c;
1443 int i;
1444
1445 /*
1446 * See if this tty is not yet registered, and
1447 * if we have a slot free.
1448 */
1449 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
1450 if (strcmp(console_cmdline[i].name, name) == 0 &&
1451 console_cmdline[i].index == idx) {
1452 if (!brl_options)
1453 selected_console = i;
1454 return 0;
1455 }
1456 if (i == MAX_CMDLINECONSOLES)
1457 return -E2BIG;
1458 if (!brl_options)
1459 selected_console = i;
1460 c = &console_cmdline[i];
1461 strlcpy(c->name, name, sizeof(c->name));
1462 c->options = options;
1463#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1464 c->brl_options = brl_options;
1465#endif
1466 c->index = idx;
1467 return 0;
1468}
2ea1c539
JB
1469/*
1470 * Set up a list of consoles. Called from init/main.c
1471 */
1472static int __init console_setup(char *str)
1473{
eaa944af 1474 char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for index */
f7511d5f 1475 char *s, *options, *brl_options = NULL;
2ea1c539
JB
1476 int idx;
1477
f7511d5f
ST
1478#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1479 if (!memcmp(str, "brl,", 4)) {
1480 brl_options = "";
1481 str += 4;
1482 } else if (!memcmp(str, "brl=", 4)) {
1483 brl_options = str + 4;
1484 str = strchr(brl_options, ',');
1485 if (!str) {
1486 printk(KERN_ERR "need port name after brl=\n");
1487 return 1;
1488 }
1489 *(str++) = 0;
1490 }
1491#endif
1492
2ea1c539
JB
1493 /*
1494 * Decode str into name, index, options.
1495 */
1496 if (str[0] >= '0' && str[0] <= '9') {
eaa944af
YL
1497 strcpy(buf, "ttyS");
1498 strncpy(buf + 4, str, sizeof(buf) - 5);
2ea1c539 1499 } else {
eaa944af 1500 strncpy(buf, str, sizeof(buf) - 1);
2ea1c539 1501 }
eaa944af 1502 buf[sizeof(buf) - 1] = 0;
2ea1c539
JB
1503 if ((options = strchr(str, ',')) != NULL)
1504 *(options++) = 0;
1505#ifdef __sparc__
1506 if (!strcmp(str, "ttya"))
eaa944af 1507 strcpy(buf, "ttyS0");
2ea1c539 1508 if (!strcmp(str, "ttyb"))
eaa944af 1509 strcpy(buf, "ttyS1");
2ea1c539 1510#endif
eaa944af 1511 for (s = buf; *s; s++)
2ea1c539
JB
1512 if ((*s >= '0' && *s <= '9') || *s == ',')
1513 break;
1514 idx = simple_strtoul(s, NULL, 10);
1515 *s = 0;
1516
f7511d5f 1517 __add_preferred_console(buf, idx, options, brl_options);
9e124fe1 1518 console_set_on_cmdline = 1;
2ea1c539
JB
1519 return 1;
1520}
1521__setup("console=", console_setup);
1522
3c0547ba
MM
1523/**
1524 * add_preferred_console - add a device to the list of preferred consoles.
ddad86c2
MW
1525 * @name: device name
1526 * @idx: device index
1527 * @options: options for this console
3c0547ba
MM
1528 *
1529 * The last preferred console added will be used for kernel messages
1530 * and stdin/out/err for init. Normally this is used by console_setup
1531 * above to handle user-supplied console arguments; however it can also
1532 * be used by arch-specific code either to override the user or more
1533 * commonly to provide a default console (ie from PROM variables) when
1534 * the user has not supplied one.
1535 */
fb445ee5 1536int add_preferred_console(char *name, int idx, char *options)
3c0547ba 1537{
f7511d5f 1538 return __add_preferred_console(name, idx, options, NULL);
3c0547ba
MM
1539}
1540
b6b1d877 1541int update_console_cmdline(char *name, int idx, char *name_new, int idx_new, char *options)
18a8bd94
YL
1542{
1543 struct console_cmdline *c;
1544 int i;
1545
1546 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
1547 if (strcmp(console_cmdline[i].name, name) == 0 &&
1548 console_cmdline[i].index == idx) {
1549 c = &console_cmdline[i];
f735295b 1550 strlcpy(c->name, name_new, sizeof(c->name));
18a8bd94
YL
1551 c->name[sizeof(c->name) - 1] = 0;
1552 c->options = options;
1553 c->index = idx_new;
1554 return i;
1555 }
1556 /* not found */
1557 return -1;
1558}
1559
2329abfa 1560bool console_suspend_enabled = 1;
8f4ce8c3
AS
1561EXPORT_SYMBOL(console_suspend_enabled);
1562
1563static int __init console_suspend_disable(char *str)
1564{
1565 console_suspend_enabled = 0;
1566 return 1;
1567}
1568__setup("no_console_suspend", console_suspend_disable);
134620f7
YZ
1569module_param_named(console_suspend, console_suspend_enabled,
1570 bool, S_IRUGO | S_IWUSR);
1571MODULE_PARM_DESC(console_suspend, "suspend console during suspend"
1572 " and hibernate operations");
8f4ce8c3 1573
557240b4
LT
1574/**
1575 * suspend_console - suspend the console subsystem
1576 *
1577 * This disables printk() while we go into suspend states
1578 */
1579void suspend_console(void)
1580{
8f4ce8c3
AS
1581 if (!console_suspend_enabled)
1582 return;
0d63081d 1583 printk("Suspending console(s) (use no_console_suspend to debug)\n");
ac751efa 1584 console_lock();
557240b4 1585 console_suspended = 1;
403f3075 1586 up(&console_sem);
557240b4
LT
1587}
1588
1589void resume_console(void)
1590{
8f4ce8c3
AS
1591 if (!console_suspend_enabled)
1592 return;
403f3075 1593 down(&console_sem);
557240b4 1594 console_suspended = 0;
ac751efa 1595 console_unlock();
557240b4
LT
1596}
1597
034260d6
KC
1598/**
1599 * console_cpu_notify - print deferred console messages after CPU hotplug
1600 * @self: notifier struct
1601 * @action: CPU hotplug event
1602 * @hcpu: unused
1603 *
1604 * If printk() is called from a CPU that is not online yet, the messages
1605 * will be spooled but will not show up on the console. This function is
1606 * called when a new CPU comes online (or fails to come up), and ensures
1607 * that any such output gets printed.
1608 */
1609static int __cpuinit console_cpu_notify(struct notifier_block *self,
1610 unsigned long action, void *hcpu)
1611{
1612 switch (action) {
1613 case CPU_ONLINE:
1614 case CPU_DEAD:
1615 case CPU_DYING:
1616 case CPU_DOWN_FAILED:
1617 case CPU_UP_CANCELED:
ac751efa
TH
1618 console_lock();
1619 console_unlock();
034260d6
KC
1620 }
1621 return NOTIFY_OK;
1622}
1623
1da177e4 1624/**
ac751efa 1625 * console_lock - lock the console system for exclusive use.
1da177e4 1626 *
ac751efa 1627 * Acquires a lock which guarantees that the caller has
1da177e4
LT
1628 * exclusive access to the console system and the console_drivers list.
1629 *
1630 * Can sleep, returns nothing.
1631 */
ac751efa 1632void console_lock(void)
1da177e4 1633{
8abd8e29 1634 BUG_ON(in_interrupt());
1da177e4 1635 down(&console_sem);
403f3075
AH
1636 if (console_suspended)
1637 return;
1da177e4
LT
1638 console_locked = 1;
1639 console_may_schedule = 1;
1640}
ac751efa 1641EXPORT_SYMBOL(console_lock);
1da177e4 1642
ac751efa
TH
1643/**
1644 * console_trylock - try to lock the console system for exclusive use.
1645 *
1646 * Tried to acquire a lock which guarantees that the caller has
1647 * exclusive access to the console system and the console_drivers list.
1648 *
1649 * returns 1 on success, and 0 on failure to acquire the lock.
1650 */
1651int console_trylock(void)
1da177e4
LT
1652{
1653 if (down_trylock(&console_sem))
ac751efa 1654 return 0;
403f3075
AH
1655 if (console_suspended) {
1656 up(&console_sem);
ac751efa 1657 return 0;
403f3075 1658 }
1da177e4
LT
1659 console_locked = 1;
1660 console_may_schedule = 0;
ac751efa 1661 return 1;
1da177e4 1662}
ac751efa 1663EXPORT_SYMBOL(console_trylock);
1da177e4
LT
1664
1665int is_console_locked(void)
1666{
1667 return console_locked;
1668}
1da177e4 1669
3ccf3e83 1670/*
7ff9554b 1671 * Delayed printk version, for scheduler-internal messages:
3ccf3e83
PZ
1672 */
1673#define PRINTK_BUF_SIZE 512
1674
1675#define PRINTK_PENDING_WAKEUP 0x01
1676#define PRINTK_PENDING_SCHED 0x02
1677
b845b517 1678static DEFINE_PER_CPU(int, printk_pending);
3ccf3e83 1679static DEFINE_PER_CPU(char [PRINTK_BUF_SIZE], printk_sched_buf);
b845b517
PZ
1680
1681void printk_tick(void)
e3e8a75d 1682{
40dc11ff 1683 if (__this_cpu_read(printk_pending)) {
3ccf3e83
PZ
1684 int pending = __this_cpu_xchg(printk_pending, 0);
1685 if (pending & PRINTK_PENDING_SCHED) {
1686 char *buf = __get_cpu_var(printk_sched_buf);
1687 printk(KERN_WARNING "[sched_delayed] %s", buf);
1688 }
1689 if (pending & PRINTK_PENDING_WAKEUP)
1690 wake_up_interruptible(&log_wait);
b845b517
PZ
1691 }
1692}
1693
1694int printk_needs_cpu(int cpu)
1695{
40dc11ff 1696 if (cpu_is_offline(cpu))
61ab2544 1697 printk_tick();
40dc11ff 1698 return __this_cpu_read(printk_pending);
b845b517
PZ
1699}
1700
1701void wake_up_klogd(void)
1702{
1703 if (waitqueue_active(&log_wait))
3ccf3e83 1704 this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP);
e3e8a75d
KK
1705}
1706
7ff9554b
KS
1707/* the next printk record to write to the console */
1708static u64 console_seq;
1709static u32 console_idx;
1710
1da177e4 1711/**
ac751efa 1712 * console_unlock - unlock the console system
1da177e4 1713 *
ac751efa 1714 * Releases the console_lock which the caller holds on the console system
1da177e4
LT
1715 * and the console driver list.
1716 *
ac751efa
TH
1717 * While the console_lock was held, console output may have been buffered
1718 * by printk(). If this is the case, console_unlock(); emits
1719 * the output prior to releasing the lock.
1da177e4 1720 *
7f3a781d 1721 * If there is output waiting, we wake /dev/kmsg and syslog() users.
1da177e4 1722 *
ac751efa 1723 * console_unlock(); may be called from any context.
1da177e4 1724 */
ac751efa 1725void console_unlock(void)
1da177e4 1726{
7ff9554b 1727 static u64 seen_seq;
1da177e4 1728 unsigned long flags;
7ff9554b
KS
1729 bool wake_klogd = false;
1730 bool retry;
1da177e4 1731
557240b4 1732 if (console_suspended) {
403f3075 1733 up(&console_sem);
557240b4
LT
1734 return;
1735 }
78944e54
AD
1736
1737 console_may_schedule = 0;
1738
4f2a8d3c 1739again:
7ff9554b
KS
1740 for (;;) {
1741 struct log *msg;
1742 static char text[LOG_LINE_MAX];
1743 size_t len;
1744 int level;
1745
07354eb1 1746 raw_spin_lock_irqsave(&logbuf_lock, flags);
7ff9554b
KS
1747 if (seen_seq != log_next_seq) {
1748 wake_klogd = true;
1749 seen_seq = log_next_seq;
1750 }
1751
1752 if (console_seq < log_first_seq) {
1753 /* messages are gone, move to first one */
1754 console_seq = log_first_seq;
1755 console_idx = log_first_idx;
1756 }
1757
1758 if (console_seq == log_next_seq)
1759 break;
1760
1761 msg = log_from_idx(console_idx);
1762 level = msg->level & 7;
1763 len = msg->text_len;
1764 if (len+1 >= sizeof(text))
1765 len = sizeof(text)-1;
1766 memcpy(text, log_text(msg), len);
1767 text[len++] = '\n';
1768
1769 console_idx = log_next(console_idx);
1770 console_seq++;
07354eb1 1771 raw_spin_unlock(&logbuf_lock);
7ff9554b 1772
81d68a96 1773 stop_critical_timings(); /* don't trace print latency */
7ff9554b 1774 call_console_drivers(level, text, len);
81d68a96 1775 start_critical_timings();
1da177e4
LT
1776 local_irq_restore(flags);
1777 }
1778 console_locked = 0;
fe3d8ad3
FT
1779
1780 /* Release the exclusive_console once it is used */
1781 if (unlikely(exclusive_console))
1782 exclusive_console = NULL;
1783
07354eb1 1784 raw_spin_unlock(&logbuf_lock);
4f2a8d3c 1785
0b5e1c52 1786 up(&console_sem);
4f2a8d3c
PZ
1787
1788 /*
1789 * Someone could have filled up the buffer again, so re-check if there's
1790 * something to flush. In case we cannot trylock the console_sem again,
1791 * there's a new owner and the console_unlock() from them will do the
1792 * flush, no worries.
1793 */
07354eb1 1794 raw_spin_lock(&logbuf_lock);
7ff9554b 1795 retry = console_seq != log_next_seq;
09dc3cf9
PZ
1796 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
1797
4f2a8d3c
PZ
1798 if (retry && console_trylock())
1799 goto again;
1800
e3e8a75d
KK
1801 if (wake_klogd)
1802 wake_up_klogd();
1da177e4 1803}
ac751efa 1804EXPORT_SYMBOL(console_unlock);
1da177e4 1805
ddad86c2
MW
1806/**
1807 * console_conditional_schedule - yield the CPU if required
1da177e4
LT
1808 *
1809 * If the console code is currently allowed to sleep, and
1810 * if this CPU should yield the CPU to another task, do
1811 * so here.
1812 *
ac751efa 1813 * Must be called within console_lock();.
1da177e4
LT
1814 */
1815void __sched console_conditional_schedule(void)
1816{
1817 if (console_may_schedule)
1818 cond_resched();
1819}
1820EXPORT_SYMBOL(console_conditional_schedule);
1821
1da177e4
LT
1822void console_unblank(void)
1823{
1824 struct console *c;
1825
1826 /*
1827 * console_unblank can no longer be called in interrupt context unless
1828 * oops_in_progress is set to 1..
1829 */
1830 if (oops_in_progress) {
1831 if (down_trylock(&console_sem) != 0)
1832 return;
1833 } else
ac751efa 1834 console_lock();
1da177e4
LT
1835
1836 console_locked = 1;
1837 console_may_schedule = 0;
4d091611 1838 for_each_console(c)
1da177e4
LT
1839 if ((c->flags & CON_ENABLED) && c->unblank)
1840 c->unblank();
ac751efa 1841 console_unlock();
1da177e4 1842}
1da177e4
LT
1843
1844/*
1845 * Return the console tty driver structure and its associated index
1846 */
1847struct tty_driver *console_device(int *index)
1848{
1849 struct console *c;
1850 struct tty_driver *driver = NULL;
1851
ac751efa 1852 console_lock();
4d091611 1853 for_each_console(c) {
1da177e4
LT
1854 if (!c->device)
1855 continue;
1856 driver = c->device(c, index);
1857 if (driver)
1858 break;
1859 }
ac751efa 1860 console_unlock();
1da177e4
LT
1861 return driver;
1862}
1863
1864/*
1865 * Prevent further output on the passed console device so that (for example)
1866 * serial drivers can disable console output before suspending a port, and can
1867 * re-enable output afterwards.
1868 */
1869void console_stop(struct console *console)
1870{
ac751efa 1871 console_lock();
1da177e4 1872 console->flags &= ~CON_ENABLED;
ac751efa 1873 console_unlock();
1da177e4
LT
1874}
1875EXPORT_SYMBOL(console_stop);
1876
1877void console_start(struct console *console)
1878{
ac751efa 1879 console_lock();
1da177e4 1880 console->flags |= CON_ENABLED;
ac751efa 1881 console_unlock();
1da177e4
LT
1882}
1883EXPORT_SYMBOL(console_start);
1884
7bf69395
FDN
1885static int __read_mostly keep_bootcon;
1886
1887static int __init keep_bootcon_setup(char *str)
1888{
1889 keep_bootcon = 1;
1890 printk(KERN_INFO "debug: skip boot console de-registration.\n");
1891
1892 return 0;
1893}
1894
1895early_param("keep_bootcon", keep_bootcon_setup);
1896
1da177e4
LT
1897/*
1898 * The console driver calls this routine during kernel initialization
1899 * to register the console printing procedure with printk() and to
1900 * print any messages that were printed by the kernel before the
1901 * console driver was initialized.
4d091611
RG
1902 *
1903 * This can happen pretty early during the boot process (because of
1904 * early_printk) - sometimes before setup_arch() completes - be careful
1905 * of what kernel features are used - they may not be initialised yet.
1906 *
1907 * There are two types of consoles - bootconsoles (early_printk) and
1908 * "real" consoles (everything which is not a bootconsole) which are
1909 * handled differently.
1910 * - Any number of bootconsoles can be registered at any time.
1911 * - As soon as a "real" console is registered, all bootconsoles
1912 * will be unregistered automatically.
1913 * - Once a "real" console is registered, any attempt to register a
1914 * bootconsoles will be rejected
1da177e4 1915 */
4d091611 1916void register_console(struct console *newcon)
1da177e4 1917{
40dc5651 1918 int i;
1da177e4 1919 unsigned long flags;
4d091611 1920 struct console *bcon = NULL;
1da177e4 1921
4d091611
RG
1922 /*
1923 * before we register a new CON_BOOT console, make sure we don't
1924 * already have a valid console
1925 */
1926 if (console_drivers && newcon->flags & CON_BOOT) {
1927 /* find the last or real console */
1928 for_each_console(bcon) {
1929 if (!(bcon->flags & CON_BOOT)) {
1930 printk(KERN_INFO "Too late to register bootconsole %s%d\n",
1931 newcon->name, newcon->index);
1932 return;
1933 }
1934 }
69331af7
GH
1935 }
1936
4d091611
RG
1937 if (console_drivers && console_drivers->flags & CON_BOOT)
1938 bcon = console_drivers;
1939
1940 if (preferred_console < 0 || bcon || !console_drivers)
1da177e4
LT
1941 preferred_console = selected_console;
1942
4d091611
RG
1943 if (newcon->early_setup)
1944 newcon->early_setup();
18a8bd94 1945
1da177e4
LT
1946 /*
1947 * See if we want to use this console driver. If we
1948 * didn't select a console we take the first one
1949 * that registers here.
1950 */
1951 if (preferred_console < 0) {
4d091611
RG
1952 if (newcon->index < 0)
1953 newcon->index = 0;
1954 if (newcon->setup == NULL ||
1955 newcon->setup(newcon, NULL) == 0) {
1956 newcon->flags |= CON_ENABLED;
1957 if (newcon->device) {
1958 newcon->flags |= CON_CONSDEV;
cd3a1b85
JK
1959 preferred_console = 0;
1960 }
1da177e4
LT
1961 }
1962 }
1963
1964 /*
1965 * See if this console matches one we selected on
1966 * the command line.
1967 */
40dc5651
JJ
1968 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0];
1969 i++) {
4d091611 1970 if (strcmp(console_cmdline[i].name, newcon->name) != 0)
1da177e4 1971 continue;
4d091611
RG
1972 if (newcon->index >= 0 &&
1973 newcon->index != console_cmdline[i].index)
1da177e4 1974 continue;
4d091611
RG
1975 if (newcon->index < 0)
1976 newcon->index = console_cmdline[i].index;
f7511d5f
ST
1977#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1978 if (console_cmdline[i].brl_options) {
4d091611
RG
1979 newcon->flags |= CON_BRL;
1980 braille_register_console(newcon,
f7511d5f
ST
1981 console_cmdline[i].index,
1982 console_cmdline[i].options,
1983 console_cmdline[i].brl_options);
1984 return;
1985 }
1986#endif
4d091611
RG
1987 if (newcon->setup &&
1988 newcon->setup(newcon, console_cmdline[i].options) != 0)
1da177e4 1989 break;
4d091611
RG
1990 newcon->flags |= CON_ENABLED;
1991 newcon->index = console_cmdline[i].index;
ab4af03a 1992 if (i == selected_console) {
4d091611 1993 newcon->flags |= CON_CONSDEV;
ab4af03a
GE
1994 preferred_console = selected_console;
1995 }
1da177e4
LT
1996 break;
1997 }
1998
4d091611 1999 if (!(newcon->flags & CON_ENABLED))
1da177e4
LT
2000 return;
2001
8259cf43
RG
2002 /*
2003 * If we have a bootconsole, and are switching to a real console,
2004 * don't print everything out again, since when the boot console, and
2005 * the real console are the same physical device, it's annoying to
2006 * see the beginning boot messages twice
2007 */
2008 if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
4d091611 2009 newcon->flags &= ~CON_PRINTBUFFER;
1da177e4
LT
2010
2011 /*
2012 * Put this console in the list - keep the
2013 * preferred driver at the head of the list.
2014 */
ac751efa 2015 console_lock();
4d091611
RG
2016 if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) {
2017 newcon->next = console_drivers;
2018 console_drivers = newcon;
2019 if (newcon->next)
2020 newcon->next->flags &= ~CON_CONSDEV;
1da177e4 2021 } else {
4d091611
RG
2022 newcon->next = console_drivers->next;
2023 console_drivers->next = newcon;
1da177e4 2024 }
4d091611 2025 if (newcon->flags & CON_PRINTBUFFER) {
1da177e4 2026 /*
ac751efa 2027 * console_unlock(); will print out the buffered messages
1da177e4
LT
2028 * for us.
2029 */
07354eb1 2030 raw_spin_lock_irqsave(&logbuf_lock, flags);
7ff9554b
KS
2031 console_seq = syslog_seq;
2032 console_idx = syslog_idx;
07354eb1 2033 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
fe3d8ad3
FT
2034 /*
2035 * We're about to replay the log buffer. Only do this to the
2036 * just-registered console to avoid excessive message spam to
2037 * the already-registered consoles.
2038 */
2039 exclusive_console = newcon;
1da177e4 2040 }
ac751efa 2041 console_unlock();
fbc92a34 2042 console_sysfs_notify();
8259cf43
RG
2043
2044 /*
2045 * By unregistering the bootconsoles after we enable the real console
2046 * we get the "console xxx enabled" message on all the consoles -
2047 * boot consoles, real consoles, etc - this is to ensure that end
2048 * users know there might be something in the kernel's log buffer that
2049 * went to the bootconsole (that they do not see on the real console)
2050 */
7bf69395
FDN
2051 if (bcon &&
2052 ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) &&
2053 !keep_bootcon) {
8259cf43
RG
2054 /* we need to iterate through twice, to make sure we print
2055 * everything out, before we unregister the console(s)
2056 */
2057 printk(KERN_INFO "console [%s%d] enabled, bootconsole disabled\n",
2058 newcon->name, newcon->index);
2059 for_each_console(bcon)
2060 if (bcon->flags & CON_BOOT)
2061 unregister_console(bcon);
2062 } else {
2063 printk(KERN_INFO "%sconsole [%s%d] enabled\n",
2064 (newcon->flags & CON_BOOT) ? "boot" : "" ,
2065 newcon->name, newcon->index);
2066 }
1da177e4
LT
2067}
2068EXPORT_SYMBOL(register_console);
2069
40dc5651 2070int unregister_console(struct console *console)
1da177e4 2071{
40dc5651 2072 struct console *a, *b;
1da177e4
LT
2073 int res = 1;
2074
f7511d5f
ST
2075#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
2076 if (console->flags & CON_BRL)
2077 return braille_unregister_console(console);
2078#endif
2079
ac751efa 2080 console_lock();
1da177e4
LT
2081 if (console_drivers == console) {
2082 console_drivers=console->next;
2083 res = 0;
e9b15b54 2084 } else if (console_drivers) {
1da177e4
LT
2085 for (a=console_drivers->next, b=console_drivers ;
2086 a; b=a, a=b->next) {
2087 if (a == console) {
2088 b->next = a->next;
2089 res = 0;
2090 break;
40dc5651 2091 }
1da177e4
LT
2092 }
2093 }
40dc5651 2094
69331af7 2095 /*
ab4af03a
GE
2096 * If this isn't the last console and it has CON_CONSDEV set, we
2097 * need to set it on the next preferred console.
1da177e4 2098 */
69331af7 2099 if (console_drivers != NULL && console->flags & CON_CONSDEV)
ab4af03a 2100 console_drivers->flags |= CON_CONSDEV;
1da177e4 2101
ac751efa 2102 console_unlock();
fbc92a34 2103 console_sysfs_notify();
1da177e4
LT
2104 return res;
2105}
2106EXPORT_SYMBOL(unregister_console);
d59745ce 2107
034260d6 2108static int __init printk_late_init(void)
0c5564bd 2109{
4d091611
RG
2110 struct console *con;
2111
2112 for_each_console(con) {
4c30c6f5 2113 if (!keep_bootcon && con->flags & CON_BOOT) {
cb00e99c 2114 printk(KERN_INFO "turn off boot console %s%d\n",
4d091611 2115 con->name, con->index);
42c2c8c8 2116 unregister_console(con);
cb00e99c 2117 }
0c5564bd 2118 }
034260d6 2119 hotcpu_notifier(console_cpu_notify, 0);
0c5564bd
RG
2120 return 0;
2121}
034260d6 2122late_initcall(printk_late_init);
0c5564bd 2123
7ef3d2fd 2124#if defined CONFIG_PRINTK
717115e1 2125
600e1458
PZ
2126int printk_sched(const char *fmt, ...)
2127{
2128 unsigned long flags;
2129 va_list args;
2130 char *buf;
2131 int r;
2132
2133 local_irq_save(flags);
2134 buf = __get_cpu_var(printk_sched_buf);
2135
2136 va_start(args, fmt);
2137 r = vsnprintf(buf, PRINTK_BUF_SIZE, fmt, args);
2138 va_end(args);
2139
2140 __this_cpu_or(printk_pending, PRINTK_PENDING_SCHED);
2141 local_irq_restore(flags);
2142
2143 return r;
2144}
2145
1da177e4
LT
2146/*
2147 * printk rate limiting, lifted from the networking subsystem.
2148 *
641de9d8
UKK
2149 * This enforces a rate limit: not more than 10 kernel messages
2150 * every 5s to make a denial-of-service attack impossible.
1da177e4 2151 */
641de9d8
UKK
2152DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10);
2153
5c828713 2154int __printk_ratelimit(const char *func)
1da177e4 2155{
5c828713 2156 return ___ratelimit(&printk_ratelimit_state, func);
1da177e4 2157}
5c828713 2158EXPORT_SYMBOL(__printk_ratelimit);
f46c4833
AM
2159
2160/**
2161 * printk_timed_ratelimit - caller-controlled printk ratelimiting
2162 * @caller_jiffies: pointer to caller's state
2163 * @interval_msecs: minimum interval between prints
2164 *
2165 * printk_timed_ratelimit() returns true if more than @interval_msecs
2166 * milliseconds have elapsed since the last time printk_timed_ratelimit()
2167 * returned true.
2168 */
2169bool printk_timed_ratelimit(unsigned long *caller_jiffies,
2170 unsigned int interval_msecs)
2171{
f2d28a2e
GK
2172 if (*caller_jiffies == 0
2173 || !time_in_range(jiffies, *caller_jiffies,
2174 *caller_jiffies
2175 + msecs_to_jiffies(interval_msecs))) {
2176 *caller_jiffies = jiffies;
f46c4833
AM
2177 return true;
2178 }
2179 return false;
2180}
2181EXPORT_SYMBOL(printk_timed_ratelimit);
456b565c
SK
2182
2183static DEFINE_SPINLOCK(dump_list_lock);
2184static LIST_HEAD(dump_list);
2185
2186/**
2187 * kmsg_dump_register - register a kernel log dumper.
6485536b 2188 * @dumper: pointer to the kmsg_dumper structure
456b565c
SK
2189 *
2190 * Adds a kernel log dumper to the system. The dump callback in the
2191 * structure will be called when the kernel oopses or panics and must be
2192 * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise.
2193 */
2194int kmsg_dump_register(struct kmsg_dumper *dumper)
2195{
2196 unsigned long flags;
2197 int err = -EBUSY;
2198
2199 /* The dump callback needs to be set */
2200 if (!dumper->dump)
2201 return -EINVAL;
2202
2203 spin_lock_irqsave(&dump_list_lock, flags);
2204 /* Don't allow registering multiple times */
2205 if (!dumper->registered) {
2206 dumper->registered = 1;
fb842b00 2207 list_add_tail_rcu(&dumper->list, &dump_list);
456b565c
SK
2208 err = 0;
2209 }
2210 spin_unlock_irqrestore(&dump_list_lock, flags);
2211
2212 return err;
2213}
2214EXPORT_SYMBOL_GPL(kmsg_dump_register);
2215
2216/**
2217 * kmsg_dump_unregister - unregister a kmsg dumper.
6485536b 2218 * @dumper: pointer to the kmsg_dumper structure
456b565c
SK
2219 *
2220 * Removes a dump device from the system. Returns zero on success and
2221 * %-EINVAL otherwise.
2222 */
2223int kmsg_dump_unregister(struct kmsg_dumper *dumper)
2224{
2225 unsigned long flags;
2226 int err = -EINVAL;
2227
2228 spin_lock_irqsave(&dump_list_lock, flags);
2229 if (dumper->registered) {
2230 dumper->registered = 0;
fb842b00 2231 list_del_rcu(&dumper->list);
456b565c
SK
2232 err = 0;
2233 }
2234 spin_unlock_irqrestore(&dump_list_lock, flags);
fb842b00 2235 synchronize_rcu();
456b565c
SK
2236
2237 return err;
2238}
2239EXPORT_SYMBOL_GPL(kmsg_dump_unregister);
2240
7ff9554b
KS
2241static bool always_kmsg_dump;
2242module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR);
2243
456b565c
SK
2244/**
2245 * kmsg_dump - dump kernel log to kernel message dumpers.
2246 * @reason: the reason (oops, panic etc) for dumping
2247 *
2248 * Iterate through each of the dump devices and call the oops/panic
2249 * callbacks with the log buffer.
2250 */
2251void kmsg_dump(enum kmsg_dump_reason reason)
2252{
7ff9554b 2253 u64 idx;
456b565c
SK
2254 struct kmsg_dumper *dumper;
2255 const char *s1, *s2;
2256 unsigned long l1, l2;
2257 unsigned long flags;
2258
c22ab332
MG
2259 if ((reason > KMSG_DUMP_OOPS) && !always_kmsg_dump)
2260 return;
2261
456b565c
SK
2262 /* Theoretically, the log could move on after we do this, but
2263 there's not a lot we can do about that. The new messages
2264 will overwrite the start of what we dump. */
7ff9554b 2265
07354eb1 2266 raw_spin_lock_irqsave(&logbuf_lock, flags);
7ff9554b
KS
2267 if (syslog_seq < log_first_seq)
2268 idx = syslog_idx;
2269 else
2270 idx = log_first_idx;
456b565c 2271
7ff9554b
KS
2272 if (idx > log_next_idx) {
2273 s1 = log_buf;
2274 l1 = log_next_idx;
456b565c 2275
7ff9554b
KS
2276 s2 = log_buf + idx;
2277 l2 = log_buf_len - idx;
456b565c
SK
2278 } else {
2279 s1 = "";
2280 l1 = 0;
2281
7ff9554b
KS
2282 s2 = log_buf + idx;
2283 l2 = log_next_idx - idx;
456b565c 2284 }
7ff9554b 2285 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
456b565c 2286
fb842b00
HY
2287 rcu_read_lock();
2288 list_for_each_entry_rcu(dumper, &dump_list, list)
456b565c 2289 dumper->dump(dumper, reason, s1, l1, s2, l2);
fb842b00 2290 rcu_read_unlock();
456b565c 2291}
7ef3d2fd 2292#endif