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