blob: c9104feba5ece1b0a6edea7309ed0cdb6b7ab5ff [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 Yingfb842b002011-01-12 16:59:43 -080043#include <linux/rculist.h>
Kay Sieverse11fea92012-05-03 02:29:41 +020044#include <linux/poll.h>
Frederic Weisbecker74876a92012-10-12 18:00:23 +020045#include <linux/irq_work.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#include <asm/uaccess.h>
48
Johannes Berg95100352011-11-24 20:03:08 +010049#define CREATE_TRACE_POINTS
50#include <trace/events/printk.h>
51
Ingo Molnar076f9772008-01-30 13:33:06 +010052/*
53 * Architectures can override it:
54 */
Jiri Slabye17ba732008-05-12 15:44:40 +020055void asmlinkage __attribute__((weak)) early_printk(const char *fmt, ...)
Ingo Molnar076f9772008-01-30 13:33:06 +010056{
57}
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/* printk's without a loglevel use this.. */
Mandeep Singh Baines5af5bcb2011-03-22 16:34:23 -070060#define DEFAULT_MESSAGE_LOGLEVEL CONFIG_DEFAULT_MESSAGE_LOGLEVEL
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/* We show everything that is MORE important than this.. */
63#define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */
64#define DEFAULT_CONSOLE_LOGLEVEL 7 /* anything MORE serious than KERN_DEBUG */
65
66DECLARE_WAIT_QUEUE_HEAD(log_wait);
67
68int console_printk[4] = {
69 DEFAULT_CONSOLE_LOGLEVEL, /* console_loglevel */
70 DEFAULT_MESSAGE_LOGLEVEL, /* default_message_loglevel */
71 MINIMUM_CONSOLE_LOGLEVEL, /* minimum_console_loglevel */
72 DEFAULT_CONSOLE_LOGLEVEL, /* default_console_loglevel */
73};
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
Patrick Pletscher0bbfb7c2007-02-17 20:10:16 +010076 * Low level drivers may need that to know if they can schedule in
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * their unblank() callback or not. So let's export it.
78 */
79int oops_in_progress;
80EXPORT_SYMBOL(oops_in_progress);
81
82/*
83 * console_sem protects the console_drivers list, and also
84 * provides serialisation for access to the entire console
85 * driver system.
86 */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +000087static DEFINE_SEMAPHORE(console_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088struct console *console_drivers;
Ingo Molnara29d1cf2008-06-02 13:19:08 +020089EXPORT_SYMBOL_GPL(console_drivers);
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/*
92 * This is used for debugging the mess that is the VT code by
93 * keeping track if we have the console semaphore held. It's
94 * definitely not the perfect debug tool (we don't know if _WE_
95 * hold it are racing, but it helps tracking those weird code
96 * path in the console code where we end up in places I want
97 * locked without the console sempahore held
98 */
Linus Torvalds557240b2006-06-19 18:16:01 -070099static int console_locked, console_suspended;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101/*
Feng Tangfe3d8ad2011-03-22 16:34:21 -0700102 * If exclusive_console is non-NULL then only this console is to be printed to.
103 */
104static struct console *exclusive_console;
105
106/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * Array of consoles built from command line options (console=)
108 */
109struct console_cmdline
110{
111 char name[8]; /* Name of the driver */
112 int index; /* Minor dev. to use */
113 char *options; /* Options for the driver */
Samuel Thibaultf7511d52008-04-30 00:54:51 -0700114#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
115 char *brl_options; /* Options for braille driver */
116#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117};
118
119#define MAX_CMDLINECONSOLES 8
120
121static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
122static int selected_console = -1;
123static int preferred_console = -1;
Markus Armbruster9e124fe2008-05-26 23:31:07 +0100124int console_set_on_cmdline;
125EXPORT_SYMBOL(console_set_on_cmdline);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127/* Flag: console code may call schedule() */
128static int console_may_schedule;
129
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 Sievers084681d2012-06-28 09:38:53 +0200197enum log_flags {
Kay Sievers5becfb12012-07-09 12:15:42 -0700198 LOG_NOCONS = 1, /* already flushed, do not print to console */
199 LOG_NEWLINE = 2, /* text ended with a newline */
200 LOG_PREFIX = 4, /* text started with a prefix */
201 LOG_CONT = 8, /* text is a fragment of a continuation line */
Kay Sievers084681d2012-06-28 09:38:53 +0200202};
203
Kay Sievers7ff95542012-05-03 02:29:13 +0200204struct log {
205 u64 ts_nsec; /* timestamp in nanoseconds */
206 u16 len; /* length of entire record */
207 u16 text_len; /* length of text buffer */
208 u16 dict_len; /* length of dictionary buffer */
Kay Sievers084681d2012-06-28 09:38:53 +0200209 u8 facility; /* syslog facility */
210 u8 flags:5; /* internal record flags */
211 u8 level:3; /* syslog level */
Kay Sievers7ff95542012-05-03 02:29:13 +0200212};
213
214/*
215 * The logbuf_lock protects kmsg buffer, indices, counters. It is also
216 * used in interesting ways to provide interlocking in console_unlock();
217 */
218static DEFINE_RAW_SPINLOCK(logbuf_lock);
219
Kay Sievers96efedf2012-07-16 18:35:29 -0700220#ifdef CONFIG_PRINTK
Kay Sievers7f3a7812012-05-09 01:37:51 +0200221/* the next printk record to read by syslog(READ) or /proc/kmsg */
222static u64 syslog_seq;
223static u32 syslog_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -0700224static enum log_flags syslog_prev;
Kay Sieverseb02dac2012-07-09 10:05:10 -0700225static size_t syslog_partial;
Kay Sievers7f3a7812012-05-09 01:37:51 +0200226
227/* index and sequence number of the first record stored in the buffer */
228static u64 log_first_seq;
229static u32 log_first_idx;
230
231/* index and sequence number of the next record to store in the buffer */
232static u64 log_next_seq;
Kay Sievers7f3a7812012-05-09 01:37:51 +0200233static u32 log_next_idx;
234
Kay Sieverseab07262012-07-16 18:35:30 -0700235/* the next printk record to write to the console */
236static u64 console_seq;
237static u32 console_idx;
238static enum log_flags console_prev;
239
Kay Sievers7f3a7812012-05-09 01:37:51 +0200240/* the next printk record to read after the last 'clear' command */
241static u64 clear_seq;
242static u32 clear_idx;
Kay Sievers7ff95542012-05-03 02:29:13 +0200243
Kay Sievers70498252012-07-16 18:35:29 -0700244#define PREFIX_MAX 32
245#define LOG_LINE_MAX 1024 - PREFIX_MAX
Kay Sievers7ff95542012-05-03 02:29:13 +0200246
247/* record buffer */
Andrew Lunn6ebb0172012-06-05 08:52:34 +0200248#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
Stephen Warrenf8450fc2012-05-10 16:14:33 -0600249#define LOG_ALIGN 4
250#else
Andrew Lunn6ebb0172012-06-05 08:52:34 +0200251#define LOG_ALIGN __alignof__(struct log)
Stephen Warrenf8450fc2012-05-10 16:14:33 -0600252#endif
Kay Sievers7ff95542012-05-03 02:29:13 +0200253#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
Stephen Warrenf8450fc2012-05-10 16:14:33 -0600254static char __log_buf[__LOG_BUF_LEN] __aligned(LOG_ALIGN);
Matt Mackalld59745c2005-05-01 08:59:02 -0700255static char *log_buf = __log_buf;
Kay Sievers7ff95542012-05-03 02:29:13 +0200256static u32 log_buf_len = __LOG_BUF_LEN;
257
Kay Sievers7f3a7812012-05-09 01:37:51 +0200258/* cpu currently holding logbuf_lock */
259static volatile unsigned int logbuf_cpu = UINT_MAX;
Kay Sievers7ff95542012-05-03 02:29:13 +0200260
261/* human readable text of the record */
262static char *log_text(const struct log *msg)
263{
264 return (char *)msg + sizeof(struct log);
265}
266
267/* optional key/value pair dictionary attached to the record */
268static char *log_dict(const struct log *msg)
269{
270 return (char *)msg + sizeof(struct log) + msg->text_len;
271}
272
273/* get record by index; idx must point to valid msg */
274static struct log *log_from_idx(u32 idx)
275{
276 struct log *msg = (struct log *)(log_buf + idx);
277
278 /*
279 * A length == 0 record is the end of buffer marker. Wrap around and
280 * read the message at the start of the buffer.
281 */
282 if (!msg->len)
283 return (struct log *)log_buf;
284 return msg;
285}
286
287/* get next record; idx must point to valid msg */
288static u32 log_next(u32 idx)
289{
290 struct log *msg = (struct log *)(log_buf + idx);
291
292 /* length == 0 indicates the end of the buffer; wrap */
293 /*
294 * A length == 0 record is the end of buffer marker. Wrap around and
295 * read the message at the start of the buffer as *this* one, and
296 * return the one after that.
297 */
298 if (!msg->len) {
299 msg = (struct log *)log_buf;
300 return msg->len;
301 }
302 return idx + msg->len;
303}
304
Kay Sievers7ff95542012-05-03 02:29:13 +0200305/* insert record into the buffer, discard old ones, update heads */
306static void log_store(int facility, int level,
Kay Sievers084681d2012-06-28 09:38:53 +0200307 enum log_flags flags, u64 ts_nsec,
Kay Sievers7ff95542012-05-03 02:29:13 +0200308 const char *dict, u16 dict_len,
309 const char *text, u16 text_len)
310{
311 struct log *msg;
312 u32 size, pad_len;
313
314 /* number of '\0' padding bytes to next message */
315 size = sizeof(struct log) + text_len + dict_len;
316 pad_len = (-size) & (LOG_ALIGN - 1);
317 size += pad_len;
318
319 while (log_first_seq < log_next_seq) {
320 u32 free;
321
322 if (log_next_idx > log_first_idx)
323 free = max(log_buf_len - log_next_idx, log_first_idx);
324 else
325 free = log_first_idx - log_next_idx;
326
327 if (free > size + sizeof(struct log))
328 break;
329
330 /* drop old messages until we have enough contiuous space */
331 log_first_idx = log_next(log_first_idx);
332 log_first_seq++;
333 }
334
335 if (log_next_idx + size + sizeof(struct log) >= log_buf_len) {
336 /*
337 * This message + an additional empty header does not fit
338 * at the end of the buffer. Add an empty header with len == 0
339 * to signify a wrap around.
340 */
341 memset(log_buf + log_next_idx, 0, sizeof(struct log));
342 log_next_idx = 0;
343 }
344
345 /* fill message */
346 msg = (struct log *)(log_buf + log_next_idx);
347 memcpy(log_text(msg), text, text_len);
348 msg->text_len = text_len;
349 memcpy(log_dict(msg), dict, dict_len);
350 msg->dict_len = dict_len;
Kay Sievers084681d2012-06-28 09:38:53 +0200351 msg->facility = facility;
352 msg->level = level & 7;
353 msg->flags = flags & 0x1f;
354 if (ts_nsec > 0)
355 msg->ts_nsec = ts_nsec;
356 else
357 msg->ts_nsec = local_clock();
Kay Sievers7ff95542012-05-03 02:29:13 +0200358 memset(log_dict(msg) + dict_len, 0, pad_len);
359 msg->len = sizeof(struct log) + text_len + dict_len + pad_len;
360
361 /* insert message */
362 log_next_idx += msg->len;
363 log_next_seq++;
364}
Matt Mackalld59745c2005-05-01 08:59:02 -0700365
Kay Sieverse11fea92012-05-03 02:29:41 +0200366/* /dev/kmsg - userspace message inject/listen interface */
367struct devkmsg_user {
368 u64 seq;
369 u32 idx;
Kay Sieversd39f3d72012-07-16 18:35:30 -0700370 enum log_flags prev;
Kay Sieverse11fea92012-05-03 02:29:41 +0200371 struct mutex lock;
372 char buf[8192];
373};
374
375static ssize_t devkmsg_writev(struct kiocb *iocb, const struct iovec *iv,
376 unsigned long count, loff_t pos)
377{
378 char *buf, *line;
379 int i;
380 int level = default_message_loglevel;
381 int facility = 1; /* LOG_USER */
382 size_t len = iov_length(iv, count);
383 ssize_t ret = len;
384
385 if (len > LOG_LINE_MAX)
386 return -EINVAL;
387 buf = kmalloc(len+1, GFP_KERNEL);
388 if (buf == NULL)
389 return -ENOMEM;
390
391 line = buf;
392 for (i = 0; i < count; i++) {
Kay Sieverscdf53442012-07-30 14:40:08 -0700393 if (copy_from_user(line, iv[i].iov_base, iv[i].iov_len)) {
394 ret = -EFAULT;
Kay Sieverse11fea92012-05-03 02:29:41 +0200395 goto out;
Kay Sieverscdf53442012-07-30 14:40:08 -0700396 }
Kay Sieverse11fea92012-05-03 02:29:41 +0200397 line += iv[i].iov_len;
398 }
399
400 /*
401 * Extract and skip the syslog prefix <[0-9]*>. Coming from userspace
402 * the decimal value represents 32bit, the lower 3 bit are the log
403 * level, the rest are the log facility.
404 *
405 * If no prefix or no userspace facility is specified, we
406 * enforce LOG_USER, to be able to reliably distinguish
407 * kernel-generated messages from userspace-injected ones.
408 */
409 line = buf;
410 if (line[0] == '<') {
411 char *endp = NULL;
412
413 i = simple_strtoul(line+1, &endp, 10);
414 if (endp && endp[0] == '>') {
415 level = i & 7;
416 if (i >> 3)
417 facility = i >> 3;
418 endp++;
419 len -= endp - line;
420 line = endp;
421 }
422 }
423 line[len] = '\0';
424
425 printk_emit(facility, level, NULL, 0, "%s", line);
426out:
427 kfree(buf);
428 return ret;
429}
430
431static ssize_t devkmsg_read(struct file *file, char __user *buf,
432 size_t count, loff_t *ppos)
433{
434 struct devkmsg_user *user = file->private_data;
435 struct log *msg;
Kay Sievers5fc324902012-05-08 13:04:17 +0200436 u64 ts_usec;
Kay Sieverse11fea92012-05-03 02:29:41 +0200437 size_t i;
Kay Sieversd39f3d72012-07-16 18:35:30 -0700438 char cont = '-';
Kay Sieverse11fea92012-05-03 02:29:41 +0200439 size_t len;
440 ssize_t ret;
441
442 if (!user)
443 return -EBADF;
444
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +0800445 ret = mutex_lock_interruptible(&user->lock);
446 if (ret)
447 return ret;
liu chuansheng5c53d812012-07-06 09:50:08 -0700448 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200449 while (user->seq == log_next_seq) {
450 if (file->f_flags & O_NONBLOCK) {
451 ret = -EAGAIN;
liu chuansheng5c53d812012-07-06 09:50:08 -0700452 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200453 goto out;
454 }
455
liu chuansheng5c53d812012-07-06 09:50:08 -0700456 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200457 ret = wait_event_interruptible(log_wait,
458 user->seq != log_next_seq);
459 if (ret)
460 goto out;
liu chuansheng5c53d812012-07-06 09:50:08 -0700461 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200462 }
463
464 if (user->seq < log_first_seq) {
465 /* our last seen message is gone, return error and reset */
466 user->idx = log_first_idx;
467 user->seq = log_first_seq;
468 ret = -EPIPE;
liu chuansheng5c53d812012-07-06 09:50:08 -0700469 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200470 goto out;
471 }
472
473 msg = log_from_idx(user->idx);
Kay Sievers5fc324902012-05-08 13:04:17 +0200474 ts_usec = msg->ts_nsec;
475 do_div(ts_usec, 1000);
Kay Sieversd39f3d72012-07-16 18:35:30 -0700476
477 /*
478 * If we couldn't merge continuation line fragments during the print,
479 * export the stored flags to allow an optional external merge of the
480 * records. Merging the records isn't always neccessarily correct, like
481 * when we hit a race during printing. In most cases though, it produces
482 * better readable output. 'c' in the record flags mark the first
483 * fragment of a line, '+' the following.
484 */
485 if (msg->flags & LOG_CONT && !(user->prev & LOG_CONT))
486 cont = 'c';
487 else if ((msg->flags & LOG_CONT) ||
488 ((user->prev & LOG_CONT) && !(msg->flags & LOG_PREFIX)))
489 cont = '+';
490
491 len = sprintf(user->buf, "%u,%llu,%llu,%c;",
492 (msg->facility << 3) | msg->level,
493 user->seq, ts_usec, cont);
494 user->prev = msg->flags;
Kay Sieverse11fea92012-05-03 02:29:41 +0200495
496 /* escape non-printable characters */
497 for (i = 0; i < msg->text_len; i++) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200498 unsigned char c = log_text(msg)[i];
Kay Sieverse11fea92012-05-03 02:29:41 +0200499
Kay Sieverse3f5a5f2012-07-06 09:50:09 -0700500 if (c < ' ' || c >= 127 || c == '\\')
Kay Sieverse11fea92012-05-03 02:29:41 +0200501 len += sprintf(user->buf + len, "\\x%02x", c);
502 else
503 user->buf[len++] = c;
504 }
505 user->buf[len++] = '\n';
506
507 if (msg->dict_len) {
508 bool line = true;
509
510 for (i = 0; i < msg->dict_len; i++) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200511 unsigned char c = log_dict(msg)[i];
Kay Sieverse11fea92012-05-03 02:29:41 +0200512
513 if (line) {
514 user->buf[len++] = ' ';
515 line = false;
516 }
517
518 if (c == '\0') {
519 user->buf[len++] = '\n';
520 line = true;
521 continue;
522 }
523
Kay Sieverse3f5a5f2012-07-06 09:50:09 -0700524 if (c < ' ' || c >= 127 || c == '\\') {
Kay Sieverse11fea92012-05-03 02:29:41 +0200525 len += sprintf(user->buf + len, "\\x%02x", c);
526 continue;
527 }
528
529 user->buf[len++] = c;
530 }
531 user->buf[len++] = '\n';
532 }
533
534 user->idx = log_next(user->idx);
535 user->seq++;
liu chuansheng5c53d812012-07-06 09:50:08 -0700536 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200537
538 if (len > count) {
539 ret = -EINVAL;
540 goto out;
541 }
542
543 if (copy_to_user(buf, user->buf, len)) {
544 ret = -EFAULT;
545 goto out;
546 }
547 ret = len;
548out:
549 mutex_unlock(&user->lock);
550 return ret;
551}
552
553static loff_t devkmsg_llseek(struct file *file, loff_t offset, int whence)
554{
555 struct devkmsg_user *user = file->private_data;
556 loff_t ret = 0;
557
558 if (!user)
559 return -EBADF;
560 if (offset)
561 return -ESPIPE;
562
liu chuansheng5c53d812012-07-06 09:50:08 -0700563 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200564 switch (whence) {
565 case SEEK_SET:
566 /* the first record */
567 user->idx = log_first_idx;
568 user->seq = log_first_seq;
569 break;
570 case SEEK_DATA:
571 /*
572 * The first record after the last SYSLOG_ACTION_CLEAR,
573 * like issued by 'dmesg -c'. Reading /dev/kmsg itself
574 * changes no global state, and does not clear anything.
575 */
576 user->idx = clear_idx;
577 user->seq = clear_seq;
578 break;
579 case SEEK_END:
580 /* after the last record */
581 user->idx = log_next_idx;
582 user->seq = log_next_seq;
583 break;
584 default:
585 ret = -EINVAL;
586 }
liu chuansheng5c53d812012-07-06 09:50:08 -0700587 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200588 return ret;
589}
590
591static unsigned int devkmsg_poll(struct file *file, poll_table *wait)
592{
593 struct devkmsg_user *user = file->private_data;
594 int ret = 0;
595
596 if (!user)
597 return POLLERR|POLLNVAL;
598
599 poll_wait(file, &log_wait, wait);
600
liu chuansheng5c53d812012-07-06 09:50:08 -0700601 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200602 if (user->seq < log_next_seq) {
603 /* return error when data has vanished underneath us */
604 if (user->seq < log_first_seq)
605 ret = POLLIN|POLLRDNORM|POLLERR|POLLPRI;
606 ret = POLLIN|POLLRDNORM;
607 }
liu chuansheng5c53d812012-07-06 09:50:08 -0700608 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200609
610 return ret;
611}
612
613static int devkmsg_open(struct inode *inode, struct file *file)
614{
615 struct devkmsg_user *user;
616 int err;
617
618 /* write-only does not need any file context */
619 if ((file->f_flags & O_ACCMODE) == O_WRONLY)
620 return 0;
621
622 err = security_syslog(SYSLOG_ACTION_READ_ALL);
623 if (err)
624 return err;
625
626 user = kmalloc(sizeof(struct devkmsg_user), GFP_KERNEL);
627 if (!user)
628 return -ENOMEM;
629
630 mutex_init(&user->lock);
631
liu chuansheng5c53d812012-07-06 09:50:08 -0700632 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200633 user->idx = log_first_idx;
634 user->seq = log_first_seq;
liu chuansheng5c53d812012-07-06 09:50:08 -0700635 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200636
637 file->private_data = user;
638 return 0;
639}
640
641static int devkmsg_release(struct inode *inode, struct file *file)
642{
643 struct devkmsg_user *user = file->private_data;
644
645 if (!user)
646 return 0;
647
648 mutex_destroy(&user->lock);
649 kfree(user);
650 return 0;
651}
652
653const struct file_operations kmsg_fops = {
654 .open = devkmsg_open,
655 .read = devkmsg_read,
656 .aio_write = devkmsg_writev,
657 .llseek = devkmsg_llseek,
658 .poll = devkmsg_poll,
659 .release = devkmsg_release,
660};
661
Neil Horman04d491a2009-04-02 16:58:57 -0700662#ifdef CONFIG_KEXEC
663/*
664 * This appends the listed symbols to /proc/vmcoreinfo
665 *
666 * /proc/vmcoreinfo is used by various utiilties, like crash and makedumpfile to
667 * obtain access to symbols that are otherwise very difficult to locate. These
668 * symbols are specifically used so that utilities can access and extract the
669 * dmesg log from a vmcore file after a crash.
670 */
671void log_buf_kexec_setup(void)
672{
673 VMCOREINFO_SYMBOL(log_buf);
Neil Horman04d491a2009-04-02 16:58:57 -0700674 VMCOREINFO_SYMBOL(log_buf_len);
Kay Sievers7ff95542012-05-03 02:29:13 +0200675 VMCOREINFO_SYMBOL(log_first_idx);
676 VMCOREINFO_SYMBOL(log_next_idx);
Vivek Goyal67914572012-07-18 13:18:12 -0400677 /*
678 * Export struct log size and field offsets. User space tools can
679 * parse it and detect any changes to structure down the line.
680 */
681 VMCOREINFO_STRUCT_SIZE(log);
682 VMCOREINFO_OFFSET(log, ts_nsec);
683 VMCOREINFO_OFFSET(log, len);
684 VMCOREINFO_OFFSET(log, text_len);
685 VMCOREINFO_OFFSET(log, dict_len);
Neil Horman04d491a2009-04-02 16:58:57 -0700686}
687#endif
688
Mike Travis162a7e72011-05-24 17:13:20 -0700689/* requested log_buf_len from kernel cmdline */
690static unsigned long __initdata new_log_buf_len;
691
692/* save requested log_buf_len since it's too early to process it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693static int __init log_buf_len_setup(char *str)
694{
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800695 unsigned size = memparse(str, &str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 if (size)
698 size = roundup_pow_of_two(size);
Mike Travis162a7e72011-05-24 17:13:20 -0700699 if (size > log_buf_len)
700 new_log_buf_len = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Mike Travis162a7e72011-05-24 17:13:20 -0700702 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
Mike Travis162a7e72011-05-24 17:13:20 -0700704early_param("log_buf_len", log_buf_len_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Mike Travis162a7e72011-05-24 17:13:20 -0700706void __init setup_log_buf(int early)
707{
708 unsigned long flags;
Mike Travis162a7e72011-05-24 17:13:20 -0700709 char *new_log_buf;
710 int free;
711
712 if (!new_log_buf_len)
713 return;
714
715 if (early) {
716 unsigned long mem;
717
718 mem = memblock_alloc(new_log_buf_len, PAGE_SIZE);
Tejun Heo1f5026a2011-07-12 09:58:09 +0200719 if (!mem)
Mike Travis162a7e72011-05-24 17:13:20 -0700720 return;
721 new_log_buf = __va(mem);
722 } else {
723 new_log_buf = alloc_bootmem_nopanic(new_log_buf_len);
724 }
725
726 if (unlikely(!new_log_buf)) {
727 pr_err("log_buf_len: %ld bytes not available\n",
728 new_log_buf_len);
729 return;
730 }
731
Thomas Gleixner07354eb2009-07-25 17:50:36 +0200732 raw_spin_lock_irqsave(&logbuf_lock, flags);
Mike Travis162a7e72011-05-24 17:13:20 -0700733 log_buf_len = new_log_buf_len;
734 log_buf = new_log_buf;
735 new_log_buf_len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +0200736 free = __LOG_BUF_LEN - log_next_idx;
737 memcpy(log_buf, __log_buf, __LOG_BUF_LEN);
Thomas Gleixner07354eb2009-07-25 17:50:36 +0200738 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Mike Travis162a7e72011-05-24 17:13:20 -0700739
740 pr_info("log_buf_len: %d\n", log_buf_len);
741 pr_info("early log buf free: %d(%d%%)\n",
742 free, (free * 100) / __LOG_BUF_LEN);
743}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700745#ifdef CONFIG_BOOT_PRINTK_DELAY
746
Namhyung Kim674dff62010-10-26 14:22:48 -0700747static int boot_delay; /* msecs delay after each printk during bootup */
Dave Young3a3b6ed2009-09-22 16:43:31 -0700748static unsigned long long loops_per_msec; /* based on boot_delay */
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700749
750static int __init boot_delay_setup(char *str)
751{
752 unsigned long lpj;
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700753
754 lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */
755 loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
756
757 get_option(&str, &boot_delay);
758 if (boot_delay > 10 * 1000)
759 boot_delay = 0;
760
Dave Young3a3b6ed2009-09-22 16:43:31 -0700761 pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
762 "HZ: %d, loops_per_msec: %llu\n",
763 boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700764 return 1;
765}
766__setup("boot_delay=", boot_delay_setup);
767
768static void boot_delay_msec(void)
769{
770 unsigned long long k;
771 unsigned long timeout;
772
773 if (boot_delay == 0 || system_state != SYSTEM_BOOTING)
774 return;
775
Dave Young3a3b6ed2009-09-22 16:43:31 -0700776 k = (unsigned long long)loops_per_msec * boot_delay;
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700777
778 timeout = jiffies + msecs_to_jiffies(boot_delay);
779 while (k) {
780 k--;
781 cpu_relax();
782 /*
783 * use (volatile) jiffies to prevent
784 * compiler reduction; loop termination via jiffies
785 * is secondary and may or may not happen.
786 */
787 if (time_after(jiffies, timeout))
788 break;
789 touch_nmi_watchdog();
790 }
791}
792#else
793static inline void boot_delay_msec(void)
794{
795}
796#endif
797
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800798#ifdef CONFIG_SECURITY_DMESG_RESTRICT
799int dmesg_restrict = 1;
800#else
801int dmesg_restrict;
802#endif
803
Linus Torvaldsee24aeb2011-02-10 17:53:55 -0800804static int syslog_action_restricted(int type)
805{
806 if (dmesg_restrict)
807 return 1;
808 /* Unless restricted, we allow "read all" and "get buffer size" for everybody */
809 return type != SYSLOG_ACTION_READ_ALL && type != SYSLOG_ACTION_SIZE_BUFFER;
810}
811
812static int check_syslog_permissions(int type, bool from_file)
813{
814 /*
815 * If this is from /proc/kmsg and we've already opened it, then we've
816 * already done the capabilities checks at open time.
817 */
818 if (from_file && type != SYSLOG_ACTION_OPEN)
819 return 0;
820
821 if (syslog_action_restricted(type)) {
822 if (capable(CAP_SYSLOG))
823 return 0;
824 /* For historical reasons, accept CAP_SYS_ADMIN too, with a warning */
825 if (capable(CAP_SYS_ADMIN)) {
Jonathan Niederf2c0d022011-08-08 06:22:43 +0200826 printk_once(KERN_WARNING "%s (%d): "
827 "Attempt to access syslog with CAP_SYS_ADMIN "
828 "but no CAP_SYSLOG (deprecated).\n",
829 current->comm, task_pid_nr(current));
Linus Torvaldsee24aeb2011-02-10 17:53:55 -0800830 return 0;
831 }
832 return -EPERM;
833 }
834 return 0;
835}
836
Kay Sievers7ff95542012-05-03 02:29:13 +0200837#if defined(CONFIG_PRINTK_TIME)
838static bool printk_time = 1;
839#else
840static bool printk_time;
841#endif
842module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
843
Kay Sievers084681d2012-06-28 09:38:53 +0200844static size_t print_time(u64 ts, char *buf)
845{
846 unsigned long rem_nsec;
847
848 if (!printk_time)
849 return 0;
850
851 if (!buf)
852 return 15;
853
854 rem_nsec = do_div(ts, 1000000000);
855 return sprintf(buf, "[%5lu.%06lu] ",
856 (unsigned long)ts, rem_nsec / 1000);
857}
858
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200859static size_t print_prefix(const struct log *msg, bool syslog, char *buf)
Kay Sievers649e6ee2012-05-10 04:30:45 +0200860{
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200861 size_t len = 0;
Kay Sievers43a73a52012-07-06 09:50:09 -0700862 unsigned int prefix = (msg->facility << 3) | msg->level;
Kay Sievers649e6ee2012-05-10 04:30:45 +0200863
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200864 if (syslog) {
865 if (buf) {
Kay Sievers43a73a52012-07-06 09:50:09 -0700866 len += sprintf(buf, "<%u>", prefix);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200867 } else {
868 len += 3;
Kay Sievers43a73a52012-07-06 09:50:09 -0700869 if (prefix > 999)
870 len += 3;
871 else if (prefix > 99)
872 len += 2;
873 else if (prefix > 9)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200874 len++;
875 }
Kay Sievers7ff95542012-05-03 02:29:13 +0200876 }
877
Kay Sievers084681d2012-06-28 09:38:53 +0200878 len += print_time(msg->ts_nsec, buf ? buf + len : NULL);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200879 return len;
880}
881
Kay Sievers5becfb12012-07-09 12:15:42 -0700882static size_t msg_print_text(const struct log *msg, enum log_flags prev,
883 bool syslog, char *buf, size_t size)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200884{
885 const char *text = log_text(msg);
886 size_t text_size = msg->text_len;
Kay Sievers5becfb12012-07-09 12:15:42 -0700887 bool prefix = true;
888 bool newline = true;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200889 size_t len = 0;
890
Kay Sievers5becfb12012-07-09 12:15:42 -0700891 if ((prev & LOG_CONT) && !(msg->flags & LOG_PREFIX))
892 prefix = false;
893
894 if (msg->flags & LOG_CONT) {
895 if ((prev & LOG_CONT) && !(prev & LOG_NEWLINE))
896 prefix = false;
897
898 if (!(msg->flags & LOG_NEWLINE))
899 newline = false;
900 }
901
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200902 do {
903 const char *next = memchr(text, '\n', text_size);
904 size_t text_len;
905
906 if (next) {
907 text_len = next - text;
908 next++;
909 text_size -= next - text;
910 } else {
911 text_len = text_size;
912 }
913
914 if (buf) {
915 if (print_prefix(msg, syslog, NULL) +
Kay Sievers70498252012-07-16 18:35:29 -0700916 text_len + 1 >= size - len)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200917 break;
918
Kay Sievers5becfb12012-07-09 12:15:42 -0700919 if (prefix)
920 len += print_prefix(msg, syslog, buf + len);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200921 memcpy(buf + len, text, text_len);
922 len += text_len;
Kay Sievers5becfb12012-07-09 12:15:42 -0700923 if (next || newline)
924 buf[len++] = '\n';
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200925 } else {
926 /* SYSLOG_ACTION_* buffer size only calculation */
Kay Sievers5becfb12012-07-09 12:15:42 -0700927 if (prefix)
928 len += print_prefix(msg, syslog, NULL);
929 len += text_len;
930 if (next || newline)
931 len++;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200932 }
933
Kay Sievers5becfb12012-07-09 12:15:42 -0700934 prefix = true;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200935 text = next;
936 } while (text);
937
Kay Sievers7ff95542012-05-03 02:29:13 +0200938 return len;
939}
940
941static int syslog_print(char __user *buf, int size)
942{
943 char *text;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200944 struct log *msg;
Jan Beulich116e90b2012-06-22 16:36:09 +0100945 int len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +0200946
Kay Sievers70498252012-07-16 18:35:29 -0700947 text = kmalloc(LOG_LINE_MAX + PREFIX_MAX, GFP_KERNEL);
Kay Sievers7ff95542012-05-03 02:29:13 +0200948 if (!text)
949 return -ENOMEM;
950
Jan Beulich116e90b2012-06-22 16:36:09 +0100951 while (size > 0) {
952 size_t n;
Kay Sieverseb02dac2012-07-09 10:05:10 -0700953 size_t skip;
Kay Sievers7ff95542012-05-03 02:29:13 +0200954
Jan Beulich116e90b2012-06-22 16:36:09 +0100955 raw_spin_lock_irq(&logbuf_lock);
956 if (syslog_seq < log_first_seq) {
957 /* messages are gone, move to first one */
958 syslog_seq = log_first_seq;
959 syslog_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -0700960 syslog_prev = 0;
Kay Sieverseb02dac2012-07-09 10:05:10 -0700961 syslog_partial = 0;
Jan Beulich116e90b2012-06-22 16:36:09 +0100962 }
963 if (syslog_seq == log_next_seq) {
964 raw_spin_unlock_irq(&logbuf_lock);
965 break;
966 }
Kay Sieverseb02dac2012-07-09 10:05:10 -0700967
968 skip = syslog_partial;
Jan Beulich116e90b2012-06-22 16:36:09 +0100969 msg = log_from_idx(syslog_idx);
Kay Sievers70498252012-07-16 18:35:29 -0700970 n = msg_print_text(msg, syslog_prev, true, text,
971 LOG_LINE_MAX + PREFIX_MAX);
Kay Sieverseb02dac2012-07-09 10:05:10 -0700972 if (n - syslog_partial <= size) {
973 /* message fits into buffer, move forward */
Jan Beulich116e90b2012-06-22 16:36:09 +0100974 syslog_idx = log_next(syslog_idx);
975 syslog_seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -0700976 syslog_prev = msg->flags;
Kay Sieverseb02dac2012-07-09 10:05:10 -0700977 n -= syslog_partial;
978 syslog_partial = 0;
979 } else if (!len){
980 /* partial read(), remember position */
981 n = size;
982 syslog_partial += n;
Jan Beulich116e90b2012-06-22 16:36:09 +0100983 } else
984 n = 0;
985 raw_spin_unlock_irq(&logbuf_lock);
986
987 if (!n)
988 break;
989
Kay Sieverseb02dac2012-07-09 10:05:10 -0700990 if (copy_to_user(buf, text + skip, n)) {
Jan Beulich116e90b2012-06-22 16:36:09 +0100991 if (!len)
992 len = -EFAULT;
993 break;
994 }
Kay Sieverseb02dac2012-07-09 10:05:10 -0700995
996 len += n;
997 size -= n;
998 buf += n;
Jan Beulich116e90b2012-06-22 16:36:09 +0100999 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001000
1001 kfree(text);
1002 return len;
1003}
1004
1005static int syslog_print_all(char __user *buf, int size, bool clear)
1006{
1007 char *text;
1008 int len = 0;
1009
Kay Sievers70498252012-07-16 18:35:29 -07001010 text = kmalloc(LOG_LINE_MAX + PREFIX_MAX, GFP_KERNEL);
Kay Sievers7ff95542012-05-03 02:29:13 +02001011 if (!text)
1012 return -ENOMEM;
1013
1014 raw_spin_lock_irq(&logbuf_lock);
1015 if (buf) {
1016 u64 next_seq;
1017 u64 seq;
1018 u32 idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001019 enum log_flags prev;
Kay Sievers7ff95542012-05-03 02:29:13 +02001020
1021 if (clear_seq < log_first_seq) {
1022 /* messages are gone, move to first available one */
1023 clear_seq = log_first_seq;
1024 clear_idx = log_first_idx;
1025 }
1026
1027 /*
1028 * Find first record that fits, including all following records,
1029 * into the user-provided buffer for this dump.
Kay Sieverse2ae7152012-06-15 14:07:51 +02001030 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001031 seq = clear_seq;
1032 idx = clear_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001033 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001034 while (seq < log_next_seq) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001035 struct log *msg = log_from_idx(idx);
1036
Kay Sievers5becfb12012-07-09 12:15:42 -07001037 len += msg_print_text(msg, prev, true, NULL, 0);
Jeff Mahoneye3756472012-08-10 15:07:09 -04001038 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001039 idx = log_next(idx);
1040 seq++;
1041 }
Kay Sieverse2ae7152012-06-15 14:07:51 +02001042
1043 /* move first record forward until length fits into the buffer */
Kay Sievers7ff95542012-05-03 02:29:13 +02001044 seq = clear_seq;
1045 idx = clear_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001046 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001047 while (len > size && seq < log_next_seq) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001048 struct log *msg = log_from_idx(idx);
1049
Kay Sievers5becfb12012-07-09 12:15:42 -07001050 len -= msg_print_text(msg, prev, true, NULL, 0);
Jeff Mahoneye3756472012-08-10 15:07:09 -04001051 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001052 idx = log_next(idx);
1053 seq++;
1054 }
1055
Kay Sieverse2ae7152012-06-15 14:07:51 +02001056 /* last message fitting into this dump */
Kay Sievers7ff95542012-05-03 02:29:13 +02001057 next_seq = log_next_seq;
1058
1059 len = 0;
Kay Sievers5becfb12012-07-09 12:15:42 -07001060 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001061 while (len >= 0 && seq < next_seq) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001062 struct log *msg = log_from_idx(idx);
Kay Sievers7ff95542012-05-03 02:29:13 +02001063 int textlen;
1064
Kay Sievers70498252012-07-16 18:35:29 -07001065 textlen = msg_print_text(msg, prev, true, text,
1066 LOG_LINE_MAX + PREFIX_MAX);
Kay Sievers7ff95542012-05-03 02:29:13 +02001067 if (textlen < 0) {
1068 len = textlen;
1069 break;
1070 }
1071 idx = log_next(idx);
1072 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07001073 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001074
1075 raw_spin_unlock_irq(&logbuf_lock);
1076 if (copy_to_user(buf + len, text, textlen))
1077 len = -EFAULT;
1078 else
1079 len += textlen;
1080 raw_spin_lock_irq(&logbuf_lock);
1081
1082 if (seq < log_first_seq) {
1083 /* messages are gone, move to next one */
1084 seq = log_first_seq;
1085 idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001086 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001087 }
1088 }
1089 }
1090
1091 if (clear) {
1092 clear_seq = log_next_seq;
1093 clear_idx = log_next_idx;
1094 }
1095 raw_spin_unlock_irq(&logbuf_lock);
1096
1097 kfree(text);
1098 return len;
1099}
1100
Kees Cook00234592010-02-03 15:36:43 -08001101int do_syslog(int type, char __user *buf, int len, bool from_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
Kay Sievers7ff95542012-05-03 02:29:13 +02001103 bool clear = false;
1104 static int saved_console_loglevel = -1;
Linus Torvaldsee24aeb2011-02-10 17:53:55 -08001105 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Linus Torvaldsee24aeb2011-02-10 17:53:55 -08001107 error = check_syslog_permissions(type, from_file);
1108 if (error)
1109 goto out;
Eric Paris12b30522010-11-15 18:36:29 -05001110
1111 error = security_syslog(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (error)
1113 return error;
1114
1115 switch (type) {
Kees Cookd78ca3c2010-02-03 15:37:13 -08001116 case SYSLOG_ACTION_CLOSE: /* Close log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001118 case SYSLOG_ACTION_OPEN: /* Open log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001120 case SYSLOG_ACTION_READ: /* Read from log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 error = -EINVAL;
1122 if (!buf || len < 0)
1123 goto out;
1124 error = 0;
1125 if (!len)
1126 goto out;
1127 if (!access_ok(VERIFY_WRITE, buf, len)) {
1128 error = -EFAULT;
1129 goto out;
1130 }
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +08001131 error = wait_event_interruptible(log_wait,
1132 syslog_seq != log_next_seq);
Kay Sieverscb424ff2012-07-06 09:50:09 -07001133 if (error)
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +08001134 goto out;
Kay Sievers7ff95542012-05-03 02:29:13 +02001135 error = syslog_print(buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001137 /* Read/clear last kernel messages */
1138 case SYSLOG_ACTION_READ_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +02001139 clear = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 /* FALL THRU */
Kees Cookd78ca3c2010-02-03 15:37:13 -08001141 /* Read last kernel messages */
1142 case SYSLOG_ACTION_READ_ALL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 error = -EINVAL;
1144 if (!buf || len < 0)
1145 goto out;
1146 error = 0;
1147 if (!len)
1148 goto out;
1149 if (!access_ok(VERIFY_WRITE, buf, len)) {
1150 error = -EFAULT;
1151 goto out;
1152 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001153 error = syslog_print_all(buf, len, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001155 /* Clear ring buffer */
1156 case SYSLOG_ACTION_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +02001157 syslog_print_all(NULL, 0, true);
Alan Stern4661e352012-06-22 17:12:19 -04001158 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001159 /* Disable logging to console */
1160 case SYSLOG_ACTION_CONSOLE_OFF:
Frans Pop1aaad492009-07-06 13:31:48 +02001161 if (saved_console_loglevel == -1)
1162 saved_console_loglevel = console_loglevel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 console_loglevel = minimum_console_loglevel;
1164 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001165 /* Enable logging to console */
1166 case SYSLOG_ACTION_CONSOLE_ON:
Frans Pop1aaad492009-07-06 13:31:48 +02001167 if (saved_console_loglevel != -1) {
1168 console_loglevel = saved_console_loglevel;
1169 saved_console_loglevel = -1;
1170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001172 /* Set level of messages printed to console */
1173 case SYSLOG_ACTION_CONSOLE_LEVEL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 error = -EINVAL;
1175 if (len < 1 || len > 8)
1176 goto out;
1177 if (len < minimum_console_loglevel)
1178 len = minimum_console_loglevel;
1179 console_loglevel = len;
Frans Pop1aaad492009-07-06 13:31:48 +02001180 /* Implicitly re-enable logging to console */
1181 saved_console_loglevel = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 error = 0;
1183 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001184 /* Number of chars in the log buffer */
1185 case SYSLOG_ACTION_SIZE_UNREAD:
Kay Sievers7ff95542012-05-03 02:29:13 +02001186 raw_spin_lock_irq(&logbuf_lock);
1187 if (syslog_seq < log_first_seq) {
1188 /* messages are gone, move to first one */
1189 syslog_seq = log_first_seq;
1190 syslog_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001191 syslog_prev = 0;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001192 syslog_partial = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001193 }
1194 if (from_file) {
1195 /*
1196 * Short-cut for poll(/"proc/kmsg") which simply checks
1197 * for pending data, not the size; return the count of
1198 * records, not the length.
1199 */
1200 error = log_next_idx - syslog_idx;
1201 } else {
Kay Sievers5becfb12012-07-09 12:15:42 -07001202 u64 seq = syslog_seq;
1203 u32 idx = syslog_idx;
1204 enum log_flags prev = syslog_prev;
Kay Sievers7ff95542012-05-03 02:29:13 +02001205
1206 error = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001207 while (seq < log_next_seq) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001208 struct log *msg = log_from_idx(idx);
1209
Kay Sievers5becfb12012-07-09 12:15:42 -07001210 error += msg_print_text(msg, prev, true, NULL, 0);
Kay Sievers7ff95542012-05-03 02:29:13 +02001211 idx = log_next(idx);
1212 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07001213 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001214 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001215 error -= syslog_partial;
Kay Sievers7ff95542012-05-03 02:29:13 +02001216 }
1217 raw_spin_unlock_irq(&logbuf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001219 /* Size of the log buffer */
1220 case SYSLOG_ACTION_SIZE_BUFFER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 error = log_buf_len;
1222 break;
1223 default:
1224 error = -EINVAL;
1225 break;
1226 }
1227out:
1228 return error;
1229}
1230
Heiko Carstens1e7bfb22009-01-14 14:14:29 +01001231SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
Kees Cook00234592010-02-03 15:36:43 -08001233 return do_syslog(type, buf, len, SYSLOG_FROM_CALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
Rusty Russell2329abf2012-01-13 09:32:18 +10301236static bool __read_mostly ignore_loglevel;
Ingo Molnar792908222006-12-06 20:40:51 -08001237
Adrian Bunk99eea6a2006-12-22 01:07:00 -08001238static int __init ignore_loglevel_setup(char *str)
Ingo Molnar792908222006-12-06 20:40:51 -08001239{
1240 ignore_loglevel = 1;
1241 printk(KERN_INFO "debug: ignoring loglevel setting.\n");
1242
Ingo Molnarc4772d92008-01-31 22:45:23 +01001243 return 0;
Ingo Molnar792908222006-12-06 20:40:51 -08001244}
1245
Ingo Molnarc4772d92008-01-31 22:45:23 +01001246early_param("ignore_loglevel", ignore_loglevel_setup);
Rusty Russell29d4d6d2012-01-13 09:32:17 +10301247module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR);
Yanmin Zhang0eca6b72011-10-31 17:11:25 -07001248MODULE_PARM_DESC(ignore_loglevel, "ignore loglevel setting, to"
1249 "print all kernel messages to the console.");
Ingo Molnar792908222006-12-06 20:40:51 -08001250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 * Call the console drivers, asking them to write out
1253 * log_buf[start] to log_buf[end - 1].
Torben Hohnac751ef2011-01-25 15:07:35 -08001254 * The console_lock must be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001256static void call_console_drivers(int level, const char *text, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Kay Sievers7ff95542012-05-03 02:29:13 +02001258 struct console *con;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Kay Sievers7ff95542012-05-03 02:29:13 +02001260 trace_console(text, 0, len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Kay Sievers7ff95542012-05-03 02:29:13 +02001262 if (level >= console_loglevel && !ignore_loglevel)
1263 return;
1264 if (!console_drivers)
1265 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Kay Sievers7ff95542012-05-03 02:29:13 +02001267 for_each_console(con) {
1268 if (exclusive_console && con != exclusive_console)
1269 continue;
1270 if (!(con->flags & CON_ENABLED))
1271 continue;
1272 if (!con->write)
1273 continue;
1274 if (!cpu_online(smp_processor_id()) &&
1275 !(con->flags & CON_ANYTIME))
1276 continue;
1277 con->write(con, text, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279}
1280
1281/*
1282 * Zap console related locks when oopsing. Only zap at most once
1283 * every 10 seconds, to leave time for slow consoles to print a
1284 * full oops.
1285 */
1286static void zap_locks(void)
1287{
1288 static unsigned long oops_timestamp;
1289
1290 if (time_after_eq(jiffies, oops_timestamp) &&
Jesper Juhl40dc5652005-10-30 15:02:46 -08001291 !time_after(jiffies, oops_timestamp + 30 * HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 return;
1293
1294 oops_timestamp = jiffies;
1295
Peter Zijlstra94d24fc2011-06-07 11:17:30 +02001296 debug_locks_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 /* If a crash is occurring, make sure we can't deadlock */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001298 raw_spin_lock_init(&logbuf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 /* And make sure that we print immediately */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +00001300 sema_init(&console_sem, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302
Michael Ellerman76a8ad292006-06-25 05:47:40 -07001303/* Check if we have any console registered that can be called early in boot. */
1304static int have_callable_console(void)
1305{
1306 struct console *con;
1307
Robin Getz4d091612009-07-01 21:08:37 -04001308 for_each_console(con)
Michael Ellerman76a8ad292006-06-25 05:47:40 -07001309 if (con->flags & CON_ANYTIME)
1310 return 1;
1311
1312 return 0;
1313}
1314
Linus Torvalds266c2e02008-03-24 19:25:08 -07001315/*
1316 * Can we actually use the console at this time on this cpu?
1317 *
1318 * Console drivers may assume that per-cpu resources have
1319 * been allocated. So unless they're explicitly marked as
1320 * being able to cope (CON_ANYTIME) don't call them until
1321 * this CPU is officially up.
1322 */
1323static inline int can_use_console(unsigned int cpu)
1324{
1325 return cpu_online(cpu) || have_callable_console();
1326}
1327
1328/*
1329 * Try to get console ownership to actually show the kernel
1330 * messages from a 'printk'. Return true (and with the
Torben Hohnac751ef2011-01-25 15:07:35 -08001331 * console_lock held, and 'console_locked' set) if it
Linus Torvalds266c2e02008-03-24 19:25:08 -07001332 * is successful, false otherwise.
1333 *
1334 * This gets called with the 'logbuf_lock' spinlock held and
1335 * interrupts disabled. It should return with 'lockbuf_lock'
1336 * released but interrupts still disabled.
1337 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001338static int console_trylock_for_printk(unsigned int cpu)
Namhyung Kim8155c022010-10-26 14:22:47 -07001339 __releases(&logbuf_lock)
Linus Torvalds266c2e02008-03-24 19:25:08 -07001340{
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02001341 int retval = 0, wake = 0;
Linus Torvalds266c2e02008-03-24 19:25:08 -07001342
Torben Hohnac751ef2011-01-25 15:07:35 -08001343 if (console_trylock()) {
Linus Torvalds093a07e2008-04-15 13:09:54 -07001344 retval = 1;
1345
1346 /*
1347 * If we can't use the console, we need to release
1348 * the console semaphore by hand to avoid flushing
1349 * the buffer. We need to hold the console semaphore
1350 * in order to do this test safely.
1351 */
1352 if (!can_use_console(cpu)) {
1353 console_locked = 0;
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02001354 wake = 1;
Linus Torvalds093a07e2008-04-15 13:09:54 -07001355 retval = 0;
1356 }
1357 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001358 logbuf_cpu = UINT_MAX;
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02001359 if (wake)
1360 up(&console_sem);
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001361 raw_spin_unlock(&logbuf_lock);
Linus Torvalds266c2e02008-03-24 19:25:08 -07001362 return retval;
1363}
Ingo Molnar32a76002008-01-25 21:07:58 +01001364
Dave Youngaf913222009-09-22 16:43:33 -07001365int printk_delay_msec __read_mostly;
1366
1367static inline void printk_delay(void)
1368{
1369 if (unlikely(printk_delay_msec)) {
1370 int m = printk_delay_msec;
1371
1372 while (m--) {
1373 mdelay(1);
1374 touch_nmi_watchdog();
1375 }
1376 }
1377}
1378
Kay Sievers084681d2012-06-28 09:38:53 +02001379/*
1380 * Continuation lines are buffered, and not committed to the record buffer
1381 * until the line is complete, or a race forces it. The line fragments
1382 * though, are printed immediately to the consoles to ensure everything has
1383 * reached the console in case of a kernel crash.
1384 */
1385static struct cont {
1386 char buf[LOG_LINE_MAX];
1387 size_t len; /* length == 0 means unused buffer */
1388 size_t cons; /* bytes written to console */
1389 struct task_struct *owner; /* task of first print*/
1390 u64 ts_nsec; /* time of first print */
1391 u8 level; /* log level of first message */
1392 u8 facility; /* log level of first message */
Kay Sieverseab07262012-07-16 18:35:30 -07001393 enum log_flags flags; /* prefix, newline flags */
Kay Sievers084681d2012-06-28 09:38:53 +02001394 bool flushed:1; /* buffer sealed and committed */
1395} cont;
1396
Kay Sievers70498252012-07-16 18:35:29 -07001397static void cont_flush(enum log_flags flags)
Kay Sievers084681d2012-06-28 09:38:53 +02001398{
1399 if (cont.flushed)
1400 return;
1401 if (cont.len == 0)
1402 return;
1403
Kay Sieverseab07262012-07-16 18:35:30 -07001404 if (cont.cons) {
1405 /*
1406 * If a fragment of this line was directly flushed to the
1407 * console; wait for the console to pick up the rest of the
1408 * line. LOG_NOCONS suppresses a duplicated output.
1409 */
1410 log_store(cont.facility, cont.level, flags | LOG_NOCONS,
1411 cont.ts_nsec, NULL, 0, cont.buf, cont.len);
1412 cont.flags = flags;
1413 cont.flushed = true;
1414 } else {
1415 /*
1416 * If no fragment of this line ever reached the console,
1417 * just submit it to the store and free the buffer.
1418 */
1419 log_store(cont.facility, cont.level, flags, 0,
1420 NULL, 0, cont.buf, cont.len);
1421 cont.len = 0;
1422 }
Kay Sievers084681d2012-06-28 09:38:53 +02001423}
1424
1425static bool cont_add(int facility, int level, const char *text, size_t len)
1426{
1427 if (cont.len && cont.flushed)
1428 return false;
1429
1430 if (cont.len + len > sizeof(cont.buf)) {
Kay Sievers70498252012-07-16 18:35:29 -07001431 /* the line gets too long, split it up in separate records */
1432 cont_flush(LOG_CONT);
Kay Sievers084681d2012-06-28 09:38:53 +02001433 return false;
1434 }
1435
1436 if (!cont.len) {
1437 cont.facility = facility;
1438 cont.level = level;
1439 cont.owner = current;
1440 cont.ts_nsec = local_clock();
Kay Sieverseab07262012-07-16 18:35:30 -07001441 cont.flags = 0;
Kay Sievers084681d2012-06-28 09:38:53 +02001442 cont.cons = 0;
1443 cont.flushed = false;
1444 }
1445
1446 memcpy(cont.buf + cont.len, text, len);
1447 cont.len += len;
Kay Sieverseab07262012-07-16 18:35:30 -07001448
1449 if (cont.len > (sizeof(cont.buf) * 80) / 100)
1450 cont_flush(LOG_CONT);
1451
Kay Sievers084681d2012-06-28 09:38:53 +02001452 return true;
1453}
1454
1455static size_t cont_print_text(char *text, size_t size)
1456{
1457 size_t textlen = 0;
1458 size_t len;
1459
Kay Sieverseab07262012-07-16 18:35:30 -07001460 if (cont.cons == 0 && (console_prev & LOG_NEWLINE)) {
Kay Sievers084681d2012-06-28 09:38:53 +02001461 textlen += print_time(cont.ts_nsec, text);
1462 size -= textlen;
1463 }
1464
1465 len = cont.len - cont.cons;
1466 if (len > 0) {
1467 if (len+1 > size)
1468 len = size-1;
1469 memcpy(text + textlen, cont.buf + cont.cons, len);
1470 textlen += len;
1471 cont.cons = cont.len;
1472 }
1473
1474 if (cont.flushed) {
Kay Sieverseab07262012-07-16 18:35:30 -07001475 if (cont.flags & LOG_NEWLINE)
1476 text[textlen++] = '\n';
Kay Sievers084681d2012-06-28 09:38:53 +02001477 /* got everything, release buffer */
1478 cont.len = 0;
1479 }
1480 return textlen;
1481}
1482
Kay Sievers7ff95542012-05-03 02:29:13 +02001483asmlinkage int vprintk_emit(int facility, int level,
1484 const char *dict, size_t dictlen,
1485 const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
Kay Sievers7ff95542012-05-03 02:29:13 +02001487 static int recursion_bug;
Kay Sievers7ff95542012-05-03 02:29:13 +02001488 static char textbuf[LOG_LINE_MAX];
1489 char *text = textbuf;
Kay Sieversc313af12012-05-14 20:46:27 +02001490 size_t text_len;
Kay Sievers5becfb12012-07-09 12:15:42 -07001491 enum log_flags lflags = 0;
Nick Andrewac60ad72008-05-12 21:21:04 +02001492 unsigned long flags;
Ingo Molnar32a76002008-01-25 21:07:58 +01001493 int this_cpu;
Kay Sievers7ff95542012-05-03 02:29:13 +02001494 int printed_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001496 boot_delay_msec();
Dave Youngaf913222009-09-22 16:43:33 -07001497 printk_delay();
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 /* This stops the holder of console_sem just where we want him */
Peter Zijlstra1a9a8ae2011-06-07 11:17:30 +02001500 local_irq_save(flags);
Ingo Molnar32a76002008-01-25 21:07:58 +01001501 this_cpu = smp_processor_id();
1502
1503 /*
1504 * Ouch, printk recursed into itself!
1505 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001506 if (unlikely(logbuf_cpu == this_cpu)) {
Ingo Molnar32a76002008-01-25 21:07:58 +01001507 /*
1508 * If a crash is occurring during printk() on this CPU,
1509 * then try to get the crash message out but make sure
1510 * we can't deadlock. Otherwise just return to avoid the
1511 * recursion and return - but flag the recursion so that
1512 * it can be printed at the next appropriate moment:
1513 */
Peter Zijlstra94d24fc2011-06-07 11:17:30 +02001514 if (!oops_in_progress && !lockdep_recursing(current)) {
Tejun Heo3b8945e2008-05-12 21:21:04 +02001515 recursion_bug = 1;
Ingo Molnar32a76002008-01-25 21:07:58 +01001516 goto out_restore_irqs;
1517 }
1518 zap_locks();
1519 }
1520
Ingo Molnara0f1ccf2006-07-03 00:24:58 -07001521 lockdep_off();
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001522 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02001523 logbuf_cpu = this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Tejun Heo3b8945e2008-05-12 21:21:04 +02001525 if (recursion_bug) {
Kay Sievers7ff95542012-05-03 02:29:13 +02001526 static const char recursion_msg[] =
1527 "BUG: recent printk recursion!";
1528
Tejun Heo3b8945e2008-05-12 21:21:04 +02001529 recursion_bug = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001530 printed_len += strlen(recursion_msg);
1531 /* emit KERN_CRIT message */
Kay Sievers5becfb12012-07-09 12:15:42 -07001532 log_store(0, 2, LOG_PREFIX|LOG_NEWLINE, 0,
Kay Sievers084681d2012-06-28 09:38:53 +02001533 NULL, 0, recursion_msg, printed_len);
Linus Torvalds5fd29d62009-06-16 10:57:02 -07001534 }
1535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 /*
Kay Sievers7ff95542012-05-03 02:29:13 +02001537 * The printf needs to come first; we need the syslog
1538 * prefix which might be passed-in as a parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 */
Kay Sieversc313af12012-05-14 20:46:27 +02001540 text_len = vscnprintf(text, sizeof(textbuf), fmt, args);
Nick Andrewac60ad72008-05-12 21:21:04 +02001541
Kay Sievers7ff95542012-05-03 02:29:13 +02001542 /* mark and strip a trailing newline */
Kay Sieversc313af12012-05-14 20:46:27 +02001543 if (text_len && text[text_len-1] == '\n') {
1544 text_len--;
Kay Sievers5becfb12012-07-09 12:15:42 -07001545 lflags |= LOG_NEWLINE;
Kay Sievers7ff95542012-05-03 02:29:13 +02001546 }
Kay Sievers9d90c8d2011-03-13 03:19:51 +01001547
Joe Perches088a52a2012-07-30 14:40:19 -07001548 /* strip kernel syslog prefix and extract log level or control flags */
1549 if (facility == 0) {
1550 int kern_level = printk_get_level(text);
1551
1552 if (kern_level) {
1553 const char *end_of_header = printk_skip_level(text);
1554 switch (kern_level) {
1555 case '0' ... '7':
1556 if (level == -1)
1557 level = kern_level - '0';
1558 case 'd': /* KERN_DEFAULT */
1559 lflags |= LOG_PREFIX;
1560 case 'c': /* KERN_CONT */
1561 break;
1562 }
1563 text_len -= end_of_header - text;
1564 text = (char *)end_of_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001566 }
Nick Andrewac60ad72008-05-12 21:21:04 +02001567
Kay Sieversc313af12012-05-14 20:46:27 +02001568 if (level == -1)
1569 level = default_message_loglevel;
1570
Kay Sievers5becfb12012-07-09 12:15:42 -07001571 if (dict)
1572 lflags |= LOG_PREFIX|LOG_NEWLINE;
Kay Sievers7ff95542012-05-03 02:29:13 +02001573
Kay Sievers5becfb12012-07-09 12:15:42 -07001574 if (!(lflags & LOG_NEWLINE)) {
Kay Sievers084681d2012-06-28 09:38:53 +02001575 /*
1576 * Flush the conflicting buffer. An earlier newline was missing,
1577 * or another task also prints continuation lines.
1578 */
Kay Sievers5becfb12012-07-09 12:15:42 -07001579 if (cont.len && (lflags & LOG_PREFIX || cont.owner != current))
Kay Sieverseab07262012-07-16 18:35:30 -07001580 cont_flush(LOG_NEWLINE);
Kay Sieversc313af12012-05-14 20:46:27 +02001581
Kay Sievers084681d2012-06-28 09:38:53 +02001582 /* buffer line if possible, otherwise store it right away */
1583 if (!cont_add(facility, level, text, text_len))
Kay Sievers5becfb12012-07-09 12:15:42 -07001584 log_store(facility, level, lflags | LOG_CONT, 0,
Kay Sieversc313af12012-05-14 20:46:27 +02001585 dict, dictlen, text, text_len);
Kay Sievers084681d2012-06-28 09:38:53 +02001586 } else {
1587 bool stored = false;
1588
1589 /*
Steven Rostedtd3620822012-06-29 11:40:11 -04001590 * If an earlier newline was missing and it was the same task,
1591 * either merge it with the current buffer and flush, or if
1592 * there was a race with interrupts (prefix == true) then just
1593 * flush it out and store this line separately.
Kay Sievers084681d2012-06-28 09:38:53 +02001594 */
Kay Sievers084681d2012-06-28 09:38:53 +02001595 if (cont.len && cont.owner == current) {
Kay Sievers5becfb12012-07-09 12:15:42 -07001596 if (!(lflags & LOG_PREFIX))
Steven Rostedtd3620822012-06-29 11:40:11 -04001597 stored = cont_add(facility, level, text, text_len);
Kay Sieverseab07262012-07-16 18:35:30 -07001598 cont_flush(LOG_NEWLINE);
Kay Sieversc313af12012-05-14 20:46:27 +02001599 }
Kay Sievers084681d2012-06-28 09:38:53 +02001600
1601 if (!stored)
Kay Sievers5becfb12012-07-09 12:15:42 -07001602 log_store(facility, level, lflags, 0,
Kay Sievers084681d2012-06-28 09:38:53 +02001603 dict, dictlen, text, text_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 }
Kay Sievers084681d2012-06-28 09:38:53 +02001605 printed_len += text_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Linus Torvalds266c2e02008-03-24 19:25:08 -07001607 /*
Kay Sievers7ff95542012-05-03 02:29:13 +02001608 * Try to acquire and then immediately release the console semaphore.
1609 * The release will print out buffers and wake up /dev/kmsg and syslog()
1610 * users.
Linus Torvalds266c2e02008-03-24 19:25:08 -07001611 *
Kay Sievers7ff95542012-05-03 02:29:13 +02001612 * The console_trylock_for_printk() function will release 'logbuf_lock'
1613 * regardless of whether it actually gets the console semaphore or not.
Linus Torvalds266c2e02008-03-24 19:25:08 -07001614 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001615 if (console_trylock_for_printk(this_cpu))
1616 console_unlock();
Michael Ellerman76a8ad292006-06-25 05:47:40 -07001617
Linus Torvalds266c2e02008-03-24 19:25:08 -07001618 lockdep_on();
Ingo Molnar32a76002008-01-25 21:07:58 +01001619out_restore_irqs:
Peter Zijlstra1a9a8ae2011-06-07 11:17:30 +02001620 local_irq_restore(flags);
Michael Ellerman76a8ad292006-06-25 05:47:40 -07001621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 return printed_len;
1623}
Kay Sievers7ff95542012-05-03 02:29:13 +02001624EXPORT_SYMBOL(vprintk_emit);
1625
1626asmlinkage int vprintk(const char *fmt, va_list args)
1627{
1628 return vprintk_emit(0, -1, NULL, 0, fmt, args);
1629}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630EXPORT_SYMBOL(vprintk);
1631
Kay Sievers7ff95542012-05-03 02:29:13 +02001632asmlinkage int printk_emit(int facility, int level,
1633 const char *dict, size_t dictlen,
1634 const char *fmt, ...)
1635{
1636 va_list args;
1637 int r;
1638
1639 va_start(args, fmt);
1640 r = vprintk_emit(facility, level, dict, dictlen, fmt, args);
1641 va_end(args);
1642
1643 return r;
1644}
1645EXPORT_SYMBOL(printk_emit);
1646
1647/**
1648 * printk - print a kernel message
1649 * @fmt: format string
1650 *
1651 * This is printk(). It can be called from any context. We want it to work.
1652 *
1653 * We try to grab the console_lock. If we succeed, it's easy - we log the
1654 * output and call the console drivers. If we fail to get the semaphore, we
1655 * place the output into the log buffer and return. The current holder of
1656 * the console_sem will notice the new output in console_unlock(); and will
1657 * send it to the consoles before releasing the lock.
1658 *
1659 * One effect of this deferred printing is that code which calls printk() and
1660 * then changes console_loglevel may break. This is because console_loglevel
1661 * is inspected when the actual printing occurs.
1662 *
1663 * See also:
1664 * printf(3)
1665 *
1666 * See the vsnprintf() documentation for format string extensions over C99.
1667 */
1668asmlinkage int printk(const char *fmt, ...)
1669{
1670 va_list args;
1671 int r;
1672
1673#ifdef CONFIG_KGDB_KDB
1674 if (unlikely(kdb_trap_printk)) {
1675 va_start(args, fmt);
1676 r = vkdb_printf(fmt, args);
1677 va_end(args);
1678 return r;
1679 }
1680#endif
1681 va_start(args, fmt);
1682 r = vprintk_emit(0, -1, NULL, 0, fmt, args);
1683 va_end(args);
1684
1685 return r;
1686}
1687EXPORT_SYMBOL(printk);
Kay Sievers7f3a7812012-05-09 01:37:51 +02001688
Kay Sievers96efedf2012-07-16 18:35:29 -07001689#else /* CONFIG_PRINTK */
Matt Mackalld59745c2005-05-01 08:59:02 -07001690
Kay Sievers70498252012-07-16 18:35:29 -07001691#define LOG_LINE_MAX 0
1692#define PREFIX_MAX 0
Kay Sievers7f3a7812012-05-09 01:37:51 +02001693#define LOG_LINE_MAX 0
Kay Sievers96efedf2012-07-16 18:35:29 -07001694static u64 syslog_seq;
1695static u32 syslog_idx;
Kay Sieverseab07262012-07-16 18:35:30 -07001696static u64 console_seq;
1697static u32 console_idx;
Kay Sievers96efedf2012-07-16 18:35:29 -07001698static enum log_flags syslog_prev;
1699static u64 log_first_seq;
1700static u32 log_first_idx;
1701static u64 log_next_seq;
Kay Sieverseab07262012-07-16 18:35:30 -07001702static enum log_flags console_prev;
Kay Sievers084681d2012-06-28 09:38:53 +02001703static struct cont {
1704 size_t len;
1705 size_t cons;
1706 u8 level;
1707 bool flushed:1;
1708} cont;
Kay Sievers7f3a7812012-05-09 01:37:51 +02001709static struct log *log_from_idx(u32 idx) { return NULL; }
1710static u32 log_next(u32 idx) { return 0; }
Kay Sievers7f3a7812012-05-09 01:37:51 +02001711static void call_console_drivers(int level, const char *text, size_t len) {}
Kay Sievers5becfb12012-07-09 12:15:42 -07001712static size_t msg_print_text(const struct log *msg, enum log_flags prev,
1713 bool syslog, char *buf, size_t size) { return 0; }
Kay Sievers084681d2012-06-28 09:38:53 +02001714static size_t cont_print_text(char *text, size_t size) { return 0; }
Matt Mackalld59745c2005-05-01 08:59:02 -07001715
Kay Sievers7f3a7812012-05-09 01:37:51 +02001716#endif /* CONFIG_PRINTK */
Matt Mackalld59745c2005-05-01 08:59:02 -07001717
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001718static int __add_preferred_console(char *name, int idx, char *options,
1719 char *brl_options)
1720{
1721 struct console_cmdline *c;
1722 int i;
1723
1724 /*
1725 * See if this tty is not yet registered, and
1726 * if we have a slot free.
1727 */
1728 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
1729 if (strcmp(console_cmdline[i].name, name) == 0 &&
1730 console_cmdline[i].index == idx) {
1731 if (!brl_options)
1732 selected_console = i;
1733 return 0;
1734 }
1735 if (i == MAX_CMDLINECONSOLES)
1736 return -E2BIG;
1737 if (!brl_options)
1738 selected_console = i;
1739 c = &console_cmdline[i];
1740 strlcpy(c->name, name, sizeof(c->name));
1741 c->options = options;
1742#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1743 c->brl_options = brl_options;
1744#endif
1745 c->index = idx;
1746 return 0;
1747}
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001748/*
1749 * Set up a list of consoles. Called from init/main.c
1750 */
1751static int __init console_setup(char *str)
1752{
Yinghai Lueaa944a2007-07-15 23:37:27 -07001753 char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for index */
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001754 char *s, *options, *brl_options = NULL;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001755 int idx;
1756
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001757#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1758 if (!memcmp(str, "brl,", 4)) {
1759 brl_options = "";
1760 str += 4;
1761 } else if (!memcmp(str, "brl=", 4)) {
1762 brl_options = str + 4;
1763 str = strchr(brl_options, ',');
1764 if (!str) {
1765 printk(KERN_ERR "need port name after brl=\n");
1766 return 1;
1767 }
1768 *(str++) = 0;
1769 }
1770#endif
1771
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001772 /*
1773 * Decode str into name, index, options.
1774 */
1775 if (str[0] >= '0' && str[0] <= '9') {
Yinghai Lueaa944a2007-07-15 23:37:27 -07001776 strcpy(buf, "ttyS");
1777 strncpy(buf + 4, str, sizeof(buf) - 5);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001778 } else {
Yinghai Lueaa944a2007-07-15 23:37:27 -07001779 strncpy(buf, str, sizeof(buf) - 1);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001780 }
Yinghai Lueaa944a2007-07-15 23:37:27 -07001781 buf[sizeof(buf) - 1] = 0;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001782 if ((options = strchr(str, ',')) != NULL)
1783 *(options++) = 0;
1784#ifdef __sparc__
1785 if (!strcmp(str, "ttya"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07001786 strcpy(buf, "ttyS0");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001787 if (!strcmp(str, "ttyb"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07001788 strcpy(buf, "ttyS1");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001789#endif
Yinghai Lueaa944a2007-07-15 23:37:27 -07001790 for (s = buf; *s; s++)
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001791 if ((*s >= '0' && *s <= '9') || *s == ',')
1792 break;
1793 idx = simple_strtoul(s, NULL, 10);
1794 *s = 0;
1795
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001796 __add_preferred_console(buf, idx, options, brl_options);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001797 console_set_on_cmdline = 1;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001798 return 1;
1799}
1800__setup("console=", console_setup);
1801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802/**
Matt Mackall3c0547b2005-05-16 21:53:47 -07001803 * add_preferred_console - add a device to the list of preferred consoles.
Martin Waitzddad86c2005-11-13 16:08:14 -08001804 * @name: device name
1805 * @idx: device index
1806 * @options: options for this console
Matt Mackall3c0547b2005-05-16 21:53:47 -07001807 *
1808 * The last preferred console added will be used for kernel messages
1809 * and stdin/out/err for init. Normally this is used by console_setup
1810 * above to handle user-supplied console arguments; however it can also
1811 * be used by arch-specific code either to override the user or more
1812 * commonly to provide a default console (ie from PROM variables) when
1813 * the user has not supplied one.
1814 */
David S. Millerfb445ee2007-12-29 01:19:49 -08001815int add_preferred_console(char *name, int idx, char *options)
Matt Mackall3c0547b2005-05-16 21:53:47 -07001816{
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001817 return __add_preferred_console(name, idx, options, NULL);
Matt Mackall3c0547b2005-05-16 21:53:47 -07001818}
1819
Daniel Ritzb6b1d872007-08-03 16:07:43 +02001820int update_console_cmdline(char *name, int idx, char *name_new, int idx_new, char *options)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07001821{
1822 struct console_cmdline *c;
1823 int i;
1824
1825 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
1826 if (strcmp(console_cmdline[i].name, name) == 0 &&
1827 console_cmdline[i].index == idx) {
1828 c = &console_cmdline[i];
Markus Armbrusterf7352952008-04-30 00:54:52 -07001829 strlcpy(c->name, name_new, sizeof(c->name));
Yinghai Lu18a8bd92007-07-15 23:37:59 -07001830 c->name[sizeof(c->name) - 1] = 0;
1831 c->options = options;
1832 c->index = idx_new;
1833 return i;
1834 }
1835 /* not found */
1836 return -1;
1837}
1838
Rusty Russell2329abf2012-01-13 09:32:18 +10301839bool console_suspend_enabled = 1;
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001840EXPORT_SYMBOL(console_suspend_enabled);
1841
1842static int __init console_suspend_disable(char *str)
1843{
1844 console_suspend_enabled = 0;
1845 return 1;
1846}
1847__setup("no_console_suspend", console_suspend_disable);
Yanmin Zhang134620f2011-10-31 17:11:27 -07001848module_param_named(console_suspend, console_suspend_enabled,
1849 bool, S_IRUGO | S_IWUSR);
1850MODULE_PARM_DESC(console_suspend, "suspend console during suspend"
1851 " and hibernate operations");
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001852
Matt Mackall3c0547b2005-05-16 21:53:47 -07001853/**
Linus Torvalds557240b2006-06-19 18:16:01 -07001854 * suspend_console - suspend the console subsystem
1855 *
1856 * This disables printk() while we go into suspend states
1857 */
1858void suspend_console(void)
1859{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001860 if (!console_suspend_enabled)
1861 return;
Pavel Machek0d630812008-07-23 21:28:32 -07001862 printk("Suspending console(s) (use no_console_suspend to debug)\n");
Torben Hohnac751ef2011-01-25 15:07:35 -08001863 console_lock();
Linus Torvalds557240b2006-06-19 18:16:01 -07001864 console_suspended = 1;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001865 up(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07001866}
1867
1868void resume_console(void)
1869{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001870 if (!console_suspend_enabled)
1871 return;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001872 down(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07001873 console_suspended = 0;
Torben Hohnac751ef2011-01-25 15:07:35 -08001874 console_unlock();
Linus Torvalds557240b2006-06-19 18:16:01 -07001875}
1876
1877/**
Kevin Cernekee034260d2010-06-03 22:11:25 -07001878 * console_cpu_notify - print deferred console messages after CPU hotplug
1879 * @self: notifier struct
1880 * @action: CPU hotplug event
1881 * @hcpu: unused
1882 *
1883 * If printk() is called from a CPU that is not online yet, the messages
1884 * will be spooled but will not show up on the console. This function is
1885 * called when a new CPU comes online (or fails to come up), and ensures
1886 * that any such output gets printed.
1887 */
1888static int __cpuinit console_cpu_notify(struct notifier_block *self,
1889 unsigned long action, void *hcpu)
1890{
1891 switch (action) {
1892 case CPU_ONLINE:
1893 case CPU_DEAD:
Kevin Cernekee034260d2010-06-03 22:11:25 -07001894 case CPU_DOWN_FAILED:
1895 case CPU_UP_CANCELED:
Torben Hohnac751ef2011-01-25 15:07:35 -08001896 console_lock();
1897 console_unlock();
Kevin Cernekee034260d2010-06-03 22:11:25 -07001898 }
1899 return NOTIFY_OK;
1900}
1901
1902/**
Torben Hohnac751ef2011-01-25 15:07:35 -08001903 * console_lock - lock the console system for exclusive use.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001905 * Acquires a lock which guarantees that the caller has
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 * exclusive access to the console system and the console_drivers list.
1907 *
1908 * Can sleep, returns nothing.
1909 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001910void console_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
Eric Sesterhenn8abd8e22006-04-01 01:21:17 +02001912 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 down(&console_sem);
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001914 if (console_suspended)
1915 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 console_locked = 1;
1917 console_may_schedule = 1;
1918}
Torben Hohnac751ef2011-01-25 15:07:35 -08001919EXPORT_SYMBOL(console_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Torben Hohnac751ef2011-01-25 15:07:35 -08001921/**
1922 * console_trylock - try to lock the console system for exclusive use.
1923 *
1924 * Tried to acquire a lock which guarantees that the caller has
1925 * exclusive access to the console system and the console_drivers list.
1926 *
1927 * returns 1 on success, and 0 on failure to acquire the lock.
1928 */
1929int console_trylock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930{
1931 if (down_trylock(&console_sem))
Torben Hohnac751ef2011-01-25 15:07:35 -08001932 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001933 if (console_suspended) {
1934 up(&console_sem);
Torben Hohnac751ef2011-01-25 15:07:35 -08001935 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 console_locked = 1;
1938 console_may_schedule = 0;
Torben Hohnac751ef2011-01-25 15:07:35 -08001939 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940}
Torben Hohnac751ef2011-01-25 15:07:35 -08001941EXPORT_SYMBOL(console_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943int is_console_locked(void)
1944{
1945 return console_locked;
1946}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +01001948/*
Kay Sievers7ff95542012-05-03 02:29:13 +02001949 * Delayed printk version, for scheduler-internal messages:
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +01001950 */
1951#define PRINTK_BUF_SIZE 512
1952
1953#define PRINTK_PENDING_WAKEUP 0x01
1954#define PRINTK_PENDING_SCHED 0x02
1955
Peter Zijlstrab845b512008-08-08 21:47:09 +02001956static DEFINE_PER_CPU(int, printk_pending);
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +01001957static DEFINE_PER_CPU(char [PRINTK_BUF_SIZE], printk_sched_buf);
Peter Zijlstrab845b512008-08-08 21:47:09 +02001958
Frederic Weisbecker74876a92012-10-12 18:00:23 +02001959static void wake_up_klogd_work_func(struct irq_work *irq_work)
Peter Zijlstrab845b512008-08-08 21:47:09 +02001960{
Frederic Weisbecker74876a92012-10-12 18:00:23 +02001961 int pending = __this_cpu_xchg(printk_pending, 0);
1962
1963 if (pending & PRINTK_PENDING_SCHED) {
1964 char *buf = __get_cpu_var(printk_sched_buf);
1965 printk(KERN_WARNING "[sched_delayed] %s", buf);
Peter Zijlstrab845b512008-08-08 21:47:09 +02001966 }
Frederic Weisbecker74876a92012-10-12 18:00:23 +02001967
1968 if (pending & PRINTK_PENDING_WAKEUP)
1969 wake_up_interruptible(&log_wait);
Peter Zijlstrab845b512008-08-08 21:47:09 +02001970}
1971
Frederic Weisbecker74876a92012-10-12 18:00:23 +02001972static DEFINE_PER_CPU(struct irq_work, wake_up_klogd_work) = {
1973 .func = wake_up_klogd_work_func,
1974 .flags = IRQ_WORK_LAZY,
1975};
Peter Zijlstrab845b512008-08-08 21:47:09 +02001976
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08001977void wake_up_klogd(void)
1978{
Frederic Weisbecker74876a92012-10-12 18:00:23 +02001979 preempt_disable();
1980 if (waitqueue_active(&log_wait)) {
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +01001981 this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP);
Frederic Weisbecker74876a92012-10-12 18:00:23 +02001982 irq_work_queue(&__get_cpu_var(wake_up_klogd_work));
1983 }
1984 preempt_enable();
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08001985}
1986
Kay Sieverseab07262012-07-16 18:35:30 -07001987static void console_cont_flush(char *text, size_t size)
1988{
1989 unsigned long flags;
1990 size_t len;
1991
1992 raw_spin_lock_irqsave(&logbuf_lock, flags);
1993
1994 if (!cont.len)
1995 goto out;
1996
1997 /*
1998 * We still queue earlier records, likely because the console was
1999 * busy. The earlier ones need to be printed before this one, we
2000 * did not flush any fragment so far, so just let it queue up.
2001 */
2002 if (console_seq < log_next_seq && !cont.cons)
2003 goto out;
2004
2005 len = cont_print_text(text, size);
2006 raw_spin_unlock(&logbuf_lock);
2007 stop_critical_timings();
2008 call_console_drivers(cont.level, text, len);
2009 start_critical_timings();
2010 local_irq_restore(flags);
2011 return;
2012out:
2013 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2014}
Kay Sievers7ff95542012-05-03 02:29:13 +02002015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016/**
Torben Hohnac751ef2011-01-25 15:07:35 -08002017 * console_unlock - unlock the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002019 * Releases the console_lock which the caller holds on the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 * and the console driver list.
2021 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002022 * While the console_lock was held, console output may have been buffered
2023 * by printk(). If this is the case, console_unlock(); emits
2024 * the output prior to releasing the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 *
Kay Sievers7f3a7812012-05-09 01:37:51 +02002026 * If there is output waiting, we wake /dev/kmsg and syslog() users.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002028 * console_unlock(); may be called from any context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002030void console_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
Kay Sievers70498252012-07-16 18:35:29 -07002032 static char text[LOG_LINE_MAX + PREFIX_MAX];
Kay Sievers7ff95542012-05-03 02:29:13 +02002033 static u64 seen_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 unsigned long flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02002035 bool wake_klogd = false;
2036 bool retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Linus Torvalds557240b2006-06-19 18:16:01 -07002038 if (console_suspended) {
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01002039 up(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07002040 return;
2041 }
Antonino A. Daplas78944e542006-08-05 12:14:16 -07002042
2043 console_may_schedule = 0;
2044
Kay Sievers084681d2012-06-28 09:38:53 +02002045 /* flush buffered message fragment immediately to console */
Kay Sieverseab07262012-07-16 18:35:30 -07002046 console_cont_flush(text, sizeof(text));
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002047again:
Kay Sievers7ff95542012-05-03 02:29:13 +02002048 for (;;) {
2049 struct log *msg;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02002050 size_t len;
Kay Sievers7ff95542012-05-03 02:29:13 +02002051 int level;
2052
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002053 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02002054 if (seen_seq != log_next_seq) {
2055 wake_klogd = true;
2056 seen_seq = log_next_seq;
2057 }
2058
2059 if (console_seq < log_first_seq) {
2060 /* messages are gone, move to first one */
2061 console_seq = log_first_seq;
2062 console_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002063 console_prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02002064 }
Kay Sievers084681d2012-06-28 09:38:53 +02002065skip:
Kay Sievers7ff95542012-05-03 02:29:13 +02002066 if (console_seq == log_next_seq)
2067 break;
2068
2069 msg = log_from_idx(console_idx);
Kay Sievers084681d2012-06-28 09:38:53 +02002070 if (msg->flags & LOG_NOCONS) {
2071 /*
2072 * Skip record we have buffered and already printed
2073 * directly to the console when we received it.
2074 */
2075 console_idx = log_next(console_idx);
2076 console_seq++;
Kay Sievers68b65072012-07-06 09:50:09 -07002077 /*
2078 * We will get here again when we register a new
2079 * CON_PRINTBUFFER console. Clear the flag so we
2080 * will properly dump everything later.
2081 */
2082 msg->flags &= ~LOG_NOCONS;
Kay Sieverseab07262012-07-16 18:35:30 -07002083 console_prev = msg->flags;
Kay Sievers084681d2012-06-28 09:38:53 +02002084 goto skip;
2085 }
Kay Sievers649e6ee2012-05-10 04:30:45 +02002086
Kay Sievers084681d2012-06-28 09:38:53 +02002087 level = msg->level;
Kay Sievers5becfb12012-07-09 12:15:42 -07002088 len = msg_print_text(msg, console_prev, false,
2089 text, sizeof(text));
Kay Sievers7ff95542012-05-03 02:29:13 +02002090 console_idx = log_next(console_idx);
2091 console_seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07002092 console_prev = msg->flags;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002093 raw_spin_unlock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02002094
Steven Rostedt81d68a92008-05-12 21:20:42 +02002095 stop_critical_timings(); /* don't trace print latency */
Kay Sievers7ff95542012-05-03 02:29:13 +02002096 call_console_drivers(level, text, len);
Steven Rostedt81d68a92008-05-12 21:20:42 +02002097 start_critical_timings();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 local_irq_restore(flags);
2099 }
2100 console_locked = 0;
Feng Tangfe3d8ad2011-03-22 16:34:21 -07002101
2102 /* Release the exclusive_console once it is used */
2103 if (unlikely(exclusive_console))
2104 exclusive_console = NULL;
2105
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002106 raw_spin_unlock(&logbuf_lock);
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002107
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02002108 up(&console_sem);
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002109
2110 /*
2111 * Someone could have filled up the buffer again, so re-check if there's
2112 * something to flush. In case we cannot trylock the console_sem again,
2113 * there's a new owner and the console_unlock() from them will do the
2114 * flush, no worries.
2115 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002116 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02002117 retry = console_seq != log_next_seq;
Peter Zijlstra09dc3cf2011-12-08 14:34:13 -08002118 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2119
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002120 if (retry && console_trylock())
2121 goto again;
2122
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08002123 if (wake_klogd)
2124 wake_up_klogd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125}
Torben Hohnac751ef2011-01-25 15:07:35 -08002126EXPORT_SYMBOL(console_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Martin Waitzddad86c2005-11-13 16:08:14 -08002128/**
2129 * console_conditional_schedule - yield the CPU if required
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 *
2131 * If the console code is currently allowed to sleep, and
2132 * if this CPU should yield the CPU to another task, do
2133 * so here.
2134 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002135 * Must be called within console_lock();.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 */
2137void __sched console_conditional_schedule(void)
2138{
2139 if (console_may_schedule)
2140 cond_resched();
2141}
2142EXPORT_SYMBOL(console_conditional_schedule);
2143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144void console_unblank(void)
2145{
2146 struct console *c;
2147
2148 /*
2149 * console_unblank can no longer be called in interrupt context unless
2150 * oops_in_progress is set to 1..
2151 */
2152 if (oops_in_progress) {
2153 if (down_trylock(&console_sem) != 0)
2154 return;
2155 } else
Torben Hohnac751ef2011-01-25 15:07:35 -08002156 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158 console_locked = 1;
2159 console_may_schedule = 0;
Robin Getz4d091612009-07-01 21:08:37 -04002160 for_each_console(c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 if ((c->flags & CON_ENABLED) && c->unblank)
2162 c->unblank();
Torben Hohnac751ef2011-01-25 15:07:35 -08002163 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
2166/*
2167 * Return the console tty driver structure and its associated index
2168 */
2169struct tty_driver *console_device(int *index)
2170{
2171 struct console *c;
2172 struct tty_driver *driver = NULL;
2173
Torben Hohnac751ef2011-01-25 15:07:35 -08002174 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04002175 for_each_console(c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 if (!c->device)
2177 continue;
2178 driver = c->device(c, index);
2179 if (driver)
2180 break;
2181 }
Torben Hohnac751ef2011-01-25 15:07:35 -08002182 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 return driver;
2184}
2185
2186/*
2187 * Prevent further output on the passed console device so that (for example)
2188 * serial drivers can disable console output before suspending a port, and can
2189 * re-enable output afterwards.
2190 */
2191void console_stop(struct console *console)
2192{
Torben Hohnac751ef2011-01-25 15:07:35 -08002193 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 console->flags &= ~CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002195 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196}
2197EXPORT_SYMBOL(console_stop);
2198
2199void console_start(struct console *console)
2200{
Torben Hohnac751ef2011-01-25 15:07:35 -08002201 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 console->flags |= CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002203 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204}
2205EXPORT_SYMBOL(console_start);
2206
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002207static int __read_mostly keep_bootcon;
2208
2209static int __init keep_bootcon_setup(char *str)
2210{
2211 keep_bootcon = 1;
2212 printk(KERN_INFO "debug: skip boot console de-registration.\n");
2213
2214 return 0;
2215}
2216
2217early_param("keep_bootcon", keep_bootcon_setup);
2218
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219/*
2220 * The console driver calls this routine during kernel initialization
2221 * to register the console printing procedure with printk() and to
2222 * print any messages that were printed by the kernel before the
2223 * console driver was initialized.
Robin Getz4d091612009-07-01 21:08:37 -04002224 *
2225 * This can happen pretty early during the boot process (because of
2226 * early_printk) - sometimes before setup_arch() completes - be careful
2227 * of what kernel features are used - they may not be initialised yet.
2228 *
2229 * There are two types of consoles - bootconsoles (early_printk) and
2230 * "real" consoles (everything which is not a bootconsole) which are
2231 * handled differently.
2232 * - Any number of bootconsoles can be registered at any time.
2233 * - As soon as a "real" console is registered, all bootconsoles
2234 * will be unregistered automatically.
2235 * - Once a "real" console is registered, any attempt to register a
2236 * bootconsoles will be rejected
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 */
Robin Getz4d091612009-07-01 21:08:37 -04002238void register_console(struct console *newcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239{
Jesper Juhl40dc5652005-10-30 15:02:46 -08002240 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 unsigned long flags;
Robin Getz4d091612009-07-01 21:08:37 -04002242 struct console *bcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Robin Getz4d091612009-07-01 21:08:37 -04002244 /*
2245 * before we register a new CON_BOOT console, make sure we don't
2246 * already have a valid console
2247 */
2248 if (console_drivers && newcon->flags & CON_BOOT) {
2249 /* find the last or real console */
2250 for_each_console(bcon) {
2251 if (!(bcon->flags & CON_BOOT)) {
2252 printk(KERN_INFO "Too late to register bootconsole %s%d\n",
2253 newcon->name, newcon->index);
2254 return;
2255 }
2256 }
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002257 }
2258
Robin Getz4d091612009-07-01 21:08:37 -04002259 if (console_drivers && console_drivers->flags & CON_BOOT)
2260 bcon = console_drivers;
2261
2262 if (preferred_console < 0 || bcon || !console_drivers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 preferred_console = selected_console;
2264
Robin Getz4d091612009-07-01 21:08:37 -04002265 if (newcon->early_setup)
2266 newcon->early_setup();
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002267
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 /*
2269 * See if we want to use this console driver. If we
2270 * didn't select a console we take the first one
2271 * that registers here.
2272 */
2273 if (preferred_console < 0) {
Robin Getz4d091612009-07-01 21:08:37 -04002274 if (newcon->index < 0)
2275 newcon->index = 0;
2276 if (newcon->setup == NULL ||
2277 newcon->setup(newcon, NULL) == 0) {
2278 newcon->flags |= CON_ENABLED;
2279 if (newcon->device) {
2280 newcon->flags |= CON_CONSDEV;
Jan Kiszkacd3a1b82008-05-12 21:21:04 +02002281 preferred_console = 0;
2282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 }
2284 }
2285
2286 /*
2287 * See if this console matches one we selected on
2288 * the command line.
2289 */
Jesper Juhl40dc5652005-10-30 15:02:46 -08002290 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0];
2291 i++) {
Robin Getz4d091612009-07-01 21:08:37 -04002292 if (strcmp(console_cmdline[i].name, newcon->name) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 continue;
Robin Getz4d091612009-07-01 21:08:37 -04002294 if (newcon->index >= 0 &&
2295 newcon->index != console_cmdline[i].index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 continue;
Robin Getz4d091612009-07-01 21:08:37 -04002297 if (newcon->index < 0)
2298 newcon->index = console_cmdline[i].index;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002299#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
2300 if (console_cmdline[i].brl_options) {
Robin Getz4d091612009-07-01 21:08:37 -04002301 newcon->flags |= CON_BRL;
2302 braille_register_console(newcon,
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002303 console_cmdline[i].index,
2304 console_cmdline[i].options,
2305 console_cmdline[i].brl_options);
2306 return;
2307 }
2308#endif
Robin Getz4d091612009-07-01 21:08:37 -04002309 if (newcon->setup &&
2310 newcon->setup(newcon, console_cmdline[i].options) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 break;
Robin Getz4d091612009-07-01 21:08:37 -04002312 newcon->flags |= CON_ENABLED;
2313 newcon->index = console_cmdline[i].index;
Greg Edwardsab4af032005-06-23 00:09:05 -07002314 if (i == selected_console) {
Robin Getz4d091612009-07-01 21:08:37 -04002315 newcon->flags |= CON_CONSDEV;
Greg Edwardsab4af032005-06-23 00:09:05 -07002316 preferred_console = selected_console;
2317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 break;
2319 }
2320
Robin Getz4d091612009-07-01 21:08:37 -04002321 if (!(newcon->flags & CON_ENABLED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 return;
2323
Robin Getz8259cf42009-07-09 13:08:37 -04002324 /*
2325 * If we have a bootconsole, and are switching to a real console,
2326 * don't print everything out again, since when the boot console, and
2327 * the real console are the same physical device, it's annoying to
2328 * see the beginning boot messages twice
2329 */
2330 if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
Robin Getz4d091612009-07-01 21:08:37 -04002331 newcon->flags &= ~CON_PRINTBUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
2333 /*
2334 * Put this console in the list - keep the
2335 * preferred driver at the head of the list.
2336 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002337 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04002338 if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) {
2339 newcon->next = console_drivers;
2340 console_drivers = newcon;
2341 if (newcon->next)
2342 newcon->next->flags &= ~CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 } else {
Robin Getz4d091612009-07-01 21:08:37 -04002344 newcon->next = console_drivers->next;
2345 console_drivers->next = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 }
Robin Getz4d091612009-07-01 21:08:37 -04002347 if (newcon->flags & CON_PRINTBUFFER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 /*
Torben Hohnac751ef2011-01-25 15:07:35 -08002349 * console_unlock(); will print out the buffered messages
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 * for us.
2351 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002352 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02002353 console_seq = syslog_seq;
2354 console_idx = syslog_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002355 console_prev = syslog_prev;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002356 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Feng Tangfe3d8ad2011-03-22 16:34:21 -07002357 /*
2358 * We're about to replay the log buffer. Only do this to the
2359 * just-registered console to avoid excessive message spam to
2360 * the already-registered consoles.
2361 */
2362 exclusive_console = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 }
Torben Hohnac751ef2011-01-25 15:07:35 -08002364 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002365 console_sysfs_notify();
Robin Getz8259cf42009-07-09 13:08:37 -04002366
2367 /*
2368 * By unregistering the bootconsoles after we enable the real console
2369 * we get the "console xxx enabled" message on all the consoles -
2370 * boot consoles, real consoles, etc - this is to ensure that end
2371 * users know there might be something in the kernel's log buffer that
2372 * went to the bootconsole (that they do not see on the real console)
2373 */
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002374 if (bcon &&
2375 ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) &&
2376 !keep_bootcon) {
Robin Getz8259cf42009-07-09 13:08:37 -04002377 /* we need to iterate through twice, to make sure we print
2378 * everything out, before we unregister the console(s)
2379 */
2380 printk(KERN_INFO "console [%s%d] enabled, bootconsole disabled\n",
2381 newcon->name, newcon->index);
2382 for_each_console(bcon)
2383 if (bcon->flags & CON_BOOT)
2384 unregister_console(bcon);
2385 } else {
2386 printk(KERN_INFO "%sconsole [%s%d] enabled\n",
2387 (newcon->flags & CON_BOOT) ? "boot" : "" ,
2388 newcon->name, newcon->index);
2389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390}
2391EXPORT_SYMBOL(register_console);
2392
Jesper Juhl40dc5652005-10-30 15:02:46 -08002393int unregister_console(struct console *console)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394{
Jesper Juhl40dc5652005-10-30 15:02:46 -08002395 struct console *a, *b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 int res = 1;
2397
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002398#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
2399 if (console->flags & CON_BRL)
2400 return braille_unregister_console(console);
2401#endif
2402
Torben Hohnac751ef2011-01-25 15:07:35 -08002403 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 if (console_drivers == console) {
2405 console_drivers=console->next;
2406 res = 0;
Benjamin Herrenschmidte9b15b52005-11-23 13:37:44 -08002407 } else if (console_drivers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 for (a=console_drivers->next, b=console_drivers ;
2409 a; b=a, a=b->next) {
2410 if (a == console) {
2411 b->next = a->next;
2412 res = 0;
2413 break;
Jesper Juhl40dc5652005-10-30 15:02:46 -08002414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 }
2416 }
Jesper Juhl40dc5652005-10-30 15:02:46 -08002417
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002418 /*
Greg Edwardsab4af032005-06-23 00:09:05 -07002419 * If this isn't the last console and it has CON_CONSDEV set, we
2420 * need to set it on the next preferred console.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 */
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002422 if (console_drivers != NULL && console->flags & CON_CONSDEV)
Greg Edwardsab4af032005-06-23 00:09:05 -07002423 console_drivers->flags |= CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
Torben Hohnac751ef2011-01-25 15:07:35 -08002425 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002426 console_sysfs_notify();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 return res;
2428}
2429EXPORT_SYMBOL(unregister_console);
Matt Mackalld59745c2005-05-01 08:59:02 -07002430
Kevin Cernekee034260d2010-06-03 22:11:25 -07002431static int __init printk_late_init(void)
Robin Getz0c5564b2007-08-20 15:22:47 -04002432{
Robin Getz4d091612009-07-01 21:08:37 -04002433 struct console *con;
2434
2435 for_each_console(con) {
Nishanth Aravamudan4c30c6f2011-08-25 15:59:11 -07002436 if (!keep_bootcon && con->flags & CON_BOOT) {
Robin Getzcb00e992007-08-21 23:14:58 -04002437 printk(KERN_INFO "turn off boot console %s%d\n",
Robin Getz4d091612009-07-01 21:08:37 -04002438 con->name, con->index);
Sonic Zhang42c2c8c2009-08-06 15:58:11 -07002439 unregister_console(con);
Robin Getzcb00e992007-08-21 23:14:58 -04002440 }
Robin Getz0c5564b2007-08-20 15:22:47 -04002441 }
Kevin Cernekee034260d2010-06-03 22:11:25 -07002442 hotcpu_notifier(console_cpu_notify, 0);
Robin Getz0c5564b2007-08-20 15:22:47 -04002443 return 0;
2444}
Kevin Cernekee034260d2010-06-03 22:11:25 -07002445late_initcall(printk_late_init);
Robin Getz0c5564b2007-08-20 15:22:47 -04002446
Joe Perches7ef3d2f2008-02-08 04:21:25 -08002447#if defined CONFIG_PRINTK
Dave Young717115e2008-07-25 01:45:58 -07002448
Peter Zijlstra600e1452012-03-15 12:35:37 +01002449int printk_sched(const char *fmt, ...)
2450{
2451 unsigned long flags;
2452 va_list args;
2453 char *buf;
2454 int r;
2455
2456 local_irq_save(flags);
2457 buf = __get_cpu_var(printk_sched_buf);
2458
2459 va_start(args, fmt);
2460 r = vsnprintf(buf, PRINTK_BUF_SIZE, fmt, args);
2461 va_end(args);
2462
2463 __this_cpu_or(printk_pending, PRINTK_PENDING_SCHED);
Frederic Weisbecker74876a92012-10-12 18:00:23 +02002464 irq_work_queue(&__get_cpu_var(wake_up_klogd_work));
Peter Zijlstra600e1452012-03-15 12:35:37 +01002465 local_irq_restore(flags);
2466
2467 return r;
2468}
2469
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470/*
2471 * printk rate limiting, lifted from the networking subsystem.
2472 *
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002473 * This enforces a rate limit: not more than 10 kernel messages
2474 * every 5s to make a denial-of-service attack impossible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 */
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002476DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10);
2477
Christian Borntraeger5c828712009-10-23 14:58:11 +02002478int __printk_ratelimit(const char *func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479{
Christian Borntraeger5c828712009-10-23 14:58:11 +02002480 return ___ratelimit(&printk_ratelimit_state, func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481}
Christian Borntraeger5c828712009-10-23 14:58:11 +02002482EXPORT_SYMBOL(__printk_ratelimit);
Andrew Mortonf46c4832006-11-02 22:07:16 -08002483
2484/**
2485 * printk_timed_ratelimit - caller-controlled printk ratelimiting
2486 * @caller_jiffies: pointer to caller's state
2487 * @interval_msecs: minimum interval between prints
2488 *
2489 * printk_timed_ratelimit() returns true if more than @interval_msecs
2490 * milliseconds have elapsed since the last time printk_timed_ratelimit()
2491 * returned true.
2492 */
2493bool printk_timed_ratelimit(unsigned long *caller_jiffies,
2494 unsigned int interval_msecs)
2495{
Guillaume Knispelf2d28a22009-03-17 16:18:42 +01002496 if (*caller_jiffies == 0
2497 || !time_in_range(jiffies, *caller_jiffies,
2498 *caller_jiffies
2499 + msecs_to_jiffies(interval_msecs))) {
2500 *caller_jiffies = jiffies;
Andrew Mortonf46c4832006-11-02 22:07:16 -08002501 return true;
2502 }
2503 return false;
2504}
2505EXPORT_SYMBOL(printk_timed_ratelimit);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002506
2507static DEFINE_SPINLOCK(dump_list_lock);
2508static LIST_HEAD(dump_list);
2509
2510/**
2511 * kmsg_dump_register - register a kernel log dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002512 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002513 *
2514 * Adds a kernel log dumper to the system. The dump callback in the
2515 * structure will be called when the kernel oopses or panics and must be
2516 * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise.
2517 */
2518int kmsg_dump_register(struct kmsg_dumper *dumper)
2519{
2520 unsigned long flags;
2521 int err = -EBUSY;
2522
2523 /* The dump callback needs to be set */
2524 if (!dumper->dump)
2525 return -EINVAL;
2526
2527 spin_lock_irqsave(&dump_list_lock, flags);
2528 /* Don't allow registering multiple times */
2529 if (!dumper->registered) {
2530 dumper->registered = 1;
Huang Yingfb842b002011-01-12 16:59:43 -08002531 list_add_tail_rcu(&dumper->list, &dump_list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002532 err = 0;
2533 }
2534 spin_unlock_irqrestore(&dump_list_lock, flags);
2535
2536 return err;
2537}
2538EXPORT_SYMBOL_GPL(kmsg_dump_register);
2539
2540/**
2541 * kmsg_dump_unregister - unregister a kmsg dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002542 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002543 *
2544 * Removes a dump device from the system. Returns zero on success and
2545 * %-EINVAL otherwise.
2546 */
2547int kmsg_dump_unregister(struct kmsg_dumper *dumper)
2548{
2549 unsigned long flags;
2550 int err = -EINVAL;
2551
2552 spin_lock_irqsave(&dump_list_lock, flags);
2553 if (dumper->registered) {
2554 dumper->registered = 0;
Huang Yingfb842b002011-01-12 16:59:43 -08002555 list_del_rcu(&dumper->list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002556 err = 0;
2557 }
2558 spin_unlock_irqrestore(&dump_list_lock, flags);
Huang Yingfb842b002011-01-12 16:59:43 -08002559 synchronize_rcu();
Simon Kagstrom456b5652009-10-16 14:09:18 +02002560
2561 return err;
2562}
2563EXPORT_SYMBOL_GPL(kmsg_dump_unregister);
2564
Kay Sievers7ff95542012-05-03 02:29:13 +02002565static bool always_kmsg_dump;
2566module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR);
2567
Simon Kagstrom456b5652009-10-16 14:09:18 +02002568/**
2569 * kmsg_dump - dump kernel log to kernel message dumpers.
2570 * @reason: the reason (oops, panic etc) for dumping
2571 *
Kay Sieverse2ae7152012-06-15 14:07:51 +02002572 * Call each of the registered dumper's dump() callback, which can
2573 * retrieve the kmsg records with kmsg_dump_get_line() or
2574 * kmsg_dump_get_buffer().
Simon Kagstrom456b5652009-10-16 14:09:18 +02002575 */
2576void kmsg_dump(enum kmsg_dump_reason reason)
2577{
Simon Kagstrom456b5652009-10-16 14:09:18 +02002578 struct kmsg_dumper *dumper;
Simon Kagstrom456b5652009-10-16 14:09:18 +02002579 unsigned long flags;
2580
Matthew Garrettc22ab3322012-03-05 14:59:10 -08002581 if ((reason > KMSG_DUMP_OOPS) && !always_kmsg_dump)
2582 return;
2583
Huang Yingfb842b002011-01-12 16:59:43 -08002584 rcu_read_lock();
Kay Sieverse2ae7152012-06-15 14:07:51 +02002585 list_for_each_entry_rcu(dumper, &dump_list, list) {
2586 if (dumper->max_reason && reason > dumper->max_reason)
2587 continue;
2588
2589 /* initialize iterator with data about the stored records */
2590 dumper->active = true;
2591
2592 raw_spin_lock_irqsave(&logbuf_lock, flags);
2593 dumper->cur_seq = clear_seq;
2594 dumper->cur_idx = clear_idx;
2595 dumper->next_seq = log_next_seq;
2596 dumper->next_idx = log_next_idx;
2597 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2598
2599 /* invoke dumper which will iterate over records */
2600 dumper->dump(dumper, reason);
2601
2602 /* reset iterator */
2603 dumper->active = false;
2604 }
Huang Yingfb842b002011-01-12 16:59:43 -08002605 rcu_read_unlock();
Simon Kagstrom456b5652009-10-16 14:09:18 +02002606}
Kay Sieverse2ae7152012-06-15 14:07:51 +02002607
2608/**
Anton Vorontsov533827c2012-07-20 17:28:07 -07002609 * kmsg_dump_get_line_nolock - retrieve one kmsg log line (unlocked version)
2610 * @dumper: registered kmsg dumper
2611 * @syslog: include the "<4>" prefixes
2612 * @line: buffer to copy the line to
2613 * @size: maximum size of the buffer
2614 * @len: length of line placed into buffer
2615 *
2616 * Start at the beginning of the kmsg buffer, with the oldest kmsg
2617 * record, and copy one record into the provided buffer.
2618 *
2619 * Consecutive calls will return the next available record moving
2620 * towards the end of the buffer with the youngest messages.
2621 *
2622 * A return value of FALSE indicates that there are no more records to
2623 * read.
2624 *
2625 * The function is similar to kmsg_dump_get_line(), but grabs no locks.
2626 */
2627bool kmsg_dump_get_line_nolock(struct kmsg_dumper *dumper, bool syslog,
2628 char *line, size_t size, size_t *len)
2629{
2630 struct log *msg;
2631 size_t l = 0;
2632 bool ret = false;
2633
2634 if (!dumper->active)
2635 goto out;
2636
2637 if (dumper->cur_seq < log_first_seq) {
2638 /* messages are gone, move to first available one */
2639 dumper->cur_seq = log_first_seq;
2640 dumper->cur_idx = log_first_idx;
2641 }
2642
2643 /* last entry */
2644 if (dumper->cur_seq >= log_next_seq)
2645 goto out;
2646
2647 msg = log_from_idx(dumper->cur_idx);
2648 l = msg_print_text(msg, 0, syslog, line, size);
2649
2650 dumper->cur_idx = log_next(dumper->cur_idx);
2651 dumper->cur_seq++;
2652 ret = true;
2653out:
2654 if (len)
2655 *len = l;
2656 return ret;
2657}
2658
2659/**
Kay Sieverse2ae7152012-06-15 14:07:51 +02002660 * kmsg_dump_get_line - retrieve one kmsg log line
2661 * @dumper: registered kmsg dumper
2662 * @syslog: include the "<4>" prefixes
2663 * @line: buffer to copy the line to
2664 * @size: maximum size of the buffer
2665 * @len: length of line placed into buffer
2666 *
2667 * Start at the beginning of the kmsg buffer, with the oldest kmsg
2668 * record, and copy one record into the provided buffer.
2669 *
2670 * Consecutive calls will return the next available record moving
2671 * towards the end of the buffer with the youngest messages.
2672 *
2673 * A return value of FALSE indicates that there are no more records to
2674 * read.
2675 */
2676bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog,
2677 char *line, size_t size, size_t *len)
2678{
2679 unsigned long flags;
Anton Vorontsov533827c2012-07-20 17:28:07 -07002680 bool ret;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002681
2682 raw_spin_lock_irqsave(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07002683 ret = kmsg_dump_get_line_nolock(dumper, syslog, line, size, len);
Kay Sieverse2ae7152012-06-15 14:07:51 +02002684 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07002685
Kay Sieverse2ae7152012-06-15 14:07:51 +02002686 return ret;
2687}
2688EXPORT_SYMBOL_GPL(kmsg_dump_get_line);
2689
2690/**
2691 * kmsg_dump_get_buffer - copy kmsg log lines
2692 * @dumper: registered kmsg dumper
2693 * @syslog: include the "<4>" prefixes
Randy Dunlap4f0f4af2012-06-30 15:37:24 -07002694 * @buf: buffer to copy the line to
Kay Sieverse2ae7152012-06-15 14:07:51 +02002695 * @size: maximum size of the buffer
2696 * @len: length of line placed into buffer
2697 *
2698 * Start at the end of the kmsg buffer and fill the provided buffer
2699 * with as many of the the *youngest* kmsg records that fit into it.
2700 * If the buffer is large enough, all available kmsg records will be
2701 * copied with a single call.
2702 *
2703 * Consecutive calls will fill the buffer with the next block of
2704 * available older records, not including the earlier retrieved ones.
2705 *
2706 * A return value of FALSE indicates that there are no more records to
2707 * read.
2708 */
2709bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog,
2710 char *buf, size_t size, size_t *len)
2711{
2712 unsigned long flags;
2713 u64 seq;
2714 u32 idx;
2715 u64 next_seq;
2716 u32 next_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002717 enum log_flags prev;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002718 size_t l = 0;
2719 bool ret = false;
2720
2721 if (!dumper->active)
2722 goto out;
2723
2724 raw_spin_lock_irqsave(&logbuf_lock, flags);
2725 if (dumper->cur_seq < log_first_seq) {
2726 /* messages are gone, move to first available one */
2727 dumper->cur_seq = log_first_seq;
2728 dumper->cur_idx = log_first_idx;
2729 }
2730
2731 /* last entry */
2732 if (dumper->cur_seq >= dumper->next_seq) {
2733 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2734 goto out;
2735 }
2736
2737 /* calculate length of entire buffer */
2738 seq = dumper->cur_seq;
2739 idx = dumper->cur_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002740 prev = 0;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002741 while (seq < dumper->next_seq) {
2742 struct log *msg = log_from_idx(idx);
2743
Kay Sievers5becfb12012-07-09 12:15:42 -07002744 l += msg_print_text(msg, prev, true, NULL, 0);
Kay Sieverse2ae7152012-06-15 14:07:51 +02002745 idx = log_next(idx);
2746 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07002747 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002748 }
2749
2750 /* move first record forward until length fits into the buffer */
2751 seq = dumper->cur_seq;
2752 idx = dumper->cur_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002753 prev = 0;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002754 while (l > size && seq < dumper->next_seq) {
2755 struct log *msg = log_from_idx(idx);
2756
Kay Sievers5becfb12012-07-09 12:15:42 -07002757 l -= msg_print_text(msg, prev, true, NULL, 0);
Kay Sieverse2ae7152012-06-15 14:07:51 +02002758 idx = log_next(idx);
2759 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07002760 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002761 }
2762
2763 /* last message in next interation */
2764 next_seq = seq;
2765 next_idx = idx;
2766
2767 l = 0;
Kay Sievers5becfb12012-07-09 12:15:42 -07002768 prev = 0;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002769 while (seq < dumper->next_seq) {
2770 struct log *msg = log_from_idx(idx);
2771
Kay Sievers5becfb12012-07-09 12:15:42 -07002772 l += msg_print_text(msg, prev, syslog, buf + l, size - l);
Kay Sieverse2ae7152012-06-15 14:07:51 +02002773 idx = log_next(idx);
2774 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07002775 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002776 }
2777
2778 dumper->next_seq = next_seq;
2779 dumper->next_idx = next_idx;
2780 ret = true;
2781 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2782out:
2783 if (len)
2784 *len = l;
2785 return ret;
2786}
2787EXPORT_SYMBOL_GPL(kmsg_dump_get_buffer);
2788
2789/**
Anton Vorontsov533827c2012-07-20 17:28:07 -07002790 * kmsg_dump_rewind_nolock - reset the interator (unlocked version)
2791 * @dumper: registered kmsg dumper
2792 *
2793 * Reset the dumper's iterator so that kmsg_dump_get_line() and
2794 * kmsg_dump_get_buffer() can be called again and used multiple
2795 * times within the same dumper.dump() callback.
2796 *
2797 * The function is similar to kmsg_dump_rewind(), but grabs no locks.
2798 */
2799void kmsg_dump_rewind_nolock(struct kmsg_dumper *dumper)
2800{
2801 dumper->cur_seq = clear_seq;
2802 dumper->cur_idx = clear_idx;
2803 dumper->next_seq = log_next_seq;
2804 dumper->next_idx = log_next_idx;
2805}
2806
2807/**
Kay Sieverse2ae7152012-06-15 14:07:51 +02002808 * kmsg_dump_rewind - reset the interator
2809 * @dumper: registered kmsg dumper
2810 *
2811 * Reset the dumper's iterator so that kmsg_dump_get_line() and
2812 * kmsg_dump_get_buffer() can be called again and used multiple
2813 * times within the same dumper.dump() callback.
2814 */
2815void kmsg_dump_rewind(struct kmsg_dumper *dumper)
2816{
2817 unsigned long flags;
2818
2819 raw_spin_lock_irqsave(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07002820 kmsg_dump_rewind_nolock(dumper);
Kay Sieverse2ae7152012-06-15 14:07:51 +02002821 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2822}
2823EXPORT_SYMBOL_GPL(kmsg_dump_rewind);
Joe Perches7ef3d2f2008-02-08 04:21:25 -08002824#endif