]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - kernel/printk/printk.c
printk: make dynamic kernel ring buffer alignment explicit
[mirror_ubuntu-artful-kernel.git] / kernel / printk / printk.c
CommitLineData
1da177e4
LT
1/*
2 * linux/kernel/printk.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
6 * Modified to make sys_syslog() more flexible: added commands to
7 * return the last 4k of kernel messages, regardless of whether
8 * they've been read or not. Added option to suppress kernel printk's
9 * to the console. Added hook for sending the console messages
10 * elsewhere, in preparation for a serial line console (someday).
11 * Ted Ts'o, 2/11/93.
12 * Modified for sysctl support, 1/8/97, Chris Horn.
40dc5651 13 * Fixed SMP synchronization, 08/08/99, Manfred Spraul
624dffcb 14 * manfred@colorfullife.com
1da177e4 15 * Rewrote bits to get rid of console_lock
e1f8e874 16 * 01Mar01 Andrew Morton
1da177e4
LT
17 */
18
19#include <linux/kernel.h>
20#include <linux/mm.h>
21#include <linux/tty.h>
22#include <linux/tty_driver.h>
1da177e4
LT
23#include <linux/console.h>
24#include <linux/init.h>
bfe8df3d
RD
25#include <linux/jiffies.h>
26#include <linux/nmi.h>
1da177e4 27#include <linux/module.h>
3b9c0410 28#include <linux/moduleparam.h>
1da177e4 29#include <linux/interrupt.h> /* For in_interrupt() */
1da177e4
LT
30#include <linux/delay.h>
31#include <linux/smp.h>
32#include <linux/security.h>
33#include <linux/bootmem.h>
162a7e75 34#include <linux/memblock.h>
a27bb332 35#include <linux/aio.h>
1da177e4 36#include <linux/syscalls.h>
04d491ab 37#include <linux/kexec.h>
d37d39ae 38#include <linux/kdb.h>
3fff4c42 39#include <linux/ratelimit.h>
456b565c 40#include <linux/kmsg_dump.h>
00234592 41#include <linux/syslog.h>
034260d6
KC
42#include <linux/cpu.h>
43#include <linux/notifier.h>
fb842b00 44#include <linux/rculist.h>
e11fea92 45#include <linux/poll.h>
74876a98 46#include <linux/irq_work.h>
196779b9 47#include <linux/utsname.h>
1da177e4
LT
48
49#include <asm/uaccess.h>
50
95100358
JB
51#define CREATE_TRACE_POINTS
52#include <trace/events/printk.h>
53
d197c43d 54#include "console_cmdline.h"
bbeddf52 55#include "braille.h"
d197c43d 56
1da177e4 57int console_printk[4] = {
a8fe19eb 58 CONSOLE_LOGLEVEL_DEFAULT, /* console_loglevel */
1da177e4 59 DEFAULT_MESSAGE_LOGLEVEL, /* default_message_loglevel */
a8fe19eb
BP
60 CONSOLE_LOGLEVEL_MIN, /* minimum_console_loglevel */
61 CONSOLE_LOGLEVEL_DEFAULT, /* default_console_loglevel */
1da177e4
LT
62};
63
458df9fd
SR
64/* Deferred messaged from sched code are marked by this special level */
65#define SCHED_MESSAGE_LOGLEVEL -2
66
1da177e4 67/*
0bbfb7c2 68 * Low level drivers may need that to know if they can schedule in
1da177e4
LT
69 * 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 */
5b8c4f23 79static DEFINE_SEMAPHORE(console_sem);
1da177e4 80struct console *console_drivers;
a29d1cfe
IM
81EXPORT_SYMBOL_GPL(console_drivers);
82
daee7797
DV
83#ifdef CONFIG_LOCKDEP
84static struct lockdep_map console_lock_dep_map = {
85 .name = "console_lock"
86};
87#endif
88
bd8d7cf5
JK
89/*
90 * Helper macros to handle lockdep when locking/unlocking console_sem. We use
91 * macros instead of functions so that _RET_IP_ contains useful information.
92 */
93#define down_console_sem() do { \
94 down(&console_sem);\
95 mutex_acquire(&console_lock_dep_map, 0, 0, _RET_IP_);\
96} while (0)
97
98static int __down_trylock_console_sem(unsigned long ip)
99{
100 if (down_trylock(&console_sem))
101 return 1;
102 mutex_acquire(&console_lock_dep_map, 0, 1, ip);
103 return 0;
104}
105#define down_trylock_console_sem() __down_trylock_console_sem(_RET_IP_)
106
107#define up_console_sem() do { \
108 mutex_release(&console_lock_dep_map, 1, _RET_IP_);\
109 up(&console_sem);\
110} while (0)
111
1da177e4
LT
112/*
113 * This is used for debugging the mess that is the VT code by
114 * keeping track if we have the console semaphore held. It's
115 * definitely not the perfect debug tool (we don't know if _WE_
116 * hold it are racing, but it helps tracking those weird code
117 * path in the console code where we end up in places I want
118 * locked without the console sempahore held
119 */
557240b4 120static int console_locked, console_suspended;
1da177e4 121
fe3d8ad3
FT
122/*
123 * If exclusive_console is non-NULL then only this console is to be printed to.
124 */
125static struct console *exclusive_console;
126
1da177e4
LT
127/*
128 * Array of consoles built from command line options (console=)
129 */
1da177e4
LT
130
131#define MAX_CMDLINECONSOLES 8
132
133static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
d197c43d 134
1da177e4
LT
135static int selected_console = -1;
136static int preferred_console = -1;
9e124fe1
MA
137int console_set_on_cmdline;
138EXPORT_SYMBOL(console_set_on_cmdline);
1da177e4
LT
139
140/* Flag: console code may call schedule() */
141static int console_may_schedule;
142
7ff9554b
KS
143/*
144 * The printk log buffer consists of a chain of concatenated variable
145 * length records. Every record starts with a record header, containing
146 * the overall length of the record.
147 *
148 * The heads to the first and last entry in the buffer, as well as the
149 * sequence numbers of these both entries are maintained when messages
150 * are stored..
151 *
152 * If the heads indicate available messages, the length in the header
153 * tells the start next message. A length == 0 for the next message
154 * indicates a wrap-around to the beginning of the buffer.
155 *
156 * Every record carries the monotonic timestamp in microseconds, as well as
157 * the standard userspace syslog level and syslog facility. The usual
158 * kernel messages use LOG_KERN; userspace-injected messages always carry
159 * a matching syslog facility, by default LOG_USER. The origin of every
160 * message can be reliably determined that way.
161 *
162 * The human readable log message directly follows the message header. The
163 * length of the message text is stored in the header, the stored message
164 * is not terminated.
165 *
e11fea92
KS
166 * Optionally, a message can carry a dictionary of properties (key/value pairs),
167 * to provide userspace with a machine-readable message context.
168 *
169 * Examples for well-defined, commonly used property names are:
170 * DEVICE=b12:8 device identifier
171 * b12:8 block dev_t
172 * c127:3 char dev_t
173 * n8 netdev ifindex
174 * +sound:card0 subsystem:devname
175 * SUBSYSTEM=pci driver-core subsystem name
176 *
177 * Valid characters in property names are [a-zA-Z0-9.-_]. The plain text value
178 * follows directly after a '=' character. Every property is terminated by
179 * a '\0' character. The last property is not terminated.
180 *
181 * Example of a message structure:
182 * 0000 ff 8f 00 00 00 00 00 00 monotonic time in nsec
183 * 0008 34 00 record is 52 bytes long
184 * 000a 0b 00 text is 11 bytes long
185 * 000c 1f 00 dictionary is 23 bytes long
186 * 000e 03 00 LOG_KERN (facility) LOG_ERR (level)
187 * 0010 69 74 27 73 20 61 20 6c "it's a l"
188 * 69 6e 65 "ine"
189 * 001b 44 45 56 49 43 "DEVIC"
190 * 45 3d 62 38 3a 32 00 44 "E=b8:2\0D"
191 * 52 49 56 45 52 3d 62 75 "RIVER=bu"
192 * 67 "g"
193 * 0032 00 00 00 padding to next message header
194 *
62e32ac3 195 * The 'struct printk_log' buffer header must never be directly exported to
e11fea92
KS
196 * userspace, it is a kernel-private implementation detail that might
197 * need to be changed in the future, when the requirements change.
198 *
199 * /dev/kmsg exports the structured data in the following line format:
200 * "level,sequnum,timestamp;<message text>\n"
201 *
202 * The optional key/value pairs are attached as continuation lines starting
203 * with a space character and terminated by a newline. All possible
204 * non-prinatable characters are escaped in the "\xff" notation.
205 *
206 * Users of the export format should ignore possible additional values
207 * separated by ',', and find the message after the ';' character.
7ff9554b
KS
208 */
209
084681d1 210enum log_flags {
5becfb1d
KS
211 LOG_NOCONS = 1, /* already flushed, do not print to console */
212 LOG_NEWLINE = 2, /* text ended with a newline */
213 LOG_PREFIX = 4, /* text started with a prefix */
214 LOG_CONT = 8, /* text is a fragment of a continuation line */
084681d1
KS
215};
216
62e32ac3 217struct printk_log {
7ff9554b
KS
218 u64 ts_nsec; /* timestamp in nanoseconds */
219 u16 len; /* length of entire record */
220 u16 text_len; /* length of text buffer */
221 u16 dict_len; /* length of dictionary buffer */
084681d1
KS
222 u8 facility; /* syslog facility */
223 u8 flags:5; /* internal record flags */
224 u8 level:3; /* syslog level */
7ff9554b
KS
225};
226
227/*
458df9fd
SR
228 * The logbuf_lock protects kmsg buffer, indices, counters. This can be taken
229 * within the scheduler's rq lock. It must be released before calling
230 * console_unlock() or anything else that might wake up a process.
7ff9554b
KS
231 */
232static DEFINE_RAW_SPINLOCK(logbuf_lock);
d59745ce 233
96efedf1 234#ifdef CONFIG_PRINTK
dc72c32e 235DECLARE_WAIT_QUEUE_HEAD(log_wait);
7f3a781d
KS
236/* the next printk record to read by syslog(READ) or /proc/kmsg */
237static u64 syslog_seq;
238static u32 syslog_idx;
5becfb1d 239static enum log_flags syslog_prev;
eb02dac9 240static size_t syslog_partial;
7ff9554b
KS
241
242/* index and sequence number of the first record stored in the buffer */
243static u64 log_first_seq;
244static u32 log_first_idx;
245
246/* index and sequence number of the next record to store in the buffer */
247static u64 log_next_seq;
248static u32 log_next_idx;
249
eab07260
KS
250/* the next printk record to write to the console */
251static u64 console_seq;
252static u32 console_idx;
253static enum log_flags console_prev;
254
7ff9554b
KS
255/* the next printk record to read after the last 'clear' command */
256static u64 clear_seq;
257static u32 clear_idx;
258
70498253
KS
259#define PREFIX_MAX 32
260#define LOG_LINE_MAX 1024 - PREFIX_MAX
7f3a781d
KS
261
262/* record buffer */
6ebb017d 263#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
f8450fca
SW
264#define LOG_ALIGN 4
265#else
62e32ac3 266#define LOG_ALIGN __alignof__(struct printk_log)
f8450fca 267#endif
7f3a781d 268#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
f8450fca 269static char __log_buf[__LOG_BUF_LEN] __aligned(LOG_ALIGN);
7f3a781d
KS
270static char *log_buf = __log_buf;
271static u32 log_buf_len = __LOG_BUF_LEN;
272
7ff9554b 273/* human readable text of the record */
62e32ac3 274static char *log_text(const struct printk_log *msg)
7ff9554b 275{
62e32ac3 276 return (char *)msg + sizeof(struct printk_log);
7ff9554b
KS
277}
278
279/* optional key/value pair dictionary attached to the record */
62e32ac3 280static char *log_dict(const struct printk_log *msg)
7ff9554b 281{
62e32ac3 282 return (char *)msg + sizeof(struct printk_log) + msg->text_len;
7ff9554b
KS
283}
284
285/* get record by index; idx must point to valid msg */
62e32ac3 286static struct printk_log *log_from_idx(u32 idx)
7ff9554b 287{
62e32ac3 288 struct printk_log *msg = (struct printk_log *)(log_buf + idx);
7ff9554b
KS
289
290 /*
291 * A length == 0 record is the end of buffer marker. Wrap around and
292 * read the message at the start of the buffer.
293 */
294 if (!msg->len)
62e32ac3 295 return (struct printk_log *)log_buf;
7ff9554b
KS
296 return msg;
297}
298
299/* get next record; idx must point to valid msg */
300static u32 log_next(u32 idx)
301{
62e32ac3 302 struct printk_log *msg = (struct printk_log *)(log_buf + idx);
7ff9554b
KS
303
304 /* length == 0 indicates the end of the buffer; wrap */
305 /*
306 * A length == 0 record is the end of buffer marker. Wrap around and
307 * read the message at the start of the buffer as *this* one, and
308 * return the one after that.
309 */
310 if (!msg->len) {
62e32ac3 311 msg = (struct printk_log *)log_buf;
7ff9554b
KS
312 return msg->len;
313 }
314 return idx + msg->len;
315}
316
f40e4b9f
PM
317/*
318 * Check whether there is enough free space for the given message.
319 *
320 * The same values of first_idx and next_idx mean that the buffer
321 * is either empty or full.
322 *
323 * If the buffer is empty, we must respect the position of the indexes.
324 * They cannot be reset to the beginning of the buffer.
325 */
326static int logbuf_has_space(u32 msg_size, bool empty)
0a581694
PM
327{
328 u32 free;
329
f40e4b9f 330 if (log_next_idx > log_first_idx || empty)
0a581694
PM
331 free = max(log_buf_len - log_next_idx, log_first_idx);
332 else
333 free = log_first_idx - log_next_idx;
334
335 /*
336 * We need space also for an empty header that signalizes wrapping
337 * of the buffer.
338 */
339 return free >= msg_size + sizeof(struct printk_log);
340}
341
f40e4b9f 342static int log_make_free_space(u32 msg_size)
0a581694
PM
343{
344 while (log_first_seq < log_next_seq) {
f40e4b9f
PM
345 if (logbuf_has_space(msg_size, false))
346 return 0;
0a581694
PM
347 /* drop old messages until we have enough continuous space */
348 log_first_idx = log_next(log_first_idx);
349 log_first_seq++;
350 }
f40e4b9f
PM
351
352 /* sequence numbers are equal, so the log buffer is empty */
353 if (logbuf_has_space(msg_size, true))
354 return 0;
355
356 return -ENOMEM;
0a581694
PM
357}
358
85c87043
PM
359/* compute the message size including the padding bytes */
360static u32 msg_used_size(u16 text_len, u16 dict_len, u32 *pad_len)
361{
362 u32 size;
363
364 size = sizeof(struct printk_log) + text_len + dict_len;
365 *pad_len = (-size) & (LOG_ALIGN - 1);
366 size += *pad_len;
367
368 return size;
369}
370
55bd53a4
PM
371/*
372 * Define how much of the log buffer we could take at maximum. The value
373 * must be greater than two. Note that only half of the buffer is available
374 * when the index points to the middle.
375 */
376#define MAX_LOG_TAKE_PART 4
377static const char trunc_msg[] = "<truncated>";
378
379static u32 truncate_msg(u16 *text_len, u16 *trunc_msg_len,
380 u16 *dict_len, u32 *pad_len)
381{
382 /*
383 * The message should not take the whole buffer. Otherwise, it might
384 * get removed too soon.
385 */
386 u32 max_text_len = log_buf_len / MAX_LOG_TAKE_PART;
387 if (*text_len > max_text_len)
388 *text_len = max_text_len;
389 /* enable the warning message */
390 *trunc_msg_len = strlen(trunc_msg);
391 /* disable the "dict" completely */
392 *dict_len = 0;
393 /* compute the size again, count also the warning message */
394 return msg_used_size(*text_len + *trunc_msg_len, 0, pad_len);
395}
396
7ff9554b 397/* insert record into the buffer, discard old ones, update heads */
034633cc
PM
398static int log_store(int facility, int level,
399 enum log_flags flags, u64 ts_nsec,
400 const char *dict, u16 dict_len,
401 const char *text, u16 text_len)
7ff9554b 402{
62e32ac3 403 struct printk_log *msg;
7ff9554b 404 u32 size, pad_len;
55bd53a4 405 u16 trunc_msg_len = 0;
7ff9554b
KS
406
407 /* number of '\0' padding bytes to next message */
85c87043 408 size = msg_used_size(text_len, dict_len, &pad_len);
7ff9554b 409
55bd53a4
PM
410 if (log_make_free_space(size)) {
411 /* truncate the message if it is too long for empty buffer */
412 size = truncate_msg(&text_len, &trunc_msg_len,
413 &dict_len, &pad_len);
414 /* survive when the log buffer is too small for trunc_msg */
415 if (log_make_free_space(size))
034633cc 416 return 0;
55bd53a4 417 }
7ff9554b 418
39b25109 419 if (log_next_idx + size + sizeof(struct printk_log) > log_buf_len) {
7ff9554b
KS
420 /*
421 * This message + an additional empty header does not fit
422 * at the end of the buffer. Add an empty header with len == 0
423 * to signify a wrap around.
424 */
62e32ac3 425 memset(log_buf + log_next_idx, 0, sizeof(struct printk_log));
7ff9554b
KS
426 log_next_idx = 0;
427 }
428
429 /* fill message */
62e32ac3 430 msg = (struct printk_log *)(log_buf + log_next_idx);
7ff9554b
KS
431 memcpy(log_text(msg), text, text_len);
432 msg->text_len = text_len;
55bd53a4
PM
433 if (trunc_msg_len) {
434 memcpy(log_text(msg) + text_len, trunc_msg, trunc_msg_len);
435 msg->text_len += trunc_msg_len;
436 }
7ff9554b
KS
437 memcpy(log_dict(msg), dict, dict_len);
438 msg->dict_len = dict_len;
084681d1
KS
439 msg->facility = facility;
440 msg->level = level & 7;
441 msg->flags = flags & 0x1f;
442 if (ts_nsec > 0)
443 msg->ts_nsec = ts_nsec;
444 else
445 msg->ts_nsec = local_clock();
7ff9554b 446 memset(log_dict(msg) + dict_len, 0, pad_len);
fce6e033 447 msg->len = size;
7ff9554b
KS
448
449 /* insert message */
450 log_next_idx += msg->len;
451 log_next_seq++;
034633cc
PM
452
453 return msg->text_len;
7ff9554b 454}
d59745ce 455
637241a9
KC
456#ifdef CONFIG_SECURITY_DMESG_RESTRICT
457int dmesg_restrict = 1;
458#else
459int dmesg_restrict;
460#endif
461
462static int syslog_action_restricted(int type)
463{
464 if (dmesg_restrict)
465 return 1;
466 /*
467 * Unless restricted, we allow "read all" and "get buffer size"
468 * for everybody.
469 */
470 return type != SYSLOG_ACTION_READ_ALL &&
471 type != SYSLOG_ACTION_SIZE_BUFFER;
472}
473
474static int check_syslog_permissions(int type, bool from_file)
475{
476 /*
477 * If this is from /proc/kmsg and we've already opened it, then we've
478 * already done the capabilities checks at open time.
479 */
480 if (from_file && type != SYSLOG_ACTION_OPEN)
481 return 0;
482
483 if (syslog_action_restricted(type)) {
484 if (capable(CAP_SYSLOG))
485 return 0;
486 /*
487 * For historical reasons, accept CAP_SYS_ADMIN too, with
488 * a warning.
489 */
490 if (capable(CAP_SYS_ADMIN)) {
491 pr_warn_once("%s (%d): Attempt to access syslog with "
492 "CAP_SYS_ADMIN but no CAP_SYSLOG "
493 "(deprecated).\n",
494 current->comm, task_pid_nr(current));
495 return 0;
496 }
497 return -EPERM;
498 }
499 return security_syslog(type);
500}
501
502
e11fea92
KS
503/* /dev/kmsg - userspace message inject/listen interface */
504struct devkmsg_user {
505 u64 seq;
506 u32 idx;
d39f3d77 507 enum log_flags prev;
e11fea92
KS
508 struct mutex lock;
509 char buf[8192];
510};
511
512static ssize_t devkmsg_writev(struct kiocb *iocb, const struct iovec *iv,
513 unsigned long count, loff_t pos)
514{
515 char *buf, *line;
516 int i;
517 int level = default_message_loglevel;
518 int facility = 1; /* LOG_USER */
519 size_t len = iov_length(iv, count);
520 ssize_t ret = len;
521
522 if (len > LOG_LINE_MAX)
523 return -EINVAL;
524 buf = kmalloc(len+1, GFP_KERNEL);
525 if (buf == NULL)
526 return -ENOMEM;
527
528 line = buf;
529 for (i = 0; i < count; i++) {
cdf53441
KS
530 if (copy_from_user(line, iv[i].iov_base, iv[i].iov_len)) {
531 ret = -EFAULT;
e11fea92 532 goto out;
cdf53441 533 }
e11fea92
KS
534 line += iv[i].iov_len;
535 }
536
537 /*
538 * Extract and skip the syslog prefix <[0-9]*>. Coming from userspace
539 * the decimal value represents 32bit, the lower 3 bit are the log
540 * level, the rest are the log facility.
541 *
542 * If no prefix or no userspace facility is specified, we
543 * enforce LOG_USER, to be able to reliably distinguish
544 * kernel-generated messages from userspace-injected ones.
545 */
546 line = buf;
547 if (line[0] == '<') {
548 char *endp = NULL;
549
550 i = simple_strtoul(line+1, &endp, 10);
551 if (endp && endp[0] == '>') {
552 level = i & 7;
553 if (i >> 3)
554 facility = i >> 3;
555 endp++;
556 len -= endp - line;
557 line = endp;
558 }
559 }
560 line[len] = '\0';
561
562 printk_emit(facility, level, NULL, 0, "%s", line);
563out:
564 kfree(buf);
565 return ret;
566}
567
568static ssize_t devkmsg_read(struct file *file, char __user *buf,
569 size_t count, loff_t *ppos)
570{
571 struct devkmsg_user *user = file->private_data;
62e32ac3 572 struct printk_log *msg;
5fc32490 573 u64 ts_usec;
e11fea92 574 size_t i;
d39f3d77 575 char cont = '-';
e11fea92
KS
576 size_t len;
577 ssize_t ret;
578
579 if (!user)
580 return -EBADF;
581
4a77a5a0
YL
582 ret = mutex_lock_interruptible(&user->lock);
583 if (ret)
584 return ret;
5c53d819 585 raw_spin_lock_irq(&logbuf_lock);
e11fea92
KS
586 while (user->seq == log_next_seq) {
587 if (file->f_flags & O_NONBLOCK) {
588 ret = -EAGAIN;
5c53d819 589 raw_spin_unlock_irq(&logbuf_lock);
e11fea92
KS
590 goto out;
591 }
592
5c53d819 593 raw_spin_unlock_irq(&logbuf_lock);
e11fea92
KS
594 ret = wait_event_interruptible(log_wait,
595 user->seq != log_next_seq);
596 if (ret)
597 goto out;
5c53d819 598 raw_spin_lock_irq(&logbuf_lock);
e11fea92
KS
599 }
600
601 if (user->seq < log_first_seq) {
602 /* our last seen message is gone, return error and reset */
603 user->idx = log_first_idx;
604 user->seq = log_first_seq;
605 ret = -EPIPE;
5c53d819 606 raw_spin_unlock_irq(&logbuf_lock);
e11fea92
KS
607 goto out;
608 }
609
610 msg = log_from_idx(user->idx);
5fc32490
KS
611 ts_usec = msg->ts_nsec;
612 do_div(ts_usec, 1000);
d39f3d77
KS
613
614 /*
615 * If we couldn't merge continuation line fragments during the print,
616 * export the stored flags to allow an optional external merge of the
617 * records. Merging the records isn't always neccessarily correct, like
618 * when we hit a race during printing. In most cases though, it produces
619 * better readable output. 'c' in the record flags mark the first
620 * fragment of a line, '+' the following.
621 */
622 if (msg->flags & LOG_CONT && !(user->prev & LOG_CONT))
623 cont = 'c';
624 else if ((msg->flags & LOG_CONT) ||
625 ((user->prev & LOG_CONT) && !(msg->flags & LOG_PREFIX)))
626 cont = '+';
627
628 len = sprintf(user->buf, "%u,%llu,%llu,%c;",
629 (msg->facility << 3) | msg->level,
630 user->seq, ts_usec, cont);
631 user->prev = msg->flags;
e11fea92
KS
632
633 /* escape non-printable characters */
634 for (i = 0; i < msg->text_len; i++) {
3ce9a7c0 635 unsigned char c = log_text(msg)[i];
e11fea92 636
e3f5a5f2 637 if (c < ' ' || c >= 127 || c == '\\')
e11fea92
KS
638 len += sprintf(user->buf + len, "\\x%02x", c);
639 else
640 user->buf[len++] = c;
641 }
642 user->buf[len++] = '\n';
643
644 if (msg->dict_len) {
645 bool line = true;
646
647 for (i = 0; i < msg->dict_len; i++) {
3ce9a7c0 648 unsigned char c = log_dict(msg)[i];
e11fea92
KS
649
650 if (line) {
651 user->buf[len++] = ' ';
652 line = false;
653 }
654
655 if (c == '\0') {
656 user->buf[len++] = '\n';
657 line = true;
658 continue;
659 }
660
e3f5a5f2 661 if (c < ' ' || c >= 127 || c == '\\') {
e11fea92
KS
662 len += sprintf(user->buf + len, "\\x%02x", c);
663 continue;
664 }
665
666 user->buf[len++] = c;
667 }
668 user->buf[len++] = '\n';
669 }
670
671 user->idx = log_next(user->idx);
672 user->seq++;
5c53d819 673 raw_spin_unlock_irq(&logbuf_lock);
e11fea92
KS
674
675 if (len > count) {
676 ret = -EINVAL;
677 goto out;
678 }
679
680 if (copy_to_user(buf, user->buf, len)) {
681 ret = -EFAULT;
682 goto out;
683 }
684 ret = len;
685out:
686 mutex_unlock(&user->lock);
687 return ret;
688}
689
690static loff_t devkmsg_llseek(struct file *file, loff_t offset, int whence)
691{
692 struct devkmsg_user *user = file->private_data;
693 loff_t ret = 0;
694
695 if (!user)
696 return -EBADF;
697 if (offset)
698 return -ESPIPE;
699
5c53d819 700 raw_spin_lock_irq(&logbuf_lock);
e11fea92
KS
701 switch (whence) {
702 case SEEK_SET:
703 /* the first record */
704 user->idx = log_first_idx;
705 user->seq = log_first_seq;
706 break;
707 case SEEK_DATA:
708 /*
709 * The first record after the last SYSLOG_ACTION_CLEAR,
710 * like issued by 'dmesg -c'. Reading /dev/kmsg itself
711 * changes no global state, and does not clear anything.
712 */
713 user->idx = clear_idx;
714 user->seq = clear_seq;
715 break;
716 case SEEK_END:
717 /* after the last record */
718 user->idx = log_next_idx;
719 user->seq = log_next_seq;
720 break;
721 default:
722 ret = -EINVAL;
723 }
5c53d819 724 raw_spin_unlock_irq(&logbuf_lock);
e11fea92
KS
725 return ret;
726}
727
728static unsigned int devkmsg_poll(struct file *file, poll_table *wait)
729{
730 struct devkmsg_user *user = file->private_data;
731 int ret = 0;
732
733 if (!user)
734 return POLLERR|POLLNVAL;
735
736 poll_wait(file, &log_wait, wait);
737
5c53d819 738 raw_spin_lock_irq(&logbuf_lock);
e11fea92
KS
739 if (user->seq < log_next_seq) {
740 /* return error when data has vanished underneath us */
741 if (user->seq < log_first_seq)
742 ret = POLLIN|POLLRDNORM|POLLERR|POLLPRI;
0a285317
NK
743 else
744 ret = POLLIN|POLLRDNORM;
e11fea92 745 }
5c53d819 746 raw_spin_unlock_irq(&logbuf_lock);
e11fea92
KS
747
748 return ret;
749}
750
751static int devkmsg_open(struct inode *inode, struct file *file)
752{
753 struct devkmsg_user *user;
754 int err;
755
756 /* write-only does not need any file context */
757 if ((file->f_flags & O_ACCMODE) == O_WRONLY)
758 return 0;
759
637241a9
KC
760 err = check_syslog_permissions(SYSLOG_ACTION_READ_ALL,
761 SYSLOG_FROM_READER);
e11fea92
KS
762 if (err)
763 return err;
764
765 user = kmalloc(sizeof(struct devkmsg_user), GFP_KERNEL);
766 if (!user)
767 return -ENOMEM;
768
769 mutex_init(&user->lock);
770
5c53d819 771 raw_spin_lock_irq(&logbuf_lock);
e11fea92
KS
772 user->idx = log_first_idx;
773 user->seq = log_first_seq;
5c53d819 774 raw_spin_unlock_irq(&logbuf_lock);
e11fea92
KS
775
776 file->private_data = user;
777 return 0;
778}
779
780static int devkmsg_release(struct inode *inode, struct file *file)
781{
782 struct devkmsg_user *user = file->private_data;
783
784 if (!user)
785 return 0;
786
787 mutex_destroy(&user->lock);
788 kfree(user);
789 return 0;
790}
791
792const struct file_operations kmsg_fops = {
793 .open = devkmsg_open,
794 .read = devkmsg_read,
795 .aio_write = devkmsg_writev,
796 .llseek = devkmsg_llseek,
797 .poll = devkmsg_poll,
798 .release = devkmsg_release,
799};
800
04d491ab
NH
801#ifdef CONFIG_KEXEC
802/*
4c1ace64 803 * This appends the listed symbols to /proc/vmcore
04d491ab 804 *
4c1ace64 805 * /proc/vmcore is used by various utilities, like crash and makedumpfile to
04d491ab
NH
806 * obtain access to symbols that are otherwise very difficult to locate. These
807 * symbols are specifically used so that utilities can access and extract the
808 * dmesg log from a vmcore file after a crash.
809 */
810void log_buf_kexec_setup(void)
811{
812 VMCOREINFO_SYMBOL(log_buf);
04d491ab 813 VMCOREINFO_SYMBOL(log_buf_len);
7ff9554b
KS
814 VMCOREINFO_SYMBOL(log_first_idx);
815 VMCOREINFO_SYMBOL(log_next_idx);
6791457a 816 /*
62e32ac3 817 * Export struct printk_log size and field offsets. User space tools can
6791457a
VG
818 * parse it and detect any changes to structure down the line.
819 */
62e32ac3
JP
820 VMCOREINFO_STRUCT_SIZE(printk_log);
821 VMCOREINFO_OFFSET(printk_log, ts_nsec);
822 VMCOREINFO_OFFSET(printk_log, len);
823 VMCOREINFO_OFFSET(printk_log, text_len);
824 VMCOREINFO_OFFSET(printk_log, dict_len);
04d491ab
NH
825}
826#endif
827
162a7e75
MT
828/* requested log_buf_len from kernel cmdline */
829static unsigned long __initdata new_log_buf_len;
830
831/* save requested log_buf_len since it's too early to process it */
1da177e4
LT
832static int __init log_buf_len_setup(char *str)
833{
eed4a2ab 834 unsigned size = memparse(str, &str);
1da177e4
LT
835
836 if (size)
837 size = roundup_pow_of_two(size);
162a7e75
MT
838 if (size > log_buf_len)
839 new_log_buf_len = size;
840
841 return 0;
1da177e4 842}
162a7e75
MT
843early_param("log_buf_len", log_buf_len_setup);
844
845void __init setup_log_buf(int early)
846{
847 unsigned long flags;
162a7e75
MT
848 char *new_log_buf;
849 int free;
850
851 if (!new_log_buf_len)
852 return;
1da177e4 853
162a7e75 854 if (early) {
9da791df 855 new_log_buf =
70300177 856 memblock_virt_alloc(new_log_buf_len, LOG_ALIGN);
162a7e75 857 } else {
70300177
LR
858 new_log_buf = memblock_virt_alloc_nopanic(new_log_buf_len,
859 LOG_ALIGN);
162a7e75
MT
860 }
861
862 if (unlikely(!new_log_buf)) {
863 pr_err("log_buf_len: %ld bytes not available\n",
864 new_log_buf_len);
865 return;
866 }
867
07354eb1 868 raw_spin_lock_irqsave(&logbuf_lock, flags);
162a7e75
MT
869 log_buf_len = new_log_buf_len;
870 log_buf = new_log_buf;
871 new_log_buf_len = 0;
7ff9554b
KS
872 free = __LOG_BUF_LEN - log_next_idx;
873 memcpy(log_buf, __log_buf, __LOG_BUF_LEN);
07354eb1 874 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
162a7e75
MT
875
876 pr_info("log_buf_len: %d\n", log_buf_len);
877 pr_info("early log buf free: %d(%d%%)\n",
878 free, (free * 100) / __LOG_BUF_LEN);
879}
1da177e4 880
2fa72c8f
AC
881static bool __read_mostly ignore_loglevel;
882
883static int __init ignore_loglevel_setup(char *str)
884{
885 ignore_loglevel = 1;
27083bac 886 pr_info("debug: ignoring loglevel setting.\n");
2fa72c8f
AC
887
888 return 0;
889}
890
891early_param("ignore_loglevel", ignore_loglevel_setup);
892module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR);
893MODULE_PARM_DESC(ignore_loglevel, "ignore loglevel setting, to"
894 "print all kernel messages to the console.");
895
bfe8df3d
RD
896#ifdef CONFIG_BOOT_PRINTK_DELAY
897
674dff65 898static int boot_delay; /* msecs delay after each printk during bootup */
3a3b6ed2 899static unsigned long long loops_per_msec; /* based on boot_delay */
bfe8df3d
RD
900
901static int __init boot_delay_setup(char *str)
902{
903 unsigned long lpj;
bfe8df3d
RD
904
905 lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */
906 loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
907
908 get_option(&str, &boot_delay);
909 if (boot_delay > 10 * 1000)
910 boot_delay = 0;
911
3a3b6ed2
DY
912 pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
913 "HZ: %d, loops_per_msec: %llu\n",
914 boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
29e9d225 915 return 0;
bfe8df3d 916}
29e9d225 917early_param("boot_delay", boot_delay_setup);
bfe8df3d 918
2fa72c8f 919static void boot_delay_msec(int level)
bfe8df3d
RD
920{
921 unsigned long long k;
922 unsigned long timeout;
923
2fa72c8f
AC
924 if ((boot_delay == 0 || system_state != SYSTEM_BOOTING)
925 || (level >= console_loglevel && !ignore_loglevel)) {
bfe8df3d 926 return;
2fa72c8f 927 }
bfe8df3d 928
3a3b6ed2 929 k = (unsigned long long)loops_per_msec * boot_delay;
bfe8df3d
RD
930
931 timeout = jiffies + msecs_to_jiffies(boot_delay);
932 while (k) {
933 k--;
934 cpu_relax();
935 /*
936 * use (volatile) jiffies to prevent
937 * compiler reduction; loop termination via jiffies
938 * is secondary and may or may not happen.
939 */
940 if (time_after(jiffies, timeout))
941 break;
942 touch_nmi_watchdog();
943 }
944}
945#else
2fa72c8f 946static inline void boot_delay_msec(int level)
bfe8df3d
RD
947{
948}
949#endif
950
7ff9554b
KS
951#if defined(CONFIG_PRINTK_TIME)
952static bool printk_time = 1;
953#else
954static bool printk_time;
955#endif
956module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
957
084681d1
KS
958static size_t print_time(u64 ts, char *buf)
959{
960 unsigned long rem_nsec;
961
962 if (!printk_time)
963 return 0;
964
35dac27c
RD
965 rem_nsec = do_div(ts, 1000000000);
966
084681d1 967 if (!buf)
35dac27c 968 return snprintf(NULL, 0, "[%5lu.000000] ", (unsigned long)ts);
084681d1 969
084681d1
KS
970 return sprintf(buf, "[%5lu.%06lu] ",
971 (unsigned long)ts, rem_nsec / 1000);
972}
973
62e32ac3 974static size_t print_prefix(const struct printk_log *msg, bool syslog, char *buf)
649e6ee3 975{
3ce9a7c0 976 size_t len = 0;
43a73a50 977 unsigned int prefix = (msg->facility << 3) | msg->level;
649e6ee3 978
3ce9a7c0
KS
979 if (syslog) {
980 if (buf) {
43a73a50 981 len += sprintf(buf, "<%u>", prefix);
3ce9a7c0
KS
982 } else {
983 len += 3;
43a73a50
KS
984 if (prefix > 999)
985 len += 3;
986 else if (prefix > 99)
987 len += 2;
988 else if (prefix > 9)
3ce9a7c0
KS
989 len++;
990 }
991 }
649e6ee3 992
084681d1 993 len += print_time(msg->ts_nsec, buf ? buf + len : NULL);
3ce9a7c0 994 return len;
649e6ee3
KS
995}
996
62e32ac3 997static size_t msg_print_text(const struct printk_log *msg, enum log_flags prev,
5becfb1d 998 bool syslog, char *buf, size_t size)
7ff9554b 999{
3ce9a7c0
KS
1000 const char *text = log_text(msg);
1001 size_t text_size = msg->text_len;
5becfb1d
KS
1002 bool prefix = true;
1003 bool newline = true;
3ce9a7c0
KS
1004 size_t len = 0;
1005
5becfb1d
KS
1006 if ((prev & LOG_CONT) && !(msg->flags & LOG_PREFIX))
1007 prefix = false;
1008
1009 if (msg->flags & LOG_CONT) {
1010 if ((prev & LOG_CONT) && !(prev & LOG_NEWLINE))
1011 prefix = false;
1012
1013 if (!(msg->flags & LOG_NEWLINE))
1014 newline = false;
1015 }
1016
3ce9a7c0
KS
1017 do {
1018 const char *next = memchr(text, '\n', text_size);
1019 size_t text_len;
1020
1021 if (next) {
1022 text_len = next - text;
1023 next++;
1024 text_size -= next - text;
1025 } else {
1026 text_len = text_size;
1027 }
7ff9554b 1028
3ce9a7c0
KS
1029 if (buf) {
1030 if (print_prefix(msg, syslog, NULL) +
70498253 1031 text_len + 1 >= size - len)
3ce9a7c0 1032 break;
7ff9554b 1033
5becfb1d
KS
1034 if (prefix)
1035 len += print_prefix(msg, syslog, buf + len);
3ce9a7c0
KS
1036 memcpy(buf + len, text, text_len);
1037 len += text_len;
5becfb1d
KS
1038 if (next || newline)
1039 buf[len++] = '\n';
3ce9a7c0
KS
1040 } else {
1041 /* SYSLOG_ACTION_* buffer size only calculation */
5becfb1d
KS
1042 if (prefix)
1043 len += print_prefix(msg, syslog, NULL);
1044 len += text_len;
1045 if (next || newline)
1046 len++;
3ce9a7c0 1047 }
7ff9554b 1048
5becfb1d 1049 prefix = true;
3ce9a7c0
KS
1050 text = next;
1051 } while (text);
7ff9554b 1052
7ff9554b
KS
1053 return len;
1054}
1055
1056static int syslog_print(char __user *buf, int size)
1057{
1058 char *text;
62e32ac3 1059 struct printk_log *msg;
116e90b2 1060 int len = 0;
7ff9554b 1061
70498253 1062 text = kmalloc(LOG_LINE_MAX + PREFIX_MAX, GFP_KERNEL);
7ff9554b
KS
1063 if (!text)
1064 return -ENOMEM;
1065
116e90b2
JB
1066 while (size > 0) {
1067 size_t n;
eb02dac9 1068 size_t skip;
116e90b2
JB
1069
1070 raw_spin_lock_irq(&logbuf_lock);
1071 if (syslog_seq < log_first_seq) {
1072 /* messages are gone, move to first one */
1073 syslog_seq = log_first_seq;
1074 syslog_idx = log_first_idx;
5becfb1d 1075 syslog_prev = 0;
eb02dac9 1076 syslog_partial = 0;
116e90b2
JB
1077 }
1078 if (syslog_seq == log_next_seq) {
1079 raw_spin_unlock_irq(&logbuf_lock);
1080 break;
1081 }
eb02dac9
KS
1082
1083 skip = syslog_partial;
116e90b2 1084 msg = log_from_idx(syslog_idx);
70498253
KS
1085 n = msg_print_text(msg, syslog_prev, true, text,
1086 LOG_LINE_MAX + PREFIX_MAX);
eb02dac9
KS
1087 if (n - syslog_partial <= size) {
1088 /* message fits into buffer, move forward */
116e90b2
JB
1089 syslog_idx = log_next(syslog_idx);
1090 syslog_seq++;
5becfb1d 1091 syslog_prev = msg->flags;
eb02dac9
KS
1092 n -= syslog_partial;
1093 syslog_partial = 0;
1094 } else if (!len){
1095 /* partial read(), remember position */
1096 n = size;
1097 syslog_partial += n;
116e90b2
JB
1098 } else
1099 n = 0;
1100 raw_spin_unlock_irq(&logbuf_lock);
1101
1102 if (!n)
1103 break;
1104
eb02dac9 1105 if (copy_to_user(buf, text + skip, n)) {
116e90b2
JB
1106 if (!len)
1107 len = -EFAULT;
1108 break;
1109 }
eb02dac9
KS
1110
1111 len += n;
1112 size -= n;
1113 buf += n;
7ff9554b 1114 }
7ff9554b
KS
1115
1116 kfree(text);
1117 return len;
1118}
1119
1120static int syslog_print_all(char __user *buf, int size, bool clear)
1121{
1122 char *text;
1123 int len = 0;
1124
70498253 1125 text = kmalloc(LOG_LINE_MAX + PREFIX_MAX, GFP_KERNEL);
7ff9554b
KS
1126 if (!text)
1127 return -ENOMEM;
1128
1129 raw_spin_lock_irq(&logbuf_lock);
1130 if (buf) {
1131 u64 next_seq;
1132 u64 seq;
1133 u32 idx;
5becfb1d 1134 enum log_flags prev;
7ff9554b
KS
1135
1136 if (clear_seq < log_first_seq) {
1137 /* messages are gone, move to first available one */
1138 clear_seq = log_first_seq;
1139 clear_idx = log_first_idx;
1140 }
1141
1142 /*
1143 * Find first record that fits, including all following records,
1144 * into the user-provided buffer for this dump.
e2ae715d 1145 */
7ff9554b
KS
1146 seq = clear_seq;
1147 idx = clear_idx;
5becfb1d 1148 prev = 0;
7ff9554b 1149 while (seq < log_next_seq) {
62e32ac3 1150 struct printk_log *msg = log_from_idx(idx);
3ce9a7c0 1151
5becfb1d 1152 len += msg_print_text(msg, prev, true, NULL, 0);
e3756477 1153 prev = msg->flags;
7ff9554b
KS
1154 idx = log_next(idx);
1155 seq++;
1156 }
e2ae715d
KS
1157
1158 /* move first record forward until length fits into the buffer */
7ff9554b
KS
1159 seq = clear_seq;
1160 idx = clear_idx;
5becfb1d 1161 prev = 0;
7ff9554b 1162 while (len > size && seq < log_next_seq) {
62e32ac3 1163 struct printk_log *msg = log_from_idx(idx);
3ce9a7c0 1164
5becfb1d 1165 len -= msg_print_text(msg, prev, true, NULL, 0);
e3756477 1166 prev = msg->flags;
7ff9554b
KS
1167 idx = log_next(idx);
1168 seq++;
1169 }
1170
e2ae715d 1171 /* last message fitting into this dump */
7ff9554b
KS
1172 next_seq = log_next_seq;
1173
1174 len = 0;
1175 while (len >= 0 && seq < next_seq) {
62e32ac3 1176 struct printk_log *msg = log_from_idx(idx);
7ff9554b
KS
1177 int textlen;
1178
70498253
KS
1179 textlen = msg_print_text(msg, prev, true, text,
1180 LOG_LINE_MAX + PREFIX_MAX);
7ff9554b
KS
1181 if (textlen < 0) {
1182 len = textlen;
1183 break;
1184 }
1185 idx = log_next(idx);
1186 seq++;
5becfb1d 1187 prev = msg->flags;
7ff9554b
KS
1188
1189 raw_spin_unlock_irq(&logbuf_lock);
1190 if (copy_to_user(buf + len, text, textlen))
1191 len = -EFAULT;
1192 else
1193 len += textlen;
1194 raw_spin_lock_irq(&logbuf_lock);
1195
1196 if (seq < log_first_seq) {
1197 /* messages are gone, move to next one */
1198 seq = log_first_seq;
1199 idx = log_first_idx;
5becfb1d 1200 prev = 0;
7ff9554b
KS
1201 }
1202 }
1203 }
1204
1205 if (clear) {
1206 clear_seq = log_next_seq;
1207 clear_idx = log_next_idx;
1208 }
1209 raw_spin_unlock_irq(&logbuf_lock);
1210
1211 kfree(text);
1212 return len;
1213}
1214
00234592 1215int do_syslog(int type, char __user *buf, int len, bool from_file)
1da177e4 1216{
7ff9554b
KS
1217 bool clear = false;
1218 static int saved_console_loglevel = -1;
ee24aebf 1219 int error;
1da177e4 1220
ee24aebf
LT
1221 error = check_syslog_permissions(type, from_file);
1222 if (error)
1223 goto out;
12b3052c
EP
1224
1225 error = security_syslog(type);
1da177e4
LT
1226 if (error)
1227 return error;
1228
1229 switch (type) {
d78ca3cd 1230 case SYSLOG_ACTION_CLOSE: /* Close log */
1da177e4 1231 break;
d78ca3cd 1232 case SYSLOG_ACTION_OPEN: /* Open log */
1da177e4 1233 break;
d78ca3cd 1234 case SYSLOG_ACTION_READ: /* Read from log */
1da177e4
LT
1235 error = -EINVAL;
1236 if (!buf || len < 0)
1237 goto out;
1238 error = 0;
1239 if (!len)
1240 goto out;
1241 if (!access_ok(VERIFY_WRITE, buf, len)) {
1242 error = -EFAULT;
1243 goto out;
1244 }
40dc5651 1245 error = wait_event_interruptible(log_wait,
7ff9554b 1246 syslog_seq != log_next_seq);
cb424ffe 1247 if (error)
1da177e4 1248 goto out;
7ff9554b 1249 error = syslog_print(buf, len);
1da177e4 1250 break;
d78ca3cd
KC
1251 /* Read/clear last kernel messages */
1252 case SYSLOG_ACTION_READ_CLEAR:
7ff9554b 1253 clear = true;
1da177e4 1254 /* FALL THRU */
d78ca3cd
KC
1255 /* Read last kernel messages */
1256 case SYSLOG_ACTION_READ_ALL:
1da177e4
LT
1257 error = -EINVAL;
1258 if (!buf || len < 0)
1259 goto out;
1260 error = 0;
1261 if (!len)
1262 goto out;
1263 if (!access_ok(VERIFY_WRITE, buf, len)) {
1264 error = -EFAULT;
1265 goto out;
1266 }
7ff9554b 1267 error = syslog_print_all(buf, len, clear);
1da177e4 1268 break;
d78ca3cd
KC
1269 /* Clear ring buffer */
1270 case SYSLOG_ACTION_CLEAR:
7ff9554b 1271 syslog_print_all(NULL, 0, true);
4661e356 1272 break;
d78ca3cd
KC
1273 /* Disable logging to console */
1274 case SYSLOG_ACTION_CONSOLE_OFF:
1aaad49e
FP
1275 if (saved_console_loglevel == -1)
1276 saved_console_loglevel = console_loglevel;
1da177e4
LT
1277 console_loglevel = minimum_console_loglevel;
1278 break;
d78ca3cd
KC
1279 /* Enable logging to console */
1280 case SYSLOG_ACTION_CONSOLE_ON:
1aaad49e
FP
1281 if (saved_console_loglevel != -1) {
1282 console_loglevel = saved_console_loglevel;
1283 saved_console_loglevel = -1;
1284 }
1da177e4 1285 break;
d78ca3cd
KC
1286 /* Set level of messages printed to console */
1287 case SYSLOG_ACTION_CONSOLE_LEVEL:
1da177e4
LT
1288 error = -EINVAL;
1289 if (len < 1 || len > 8)
1290 goto out;
1291 if (len < minimum_console_loglevel)
1292 len = minimum_console_loglevel;
1293 console_loglevel = len;
1aaad49e
FP
1294 /* Implicitly re-enable logging to console */
1295 saved_console_loglevel = -1;
1da177e4
LT
1296 error = 0;
1297 break;
d78ca3cd
KC
1298 /* Number of chars in the log buffer */
1299 case SYSLOG_ACTION_SIZE_UNREAD:
7ff9554b
KS
1300 raw_spin_lock_irq(&logbuf_lock);
1301 if (syslog_seq < log_first_seq) {
1302 /* messages are gone, move to first one */
1303 syslog_seq = log_first_seq;
1304 syslog_idx = log_first_idx;
5becfb1d 1305 syslog_prev = 0;
eb02dac9 1306 syslog_partial = 0;
7ff9554b
KS
1307 }
1308 if (from_file) {
1309 /*
1310 * Short-cut for poll(/"proc/kmsg") which simply checks
1311 * for pending data, not the size; return the count of
1312 * records, not the length.
1313 */
1314 error = log_next_idx - syslog_idx;
1315 } else {
5becfb1d
KS
1316 u64 seq = syslog_seq;
1317 u32 idx = syslog_idx;
1318 enum log_flags prev = syslog_prev;
7ff9554b
KS
1319
1320 error = 0;
7ff9554b 1321 while (seq < log_next_seq) {
62e32ac3 1322 struct printk_log *msg = log_from_idx(idx);
3ce9a7c0 1323
5becfb1d 1324 error += msg_print_text(msg, prev, true, NULL, 0);
7ff9554b
KS
1325 idx = log_next(idx);
1326 seq++;
5becfb1d 1327 prev = msg->flags;
7ff9554b 1328 }
eb02dac9 1329 error -= syslog_partial;
7ff9554b
KS
1330 }
1331 raw_spin_unlock_irq(&logbuf_lock);
1da177e4 1332 break;
d78ca3cd
KC
1333 /* Size of the log buffer */
1334 case SYSLOG_ACTION_SIZE_BUFFER:
1da177e4
LT
1335 error = log_buf_len;
1336 break;
1337 default:
1338 error = -EINVAL;
1339 break;
1340 }
1341out:
1342 return error;
1343}
1344
1e7bfb21 1345SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
1da177e4 1346{
637241a9 1347 return do_syslog(type, buf, len, SYSLOG_FROM_READER);
1da177e4
LT
1348}
1349
1da177e4
LT
1350/*
1351 * Call the console drivers, asking them to write out
1352 * log_buf[start] to log_buf[end - 1].
ac751efa 1353 * The console_lock must be held.
1da177e4 1354 */
7ff9554b 1355static void call_console_drivers(int level, const char *text, size_t len)
1da177e4 1356{
7ff9554b 1357 struct console *con;
1da177e4 1358
07c65f4d 1359 trace_console(text, len);
7ff9554b
KS
1360
1361 if (level >= console_loglevel && !ignore_loglevel)
1362 return;
1363 if (!console_drivers)
1364 return;
1365
1366 for_each_console(con) {
1367 if (exclusive_console && con != exclusive_console)
1368 continue;
1369 if (!(con->flags & CON_ENABLED))
1370 continue;
1371 if (!con->write)
1372 continue;
1373 if (!cpu_online(smp_processor_id()) &&
1374 !(con->flags & CON_ANYTIME))
1375 continue;
1376 con->write(con, text, len);
1377 }
1da177e4
LT
1378}
1379
1380/*
1381 * Zap console related locks when oopsing. Only zap at most once
1382 * every 10 seconds, to leave time for slow consoles to print a
1383 * full oops.
1384 */
1385static void zap_locks(void)
1386{
1387 static unsigned long oops_timestamp;
1388
1389 if (time_after_eq(jiffies, oops_timestamp) &&
40dc5651 1390 !time_after(jiffies, oops_timestamp + 30 * HZ))
1da177e4
LT
1391 return;
1392
1393 oops_timestamp = jiffies;
1394
94d24fc4 1395 debug_locks_off();
1da177e4 1396 /* If a crash is occurring, make sure we can't deadlock */
07354eb1 1397 raw_spin_lock_init(&logbuf_lock);
1da177e4 1398 /* And make sure that we print immediately */
5b8c4f23 1399 sema_init(&console_sem, 1);
1da177e4
LT
1400}
1401
608873ca
JK
1402/*
1403 * Check if we have any console that is capable of printing while cpu is
1404 * booting or shutting down. Requires console_sem.
1405 */
76a8ad29
ME
1406static int have_callable_console(void)
1407{
1408 struct console *con;
1409
4d091611 1410 for_each_console(con)
76a8ad29
ME
1411 if (con->flags & CON_ANYTIME)
1412 return 1;
1413
1414 return 0;
1415}
1416
266c2e0a
LT
1417/*
1418 * Can we actually use the console at this time on this cpu?
1419 *
d18bbc21
AM
1420 * Console drivers may assume that per-cpu resources have
1421 * been allocated. So unless they're explicitly marked as
1422 * being able to cope (CON_ANYTIME) don't call them until
1423 * this CPU is officially up.
266c2e0a
LT
1424 */
1425static inline int can_use_console(unsigned int cpu)
1426{
1427 return cpu_online(cpu) || have_callable_console();
1428}
1429
1430/*
1431 * Try to get console ownership to actually show the kernel
1432 * messages from a 'printk'. Return true (and with the
ac751efa 1433 * console_lock held, and 'console_locked' set) if it
266c2e0a 1434 * is successful, false otherwise.
266c2e0a 1435 */
d18bbc21 1436static int console_trylock_for_printk(unsigned int cpu)
266c2e0a 1437{
608873ca
JK
1438 if (!console_trylock())
1439 return 0;
1440 /*
1441 * If we can't use the console, we need to release the console
1442 * semaphore by hand to avoid flushing the buffer. We need to hold the
1443 * console semaphore in order to do this test safely.
1444 */
1445 if (!can_use_console(cpu)) {
1446 console_locked = 0;
bd8d7cf5 1447 up_console_sem();
608873ca
JK
1448 return 0;
1449 }
1450 return 1;
266c2e0a 1451}
32a76006 1452
af91322e
DY
1453int printk_delay_msec __read_mostly;
1454
1455static inline void printk_delay(void)
1456{
1457 if (unlikely(printk_delay_msec)) {
1458 int m = printk_delay_msec;
1459
1460 while (m--) {
1461 mdelay(1);
1462 touch_nmi_watchdog();
1463 }
1464 }
1465}
1466
084681d1
KS
1467/*
1468 * Continuation lines are buffered, and not committed to the record buffer
1469 * until the line is complete, or a race forces it. The line fragments
1470 * though, are printed immediately to the consoles to ensure everything has
1471 * reached the console in case of a kernel crash.
1472 */
1473static struct cont {
1474 char buf[LOG_LINE_MAX];
1475 size_t len; /* length == 0 means unused buffer */
1476 size_t cons; /* bytes written to console */
1477 struct task_struct *owner; /* task of first print*/
1478 u64 ts_nsec; /* time of first print */
1479 u8 level; /* log level of first message */
1480 u8 facility; /* log level of first message */
eab07260 1481 enum log_flags flags; /* prefix, newline flags */
084681d1
KS
1482 bool flushed:1; /* buffer sealed and committed */
1483} cont;
1484
70498253 1485static void cont_flush(enum log_flags flags)
084681d1
KS
1486{
1487 if (cont.flushed)
1488 return;
1489 if (cont.len == 0)
1490 return;
1491
eab07260
KS
1492 if (cont.cons) {
1493 /*
1494 * If a fragment of this line was directly flushed to the
1495 * console; wait for the console to pick up the rest of the
1496 * line. LOG_NOCONS suppresses a duplicated output.
1497 */
1498 log_store(cont.facility, cont.level, flags | LOG_NOCONS,
1499 cont.ts_nsec, NULL, 0, cont.buf, cont.len);
1500 cont.flags = flags;
1501 cont.flushed = true;
1502 } else {
1503 /*
1504 * If no fragment of this line ever reached the console,
1505 * just submit it to the store and free the buffer.
1506 */
1507 log_store(cont.facility, cont.level, flags, 0,
1508 NULL, 0, cont.buf, cont.len);
1509 cont.len = 0;
1510 }
084681d1
KS
1511}
1512
1513static bool cont_add(int facility, int level, const char *text, size_t len)
1514{
1515 if (cont.len && cont.flushed)
1516 return false;
1517
1518 if (cont.len + len > sizeof(cont.buf)) {
70498253
KS
1519 /* the line gets too long, split it up in separate records */
1520 cont_flush(LOG_CONT);
084681d1
KS
1521 return false;
1522 }
1523
1524 if (!cont.len) {
1525 cont.facility = facility;
1526 cont.level = level;
1527 cont.owner = current;
1528 cont.ts_nsec = local_clock();
eab07260 1529 cont.flags = 0;
084681d1
KS
1530 cont.cons = 0;
1531 cont.flushed = false;
1532 }
1533
1534 memcpy(cont.buf + cont.len, text, len);
1535 cont.len += len;
eab07260
KS
1536
1537 if (cont.len > (sizeof(cont.buf) * 80) / 100)
1538 cont_flush(LOG_CONT);
1539
084681d1
KS
1540 return true;
1541}
1542
1543static size_t cont_print_text(char *text, size_t size)
1544{
1545 size_t textlen = 0;
1546 size_t len;
1547
eab07260 1548 if (cont.cons == 0 && (console_prev & LOG_NEWLINE)) {
084681d1
KS
1549 textlen += print_time(cont.ts_nsec, text);
1550 size -= textlen;
1551 }
1552
1553 len = cont.len - cont.cons;
1554 if (len > 0) {
1555 if (len+1 > size)
1556 len = size-1;
1557 memcpy(text + textlen, cont.buf + cont.cons, len);
1558 textlen += len;
1559 cont.cons = cont.len;
1560 }
1561
1562 if (cont.flushed) {
eab07260
KS
1563 if (cont.flags & LOG_NEWLINE)
1564 text[textlen++] = '\n';
084681d1
KS
1565 /* got everything, release buffer */
1566 cont.len = 0;
1567 }
1568 return textlen;
1569}
1570
7ff9554b
KS
1571asmlinkage int vprintk_emit(int facility, int level,
1572 const char *dict, size_t dictlen,
1573 const char *fmt, va_list args)
1da177e4 1574{
7ff9554b 1575 static int recursion_bug;
7ff9554b
KS
1576 static char textbuf[LOG_LINE_MAX];
1577 char *text = textbuf;
458df9fd 1578 size_t text_len = 0;
5becfb1d 1579 enum log_flags lflags = 0;
ac60ad74 1580 unsigned long flags;
32a76006 1581 int this_cpu;
7ff9554b 1582 int printed_len = 0;
458df9fd 1583 bool in_sched = false;
608873ca
JK
1584 /* cpu currently holding logbuf_lock in this function */
1585 static volatile unsigned int logbuf_cpu = UINT_MAX;
1586
458df9fd
SR
1587 if (level == SCHED_MESSAGE_LOGLEVEL) {
1588 level = -1;
1589 in_sched = true;
1590 }
1da177e4 1591
2fa72c8f 1592 boot_delay_msec(level);
af91322e 1593 printk_delay();
bfe8df3d 1594
1da177e4 1595 /* This stops the holder of console_sem just where we want him */
1a9a8aef 1596 local_irq_save(flags);
32a76006
IM
1597 this_cpu = smp_processor_id();
1598
1599 /*
1600 * Ouch, printk recursed into itself!
1601 */
7ff9554b 1602 if (unlikely(logbuf_cpu == this_cpu)) {
32a76006
IM
1603 /*
1604 * If a crash is occurring during printk() on this CPU,
1605 * then try to get the crash message out but make sure
1606 * we can't deadlock. Otherwise just return to avoid the
1607 * recursion and return - but flag the recursion so that
1608 * it can be printed at the next appropriate moment:
1609 */
94d24fc4 1610 if (!oops_in_progress && !lockdep_recursing(current)) {
3b8945e8 1611 recursion_bug = 1;
d18bbc21 1612 goto out_restore_irqs;
32a76006
IM
1613 }
1614 zap_locks();
1615 }
1616
a0f1ccfd 1617 lockdep_off();
07354eb1 1618 raw_spin_lock(&logbuf_lock);
7ff9554b 1619 logbuf_cpu = this_cpu;
1da177e4 1620
3b8945e8 1621 if (recursion_bug) {
7ff9554b
KS
1622 static const char recursion_msg[] =
1623 "BUG: recent printk recursion!";
1624
3b8945e8 1625 recursion_bug = 0;
034633cc 1626 text_len = strlen(recursion_msg);
7ff9554b 1627 /* emit KERN_CRIT message */
034633cc
PM
1628 printed_len += log_store(0, 2, LOG_PREFIX|LOG_NEWLINE, 0,
1629 NULL, 0, recursion_msg, text_len);
32a76006 1630 }
1da177e4 1631
7ff9554b
KS
1632 /*
1633 * The printf needs to come first; we need the syslog
1634 * prefix which might be passed-in as a parameter.
1635 */
458df9fd
SR
1636 if (in_sched)
1637 text_len = scnprintf(text, sizeof(textbuf),
1638 KERN_WARNING "[sched_delayed] ");
1639
1640 text_len += vscnprintf(text + text_len,
1641 sizeof(textbuf) - text_len, fmt, args);
5fd29d6c 1642
7ff9554b 1643 /* mark and strip a trailing newline */
c313af14
KS
1644 if (text_len && text[text_len-1] == '\n') {
1645 text_len--;
5becfb1d 1646 lflags |= LOG_NEWLINE;
7ff9554b 1647 }
9d90c8d9 1648
088a52aa
JP
1649 /* strip kernel syslog prefix and extract log level or control flags */
1650 if (facility == 0) {
1651 int kern_level = printk_get_level(text);
1652
1653 if (kern_level) {
1654 const char *end_of_header = printk_skip_level(text);
1655 switch (kern_level) {
1656 case '0' ... '7':
1657 if (level == -1)
1658 level = kern_level - '0';
1659 case 'd': /* KERN_DEFAULT */
1660 lflags |= LOG_PREFIX;
088a52aa 1661 }
e8c42d36
PM
1662 /*
1663 * No need to check length here because vscnprintf
1664 * put '\0' at the end of the string. Only valid and
1665 * newly printed level is detected.
1666 */
088a52aa
JP
1667 text_len -= end_of_header - text;
1668 text = (char *)end_of_header;
5fd29d6c
LT
1669 }
1670 }
1671
c313af14
KS
1672 if (level == -1)
1673 level = default_message_loglevel;
9d90c8d9 1674
5becfb1d
KS
1675 if (dict)
1676 lflags |= LOG_PREFIX|LOG_NEWLINE;
ac60ad74 1677
5becfb1d 1678 if (!(lflags & LOG_NEWLINE)) {
084681d1
KS
1679 /*
1680 * Flush the conflicting buffer. An earlier newline was missing,
1681 * or another task also prints continuation lines.
1682 */
5becfb1d 1683 if (cont.len && (lflags & LOG_PREFIX || cont.owner != current))
eab07260 1684 cont_flush(LOG_NEWLINE);
c313af14 1685
084681d1 1686 /* buffer line if possible, otherwise store it right away */
034633cc
PM
1687 if (cont_add(facility, level, text, text_len))
1688 printed_len += text_len;
1689 else
1690 printed_len += log_store(facility, level,
1691 lflags | LOG_CONT, 0,
1692 dict, dictlen, text, text_len);
5c5d5ca5 1693 } else {
084681d1 1694 bool stored = false;
c313af14 1695
084681d1 1696 /*
d3620822
SR
1697 * If an earlier newline was missing and it was the same task,
1698 * either merge it with the current buffer and flush, or if
1699 * there was a race with interrupts (prefix == true) then just
1700 * flush it out and store this line separately.
1d3fa370
AK
1701 * If the preceding printk was from a different task and missed
1702 * a newline, flush and append the newline.
084681d1 1703 */
1d3fa370
AK
1704 if (cont.len) {
1705 if (cont.owner == current && !(lflags & LOG_PREFIX))
1706 stored = cont_add(facility, level, text,
1707 text_len);
eab07260 1708 cont_flush(LOG_NEWLINE);
c313af14 1709 }
084681d1 1710
034633cc
PM
1711 if (stored)
1712 printed_len += text_len;
1713 else
1714 printed_len += log_store(facility, level, lflags, 0,
1715 dict, dictlen, text, text_len);
1da177e4
LT
1716 }
1717
608873ca
JK
1718 logbuf_cpu = UINT_MAX;
1719 raw_spin_unlock(&logbuf_lock);
939f04be 1720
458df9fd 1721 /* If called from the scheduler, we can not call up(). */
d18bbc21
AM
1722 if (!in_sched) {
1723 /*
1724 * Try to acquire and then immediately release the console
1725 * semaphore. The release will print out buffers and wake up
1726 * /dev/kmsg and syslog() users.
1727 */
1728 if (console_trylock_for_printk(this_cpu))
1729 console_unlock();
1730 }
76a8ad29 1731
d18bbc21
AM
1732 lockdep_on();
1733out_restore_irqs:
1734 local_irq_restore(flags);
1da177e4
LT
1735 return printed_len;
1736}
7ff9554b
KS
1737EXPORT_SYMBOL(vprintk_emit);
1738
1739asmlinkage int vprintk(const char *fmt, va_list args)
1740{
1741 return vprintk_emit(0, -1, NULL, 0, fmt, args);
1742}
1da177e4
LT
1743EXPORT_SYMBOL(vprintk);
1744
7ff9554b
KS
1745asmlinkage int printk_emit(int facility, int level,
1746 const char *dict, size_t dictlen,
1747 const char *fmt, ...)
1748{
1749 va_list args;
1750 int r;
1751
1752 va_start(args, fmt);
1753 r = vprintk_emit(facility, level, dict, dictlen, fmt, args);
1754 va_end(args);
1755
1756 return r;
1757}
1758EXPORT_SYMBOL(printk_emit);
1759
1760/**
1761 * printk - print a kernel message
1762 * @fmt: format string
1763 *
1764 * This is printk(). It can be called from any context. We want it to work.
1765 *
1766 * We try to grab the console_lock. If we succeed, it's easy - we log the
1767 * output and call the console drivers. If we fail to get the semaphore, we
1768 * place the output into the log buffer and return. The current holder of
1769 * the console_sem will notice the new output in console_unlock(); and will
1770 * send it to the consoles before releasing the lock.
1771 *
1772 * One effect of this deferred printing is that code which calls printk() and
1773 * then changes console_loglevel may break. This is because console_loglevel
1774 * is inspected when the actual printing occurs.
1775 *
1776 * See also:
1777 * printf(3)
1778 *
1779 * See the vsnprintf() documentation for format string extensions over C99.
1780 */
722a9f92 1781asmlinkage __visible int printk(const char *fmt, ...)
7ff9554b
KS
1782{
1783 va_list args;
1784 int r;
1785
1786#ifdef CONFIG_KGDB_KDB
1787 if (unlikely(kdb_trap_printk)) {
1788 va_start(args, fmt);
1789 r = vkdb_printf(fmt, args);
1790 va_end(args);
1791 return r;
1792 }
1793#endif
1794 va_start(args, fmt);
1795 r = vprintk_emit(0, -1, NULL, 0, fmt, args);
1796 va_end(args);
1797
1798 return r;
1799}
1800EXPORT_SYMBOL(printk);
7f3a781d 1801
96efedf1 1802#else /* CONFIG_PRINTK */
d59745ce 1803
70498253
KS
1804#define LOG_LINE_MAX 0
1805#define PREFIX_MAX 0
7f3a781d 1806#define LOG_LINE_MAX 0
96efedf1
KS
1807static u64 syslog_seq;
1808static u32 syslog_idx;
eab07260
KS
1809static u64 console_seq;
1810static u32 console_idx;
96efedf1
KS
1811static enum log_flags syslog_prev;
1812static u64 log_first_seq;
1813static u32 log_first_idx;
1814static u64 log_next_seq;
eab07260 1815static enum log_flags console_prev;
084681d1
KS
1816static struct cont {
1817 size_t len;
1818 size_t cons;
1819 u8 level;
1820 bool flushed:1;
1821} cont;
62e32ac3 1822static struct printk_log *log_from_idx(u32 idx) { return NULL; }
7f3a781d 1823static u32 log_next(u32 idx) { return 0; }
7f3a781d 1824static void call_console_drivers(int level, const char *text, size_t len) {}
62e32ac3 1825static size_t msg_print_text(const struct printk_log *msg, enum log_flags prev,
5becfb1d 1826 bool syslog, char *buf, size_t size) { return 0; }
084681d1 1827static size_t cont_print_text(char *text, size_t size) { return 0; }
d59745ce 1828
7f3a781d 1829#endif /* CONFIG_PRINTK */
d59745ce 1830
d0380e6c
TG
1831#ifdef CONFIG_EARLY_PRINTK
1832struct console *early_console;
1833
1834void early_vprintk(const char *fmt, va_list ap)
1835{
1836 if (early_console) {
1837 char buf[512];
1838 int n = vscnprintf(buf, sizeof(buf), fmt, ap);
1839
1840 early_console->write(early_console, buf, n);
1841 }
1842}
1843
722a9f92 1844asmlinkage __visible void early_printk(const char *fmt, ...)
d0380e6c
TG
1845{
1846 va_list ap;
1847
1848 va_start(ap, fmt);
1849 early_vprintk(fmt, ap);
1850 va_end(ap);
1851}
1852#endif
1853
f7511d5f
ST
1854static int __add_preferred_console(char *name, int idx, char *options,
1855 char *brl_options)
1856{
1857 struct console_cmdline *c;
1858 int i;
1859
1860 /*
1861 * See if this tty is not yet registered, and
1862 * if we have a slot free.
1863 */
23475408
JP
1864 for (i = 0, c = console_cmdline;
1865 i < MAX_CMDLINECONSOLES && c->name[0];
1866 i++, c++) {
1867 if (strcmp(c->name, name) == 0 && c->index == idx) {
1868 if (!brl_options)
1869 selected_console = i;
1870 return 0;
f7511d5f 1871 }
23475408 1872 }
f7511d5f
ST
1873 if (i == MAX_CMDLINECONSOLES)
1874 return -E2BIG;
1875 if (!brl_options)
1876 selected_console = i;
f7511d5f
ST
1877 strlcpy(c->name, name, sizeof(c->name));
1878 c->options = options;
bbeddf52
JP
1879 braille_set_options(c, brl_options);
1880
f7511d5f
ST
1881 c->index = idx;
1882 return 0;
1883}
2ea1c539
JB
1884/*
1885 * Set up a list of consoles. Called from init/main.c
1886 */
1887static int __init console_setup(char *str)
1888{
eaa944af 1889 char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for index */
f7511d5f 1890 char *s, *options, *brl_options = NULL;
2ea1c539
JB
1891 int idx;
1892
bbeddf52
JP
1893 if (_braille_console_setup(&str, &brl_options))
1894 return 1;
f7511d5f 1895
2ea1c539
JB
1896 /*
1897 * Decode str into name, index, options.
1898 */
1899 if (str[0] >= '0' && str[0] <= '9') {
eaa944af
YL
1900 strcpy(buf, "ttyS");
1901 strncpy(buf + 4, str, sizeof(buf) - 5);
2ea1c539 1902 } else {
eaa944af 1903 strncpy(buf, str, sizeof(buf) - 1);
2ea1c539 1904 }
eaa944af 1905 buf[sizeof(buf) - 1] = 0;
2ea1c539
JB
1906 if ((options = strchr(str, ',')) != NULL)
1907 *(options++) = 0;
1908#ifdef __sparc__
1909 if (!strcmp(str, "ttya"))
eaa944af 1910 strcpy(buf, "ttyS0");
2ea1c539 1911 if (!strcmp(str, "ttyb"))
eaa944af 1912 strcpy(buf, "ttyS1");
2ea1c539 1913#endif
eaa944af 1914 for (s = buf; *s; s++)
2ea1c539
JB
1915 if ((*s >= '0' && *s <= '9') || *s == ',')
1916 break;
1917 idx = simple_strtoul(s, NULL, 10);
1918 *s = 0;
1919
f7511d5f 1920 __add_preferred_console(buf, idx, options, brl_options);
9e124fe1 1921 console_set_on_cmdline = 1;
2ea1c539
JB
1922 return 1;
1923}
1924__setup("console=", console_setup);
1925
3c0547ba
MM
1926/**
1927 * add_preferred_console - add a device to the list of preferred consoles.
ddad86c2
MW
1928 * @name: device name
1929 * @idx: device index
1930 * @options: options for this console
3c0547ba
MM
1931 *
1932 * The last preferred console added will be used for kernel messages
1933 * and stdin/out/err for init. Normally this is used by console_setup
1934 * above to handle user-supplied console arguments; however it can also
1935 * be used by arch-specific code either to override the user or more
1936 * commonly to provide a default console (ie from PROM variables) when
1937 * the user has not supplied one.
1938 */
fb445ee5 1939int add_preferred_console(char *name, int idx, char *options)
3c0547ba 1940{
f7511d5f 1941 return __add_preferred_console(name, idx, options, NULL);
3c0547ba
MM
1942}
1943
b6b1d877 1944int update_console_cmdline(char *name, int idx, char *name_new, int idx_new, char *options)
18a8bd94
YL
1945{
1946 struct console_cmdline *c;
1947 int i;
1948
23475408
JP
1949 for (i = 0, c = console_cmdline;
1950 i < MAX_CMDLINECONSOLES && c->name[0];
1951 i++, c++)
1952 if (strcmp(c->name, name) == 0 && c->index == idx) {
1953 strlcpy(c->name, name_new, sizeof(c->name));
1954 c->name[sizeof(c->name) - 1] = 0;
1955 c->options = options;
1956 c->index = idx_new;
1957 return i;
18a8bd94
YL
1958 }
1959 /* not found */
1960 return -1;
1961}
1962
2329abfa 1963bool console_suspend_enabled = 1;
8f4ce8c3
AS
1964EXPORT_SYMBOL(console_suspend_enabled);
1965
1966static int __init console_suspend_disable(char *str)
1967{
1968 console_suspend_enabled = 0;
1969 return 1;
1970}
1971__setup("no_console_suspend", console_suspend_disable);
134620f7
YZ
1972module_param_named(console_suspend, console_suspend_enabled,
1973 bool, S_IRUGO | S_IWUSR);
1974MODULE_PARM_DESC(console_suspend, "suspend console during suspend"
1975 " and hibernate operations");
8f4ce8c3 1976
557240b4
LT
1977/**
1978 * suspend_console - suspend the console subsystem
1979 *
1980 * This disables printk() while we go into suspend states
1981 */
1982void suspend_console(void)
1983{
8f4ce8c3
AS
1984 if (!console_suspend_enabled)
1985 return;
0d63081d 1986 printk("Suspending console(s) (use no_console_suspend to debug)\n");
ac751efa 1987 console_lock();
557240b4 1988 console_suspended = 1;
bd8d7cf5 1989 up_console_sem();
557240b4
LT
1990}
1991
1992void resume_console(void)
1993{
8f4ce8c3
AS
1994 if (!console_suspend_enabled)
1995 return;
bd8d7cf5 1996 down_console_sem();
557240b4 1997 console_suspended = 0;
ac751efa 1998 console_unlock();
557240b4
LT
1999}
2000
034260d6
KC
2001/**
2002 * console_cpu_notify - print deferred console messages after CPU hotplug
2003 * @self: notifier struct
2004 * @action: CPU hotplug event
2005 * @hcpu: unused
2006 *
2007 * If printk() is called from a CPU that is not online yet, the messages
2008 * will be spooled but will not show up on the console. This function is
2009 * called when a new CPU comes online (or fails to come up), and ensures
2010 * that any such output gets printed.
2011 */
0db0628d 2012static int console_cpu_notify(struct notifier_block *self,
034260d6
KC
2013 unsigned long action, void *hcpu)
2014{
2015 switch (action) {
2016 case CPU_ONLINE:
2017 case CPU_DEAD:
034260d6
KC
2018 case CPU_DOWN_FAILED:
2019 case CPU_UP_CANCELED:
ac751efa
TH
2020 console_lock();
2021 console_unlock();
034260d6
KC
2022 }
2023 return NOTIFY_OK;
2024}
2025
1da177e4 2026/**
ac751efa 2027 * console_lock - lock the console system for exclusive use.
1da177e4 2028 *
ac751efa 2029 * Acquires a lock which guarantees that the caller has
1da177e4
LT
2030 * exclusive access to the console system and the console_drivers list.
2031 *
2032 * Can sleep, returns nothing.
2033 */
ac751efa 2034void console_lock(void)
1da177e4 2035{
6b898c07
DV
2036 might_sleep();
2037
bd8d7cf5 2038 down_console_sem();
403f3075
AH
2039 if (console_suspended)
2040 return;
1da177e4
LT
2041 console_locked = 1;
2042 console_may_schedule = 1;
2043}
ac751efa 2044EXPORT_SYMBOL(console_lock);
1da177e4 2045
ac751efa
TH
2046/**
2047 * console_trylock - try to lock the console system for exclusive use.
2048 *
2049 * Tried to acquire a lock which guarantees that the caller has
2050 * exclusive access to the console system and the console_drivers list.
2051 *
2052 * returns 1 on success, and 0 on failure to acquire the lock.
2053 */
2054int console_trylock(void)
1da177e4 2055{
bd8d7cf5 2056 if (down_trylock_console_sem())
ac751efa 2057 return 0;
403f3075 2058 if (console_suspended) {
bd8d7cf5 2059 up_console_sem();
ac751efa 2060 return 0;
403f3075 2061 }
1da177e4
LT
2062 console_locked = 1;
2063 console_may_schedule = 0;
ac751efa 2064 return 1;
1da177e4 2065}
ac751efa 2066EXPORT_SYMBOL(console_trylock);
1da177e4
LT
2067
2068int is_console_locked(void)
2069{
2070 return console_locked;
2071}
1da177e4 2072
eab07260
KS
2073static void console_cont_flush(char *text, size_t size)
2074{
2075 unsigned long flags;
2076 size_t len;
2077
2078 raw_spin_lock_irqsave(&logbuf_lock, flags);
2079
2080 if (!cont.len)
2081 goto out;
2082
2083 /*
2084 * We still queue earlier records, likely because the console was
2085 * busy. The earlier ones need to be printed before this one, we
2086 * did not flush any fragment so far, so just let it queue up.
2087 */
2088 if (console_seq < log_next_seq && !cont.cons)
2089 goto out;
2090
2091 len = cont_print_text(text, size);
2092 raw_spin_unlock(&logbuf_lock);
2093 stop_critical_timings();
2094 call_console_drivers(cont.level, text, len);
2095 start_critical_timings();
2096 local_irq_restore(flags);
2097 return;
2098out:
2099 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2100}
7ff9554b 2101
1da177e4 2102/**
ac751efa 2103 * console_unlock - unlock the console system
1da177e4 2104 *
ac751efa 2105 * Releases the console_lock which the caller holds on the console system
1da177e4
LT
2106 * and the console driver list.
2107 *
ac751efa
TH
2108 * While the console_lock was held, console output may have been buffered
2109 * by printk(). If this is the case, console_unlock(); emits
2110 * the output prior to releasing the lock.
1da177e4 2111 *
7f3a781d 2112 * If there is output waiting, we wake /dev/kmsg and syslog() users.
1da177e4 2113 *
ac751efa 2114 * console_unlock(); may be called from any context.
1da177e4 2115 */
ac751efa 2116void console_unlock(void)
1da177e4 2117{
70498253 2118 static char text[LOG_LINE_MAX + PREFIX_MAX];
7ff9554b 2119 static u64 seen_seq;
1da177e4 2120 unsigned long flags;
7ff9554b
KS
2121 bool wake_klogd = false;
2122 bool retry;
1da177e4 2123
557240b4 2124 if (console_suspended) {
bd8d7cf5 2125 up_console_sem();
557240b4
LT
2126 return;
2127 }
78944e54
AD
2128
2129 console_may_schedule = 0;
2130
084681d1 2131 /* flush buffered message fragment immediately to console */
eab07260 2132 console_cont_flush(text, sizeof(text));
4f2a8d3c 2133again:
7ff9554b 2134 for (;;) {
62e32ac3 2135 struct printk_log *msg;
3ce9a7c0 2136 size_t len;
7ff9554b
KS
2137 int level;
2138
07354eb1 2139 raw_spin_lock_irqsave(&logbuf_lock, flags);
7ff9554b
KS
2140 if (seen_seq != log_next_seq) {
2141 wake_klogd = true;
2142 seen_seq = log_next_seq;
2143 }
2144
2145 if (console_seq < log_first_seq) {
84b5ec8a
WD
2146 len = sprintf(text, "** %u printk messages dropped ** ",
2147 (unsigned)(log_first_seq - console_seq));
2148
7ff9554b
KS
2149 /* messages are gone, move to first one */
2150 console_seq = log_first_seq;
2151 console_idx = log_first_idx;
5becfb1d 2152 console_prev = 0;
84b5ec8a
WD
2153 } else {
2154 len = 0;
7ff9554b 2155 }
084681d1 2156skip:
7ff9554b
KS
2157 if (console_seq == log_next_seq)
2158 break;
2159
2160 msg = log_from_idx(console_idx);
084681d1
KS
2161 if (msg->flags & LOG_NOCONS) {
2162 /*
2163 * Skip record we have buffered and already printed
2164 * directly to the console when we received it.
2165 */
2166 console_idx = log_next(console_idx);
2167 console_seq++;
68b6507d
KS
2168 /*
2169 * We will get here again when we register a new
2170 * CON_PRINTBUFFER console. Clear the flag so we
2171 * will properly dump everything later.
2172 */
2173 msg->flags &= ~LOG_NOCONS;
eab07260 2174 console_prev = msg->flags;
084681d1
KS
2175 goto skip;
2176 }
649e6ee3 2177
084681d1 2178 level = msg->level;
84b5ec8a
WD
2179 len += msg_print_text(msg, console_prev, false,
2180 text + len, sizeof(text) - len);
7ff9554b
KS
2181 console_idx = log_next(console_idx);
2182 console_seq++;
5becfb1d 2183 console_prev = msg->flags;
07354eb1 2184 raw_spin_unlock(&logbuf_lock);
7ff9554b 2185
81d68a96 2186 stop_critical_timings(); /* don't trace print latency */
7ff9554b 2187 call_console_drivers(level, text, len);
81d68a96 2188 start_critical_timings();
1da177e4
LT
2189 local_irq_restore(flags);
2190 }
2191 console_locked = 0;
fe3d8ad3
FT
2192
2193 /* Release the exclusive_console once it is used */
2194 if (unlikely(exclusive_console))
2195 exclusive_console = NULL;
2196
07354eb1 2197 raw_spin_unlock(&logbuf_lock);
4f2a8d3c 2198
bd8d7cf5 2199 up_console_sem();
4f2a8d3c
PZ
2200
2201 /*
2202 * Someone could have filled up the buffer again, so re-check if there's
2203 * something to flush. In case we cannot trylock the console_sem again,
2204 * there's a new owner and the console_unlock() from them will do the
2205 * flush, no worries.
2206 */
07354eb1 2207 raw_spin_lock(&logbuf_lock);
7ff9554b 2208 retry = console_seq != log_next_seq;
09dc3cf9
PZ
2209 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2210
4f2a8d3c
PZ
2211 if (retry && console_trylock())
2212 goto again;
2213
e3e8a75d
KK
2214 if (wake_klogd)
2215 wake_up_klogd();
1da177e4 2216}
ac751efa 2217EXPORT_SYMBOL(console_unlock);
1da177e4 2218
ddad86c2
MW
2219/**
2220 * console_conditional_schedule - yield the CPU if required
1da177e4
LT
2221 *
2222 * If the console code is currently allowed to sleep, and
2223 * if this CPU should yield the CPU to another task, do
2224 * so here.
2225 *
ac751efa 2226 * Must be called within console_lock();.
1da177e4
LT
2227 */
2228void __sched console_conditional_schedule(void)
2229{
2230 if (console_may_schedule)
2231 cond_resched();
2232}
2233EXPORT_SYMBOL(console_conditional_schedule);
2234
1da177e4
LT
2235void console_unblank(void)
2236{
2237 struct console *c;
2238
2239 /*
2240 * console_unblank can no longer be called in interrupt context unless
2241 * oops_in_progress is set to 1..
2242 */
2243 if (oops_in_progress) {
bd8d7cf5 2244 if (down_trylock_console_sem() != 0)
1da177e4
LT
2245 return;
2246 } else
ac751efa 2247 console_lock();
1da177e4
LT
2248
2249 console_locked = 1;
2250 console_may_schedule = 0;
4d091611 2251 for_each_console(c)
1da177e4
LT
2252 if ((c->flags & CON_ENABLED) && c->unblank)
2253 c->unblank();
ac751efa 2254 console_unlock();
1da177e4 2255}
1da177e4
LT
2256
2257/*
2258 * Return the console tty driver structure and its associated index
2259 */
2260struct tty_driver *console_device(int *index)
2261{
2262 struct console *c;
2263 struct tty_driver *driver = NULL;
2264
ac751efa 2265 console_lock();
4d091611 2266 for_each_console(c) {
1da177e4
LT
2267 if (!c->device)
2268 continue;
2269 driver = c->device(c, index);
2270 if (driver)
2271 break;
2272 }
ac751efa 2273 console_unlock();
1da177e4
LT
2274 return driver;
2275}
2276
2277/*
2278 * Prevent further output on the passed console device so that (for example)
2279 * serial drivers can disable console output before suspending a port, and can
2280 * re-enable output afterwards.
2281 */
2282void console_stop(struct console *console)
2283{
ac751efa 2284 console_lock();
1da177e4 2285 console->flags &= ~CON_ENABLED;
ac751efa 2286 console_unlock();
1da177e4
LT
2287}
2288EXPORT_SYMBOL(console_stop);
2289
2290void console_start(struct console *console)
2291{
ac751efa 2292 console_lock();
1da177e4 2293 console->flags |= CON_ENABLED;
ac751efa 2294 console_unlock();
1da177e4
LT
2295}
2296EXPORT_SYMBOL(console_start);
2297
7bf69395
FDN
2298static int __read_mostly keep_bootcon;
2299
2300static int __init keep_bootcon_setup(char *str)
2301{
2302 keep_bootcon = 1;
27083bac 2303 pr_info("debug: skip boot console de-registration.\n");
7bf69395
FDN
2304
2305 return 0;
2306}
2307
2308early_param("keep_bootcon", keep_bootcon_setup);
2309
1da177e4
LT
2310/*
2311 * The console driver calls this routine during kernel initialization
2312 * to register the console printing procedure with printk() and to
2313 * print any messages that were printed by the kernel before the
2314 * console driver was initialized.
4d091611
RG
2315 *
2316 * This can happen pretty early during the boot process (because of
2317 * early_printk) - sometimes before setup_arch() completes - be careful
2318 * of what kernel features are used - they may not be initialised yet.
2319 *
2320 * There are two types of consoles - bootconsoles (early_printk) and
2321 * "real" consoles (everything which is not a bootconsole) which are
2322 * handled differently.
2323 * - Any number of bootconsoles can be registered at any time.
2324 * - As soon as a "real" console is registered, all bootconsoles
2325 * will be unregistered automatically.
2326 * - Once a "real" console is registered, any attempt to register a
2327 * bootconsoles will be rejected
1da177e4 2328 */
4d091611 2329void register_console(struct console *newcon)
1da177e4 2330{
40dc5651 2331 int i;
1da177e4 2332 unsigned long flags;
4d091611 2333 struct console *bcon = NULL;
23475408 2334 struct console_cmdline *c;
1da177e4 2335
16cf48a6
AB
2336 if (console_drivers)
2337 for_each_console(bcon)
2338 if (WARN(bcon == newcon,
2339 "console '%s%d' already registered\n",
2340 bcon->name, bcon->index))
2341 return;
2342
4d091611
RG
2343 /*
2344 * before we register a new CON_BOOT console, make sure we don't
2345 * already have a valid console
2346 */
2347 if (console_drivers && newcon->flags & CON_BOOT) {
2348 /* find the last or real console */
2349 for_each_console(bcon) {
2350 if (!(bcon->flags & CON_BOOT)) {
27083bac 2351 pr_info("Too late to register bootconsole %s%d\n",
4d091611
RG
2352 newcon->name, newcon->index);
2353 return;
2354 }
2355 }
69331af7
GH
2356 }
2357
4d091611
RG
2358 if (console_drivers && console_drivers->flags & CON_BOOT)
2359 bcon = console_drivers;
2360
2361 if (preferred_console < 0 || bcon || !console_drivers)
1da177e4
LT
2362 preferred_console = selected_console;
2363
4d091611
RG
2364 if (newcon->early_setup)
2365 newcon->early_setup();
18a8bd94 2366
1da177e4
LT
2367 /*
2368 * See if we want to use this console driver. If we
2369 * didn't select a console we take the first one
2370 * that registers here.
2371 */
2372 if (preferred_console < 0) {
4d091611
RG
2373 if (newcon->index < 0)
2374 newcon->index = 0;
2375 if (newcon->setup == NULL ||
2376 newcon->setup(newcon, NULL) == 0) {
2377 newcon->flags |= CON_ENABLED;
2378 if (newcon->device) {
2379 newcon->flags |= CON_CONSDEV;
cd3a1b85
JK
2380 preferred_console = 0;
2381 }
1da177e4
LT
2382 }
2383 }
2384
2385 /*
2386 * See if this console matches one we selected on
2387 * the command line.
2388 */
23475408
JP
2389 for (i = 0, c = console_cmdline;
2390 i < MAX_CMDLINECONSOLES && c->name[0];
2391 i++, c++) {
2392 if (strcmp(c->name, newcon->name) != 0)
1da177e4 2393 continue;
4d091611 2394 if (newcon->index >= 0 &&
23475408 2395 newcon->index != c->index)
1da177e4 2396 continue;
4d091611 2397 if (newcon->index < 0)
23475408 2398 newcon->index = c->index;
bbeddf52 2399
23475408 2400 if (_braille_register_console(newcon, c))
f7511d5f 2401 return;
bbeddf52 2402
4d091611
RG
2403 if (newcon->setup &&
2404 newcon->setup(newcon, console_cmdline[i].options) != 0)
1da177e4 2405 break;
4d091611 2406 newcon->flags |= CON_ENABLED;
23475408 2407 newcon->index = c->index;
ab4af03a 2408 if (i == selected_console) {
4d091611 2409 newcon->flags |= CON_CONSDEV;
ab4af03a
GE
2410 preferred_console = selected_console;
2411 }
1da177e4
LT
2412 break;
2413 }
2414
4d091611 2415 if (!(newcon->flags & CON_ENABLED))
1da177e4
LT
2416 return;
2417
8259cf43
RG
2418 /*
2419 * If we have a bootconsole, and are switching to a real console,
2420 * don't print everything out again, since when the boot console, and
2421 * the real console are the same physical device, it's annoying to
2422 * see the beginning boot messages twice
2423 */
2424 if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
4d091611 2425 newcon->flags &= ~CON_PRINTBUFFER;
1da177e4
LT
2426
2427 /*
2428 * Put this console in the list - keep the
2429 * preferred driver at the head of the list.
2430 */
ac751efa 2431 console_lock();
4d091611
RG
2432 if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) {
2433 newcon->next = console_drivers;
2434 console_drivers = newcon;
2435 if (newcon->next)
2436 newcon->next->flags &= ~CON_CONSDEV;
1da177e4 2437 } else {
4d091611
RG
2438 newcon->next = console_drivers->next;
2439 console_drivers->next = newcon;
1da177e4 2440 }
4d091611 2441 if (newcon->flags & CON_PRINTBUFFER) {
1da177e4 2442 /*
ac751efa 2443 * console_unlock(); will print out the buffered messages
1da177e4
LT
2444 * for us.
2445 */
07354eb1 2446 raw_spin_lock_irqsave(&logbuf_lock, flags);
7ff9554b
KS
2447 console_seq = syslog_seq;
2448 console_idx = syslog_idx;
5becfb1d 2449 console_prev = syslog_prev;
07354eb1 2450 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
fe3d8ad3
FT
2451 /*
2452 * We're about to replay the log buffer. Only do this to the
2453 * just-registered console to avoid excessive message spam to
2454 * the already-registered consoles.
2455 */
2456 exclusive_console = newcon;
1da177e4 2457 }
ac751efa 2458 console_unlock();
fbc92a34 2459 console_sysfs_notify();
8259cf43
RG
2460
2461 /*
2462 * By unregistering the bootconsoles after we enable the real console
2463 * we get the "console xxx enabled" message on all the consoles -
2464 * boot consoles, real consoles, etc - this is to ensure that end
2465 * users know there might be something in the kernel's log buffer that
2466 * went to the bootconsole (that they do not see on the real console)
2467 */
27083bac 2468 pr_info("%sconsole [%s%d] enabled\n",
6b802394
KC
2469 (newcon->flags & CON_BOOT) ? "boot" : "" ,
2470 newcon->name, newcon->index);
7bf69395
FDN
2471 if (bcon &&
2472 ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) &&
2473 !keep_bootcon) {
6b802394
KC
2474 /* We need to iterate through all boot consoles, to make
2475 * sure we print everything out, before we unregister them.
8259cf43 2476 */
8259cf43
RG
2477 for_each_console(bcon)
2478 if (bcon->flags & CON_BOOT)
2479 unregister_console(bcon);
8259cf43 2480 }
1da177e4
LT
2481}
2482EXPORT_SYMBOL(register_console);
2483
40dc5651 2484int unregister_console(struct console *console)
1da177e4 2485{
40dc5651 2486 struct console *a, *b;
bbeddf52 2487 int res;
1da177e4 2488
27083bac 2489 pr_info("%sconsole [%s%d] disabled\n",
6b802394
KC
2490 (console->flags & CON_BOOT) ? "boot" : "" ,
2491 console->name, console->index);
2492
bbeddf52
JP
2493 res = _braille_unregister_console(console);
2494 if (res)
2495 return res;
f7511d5f 2496
bbeddf52 2497 res = 1;
ac751efa 2498 console_lock();
1da177e4
LT
2499 if (console_drivers == console) {
2500 console_drivers=console->next;
2501 res = 0;
e9b15b54 2502 } else if (console_drivers) {
1da177e4
LT
2503 for (a=console_drivers->next, b=console_drivers ;
2504 a; b=a, a=b->next) {
2505 if (a == console) {
2506 b->next = a->next;
2507 res = 0;
2508 break;
40dc5651 2509 }
1da177e4
LT
2510 }
2511 }
40dc5651 2512
69331af7 2513 /*
ab4af03a
GE
2514 * If this isn't the last console and it has CON_CONSDEV set, we
2515 * need to set it on the next preferred console.
1da177e4 2516 */
69331af7 2517 if (console_drivers != NULL && console->flags & CON_CONSDEV)
ab4af03a 2518 console_drivers->flags |= CON_CONSDEV;
1da177e4 2519
7fa21dd8 2520 console->flags &= ~CON_ENABLED;
ac751efa 2521 console_unlock();
fbc92a34 2522 console_sysfs_notify();
1da177e4
LT
2523 return res;
2524}
2525EXPORT_SYMBOL(unregister_console);
d59745ce 2526
034260d6 2527static int __init printk_late_init(void)
0c5564bd 2528{
4d091611
RG
2529 struct console *con;
2530
2531 for_each_console(con) {
4c30c6f5 2532 if (!keep_bootcon && con->flags & CON_BOOT) {
42c2c8c8 2533 unregister_console(con);
cb00e99c 2534 }
0c5564bd 2535 }
034260d6 2536 hotcpu_notifier(console_cpu_notify, 0);
0c5564bd
RG
2537 return 0;
2538}
034260d6 2539late_initcall(printk_late_init);
0c5564bd 2540
7ef3d2fd 2541#if defined CONFIG_PRINTK
dc72c32e
FW
2542/*
2543 * Delayed printk version, for scheduler-internal messages:
2544 */
dc72c32e 2545#define PRINTK_PENDING_WAKEUP 0x01
458df9fd 2546#define PRINTK_PENDING_OUTPUT 0x02
dc72c32e
FW
2547
2548static DEFINE_PER_CPU(int, printk_pending);
dc72c32e
FW
2549
2550static void wake_up_klogd_work_func(struct irq_work *irq_work)
2551{
2552 int pending = __this_cpu_xchg(printk_pending, 0);
2553
458df9fd
SR
2554 if (pending & PRINTK_PENDING_OUTPUT) {
2555 /* If trylock fails, someone else is doing the printing */
2556 if (console_trylock())
2557 console_unlock();
dc72c32e
FW
2558 }
2559
2560 if (pending & PRINTK_PENDING_WAKEUP)
2561 wake_up_interruptible(&log_wait);
2562}
2563
2564static DEFINE_PER_CPU(struct irq_work, wake_up_klogd_work) = {
2565 .func = wake_up_klogd_work_func,
2566 .flags = IRQ_WORK_LAZY,
2567};
2568
2569void wake_up_klogd(void)
2570{
2571 preempt_disable();
2572 if (waitqueue_active(&log_wait)) {
2573 this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP);
2574 irq_work_queue(&__get_cpu_var(wake_up_klogd_work));
2575 }
2576 preempt_enable();
2577}
717115e1 2578
aac74dc4 2579int printk_deferred(const char *fmt, ...)
600e1458 2580{
600e1458 2581 va_list args;
600e1458
PZ
2582 int r;
2583
81954606 2584 preempt_disable();
600e1458 2585 va_start(args, fmt);
458df9fd 2586 r = vprintk_emit(0, SCHED_MESSAGE_LOGLEVEL, NULL, 0, fmt, args);
600e1458
PZ
2587 va_end(args);
2588
458df9fd 2589 __this_cpu_or(printk_pending, PRINTK_PENDING_OUTPUT);
74876a98 2590 irq_work_queue(&__get_cpu_var(wake_up_klogd_work));
81954606 2591 preempt_enable();
600e1458
PZ
2592
2593 return r;
2594}
2595
1da177e4
LT
2596/*
2597 * printk rate limiting, lifted from the networking subsystem.
2598 *
641de9d8
UKK
2599 * This enforces a rate limit: not more than 10 kernel messages
2600 * every 5s to make a denial-of-service attack impossible.
1da177e4 2601 */
641de9d8
UKK
2602DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10);
2603
5c828713 2604int __printk_ratelimit(const char *func)
1da177e4 2605{
5c828713 2606 return ___ratelimit(&printk_ratelimit_state, func);
1da177e4 2607}
5c828713 2608EXPORT_SYMBOL(__printk_ratelimit);
f46c4833
AM
2609
2610/**
2611 * printk_timed_ratelimit - caller-controlled printk ratelimiting
2612 * @caller_jiffies: pointer to caller's state
2613 * @interval_msecs: minimum interval between prints
2614 *
2615 * printk_timed_ratelimit() returns true if more than @interval_msecs
2616 * milliseconds have elapsed since the last time printk_timed_ratelimit()
2617 * returned true.
2618 */
2619bool printk_timed_ratelimit(unsigned long *caller_jiffies,
2620 unsigned int interval_msecs)
2621{
f2d28a2e
GK
2622 if (*caller_jiffies == 0
2623 || !time_in_range(jiffies, *caller_jiffies,
2624 *caller_jiffies
2625 + msecs_to_jiffies(interval_msecs))) {
2626 *caller_jiffies = jiffies;
f46c4833
AM
2627 return true;
2628 }
2629 return false;
2630}
2631EXPORT_SYMBOL(printk_timed_ratelimit);
456b565c
SK
2632
2633static DEFINE_SPINLOCK(dump_list_lock);
2634static LIST_HEAD(dump_list);
2635
2636/**
2637 * kmsg_dump_register - register a kernel log dumper.
6485536b 2638 * @dumper: pointer to the kmsg_dumper structure
456b565c
SK
2639 *
2640 * Adds a kernel log dumper to the system. The dump callback in the
2641 * structure will be called when the kernel oopses or panics and must be
2642 * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise.
2643 */
2644int kmsg_dump_register(struct kmsg_dumper *dumper)
2645{
2646 unsigned long flags;
2647 int err = -EBUSY;
2648
2649 /* The dump callback needs to be set */
2650 if (!dumper->dump)
2651 return -EINVAL;
2652
2653 spin_lock_irqsave(&dump_list_lock, flags);
2654 /* Don't allow registering multiple times */
2655 if (!dumper->registered) {
2656 dumper->registered = 1;
fb842b00 2657 list_add_tail_rcu(&dumper->list, &dump_list);
456b565c
SK
2658 err = 0;
2659 }
2660 spin_unlock_irqrestore(&dump_list_lock, flags);
2661
2662 return err;
2663}
2664EXPORT_SYMBOL_GPL(kmsg_dump_register);
2665
2666/**
2667 * kmsg_dump_unregister - unregister a kmsg dumper.
6485536b 2668 * @dumper: pointer to the kmsg_dumper structure
456b565c
SK
2669 *
2670 * Removes a dump device from the system. Returns zero on success and
2671 * %-EINVAL otherwise.
2672 */
2673int kmsg_dump_unregister(struct kmsg_dumper *dumper)
2674{
2675 unsigned long flags;
2676 int err = -EINVAL;
2677
2678 spin_lock_irqsave(&dump_list_lock, flags);
2679 if (dumper->registered) {
2680 dumper->registered = 0;
fb842b00 2681 list_del_rcu(&dumper->list);
456b565c
SK
2682 err = 0;
2683 }
2684 spin_unlock_irqrestore(&dump_list_lock, flags);
fb842b00 2685 synchronize_rcu();
456b565c
SK
2686
2687 return err;
2688}
2689EXPORT_SYMBOL_GPL(kmsg_dump_unregister);
2690
7ff9554b
KS
2691static bool always_kmsg_dump;
2692module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR);
2693
456b565c
SK
2694/**
2695 * kmsg_dump - dump kernel log to kernel message dumpers.
2696 * @reason: the reason (oops, panic etc) for dumping
2697 *
e2ae715d
KS
2698 * Call each of the registered dumper's dump() callback, which can
2699 * retrieve the kmsg records with kmsg_dump_get_line() or
2700 * kmsg_dump_get_buffer().
456b565c
SK
2701 */
2702void kmsg_dump(enum kmsg_dump_reason reason)
2703{
456b565c 2704 struct kmsg_dumper *dumper;
456b565c
SK
2705 unsigned long flags;
2706
c22ab332
MG
2707 if ((reason > KMSG_DUMP_OOPS) && !always_kmsg_dump)
2708 return;
2709
e2ae715d
KS
2710 rcu_read_lock();
2711 list_for_each_entry_rcu(dumper, &dump_list, list) {
2712 if (dumper->max_reason && reason > dumper->max_reason)
2713 continue;
2714
2715 /* initialize iterator with data about the stored records */
2716 dumper->active = true;
2717
2718 raw_spin_lock_irqsave(&logbuf_lock, flags);
2719 dumper->cur_seq = clear_seq;
2720 dumper->cur_idx = clear_idx;
2721 dumper->next_seq = log_next_seq;
2722 dumper->next_idx = log_next_idx;
2723 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2724
2725 /* invoke dumper which will iterate over records */
2726 dumper->dump(dumper, reason);
2727
2728 /* reset iterator */
2729 dumper->active = false;
2730 }
2731 rcu_read_unlock();
2732}
2733
2734/**
533827c9 2735 * kmsg_dump_get_line_nolock - retrieve one kmsg log line (unlocked version)
e2ae715d
KS
2736 * @dumper: registered kmsg dumper
2737 * @syslog: include the "<4>" prefixes
2738 * @line: buffer to copy the line to
2739 * @size: maximum size of the buffer
2740 * @len: length of line placed into buffer
2741 *
2742 * Start at the beginning of the kmsg buffer, with the oldest kmsg
2743 * record, and copy one record into the provided buffer.
2744 *
2745 * Consecutive calls will return the next available record moving
2746 * towards the end of the buffer with the youngest messages.
2747 *
2748 * A return value of FALSE indicates that there are no more records to
2749 * read.
533827c9
AV
2750 *
2751 * The function is similar to kmsg_dump_get_line(), but grabs no locks.
e2ae715d 2752 */
533827c9
AV
2753bool kmsg_dump_get_line_nolock(struct kmsg_dumper *dumper, bool syslog,
2754 char *line, size_t size, size_t *len)
e2ae715d 2755{
62e32ac3 2756 struct printk_log *msg;
e2ae715d
KS
2757 size_t l = 0;
2758 bool ret = false;
2759
2760 if (!dumper->active)
2761 goto out;
7ff9554b 2762
e2ae715d
KS
2763 if (dumper->cur_seq < log_first_seq) {
2764 /* messages are gone, move to first available one */
2765 dumper->cur_seq = log_first_seq;
2766 dumper->cur_idx = log_first_idx;
2767 }
456b565c 2768
e2ae715d 2769 /* last entry */
533827c9 2770 if (dumper->cur_seq >= log_next_seq)
e2ae715d 2771 goto out;
456b565c 2772
e2ae715d 2773 msg = log_from_idx(dumper->cur_idx);
5becfb1d 2774 l = msg_print_text(msg, 0, syslog, line, size);
e2ae715d
KS
2775
2776 dumper->cur_idx = log_next(dumper->cur_idx);
2777 dumper->cur_seq++;
2778 ret = true;
e2ae715d
KS
2779out:
2780 if (len)
2781 *len = l;
2782 return ret;
2783}
533827c9
AV
2784
2785/**
2786 * kmsg_dump_get_line - retrieve one kmsg log line
2787 * @dumper: registered kmsg dumper
2788 * @syslog: include the "<4>" prefixes
2789 * @line: buffer to copy the line to
2790 * @size: maximum size of the buffer
2791 * @len: length of line placed into buffer
2792 *
2793 * Start at the beginning of the kmsg buffer, with the oldest kmsg
2794 * record, and copy one record into the provided buffer.
2795 *
2796 * Consecutive calls will return the next available record moving
2797 * towards the end of the buffer with the youngest messages.
2798 *
2799 * A return value of FALSE indicates that there are no more records to
2800 * read.
2801 */
2802bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog,
2803 char *line, size_t size, size_t *len)
2804{
2805 unsigned long flags;
2806 bool ret;
2807
2808 raw_spin_lock_irqsave(&logbuf_lock, flags);
2809 ret = kmsg_dump_get_line_nolock(dumper, syslog, line, size, len);
2810 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2811
2812 return ret;
2813}
e2ae715d
KS
2814EXPORT_SYMBOL_GPL(kmsg_dump_get_line);
2815
2816/**
2817 * kmsg_dump_get_buffer - copy kmsg log lines
2818 * @dumper: registered kmsg dumper
2819 * @syslog: include the "<4>" prefixes
4f0f4af5 2820 * @buf: buffer to copy the line to
e2ae715d
KS
2821 * @size: maximum size of the buffer
2822 * @len: length of line placed into buffer
2823 *
2824 * Start at the end of the kmsg buffer and fill the provided buffer
2825 * with as many of the the *youngest* kmsg records that fit into it.
2826 * If the buffer is large enough, all available kmsg records will be
2827 * copied with a single call.
2828 *
2829 * Consecutive calls will fill the buffer with the next block of
2830 * available older records, not including the earlier retrieved ones.
2831 *
2832 * A return value of FALSE indicates that there are no more records to
2833 * read.
2834 */
2835bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog,
2836 char *buf, size_t size, size_t *len)
2837{
2838 unsigned long flags;
2839 u64 seq;
2840 u32 idx;
2841 u64 next_seq;
2842 u32 next_idx;
5becfb1d 2843 enum log_flags prev;
e2ae715d
KS
2844 size_t l = 0;
2845 bool ret = false;
2846
2847 if (!dumper->active)
2848 goto out;
2849
2850 raw_spin_lock_irqsave(&logbuf_lock, flags);
2851 if (dumper->cur_seq < log_first_seq) {
2852 /* messages are gone, move to first available one */
2853 dumper->cur_seq = log_first_seq;
2854 dumper->cur_idx = log_first_idx;
2855 }
2856
2857 /* last entry */
2858 if (dumper->cur_seq >= dumper->next_seq) {
2859 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2860 goto out;
2861 }
2862
2863 /* calculate length of entire buffer */
2864 seq = dumper->cur_seq;
2865 idx = dumper->cur_idx;
5becfb1d 2866 prev = 0;
e2ae715d 2867 while (seq < dumper->next_seq) {
62e32ac3 2868 struct printk_log *msg = log_from_idx(idx);
e2ae715d 2869
5becfb1d 2870 l += msg_print_text(msg, prev, true, NULL, 0);
e2ae715d
KS
2871 idx = log_next(idx);
2872 seq++;
5becfb1d 2873 prev = msg->flags;
e2ae715d
KS
2874 }
2875
2876 /* move first record forward until length fits into the buffer */
2877 seq = dumper->cur_seq;
2878 idx = dumper->cur_idx;
5becfb1d 2879 prev = 0;
e2ae715d 2880 while (l > size && seq < dumper->next_seq) {
62e32ac3 2881 struct printk_log *msg = log_from_idx(idx);
456b565c 2882
5becfb1d 2883 l -= msg_print_text(msg, prev, true, NULL, 0);
e2ae715d
KS
2884 idx = log_next(idx);
2885 seq++;
5becfb1d 2886 prev = msg->flags;
456b565c 2887 }
e2ae715d
KS
2888
2889 /* last message in next interation */
2890 next_seq = seq;
2891 next_idx = idx;
2892
2893 l = 0;
2894 while (seq < dumper->next_seq) {
62e32ac3 2895 struct printk_log *msg = log_from_idx(idx);
e2ae715d 2896
5becfb1d 2897 l += msg_print_text(msg, prev, syslog, buf + l, size - l);
e2ae715d
KS
2898 idx = log_next(idx);
2899 seq++;
5becfb1d 2900 prev = msg->flags;
e2ae715d
KS
2901 }
2902
2903 dumper->next_seq = next_seq;
2904 dumper->next_idx = next_idx;
2905 ret = true;
7ff9554b 2906 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
e2ae715d
KS
2907out:
2908 if (len)
2909 *len = l;
2910 return ret;
2911}
2912EXPORT_SYMBOL_GPL(kmsg_dump_get_buffer);
456b565c 2913
533827c9
AV
2914/**
2915 * kmsg_dump_rewind_nolock - reset the interator (unlocked version)
2916 * @dumper: registered kmsg dumper
2917 *
2918 * Reset the dumper's iterator so that kmsg_dump_get_line() and
2919 * kmsg_dump_get_buffer() can be called again and used multiple
2920 * times within the same dumper.dump() callback.
2921 *
2922 * The function is similar to kmsg_dump_rewind(), but grabs no locks.
2923 */
2924void kmsg_dump_rewind_nolock(struct kmsg_dumper *dumper)
2925{
2926 dumper->cur_seq = clear_seq;
2927 dumper->cur_idx = clear_idx;
2928 dumper->next_seq = log_next_seq;
2929 dumper->next_idx = log_next_idx;
2930}
2931
e2ae715d
KS
2932/**
2933 * kmsg_dump_rewind - reset the interator
2934 * @dumper: registered kmsg dumper
2935 *
2936 * Reset the dumper's iterator so that kmsg_dump_get_line() and
2937 * kmsg_dump_get_buffer() can be called again and used multiple
2938 * times within the same dumper.dump() callback.
2939 */
2940void kmsg_dump_rewind(struct kmsg_dumper *dumper)
2941{
2942 unsigned long flags;
2943
2944 raw_spin_lock_irqsave(&logbuf_lock, flags);
533827c9 2945 kmsg_dump_rewind_nolock(dumper);
e2ae715d 2946 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
456b565c 2947}
e2ae715d 2948EXPORT_SYMBOL_GPL(kmsg_dump_rewind);
196779b9 2949
98e5e1bf
TH
2950static char dump_stack_arch_desc_str[128];
2951
2952/**
2953 * dump_stack_set_arch_desc - set arch-specific str to show with task dumps
2954 * @fmt: printf-style format string
2955 * @...: arguments for the format string
2956 *
2957 * The configured string will be printed right after utsname during task
2958 * dumps. Usually used to add arch-specific system identifiers. If an
2959 * arch wants to make use of such an ID string, it should initialize this
2960 * as soon as possible during boot.
2961 */
2962void __init dump_stack_set_arch_desc(const char *fmt, ...)
2963{
2964 va_list args;
2965
2966 va_start(args, fmt);
2967 vsnprintf(dump_stack_arch_desc_str, sizeof(dump_stack_arch_desc_str),
2968 fmt, args);
2969 va_end(args);
2970}
2971
196779b9
TH
2972/**
2973 * dump_stack_print_info - print generic debug info for dump_stack()
2974 * @log_lvl: log level
2975 *
2976 * Arch-specific dump_stack() implementations can use this function to
2977 * print out the same debug information as the generic dump_stack().
2978 */
2979void dump_stack_print_info(const char *log_lvl)
2980{
2981 printk("%sCPU: %d PID: %d Comm: %.20s %s %s %.*s\n",
2982 log_lvl, raw_smp_processor_id(), current->pid, current->comm,
2983 print_tainted(), init_utsname()->release,
2984 (int)strcspn(init_utsname()->version, " "),
2985 init_utsname()->version);
98e5e1bf
TH
2986
2987 if (dump_stack_arch_desc_str[0] != '\0')
2988 printk("%sHardware name: %s\n",
2989 log_lvl, dump_stack_arch_desc_str);
3d1cb205
TH
2990
2991 print_worker_info(log_lvl, current);
196779b9
TH
2992}
2993
a43cb95d
TH
2994/**
2995 * show_regs_print_info - print generic debug info for show_regs()
2996 * @log_lvl: log level
2997 *
2998 * show_regs() implementations can use this function to print out generic
2999 * debug information.
3000 */
3001void show_regs_print_info(const char *log_lvl)
3002{
3003 dump_stack_print_info(log_lvl);
3004
3005 printk("%stask: %p ti: %p task.ti: %p\n",
3006 log_lvl, current, current_thread_info(),
3007 task_thread_info(current));
3008}
3009
7ef3d2fd 3010#endif