blob: 70b4b94a0eca74af9cec16d11b20417e17682ec6 [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>
Tejun Heo196779b2013-04-30 15:27:12 -070046#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#include <asm/uaccess.h>
49
Johannes Berg95100352011-11-24 20:03:08 +010050#define CREATE_TRACE_POINTS
51#include <trace/events/printk.h>
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/* printk's without a loglevel use this.. */
Mandeep Singh Baines5af5bcb2011-03-22 16:34:23 -070054#define DEFAULT_MESSAGE_LOGLEVEL CONFIG_DEFAULT_MESSAGE_LOGLEVEL
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/* We show everything that is MORE important than this.. */
57#define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */
58#define DEFAULT_CONSOLE_LOGLEVEL 7 /* anything MORE serious than KERN_DEBUG */
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060int console_printk[4] = {
61 DEFAULT_CONSOLE_LOGLEVEL, /* console_loglevel */
62 DEFAULT_MESSAGE_LOGLEVEL, /* default_message_loglevel */
63 MINIMUM_CONSOLE_LOGLEVEL, /* minimum_console_loglevel */
64 DEFAULT_CONSOLE_LOGLEVEL, /* default_console_loglevel */
65};
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/*
Patrick Pletscher0bbfb7c2007-02-17 20:10:16 +010068 * Low level drivers may need that to know if they can schedule in
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 * their unblank() callback or not. So let's export it.
70 */
71int oops_in_progress;
72EXPORT_SYMBOL(oops_in_progress);
73
74/*
75 * console_sem protects the console_drivers list, and also
76 * provides serialisation for access to the entire console
77 * driver system.
78 */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +000079static DEFINE_SEMAPHORE(console_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080struct console *console_drivers;
Ingo Molnara29d1cf2008-06-02 13:19:08 +020081EXPORT_SYMBOL_GPL(console_drivers);
82
Daniel Vetterdaee7792012-09-22 19:52:11 +020083#ifdef CONFIG_LOCKDEP
84static struct lockdep_map console_lock_dep_map = {
85 .name = "console_lock"
86};
87#endif
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
90 * This is used for debugging the mess that is the VT code by
91 * keeping track if we have the console semaphore held. It's
92 * definitely not the perfect debug tool (we don't know if _WE_
93 * hold it are racing, but it helps tracking those weird code
94 * path in the console code where we end up in places I want
95 * locked without the console sempahore held
96 */
Linus Torvalds557240b2006-06-19 18:16:01 -070097static int console_locked, console_suspended;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99/*
Feng Tangfe3d8ad2011-03-22 16:34:21 -0700100 * If exclusive_console is non-NULL then only this console is to be printed to.
101 */
102static struct console *exclusive_console;
103
104/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 * Array of consoles built from command line options (console=)
106 */
107struct console_cmdline
108{
109 char name[8]; /* Name of the driver */
110 int index; /* Minor dev. to use */
111 char *options; /* Options for the driver */
Samuel Thibaultf7511d52008-04-30 00:54:51 -0700112#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
113 char *brl_options; /* Options for braille driver */
114#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
117#define MAX_CMDLINECONSOLES 8
118
119static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
120static int selected_console = -1;
121static int preferred_console = -1;
Markus Armbruster9e124fe2008-05-26 23:31:07 +0100122int console_set_on_cmdline;
123EXPORT_SYMBOL(console_set_on_cmdline);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125/* Flag: console code may call schedule() */
126static int console_may_schedule;
127
Kay Sievers7ff95542012-05-03 02:29:13 +0200128/*
129 * The printk log buffer consists of a chain of concatenated variable
130 * length records. Every record starts with a record header, containing
131 * the overall length of the record.
132 *
133 * The heads to the first and last entry in the buffer, as well as the
134 * sequence numbers of these both entries are maintained when messages
135 * are stored..
136 *
137 * If the heads indicate available messages, the length in the header
138 * tells the start next message. A length == 0 for the next message
139 * indicates a wrap-around to the beginning of the buffer.
140 *
141 * Every record carries the monotonic timestamp in microseconds, as well as
142 * the standard userspace syslog level and syslog facility. The usual
143 * kernel messages use LOG_KERN; userspace-injected messages always carry
144 * a matching syslog facility, by default LOG_USER. The origin of every
145 * message can be reliably determined that way.
146 *
147 * The human readable log message directly follows the message header. The
148 * length of the message text is stored in the header, the stored message
149 * is not terminated.
150 *
Kay Sieverse11fea92012-05-03 02:29:41 +0200151 * Optionally, a message can carry a dictionary of properties (key/value pairs),
152 * to provide userspace with a machine-readable message context.
153 *
154 * Examples for well-defined, commonly used property names are:
155 * DEVICE=b12:8 device identifier
156 * b12:8 block dev_t
157 * c127:3 char dev_t
158 * n8 netdev ifindex
159 * +sound:card0 subsystem:devname
160 * SUBSYSTEM=pci driver-core subsystem name
161 *
162 * Valid characters in property names are [a-zA-Z0-9.-_]. The plain text value
163 * follows directly after a '=' character. Every property is terminated by
164 * a '\0' character. The last property is not terminated.
165 *
166 * Example of a message structure:
167 * 0000 ff 8f 00 00 00 00 00 00 monotonic time in nsec
168 * 0008 34 00 record is 52 bytes long
169 * 000a 0b 00 text is 11 bytes long
170 * 000c 1f 00 dictionary is 23 bytes long
171 * 000e 03 00 LOG_KERN (facility) LOG_ERR (level)
172 * 0010 69 74 27 73 20 61 20 6c "it's a l"
173 * 69 6e 65 "ine"
174 * 001b 44 45 56 49 43 "DEVIC"
175 * 45 3d 62 38 3a 32 00 44 "E=b8:2\0D"
176 * 52 49 56 45 52 3d 62 75 "RIVER=bu"
177 * 67 "g"
178 * 0032 00 00 00 padding to next message header
179 *
180 * The 'struct log' buffer header must never be directly exported to
181 * userspace, it is a kernel-private implementation detail that might
182 * need to be changed in the future, when the requirements change.
183 *
184 * /dev/kmsg exports the structured data in the following line format:
185 * "level,sequnum,timestamp;<message text>\n"
186 *
187 * The optional key/value pairs are attached as continuation lines starting
188 * with a space character and terminated by a newline. All possible
189 * non-prinatable characters are escaped in the "\xff" notation.
190 *
191 * Users of the export format should ignore possible additional values
192 * separated by ',', and find the message after the ';' character.
Kay Sievers7ff95542012-05-03 02:29:13 +0200193 */
Matt Mackalld59745c2005-05-01 08:59:02 -0700194
Kay Sievers084681d2012-06-28 09:38:53 +0200195enum log_flags {
Kay Sievers5becfb12012-07-09 12:15:42 -0700196 LOG_NOCONS = 1, /* already flushed, do not print to console */
197 LOG_NEWLINE = 2, /* text ended with a newline */
198 LOG_PREFIX = 4, /* text started with a prefix */
199 LOG_CONT = 8, /* text is a fragment of a continuation line */
Kay Sievers084681d2012-06-28 09:38:53 +0200200};
201
Kay Sievers7ff95542012-05-03 02:29:13 +0200202struct log {
203 u64 ts_nsec; /* timestamp in nanoseconds */
204 u16 len; /* length of entire record */
205 u16 text_len; /* length of text buffer */
206 u16 dict_len; /* length of dictionary buffer */
Kay Sievers084681d2012-06-28 09:38:53 +0200207 u8 facility; /* syslog facility */
208 u8 flags:5; /* internal record flags */
209 u8 level:3; /* syslog level */
Kay Sievers7ff95542012-05-03 02:29:13 +0200210};
211
212/*
213 * The logbuf_lock protects kmsg buffer, indices, counters. It is also
214 * used in interesting ways to provide interlocking in console_unlock();
215 */
216static DEFINE_RAW_SPINLOCK(logbuf_lock);
217
Kay Sievers96efedf2012-07-16 18:35:29 -0700218#ifdef CONFIG_PRINTK
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -0700219DECLARE_WAIT_QUEUE_HEAD(log_wait);
Kay Sievers7f3a7812012-05-09 01:37:51 +0200220/* the next printk record to read by syslog(READ) or /proc/kmsg */
221static u64 syslog_seq;
222static u32 syslog_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -0700223static enum log_flags syslog_prev;
Kay Sieverseb02dac2012-07-09 10:05:10 -0700224static size_t syslog_partial;
Kay Sievers7f3a7812012-05-09 01:37:51 +0200225
226/* index and sequence number of the first record stored in the buffer */
227static u64 log_first_seq;
228static u32 log_first_idx;
229
230/* index and sequence number of the next record to store in the buffer */
231static u64 log_next_seq;
Kay Sievers7f3a7812012-05-09 01:37:51 +0200232static u32 log_next_idx;
233
Kay Sieverseab07262012-07-16 18:35:30 -0700234/* the next printk record to write to the console */
235static u64 console_seq;
236static u32 console_idx;
237static enum log_flags console_prev;
238
Kay Sievers7f3a7812012-05-09 01:37:51 +0200239/* the next printk record to read after the last 'clear' command */
240static u64 clear_seq;
241static u32 clear_idx;
Kay Sievers7ff95542012-05-03 02:29:13 +0200242
Kay Sievers70498252012-07-16 18:35:29 -0700243#define PREFIX_MAX 32
244#define LOG_LINE_MAX 1024 - PREFIX_MAX
Kay Sievers7ff95542012-05-03 02:29:13 +0200245
246/* record buffer */
Andrew Lunn6ebb0172012-06-05 08:52:34 +0200247#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
Stephen Warrenf8450fc2012-05-10 16:14:33 -0600248#define LOG_ALIGN 4
249#else
Andrew Lunn6ebb0172012-06-05 08:52:34 +0200250#define LOG_ALIGN __alignof__(struct log)
Stephen Warrenf8450fc2012-05-10 16:14:33 -0600251#endif
Kay Sievers7ff95542012-05-03 02:29:13 +0200252#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
Stephen Warrenf8450fc2012-05-10 16:14:33 -0600253static char __log_buf[__LOG_BUF_LEN] __aligned(LOG_ALIGN);
Matt Mackalld59745c2005-05-01 08:59:02 -0700254static char *log_buf = __log_buf;
Kay Sievers7ff95542012-05-03 02:29:13 +0200255static u32 log_buf_len = __LOG_BUF_LEN;
256
Kay Sievers7f3a7812012-05-09 01:37:51 +0200257/* cpu currently holding logbuf_lock */
258static volatile unsigned int logbuf_cpu = UINT_MAX;
Kay Sievers7ff95542012-05-03 02:29:13 +0200259
260/* human readable text of the record */
261static char *log_text(const struct log *msg)
262{
263 return (char *)msg + sizeof(struct log);
264}
265
266/* optional key/value pair dictionary attached to the record */
267static char *log_dict(const struct log *msg)
268{
269 return (char *)msg + sizeof(struct log) + msg->text_len;
270}
271
272/* get record by index; idx must point to valid msg */
273static struct log *log_from_idx(u32 idx)
274{
275 struct log *msg = (struct log *)(log_buf + idx);
276
277 /*
278 * A length == 0 record is the end of buffer marker. Wrap around and
279 * read the message at the start of the buffer.
280 */
281 if (!msg->len)
282 return (struct log *)log_buf;
283 return msg;
284}
285
286/* get next record; idx must point to valid msg */
287static u32 log_next(u32 idx)
288{
289 struct log *msg = (struct log *)(log_buf + idx);
290
291 /* length == 0 indicates the end of the buffer; wrap */
292 /*
293 * A length == 0 record is the end of buffer marker. Wrap around and
294 * read the message at the start of the buffer as *this* one, and
295 * return the one after that.
296 */
297 if (!msg->len) {
298 msg = (struct log *)log_buf;
299 return msg->len;
300 }
301 return idx + msg->len;
302}
303
Kay Sievers7ff95542012-05-03 02:29:13 +0200304/* insert record into the buffer, discard old ones, update heads */
305static void log_store(int facility, int level,
Kay Sievers084681d2012-06-28 09:38:53 +0200306 enum log_flags flags, u64 ts_nsec,
Kay Sievers7ff95542012-05-03 02:29:13 +0200307 const char *dict, u16 dict_len,
308 const char *text, u16 text_len)
309{
310 struct log *msg;
311 u32 size, pad_len;
312
313 /* number of '\0' padding bytes to next message */
314 size = sizeof(struct log) + text_len + dict_len;
315 pad_len = (-size) & (LOG_ALIGN - 1);
316 size += pad_len;
317
318 while (log_first_seq < log_next_seq) {
319 u32 free;
320
321 if (log_next_idx > log_first_idx)
322 free = max(log_buf_len - log_next_idx, log_first_idx);
323 else
324 free = log_first_idx - log_next_idx;
325
326 if (free > size + sizeof(struct log))
327 break;
328
329 /* drop old messages until we have enough contiuous space */
330 log_first_idx = log_next(log_first_idx);
331 log_first_seq++;
332 }
333
334 if (log_next_idx + size + sizeof(struct log) >= log_buf_len) {
335 /*
336 * This message + an additional empty header does not fit
337 * at the end of the buffer. Add an empty header with len == 0
338 * to signify a wrap around.
339 */
340 memset(log_buf + log_next_idx, 0, sizeof(struct log));
341 log_next_idx = 0;
342 }
343
344 /* fill message */
345 msg = (struct log *)(log_buf + log_next_idx);
346 memcpy(log_text(msg), text, text_len);
347 msg->text_len = text_len;
348 memcpy(log_dict(msg), dict, dict_len);
349 msg->dict_len = dict_len;
Kay Sievers084681d2012-06-28 09:38:53 +0200350 msg->facility = facility;
351 msg->level = level & 7;
352 msg->flags = flags & 0x1f;
353 if (ts_nsec > 0)
354 msg->ts_nsec = ts_nsec;
355 else
356 msg->ts_nsec = local_clock();
Kay Sievers7ff95542012-05-03 02:29:13 +0200357 memset(log_dict(msg) + dict_len, 0, pad_len);
358 msg->len = sizeof(struct log) + text_len + dict_len + pad_len;
359
360 /* insert message */
361 log_next_idx += msg->len;
362 log_next_seq++;
363}
Matt Mackalld59745c2005-05-01 08:59:02 -0700364
Kay Sieverse11fea92012-05-03 02:29:41 +0200365/* /dev/kmsg - userspace message inject/listen interface */
366struct devkmsg_user {
367 u64 seq;
368 u32 idx;
Kay Sieversd39f3d72012-07-16 18:35:30 -0700369 enum log_flags prev;
Kay Sieverse11fea92012-05-03 02:29:41 +0200370 struct mutex lock;
371 char buf[8192];
372};
373
374static ssize_t devkmsg_writev(struct kiocb *iocb, const struct iovec *iv,
375 unsigned long count, loff_t pos)
376{
377 char *buf, *line;
378 int i;
379 int level = default_message_loglevel;
380 int facility = 1; /* LOG_USER */
381 size_t len = iov_length(iv, count);
382 ssize_t ret = len;
383
384 if (len > LOG_LINE_MAX)
385 return -EINVAL;
386 buf = kmalloc(len+1, GFP_KERNEL);
387 if (buf == NULL)
388 return -ENOMEM;
389
390 line = buf;
391 for (i = 0; i < count; i++) {
Kay Sieverscdf53442012-07-30 14:40:08 -0700392 if (copy_from_user(line, iv[i].iov_base, iv[i].iov_len)) {
393 ret = -EFAULT;
Kay Sieverse11fea92012-05-03 02:29:41 +0200394 goto out;
Kay Sieverscdf53442012-07-30 14:40:08 -0700395 }
Kay Sieverse11fea92012-05-03 02:29:41 +0200396 line += iv[i].iov_len;
397 }
398
399 /*
400 * Extract and skip the syslog prefix <[0-9]*>. Coming from userspace
401 * the decimal value represents 32bit, the lower 3 bit are the log
402 * level, the rest are the log facility.
403 *
404 * If no prefix or no userspace facility is specified, we
405 * enforce LOG_USER, to be able to reliably distinguish
406 * kernel-generated messages from userspace-injected ones.
407 */
408 line = buf;
409 if (line[0] == '<') {
410 char *endp = NULL;
411
412 i = simple_strtoul(line+1, &endp, 10);
413 if (endp && endp[0] == '>') {
414 level = i & 7;
415 if (i >> 3)
416 facility = i >> 3;
417 endp++;
418 len -= endp - line;
419 line = endp;
420 }
421 }
422 line[len] = '\0';
423
424 printk_emit(facility, level, NULL, 0, "%s", line);
425out:
426 kfree(buf);
427 return ret;
428}
429
430static ssize_t devkmsg_read(struct file *file, char __user *buf,
431 size_t count, loff_t *ppos)
432{
433 struct devkmsg_user *user = file->private_data;
434 struct log *msg;
Kay Sievers5fc324902012-05-08 13:04:17 +0200435 u64 ts_usec;
Kay Sieverse11fea92012-05-03 02:29:41 +0200436 size_t i;
Kay Sieversd39f3d72012-07-16 18:35:30 -0700437 char cont = '-';
Kay Sieverse11fea92012-05-03 02:29:41 +0200438 size_t len;
439 ssize_t ret;
440
441 if (!user)
442 return -EBADF;
443
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +0800444 ret = mutex_lock_interruptible(&user->lock);
445 if (ret)
446 return ret;
liu chuansheng5c53d812012-07-06 09:50:08 -0700447 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200448 while (user->seq == log_next_seq) {
449 if (file->f_flags & O_NONBLOCK) {
450 ret = -EAGAIN;
liu chuansheng5c53d812012-07-06 09:50:08 -0700451 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200452 goto out;
453 }
454
liu chuansheng5c53d812012-07-06 09:50:08 -0700455 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200456 ret = wait_event_interruptible(log_wait,
457 user->seq != log_next_seq);
458 if (ret)
459 goto out;
liu chuansheng5c53d812012-07-06 09:50:08 -0700460 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200461 }
462
463 if (user->seq < log_first_seq) {
464 /* our last seen message is gone, return error and reset */
465 user->idx = log_first_idx;
466 user->seq = log_first_seq;
467 ret = -EPIPE;
liu chuansheng5c53d812012-07-06 09:50:08 -0700468 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200469 goto out;
470 }
471
472 msg = log_from_idx(user->idx);
Kay Sievers5fc324902012-05-08 13:04:17 +0200473 ts_usec = msg->ts_nsec;
474 do_div(ts_usec, 1000);
Kay Sieversd39f3d72012-07-16 18:35:30 -0700475
476 /*
477 * If we couldn't merge continuation line fragments during the print,
478 * export the stored flags to allow an optional external merge of the
479 * records. Merging the records isn't always neccessarily correct, like
480 * when we hit a race during printing. In most cases though, it produces
481 * better readable output. 'c' in the record flags mark the first
482 * fragment of a line, '+' the following.
483 */
484 if (msg->flags & LOG_CONT && !(user->prev & LOG_CONT))
485 cont = 'c';
486 else if ((msg->flags & LOG_CONT) ||
487 ((user->prev & LOG_CONT) && !(msg->flags & LOG_PREFIX)))
488 cont = '+';
489
490 len = sprintf(user->buf, "%u,%llu,%llu,%c;",
491 (msg->facility << 3) | msg->level,
492 user->seq, ts_usec, cont);
493 user->prev = msg->flags;
Kay Sieverse11fea92012-05-03 02:29:41 +0200494
495 /* escape non-printable characters */
496 for (i = 0; i < msg->text_len; i++) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200497 unsigned char c = log_text(msg)[i];
Kay Sieverse11fea92012-05-03 02:29:41 +0200498
Kay Sieverse3f5a5f2012-07-06 09:50:09 -0700499 if (c < ' ' || c >= 127 || c == '\\')
Kay Sieverse11fea92012-05-03 02:29:41 +0200500 len += sprintf(user->buf + len, "\\x%02x", c);
501 else
502 user->buf[len++] = c;
503 }
504 user->buf[len++] = '\n';
505
506 if (msg->dict_len) {
507 bool line = true;
508
509 for (i = 0; i < msg->dict_len; i++) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200510 unsigned char c = log_dict(msg)[i];
Kay Sieverse11fea92012-05-03 02:29:41 +0200511
512 if (line) {
513 user->buf[len++] = ' ';
514 line = false;
515 }
516
517 if (c == '\0') {
518 user->buf[len++] = '\n';
519 line = true;
520 continue;
521 }
522
Kay Sieverse3f5a5f2012-07-06 09:50:09 -0700523 if (c < ' ' || c >= 127 || c == '\\') {
Kay Sieverse11fea92012-05-03 02:29:41 +0200524 len += sprintf(user->buf + len, "\\x%02x", c);
525 continue;
526 }
527
528 user->buf[len++] = c;
529 }
530 user->buf[len++] = '\n';
531 }
532
533 user->idx = log_next(user->idx);
534 user->seq++;
liu chuansheng5c53d812012-07-06 09:50:08 -0700535 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200536
537 if (len > count) {
538 ret = -EINVAL;
539 goto out;
540 }
541
542 if (copy_to_user(buf, user->buf, len)) {
543 ret = -EFAULT;
544 goto out;
545 }
546 ret = len;
547out:
548 mutex_unlock(&user->lock);
549 return ret;
550}
551
552static loff_t devkmsg_llseek(struct file *file, loff_t offset, int whence)
553{
554 struct devkmsg_user *user = file->private_data;
555 loff_t ret = 0;
556
557 if (!user)
558 return -EBADF;
559 if (offset)
560 return -ESPIPE;
561
liu chuansheng5c53d812012-07-06 09:50:08 -0700562 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200563 switch (whence) {
564 case SEEK_SET:
565 /* the first record */
566 user->idx = log_first_idx;
567 user->seq = log_first_seq;
568 break;
569 case SEEK_DATA:
570 /*
571 * The first record after the last SYSLOG_ACTION_CLEAR,
572 * like issued by 'dmesg -c'. Reading /dev/kmsg itself
573 * changes no global state, and does not clear anything.
574 */
575 user->idx = clear_idx;
576 user->seq = clear_seq;
577 break;
578 case SEEK_END:
579 /* after the last record */
580 user->idx = log_next_idx;
581 user->seq = log_next_seq;
582 break;
583 default:
584 ret = -EINVAL;
585 }
liu chuansheng5c53d812012-07-06 09:50:08 -0700586 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200587 return ret;
588}
589
590static unsigned int devkmsg_poll(struct file *file, poll_table *wait)
591{
592 struct devkmsg_user *user = file->private_data;
593 int ret = 0;
594
595 if (!user)
596 return POLLERR|POLLNVAL;
597
598 poll_wait(file, &log_wait, wait);
599
liu chuansheng5c53d812012-07-06 09:50:08 -0700600 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200601 if (user->seq < log_next_seq) {
602 /* return error when data has vanished underneath us */
603 if (user->seq < log_first_seq)
604 ret = POLLIN|POLLRDNORM|POLLERR|POLLPRI;
Nicolas Kaiser0a285312013-04-29 16:17:20 -0700605 else
606 ret = POLLIN|POLLRDNORM;
Kay Sieverse11fea92012-05-03 02:29:41 +0200607 }
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
Andrew Cooks2fa72c82012-12-17 15:59:56 -0800745static bool __read_mostly ignore_loglevel;
746
747static int __init ignore_loglevel_setup(char *str)
748{
749 ignore_loglevel = 1;
750 printk(KERN_INFO "debug: ignoring loglevel setting.\n");
751
752 return 0;
753}
754
755early_param("ignore_loglevel", ignore_loglevel_setup);
756module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR);
757MODULE_PARM_DESC(ignore_loglevel, "ignore loglevel setting, to"
758 "print all kernel messages to the console.");
759
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700760#ifdef CONFIG_BOOT_PRINTK_DELAY
761
Namhyung Kim674dff62010-10-26 14:22:48 -0700762static int boot_delay; /* msecs delay after each printk during bootup */
Dave Young3a3b6ed2009-09-22 16:43:31 -0700763static unsigned long long loops_per_msec; /* based on boot_delay */
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700764
765static int __init boot_delay_setup(char *str)
766{
767 unsigned long lpj;
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700768
769 lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */
770 loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
771
772 get_option(&str, &boot_delay);
773 if (boot_delay > 10 * 1000)
774 boot_delay = 0;
775
Dave Young3a3b6ed2009-09-22 16:43:31 -0700776 pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
777 "HZ: %d, loops_per_msec: %llu\n",
778 boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700779 return 1;
780}
781__setup("boot_delay=", boot_delay_setup);
782
Andrew Cooks2fa72c82012-12-17 15:59:56 -0800783static void boot_delay_msec(int level)
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700784{
785 unsigned long long k;
786 unsigned long timeout;
787
Andrew Cooks2fa72c82012-12-17 15:59:56 -0800788 if ((boot_delay == 0 || system_state != SYSTEM_BOOTING)
789 || (level >= console_loglevel && !ignore_loglevel)) {
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700790 return;
Andrew Cooks2fa72c82012-12-17 15:59:56 -0800791 }
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700792
Dave Young3a3b6ed2009-09-22 16:43:31 -0700793 k = (unsigned long long)loops_per_msec * boot_delay;
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700794
795 timeout = jiffies + msecs_to_jiffies(boot_delay);
796 while (k) {
797 k--;
798 cpu_relax();
799 /*
800 * use (volatile) jiffies to prevent
801 * compiler reduction; loop termination via jiffies
802 * is secondary and may or may not happen.
803 */
804 if (time_after(jiffies, timeout))
805 break;
806 touch_nmi_watchdog();
807 }
808}
809#else
Andrew Cooks2fa72c82012-12-17 15:59:56 -0800810static inline void boot_delay_msec(int level)
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700811{
812}
813#endif
814
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800815#ifdef CONFIG_SECURITY_DMESG_RESTRICT
816int dmesg_restrict = 1;
817#else
818int dmesg_restrict;
819#endif
820
Linus Torvaldsee24aeb2011-02-10 17:53:55 -0800821static int syslog_action_restricted(int type)
822{
823 if (dmesg_restrict)
824 return 1;
825 /* Unless restricted, we allow "read all" and "get buffer size" for everybody */
826 return type != SYSLOG_ACTION_READ_ALL && type != SYSLOG_ACTION_SIZE_BUFFER;
827}
828
829static int check_syslog_permissions(int type, bool from_file)
830{
831 /*
832 * If this is from /proc/kmsg and we've already opened it, then we've
833 * already done the capabilities checks at open time.
834 */
835 if (from_file && type != SYSLOG_ACTION_OPEN)
836 return 0;
837
838 if (syslog_action_restricted(type)) {
839 if (capable(CAP_SYSLOG))
840 return 0;
841 /* For historical reasons, accept CAP_SYS_ADMIN too, with a warning */
842 if (capable(CAP_SYS_ADMIN)) {
Jonathan Niederf2c0d022011-08-08 06:22:43 +0200843 printk_once(KERN_WARNING "%s (%d): "
844 "Attempt to access syslog with CAP_SYS_ADMIN "
845 "but no CAP_SYSLOG (deprecated).\n",
846 current->comm, task_pid_nr(current));
Linus Torvaldsee24aeb2011-02-10 17:53:55 -0800847 return 0;
848 }
849 return -EPERM;
850 }
851 return 0;
852}
853
Kay Sievers7ff95542012-05-03 02:29:13 +0200854#if defined(CONFIG_PRINTK_TIME)
855static bool printk_time = 1;
856#else
857static bool printk_time;
858#endif
859module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
860
Kay Sievers084681d2012-06-28 09:38:53 +0200861static size_t print_time(u64 ts, char *buf)
862{
863 unsigned long rem_nsec;
864
865 if (!printk_time)
866 return 0;
867
Kay Sievers084681d2012-06-28 09:38:53 +0200868 rem_nsec = do_div(ts, 1000000000);
Roland Dreier35dac272013-01-04 15:35:50 -0800869
870 if (!buf)
871 return snprintf(NULL, 0, "[%5lu.000000] ", (unsigned long)ts);
872
Kay Sievers084681d2012-06-28 09:38:53 +0200873 return sprintf(buf, "[%5lu.%06lu] ",
874 (unsigned long)ts, rem_nsec / 1000);
875}
876
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200877static size_t print_prefix(const struct log *msg, bool syslog, char *buf)
Kay Sievers649e6ee2012-05-10 04:30:45 +0200878{
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200879 size_t len = 0;
Kay Sievers43a73a52012-07-06 09:50:09 -0700880 unsigned int prefix = (msg->facility << 3) | msg->level;
Kay Sievers649e6ee2012-05-10 04:30:45 +0200881
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200882 if (syslog) {
883 if (buf) {
Kay Sievers43a73a52012-07-06 09:50:09 -0700884 len += sprintf(buf, "<%u>", prefix);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200885 } else {
886 len += 3;
Kay Sievers43a73a52012-07-06 09:50:09 -0700887 if (prefix > 999)
888 len += 3;
889 else if (prefix > 99)
890 len += 2;
891 else if (prefix > 9)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200892 len++;
893 }
Kay Sievers7ff95542012-05-03 02:29:13 +0200894 }
895
Kay Sievers084681d2012-06-28 09:38:53 +0200896 len += print_time(msg->ts_nsec, buf ? buf + len : NULL);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200897 return len;
898}
899
Kay Sievers5becfb12012-07-09 12:15:42 -0700900static size_t msg_print_text(const struct log *msg, enum log_flags prev,
901 bool syslog, char *buf, size_t size)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200902{
903 const char *text = log_text(msg);
904 size_t text_size = msg->text_len;
Kay Sievers5becfb12012-07-09 12:15:42 -0700905 bool prefix = true;
906 bool newline = true;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200907 size_t len = 0;
908
Kay Sievers5becfb12012-07-09 12:15:42 -0700909 if ((prev & LOG_CONT) && !(msg->flags & LOG_PREFIX))
910 prefix = false;
911
912 if (msg->flags & LOG_CONT) {
913 if ((prev & LOG_CONT) && !(prev & LOG_NEWLINE))
914 prefix = false;
915
916 if (!(msg->flags & LOG_NEWLINE))
917 newline = false;
918 }
919
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200920 do {
921 const char *next = memchr(text, '\n', text_size);
922 size_t text_len;
923
924 if (next) {
925 text_len = next - text;
926 next++;
927 text_size -= next - text;
928 } else {
929 text_len = text_size;
930 }
931
932 if (buf) {
933 if (print_prefix(msg, syslog, NULL) +
Kay Sievers70498252012-07-16 18:35:29 -0700934 text_len + 1 >= size - len)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200935 break;
936
Kay Sievers5becfb12012-07-09 12:15:42 -0700937 if (prefix)
938 len += print_prefix(msg, syslog, buf + len);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200939 memcpy(buf + len, text, text_len);
940 len += text_len;
Kay Sievers5becfb12012-07-09 12:15:42 -0700941 if (next || newline)
942 buf[len++] = '\n';
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200943 } else {
944 /* SYSLOG_ACTION_* buffer size only calculation */
Kay Sievers5becfb12012-07-09 12:15:42 -0700945 if (prefix)
946 len += print_prefix(msg, syslog, NULL);
947 len += text_len;
948 if (next || newline)
949 len++;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200950 }
951
Kay Sievers5becfb12012-07-09 12:15:42 -0700952 prefix = true;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200953 text = next;
954 } while (text);
955
Kay Sievers7ff95542012-05-03 02:29:13 +0200956 return len;
957}
958
959static int syslog_print(char __user *buf, int size)
960{
961 char *text;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +0200962 struct log *msg;
Jan Beulich116e90b2012-06-22 16:36:09 +0100963 int len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +0200964
Kay Sievers70498252012-07-16 18:35:29 -0700965 text = kmalloc(LOG_LINE_MAX + PREFIX_MAX, GFP_KERNEL);
Kay Sievers7ff95542012-05-03 02:29:13 +0200966 if (!text)
967 return -ENOMEM;
968
Jan Beulich116e90b2012-06-22 16:36:09 +0100969 while (size > 0) {
970 size_t n;
Kay Sieverseb02dac2012-07-09 10:05:10 -0700971 size_t skip;
Kay Sievers7ff95542012-05-03 02:29:13 +0200972
Jan Beulich116e90b2012-06-22 16:36:09 +0100973 raw_spin_lock_irq(&logbuf_lock);
974 if (syslog_seq < log_first_seq) {
975 /* messages are gone, move to first one */
976 syslog_seq = log_first_seq;
977 syslog_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -0700978 syslog_prev = 0;
Kay Sieverseb02dac2012-07-09 10:05:10 -0700979 syslog_partial = 0;
Jan Beulich116e90b2012-06-22 16:36:09 +0100980 }
981 if (syslog_seq == log_next_seq) {
982 raw_spin_unlock_irq(&logbuf_lock);
983 break;
984 }
Kay Sieverseb02dac2012-07-09 10:05:10 -0700985
986 skip = syslog_partial;
Jan Beulich116e90b2012-06-22 16:36:09 +0100987 msg = log_from_idx(syslog_idx);
Kay Sievers70498252012-07-16 18:35:29 -0700988 n = msg_print_text(msg, syslog_prev, true, text,
989 LOG_LINE_MAX + PREFIX_MAX);
Kay Sieverseb02dac2012-07-09 10:05:10 -0700990 if (n - syslog_partial <= size) {
991 /* message fits into buffer, move forward */
Jan Beulich116e90b2012-06-22 16:36:09 +0100992 syslog_idx = log_next(syslog_idx);
993 syslog_seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -0700994 syslog_prev = msg->flags;
Kay Sieverseb02dac2012-07-09 10:05:10 -0700995 n -= syslog_partial;
996 syslog_partial = 0;
997 } else if (!len){
998 /* partial read(), remember position */
999 n = size;
1000 syslog_partial += n;
Jan Beulich116e90b2012-06-22 16:36:09 +01001001 } else
1002 n = 0;
1003 raw_spin_unlock_irq(&logbuf_lock);
1004
1005 if (!n)
1006 break;
1007
Kay Sieverseb02dac2012-07-09 10:05:10 -07001008 if (copy_to_user(buf, text + skip, n)) {
Jan Beulich116e90b2012-06-22 16:36:09 +01001009 if (!len)
1010 len = -EFAULT;
1011 break;
1012 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001013
1014 len += n;
1015 size -= n;
1016 buf += n;
Jan Beulich116e90b2012-06-22 16:36:09 +01001017 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001018
1019 kfree(text);
1020 return len;
1021}
1022
1023static int syslog_print_all(char __user *buf, int size, bool clear)
1024{
1025 char *text;
1026 int len = 0;
1027
Kay Sievers70498252012-07-16 18:35:29 -07001028 text = kmalloc(LOG_LINE_MAX + PREFIX_MAX, GFP_KERNEL);
Kay Sievers7ff95542012-05-03 02:29:13 +02001029 if (!text)
1030 return -ENOMEM;
1031
1032 raw_spin_lock_irq(&logbuf_lock);
1033 if (buf) {
1034 u64 next_seq;
1035 u64 seq;
1036 u32 idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001037 enum log_flags prev;
Kay Sievers7ff95542012-05-03 02:29:13 +02001038
1039 if (clear_seq < log_first_seq) {
1040 /* messages are gone, move to first available one */
1041 clear_seq = log_first_seq;
1042 clear_idx = log_first_idx;
1043 }
1044
1045 /*
1046 * Find first record that fits, including all following records,
1047 * into the user-provided buffer for this dump.
Kay Sieverse2ae7152012-06-15 14:07:51 +02001048 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001049 seq = clear_seq;
1050 idx = clear_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001051 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001052 while (seq < log_next_seq) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001053 struct log *msg = log_from_idx(idx);
1054
Kay Sievers5becfb12012-07-09 12:15:42 -07001055 len += msg_print_text(msg, prev, true, NULL, 0);
Jeff Mahoneye3756472012-08-10 15:07:09 -04001056 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001057 idx = log_next(idx);
1058 seq++;
1059 }
Kay Sieverse2ae7152012-06-15 14:07:51 +02001060
1061 /* move first record forward until length fits into the buffer */
Kay Sievers7ff95542012-05-03 02:29:13 +02001062 seq = clear_seq;
1063 idx = clear_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001064 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001065 while (len > size && seq < log_next_seq) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001066 struct log *msg = log_from_idx(idx);
1067
Kay Sievers5becfb12012-07-09 12:15:42 -07001068 len -= msg_print_text(msg, prev, true, NULL, 0);
Jeff Mahoneye3756472012-08-10 15:07:09 -04001069 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001070 idx = log_next(idx);
1071 seq++;
1072 }
1073
Kay Sieverse2ae7152012-06-15 14:07:51 +02001074 /* last message fitting into this dump */
Kay Sievers7ff95542012-05-03 02:29:13 +02001075 next_seq = log_next_seq;
1076
1077 len = 0;
Kay Sievers5becfb12012-07-09 12:15:42 -07001078 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001079 while (len >= 0 && seq < next_seq) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001080 struct log *msg = log_from_idx(idx);
Kay Sievers7ff95542012-05-03 02:29:13 +02001081 int textlen;
1082
Kay Sievers70498252012-07-16 18:35:29 -07001083 textlen = msg_print_text(msg, prev, true, text,
1084 LOG_LINE_MAX + PREFIX_MAX);
Kay Sievers7ff95542012-05-03 02:29:13 +02001085 if (textlen < 0) {
1086 len = textlen;
1087 break;
1088 }
1089 idx = log_next(idx);
1090 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07001091 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001092
1093 raw_spin_unlock_irq(&logbuf_lock);
1094 if (copy_to_user(buf + len, text, textlen))
1095 len = -EFAULT;
1096 else
1097 len += textlen;
1098 raw_spin_lock_irq(&logbuf_lock);
1099
1100 if (seq < log_first_seq) {
1101 /* messages are gone, move to next one */
1102 seq = log_first_seq;
1103 idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001104 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001105 }
1106 }
1107 }
1108
1109 if (clear) {
1110 clear_seq = log_next_seq;
1111 clear_idx = log_next_idx;
1112 }
1113 raw_spin_unlock_irq(&logbuf_lock);
1114
1115 kfree(text);
1116 return len;
1117}
1118
Kees Cook00234592010-02-03 15:36:43 -08001119int do_syslog(int type, char __user *buf, int len, bool from_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
Kay Sievers7ff95542012-05-03 02:29:13 +02001121 bool clear = false;
1122 static int saved_console_loglevel = -1;
Linus Torvaldsee24aeb2011-02-10 17:53:55 -08001123 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Linus Torvaldsee24aeb2011-02-10 17:53:55 -08001125 error = check_syslog_permissions(type, from_file);
1126 if (error)
1127 goto out;
Eric Paris12b30522010-11-15 18:36:29 -05001128
1129 error = security_syslog(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 if (error)
1131 return error;
1132
1133 switch (type) {
Kees Cookd78ca3c2010-02-03 15:37:13 -08001134 case SYSLOG_ACTION_CLOSE: /* Close log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001136 case SYSLOG_ACTION_OPEN: /* Open log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001138 case SYSLOG_ACTION_READ: /* Read from log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 error = -EINVAL;
1140 if (!buf || len < 0)
1141 goto out;
1142 error = 0;
1143 if (!len)
1144 goto out;
1145 if (!access_ok(VERIFY_WRITE, buf, len)) {
1146 error = -EFAULT;
1147 goto out;
1148 }
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +08001149 error = wait_event_interruptible(log_wait,
1150 syslog_seq != log_next_seq);
Kay Sieverscb424ff2012-07-06 09:50:09 -07001151 if (error)
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +08001152 goto out;
Kay Sievers7ff95542012-05-03 02:29:13 +02001153 error = syslog_print(buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001155 /* Read/clear last kernel messages */
1156 case SYSLOG_ACTION_READ_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +02001157 clear = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 /* FALL THRU */
Kees Cookd78ca3c2010-02-03 15:37:13 -08001159 /* Read last kernel messages */
1160 case SYSLOG_ACTION_READ_ALL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 error = -EINVAL;
1162 if (!buf || len < 0)
1163 goto out;
1164 error = 0;
1165 if (!len)
1166 goto out;
1167 if (!access_ok(VERIFY_WRITE, buf, len)) {
1168 error = -EFAULT;
1169 goto out;
1170 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001171 error = syslog_print_all(buf, len, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001173 /* Clear ring buffer */
1174 case SYSLOG_ACTION_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +02001175 syslog_print_all(NULL, 0, true);
Alan Stern4661e352012-06-22 17:12:19 -04001176 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001177 /* Disable logging to console */
1178 case SYSLOG_ACTION_CONSOLE_OFF:
Frans Pop1aaad492009-07-06 13:31:48 +02001179 if (saved_console_loglevel == -1)
1180 saved_console_loglevel = console_loglevel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 console_loglevel = minimum_console_loglevel;
1182 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001183 /* Enable logging to console */
1184 case SYSLOG_ACTION_CONSOLE_ON:
Frans Pop1aaad492009-07-06 13:31:48 +02001185 if (saved_console_loglevel != -1) {
1186 console_loglevel = saved_console_loglevel;
1187 saved_console_loglevel = -1;
1188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001190 /* Set level of messages printed to console */
1191 case SYSLOG_ACTION_CONSOLE_LEVEL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 error = -EINVAL;
1193 if (len < 1 || len > 8)
1194 goto out;
1195 if (len < minimum_console_loglevel)
1196 len = minimum_console_loglevel;
1197 console_loglevel = len;
Frans Pop1aaad492009-07-06 13:31:48 +02001198 /* Implicitly re-enable logging to console */
1199 saved_console_loglevel = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 error = 0;
1201 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001202 /* Number of chars in the log buffer */
1203 case SYSLOG_ACTION_SIZE_UNREAD:
Kay Sievers7ff95542012-05-03 02:29:13 +02001204 raw_spin_lock_irq(&logbuf_lock);
1205 if (syslog_seq < log_first_seq) {
1206 /* messages are gone, move to first one */
1207 syslog_seq = log_first_seq;
1208 syslog_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001209 syslog_prev = 0;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001210 syslog_partial = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001211 }
1212 if (from_file) {
1213 /*
1214 * Short-cut for poll(/"proc/kmsg") which simply checks
1215 * for pending data, not the size; return the count of
1216 * records, not the length.
1217 */
1218 error = log_next_idx - syslog_idx;
1219 } else {
Kay Sievers5becfb12012-07-09 12:15:42 -07001220 u64 seq = syslog_seq;
1221 u32 idx = syslog_idx;
1222 enum log_flags prev = syslog_prev;
Kay Sievers7ff95542012-05-03 02:29:13 +02001223
1224 error = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001225 while (seq < log_next_seq) {
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001226 struct log *msg = log_from_idx(idx);
1227
Kay Sievers5becfb12012-07-09 12:15:42 -07001228 error += msg_print_text(msg, prev, true, NULL, 0);
Kay Sievers7ff95542012-05-03 02:29:13 +02001229 idx = log_next(idx);
1230 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07001231 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001232 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001233 error -= syslog_partial;
Kay Sievers7ff95542012-05-03 02:29:13 +02001234 }
1235 raw_spin_unlock_irq(&logbuf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001237 /* Size of the log buffer */
1238 case SYSLOG_ACTION_SIZE_BUFFER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 error = log_buf_len;
1240 break;
1241 default:
1242 error = -EINVAL;
1243 break;
1244 }
1245out:
1246 return error;
1247}
1248
Heiko Carstens1e7bfb22009-01-14 14:14:29 +01001249SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
Kees Cook00234592010-02-03 15:36:43 -08001251 return do_syslog(type, buf, len, SYSLOG_FROM_CALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252}
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 * Call the console drivers, asking them to write out
1256 * log_buf[start] to log_buf[end - 1].
Torben Hohnac751ef2011-01-25 15:07:35 -08001257 * The console_lock must be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001259static void call_console_drivers(int level, const char *text, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
Kay Sievers7ff95542012-05-03 02:29:13 +02001261 struct console *con;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
zhangwei(Jovi)07c65f42013-04-29 16:17:16 -07001263 trace_console(text, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Kay Sievers7ff95542012-05-03 02:29:13 +02001265 if (level >= console_loglevel && !ignore_loglevel)
1266 return;
1267 if (!console_drivers)
1268 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Kay Sievers7ff95542012-05-03 02:29:13 +02001270 for_each_console(con) {
1271 if (exclusive_console && con != exclusive_console)
1272 continue;
1273 if (!(con->flags & CON_ENABLED))
1274 continue;
1275 if (!con->write)
1276 continue;
1277 if (!cpu_online(smp_processor_id()) &&
1278 !(con->flags & CON_ANYTIME))
1279 continue;
1280 con->write(con, text, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
1284/*
1285 * Zap console related locks when oopsing. Only zap at most once
1286 * every 10 seconds, to leave time for slow consoles to print a
1287 * full oops.
1288 */
1289static void zap_locks(void)
1290{
1291 static unsigned long oops_timestamp;
1292
1293 if (time_after_eq(jiffies, oops_timestamp) &&
Jesper Juhl40dc5652005-10-30 15:02:46 -08001294 !time_after(jiffies, oops_timestamp + 30 * HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 return;
1296
1297 oops_timestamp = jiffies;
1298
Peter Zijlstra94d24fc2011-06-07 11:17:30 +02001299 debug_locks_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 /* If a crash is occurring, make sure we can't deadlock */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001301 raw_spin_lock_init(&logbuf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 /* And make sure that we print immediately */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +00001303 sema_init(&console_sem, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
Michael Ellerman76a8ad292006-06-25 05:47:40 -07001306/* Check if we have any console registered that can be called early in boot. */
1307static int have_callable_console(void)
1308{
1309 struct console *con;
1310
Robin Getz4d091612009-07-01 21:08:37 -04001311 for_each_console(con)
Michael Ellerman76a8ad292006-06-25 05:47:40 -07001312 if (con->flags & CON_ANYTIME)
1313 return 1;
1314
1315 return 0;
1316}
1317
Linus Torvalds266c2e02008-03-24 19:25:08 -07001318/*
1319 * Can we actually use the console at this time on this cpu?
1320 *
1321 * Console drivers may assume that per-cpu resources have
1322 * been allocated. So unless they're explicitly marked as
1323 * being able to cope (CON_ANYTIME) don't call them until
1324 * this CPU is officially up.
1325 */
1326static inline int can_use_console(unsigned int cpu)
1327{
1328 return cpu_online(cpu) || have_callable_console();
1329}
1330
1331/*
1332 * Try to get console ownership to actually show the kernel
1333 * messages from a 'printk'. Return true (and with the
Torben Hohnac751ef2011-01-25 15:07:35 -08001334 * console_lock held, and 'console_locked' set) if it
Linus Torvalds266c2e02008-03-24 19:25:08 -07001335 * is successful, false otherwise.
1336 *
1337 * This gets called with the 'logbuf_lock' spinlock held and
1338 * interrupts disabled. It should return with 'lockbuf_lock'
1339 * released but interrupts still disabled.
1340 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001341static int console_trylock_for_printk(unsigned int cpu)
Namhyung Kim8155c022010-10-26 14:22:47 -07001342 __releases(&logbuf_lock)
Linus Torvalds266c2e02008-03-24 19:25:08 -07001343{
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02001344 int retval = 0, wake = 0;
Linus Torvalds266c2e02008-03-24 19:25:08 -07001345
Torben Hohnac751ef2011-01-25 15:07:35 -08001346 if (console_trylock()) {
Linus Torvalds093a07e2008-04-15 13:09:54 -07001347 retval = 1;
1348
1349 /*
1350 * If we can't use the console, we need to release
1351 * the console semaphore by hand to avoid flushing
1352 * the buffer. We need to hold the console semaphore
1353 * in order to do this test safely.
1354 */
1355 if (!can_use_console(cpu)) {
1356 console_locked = 0;
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02001357 wake = 1;
Linus Torvalds093a07e2008-04-15 13:09:54 -07001358 retval = 0;
1359 }
1360 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001361 logbuf_cpu = UINT_MAX;
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02001362 if (wake)
1363 up(&console_sem);
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001364 raw_spin_unlock(&logbuf_lock);
Linus Torvalds266c2e02008-03-24 19:25:08 -07001365 return retval;
1366}
Ingo Molnar32a76002008-01-25 21:07:58 +01001367
Dave Youngaf913222009-09-22 16:43:33 -07001368int printk_delay_msec __read_mostly;
1369
1370static inline void printk_delay(void)
1371{
1372 if (unlikely(printk_delay_msec)) {
1373 int m = printk_delay_msec;
1374
1375 while (m--) {
1376 mdelay(1);
1377 touch_nmi_watchdog();
1378 }
1379 }
1380}
1381
Kay Sievers084681d2012-06-28 09:38:53 +02001382/*
1383 * Continuation lines are buffered, and not committed to the record buffer
1384 * until the line is complete, or a race forces it. The line fragments
1385 * though, are printed immediately to the consoles to ensure everything has
1386 * reached the console in case of a kernel crash.
1387 */
1388static struct cont {
1389 char buf[LOG_LINE_MAX];
1390 size_t len; /* length == 0 means unused buffer */
1391 size_t cons; /* bytes written to console */
1392 struct task_struct *owner; /* task of first print*/
1393 u64 ts_nsec; /* time of first print */
1394 u8 level; /* log level of first message */
1395 u8 facility; /* log level of first message */
Kay Sieverseab07262012-07-16 18:35:30 -07001396 enum log_flags flags; /* prefix, newline flags */
Kay Sievers084681d2012-06-28 09:38:53 +02001397 bool flushed:1; /* buffer sealed and committed */
1398} cont;
1399
Kay Sievers70498252012-07-16 18:35:29 -07001400static void cont_flush(enum log_flags flags)
Kay Sievers084681d2012-06-28 09:38:53 +02001401{
1402 if (cont.flushed)
1403 return;
1404 if (cont.len == 0)
1405 return;
1406
Kay Sieverseab07262012-07-16 18:35:30 -07001407 if (cont.cons) {
1408 /*
1409 * If a fragment of this line was directly flushed to the
1410 * console; wait for the console to pick up the rest of the
1411 * line. LOG_NOCONS suppresses a duplicated output.
1412 */
1413 log_store(cont.facility, cont.level, flags | LOG_NOCONS,
1414 cont.ts_nsec, NULL, 0, cont.buf, cont.len);
1415 cont.flags = flags;
1416 cont.flushed = true;
1417 } else {
1418 /*
1419 * If no fragment of this line ever reached the console,
1420 * just submit it to the store and free the buffer.
1421 */
1422 log_store(cont.facility, cont.level, flags, 0,
1423 NULL, 0, cont.buf, cont.len);
1424 cont.len = 0;
1425 }
Kay Sievers084681d2012-06-28 09:38:53 +02001426}
1427
1428static bool cont_add(int facility, int level, const char *text, size_t len)
1429{
1430 if (cont.len && cont.flushed)
1431 return false;
1432
1433 if (cont.len + len > sizeof(cont.buf)) {
Kay Sievers70498252012-07-16 18:35:29 -07001434 /* the line gets too long, split it up in separate records */
1435 cont_flush(LOG_CONT);
Kay Sievers084681d2012-06-28 09:38:53 +02001436 return false;
1437 }
1438
1439 if (!cont.len) {
1440 cont.facility = facility;
1441 cont.level = level;
1442 cont.owner = current;
1443 cont.ts_nsec = local_clock();
Kay Sieverseab07262012-07-16 18:35:30 -07001444 cont.flags = 0;
Kay Sievers084681d2012-06-28 09:38:53 +02001445 cont.cons = 0;
1446 cont.flushed = false;
1447 }
1448
1449 memcpy(cont.buf + cont.len, text, len);
1450 cont.len += len;
Kay Sieverseab07262012-07-16 18:35:30 -07001451
1452 if (cont.len > (sizeof(cont.buf) * 80) / 100)
1453 cont_flush(LOG_CONT);
1454
Kay Sievers084681d2012-06-28 09:38:53 +02001455 return true;
1456}
1457
1458static size_t cont_print_text(char *text, size_t size)
1459{
1460 size_t textlen = 0;
1461 size_t len;
1462
Kay Sieverseab07262012-07-16 18:35:30 -07001463 if (cont.cons == 0 && (console_prev & LOG_NEWLINE)) {
Kay Sievers084681d2012-06-28 09:38:53 +02001464 textlen += print_time(cont.ts_nsec, text);
1465 size -= textlen;
1466 }
1467
1468 len = cont.len - cont.cons;
1469 if (len > 0) {
1470 if (len+1 > size)
1471 len = size-1;
1472 memcpy(text + textlen, cont.buf + cont.cons, len);
1473 textlen += len;
1474 cont.cons = cont.len;
1475 }
1476
1477 if (cont.flushed) {
Kay Sieverseab07262012-07-16 18:35:30 -07001478 if (cont.flags & LOG_NEWLINE)
1479 text[textlen++] = '\n';
Kay Sievers084681d2012-06-28 09:38:53 +02001480 /* got everything, release buffer */
1481 cont.len = 0;
1482 }
1483 return textlen;
1484}
1485
Kay Sievers7ff95542012-05-03 02:29:13 +02001486asmlinkage int vprintk_emit(int facility, int level,
1487 const char *dict, size_t dictlen,
1488 const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
Kay Sievers7ff95542012-05-03 02:29:13 +02001490 static int recursion_bug;
Kay Sievers7ff95542012-05-03 02:29:13 +02001491 static char textbuf[LOG_LINE_MAX];
1492 char *text = textbuf;
Kay Sieversc313af12012-05-14 20:46:27 +02001493 size_t text_len;
Kay Sievers5becfb12012-07-09 12:15:42 -07001494 enum log_flags lflags = 0;
Nick Andrewac60ad72008-05-12 21:21:04 +02001495 unsigned long flags;
Ingo Molnar32a76002008-01-25 21:07:58 +01001496 int this_cpu;
Kay Sievers7ff95542012-05-03 02:29:13 +02001497 int printed_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001499 boot_delay_msec(level);
Dave Youngaf913222009-09-22 16:43:33 -07001500 printk_delay();
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 /* This stops the holder of console_sem just where we want him */
Peter Zijlstra1a9a8ae2011-06-07 11:17:30 +02001503 local_irq_save(flags);
Ingo Molnar32a76002008-01-25 21:07:58 +01001504 this_cpu = smp_processor_id();
1505
1506 /*
1507 * Ouch, printk recursed into itself!
1508 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001509 if (unlikely(logbuf_cpu == this_cpu)) {
Ingo Molnar32a76002008-01-25 21:07:58 +01001510 /*
1511 * If a crash is occurring during printk() on this CPU,
1512 * then try to get the crash message out but make sure
1513 * we can't deadlock. Otherwise just return to avoid the
1514 * recursion and return - but flag the recursion so that
1515 * it can be printed at the next appropriate moment:
1516 */
Peter Zijlstra94d24fc2011-06-07 11:17:30 +02001517 if (!oops_in_progress && !lockdep_recursing(current)) {
Tejun Heo3b8945e2008-05-12 21:21:04 +02001518 recursion_bug = 1;
Ingo Molnar32a76002008-01-25 21:07:58 +01001519 goto out_restore_irqs;
1520 }
1521 zap_locks();
1522 }
1523
Ingo Molnara0f1ccf2006-07-03 00:24:58 -07001524 lockdep_off();
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001525 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02001526 logbuf_cpu = this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Tejun Heo3b8945e2008-05-12 21:21:04 +02001528 if (recursion_bug) {
Kay Sievers7ff95542012-05-03 02:29:13 +02001529 static const char recursion_msg[] =
1530 "BUG: recent printk recursion!";
1531
Tejun Heo3b8945e2008-05-12 21:21:04 +02001532 recursion_bug = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001533 printed_len += strlen(recursion_msg);
1534 /* emit KERN_CRIT message */
Kay Sievers5becfb12012-07-09 12:15:42 -07001535 log_store(0, 2, LOG_PREFIX|LOG_NEWLINE, 0,
Kay Sievers084681d2012-06-28 09:38:53 +02001536 NULL, 0, recursion_msg, printed_len);
Linus Torvalds5fd29d62009-06-16 10:57:02 -07001537 }
1538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 /*
Kay Sievers7ff95542012-05-03 02:29:13 +02001540 * The printf needs to come first; we need the syslog
1541 * prefix which might be passed-in as a parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 */
Kay Sieversc313af12012-05-14 20:46:27 +02001543 text_len = vscnprintf(text, sizeof(textbuf), fmt, args);
Nick Andrewac60ad72008-05-12 21:21:04 +02001544
Kay Sievers7ff95542012-05-03 02:29:13 +02001545 /* mark and strip a trailing newline */
Kay Sieversc313af12012-05-14 20:46:27 +02001546 if (text_len && text[text_len-1] == '\n') {
1547 text_len--;
Kay Sievers5becfb12012-07-09 12:15:42 -07001548 lflags |= LOG_NEWLINE;
Kay Sievers7ff95542012-05-03 02:29:13 +02001549 }
Kay Sievers9d90c8d2011-03-13 03:19:51 +01001550
Joe Perches088a52a2012-07-30 14:40:19 -07001551 /* strip kernel syslog prefix and extract log level or control flags */
1552 if (facility == 0) {
1553 int kern_level = printk_get_level(text);
1554
1555 if (kern_level) {
1556 const char *end_of_header = printk_skip_level(text);
1557 switch (kern_level) {
1558 case '0' ... '7':
1559 if (level == -1)
1560 level = kern_level - '0';
1561 case 'd': /* KERN_DEFAULT */
1562 lflags |= LOG_PREFIX;
1563 case 'c': /* KERN_CONT */
1564 break;
1565 }
1566 text_len -= end_of_header - text;
1567 text = (char *)end_of_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001569 }
Nick Andrewac60ad72008-05-12 21:21:04 +02001570
Kay Sieversc313af12012-05-14 20:46:27 +02001571 if (level == -1)
1572 level = default_message_loglevel;
1573
Kay Sievers5becfb12012-07-09 12:15:42 -07001574 if (dict)
1575 lflags |= LOG_PREFIX|LOG_NEWLINE;
Kay Sievers7ff95542012-05-03 02:29:13 +02001576
Kay Sievers5becfb12012-07-09 12:15:42 -07001577 if (!(lflags & LOG_NEWLINE)) {
Kay Sievers084681d2012-06-28 09:38:53 +02001578 /*
1579 * Flush the conflicting buffer. An earlier newline was missing,
1580 * or another task also prints continuation lines.
1581 */
Kay Sievers5becfb12012-07-09 12:15:42 -07001582 if (cont.len && (lflags & LOG_PREFIX || cont.owner != current))
Kay Sieverseab07262012-07-16 18:35:30 -07001583 cont_flush(LOG_NEWLINE);
Kay Sieversc313af12012-05-14 20:46:27 +02001584
Kay Sievers084681d2012-06-28 09:38:53 +02001585 /* buffer line if possible, otherwise store it right away */
1586 if (!cont_add(facility, level, text, text_len))
Kay Sievers5becfb12012-07-09 12:15:42 -07001587 log_store(facility, level, lflags | LOG_CONT, 0,
Kay Sieversc313af12012-05-14 20:46:27 +02001588 dict, dictlen, text, text_len);
Kay Sievers084681d2012-06-28 09:38:53 +02001589 } else {
1590 bool stored = false;
1591
1592 /*
Steven Rostedtd3620822012-06-29 11:40:11 -04001593 * If an earlier newline was missing and it was the same task,
1594 * either merge it with the current buffer and flush, or if
1595 * there was a race with interrupts (prefix == true) then just
1596 * flush it out and store this line separately.
Kay Sievers084681d2012-06-28 09:38:53 +02001597 */
Kay Sievers084681d2012-06-28 09:38:53 +02001598 if (cont.len && cont.owner == current) {
Kay Sievers5becfb12012-07-09 12:15:42 -07001599 if (!(lflags & LOG_PREFIX))
Steven Rostedtd3620822012-06-29 11:40:11 -04001600 stored = cont_add(facility, level, text, text_len);
Kay Sieverseab07262012-07-16 18:35:30 -07001601 cont_flush(LOG_NEWLINE);
Kay Sieversc313af12012-05-14 20:46:27 +02001602 }
Kay Sievers084681d2012-06-28 09:38:53 +02001603
1604 if (!stored)
Kay Sievers5becfb12012-07-09 12:15:42 -07001605 log_store(facility, level, lflags, 0,
Kay Sievers084681d2012-06-28 09:38:53 +02001606 dict, dictlen, text, text_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 }
Kay Sievers084681d2012-06-28 09:38:53 +02001608 printed_len += text_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Linus Torvalds266c2e02008-03-24 19:25:08 -07001610 /*
Kay Sievers7ff95542012-05-03 02:29:13 +02001611 * Try to acquire and then immediately release the console semaphore.
1612 * The release will print out buffers and wake up /dev/kmsg and syslog()
1613 * users.
Linus Torvalds266c2e02008-03-24 19:25:08 -07001614 *
Kay Sievers7ff95542012-05-03 02:29:13 +02001615 * The console_trylock_for_printk() function will release 'logbuf_lock'
1616 * regardless of whether it actually gets the console semaphore or not.
Linus Torvalds266c2e02008-03-24 19:25:08 -07001617 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001618 if (console_trylock_for_printk(this_cpu))
1619 console_unlock();
Michael Ellerman76a8ad292006-06-25 05:47:40 -07001620
Linus Torvalds266c2e02008-03-24 19:25:08 -07001621 lockdep_on();
Ingo Molnar32a76002008-01-25 21:07:58 +01001622out_restore_irqs:
Peter Zijlstra1a9a8ae2011-06-07 11:17:30 +02001623 local_irq_restore(flags);
Michael Ellerman76a8ad292006-06-25 05:47:40 -07001624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 return printed_len;
1626}
Kay Sievers7ff95542012-05-03 02:29:13 +02001627EXPORT_SYMBOL(vprintk_emit);
1628
1629asmlinkage int vprintk(const char *fmt, va_list args)
1630{
1631 return vprintk_emit(0, -1, NULL, 0, fmt, args);
1632}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633EXPORT_SYMBOL(vprintk);
1634
Kay Sievers7ff95542012-05-03 02:29:13 +02001635asmlinkage int printk_emit(int facility, int level,
1636 const char *dict, size_t dictlen,
1637 const char *fmt, ...)
1638{
1639 va_list args;
1640 int r;
1641
1642 va_start(args, fmt);
1643 r = vprintk_emit(facility, level, dict, dictlen, fmt, args);
1644 va_end(args);
1645
1646 return r;
1647}
1648EXPORT_SYMBOL(printk_emit);
1649
1650/**
1651 * printk - print a kernel message
1652 * @fmt: format string
1653 *
1654 * This is printk(). It can be called from any context. We want it to work.
1655 *
1656 * We try to grab the console_lock. If we succeed, it's easy - we log the
1657 * output and call the console drivers. If we fail to get the semaphore, we
1658 * place the output into the log buffer and return. The current holder of
1659 * the console_sem will notice the new output in console_unlock(); and will
1660 * send it to the consoles before releasing the lock.
1661 *
1662 * One effect of this deferred printing is that code which calls printk() and
1663 * then changes console_loglevel may break. This is because console_loglevel
1664 * is inspected when the actual printing occurs.
1665 *
1666 * See also:
1667 * printf(3)
1668 *
1669 * See the vsnprintf() documentation for format string extensions over C99.
1670 */
1671asmlinkage int printk(const char *fmt, ...)
1672{
1673 va_list args;
1674 int r;
1675
1676#ifdef CONFIG_KGDB_KDB
1677 if (unlikely(kdb_trap_printk)) {
1678 va_start(args, fmt);
1679 r = vkdb_printf(fmt, args);
1680 va_end(args);
1681 return r;
1682 }
1683#endif
1684 va_start(args, fmt);
1685 r = vprintk_emit(0, -1, NULL, 0, fmt, args);
1686 va_end(args);
1687
1688 return r;
1689}
1690EXPORT_SYMBOL(printk);
Kay Sievers7f3a7812012-05-09 01:37:51 +02001691
Kay Sievers96efedf2012-07-16 18:35:29 -07001692#else /* CONFIG_PRINTK */
Matt Mackalld59745c2005-05-01 08:59:02 -07001693
Kay Sievers70498252012-07-16 18:35:29 -07001694#define LOG_LINE_MAX 0
1695#define PREFIX_MAX 0
Kay Sievers7f3a7812012-05-09 01:37:51 +02001696#define LOG_LINE_MAX 0
Kay Sievers96efedf2012-07-16 18:35:29 -07001697static u64 syslog_seq;
1698static u32 syslog_idx;
Kay Sieverseab07262012-07-16 18:35:30 -07001699static u64 console_seq;
1700static u32 console_idx;
Kay Sievers96efedf2012-07-16 18:35:29 -07001701static enum log_flags syslog_prev;
1702static u64 log_first_seq;
1703static u32 log_first_idx;
1704static u64 log_next_seq;
Kay Sieverseab07262012-07-16 18:35:30 -07001705static enum log_flags console_prev;
Kay Sievers084681d2012-06-28 09:38:53 +02001706static struct cont {
1707 size_t len;
1708 size_t cons;
1709 u8 level;
1710 bool flushed:1;
1711} cont;
Kay Sievers7f3a7812012-05-09 01:37:51 +02001712static struct log *log_from_idx(u32 idx) { return NULL; }
1713static u32 log_next(u32 idx) { return 0; }
Kay Sievers7f3a7812012-05-09 01:37:51 +02001714static void call_console_drivers(int level, const char *text, size_t len) {}
Kay Sievers5becfb12012-07-09 12:15:42 -07001715static size_t msg_print_text(const struct log *msg, enum log_flags prev,
1716 bool syslog, char *buf, size_t size) { return 0; }
Kay Sievers084681d2012-06-28 09:38:53 +02001717static size_t cont_print_text(char *text, size_t size) { return 0; }
Matt Mackalld59745c2005-05-01 08:59:02 -07001718
Kay Sievers7f3a7812012-05-09 01:37:51 +02001719#endif /* CONFIG_PRINTK */
Matt Mackalld59745c2005-05-01 08:59:02 -07001720
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07001721#ifdef CONFIG_EARLY_PRINTK
1722struct console *early_console;
1723
1724void early_vprintk(const char *fmt, va_list ap)
1725{
1726 if (early_console) {
1727 char buf[512];
1728 int n = vscnprintf(buf, sizeof(buf), fmt, ap);
1729
1730 early_console->write(early_console, buf, n);
1731 }
1732}
1733
1734asmlinkage void early_printk(const char *fmt, ...)
1735{
1736 va_list ap;
1737
1738 va_start(ap, fmt);
1739 early_vprintk(fmt, ap);
1740 va_end(ap);
1741}
1742#endif
1743
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001744static int __add_preferred_console(char *name, int idx, char *options,
1745 char *brl_options)
1746{
1747 struct console_cmdline *c;
1748 int i;
1749
1750 /*
1751 * See if this tty is not yet registered, and
1752 * if we have a slot free.
1753 */
1754 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
1755 if (strcmp(console_cmdline[i].name, name) == 0 &&
1756 console_cmdline[i].index == idx) {
1757 if (!brl_options)
1758 selected_console = i;
1759 return 0;
1760 }
1761 if (i == MAX_CMDLINECONSOLES)
1762 return -E2BIG;
1763 if (!brl_options)
1764 selected_console = i;
1765 c = &console_cmdline[i];
1766 strlcpy(c->name, name, sizeof(c->name));
1767 c->options = options;
1768#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1769 c->brl_options = brl_options;
1770#endif
1771 c->index = idx;
1772 return 0;
1773}
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001774/*
1775 * Set up a list of consoles. Called from init/main.c
1776 */
1777static int __init console_setup(char *str)
1778{
Yinghai Lueaa944a2007-07-15 23:37:27 -07001779 char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for index */
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001780 char *s, *options, *brl_options = NULL;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001781 int idx;
1782
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001783#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1784 if (!memcmp(str, "brl,", 4)) {
1785 brl_options = "";
1786 str += 4;
1787 } else if (!memcmp(str, "brl=", 4)) {
1788 brl_options = str + 4;
1789 str = strchr(brl_options, ',');
1790 if (!str) {
1791 printk(KERN_ERR "need port name after brl=\n");
1792 return 1;
1793 }
1794 *(str++) = 0;
1795 }
1796#endif
1797
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001798 /*
1799 * Decode str into name, index, options.
1800 */
1801 if (str[0] >= '0' && str[0] <= '9') {
Yinghai Lueaa944a2007-07-15 23:37:27 -07001802 strcpy(buf, "ttyS");
1803 strncpy(buf + 4, str, sizeof(buf) - 5);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001804 } else {
Yinghai Lueaa944a2007-07-15 23:37:27 -07001805 strncpy(buf, str, sizeof(buf) - 1);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001806 }
Yinghai Lueaa944a2007-07-15 23:37:27 -07001807 buf[sizeof(buf) - 1] = 0;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001808 if ((options = strchr(str, ',')) != NULL)
1809 *(options++) = 0;
1810#ifdef __sparc__
1811 if (!strcmp(str, "ttya"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07001812 strcpy(buf, "ttyS0");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001813 if (!strcmp(str, "ttyb"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07001814 strcpy(buf, "ttyS1");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001815#endif
Yinghai Lueaa944a2007-07-15 23:37:27 -07001816 for (s = buf; *s; s++)
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001817 if ((*s >= '0' && *s <= '9') || *s == ',')
1818 break;
1819 idx = simple_strtoul(s, NULL, 10);
1820 *s = 0;
1821
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001822 __add_preferred_console(buf, idx, options, brl_options);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001823 console_set_on_cmdline = 1;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001824 return 1;
1825}
1826__setup("console=", console_setup);
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828/**
Matt Mackall3c0547b2005-05-16 21:53:47 -07001829 * add_preferred_console - add a device to the list of preferred consoles.
Martin Waitzddad86c2005-11-13 16:08:14 -08001830 * @name: device name
1831 * @idx: device index
1832 * @options: options for this console
Matt Mackall3c0547b2005-05-16 21:53:47 -07001833 *
1834 * The last preferred console added will be used for kernel messages
1835 * and stdin/out/err for init. Normally this is used by console_setup
1836 * above to handle user-supplied console arguments; however it can also
1837 * be used by arch-specific code either to override the user or more
1838 * commonly to provide a default console (ie from PROM variables) when
1839 * the user has not supplied one.
1840 */
David S. Millerfb445ee2007-12-29 01:19:49 -08001841int add_preferred_console(char *name, int idx, char *options)
Matt Mackall3c0547b2005-05-16 21:53:47 -07001842{
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001843 return __add_preferred_console(name, idx, options, NULL);
Matt Mackall3c0547b2005-05-16 21:53:47 -07001844}
1845
Daniel Ritzb6b1d872007-08-03 16:07:43 +02001846int update_console_cmdline(char *name, int idx, char *name_new, int idx_new, char *options)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07001847{
1848 struct console_cmdline *c;
1849 int i;
1850
1851 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
1852 if (strcmp(console_cmdline[i].name, name) == 0 &&
1853 console_cmdline[i].index == idx) {
1854 c = &console_cmdline[i];
Markus Armbrusterf7352952008-04-30 00:54:52 -07001855 strlcpy(c->name, name_new, sizeof(c->name));
Yinghai Lu18a8bd92007-07-15 23:37:59 -07001856 c->name[sizeof(c->name) - 1] = 0;
1857 c->options = options;
1858 c->index = idx_new;
1859 return i;
1860 }
1861 /* not found */
1862 return -1;
1863}
1864
Rusty Russell2329abf2012-01-13 09:32:18 +10301865bool console_suspend_enabled = 1;
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001866EXPORT_SYMBOL(console_suspend_enabled);
1867
1868static int __init console_suspend_disable(char *str)
1869{
1870 console_suspend_enabled = 0;
1871 return 1;
1872}
1873__setup("no_console_suspend", console_suspend_disable);
Yanmin Zhang134620f2011-10-31 17:11:27 -07001874module_param_named(console_suspend, console_suspend_enabled,
1875 bool, S_IRUGO | S_IWUSR);
1876MODULE_PARM_DESC(console_suspend, "suspend console during suspend"
1877 " and hibernate operations");
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001878
Matt Mackall3c0547b2005-05-16 21:53:47 -07001879/**
Linus Torvalds557240b2006-06-19 18:16:01 -07001880 * suspend_console - suspend the console subsystem
1881 *
1882 * This disables printk() while we go into suspend states
1883 */
1884void suspend_console(void)
1885{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001886 if (!console_suspend_enabled)
1887 return;
Pavel Machek0d630812008-07-23 21:28:32 -07001888 printk("Suspending console(s) (use no_console_suspend to debug)\n");
Torben Hohnac751ef2011-01-25 15:07:35 -08001889 console_lock();
Linus Torvalds557240b2006-06-19 18:16:01 -07001890 console_suspended = 1;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001891 up(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07001892}
1893
1894void resume_console(void)
1895{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001896 if (!console_suspend_enabled)
1897 return;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001898 down(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07001899 console_suspended = 0;
Torben Hohnac751ef2011-01-25 15:07:35 -08001900 console_unlock();
Linus Torvalds557240b2006-06-19 18:16:01 -07001901}
1902
1903/**
Kevin Cernekee034260d2010-06-03 22:11:25 -07001904 * console_cpu_notify - print deferred console messages after CPU hotplug
1905 * @self: notifier struct
1906 * @action: CPU hotplug event
1907 * @hcpu: unused
1908 *
1909 * If printk() is called from a CPU that is not online yet, the messages
1910 * will be spooled but will not show up on the console. This function is
1911 * called when a new CPU comes online (or fails to come up), and ensures
1912 * that any such output gets printed.
1913 */
1914static int __cpuinit console_cpu_notify(struct notifier_block *self,
1915 unsigned long action, void *hcpu)
1916{
1917 switch (action) {
1918 case CPU_ONLINE:
1919 case CPU_DEAD:
Kevin Cernekee034260d2010-06-03 22:11:25 -07001920 case CPU_DOWN_FAILED:
1921 case CPU_UP_CANCELED:
Torben Hohnac751ef2011-01-25 15:07:35 -08001922 console_lock();
1923 console_unlock();
Kevin Cernekee034260d2010-06-03 22:11:25 -07001924 }
1925 return NOTIFY_OK;
1926}
1927
1928/**
Torben Hohnac751ef2011-01-25 15:07:35 -08001929 * console_lock - lock the console system for exclusive use.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001931 * Acquires a lock which guarantees that the caller has
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 * exclusive access to the console system and the console_drivers list.
1933 *
1934 * Can sleep, returns nothing.
1935 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001936void console_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
Daniel Vetter6b898c02012-09-17 23:03:31 +00001938 might_sleep();
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 down(&console_sem);
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001941 if (console_suspended)
1942 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 console_locked = 1;
1944 console_may_schedule = 1;
Daniel Vetterdaee7792012-09-22 19:52:11 +02001945 mutex_acquire(&console_lock_dep_map, 0, 0, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946}
Torben Hohnac751ef2011-01-25 15:07:35 -08001947EXPORT_SYMBOL(console_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Torben Hohnac751ef2011-01-25 15:07:35 -08001949/**
1950 * console_trylock - try to lock the console system for exclusive use.
1951 *
1952 * Tried to acquire a lock which guarantees that the caller has
1953 * exclusive access to the console system and the console_drivers list.
1954 *
1955 * returns 1 on success, and 0 on failure to acquire the lock.
1956 */
1957int console_trylock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958{
1959 if (down_trylock(&console_sem))
Torben Hohnac751ef2011-01-25 15:07:35 -08001960 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001961 if (console_suspended) {
1962 up(&console_sem);
Torben Hohnac751ef2011-01-25 15:07:35 -08001963 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 console_locked = 1;
1966 console_may_schedule = 0;
Daniel Vetterdaee7792012-09-22 19:52:11 +02001967 mutex_acquire(&console_lock_dep_map, 0, 1, _RET_IP_);
Torben Hohnac751ef2011-01-25 15:07:35 -08001968 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969}
Torben Hohnac751ef2011-01-25 15:07:35 -08001970EXPORT_SYMBOL(console_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972int is_console_locked(void)
1973{
1974 return console_locked;
1975}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Kay Sieverseab07262012-07-16 18:35:30 -07001977static void console_cont_flush(char *text, size_t size)
1978{
1979 unsigned long flags;
1980 size_t len;
1981
1982 raw_spin_lock_irqsave(&logbuf_lock, flags);
1983
1984 if (!cont.len)
1985 goto out;
1986
1987 /*
1988 * We still queue earlier records, likely because the console was
1989 * busy. The earlier ones need to be printed before this one, we
1990 * did not flush any fragment so far, so just let it queue up.
1991 */
1992 if (console_seq < log_next_seq && !cont.cons)
1993 goto out;
1994
1995 len = cont_print_text(text, size);
1996 raw_spin_unlock(&logbuf_lock);
1997 stop_critical_timings();
1998 call_console_drivers(cont.level, text, len);
1999 start_critical_timings();
2000 local_irq_restore(flags);
2001 return;
2002out:
2003 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2004}
Kay Sievers7ff95542012-05-03 02:29:13 +02002005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006/**
Torben Hohnac751ef2011-01-25 15:07:35 -08002007 * console_unlock - unlock the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002009 * Releases the console_lock which the caller holds on the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 * and the console driver list.
2011 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002012 * While the console_lock was held, console output may have been buffered
2013 * by printk(). If this is the case, console_unlock(); emits
2014 * the output prior to releasing the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 *
Kay Sievers7f3a7812012-05-09 01:37:51 +02002016 * If there is output waiting, we wake /dev/kmsg and syslog() users.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002018 * console_unlock(); may be called from any context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002020void console_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021{
Kay Sievers70498252012-07-16 18:35:29 -07002022 static char text[LOG_LINE_MAX + PREFIX_MAX];
Kay Sievers7ff95542012-05-03 02:29:13 +02002023 static u64 seen_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 unsigned long flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02002025 bool wake_klogd = false;
2026 bool retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Linus Torvalds557240b2006-06-19 18:16:01 -07002028 if (console_suspended) {
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01002029 up(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07002030 return;
2031 }
Antonino A. Daplas78944e542006-08-05 12:14:16 -07002032
2033 console_may_schedule = 0;
2034
Kay Sievers084681d2012-06-28 09:38:53 +02002035 /* flush buffered message fragment immediately to console */
Kay Sieverseab07262012-07-16 18:35:30 -07002036 console_cont_flush(text, sizeof(text));
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002037again:
Kay Sievers7ff95542012-05-03 02:29:13 +02002038 for (;;) {
2039 struct log *msg;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02002040 size_t len;
Kay Sievers7ff95542012-05-03 02:29:13 +02002041 int level;
2042
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002043 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02002044 if (seen_seq != log_next_seq) {
2045 wake_klogd = true;
2046 seen_seq = log_next_seq;
2047 }
2048
2049 if (console_seq < log_first_seq) {
2050 /* messages are gone, move to first one */
2051 console_seq = log_first_seq;
2052 console_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002053 console_prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02002054 }
Kay Sievers084681d2012-06-28 09:38:53 +02002055skip:
Kay Sievers7ff95542012-05-03 02:29:13 +02002056 if (console_seq == log_next_seq)
2057 break;
2058
2059 msg = log_from_idx(console_idx);
Kay Sievers084681d2012-06-28 09:38:53 +02002060 if (msg->flags & LOG_NOCONS) {
2061 /*
2062 * Skip record we have buffered and already printed
2063 * directly to the console when we received it.
2064 */
2065 console_idx = log_next(console_idx);
2066 console_seq++;
Kay Sievers68b65072012-07-06 09:50:09 -07002067 /*
2068 * We will get here again when we register a new
2069 * CON_PRINTBUFFER console. Clear the flag so we
2070 * will properly dump everything later.
2071 */
2072 msg->flags &= ~LOG_NOCONS;
Kay Sieverseab07262012-07-16 18:35:30 -07002073 console_prev = msg->flags;
Kay Sievers084681d2012-06-28 09:38:53 +02002074 goto skip;
2075 }
Kay Sievers649e6ee2012-05-10 04:30:45 +02002076
Kay Sievers084681d2012-06-28 09:38:53 +02002077 level = msg->level;
Kay Sievers5becfb12012-07-09 12:15:42 -07002078 len = msg_print_text(msg, console_prev, false,
2079 text, sizeof(text));
Kay Sievers7ff95542012-05-03 02:29:13 +02002080 console_idx = log_next(console_idx);
2081 console_seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07002082 console_prev = msg->flags;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002083 raw_spin_unlock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02002084
Steven Rostedt81d68a92008-05-12 21:20:42 +02002085 stop_critical_timings(); /* don't trace print latency */
Kay Sievers7ff95542012-05-03 02:29:13 +02002086 call_console_drivers(level, text, len);
Steven Rostedt81d68a92008-05-12 21:20:42 +02002087 start_critical_timings();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 local_irq_restore(flags);
2089 }
2090 console_locked = 0;
Daniel Vetterdaee7792012-09-22 19:52:11 +02002091 mutex_release(&console_lock_dep_map, 1, _RET_IP_);
Feng Tangfe3d8ad2011-03-22 16:34:21 -07002092
2093 /* Release the exclusive_console once it is used */
2094 if (unlikely(exclusive_console))
2095 exclusive_console = NULL;
2096
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002097 raw_spin_unlock(&logbuf_lock);
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002098
Peter Zijlstra0b5e1c52011-06-07 11:15:33 +02002099 up(&console_sem);
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002100
2101 /*
2102 * Someone could have filled up the buffer again, so re-check if there's
2103 * something to flush. In case we cannot trylock the console_sem again,
2104 * there's a new owner and the console_unlock() from them will do the
2105 * flush, no worries.
2106 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002107 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02002108 retry = console_seq != log_next_seq;
Peter Zijlstra09dc3cf2011-12-08 14:34:13 -08002109 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2110
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002111 if (retry && console_trylock())
2112 goto again;
2113
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08002114 if (wake_klogd)
2115 wake_up_klogd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116}
Torben Hohnac751ef2011-01-25 15:07:35 -08002117EXPORT_SYMBOL(console_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Martin Waitzddad86c2005-11-13 16:08:14 -08002119/**
2120 * console_conditional_schedule - yield the CPU if required
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 *
2122 * If the console code is currently allowed to sleep, and
2123 * if this CPU should yield the CPU to another task, do
2124 * so here.
2125 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002126 * Must be called within console_lock();.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 */
2128void __sched console_conditional_schedule(void)
2129{
2130 if (console_may_schedule)
2131 cond_resched();
2132}
2133EXPORT_SYMBOL(console_conditional_schedule);
2134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135void console_unblank(void)
2136{
2137 struct console *c;
2138
2139 /*
2140 * console_unblank can no longer be called in interrupt context unless
2141 * oops_in_progress is set to 1..
2142 */
2143 if (oops_in_progress) {
2144 if (down_trylock(&console_sem) != 0)
2145 return;
2146 } else
Torben Hohnac751ef2011-01-25 15:07:35 -08002147 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 console_locked = 1;
2150 console_may_schedule = 0;
Robin Getz4d091612009-07-01 21:08:37 -04002151 for_each_console(c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 if ((c->flags & CON_ENABLED) && c->unblank)
2153 c->unblank();
Torben Hohnac751ef2011-01-25 15:07:35 -08002154 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
2157/*
2158 * Return the console tty driver structure and its associated index
2159 */
2160struct tty_driver *console_device(int *index)
2161{
2162 struct console *c;
2163 struct tty_driver *driver = NULL;
2164
Torben Hohnac751ef2011-01-25 15:07:35 -08002165 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04002166 for_each_console(c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 if (!c->device)
2168 continue;
2169 driver = c->device(c, index);
2170 if (driver)
2171 break;
2172 }
Torben Hohnac751ef2011-01-25 15:07:35 -08002173 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 return driver;
2175}
2176
2177/*
2178 * Prevent further output on the passed console device so that (for example)
2179 * serial drivers can disable console output before suspending a port, and can
2180 * re-enable output afterwards.
2181 */
2182void console_stop(struct console *console)
2183{
Torben Hohnac751ef2011-01-25 15:07:35 -08002184 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 console->flags &= ~CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002186 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187}
2188EXPORT_SYMBOL(console_stop);
2189
2190void console_start(struct console *console)
2191{
Torben Hohnac751ef2011-01-25 15:07:35 -08002192 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 console->flags |= CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002194 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195}
2196EXPORT_SYMBOL(console_start);
2197
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002198static int __read_mostly keep_bootcon;
2199
2200static int __init keep_bootcon_setup(char *str)
2201{
2202 keep_bootcon = 1;
2203 printk(KERN_INFO "debug: skip boot console de-registration.\n");
2204
2205 return 0;
2206}
2207
2208early_param("keep_bootcon", keep_bootcon_setup);
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210/*
2211 * The console driver calls this routine during kernel initialization
2212 * to register the console printing procedure with printk() and to
2213 * print any messages that were printed by the kernel before the
2214 * console driver was initialized.
Robin Getz4d091612009-07-01 21:08:37 -04002215 *
2216 * This can happen pretty early during the boot process (because of
2217 * early_printk) - sometimes before setup_arch() completes - be careful
2218 * of what kernel features are used - they may not be initialised yet.
2219 *
2220 * There are two types of consoles - bootconsoles (early_printk) and
2221 * "real" consoles (everything which is not a bootconsole) which are
2222 * handled differently.
2223 * - Any number of bootconsoles can be registered at any time.
2224 * - As soon as a "real" console is registered, all bootconsoles
2225 * will be unregistered automatically.
2226 * - Once a "real" console is registered, any attempt to register a
2227 * bootconsoles will be rejected
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 */
Robin Getz4d091612009-07-01 21:08:37 -04002229void register_console(struct console *newcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230{
Jesper Juhl40dc5652005-10-30 15:02:46 -08002231 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 unsigned long flags;
Robin Getz4d091612009-07-01 21:08:37 -04002233 struct console *bcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Robin Getz4d091612009-07-01 21:08:37 -04002235 /*
2236 * before we register a new CON_BOOT console, make sure we don't
2237 * already have a valid console
2238 */
2239 if (console_drivers && newcon->flags & CON_BOOT) {
2240 /* find the last or real console */
2241 for_each_console(bcon) {
2242 if (!(bcon->flags & CON_BOOT)) {
2243 printk(KERN_INFO "Too late to register bootconsole %s%d\n",
2244 newcon->name, newcon->index);
2245 return;
2246 }
2247 }
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002248 }
2249
Robin Getz4d091612009-07-01 21:08:37 -04002250 if (console_drivers && console_drivers->flags & CON_BOOT)
2251 bcon = console_drivers;
2252
2253 if (preferred_console < 0 || bcon || !console_drivers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 preferred_console = selected_console;
2255
Robin Getz4d091612009-07-01 21:08:37 -04002256 if (newcon->early_setup)
2257 newcon->early_setup();
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 /*
2260 * See if we want to use this console driver. If we
2261 * didn't select a console we take the first one
2262 * that registers here.
2263 */
2264 if (preferred_console < 0) {
Robin Getz4d091612009-07-01 21:08:37 -04002265 if (newcon->index < 0)
2266 newcon->index = 0;
2267 if (newcon->setup == NULL ||
2268 newcon->setup(newcon, NULL) == 0) {
2269 newcon->flags |= CON_ENABLED;
2270 if (newcon->device) {
2271 newcon->flags |= CON_CONSDEV;
Jan Kiszkacd3a1b82008-05-12 21:21:04 +02002272 preferred_console = 0;
2273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 }
2275 }
2276
2277 /*
2278 * See if this console matches one we selected on
2279 * the command line.
2280 */
Jesper Juhl40dc5652005-10-30 15:02:46 -08002281 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0];
2282 i++) {
Robin Getz4d091612009-07-01 21:08:37 -04002283 if (strcmp(console_cmdline[i].name, newcon->name) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 continue;
Robin Getz4d091612009-07-01 21:08:37 -04002285 if (newcon->index >= 0 &&
2286 newcon->index != console_cmdline[i].index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 continue;
Robin Getz4d091612009-07-01 21:08:37 -04002288 if (newcon->index < 0)
2289 newcon->index = console_cmdline[i].index;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002290#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
2291 if (console_cmdline[i].brl_options) {
Robin Getz4d091612009-07-01 21:08:37 -04002292 newcon->flags |= CON_BRL;
2293 braille_register_console(newcon,
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002294 console_cmdline[i].index,
2295 console_cmdline[i].options,
2296 console_cmdline[i].brl_options);
2297 return;
2298 }
2299#endif
Robin Getz4d091612009-07-01 21:08:37 -04002300 if (newcon->setup &&
2301 newcon->setup(newcon, console_cmdline[i].options) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 break;
Robin Getz4d091612009-07-01 21:08:37 -04002303 newcon->flags |= CON_ENABLED;
2304 newcon->index = console_cmdline[i].index;
Greg Edwardsab4af032005-06-23 00:09:05 -07002305 if (i == selected_console) {
Robin Getz4d091612009-07-01 21:08:37 -04002306 newcon->flags |= CON_CONSDEV;
Greg Edwardsab4af032005-06-23 00:09:05 -07002307 preferred_console = selected_console;
2308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 break;
2310 }
2311
Robin Getz4d091612009-07-01 21:08:37 -04002312 if (!(newcon->flags & CON_ENABLED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 return;
2314
Robin Getz8259cf42009-07-09 13:08:37 -04002315 /*
2316 * If we have a bootconsole, and are switching to a real console,
2317 * don't print everything out again, since when the boot console, and
2318 * the real console are the same physical device, it's annoying to
2319 * see the beginning boot messages twice
2320 */
2321 if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
Robin Getz4d091612009-07-01 21:08:37 -04002322 newcon->flags &= ~CON_PRINTBUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
2324 /*
2325 * Put this console in the list - keep the
2326 * preferred driver at the head of the list.
2327 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002328 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04002329 if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) {
2330 newcon->next = console_drivers;
2331 console_drivers = newcon;
2332 if (newcon->next)
2333 newcon->next->flags &= ~CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 } else {
Robin Getz4d091612009-07-01 21:08:37 -04002335 newcon->next = console_drivers->next;
2336 console_drivers->next = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 }
Robin Getz4d091612009-07-01 21:08:37 -04002338 if (newcon->flags & CON_PRINTBUFFER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 /*
Torben Hohnac751ef2011-01-25 15:07:35 -08002340 * console_unlock(); will print out the buffered messages
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 * for us.
2342 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002343 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02002344 console_seq = syslog_seq;
2345 console_idx = syslog_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002346 console_prev = syslog_prev;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002347 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Feng Tangfe3d8ad2011-03-22 16:34:21 -07002348 /*
2349 * We're about to replay the log buffer. Only do this to the
2350 * just-registered console to avoid excessive message spam to
2351 * the already-registered consoles.
2352 */
2353 exclusive_console = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 }
Torben Hohnac751ef2011-01-25 15:07:35 -08002355 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002356 console_sysfs_notify();
Robin Getz8259cf42009-07-09 13:08:37 -04002357
2358 /*
2359 * By unregistering the bootconsoles after we enable the real console
2360 * we get the "console xxx enabled" message on all the consoles -
2361 * boot consoles, real consoles, etc - this is to ensure that end
2362 * users know there might be something in the kernel's log buffer that
2363 * went to the bootconsole (that they do not see on the real console)
2364 */
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002365 if (bcon &&
2366 ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) &&
2367 !keep_bootcon) {
Robin Getz8259cf42009-07-09 13:08:37 -04002368 /* we need to iterate through twice, to make sure we print
2369 * everything out, before we unregister the console(s)
2370 */
2371 printk(KERN_INFO "console [%s%d] enabled, bootconsole disabled\n",
2372 newcon->name, newcon->index);
2373 for_each_console(bcon)
2374 if (bcon->flags & CON_BOOT)
2375 unregister_console(bcon);
2376 } else {
2377 printk(KERN_INFO "%sconsole [%s%d] enabled\n",
2378 (newcon->flags & CON_BOOT) ? "boot" : "" ,
2379 newcon->name, newcon->index);
2380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381}
2382EXPORT_SYMBOL(register_console);
2383
Jesper Juhl40dc5652005-10-30 15:02:46 -08002384int unregister_console(struct console *console)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385{
Jesper Juhl40dc5652005-10-30 15:02:46 -08002386 struct console *a, *b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 int res = 1;
2388
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002389#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
2390 if (console->flags & CON_BRL)
2391 return braille_unregister_console(console);
2392#endif
2393
Torben Hohnac751ef2011-01-25 15:07:35 -08002394 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 if (console_drivers == console) {
2396 console_drivers=console->next;
2397 res = 0;
Benjamin Herrenschmidte9b15b52005-11-23 13:37:44 -08002398 } else if (console_drivers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 for (a=console_drivers->next, b=console_drivers ;
2400 a; b=a, a=b->next) {
2401 if (a == console) {
2402 b->next = a->next;
2403 res = 0;
2404 break;
Jesper Juhl40dc5652005-10-30 15:02:46 -08002405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 }
2407 }
Jesper Juhl40dc5652005-10-30 15:02:46 -08002408
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002409 /*
Greg Edwardsab4af032005-06-23 00:09:05 -07002410 * If this isn't the last console and it has CON_CONSDEV set, we
2411 * need to set it on the next preferred console.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 */
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002413 if (console_drivers != NULL && console->flags & CON_CONSDEV)
Greg Edwardsab4af032005-06-23 00:09:05 -07002414 console_drivers->flags |= CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
Torben Hohnac751ef2011-01-25 15:07:35 -08002416 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002417 console_sysfs_notify();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 return res;
2419}
2420EXPORT_SYMBOL(unregister_console);
Matt Mackalld59745c2005-05-01 08:59:02 -07002421
Kevin Cernekee034260d2010-06-03 22:11:25 -07002422static int __init printk_late_init(void)
Robin Getz0c5564b2007-08-20 15:22:47 -04002423{
Robin Getz4d091612009-07-01 21:08:37 -04002424 struct console *con;
2425
2426 for_each_console(con) {
Nishanth Aravamudan4c30c6f2011-08-25 15:59:11 -07002427 if (!keep_bootcon && con->flags & CON_BOOT) {
Robin Getzcb00e992007-08-21 23:14:58 -04002428 printk(KERN_INFO "turn off boot console %s%d\n",
Robin Getz4d091612009-07-01 21:08:37 -04002429 con->name, con->index);
Sonic Zhang42c2c8c2009-08-06 15:58:11 -07002430 unregister_console(con);
Robin Getzcb00e992007-08-21 23:14:58 -04002431 }
Robin Getz0c5564b2007-08-20 15:22:47 -04002432 }
Kevin Cernekee034260d2010-06-03 22:11:25 -07002433 hotcpu_notifier(console_cpu_notify, 0);
Robin Getz0c5564b2007-08-20 15:22:47 -04002434 return 0;
2435}
Kevin Cernekee034260d2010-06-03 22:11:25 -07002436late_initcall(printk_late_init);
Robin Getz0c5564b2007-08-20 15:22:47 -04002437
Joe Perches7ef3d2f2008-02-08 04:21:25 -08002438#if defined CONFIG_PRINTK
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002439/*
2440 * Delayed printk version, for scheduler-internal messages:
2441 */
2442#define PRINTK_BUF_SIZE 512
2443
2444#define PRINTK_PENDING_WAKEUP 0x01
2445#define PRINTK_PENDING_SCHED 0x02
2446
2447static DEFINE_PER_CPU(int, printk_pending);
2448static DEFINE_PER_CPU(char [PRINTK_BUF_SIZE], printk_sched_buf);
2449
2450static void wake_up_klogd_work_func(struct irq_work *irq_work)
2451{
2452 int pending = __this_cpu_xchg(printk_pending, 0);
2453
2454 if (pending & PRINTK_PENDING_SCHED) {
2455 char *buf = __get_cpu_var(printk_sched_buf);
2456 printk(KERN_WARNING "[sched_delayed] %s", buf);
2457 }
2458
2459 if (pending & PRINTK_PENDING_WAKEUP)
2460 wake_up_interruptible(&log_wait);
2461}
2462
2463static DEFINE_PER_CPU(struct irq_work, wake_up_klogd_work) = {
2464 .func = wake_up_klogd_work_func,
2465 .flags = IRQ_WORK_LAZY,
2466};
2467
2468void wake_up_klogd(void)
2469{
2470 preempt_disable();
2471 if (waitqueue_active(&log_wait)) {
2472 this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP);
2473 irq_work_queue(&__get_cpu_var(wake_up_klogd_work));
2474 }
2475 preempt_enable();
2476}
Dave Young717115e2008-07-25 01:45:58 -07002477
Peter Zijlstra600e1452012-03-15 12:35:37 +01002478int printk_sched(const char *fmt, ...)
2479{
2480 unsigned long flags;
2481 va_list args;
2482 char *buf;
2483 int r;
2484
2485 local_irq_save(flags);
2486 buf = __get_cpu_var(printk_sched_buf);
2487
2488 va_start(args, fmt);
2489 r = vsnprintf(buf, PRINTK_BUF_SIZE, fmt, args);
2490 va_end(args);
2491
2492 __this_cpu_or(printk_pending, PRINTK_PENDING_SCHED);
Frederic Weisbecker74876a92012-10-12 18:00:23 +02002493 irq_work_queue(&__get_cpu_var(wake_up_klogd_work));
Peter Zijlstra600e1452012-03-15 12:35:37 +01002494 local_irq_restore(flags);
2495
2496 return r;
2497}
2498
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499/*
2500 * printk rate limiting, lifted from the networking subsystem.
2501 *
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002502 * This enforces a rate limit: not more than 10 kernel messages
2503 * every 5s to make a denial-of-service attack impossible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 */
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002505DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10);
2506
Christian Borntraeger5c828712009-10-23 14:58:11 +02002507int __printk_ratelimit(const char *func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508{
Christian Borntraeger5c828712009-10-23 14:58:11 +02002509 return ___ratelimit(&printk_ratelimit_state, func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510}
Christian Borntraeger5c828712009-10-23 14:58:11 +02002511EXPORT_SYMBOL(__printk_ratelimit);
Andrew Mortonf46c4832006-11-02 22:07:16 -08002512
2513/**
2514 * printk_timed_ratelimit - caller-controlled printk ratelimiting
2515 * @caller_jiffies: pointer to caller's state
2516 * @interval_msecs: minimum interval between prints
2517 *
2518 * printk_timed_ratelimit() returns true if more than @interval_msecs
2519 * milliseconds have elapsed since the last time printk_timed_ratelimit()
2520 * returned true.
2521 */
2522bool printk_timed_ratelimit(unsigned long *caller_jiffies,
2523 unsigned int interval_msecs)
2524{
Guillaume Knispelf2d28a22009-03-17 16:18:42 +01002525 if (*caller_jiffies == 0
2526 || !time_in_range(jiffies, *caller_jiffies,
2527 *caller_jiffies
2528 + msecs_to_jiffies(interval_msecs))) {
2529 *caller_jiffies = jiffies;
Andrew Mortonf46c4832006-11-02 22:07:16 -08002530 return true;
2531 }
2532 return false;
2533}
2534EXPORT_SYMBOL(printk_timed_ratelimit);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002535
2536static DEFINE_SPINLOCK(dump_list_lock);
2537static LIST_HEAD(dump_list);
2538
2539/**
2540 * kmsg_dump_register - register a kernel log dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002541 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002542 *
2543 * Adds a kernel log dumper to the system. The dump callback in the
2544 * structure will be called when the kernel oopses or panics and must be
2545 * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise.
2546 */
2547int kmsg_dump_register(struct kmsg_dumper *dumper)
2548{
2549 unsigned long flags;
2550 int err = -EBUSY;
2551
2552 /* The dump callback needs to be set */
2553 if (!dumper->dump)
2554 return -EINVAL;
2555
2556 spin_lock_irqsave(&dump_list_lock, flags);
2557 /* Don't allow registering multiple times */
2558 if (!dumper->registered) {
2559 dumper->registered = 1;
Huang Yingfb842b002011-01-12 16:59:43 -08002560 list_add_tail_rcu(&dumper->list, &dump_list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002561 err = 0;
2562 }
2563 spin_unlock_irqrestore(&dump_list_lock, flags);
2564
2565 return err;
2566}
2567EXPORT_SYMBOL_GPL(kmsg_dump_register);
2568
2569/**
2570 * kmsg_dump_unregister - unregister a kmsg dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002571 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002572 *
2573 * Removes a dump device from the system. Returns zero on success and
2574 * %-EINVAL otherwise.
2575 */
2576int kmsg_dump_unregister(struct kmsg_dumper *dumper)
2577{
2578 unsigned long flags;
2579 int err = -EINVAL;
2580
2581 spin_lock_irqsave(&dump_list_lock, flags);
2582 if (dumper->registered) {
2583 dumper->registered = 0;
Huang Yingfb842b002011-01-12 16:59:43 -08002584 list_del_rcu(&dumper->list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002585 err = 0;
2586 }
2587 spin_unlock_irqrestore(&dump_list_lock, flags);
Huang Yingfb842b002011-01-12 16:59:43 -08002588 synchronize_rcu();
Simon Kagstrom456b5652009-10-16 14:09:18 +02002589
2590 return err;
2591}
2592EXPORT_SYMBOL_GPL(kmsg_dump_unregister);
2593
Kay Sievers7ff95542012-05-03 02:29:13 +02002594static bool always_kmsg_dump;
2595module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR);
2596
Simon Kagstrom456b5652009-10-16 14:09:18 +02002597/**
2598 * kmsg_dump - dump kernel log to kernel message dumpers.
2599 * @reason: the reason (oops, panic etc) for dumping
2600 *
Kay Sieverse2ae7152012-06-15 14:07:51 +02002601 * Call each of the registered dumper's dump() callback, which can
2602 * retrieve the kmsg records with kmsg_dump_get_line() or
2603 * kmsg_dump_get_buffer().
Simon Kagstrom456b5652009-10-16 14:09:18 +02002604 */
2605void kmsg_dump(enum kmsg_dump_reason reason)
2606{
Simon Kagstrom456b5652009-10-16 14:09:18 +02002607 struct kmsg_dumper *dumper;
Simon Kagstrom456b5652009-10-16 14:09:18 +02002608 unsigned long flags;
2609
Matthew Garrettc22ab3322012-03-05 14:59:10 -08002610 if ((reason > KMSG_DUMP_OOPS) && !always_kmsg_dump)
2611 return;
2612
Huang Yingfb842b002011-01-12 16:59:43 -08002613 rcu_read_lock();
Kay Sieverse2ae7152012-06-15 14:07:51 +02002614 list_for_each_entry_rcu(dumper, &dump_list, list) {
2615 if (dumper->max_reason && reason > dumper->max_reason)
2616 continue;
2617
2618 /* initialize iterator with data about the stored records */
2619 dumper->active = true;
2620
2621 raw_spin_lock_irqsave(&logbuf_lock, flags);
2622 dumper->cur_seq = clear_seq;
2623 dumper->cur_idx = clear_idx;
2624 dumper->next_seq = log_next_seq;
2625 dumper->next_idx = log_next_idx;
2626 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2627
2628 /* invoke dumper which will iterate over records */
2629 dumper->dump(dumper, reason);
2630
2631 /* reset iterator */
2632 dumper->active = false;
2633 }
Huang Yingfb842b002011-01-12 16:59:43 -08002634 rcu_read_unlock();
Simon Kagstrom456b5652009-10-16 14:09:18 +02002635}
Kay Sieverse2ae7152012-06-15 14:07:51 +02002636
2637/**
Anton Vorontsov533827c2012-07-20 17:28:07 -07002638 * kmsg_dump_get_line_nolock - retrieve one kmsg log line (unlocked version)
2639 * @dumper: registered kmsg dumper
2640 * @syslog: include the "<4>" prefixes
2641 * @line: buffer to copy the line to
2642 * @size: maximum size of the buffer
2643 * @len: length of line placed into buffer
2644 *
2645 * Start at the beginning of the kmsg buffer, with the oldest kmsg
2646 * record, and copy one record into the provided buffer.
2647 *
2648 * Consecutive calls will return the next available record moving
2649 * towards the end of the buffer with the youngest messages.
2650 *
2651 * A return value of FALSE indicates that there are no more records to
2652 * read.
2653 *
2654 * The function is similar to kmsg_dump_get_line(), but grabs no locks.
2655 */
2656bool kmsg_dump_get_line_nolock(struct kmsg_dumper *dumper, bool syslog,
2657 char *line, size_t size, size_t *len)
2658{
2659 struct log *msg;
2660 size_t l = 0;
2661 bool ret = false;
2662
2663 if (!dumper->active)
2664 goto out;
2665
2666 if (dumper->cur_seq < log_first_seq) {
2667 /* messages are gone, move to first available one */
2668 dumper->cur_seq = log_first_seq;
2669 dumper->cur_idx = log_first_idx;
2670 }
2671
2672 /* last entry */
2673 if (dumper->cur_seq >= log_next_seq)
2674 goto out;
2675
2676 msg = log_from_idx(dumper->cur_idx);
2677 l = msg_print_text(msg, 0, syslog, line, size);
2678
2679 dumper->cur_idx = log_next(dumper->cur_idx);
2680 dumper->cur_seq++;
2681 ret = true;
2682out:
2683 if (len)
2684 *len = l;
2685 return ret;
2686}
2687
2688/**
Kay Sieverse2ae7152012-06-15 14:07:51 +02002689 * kmsg_dump_get_line - retrieve one kmsg log line
2690 * @dumper: registered kmsg dumper
2691 * @syslog: include the "<4>" prefixes
2692 * @line: buffer to copy the line to
2693 * @size: maximum size of the buffer
2694 * @len: length of line placed into buffer
2695 *
2696 * Start at the beginning of the kmsg buffer, with the oldest kmsg
2697 * record, and copy one record into the provided buffer.
2698 *
2699 * Consecutive calls will return the next available record moving
2700 * towards the end of the buffer with the youngest messages.
2701 *
2702 * A return value of FALSE indicates that there are no more records to
2703 * read.
2704 */
2705bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog,
2706 char *line, size_t size, size_t *len)
2707{
2708 unsigned long flags;
Anton Vorontsov533827c2012-07-20 17:28:07 -07002709 bool ret;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002710
2711 raw_spin_lock_irqsave(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07002712 ret = kmsg_dump_get_line_nolock(dumper, syslog, line, size, len);
Kay Sieverse2ae7152012-06-15 14:07:51 +02002713 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07002714
Kay Sieverse2ae7152012-06-15 14:07:51 +02002715 return ret;
2716}
2717EXPORT_SYMBOL_GPL(kmsg_dump_get_line);
2718
2719/**
2720 * kmsg_dump_get_buffer - copy kmsg log lines
2721 * @dumper: registered kmsg dumper
2722 * @syslog: include the "<4>" prefixes
Randy Dunlap4f0f4af2012-06-30 15:37:24 -07002723 * @buf: buffer to copy the line to
Kay Sieverse2ae7152012-06-15 14:07:51 +02002724 * @size: maximum size of the buffer
2725 * @len: length of line placed into buffer
2726 *
2727 * Start at the end of the kmsg buffer and fill the provided buffer
2728 * with as many of the the *youngest* kmsg records that fit into it.
2729 * If the buffer is large enough, all available kmsg records will be
2730 * copied with a single call.
2731 *
2732 * Consecutive calls will fill the buffer with the next block of
2733 * available older records, not including the earlier retrieved ones.
2734 *
2735 * A return value of FALSE indicates that there are no more records to
2736 * read.
2737 */
2738bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog,
2739 char *buf, size_t size, size_t *len)
2740{
2741 unsigned long flags;
2742 u64 seq;
2743 u32 idx;
2744 u64 next_seq;
2745 u32 next_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002746 enum log_flags prev;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002747 size_t l = 0;
2748 bool ret = false;
2749
2750 if (!dumper->active)
2751 goto out;
2752
2753 raw_spin_lock_irqsave(&logbuf_lock, flags);
2754 if (dumper->cur_seq < log_first_seq) {
2755 /* messages are gone, move to first available one */
2756 dumper->cur_seq = log_first_seq;
2757 dumper->cur_idx = log_first_idx;
2758 }
2759
2760 /* last entry */
2761 if (dumper->cur_seq >= dumper->next_seq) {
2762 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2763 goto out;
2764 }
2765
2766 /* calculate length of entire buffer */
2767 seq = dumper->cur_seq;
2768 idx = dumper->cur_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002769 prev = 0;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002770 while (seq < dumper->next_seq) {
2771 struct log *msg = log_from_idx(idx);
2772
Kay Sievers5becfb12012-07-09 12:15:42 -07002773 l += msg_print_text(msg, prev, true, NULL, 0);
Kay Sieverse2ae7152012-06-15 14:07:51 +02002774 idx = log_next(idx);
2775 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07002776 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002777 }
2778
2779 /* move first record forward until length fits into the buffer */
2780 seq = dumper->cur_seq;
2781 idx = dumper->cur_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002782 prev = 0;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002783 while (l > size && seq < dumper->next_seq) {
2784 struct log *msg = log_from_idx(idx);
2785
Kay Sievers5becfb12012-07-09 12:15:42 -07002786 l -= msg_print_text(msg, prev, true, NULL, 0);
Kay Sieverse2ae7152012-06-15 14:07:51 +02002787 idx = log_next(idx);
2788 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07002789 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002790 }
2791
2792 /* last message in next interation */
2793 next_seq = seq;
2794 next_idx = idx;
2795
2796 l = 0;
Kay Sievers5becfb12012-07-09 12:15:42 -07002797 prev = 0;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002798 while (seq < dumper->next_seq) {
2799 struct log *msg = log_from_idx(idx);
2800
Kay Sievers5becfb12012-07-09 12:15:42 -07002801 l += msg_print_text(msg, prev, syslog, buf + l, size - l);
Kay Sieverse2ae7152012-06-15 14:07:51 +02002802 idx = log_next(idx);
2803 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07002804 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002805 }
2806
2807 dumper->next_seq = next_seq;
2808 dumper->next_idx = next_idx;
2809 ret = true;
2810 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2811out:
2812 if (len)
2813 *len = l;
2814 return ret;
2815}
2816EXPORT_SYMBOL_GPL(kmsg_dump_get_buffer);
2817
2818/**
Anton Vorontsov533827c2012-07-20 17:28:07 -07002819 * kmsg_dump_rewind_nolock - reset the interator (unlocked version)
2820 * @dumper: registered kmsg dumper
2821 *
2822 * Reset the dumper's iterator so that kmsg_dump_get_line() and
2823 * kmsg_dump_get_buffer() can be called again and used multiple
2824 * times within the same dumper.dump() callback.
2825 *
2826 * The function is similar to kmsg_dump_rewind(), but grabs no locks.
2827 */
2828void kmsg_dump_rewind_nolock(struct kmsg_dumper *dumper)
2829{
2830 dumper->cur_seq = clear_seq;
2831 dumper->cur_idx = clear_idx;
2832 dumper->next_seq = log_next_seq;
2833 dumper->next_idx = log_next_idx;
2834}
2835
2836/**
Kay Sieverse2ae7152012-06-15 14:07:51 +02002837 * kmsg_dump_rewind - reset the interator
2838 * @dumper: registered kmsg dumper
2839 *
2840 * Reset the dumper's iterator so that kmsg_dump_get_line() and
2841 * kmsg_dump_get_buffer() can be called again and used multiple
2842 * times within the same dumper.dump() callback.
2843 */
2844void kmsg_dump_rewind(struct kmsg_dumper *dumper)
2845{
2846 unsigned long flags;
2847
2848 raw_spin_lock_irqsave(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07002849 kmsg_dump_rewind_nolock(dumper);
Kay Sieverse2ae7152012-06-15 14:07:51 +02002850 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2851}
2852EXPORT_SYMBOL_GPL(kmsg_dump_rewind);
Tejun Heo196779b2013-04-30 15:27:12 -07002853
2854/**
2855 * dump_stack_print_info - print generic debug info for dump_stack()
2856 * @log_lvl: log level
2857 *
2858 * Arch-specific dump_stack() implementations can use this function to
2859 * print out the same debug information as the generic dump_stack().
2860 */
2861void dump_stack_print_info(const char *log_lvl)
2862{
2863 printk("%sCPU: %d PID: %d Comm: %.20s %s %s %.*s\n",
2864 log_lvl, raw_smp_processor_id(), current->pid, current->comm,
2865 print_tainted(), init_utsname()->release,
2866 (int)strcspn(init_utsname()->version, " "),
2867 init_utsname()->version);
2868}
2869
Joe Perches7ef3d2f2008-02-08 04:21:25 -08002870#endif