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