blob: 1ccc6d986cb391e0d0be4aced844231004460ff1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/printk.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
6 * Modified to make sys_syslog() more flexible: added commands to
7 * return the last 4k of kernel messages, regardless of whether
8 * they've been read or not. Added option to suppress kernel printk's
9 * to the console. Added hook for sending the console messages
10 * elsewhere, in preparation for a serial line console (someday).
11 * Ted Ts'o, 2/11/93.
12 * Modified for sysctl support, 1/8/97, Chris Horn.
Jesper Juhl40dc5652005-10-30 15:02:46 -080013 * Fixed SMP synchronization, 08/08/99, Manfred Spraul
Christian Kujau624dffc2006-01-15 02:43:54 +010014 * manfred@colorfullife.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Rewrote bits to get rid of console_lock
Francois Camie1f8e872008-10-15 22:01:59 -070016 * 01Mar01 Andrew Morton
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
19#include <linux/kernel.h>
20#include <linux/mm.h>
21#include <linux/tty.h>
22#include <linux/tty_driver.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/console.h>
24#include <linux/init.h>
Randy Dunlapbfe8df32007-10-16 01:23:46 -070025#include <linux/jiffies.h>
26#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/module.h>
Jan Engelhardt3b9c0412006-06-25 05:48:15 -070028#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/interrupt.h> /* For in_interrupt() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/delay.h>
31#include <linux/smp.h>
32#include <linux/security.h>
33#include <linux/bootmem.h>
Mike Travis162a7e72011-05-24 17:13:20 -070034#include <linux/memblock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/syscalls.h>
Neil Horman04d491a2009-04-02 16:58:57 -070036#include <linux/kexec.h>
Jason Wesseld37d39a2010-05-20 21:04:27 -050037#include <linux/kdb.h>
Ingo Molnar3fff4c42009-09-22 16:18:09 +020038#include <linux/ratelimit.h>
Simon Kagstrom456b5652009-10-16 14:09:18 +020039#include <linux/kmsg_dump.h>
Kees Cook00234592010-02-03 15:36:43 -080040#include <linux/syslog.h>
Kevin Cernekee034260d2010-06-03 22:11:25 -070041#include <linux/cpu.h>
42#include <linux/notifier.h>
Huang Yingfb842b02011-01-12 16:59:43 -080043#include <linux/rculist.h>
Kay Sieverse11fea92012-05-03 02:29:41 +020044#include <linux/poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <asm/uaccess.h>
47
Johannes Berg95100352011-11-24 20:03:08 +010048#define CREATE_TRACE_POINTS
49#include <trace/events/printk.h>
50
Ingo Molnar076f9772008-01-30 13:33:06 +010051/*
52 * Architectures can override it:
53 */
Jiri Slabye17ba732008-05-12 15:44:40 +020054void asmlinkage __attribute__((weak)) early_printk(const char *fmt, ...)
Ingo Molnar076f9772008-01-30 13:33:06 +010055{
56}
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/* printk's without a loglevel use this.. */
Mandeep Singh Baines5af5bcb2011-03-22 16:34:23 -070059#define DEFAULT_MESSAGE_LOGLEVEL CONFIG_DEFAULT_MESSAGE_LOGLEVEL
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/* We show everything that is MORE important than this.. */
62#define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */
63#define DEFAULT_CONSOLE_LOGLEVEL 7 /* anything MORE serious than KERN_DEBUG */
64
65DECLARE_WAIT_QUEUE_HEAD(log_wait);
66
67int console_printk[4] = {
68 DEFAULT_CONSOLE_LOGLEVEL, /* console_loglevel */
69 DEFAULT_MESSAGE_LOGLEVEL, /* default_message_loglevel */
70 MINIMUM_CONSOLE_LOGLEVEL, /* minimum_console_loglevel */
71 DEFAULT_CONSOLE_LOGLEVEL, /* default_console_loglevel */
72};
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/*
Patrick Pletscher0bbfb7c2007-02-17 20:10:16 +010075 * Low level drivers may need that to know if they can schedule in
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 * their unblank() callback or not. So let's export it.
77 */
78int oops_in_progress;
79EXPORT_SYMBOL(oops_in_progress);
80
81/*
82 * console_sem protects the console_drivers list, and also
83 * provides serialisation for access to the entire console
84 * driver system.
85 */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +000086static DEFINE_SEMAPHORE(console_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087struct console *console_drivers;
Ingo Molnara29d1cf2008-06-02 13:19:08 +020088EXPORT_SYMBOL_GPL(console_drivers);
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090/*
91 * This is used for debugging the mess that is the VT code by
92 * keeping track if we have the console semaphore held. It's
93 * definitely not the perfect debug tool (we don't know if _WE_
94 * hold it are racing, but it helps tracking those weird code
95 * path in the console code where we end up in places I want
96 * locked without the console sempahore held
97 */
Linus Torvalds557240b2006-06-19 18:16:01 -070098static int console_locked, console_suspended;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100/*
Feng Tangfe3d8ad2011-03-22 16:34:21 -0700101 * If exclusive_console is non-NULL then only this console is to be printed to.
102 */
103static struct console *exclusive_console;
104
105/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * Array of consoles built from command line options (console=)
107 */
108struct console_cmdline
109{
110 char name[8]; /* Name of the driver */
111 int index; /* Minor dev. to use */
112 char *options; /* Options for the driver */
Samuel Thibaultf7511d52008-04-30 00:54:51 -0700113#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
114 char *brl_options; /* Options for braille driver */
115#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
118#define MAX_CMDLINECONSOLES 8
119
120static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
121static int selected_console = -1;
122static int preferred_console = -1;
Markus Armbruster9e124fe2008-05-26 23:31:07 +0100123int console_set_on_cmdline;
124EXPORT_SYMBOL(console_set_on_cmdline);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126/* Flag: console code may call schedule() */
127static int console_may_schedule;
128
Matt Mackalld59745c2005-05-01 08:59:02 -0700129#ifdef CONFIG_PRINTK
Kay Sievers7ff95542012-05-03 02:29:13 +0200130/*
131 * The printk log buffer consists of a chain of concatenated variable
132 * length records. Every record starts with a record header, containing
133 * the overall length of the record.
134 *
135 * The heads to the first and last entry in the buffer, as well as the
136 * sequence numbers of these both entries are maintained when messages
137 * are stored..
138 *
139 * If the heads indicate available messages, the length in the header
140 * tells the start next message. A length == 0 for the next message
141 * indicates a wrap-around to the beginning of the buffer.
142 *
143 * Every record carries the monotonic timestamp in microseconds, as well as
144 * the standard userspace syslog level and syslog facility. The usual
145 * kernel messages use LOG_KERN; userspace-injected messages always carry
146 * a matching syslog facility, by default LOG_USER. The origin of every
147 * message can be reliably determined that way.
148 *
149 * The human readable log message directly follows the message header. The
150 * length of the message text is stored in the header, the stored message
151 * is not terminated.
152 *
Kay Sieverse11fea92012-05-03 02:29:41 +0200153 * Optionally, a message can carry a dictionary of properties (key/value pairs),
154 * to provide userspace with a machine-readable message context.
155 *
156 * Examples for well-defined, commonly used property names are:
157 * DEVICE=b12:8 device identifier
158 * b12:8 block dev_t
159 * c127:3 char dev_t
160 * n8 netdev ifindex
161 * +sound:card0 subsystem:devname
162 * SUBSYSTEM=pci driver-core subsystem name
163 *
164 * Valid characters in property names are [a-zA-Z0-9.-_]. The plain text value
165 * follows directly after a '=' character. Every property is terminated by
166 * a '\0' character. The last property is not terminated.
167 *
168 * Example of a message structure:
169 * 0000 ff 8f 00 00 00 00 00 00 monotonic time in nsec
170 * 0008 34 00 record is 52 bytes long
171 * 000a 0b 00 text is 11 bytes long
172 * 000c 1f 00 dictionary is 23 bytes long
173 * 000e 03 00 LOG_KERN (facility) LOG_ERR (level)
174 * 0010 69 74 27 73 20 61 20 6c "it's a l"
175 * 69 6e 65 "ine"
176 * 001b 44 45 56 49 43 "DEVIC"
177 * 45 3d 62 38 3a 32 00 44 "E=b8:2\0D"
178 * 52 49 56 45 52 3d 62 75 "RIVER=bu"
179 * 67 "g"
180 * 0032 00 00 00 padding to next message header
181 *
182 * The 'struct log' buffer header must never be directly exported to
183 * userspace, it is a kernel-private implementation detail that might
184 * need to be changed in the future, when the requirements change.
185 *
186 * /dev/kmsg exports the structured data in the following line format:
187 * "level,sequnum,timestamp;<message text>\n"
188 *
189 * The optional key/value pairs are attached as continuation lines starting
190 * with a space character and terminated by a newline. All possible
191 * non-prinatable characters are escaped in the "\xff" notation.
192 *
193 * Users of the export format should ignore possible additional values
194 * separated by ',', and find the message after the ';' character.
Kay Sievers7ff95542012-05-03 02:29:13 +0200195 */
Matt Mackalld59745c2005-05-01 08:59:02 -0700196
Kay Sievers7ff95542012-05-03 02:29:13 +0200197struct log {
198 u64 ts_nsec; /* timestamp in nanoseconds */
199 u16 len; /* length of entire record */
200 u16 text_len; /* length of text buffer */
201 u16 dict_len; /* length of dictionary buffer */
202 u16 level; /* syslog level + facility */
203};
204
205/*
206 * The logbuf_lock protects kmsg buffer, indices, counters. It is also
207 * used in interesting ways to provide interlocking in console_unlock();
208 */
209static DEFINE_RAW_SPINLOCK(logbuf_lock);
210
211/* cpu currently holding logbuf_lock */
212static volatile unsigned int logbuf_cpu = UINT_MAX;
213
214#define LOG_LINE_MAX 1024
215
216/* record buffer */
217#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
Matt Mackalld59745c2005-05-01 08:59:02 -0700218static char __log_buf[__LOG_BUF_LEN];
219static char *log_buf = __log_buf;
Kay Sievers7ff95542012-05-03 02:29:13 +0200220static u32 log_buf_len = __LOG_BUF_LEN;
221
222/* index and sequence number of the first record stored in the buffer */
223static u64 log_first_seq;
224static u32 log_first_idx;
225
226/* index and sequence number of the next record to store in the buffer */
227static u64 log_next_seq;
228static u32 log_next_idx;
229
230/* the next printk record to read after the last 'clear' command */
231static u64 clear_seq;
232static u32 clear_idx;
233
234/* the next printk record to read by syslog(READ) or /proc/kmsg */
235static u64 syslog_seq;
236static u32 syslog_idx;
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}
Matt Mackalld59745c2005-05-01 08:59:02 -0700342
Kay Sieverse11fea92012-05-03 02:29:41 +0200343/* /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;
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);
444 len = sprintf(user->buf, "%u,%llu,%llu;",
445 msg->level, user->seq, msg->ts_nsec / 1000);
446
447 /* escape non-printable characters */
448 for (i = 0; i < msg->text_len; i++) {
449 char c = log_text(msg)[i];
450
451 if (c < ' ' || c >= 128)
452 len += sprintf(user->buf + len, "\\x%02x", c);
453 else
454 user->buf[len++] = c;
455 }
456 user->buf[len++] = '\n';
457
458 if (msg->dict_len) {
459 bool line = true;
460
461 for (i = 0; i < msg->dict_len; i++) {
462 char c = log_dict(msg)[i];
463
464 if (line) {
465 user->buf[len++] = ' ';
466 line = false;
467 }
468
469 if (c == '\0') {
470 user->buf[len++] = '\n';
471 line = true;
472 continue;
473 }
474
475 if (c < ' ' || c >= 128) {
476 len += sprintf(user->buf + len, "\\x%02x", c);
477 continue;
478 }
479
480 user->buf[len++] = c;
481 }
482 user->buf[len++] = '\n';
483 }
484
485 user->idx = log_next(user->idx);
486 user->seq++;
487 raw_spin_unlock(&logbuf_lock);
488
489 if (len > count) {
490 ret = -EINVAL;
491 goto out;
492 }
493
494 if (copy_to_user(buf, user->buf, len)) {
495 ret = -EFAULT;
496 goto out;
497 }
498 ret = len;
499out:
500 mutex_unlock(&user->lock);
501 return ret;
502}
503
504static loff_t devkmsg_llseek(struct file *file, loff_t offset, int whence)
505{
506 struct devkmsg_user *user = file->private_data;
507 loff_t ret = 0;
508
509 if (!user)
510 return -EBADF;
511 if (offset)
512 return -ESPIPE;
513
514 raw_spin_lock(&logbuf_lock);
515 switch (whence) {
516 case SEEK_SET:
517 /* the first record */
518 user->idx = log_first_idx;
519 user->seq = log_first_seq;
520 break;
521 case SEEK_DATA:
522 /*
523 * The first record after the last SYSLOG_ACTION_CLEAR,
524 * like issued by 'dmesg -c'. Reading /dev/kmsg itself
525 * changes no global state, and does not clear anything.
526 */
527 user->idx = clear_idx;
528 user->seq = clear_seq;
529 break;
530 case SEEK_END:
531 /* after the last record */
532 user->idx = log_next_idx;
533 user->seq = log_next_seq;
534 break;
535 default:
536 ret = -EINVAL;
537 }
538 raw_spin_unlock(&logbuf_lock);
539 return ret;
540}
541
542static unsigned int devkmsg_poll(struct file *file, poll_table *wait)
543{
544 struct devkmsg_user *user = file->private_data;
545 int ret = 0;
546
547 if (!user)
548 return POLLERR|POLLNVAL;
549
550 poll_wait(file, &log_wait, wait);
551
552 raw_spin_lock(&logbuf_lock);
553 if (user->seq < log_next_seq) {
554 /* return error when data has vanished underneath us */
555 if (user->seq < log_first_seq)
556 ret = POLLIN|POLLRDNORM|POLLERR|POLLPRI;
557 ret = POLLIN|POLLRDNORM;
558 }
559 raw_spin_unlock(&logbuf_lock);
560
561 return ret;
562}
563
564static int devkmsg_open(struct inode *inode, struct file *file)
565{
566 struct devkmsg_user *user;
567 int err;
568
569 /* write-only does not need any file context */
570 if ((file->f_flags & O_ACCMODE) == O_WRONLY)
571 return 0;
572
573 err = security_syslog(SYSLOG_ACTION_READ_ALL);
574 if (err)
575 return err;
576
577 user = kmalloc(sizeof(struct devkmsg_user), GFP_KERNEL);
578 if (!user)
579 return -ENOMEM;
580
581 mutex_init(&user->lock);
582
583 raw_spin_lock(&logbuf_lock);
584 user->idx = log_first_idx;
585 user->seq = log_first_seq;
586 raw_spin_unlock(&logbuf_lock);
587
588 file->private_data = user;
589 return 0;
590}
591
592static int devkmsg_release(struct inode *inode, struct file *file)
593{
594 struct devkmsg_user *user = file->private_data;
595
596 if (!user)
597 return 0;
598
599 mutex_destroy(&user->lock);
600 kfree(user);
601 return 0;
602}
603
604const struct file_operations kmsg_fops = {
605 .open = devkmsg_open,
606 .read = devkmsg_read,
607 .aio_write = devkmsg_writev,
608 .llseek = devkmsg_llseek,
609 .poll = devkmsg_poll,
610 .release = devkmsg_release,
611};
612
Neil Horman04d491a2009-04-02 16:58:57 -0700613#ifdef CONFIG_KEXEC
614/*
615 * This appends the listed symbols to /proc/vmcoreinfo
616 *
617 * /proc/vmcoreinfo is used by various utiilties, like crash and makedumpfile to
618 * obtain access to symbols that are otherwise very difficult to locate. These
619 * symbols are specifically used so that utilities can access and extract the
620 * dmesg log from a vmcore file after a crash.
621 */
622void log_buf_kexec_setup(void)
623{
624 VMCOREINFO_SYMBOL(log_buf);
Neil Horman04d491a2009-04-02 16:58:57 -0700625 VMCOREINFO_SYMBOL(log_buf_len);
Kay Sievers7ff95542012-05-03 02:29:13 +0200626 VMCOREINFO_SYMBOL(log_first_idx);
627 VMCOREINFO_SYMBOL(log_next_idx);
Neil Horman04d491a2009-04-02 16:58:57 -0700628}
629#endif
630
Mike Travis162a7e72011-05-24 17:13:20 -0700631/* requested log_buf_len from kernel cmdline */
632static unsigned long __initdata new_log_buf_len;
633
634/* save requested log_buf_len since it's too early to process it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635static int __init log_buf_len_setup(char *str)
636{
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800637 unsigned size = memparse(str, &str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 if (size)
640 size = roundup_pow_of_two(size);
Mike Travis162a7e72011-05-24 17:13:20 -0700641 if (size > log_buf_len)
642 new_log_buf_len = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Mike Travis162a7e72011-05-24 17:13:20 -0700644 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
Mike Travis162a7e72011-05-24 17:13:20 -0700646early_param("log_buf_len", log_buf_len_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Mike Travis162a7e72011-05-24 17:13:20 -0700648void __init setup_log_buf(int early)
649{
650 unsigned long flags;
Mike Travis162a7e72011-05-24 17:13:20 -0700651 char *new_log_buf;
652 int free;
653
654 if (!new_log_buf_len)
655 return;
656
657 if (early) {
658 unsigned long mem;
659
660 mem = memblock_alloc(new_log_buf_len, PAGE_SIZE);
Tejun Heo1f5026a2011-07-12 09:58:09 +0200661 if (!mem)
Mike Travis162a7e72011-05-24 17:13:20 -0700662 return;
663 new_log_buf = __va(mem);
664 } else {
665 new_log_buf = alloc_bootmem_nopanic(new_log_buf_len);
666 }
667
668 if (unlikely(!new_log_buf)) {
669 pr_err("log_buf_len: %ld bytes not available\n",
670 new_log_buf_len);
671 return;
672 }
673
Thomas Gleixner07354eb2009-07-25 17:50:36 +0200674 raw_spin_lock_irqsave(&logbuf_lock, flags);
Mike Travis162a7e72011-05-24 17:13:20 -0700675 log_buf_len = new_log_buf_len;
676 log_buf = new_log_buf;
677 new_log_buf_len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +0200678 free = __LOG_BUF_LEN - log_next_idx;
679 memcpy(log_buf, __log_buf, __LOG_BUF_LEN);
Thomas Gleixner07354eb2009-07-25 17:50:36 +0200680 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Mike Travis162a7e72011-05-24 17:13:20 -0700681
682 pr_info("log_buf_len: %d\n", log_buf_len);
683 pr_info("early log buf free: %d(%d%%)\n",
684 free, (free * 100) / __LOG_BUF_LEN);
685}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700687#ifdef CONFIG_BOOT_PRINTK_DELAY
688
Namhyung Kim674dff62010-10-26 14:22:48 -0700689static int boot_delay; /* msecs delay after each printk during bootup */
Dave Young3a3b6ed2009-09-22 16:43:31 -0700690static unsigned long long loops_per_msec; /* based on boot_delay */
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700691
692static int __init boot_delay_setup(char *str)
693{
694 unsigned long lpj;
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700695
696 lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */
697 loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
698
699 get_option(&str, &boot_delay);
700 if (boot_delay > 10 * 1000)
701 boot_delay = 0;
702
Dave Young3a3b6ed2009-09-22 16:43:31 -0700703 pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
704 "HZ: %d, loops_per_msec: %llu\n",
705 boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700706 return 1;
707}
708__setup("boot_delay=", boot_delay_setup);
709
710static void boot_delay_msec(void)
711{
712 unsigned long long k;
713 unsigned long timeout;
714
715 if (boot_delay == 0 || system_state != SYSTEM_BOOTING)
716 return;
717
Dave Young3a3b6ed2009-09-22 16:43:31 -0700718 k = (unsigned long long)loops_per_msec * boot_delay;
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700719
720 timeout = jiffies + msecs_to_jiffies(boot_delay);
721 while (k) {
722 k--;
723 cpu_relax();
724 /*
725 * use (volatile) jiffies to prevent
726 * compiler reduction; loop termination via jiffies
727 * is secondary and may or may not happen.
728 */
729 if (time_after(jiffies, timeout))
730 break;
731 touch_nmi_watchdog();
732 }
733}
734#else
735static inline void boot_delay_msec(void)
736{
737}
738#endif
739
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800740#ifdef CONFIG_SECURITY_DMESG_RESTRICT
741int dmesg_restrict = 1;
742#else
743int dmesg_restrict;
744#endif
745
Linus Torvaldsee24aeb2011-02-10 17:53:55 -0800746static int syslog_action_restricted(int type)
747{
748 if (dmesg_restrict)
749 return 1;
750 /* Unless restricted, we allow "read all" and "get buffer size" for everybody */
751 return type != SYSLOG_ACTION_READ_ALL && type != SYSLOG_ACTION_SIZE_BUFFER;
752}
753
754static int check_syslog_permissions(int type, bool from_file)
755{
756 /*
757 * If this is from /proc/kmsg and we've already opened it, then we've
758 * already done the capabilities checks at open time.
759 */
760 if (from_file && type != SYSLOG_ACTION_OPEN)
761 return 0;
762
763 if (syslog_action_restricted(type)) {
764 if (capable(CAP_SYSLOG))
765 return 0;
766 /* For historical reasons, accept CAP_SYS_ADMIN too, with a warning */
767 if (capable(CAP_SYS_ADMIN)) {
Jonathan Niederf2c0d022011-08-08 06:22:43 +0200768 printk_once(KERN_WARNING "%s (%d): "
769 "Attempt to access syslog with CAP_SYS_ADMIN "
770 "but no CAP_SYSLOG (deprecated).\n",
771 current->comm, task_pid_nr(current));
Linus Torvaldsee24aeb2011-02-10 17:53:55 -0800772 return 0;
773 }
774 return -EPERM;
775 }
776 return 0;
777}
778
Kay Sievers7ff95542012-05-03 02:29:13 +0200779#if defined(CONFIG_PRINTK_TIME)
780static bool printk_time = 1;
781#else
782static bool printk_time;
783#endif
784module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
785
786static int syslog_print_line(u32 idx, char *text, size_t size)
787{
788 struct log *msg;
789 size_t len;
790
791 msg = log_from_idx(idx);
792 if (!text) {
793 /* calculate length only */
794 len = 3;
795
796 if (msg->level > 9)
797 len++;
798 if (msg->level > 99)
799 len++;
800
801 if (printk_time)
802 len += 15;
803
804 len += msg->text_len;
805 len++;
806 return len;
807 }
808
809 len = sprintf(text, "<%u>", msg->level);
810
811 if (printk_time) {
812 unsigned long long t = msg->ts_nsec;
813 unsigned long rem_ns = do_div(t, 1000000000);
814
815 len += sprintf(text + len, "[%5lu.%06lu] ",
816 (unsigned long) t, rem_ns / 1000);
817 }
818
819 if (len + msg->text_len > size)
820 return -EINVAL;
821 memcpy(text + len, log_text(msg), msg->text_len);
822 len += msg->text_len;
823 text[len++] = '\n';
824 return len;
825}
826
827static int syslog_print(char __user *buf, int size)
828{
829 char *text;
830 int len;
831
832 text = kmalloc(LOG_LINE_MAX, GFP_KERNEL);
833 if (!text)
834 return -ENOMEM;
835
836 raw_spin_lock_irq(&logbuf_lock);
837 if (syslog_seq < log_first_seq) {
838 /* messages are gone, move to first one */
839 syslog_seq = log_first_seq;
840 syslog_idx = log_first_idx;
841 }
842 len = syslog_print_line(syslog_idx, text, LOG_LINE_MAX);
843 syslog_idx = log_next(syslog_idx);
844 syslog_seq++;
845 raw_spin_unlock_irq(&logbuf_lock);
846
847 if (len > 0 && copy_to_user(buf, text, len))
848 len = -EFAULT;
849
850 kfree(text);
851 return len;
852}
853
854static int syslog_print_all(char __user *buf, int size, bool clear)
855{
856 char *text;
857 int len = 0;
858
859 text = kmalloc(LOG_LINE_MAX, GFP_KERNEL);
860 if (!text)
861 return -ENOMEM;
862
863 raw_spin_lock_irq(&logbuf_lock);
864 if (buf) {
865 u64 next_seq;
866 u64 seq;
867 u32 idx;
868
869 if (clear_seq < log_first_seq) {
870 /* messages are gone, move to first available one */
871 clear_seq = log_first_seq;
872 clear_idx = log_first_idx;
873 }
874
875 /*
876 * Find first record that fits, including all following records,
877 * into the user-provided buffer for this dump.
878 */
879 seq = clear_seq;
880 idx = clear_idx;
881 while (seq < log_next_seq) {
882 len += syslog_print_line(idx, NULL, 0);
883 idx = log_next(idx);
884 seq++;
885 }
886 seq = clear_seq;
887 idx = clear_idx;
888 while (len > size && seq < log_next_seq) {
889 len -= syslog_print_line(idx, NULL, 0);
890 idx = log_next(idx);
891 seq++;
892 }
893
894 /* last message in this dump */
895 next_seq = log_next_seq;
896
897 len = 0;
898 while (len >= 0 && seq < next_seq) {
899 int textlen;
900
901 textlen = syslog_print_line(idx, text, LOG_LINE_MAX);
902 if (textlen < 0) {
903 len = textlen;
904 break;
905 }
906 idx = log_next(idx);
907 seq++;
908
909 raw_spin_unlock_irq(&logbuf_lock);
910 if (copy_to_user(buf + len, text, textlen))
911 len = -EFAULT;
912 else
913 len += textlen;
914 raw_spin_lock_irq(&logbuf_lock);
915
916 if (seq < log_first_seq) {
917 /* messages are gone, move to next one */
918 seq = log_first_seq;
919 idx = log_first_idx;
920 }
921 }
922 }
923
924 if (clear) {
925 clear_seq = log_next_seq;
926 clear_idx = log_next_idx;
927 }
928 raw_spin_unlock_irq(&logbuf_lock);
929
930 kfree(text);
931 return len;
932}
933
Kees Cook00234592010-02-03 15:36:43 -0800934int do_syslog(int type, char __user *buf, int len, bool from_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Kay Sievers7ff95542012-05-03 02:29:13 +0200936 bool clear = false;
937 static int saved_console_loglevel = -1;
Linus Torvaldsee24aeb2011-02-10 17:53:55 -0800938 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Linus Torvaldsee24aeb2011-02-10 17:53:55 -0800940 error = check_syslog_permissions(type, from_file);
941 if (error)
942 goto out;
Eric Paris12b30522010-11-15 18:36:29 -0500943
944 error = security_syslog(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (error)
946 return error;
947
948 switch (type) {
Kees Cookd78ca3c2010-02-03 15:37:13 -0800949 case SYSLOG_ACTION_CLOSE: /* Close log */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800951 case SYSLOG_ACTION_OPEN: /* Open log */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800953 case SYSLOG_ACTION_READ: /* Read from log */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 error = -EINVAL;
955 if (!buf || len < 0)
956 goto out;
957 error = 0;
958 if (!len)
959 goto out;
960 if (!access_ok(VERIFY_WRITE, buf, len)) {
961 error = -EFAULT;
962 goto out;
963 }
Jesper Juhl40dc5652005-10-30 15:02:46 -0800964 error = wait_event_interruptible(log_wait,
Kay Sievers7ff95542012-05-03 02:29:13 +0200965 syslog_seq != log_next_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (error)
967 goto out;
Kay Sievers7ff95542012-05-03 02:29:13 +0200968 error = syslog_print(buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800970 /* Read/clear last kernel messages */
971 case SYSLOG_ACTION_READ_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +0200972 clear = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 /* FALL THRU */
Kees Cookd78ca3c2010-02-03 15:37:13 -0800974 /* Read last kernel messages */
975 case SYSLOG_ACTION_READ_ALL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 error = -EINVAL;
977 if (!buf || len < 0)
978 goto out;
979 error = 0;
980 if (!len)
981 goto out;
982 if (!access_ok(VERIFY_WRITE, buf, len)) {
983 error = -EFAULT;
984 goto out;
985 }
Kay Sievers7ff95542012-05-03 02:29:13 +0200986 error = syslog_print_all(buf, len, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800988 /* Clear ring buffer */
989 case SYSLOG_ACTION_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +0200990 syslog_print_all(NULL, 0, true);
Kees Cookd78ca3c2010-02-03 15:37:13 -0800991 /* Disable logging to console */
992 case SYSLOG_ACTION_CONSOLE_OFF:
Frans Pop1aaad492009-07-06 13:31:48 +0200993 if (saved_console_loglevel == -1)
994 saved_console_loglevel = console_loglevel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 console_loglevel = minimum_console_loglevel;
996 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800997 /* Enable logging to console */
998 case SYSLOG_ACTION_CONSOLE_ON:
Frans Pop1aaad492009-07-06 13:31:48 +0200999 if (saved_console_loglevel != -1) {
1000 console_loglevel = saved_console_loglevel;
1001 saved_console_loglevel = -1;
1002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001004 /* Set level of messages printed to console */
1005 case SYSLOG_ACTION_CONSOLE_LEVEL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 error = -EINVAL;
1007 if (len < 1 || len > 8)
1008 goto out;
1009 if (len < minimum_console_loglevel)
1010 len = minimum_console_loglevel;
1011 console_loglevel = len;
Frans Pop1aaad492009-07-06 13:31:48 +02001012 /* Implicitly re-enable logging to console */
1013 saved_console_loglevel = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 error = 0;
1015 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001016 /* Number of chars in the log buffer */
1017 case SYSLOG_ACTION_SIZE_UNREAD:
Kay Sievers7ff95542012-05-03 02:29:13 +02001018 raw_spin_lock_irq(&logbuf_lock);
1019 if (syslog_seq < log_first_seq) {
1020 /* messages are gone, move to first one */
1021 syslog_seq = log_first_seq;
1022 syslog_idx = log_first_idx;
1023 }
1024 if (from_file) {
1025 /*
1026 * Short-cut for poll(/"proc/kmsg") which simply checks
1027 * for pending data, not the size; return the count of
1028 * records, not the length.
1029 */
1030 error = log_next_idx - syslog_idx;
1031 } else {
1032 u64 seq;
1033 u32 idx;
1034
1035 error = 0;
1036 seq = syslog_seq;
1037 idx = syslog_idx;
1038 while (seq < log_next_seq) {
1039 error += syslog_print_line(idx, NULL, 0);
1040 idx = log_next(idx);
1041 seq++;
1042 }
1043 }
1044 raw_spin_unlock_irq(&logbuf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001046 /* Size of the log buffer */
1047 case SYSLOG_ACTION_SIZE_BUFFER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 error = log_buf_len;
1049 break;
1050 default:
1051 error = -EINVAL;
1052 break;
1053 }
1054out:
1055 return error;
1056}
1057
Heiko Carstens1e7bfb22009-01-14 14:14:29 +01001058SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Kees Cook00234592010-02-03 15:36:43 -08001060 return do_syslog(type, buf, len, SYSLOG_FROM_CALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061}
1062
Jason Wessel67fc4e02010-05-20 21:04:21 -05001063#ifdef CONFIG_KGDB_KDB
1064/* kdb dmesg command needs access to the syslog buffer. do_syslog()
1065 * uses locks so it cannot be used during debugging. Just tell kdb
1066 * where the start and end of the physical and logical logs are. This
1067 * is equivalent to do_syslog(3).
1068 */
1069void kdb_syslog_data(char *syslog_data[4])
1070{
1071 syslog_data[0] = log_buf;
1072 syslog_data[1] = log_buf + log_buf_len;
Kay Sievers7ff95542012-05-03 02:29:13 +02001073 syslog_data[2] = log_buf + log_first_idx;
1074 syslog_data[3] = log_buf + log_next_idx;
Jason Wessel67fc4e02010-05-20 21:04:21 -05001075}
1076#endif /* CONFIG_KGDB_KDB */
1077
Rusty Russell2329abf2012-01-13 09:32:18 +10301078static bool __read_mostly ignore_loglevel;
Ingo Molnar792908222006-12-06 20:40:51 -08001079
Adrian Bunk99eea6a2006-12-22 01:07:00 -08001080static int __init ignore_loglevel_setup(char *str)
Ingo Molnar792908222006-12-06 20:40:51 -08001081{
1082 ignore_loglevel = 1;
1083 printk(KERN_INFO "debug: ignoring loglevel setting.\n");
1084
Ingo Molnarc4772d92008-01-31 22:45:23 +01001085 return 0;
Ingo Molnar792908222006-12-06 20:40:51 -08001086}
1087
Ingo Molnarc4772d92008-01-31 22:45:23 +01001088early_param("ignore_loglevel", ignore_loglevel_setup);
Rusty Russell29d4d6d2012-01-13 09:32:17 +10301089module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR);
Yanmin Zhang0eca6b72011-10-31 17:11:25 -07001090MODULE_PARM_DESC(ignore_loglevel, "ignore loglevel setting, to"
1091 "print all kernel messages to the console.");
Ingo Molnar792908222006-12-06 20:40:51 -08001092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 * Call the console drivers, asking them to write out
1095 * log_buf[start] to log_buf[end - 1].
Torben Hohnac751ef2011-01-25 15:07:35 -08001096 * The console_lock must be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001098static void call_console_drivers(int level, const char *text, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Kay Sievers7ff95542012-05-03 02:29:13 +02001100 struct console *con;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Kay Sievers7ff95542012-05-03 02:29:13 +02001102 trace_console(text, 0, len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Kay Sievers7ff95542012-05-03 02:29:13 +02001104 if (level >= console_loglevel && !ignore_loglevel)
1105 return;
1106 if (!console_drivers)
1107 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Kay Sievers7ff95542012-05-03 02:29:13 +02001109 for_each_console(con) {
1110 if (exclusive_console && con != exclusive_console)
1111 continue;
1112 if (!(con->flags & CON_ENABLED))
1113 continue;
1114 if (!con->write)
1115 continue;
1116 if (!cpu_online(smp_processor_id()) &&
1117 !(con->flags & CON_ANYTIME))
1118 continue;
1119 con->write(con, text, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
1122
1123/*
1124 * Zap console related locks when oopsing. Only zap at most once
1125 * every 10 seconds, to leave time for slow consoles to print a
1126 * full oops.
1127 */
1128static void zap_locks(void)
1129{
1130 static unsigned long oops_timestamp;
1131
1132 if (time_after_eq(jiffies, oops_timestamp) &&
Jesper Juhl40dc5652005-10-30 15:02:46 -08001133 !time_after(jiffies, oops_timestamp + 30 * HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return;
1135
1136 oops_timestamp = jiffies;
1137
Peter Zijlstra94d24fc2011-06-07 11:17:30 +02001138 debug_locks_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 /* If a crash is occurring, make sure we can't deadlock */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001140 raw_spin_lock_init(&logbuf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 /* And make sure that we print immediately */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +00001142 sema_init(&console_sem, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143}
1144
Michael Ellerman76a8ad22006-06-25 05:47:40 -07001145/* Check if we have any console registered that can be called early in boot. */
1146static int have_callable_console(void)
1147{
1148 struct console *con;
1149
Robin Getz4d091612009-07-01 21:08:37 -04001150 for_each_console(con)
Michael Ellerman76a8ad22006-06-25 05:47:40 -07001151 if (con->flags & CON_ANYTIME)
1152 return 1;
1153
1154 return 0;
1155}
1156
Linus Torvalds266c2e02008-03-24 19:25:08 -07001157/*
1158 * Can we actually use the console at this time on this cpu?
1159 *
1160 * Console drivers may assume that per-cpu resources have
1161 * been allocated. So unless they're explicitly marked as
1162 * being able to cope (CON_ANYTIME) don't call them until
1163 * this CPU is officially up.
1164 */
1165static inline int can_use_console(unsigned int cpu)
1166{
1167 return cpu_online(cpu) || have_callable_console();
1168}
1169
1170/*
1171 * Try to get console ownership to actually show the kernel
1172 * messages from a 'printk'. Return true (and with the
Torben Hohnac751ef2011-01-25 15:07:35 -08001173 * console_lock held, and 'console_locked' set) if it
Linus Torvalds266c2e02008-03-24 19:25:08 -07001174 * is successful, false otherwise.
1175 *
1176 * This gets called with the 'logbuf_lock' spinlock held and
1177 * interrupts disabled. It should return with 'lockbuf_lock'
1178 * released but interrupts still disabled.
1179 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001180static int console_trylock_for_printk(unsigned int cpu)
Namhyung Kim8155c022010-10-26 14:22:47 -07001181 __releases(&logbuf_lock)
Linus Torvalds266c2e02008-03-24 19:25:08 -07001182{
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02001183 int retval = 0, wake = 0;
Linus Torvalds266c2e02008-03-24 19:25:08 -07001184
Torben Hohnac751ef2011-01-25 15:07:35 -08001185 if (console_trylock()) {
Linus Torvalds093a07e2008-04-15 13:09:54 -07001186 retval = 1;
1187
1188 /*
1189 * If we can't use the console, we need to release
1190 * the console semaphore by hand to avoid flushing
1191 * the buffer. We need to hold the console semaphore
1192 * in order to do this test safely.
1193 */
1194 if (!can_use_console(cpu)) {
1195 console_locked = 0;
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02001196 wake = 1;
Linus Torvalds093a07e2008-04-15 13:09:54 -07001197 retval = 0;
1198 }
1199 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001200 logbuf_cpu = UINT_MAX;
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02001201 if (wake)
1202 up(&console_sem);
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001203 raw_spin_unlock(&logbuf_lock);
Linus Torvalds266c2e02008-03-24 19:25:08 -07001204 return retval;
1205}
Ingo Molnar32a76002008-01-25 21:07:58 +01001206
Dave Youngaf913222009-09-22 16:43:33 -07001207int printk_delay_msec __read_mostly;
1208
1209static inline void printk_delay(void)
1210{
1211 if (unlikely(printk_delay_msec)) {
1212 int m = printk_delay_msec;
1213
1214 while (m--) {
1215 mdelay(1);
1216 touch_nmi_watchdog();
1217 }
1218 }
1219}
1220
Kay Sievers7ff95542012-05-03 02:29:13 +02001221asmlinkage int vprintk_emit(int facility, int level,
1222 const char *dict, size_t dictlen,
1223 const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
Kay Sievers7ff95542012-05-03 02:29:13 +02001225 static int recursion_bug;
1226 static char buf[LOG_LINE_MAX];
1227 static size_t buflen;
1228 static int buflevel;
1229 static char textbuf[LOG_LINE_MAX];
1230 char *text = textbuf;
1231 size_t textlen;
Nick Andrewac60ad72008-05-12 21:21:04 +02001232 unsigned long flags;
Ingo Molnar32a76002008-01-25 21:07:58 +01001233 int this_cpu;
Kay Sievers7ff95542012-05-03 02:29:13 +02001234 bool newline = false;
1235 bool cont = false;
1236 int printed_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001238 boot_delay_msec();
Dave Youngaf913222009-09-22 16:43:33 -07001239 printk_delay();
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 /* This stops the holder of console_sem just where we want him */
Peter Zijlstra1a9a8ae2011-06-07 11:17:30 +02001242 local_irq_save(flags);
Ingo Molnar32a76002008-01-25 21:07:58 +01001243 this_cpu = smp_processor_id();
1244
1245 /*
1246 * Ouch, printk recursed into itself!
1247 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001248 if (unlikely(logbuf_cpu == this_cpu)) {
Ingo Molnar32a76002008-01-25 21:07:58 +01001249 /*
1250 * If a crash is occurring during printk() on this CPU,
1251 * then try to get the crash message out but make sure
1252 * we can't deadlock. Otherwise just return to avoid the
1253 * recursion and return - but flag the recursion so that
1254 * it can be printed at the next appropriate moment:
1255 */
Peter Zijlstra94d24fc2011-06-07 11:17:30 +02001256 if (!oops_in_progress && !lockdep_recursing(current)) {
Tejun Heo3b8945e2008-05-12 21:21:04 +02001257 recursion_bug = 1;
Ingo Molnar32a76002008-01-25 21:07:58 +01001258 goto out_restore_irqs;
1259 }
1260 zap_locks();
1261 }
1262
Ingo Molnara0f1ccf2006-07-03 00:24:58 -07001263 lockdep_off();
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001264 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02001265 logbuf_cpu = this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Tejun Heo3b8945e2008-05-12 21:21:04 +02001267 if (recursion_bug) {
Kay Sievers7ff95542012-05-03 02:29:13 +02001268 static const char recursion_msg[] =
1269 "BUG: recent printk recursion!";
1270
Tejun Heo3b8945e2008-05-12 21:21:04 +02001271 recursion_bug = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001272 printed_len += strlen(recursion_msg);
1273 /* emit KERN_CRIT message */
1274 log_store(0, 2, NULL, 0, recursion_msg, printed_len);
Linus Torvalds5fd29d62009-06-16 10:57:02 -07001275 }
1276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 /*
Kay Sievers7ff95542012-05-03 02:29:13 +02001278 * The printf needs to come first; we need the syslog
1279 * prefix which might be passed-in as a parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001281 textlen = vscnprintf(text, sizeof(textbuf), fmt, args);
Nick Andrewac60ad72008-05-12 21:21:04 +02001282
Kay Sievers7ff95542012-05-03 02:29:13 +02001283 /* mark and strip a trailing newline */
1284 if (textlen && text[textlen-1] == '\n') {
1285 textlen--;
1286 newline = true;
1287 }
Kay Sievers9d90c8d2011-03-13 03:19:51 +01001288
Kay Sievers7ff95542012-05-03 02:29:13 +02001289 /* strip syslog prefix and extract log level or flags */
1290 if (text[0] == '<' && text[1] && text[2] == '>') {
1291 switch (text[1]) {
1292 case '0' ... '7':
1293 if (level == -1)
1294 level = text[1] - '0';
1295 text += 3;
1296 textlen -= 3;
1297 break;
1298 case 'c': /* KERN_CONT */
1299 cont = true;
1300 case 'd': /* KERN_DEFAULT */
1301 text += 3;
1302 textlen -= 3;
1303 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001305 }
Nick Andrewac60ad72008-05-12 21:21:04 +02001306
Kay Sievers7ff95542012-05-03 02:29:13 +02001307 if (buflen && (!cont || dict)) {
1308 /* no continuation; flush existing buffer */
1309 log_store(facility, buflevel, NULL, 0, buf, buflen);
1310 printed_len += buflen;
1311 buflen = 0;
1312 }
1313
1314 if (buflen == 0) {
1315 /* remember level for first message in the buffer */
1316 if (level == -1)
1317 buflevel = default_message_loglevel;
1318 else
1319 buflevel = level;
1320 }
1321
1322 if (buflen || !newline) {
1323 /* append to existing buffer, or buffer until next message */
1324 if (buflen + textlen > sizeof(buf))
1325 textlen = sizeof(buf) - buflen;
1326 memcpy(buf + buflen, text, textlen);
1327 buflen += textlen;
1328 }
1329
1330 if (newline) {
1331 /* end of line; flush buffer */
1332 if (buflen) {
1333 log_store(facility, buflevel,
1334 dict, dictlen, buf, buflen);
1335 printed_len += buflen;
1336 buflen = 0;
1337 } else {
1338 log_store(facility, buflevel,
1339 dict, dictlen, text, textlen);
1340 printed_len += textlen;
1341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
1343
Linus Torvalds266c2e02008-03-24 19:25:08 -07001344 /*
Kay Sievers7ff95542012-05-03 02:29:13 +02001345 * Try to acquire and then immediately release the console semaphore.
1346 * The release will print out buffers and wake up /dev/kmsg and syslog()
1347 * users.
Linus Torvalds266c2e02008-03-24 19:25:08 -07001348 *
Kay Sievers7ff95542012-05-03 02:29:13 +02001349 * The console_trylock_for_printk() function will release 'logbuf_lock'
1350 * regardless of whether it actually gets the console semaphore or not.
Linus Torvalds266c2e02008-03-24 19:25:08 -07001351 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001352 if (console_trylock_for_printk(this_cpu))
1353 console_unlock();
Michael Ellerman76a8ad22006-06-25 05:47:40 -07001354
Linus Torvalds266c2e02008-03-24 19:25:08 -07001355 lockdep_on();
Ingo Molnar32a76002008-01-25 21:07:58 +01001356out_restore_irqs:
Peter Zijlstra1a9a8ae2011-06-07 11:17:30 +02001357 local_irq_restore(flags);
Michael Ellerman76a8ad22006-06-25 05:47:40 -07001358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return printed_len;
1360}
Kay Sievers7ff95542012-05-03 02:29:13 +02001361EXPORT_SYMBOL(vprintk_emit);
1362
1363asmlinkage int vprintk(const char *fmt, va_list args)
1364{
1365 return vprintk_emit(0, -1, NULL, 0, fmt, args);
1366}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367EXPORT_SYMBOL(vprintk);
1368
Kay Sievers7ff95542012-05-03 02:29:13 +02001369asmlinkage int printk_emit(int facility, int level,
1370 const char *dict, size_t dictlen,
1371 const char *fmt, ...)
1372{
1373 va_list args;
1374 int r;
1375
1376 va_start(args, fmt);
1377 r = vprintk_emit(facility, level, dict, dictlen, fmt, args);
1378 va_end(args);
1379
1380 return r;
1381}
1382EXPORT_SYMBOL(printk_emit);
1383
1384/**
1385 * printk - print a kernel message
1386 * @fmt: format string
1387 *
1388 * This is printk(). It can be called from any context. We want it to work.
1389 *
1390 * We try to grab the console_lock. If we succeed, it's easy - we log the
1391 * output and call the console drivers. If we fail to get the semaphore, we
1392 * place the output into the log buffer and return. The current holder of
1393 * the console_sem will notice the new output in console_unlock(); and will
1394 * send it to the consoles before releasing the lock.
1395 *
1396 * One effect of this deferred printing is that code which calls printk() and
1397 * then changes console_loglevel may break. This is because console_loglevel
1398 * is inspected when the actual printing occurs.
1399 *
1400 * See also:
1401 * printf(3)
1402 *
1403 * See the vsnprintf() documentation for format string extensions over C99.
1404 */
1405asmlinkage int printk(const char *fmt, ...)
1406{
1407 va_list args;
1408 int r;
1409
1410#ifdef CONFIG_KGDB_KDB
1411 if (unlikely(kdb_trap_printk)) {
1412 va_start(args, fmt);
1413 r = vkdb_printf(fmt, args);
1414 va_end(args);
1415 return r;
1416 }
1417#endif
1418 va_start(args, fmt);
1419 r = vprintk_emit(0, -1, NULL, 0, fmt, args);
1420 va_end(args);
1421
1422 return r;
1423}
1424EXPORT_SYMBOL(printk);
Matt Mackalld59745c2005-05-01 08:59:02 -07001425#else
1426
Kay Sievers7ff95542012-05-03 02:29:13 +02001427static void call_console_drivers(int level, const char *text, size_t len)
Jesper Juhl40dc5652005-10-30 15:02:46 -08001428{
1429}
Matt Mackalld59745c2005-05-01 08:59:02 -07001430
1431#endif
1432
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001433static int __add_preferred_console(char *name, int idx, char *options,
1434 char *brl_options)
1435{
1436 struct console_cmdline *c;
1437 int i;
1438
1439 /*
1440 * See if this tty is not yet registered, and
1441 * if we have a slot free.
1442 */
1443 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
1444 if (strcmp(console_cmdline[i].name, name) == 0 &&
1445 console_cmdline[i].index == idx) {
1446 if (!brl_options)
1447 selected_console = i;
1448 return 0;
1449 }
1450 if (i == MAX_CMDLINECONSOLES)
1451 return -E2BIG;
1452 if (!brl_options)
1453 selected_console = i;
1454 c = &console_cmdline[i];
1455 strlcpy(c->name, name, sizeof(c->name));
1456 c->options = options;
1457#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1458 c->brl_options = brl_options;
1459#endif
1460 c->index = idx;
1461 return 0;
1462}
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001463/*
1464 * Set up a list of consoles. Called from init/main.c
1465 */
1466static int __init console_setup(char *str)
1467{
Yinghai Lueaa944a2007-07-15 23:37:27 -07001468 char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for index */
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001469 char *s, *options, *brl_options = NULL;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001470 int idx;
1471
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001472#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1473 if (!memcmp(str, "brl,", 4)) {
1474 brl_options = "";
1475 str += 4;
1476 } else if (!memcmp(str, "brl=", 4)) {
1477 brl_options = str + 4;
1478 str = strchr(brl_options, ',');
1479 if (!str) {
1480 printk(KERN_ERR "need port name after brl=\n");
1481 return 1;
1482 }
1483 *(str++) = 0;
1484 }
1485#endif
1486
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001487 /*
1488 * Decode str into name, index, options.
1489 */
1490 if (str[0] >= '0' && str[0] <= '9') {
Yinghai Lueaa944a2007-07-15 23:37:27 -07001491 strcpy(buf, "ttyS");
1492 strncpy(buf + 4, str, sizeof(buf) - 5);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001493 } else {
Yinghai Lueaa944a2007-07-15 23:37:27 -07001494 strncpy(buf, str, sizeof(buf) - 1);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001495 }
Yinghai Lueaa944a2007-07-15 23:37:27 -07001496 buf[sizeof(buf) - 1] = 0;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001497 if ((options = strchr(str, ',')) != NULL)
1498 *(options++) = 0;
1499#ifdef __sparc__
1500 if (!strcmp(str, "ttya"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07001501 strcpy(buf, "ttyS0");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001502 if (!strcmp(str, "ttyb"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07001503 strcpy(buf, "ttyS1");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001504#endif
Yinghai Lueaa944a2007-07-15 23:37:27 -07001505 for (s = buf; *s; s++)
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001506 if ((*s >= '0' && *s <= '9') || *s == ',')
1507 break;
1508 idx = simple_strtoul(s, NULL, 10);
1509 *s = 0;
1510
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001511 __add_preferred_console(buf, idx, options, brl_options);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001512 console_set_on_cmdline = 1;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001513 return 1;
1514}
1515__setup("console=", console_setup);
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517/**
Matt Mackall3c0547b2005-05-16 21:53:47 -07001518 * add_preferred_console - add a device to the list of preferred consoles.
Martin Waitzddad86c2005-11-13 16:08:14 -08001519 * @name: device name
1520 * @idx: device index
1521 * @options: options for this console
Matt Mackall3c0547b2005-05-16 21:53:47 -07001522 *
1523 * The last preferred console added will be used for kernel messages
1524 * and stdin/out/err for init. Normally this is used by console_setup
1525 * above to handle user-supplied console arguments; however it can also
1526 * be used by arch-specific code either to override the user or more
1527 * commonly to provide a default console (ie from PROM variables) when
1528 * the user has not supplied one.
1529 */
David S. Millerfb445ee2007-12-29 01:19:49 -08001530int add_preferred_console(char *name, int idx, char *options)
Matt Mackall3c0547b2005-05-16 21:53:47 -07001531{
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001532 return __add_preferred_console(name, idx, options, NULL);
Matt Mackall3c0547b2005-05-16 21:53:47 -07001533}
1534
Daniel Ritzb6b1d872007-08-03 16:07:43 +02001535int update_console_cmdline(char *name, int idx, char *name_new, int idx_new, char *options)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07001536{
1537 struct console_cmdline *c;
1538 int i;
1539
1540 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
1541 if (strcmp(console_cmdline[i].name, name) == 0 &&
1542 console_cmdline[i].index == idx) {
1543 c = &console_cmdline[i];
Markus Armbrusterf7352952008-04-30 00:54:52 -07001544 strlcpy(c->name, name_new, sizeof(c->name));
Yinghai Lu18a8bd92007-07-15 23:37:59 -07001545 c->name[sizeof(c->name) - 1] = 0;
1546 c->options = options;
1547 c->index = idx_new;
1548 return i;
1549 }
1550 /* not found */
1551 return -1;
1552}
1553
Rusty Russell2329abf2012-01-13 09:32:18 +10301554bool console_suspend_enabled = 1;
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001555EXPORT_SYMBOL(console_suspend_enabled);
1556
1557static int __init console_suspend_disable(char *str)
1558{
1559 console_suspend_enabled = 0;
1560 return 1;
1561}
1562__setup("no_console_suspend", console_suspend_disable);
Yanmin Zhang134620f2011-10-31 17:11:27 -07001563module_param_named(console_suspend, console_suspend_enabled,
1564 bool, S_IRUGO | S_IWUSR);
1565MODULE_PARM_DESC(console_suspend, "suspend console during suspend"
1566 " and hibernate operations");
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001567
Matt Mackall3c0547b2005-05-16 21:53:47 -07001568/**
Linus Torvalds557240b2006-06-19 18:16:01 -07001569 * suspend_console - suspend the console subsystem
1570 *
1571 * This disables printk() while we go into suspend states
1572 */
1573void suspend_console(void)
1574{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001575 if (!console_suspend_enabled)
1576 return;
Pavel Machek0d630812008-07-23 21:28:32 -07001577 printk("Suspending console(s) (use no_console_suspend to debug)\n");
Torben Hohnac751ef2011-01-25 15:07:35 -08001578 console_lock();
Linus Torvalds557240b2006-06-19 18:16:01 -07001579 console_suspended = 1;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001580 up(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07001581}
1582
1583void resume_console(void)
1584{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001585 if (!console_suspend_enabled)
1586 return;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001587 down(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07001588 console_suspended = 0;
Torben Hohnac751ef2011-01-25 15:07:35 -08001589 console_unlock();
Linus Torvalds557240b2006-06-19 18:16:01 -07001590}
1591
1592/**
Kevin Cernekee034260d2010-06-03 22:11:25 -07001593 * console_cpu_notify - print deferred console messages after CPU hotplug
1594 * @self: notifier struct
1595 * @action: CPU hotplug event
1596 * @hcpu: unused
1597 *
1598 * If printk() is called from a CPU that is not online yet, the messages
1599 * will be spooled but will not show up on the console. This function is
1600 * called when a new CPU comes online (or fails to come up), and ensures
1601 * that any such output gets printed.
1602 */
1603static int __cpuinit console_cpu_notify(struct notifier_block *self,
1604 unsigned long action, void *hcpu)
1605{
1606 switch (action) {
1607 case CPU_ONLINE:
1608 case CPU_DEAD:
1609 case CPU_DYING:
1610 case CPU_DOWN_FAILED:
1611 case CPU_UP_CANCELED:
Torben Hohnac751ef2011-01-25 15:07:35 -08001612 console_lock();
1613 console_unlock();
Kevin Cernekee034260d2010-06-03 22:11:25 -07001614 }
1615 return NOTIFY_OK;
1616}
1617
1618/**
Torben Hohnac751ef2011-01-25 15:07:35 -08001619 * console_lock - lock the console system for exclusive use.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001621 * Acquires a lock which guarantees that the caller has
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 * exclusive access to the console system and the console_drivers list.
1623 *
1624 * Can sleep, returns nothing.
1625 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001626void console_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
Eric Sesterhenn8abd8e22006-04-01 01:21:17 +02001628 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 down(&console_sem);
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001630 if (console_suspended)
1631 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 console_locked = 1;
1633 console_may_schedule = 1;
1634}
Torben Hohnac751ef2011-01-25 15:07:35 -08001635EXPORT_SYMBOL(console_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Torben Hohnac751ef2011-01-25 15:07:35 -08001637/**
1638 * console_trylock - try to lock the console system for exclusive use.
1639 *
1640 * Tried to acquire a lock which guarantees that the caller has
1641 * exclusive access to the console system and the console_drivers list.
1642 *
1643 * returns 1 on success, and 0 on failure to acquire the lock.
1644 */
1645int console_trylock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646{
1647 if (down_trylock(&console_sem))
Torben Hohnac751ef2011-01-25 15:07:35 -08001648 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001649 if (console_suspended) {
1650 up(&console_sem);
Torben Hohnac751ef2011-01-25 15:07:35 -08001651 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 console_locked = 1;
1654 console_may_schedule = 0;
Torben Hohnac751ef2011-01-25 15:07:35 -08001655 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656}
Torben Hohnac751ef2011-01-25 15:07:35 -08001657EXPORT_SYMBOL(console_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659int is_console_locked(void)
1660{
1661 return console_locked;
1662}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +01001664/*
Kay Sievers7ff95542012-05-03 02:29:13 +02001665 * Delayed printk version, for scheduler-internal messages:
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +01001666 */
1667#define PRINTK_BUF_SIZE 512
1668
1669#define PRINTK_PENDING_WAKEUP 0x01
1670#define PRINTK_PENDING_SCHED 0x02
1671
Peter Zijlstrab845b512008-08-08 21:47:09 +02001672static DEFINE_PER_CPU(int, printk_pending);
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +01001673static DEFINE_PER_CPU(char [PRINTK_BUF_SIZE], printk_sched_buf);
Peter Zijlstrab845b512008-08-08 21:47:09 +02001674
1675void printk_tick(void)
1676{
Eric Dumazet40dc11f2010-11-26 17:22:16 +01001677 if (__this_cpu_read(printk_pending)) {
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +01001678 int pending = __this_cpu_xchg(printk_pending, 0);
1679 if (pending & PRINTK_PENDING_SCHED) {
1680 char *buf = __get_cpu_var(printk_sched_buf);
1681 printk(KERN_WARNING "[sched_delayed] %s", buf);
1682 }
1683 if (pending & PRINTK_PENDING_WAKEUP)
1684 wake_up_interruptible(&log_wait);
Peter Zijlstrab845b512008-08-08 21:47:09 +02001685 }
1686}
1687
1688int printk_needs_cpu(int cpu)
1689{
Eric Dumazet40dc11f2010-11-26 17:22:16 +01001690 if (cpu_is_offline(cpu))
Heiko Carstens61ab2542010-11-26 13:00:59 +01001691 printk_tick();
Eric Dumazet40dc11f2010-11-26 17:22:16 +01001692 return __this_cpu_read(printk_pending);
Peter Zijlstrab845b512008-08-08 21:47:09 +02001693}
1694
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08001695void wake_up_klogd(void)
1696{
Peter Zijlstrab845b512008-08-08 21:47:09 +02001697 if (waitqueue_active(&log_wait))
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +01001698 this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP);
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08001699}
1700
Kay Sievers7ff95542012-05-03 02:29:13 +02001701/* the next printk record to write to the console */
1702static u64 console_seq;
1703static u32 console_idx;
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705/**
Torben Hohnac751ef2011-01-25 15:07:35 -08001706 * console_unlock - unlock the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001708 * Releases the console_lock which the caller holds on the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 * and the console driver list.
1710 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001711 * While the console_lock was held, console output may have been buffered
1712 * by printk(). If this is the case, console_unlock(); emits
1713 * the output prior to releasing the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 *
Kay Sievers7ff95542012-05-03 02:29:13 +02001715 * If there is output waiting, we wake it /dev/kmsg and syslog() users.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001717 * console_unlock(); may be called from any context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001719void console_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
Kay Sievers7ff95542012-05-03 02:29:13 +02001721 static u64 seen_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 unsigned long flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001723 bool wake_klogd = false;
1724 bool retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Linus Torvalds557240b2006-06-19 18:16:01 -07001726 if (console_suspended) {
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001727 up(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07001728 return;
1729 }
Antonino A. Daplas78944e52006-08-05 12:14:16 -07001730
1731 console_may_schedule = 0;
1732
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02001733again:
Kay Sievers7ff95542012-05-03 02:29:13 +02001734 for (;;) {
1735 struct log *msg;
1736 static char text[LOG_LINE_MAX];
1737 size_t len;
1738 int level;
1739
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001740 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02001741 if (seen_seq != log_next_seq) {
1742 wake_klogd = true;
1743 seen_seq = log_next_seq;
1744 }
1745
1746 if (console_seq < log_first_seq) {
1747 /* messages are gone, move to first one */
1748 console_seq = log_first_seq;
1749 console_idx = log_first_idx;
1750 }
1751
1752 if (console_seq == log_next_seq)
1753 break;
1754
1755 msg = log_from_idx(console_idx);
1756 level = msg->level & 7;
1757 len = msg->text_len;
1758 if (len+1 >= sizeof(text))
1759 len = sizeof(text)-1;
1760 memcpy(text, log_text(msg), len);
1761 text[len++] = '\n';
1762
1763 console_idx = log_next(console_idx);
1764 console_seq++;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001765 raw_spin_unlock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02001766
Steven Rostedt81d68a92008-05-12 21:20:42 +02001767 stop_critical_timings(); /* don't trace print latency */
Kay Sievers7ff95542012-05-03 02:29:13 +02001768 call_console_drivers(level, text, len);
Steven Rostedt81d68a92008-05-12 21:20:42 +02001769 start_critical_timings();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 local_irq_restore(flags);
1771 }
1772 console_locked = 0;
Feng Tangfe3d8ad2011-03-22 16:34:21 -07001773
1774 /* Release the exclusive_console once it is used */
1775 if (unlikely(exclusive_console))
1776 exclusive_console = NULL;
1777
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001778 raw_spin_unlock(&logbuf_lock);
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02001779
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02001780 up(&console_sem);
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02001781
1782 /*
1783 * Someone could have filled up the buffer again, so re-check if there's
1784 * something to flush. In case we cannot trylock the console_sem again,
1785 * there's a new owner and the console_unlock() from them will do the
1786 * flush, no worries.
1787 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001788 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02001789 retry = console_seq != log_next_seq;
Peter Zijlstra09dc3cf2011-12-08 14:34:13 -08001790 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
1791
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02001792 if (retry && console_trylock())
1793 goto again;
1794
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08001795 if (wake_klogd)
1796 wake_up_klogd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797}
Torben Hohnac751ef2011-01-25 15:07:35 -08001798EXPORT_SYMBOL(console_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Martin Waitzddad86c2005-11-13 16:08:14 -08001800/**
1801 * console_conditional_schedule - yield the CPU if required
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 *
1803 * If the console code is currently allowed to sleep, and
1804 * if this CPU should yield the CPU to another task, do
1805 * so here.
1806 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001807 * Must be called within console_lock();.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 */
1809void __sched console_conditional_schedule(void)
1810{
1811 if (console_may_schedule)
1812 cond_resched();
1813}
1814EXPORT_SYMBOL(console_conditional_schedule);
1815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816void console_unblank(void)
1817{
1818 struct console *c;
1819
1820 /*
1821 * console_unblank can no longer be called in interrupt context unless
1822 * oops_in_progress is set to 1..
1823 */
1824 if (oops_in_progress) {
1825 if (down_trylock(&console_sem) != 0)
1826 return;
1827 } else
Torben Hohnac751ef2011-01-25 15:07:35 -08001828 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
1830 console_locked = 1;
1831 console_may_schedule = 0;
Robin Getz4d091612009-07-01 21:08:37 -04001832 for_each_console(c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 if ((c->flags & CON_ENABLED) && c->unblank)
1834 c->unblank();
Torben Hohnac751ef2011-01-25 15:07:35 -08001835 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
1838/*
1839 * Return the console tty driver structure and its associated index
1840 */
1841struct tty_driver *console_device(int *index)
1842{
1843 struct console *c;
1844 struct tty_driver *driver = NULL;
1845
Torben Hohnac751ef2011-01-25 15:07:35 -08001846 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04001847 for_each_console(c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 if (!c->device)
1849 continue;
1850 driver = c->device(c, index);
1851 if (driver)
1852 break;
1853 }
Torben Hohnac751ef2011-01-25 15:07:35 -08001854 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 return driver;
1856}
1857
1858/*
1859 * Prevent further output on the passed console device so that (for example)
1860 * serial drivers can disable console output before suspending a port, and can
1861 * re-enable output afterwards.
1862 */
1863void console_stop(struct console *console)
1864{
Torben Hohnac751ef2011-01-25 15:07:35 -08001865 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 console->flags &= ~CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08001867 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868}
1869EXPORT_SYMBOL(console_stop);
1870
1871void console_start(struct console *console)
1872{
Torben Hohnac751ef2011-01-25 15:07:35 -08001873 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 console->flags |= CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08001875 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876}
1877EXPORT_SYMBOL(console_start);
1878
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07001879static int __read_mostly keep_bootcon;
1880
1881static int __init keep_bootcon_setup(char *str)
1882{
1883 keep_bootcon = 1;
1884 printk(KERN_INFO "debug: skip boot console de-registration.\n");
1885
1886 return 0;
1887}
1888
1889early_param("keep_bootcon", keep_bootcon_setup);
1890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891/*
1892 * The console driver calls this routine during kernel initialization
1893 * to register the console printing procedure with printk() and to
1894 * print any messages that were printed by the kernel before the
1895 * console driver was initialized.
Robin Getz4d091612009-07-01 21:08:37 -04001896 *
1897 * This can happen pretty early during the boot process (because of
1898 * early_printk) - sometimes before setup_arch() completes - be careful
1899 * of what kernel features are used - they may not be initialised yet.
1900 *
1901 * There are two types of consoles - bootconsoles (early_printk) and
1902 * "real" consoles (everything which is not a bootconsole) which are
1903 * handled differently.
1904 * - Any number of bootconsoles can be registered at any time.
1905 * - As soon as a "real" console is registered, all bootconsoles
1906 * will be unregistered automatically.
1907 * - Once a "real" console is registered, any attempt to register a
1908 * bootconsoles will be rejected
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 */
Robin Getz4d091612009-07-01 21:08:37 -04001910void register_console(struct console *newcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
Jesper Juhl40dc5652005-10-30 15:02:46 -08001912 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 unsigned long flags;
Robin Getz4d091612009-07-01 21:08:37 -04001914 struct console *bcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Robin Getz4d091612009-07-01 21:08:37 -04001916 /*
1917 * before we register a new CON_BOOT console, make sure we don't
1918 * already have a valid console
1919 */
1920 if (console_drivers && newcon->flags & CON_BOOT) {
1921 /* find the last or real console */
1922 for_each_console(bcon) {
1923 if (!(bcon->flags & CON_BOOT)) {
1924 printk(KERN_INFO "Too late to register bootconsole %s%d\n",
1925 newcon->name, newcon->index);
1926 return;
1927 }
1928 }
Gerd Hoffmann69331af2007-05-08 00:26:49 -07001929 }
1930
Robin Getz4d091612009-07-01 21:08:37 -04001931 if (console_drivers && console_drivers->flags & CON_BOOT)
1932 bcon = console_drivers;
1933
1934 if (preferred_console < 0 || bcon || !console_drivers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 preferred_console = selected_console;
1936
Robin Getz4d091612009-07-01 21:08:37 -04001937 if (newcon->early_setup)
1938 newcon->early_setup();
Yinghai Lu18a8bd92007-07-15 23:37:59 -07001939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 /*
1941 * See if we want to use this console driver. If we
1942 * didn't select a console we take the first one
1943 * that registers here.
1944 */
1945 if (preferred_console < 0) {
Robin Getz4d091612009-07-01 21:08:37 -04001946 if (newcon->index < 0)
1947 newcon->index = 0;
1948 if (newcon->setup == NULL ||
1949 newcon->setup(newcon, NULL) == 0) {
1950 newcon->flags |= CON_ENABLED;
1951 if (newcon->device) {
1952 newcon->flags |= CON_CONSDEV;
Jan Kiszkacd3a1b82008-05-12 21:21:04 +02001953 preferred_console = 0;
1954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 }
1956 }
1957
1958 /*
1959 * See if this console matches one we selected on
1960 * the command line.
1961 */
Jesper Juhl40dc5652005-10-30 15:02:46 -08001962 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0];
1963 i++) {
Robin Getz4d091612009-07-01 21:08:37 -04001964 if (strcmp(console_cmdline[i].name, newcon->name) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 continue;
Robin Getz4d091612009-07-01 21:08:37 -04001966 if (newcon->index >= 0 &&
1967 newcon->index != console_cmdline[i].index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 continue;
Robin Getz4d091612009-07-01 21:08:37 -04001969 if (newcon->index < 0)
1970 newcon->index = console_cmdline[i].index;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001971#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1972 if (console_cmdline[i].brl_options) {
Robin Getz4d091612009-07-01 21:08:37 -04001973 newcon->flags |= CON_BRL;
1974 braille_register_console(newcon,
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001975 console_cmdline[i].index,
1976 console_cmdline[i].options,
1977 console_cmdline[i].brl_options);
1978 return;
1979 }
1980#endif
Robin Getz4d091612009-07-01 21:08:37 -04001981 if (newcon->setup &&
1982 newcon->setup(newcon, console_cmdline[i].options) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 break;
Robin Getz4d091612009-07-01 21:08:37 -04001984 newcon->flags |= CON_ENABLED;
1985 newcon->index = console_cmdline[i].index;
Greg Edwardsab4af032005-06-23 00:09:05 -07001986 if (i == selected_console) {
Robin Getz4d091612009-07-01 21:08:37 -04001987 newcon->flags |= CON_CONSDEV;
Greg Edwardsab4af032005-06-23 00:09:05 -07001988 preferred_console = selected_console;
1989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 break;
1991 }
1992
Robin Getz4d091612009-07-01 21:08:37 -04001993 if (!(newcon->flags & CON_ENABLED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return;
1995
Robin Getz8259cf42009-07-09 13:08:37 -04001996 /*
1997 * If we have a bootconsole, and are switching to a real console,
1998 * don't print everything out again, since when the boot console, and
1999 * the real console are the same physical device, it's annoying to
2000 * see the beginning boot messages twice
2001 */
2002 if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
Robin Getz4d091612009-07-01 21:08:37 -04002003 newcon->flags &= ~CON_PRINTBUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
2005 /*
2006 * Put this console in the list - keep the
2007 * preferred driver at the head of the list.
2008 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002009 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04002010 if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) {
2011 newcon->next = console_drivers;
2012 console_drivers = newcon;
2013 if (newcon->next)
2014 newcon->next->flags &= ~CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 } else {
Robin Getz4d091612009-07-01 21:08:37 -04002016 newcon->next = console_drivers->next;
2017 console_drivers->next = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
Robin Getz4d091612009-07-01 21:08:37 -04002019 if (newcon->flags & CON_PRINTBUFFER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 /*
Torben Hohnac751ef2011-01-25 15:07:35 -08002021 * console_unlock(); will print out the buffered messages
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 * for us.
2023 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002024 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02002025 console_seq = syslog_seq;
2026 console_idx = syslog_idx;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002027 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Feng Tangfe3d8ad2011-03-22 16:34:21 -07002028 /*
2029 * We're about to replay the log buffer. Only do this to the
2030 * just-registered console to avoid excessive message spam to
2031 * the already-registered consoles.
2032 */
2033 exclusive_console = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 }
Torben Hohnac751ef2011-01-25 15:07:35 -08002035 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002036 console_sysfs_notify();
Robin Getz8259cf42009-07-09 13:08:37 -04002037
2038 /*
2039 * By unregistering the bootconsoles after we enable the real console
2040 * we get the "console xxx enabled" message on all the consoles -
2041 * boot consoles, real consoles, etc - this is to ensure that end
2042 * users know there might be something in the kernel's log buffer that
2043 * went to the bootconsole (that they do not see on the real console)
2044 */
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002045 if (bcon &&
2046 ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) &&
2047 !keep_bootcon) {
Robin Getz8259cf42009-07-09 13:08:37 -04002048 /* we need to iterate through twice, to make sure we print
2049 * everything out, before we unregister the console(s)
2050 */
2051 printk(KERN_INFO "console [%s%d] enabled, bootconsole disabled\n",
2052 newcon->name, newcon->index);
2053 for_each_console(bcon)
2054 if (bcon->flags & CON_BOOT)
2055 unregister_console(bcon);
2056 } else {
2057 printk(KERN_INFO "%sconsole [%s%d] enabled\n",
2058 (newcon->flags & CON_BOOT) ? "boot" : "" ,
2059 newcon->name, newcon->index);
2060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
2062EXPORT_SYMBOL(register_console);
2063
Jesper Juhl40dc5652005-10-30 15:02:46 -08002064int unregister_console(struct console *console)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
Jesper Juhl40dc5652005-10-30 15:02:46 -08002066 struct console *a, *b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 int res = 1;
2068
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002069#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
2070 if (console->flags & CON_BRL)
2071 return braille_unregister_console(console);
2072#endif
2073
Torben Hohnac751ef2011-01-25 15:07:35 -08002074 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 if (console_drivers == console) {
2076 console_drivers=console->next;
2077 res = 0;
Benjamin Herrenschmidte9b15b52005-11-23 13:37:44 -08002078 } else if (console_drivers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 for (a=console_drivers->next, b=console_drivers ;
2080 a; b=a, a=b->next) {
2081 if (a == console) {
2082 b->next = a->next;
2083 res = 0;
2084 break;
Jesper Juhl40dc5652005-10-30 15:02:46 -08002085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 }
2087 }
Jesper Juhl40dc5652005-10-30 15:02:46 -08002088
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002089 /*
Greg Edwardsab4af032005-06-23 00:09:05 -07002090 * If this isn't the last console and it has CON_CONSDEV set, we
2091 * need to set it on the next preferred console.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 */
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002093 if (console_drivers != NULL && console->flags & CON_CONSDEV)
Greg Edwardsab4af032005-06-23 00:09:05 -07002094 console_drivers->flags |= CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Torben Hohnac751ef2011-01-25 15:07:35 -08002096 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002097 console_sysfs_notify();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 return res;
2099}
2100EXPORT_SYMBOL(unregister_console);
Matt Mackalld59745c2005-05-01 08:59:02 -07002101
Kevin Cernekee034260d2010-06-03 22:11:25 -07002102static int __init printk_late_init(void)
Robin Getz0c5564b2007-08-20 15:22:47 -04002103{
Robin Getz4d091612009-07-01 21:08:37 -04002104 struct console *con;
2105
2106 for_each_console(con) {
Nishanth Aravamudan4c30c6f2011-08-25 15:59:11 -07002107 if (!keep_bootcon && con->flags & CON_BOOT) {
Robin Getzcb00e992007-08-21 23:14:58 -04002108 printk(KERN_INFO "turn off boot console %s%d\n",
Robin Getz4d091612009-07-01 21:08:37 -04002109 con->name, con->index);
Sonic Zhang42c2c8c2009-08-06 15:58:11 -07002110 unregister_console(con);
Robin Getzcb00e992007-08-21 23:14:58 -04002111 }
Robin Getz0c5564b2007-08-20 15:22:47 -04002112 }
Kevin Cernekee034260d2010-06-03 22:11:25 -07002113 hotcpu_notifier(console_cpu_notify, 0);
Robin Getz0c5564b2007-08-20 15:22:47 -04002114 return 0;
2115}
Kevin Cernekee034260d2010-06-03 22:11:25 -07002116late_initcall(printk_late_init);
Robin Getz0c5564b2007-08-20 15:22:47 -04002117
Joe Perches7ef3d2f2008-02-08 04:21:25 -08002118#if defined CONFIG_PRINTK
Dave Young717115e2008-07-25 01:45:58 -07002119
Peter Zijlstra600e1452012-03-15 12:35:37 +01002120int printk_sched(const char *fmt, ...)
2121{
2122 unsigned long flags;
2123 va_list args;
2124 char *buf;
2125 int r;
2126
2127 local_irq_save(flags);
2128 buf = __get_cpu_var(printk_sched_buf);
2129
2130 va_start(args, fmt);
2131 r = vsnprintf(buf, PRINTK_BUF_SIZE, fmt, args);
2132 va_end(args);
2133
2134 __this_cpu_or(printk_pending, PRINTK_PENDING_SCHED);
2135 local_irq_restore(flags);
2136
2137 return r;
2138}
2139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140/*
2141 * printk rate limiting, lifted from the networking subsystem.
2142 *
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002143 * This enforces a rate limit: not more than 10 kernel messages
2144 * every 5s to make a denial-of-service attack impossible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 */
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002146DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10);
2147
Christian Borntraeger5c828712009-10-23 14:58:11 +02002148int __printk_ratelimit(const char *func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149{
Christian Borntraeger5c828712009-10-23 14:58:11 +02002150 return ___ratelimit(&printk_ratelimit_state, func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151}
Christian Borntraeger5c828712009-10-23 14:58:11 +02002152EXPORT_SYMBOL(__printk_ratelimit);
Andrew Mortonf46c4832006-11-02 22:07:16 -08002153
2154/**
2155 * printk_timed_ratelimit - caller-controlled printk ratelimiting
2156 * @caller_jiffies: pointer to caller's state
2157 * @interval_msecs: minimum interval between prints
2158 *
2159 * printk_timed_ratelimit() returns true if more than @interval_msecs
2160 * milliseconds have elapsed since the last time printk_timed_ratelimit()
2161 * returned true.
2162 */
2163bool printk_timed_ratelimit(unsigned long *caller_jiffies,
2164 unsigned int interval_msecs)
2165{
Guillaume Knispelf2d28a22009-03-17 16:18:42 +01002166 if (*caller_jiffies == 0
2167 || !time_in_range(jiffies, *caller_jiffies,
2168 *caller_jiffies
2169 + msecs_to_jiffies(interval_msecs))) {
2170 *caller_jiffies = jiffies;
Andrew Mortonf46c4832006-11-02 22:07:16 -08002171 return true;
2172 }
2173 return false;
2174}
2175EXPORT_SYMBOL(printk_timed_ratelimit);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002176
2177static DEFINE_SPINLOCK(dump_list_lock);
2178static LIST_HEAD(dump_list);
2179
2180/**
2181 * kmsg_dump_register - register a kernel log dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002182 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002183 *
2184 * Adds a kernel log dumper to the system. The dump callback in the
2185 * structure will be called when the kernel oopses or panics and must be
2186 * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise.
2187 */
2188int kmsg_dump_register(struct kmsg_dumper *dumper)
2189{
2190 unsigned long flags;
2191 int err = -EBUSY;
2192
2193 /* The dump callback needs to be set */
2194 if (!dumper->dump)
2195 return -EINVAL;
2196
2197 spin_lock_irqsave(&dump_list_lock, flags);
2198 /* Don't allow registering multiple times */
2199 if (!dumper->registered) {
2200 dumper->registered = 1;
Huang Yingfb842b02011-01-12 16:59:43 -08002201 list_add_tail_rcu(&dumper->list, &dump_list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002202 err = 0;
2203 }
2204 spin_unlock_irqrestore(&dump_list_lock, flags);
2205
2206 return err;
2207}
2208EXPORT_SYMBOL_GPL(kmsg_dump_register);
2209
2210/**
2211 * kmsg_dump_unregister - unregister a kmsg dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002212 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002213 *
2214 * Removes a dump device from the system. Returns zero on success and
2215 * %-EINVAL otherwise.
2216 */
2217int kmsg_dump_unregister(struct kmsg_dumper *dumper)
2218{
2219 unsigned long flags;
2220 int err = -EINVAL;
2221
2222 spin_lock_irqsave(&dump_list_lock, flags);
2223 if (dumper->registered) {
2224 dumper->registered = 0;
Huang Yingfb842b02011-01-12 16:59:43 -08002225 list_del_rcu(&dumper->list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002226 err = 0;
2227 }
2228 spin_unlock_irqrestore(&dump_list_lock, flags);
Huang Yingfb842b02011-01-12 16:59:43 -08002229 synchronize_rcu();
Simon Kagstrom456b5652009-10-16 14:09:18 +02002230
2231 return err;
2232}
2233EXPORT_SYMBOL_GPL(kmsg_dump_unregister);
2234
Kay Sievers7ff95542012-05-03 02:29:13 +02002235static bool always_kmsg_dump;
2236module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR);
2237
Simon Kagstrom456b5652009-10-16 14:09:18 +02002238/**
2239 * kmsg_dump - dump kernel log to kernel message dumpers.
2240 * @reason: the reason (oops, panic etc) for dumping
2241 *
2242 * Iterate through each of the dump devices and call the oops/panic
2243 * callbacks with the log buffer.
2244 */
2245void kmsg_dump(enum kmsg_dump_reason reason)
2246{
Kay Sievers7ff95542012-05-03 02:29:13 +02002247 u64 idx;
Simon Kagstrom456b5652009-10-16 14:09:18 +02002248 struct kmsg_dumper *dumper;
2249 const char *s1, *s2;
2250 unsigned long l1, l2;
2251 unsigned long flags;
2252
Matthew Garrettc22ab332012-03-05 14:59:10 -08002253 if ((reason > KMSG_DUMP_OOPS) && !always_kmsg_dump)
2254 return;
2255
Simon Kagstrom456b5652009-10-16 14:09:18 +02002256 /* Theoretically, the log could move on after we do this, but
2257 there's not a lot we can do about that. The new messages
2258 will overwrite the start of what we dump. */
Kay Sievers7ff95542012-05-03 02:29:13 +02002259
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002260 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02002261 if (syslog_seq < log_first_seq)
2262 idx = syslog_idx;
2263 else
2264 idx = log_first_idx;
Simon Kagstrom456b5652009-10-16 14:09:18 +02002265
Kay Sievers7ff95542012-05-03 02:29:13 +02002266 if (idx > log_next_idx) {
2267 s1 = log_buf;
2268 l1 = log_next_idx;
Simon Kagstrom456b5652009-10-16 14:09:18 +02002269
Kay Sievers7ff95542012-05-03 02:29:13 +02002270 s2 = log_buf + idx;
2271 l2 = log_buf_len - idx;
Simon Kagstrom456b5652009-10-16 14:09:18 +02002272 } else {
2273 s1 = "";
2274 l1 = 0;
2275
Kay Sievers7ff95542012-05-03 02:29:13 +02002276 s2 = log_buf + idx;
2277 l2 = log_next_idx - idx;
Simon Kagstrom456b5652009-10-16 14:09:18 +02002278 }
Kay Sievers7ff95542012-05-03 02:29:13 +02002279 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002280
Huang Yingfb842b02011-01-12 16:59:43 -08002281 rcu_read_lock();
2282 list_for_each_entry_rcu(dumper, &dump_list, list)
Simon Kagstrom456b5652009-10-16 14:09:18 +02002283 dumper->dump(dumper, reason, s1, l1, s2, l2);
Huang Yingfb842b02011-01-12 16:59:43 -08002284 rcu_read_unlock();
Simon Kagstrom456b5652009-10-16 14:09:18 +02002285}
Joe Perches7ef3d2f2008-02-08 04:21:25 -08002286#endif