]> git.ipfire.org Git - thirdparty/linux.git/blame - kernel/printk/printk.c
Merge tag 'printk-for-5.15' of git://git.kernel.org/pub/scm/linux/kernel/git/printk...
[thirdparty/linux.git] / kernel / printk / printk.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2/*
3 * linux/kernel/printk.c
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 *
7 * Modified to make sys_syslog() more flexible: added commands to
8 * return the last 4k of kernel messages, regardless of whether
9 * they've been read or not. Added option to suppress kernel printk's
10 * to the console. Added hook for sending the console messages
11 * elsewhere, in preparation for a serial line console (someday).
12 * Ted Ts'o, 2/11/93.
13 * Modified for sysctl support, 1/8/97, Chris Horn.
40dc5651 14 * Fixed SMP synchronization, 08/08/99, Manfred Spraul
624dffcb 15 * manfred@colorfullife.com
1da177e4 16 * Rewrote bits to get rid of console_lock
e1f8e874 17 * 01Mar01 Andrew Morton
1da177e4
LT
18 */
19
dd5adbfb
HZ
20#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
1da177e4
LT
22#include <linux/kernel.h>
23#include <linux/mm.h>
24#include <linux/tty.h>
25#include <linux/tty_driver.h>
1da177e4
LT
26#include <linux/console.h>
27#include <linux/init.h>
bfe8df3d
RD
28#include <linux/jiffies.h>
29#include <linux/nmi.h>
1da177e4 30#include <linux/module.h>
3b9c0410 31#include <linux/moduleparam.h>
1da177e4
LT
32#include <linux/delay.h>
33#include <linux/smp.h>
34#include <linux/security.h>
162a7e75 35#include <linux/memblock.h>
1da177e4 36#include <linux/syscalls.h>
692f66f2 37#include <linux/crash_core.h>
3fff4c42 38#include <linux/ratelimit.h>
456b565c 39#include <linux/kmsg_dump.h>
00234592 40#include <linux/syslog.h>
034260d6 41#include <linux/cpu.h>
fb842b00 42#include <linux/rculist.h>
e11fea92 43#include <linux/poll.h>
74876a98 44#include <linux/irq_work.h>
249771b8 45#include <linux/ctype.h>
e2e40f2c 46#include <linux/uio.h>
e6017571 47#include <linux/sched/clock.h>
b17b0153 48#include <linux/sched/debug.h>
68db0cf1 49#include <linux/sched/task_stack.h>
1da177e4 50
7c0f6ba6 51#include <linux/uaccess.h>
40a7d9f5 52#include <asm/sections.h>
1da177e4 53
58eacfff 54#include <trace/events/initcall.h>
95100358
JB
55#define CREATE_TRACE_POINTS
56#include <trace/events/printk.h>
57
896fbe20 58#include "printk_ringbuffer.h"
d197c43d 59#include "console_cmdline.h"
bbeddf52 60#include "braille.h"
42a0bb3f 61#include "internal.h"
d197c43d 62
1da177e4 63int console_printk[4] = {
a8fe19eb 64 CONSOLE_LOGLEVEL_DEFAULT, /* console_loglevel */
42a9dc0b 65 MESSAGE_LOGLEVEL_DEFAULT, /* default_message_loglevel */
a8fe19eb
BP
66 CONSOLE_LOGLEVEL_MIN, /* minimum_console_loglevel */
67 CONSOLE_LOGLEVEL_DEFAULT, /* default_console_loglevel */
1da177e4 68};
a1939185 69EXPORT_SYMBOL_GPL(console_printk);
1da177e4 70
56e6c104
TZ
71atomic_t ignore_console_lock_warning __read_mostly = ATOMIC_INIT(0);
72EXPORT_SYMBOL(ignore_console_lock_warning);
73
1da177e4 74/*
0bbfb7c2 75 * Low level drivers may need that to know if they can schedule in
1da177e4
LT
76 * their unblank() callback or not. So let's export it.
77 */
78int oops_in_progress;
79EXPORT_SYMBOL(oops_in_progress);
80
81/*
82 * console_sem protects the console_drivers list, and also
83 * provides serialisation for access to the entire console
84 * driver system.
85 */
5b8c4f23 86static DEFINE_SEMAPHORE(console_sem);
1da177e4 87struct console *console_drivers;
a29d1cfe
IM
88EXPORT_SYMBOL_GPL(console_drivers);
89
c39ea0b9
FT
90/*
91 * System may need to suppress printk message under certain
92 * circumstances, like after kernel panic happens.
93 */
94int __read_mostly suppress_printk;
95
daee7797
DV
96#ifdef CONFIG_LOCKDEP
97static struct lockdep_map console_lock_dep_map = {
98 .name = "console_lock"
99};
100#endif
101
750afe7b
BP
102enum devkmsg_log_bits {
103 __DEVKMSG_LOG_BIT_ON = 0,
104 __DEVKMSG_LOG_BIT_OFF,
105 __DEVKMSG_LOG_BIT_LOCK,
106};
107
108enum devkmsg_log_masks {
109 DEVKMSG_LOG_MASK_ON = BIT(__DEVKMSG_LOG_BIT_ON),
110 DEVKMSG_LOG_MASK_OFF = BIT(__DEVKMSG_LOG_BIT_OFF),
111 DEVKMSG_LOG_MASK_LOCK = BIT(__DEVKMSG_LOG_BIT_LOCK),
112};
113
114/* Keep both the 'on' and 'off' bits clear, i.e. ratelimit by default: */
115#define DEVKMSG_LOG_MASK_DEFAULT 0
116
117static unsigned int __read_mostly devkmsg_log = DEVKMSG_LOG_MASK_DEFAULT;
118
119static int __control_devkmsg(char *str)
120{
35c35493
CY
121 size_t len;
122
750afe7b
BP
123 if (!str)
124 return -EINVAL;
125
35c35493
CY
126 len = str_has_prefix(str, "on");
127 if (len) {
750afe7b 128 devkmsg_log = DEVKMSG_LOG_MASK_ON;
35c35493
CY
129 return len;
130 }
131
132 len = str_has_prefix(str, "off");
133 if (len) {
750afe7b 134 devkmsg_log = DEVKMSG_LOG_MASK_OFF;
35c35493
CY
135 return len;
136 }
137
138 len = str_has_prefix(str, "ratelimit");
139 if (len) {
750afe7b 140 devkmsg_log = DEVKMSG_LOG_MASK_DEFAULT;
35c35493 141 return len;
750afe7b 142 }
35c35493 143
750afe7b
BP
144 return -EINVAL;
145}
146
147static int __init control_devkmsg(char *str)
148{
149 if (__control_devkmsg(str) < 0)
150 return 1;
151
152 /*
153 * Set sysctl string accordingly:
154 */
6fd78a1a
SS
155 if (devkmsg_log == DEVKMSG_LOG_MASK_ON)
156 strcpy(devkmsg_log_str, "on");
157 else if (devkmsg_log == DEVKMSG_LOG_MASK_OFF)
158 strcpy(devkmsg_log_str, "off");
750afe7b
BP
159 /* else "ratelimit" which is set by default. */
160
161 /*
162 * Sysctl cannot change it anymore. The kernel command line setting of
163 * this parameter is to force the setting to be permanent throughout the
164 * runtime of the system. This is a precation measure against userspace
165 * trying to be a smarta** and attempting to change it up on us.
166 */
167 devkmsg_log |= DEVKMSG_LOG_MASK_LOCK;
168
169 return 0;
170}
171__setup("printk.devkmsg=", control_devkmsg);
172
173char devkmsg_log_str[DEVKMSG_STR_MAX_SIZE] = "ratelimit";
174
175int devkmsg_sysctl_set_loglvl(struct ctl_table *table, int write,
32927393 176 void *buffer, size_t *lenp, loff_t *ppos)
750afe7b
BP
177{
178 char old_str[DEVKMSG_STR_MAX_SIZE];
179 unsigned int old;
180 int err;
181
182 if (write) {
183 if (devkmsg_log & DEVKMSG_LOG_MASK_LOCK)
184 return -EINVAL;
185
186 old = devkmsg_log;
187 strncpy(old_str, devkmsg_log_str, DEVKMSG_STR_MAX_SIZE);
188 }
189
190 err = proc_dostring(table, write, buffer, lenp, ppos);
191 if (err)
192 return err;
193
194 if (write) {
195 err = __control_devkmsg(devkmsg_log_str);
196
197 /*
198 * Do not accept an unknown string OR a known string with
199 * trailing crap...
200 */
201 if (err < 0 || (err + 1 != *lenp)) {
202
203 /* ... and restore old setting. */
204 devkmsg_log = old;
205 strncpy(devkmsg_log_str, old_str, DEVKMSG_STR_MAX_SIZE);
206
207 return -EINVAL;
208 }
209 }
210
211 return 0;
212}
213
9627808d 214/* Number of registered extended console drivers. */
6fe29354
TH
215static int nr_ext_console_drivers;
216
bd8d7cf5
JK
217/*
218 * Helper macros to handle lockdep when locking/unlocking console_sem. We use
219 * macros instead of functions so that _RET_IP_ contains useful information.
220 */
221#define down_console_sem() do { \
222 down(&console_sem);\
223 mutex_acquire(&console_lock_dep_map, 0, 0, _RET_IP_);\
224} while (0)
225
226static int __down_trylock_console_sem(unsigned long ip)
227{
f975237b
SS
228 int lock_failed;
229 unsigned long flags;
230
231 /*
232 * Here and in __up_console_sem() we need to be in safe mode,
233 * because spindump/WARN/etc from under console ->lock will
234 * deadlock in printk()->down_trylock_console_sem() otherwise.
235 */
236 printk_safe_enter_irqsave(flags);
237 lock_failed = down_trylock(&console_sem);
238 printk_safe_exit_irqrestore(flags);
239
240 if (lock_failed)
bd8d7cf5
JK
241 return 1;
242 mutex_acquire(&console_lock_dep_map, 0, 1, ip);
243 return 0;
244}
245#define down_trylock_console_sem() __down_trylock_console_sem(_RET_IP_)
246
f975237b
SS
247static void __up_console_sem(unsigned long ip)
248{
249 unsigned long flags;
250
5facae4f 251 mutex_release(&console_lock_dep_map, ip);
f975237b
SS
252
253 printk_safe_enter_irqsave(flags);
254 up(&console_sem);
255 printk_safe_exit_irqrestore(flags);
256}
257#define up_console_sem() __up_console_sem(_RET_IP_)
bd8d7cf5 258
1da177e4
LT
259/*
260 * This is used for debugging the mess that is the VT code by
261 * keeping track if we have the console semaphore held. It's
262 * definitely not the perfect debug tool (we don't know if _WE_
0b90fec3
AE
263 * hold it and are racing, but it helps tracking those weird code
264 * paths in the console code where we end up in places I want
acebb559 265 * locked without the console semaphore held).
1da177e4 266 */
557240b4 267static int console_locked, console_suspended;
1da177e4 268
fe3d8ad3
FT
269/*
270 * If exclusive_console is non-NULL then only this console is to be printed to.
271 */
272static struct console *exclusive_console;
273
1da177e4
LT
274/*
275 * Array of consoles built from command line options (console=)
276 */
1da177e4
LT
277
278#define MAX_CMDLINECONSOLES 8
279
280static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
d197c43d 281
1da177e4 282static int preferred_console = -1;
ad8cd1db 283static bool has_preferred_console;
9e124fe1
MA
284int console_set_on_cmdline;
285EXPORT_SYMBOL(console_set_on_cmdline);
1da177e4
LT
286
287/* Flag: console code may call schedule() */
288static int console_may_schedule;
289
cca10d58
SS
290enum con_msg_format_flags {
291 MSG_FORMAT_DEFAULT = 0,
292 MSG_FORMAT_SYSLOG = (1 << 0),
293};
294
295static int console_msg_format = MSG_FORMAT_DEFAULT;
296
7ff9554b 297/*
896fbe20 298 * The printk log buffer consists of a sequenced collection of records, each
74caba7f
JO
299 * containing variable length message text. Every record also contains its
300 * own meta-data (@info).
7ff9554b 301 *
896fbe20
JO
302 * Every record meta-data carries the timestamp in microseconds, as well as
303 * the standard userspace syslog level and syslog facility. The usual kernel
304 * messages use LOG_KERN; userspace-injected messages always carry a matching
305 * syslog facility, by default LOG_USER. The origin of every message can be
306 * reliably determined that way.
7ff9554b 307 *
896fbe20
JO
308 * The human readable log message of a record is available in @text, the
309 * length of the message text in @text_len. The stored message is not
310 * terminated.
7ff9554b 311 *
896fbe20 312 * Optionally, a record can carry a dictionary of properties (key/value
74caba7f 313 * pairs), to provide userspace with a machine-readable message context.
e11fea92
KS
314 *
315 * Examples for well-defined, commonly used property names are:
316 * DEVICE=b12:8 device identifier
317 * b12:8 block dev_t
318 * c127:3 char dev_t
319 * n8 netdev ifindex
320 * +sound:card0 subsystem:devname
321 * SUBSYSTEM=pci driver-core subsystem name
322 *
74caba7f
JO
323 * Valid characters in property names are [a-zA-Z0-9.-_]. Property names
324 * and values are terminated by a '\0' character.
e11fea92 325 *
896fbe20 326 * Example of record values:
74caba7f
JO
327 * record.text_buf = "it's a line" (unterminated)
328 * record.info.seq = 56
329 * record.info.ts_nsec = 36863
330 * record.info.text_len = 11
331 * record.info.facility = 0 (LOG_KERN)
332 * record.info.flags = 0
333 * record.info.level = 3 (LOG_ERR)
334 * record.info.caller_id = 299 (task 299)
335 * record.info.dev_info.subsystem = "pci" (terminated)
336 * record.info.dev_info.device = "+pci:0000:00:01.0" (terminated)
896fbe20
JO
337 *
338 * The 'struct printk_info' buffer must never be directly exported to
e11fea92
KS
339 * userspace, it is a kernel-private implementation detail that might
340 * need to be changed in the future, when the requirements change.
341 *
342 * /dev/kmsg exports the structured data in the following line format:
b389645f
AO
343 * "<level>,<sequnum>,<timestamp>,<contflag>[,additional_values, ... ];<message text>\n"
344 *
345 * Users of the export format should ignore possible additional values
346 * separated by ',', and find the message after the ';' character.
e11fea92
KS
347 *
348 * The optional key/value pairs are attached as continuation lines starting
349 * with a space character and terminated by a newline. All possible
350 * non-prinatable characters are escaped in the "\xff" notation.
7ff9554b
KS
351 */
352
636babdc 353/* syslog_lock protects syslog_* variables and write access to clear_seq. */
b371cbb5 354static DEFINE_MUTEX(syslog_lock);
636babdc 355
96efedf1 356#ifdef CONFIG_PRINTK
dc72c32e 357DECLARE_WAIT_QUEUE_HEAD(log_wait);
636babdc 358/* All 3 protected by @syslog_lock. */
7f3a781d
KS
359/* the next printk record to read by syslog(READ) or /proc/kmsg */
360static u64 syslog_seq;
eb02dac9 361static size_t syslog_partial;
e80c1a9d 362static bool syslog_time;
7ff9554b 363
996e9666 364/* All 3 protected by @console_sem. */
eab07260
KS
365/* the next printk record to write to the console */
366static u64 console_seq;
f92b070f 367static u64 exclusive_console_stop_seq;
896fbe20 368static unsigned long console_dropped;
eab07260 369
7d7a23a9
JO
370struct latched_seq {
371 seqcount_latch_t latch;
372 u64 val[2];
373};
374
375/*
376 * The next printk record to read after the last 'clear' command. There are
377 * two copies (updated with seqcount_latch) so that reads can locklessly
636babdc 378 * access a valid value. Writers are synchronized by @syslog_lock.
7d7a23a9
JO
379 */
380static struct latched_seq clear_seq = {
381 .latch = SEQCNT_LATCH_ZERO(clear_seq.latch),
382 .val[0] = 0,
383 .val[1] = 0,
384};
7ff9554b 385
15ff2069
TH
386#ifdef CONFIG_PRINTK_CALLER
387#define PREFIX_MAX 48
388#else
70498253 389#define PREFIX_MAX 32
15ff2069 390#endif
cf5b0208
JO
391
392/* the maximum size of a formatted record (i.e. with prefix added per line) */
393#define CONSOLE_LOG_MAX 1024
394
395/* the maximum size allowed to be reserved for a record */
396#define LOG_LINE_MAX (CONSOLE_LOG_MAX - PREFIX_MAX)
7f3a781d 397
3824657c
MK
398#define LOG_LEVEL(v) ((v) & 0x07)
399#define LOG_FACILITY(v) ((v) >> 3 & 0xff)
400
7f3a781d 401/* record buffer */
896fbe20 402#define LOG_ALIGN __alignof__(unsigned long)
7f3a781d 403#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
e6fe3e5b 404#define LOG_BUF_LEN_MAX (u32)(1 << 31)
f8450fca 405static char __log_buf[__LOG_BUF_LEN] __aligned(LOG_ALIGN);
7f3a781d
KS
406static char *log_buf = __log_buf;
407static u32 log_buf_len = __LOG_BUF_LEN;
408
896fbe20
JO
409/*
410 * Define the average message size. This only affects the number of
411 * descriptors that will be available. Underestimating is better than
412 * overestimating (too many available descriptors is better than not enough).
896fbe20
JO
413 */
414#define PRB_AVGBITS 5 /* 32 character average length */
415
416#if CONFIG_LOG_BUF_SHIFT <= PRB_AVGBITS
417#error CONFIG_LOG_BUF_SHIFT value too small.
418#endif
419_DEFINE_PRINTKRB(printk_rb_static, CONFIG_LOG_BUF_SHIFT - PRB_AVGBITS,
f35efc78 420 PRB_AVGBITS, &__log_buf[0]);
896fbe20
JO
421
422static struct printk_ringbuffer printk_rb_dynamic;
423
424static struct printk_ringbuffer *prb = &printk_rb_static;
425
ab6f762f
SS
426/*
427 * We cannot access per-CPU data (e.g. per-CPU flush irq_work) before
428 * per_cpu_areas are initialised. This variable is set to true when
429 * it's safe to access per-CPU data.
430 */
431static bool __printk_percpu_data_ready __read_mostly;
432
433bool printk_percpu_data_ready(void)
434{
435 return __printk_percpu_data_ready;
436}
437
636babdc 438/* Must be called under syslog_lock. */
7d7a23a9
JO
439static void latched_seq_write(struct latched_seq *ls, u64 val)
440{
441 raw_write_seqcount_latch(&ls->latch);
442 ls->val[0] = val;
443 raw_write_seqcount_latch(&ls->latch);
444 ls->val[1] = val;
445}
446
447/* Can be called from any context. */
448static u64 latched_seq_read_nolock(struct latched_seq *ls)
449{
450 unsigned int seq;
451 unsigned int idx;
452 u64 val;
453
454 do {
455 seq = raw_read_seqcount_latch(&ls->latch);
456 idx = seq & 0x1;
457 val = ls->val[idx];
458 } while (read_seqcount_latch_retry(&ls->latch, seq));
459
460 return val;
461}
462
14c4000a
VH
463/* Return log buffer address */
464char *log_buf_addr_get(void)
465{
466 return log_buf;
467}
468
469/* Return log buffer size */
470u32 log_buf_len_get(void)
471{
472 return log_buf_len;
473}
474
55bd53a4
PM
475/*
476 * Define how much of the log buffer we could take at maximum. The value
477 * must be greater than two. Note that only half of the buffer is available
478 * when the index points to the middle.
479 */
480#define MAX_LOG_TAKE_PART 4
481static const char trunc_msg[] = "<truncated>";
482
896fbe20 483static void truncate_msg(u16 *text_len, u16 *trunc_msg_len)
55bd53a4
PM
484{
485 /*
486 * The message should not take the whole buffer. Otherwise, it might
487 * get removed too soon.
488 */
489 u32 max_text_len = log_buf_len / MAX_LOG_TAKE_PART;
896fbe20 490
55bd53a4
PM
491 if (*text_len > max_text_len)
492 *text_len = max_text_len;
896fbe20
JO
493
494 /* enable the warning message (if there is room) */
55bd53a4 495 *trunc_msg_len = strlen(trunc_msg);
896fbe20
JO
496 if (*text_len >= *trunc_msg_len)
497 *text_len -= *trunc_msg_len;
498 else
499 *trunc_msg_len = 0;
55bd53a4
PM
500}
501
e99aa461 502int dmesg_restrict = IS_ENABLED(CONFIG_SECURITY_DMESG_RESTRICT);
637241a9
KC
503
504static int syslog_action_restricted(int type)
505{
506 if (dmesg_restrict)
507 return 1;
508 /*
509 * Unless restricted, we allow "read all" and "get buffer size"
510 * for everybody.
511 */
512 return type != SYSLOG_ACTION_READ_ALL &&
513 type != SYSLOG_ACTION_SIZE_BUFFER;
514}
515
c71b02e4 516static int check_syslog_permissions(int type, int source)
637241a9
KC
517{
518 /*
519 * If this is from /proc/kmsg and we've already opened it, then we've
520 * already done the capabilities checks at open time.
521 */
3ea4331c 522 if (source == SYSLOG_FROM_PROC && type != SYSLOG_ACTION_OPEN)
d194e5d6 523 goto ok;
637241a9
KC
524
525 if (syslog_action_restricted(type)) {
526 if (capable(CAP_SYSLOG))
d194e5d6 527 goto ok;
637241a9
KC
528 /*
529 * For historical reasons, accept CAP_SYS_ADMIN too, with
530 * a warning.
531 */
532 if (capable(CAP_SYS_ADMIN)) {
533 pr_warn_once("%s (%d): Attempt to access syslog with "
534 "CAP_SYS_ADMIN but no CAP_SYSLOG "
535 "(deprecated).\n",
536 current->comm, task_pid_nr(current));
d194e5d6 537 goto ok;
637241a9
KC
538 }
539 return -EPERM;
540 }
d194e5d6 541ok:
637241a9
KC
542 return security_syslog(type);
543}
544
d43ff430
TH
545static void append_char(char **pp, char *e, char c)
546{
547 if (*pp < e)
548 *(*pp)++ = c;
549}
637241a9 550
896fbe20
JO
551static ssize_t info_print_ext_header(char *buf, size_t size,
552 struct printk_info *info)
0a295e67 553{
896fbe20 554 u64 ts_usec = info->ts_nsec;
15ff2069
TH
555 char caller[20];
556#ifdef CONFIG_PRINTK_CALLER
896fbe20 557 u32 id = info->caller_id;
15ff2069
TH
558
559 snprintf(caller, sizeof(caller), ",caller=%c%u",
560 id & 0x80000000 ? 'C' : 'T', id & ~0x80000000);
561#else
562 caller[0] = '\0';
563#endif
0a295e67
TH
564
565 do_div(ts_usec, 1000);
566
15ff2069 567 return scnprintf(buf, size, "%u,%llu,%llu,%c%s;",
896fbe20
JO
568 (info->facility << 3) | info->level, info->seq,
569 ts_usec, info->flags & LOG_CONT ? 'c' : '-', caller);
0a295e67
TH
570}
571
74caba7f
JO
572static ssize_t msg_add_ext_text(char *buf, size_t size,
573 const char *text, size_t text_len,
574 unsigned char endc)
0a295e67
TH
575{
576 char *p = buf, *e = buf + size;
577 size_t i;
578
579 /* escape non-printable characters */
580 for (i = 0; i < text_len; i++) {
581 unsigned char c = text[i];
582
583 if (c < ' ' || c >= 127 || c == '\\')
584 p += scnprintf(p, e - p, "\\x%02x", c);
585 else
586 append_char(&p, e, c);
587 }
74caba7f 588 append_char(&p, e, endc);
0a295e67 589
74caba7f
JO
590 return p - buf;
591}
0a295e67 592
74caba7f
JO
593static ssize_t msg_add_dict_text(char *buf, size_t size,
594 const char *key, const char *val)
595{
596 size_t val_len = strlen(val);
597 ssize_t len;
0a295e67 598
74caba7f
JO
599 if (!val_len)
600 return 0;
0a295e67 601
74caba7f
JO
602 len = msg_add_ext_text(buf, size, "", 0, ' '); /* dict prefix */
603 len += msg_add_ext_text(buf + len, size - len, key, strlen(key), '=');
604 len += msg_add_ext_text(buf + len, size - len, val, val_len, '\n');
0a295e67 605
74caba7f
JO
606 return len;
607}
0a295e67 608
74caba7f
JO
609static ssize_t msg_print_ext_body(char *buf, size_t size,
610 char *text, size_t text_len,
611 struct dev_printk_info *dev_info)
612{
613 ssize_t len;
0a295e67 614
74caba7f
JO
615 len = msg_add_ext_text(buf, size, text, text_len, '\n');
616
617 if (!dev_info)
618 goto out;
619
620 len += msg_add_dict_text(buf + len, size - len, "SUBSYSTEM",
621 dev_info->subsystem);
622 len += msg_add_dict_text(buf + len, size - len, "DEVICE",
623 dev_info->device);
624out:
625 return len;
0a295e67
TH
626}
627
e11fea92
KS
628/* /dev/kmsg - userspace message inject/listen interface */
629struct devkmsg_user {
35b2b163 630 atomic64_t seq;
750afe7b 631 struct ratelimit_state rs;
e11fea92 632 struct mutex lock;
d43ff430 633 char buf[CONSOLE_EXT_LOG_MAX];
896fbe20
JO
634
635 struct printk_info info;
636 char text_buf[CONSOLE_EXT_LOG_MAX];
896fbe20 637 struct printk_record record;
e11fea92
KS
638};
639
9adcfaff
TH
640static __printf(3, 4) __cold
641int devkmsg_emit(int facility, int level, const char *fmt, ...)
642{
643 va_list args;
644 int r;
645
646 va_start(args, fmt);
74caba7f 647 r = vprintk_emit(facility, level, NULL, fmt, args);
9adcfaff
TH
648 va_end(args);
649
650 return r;
651}
652
849f3127 653static ssize_t devkmsg_write(struct kiocb *iocb, struct iov_iter *from)
e11fea92
KS
654{
655 char *buf, *line;
e11fea92
KS
656 int level = default_message_loglevel;
657 int facility = 1; /* LOG_USER */
750afe7b
BP
658 struct file *file = iocb->ki_filp;
659 struct devkmsg_user *user = file->private_data;
66ee59af 660 size_t len = iov_iter_count(from);
e11fea92
KS
661 ssize_t ret = len;
662
750afe7b 663 if (!user || len > LOG_LINE_MAX)
e11fea92 664 return -EINVAL;
750afe7b
BP
665
666 /* Ignore when user logging is disabled. */
667 if (devkmsg_log & DEVKMSG_LOG_MASK_OFF)
668 return len;
669
670 /* Ratelimit when not explicitly enabled. */
671 if (!(devkmsg_log & DEVKMSG_LOG_MASK_ON)) {
672 if (!___ratelimit(&user->rs, current->comm))
673 return ret;
674 }
675
e11fea92
KS
676 buf = kmalloc(len+1, GFP_KERNEL);
677 if (buf == NULL)
678 return -ENOMEM;
679
849f3127 680 buf[len] = '\0';
cbbd26b8 681 if (!copy_from_iter_full(buf, len, from)) {
849f3127
AV
682 kfree(buf);
683 return -EFAULT;
e11fea92
KS
684 }
685
686 /*
687 * Extract and skip the syslog prefix <[0-9]*>. Coming from userspace
688 * the decimal value represents 32bit, the lower 3 bit are the log
689 * level, the rest are the log facility.
690 *
691 * If no prefix or no userspace facility is specified, we
692 * enforce LOG_USER, to be able to reliably distinguish
693 * kernel-generated messages from userspace-injected ones.
694 */
695 line = buf;
696 if (line[0] == '<') {
697 char *endp = NULL;
3824657c 698 unsigned int u;
e11fea92 699
3824657c 700 u = simple_strtoul(line + 1, &endp, 10);
e11fea92 701 if (endp && endp[0] == '>') {
3824657c
MK
702 level = LOG_LEVEL(u);
703 if (LOG_FACILITY(u) != 0)
704 facility = LOG_FACILITY(u);
e11fea92 705 endp++;
e11fea92
KS
706 line = endp;
707 }
708 }
e11fea92 709
9adcfaff 710 devkmsg_emit(facility, level, "%s", line);
e11fea92
KS
711 kfree(buf);
712 return ret;
713}
714
715static ssize_t devkmsg_read(struct file *file, char __user *buf,
716 size_t count, loff_t *ppos)
717{
718 struct devkmsg_user *user = file->private_data;
896fbe20 719 struct printk_record *r = &user->record;
e11fea92
KS
720 size_t len;
721 ssize_t ret;
722
723 if (!user)
724 return -EBADF;
725
4a77a5a0
YL
726 ret = mutex_lock_interruptible(&user->lock);
727 if (ret)
728 return ret;
de6fcbdb 729
35b2b163 730 if (!prb_read_valid(prb, atomic64_read(&user->seq), r)) {
e11fea92
KS
731 if (file->f_flags & O_NONBLOCK) {
732 ret = -EAGAIN;
e11fea92
KS
733 goto out;
734 }
735
e11fea92 736 ret = wait_event_interruptible(log_wait,
35b2b163 737 prb_read_valid(prb, atomic64_read(&user->seq), r));
e11fea92
KS
738 if (ret)
739 goto out;
e11fea92
KS
740 }
741
35b2b163 742 if (r->info->seq != atomic64_read(&user->seq)) {
e11fea92 743 /* our last seen message is gone, return error and reset */
35b2b163 744 atomic64_set(&user->seq, r->info->seq);
e11fea92 745 ret = -EPIPE;
e11fea92
KS
746 goto out;
747 }
748
896fbe20 749 len = info_print_ext_header(user->buf, sizeof(user->buf), r->info);
0a295e67 750 len += msg_print_ext_body(user->buf + len, sizeof(user->buf) - len,
74caba7f
JO
751 &r->text_buf[0], r->info->text_len,
752 &r->info->dev_info);
d39f3d77 753
35b2b163 754 atomic64_set(&user->seq, r->info->seq + 1);
e11fea92
KS
755
756 if (len > count) {
757 ret = -EINVAL;
758 goto out;
759 }
760
761 if (copy_to_user(buf, user->buf, len)) {
762 ret = -EFAULT;
763 goto out;
764 }
765 ret = len;
766out:
767 mutex_unlock(&user->lock);
768 return ret;
769}
770
bc885f1a
BM
771/*
772 * Be careful when modifying this function!!!
773 *
774 * Only few operations are supported because the device works only with the
775 * entire variable length messages (records). Non-standard values are
776 * returned in the other cases and has been this way for quite some time.
777 * User space applications might depend on this behavior.
778 */
e11fea92
KS
779static loff_t devkmsg_llseek(struct file *file, loff_t offset, int whence)
780{
781 struct devkmsg_user *user = file->private_data;
782 loff_t ret = 0;
783
784 if (!user)
785 return -EBADF;
786 if (offset)
787 return -ESPIPE;
788
e11fea92
KS
789 switch (whence) {
790 case SEEK_SET:
791 /* the first record */
35b2b163 792 atomic64_set(&user->seq, prb_first_valid_seq(prb));
e11fea92
KS
793 break;
794 case SEEK_DATA:
795 /*
796 * The first record after the last SYSLOG_ACTION_CLEAR,
797 * like issued by 'dmesg -c'. Reading /dev/kmsg itself
798 * changes no global state, and does not clear anything.
799 */
35b2b163 800 atomic64_set(&user->seq, latched_seq_read_nolock(&clear_seq));
e11fea92
KS
801 break;
802 case SEEK_END:
803 /* after the last record */
35b2b163 804 atomic64_set(&user->seq, prb_next_seq(prb));
e11fea92
KS
805 break;
806 default:
807 ret = -EINVAL;
808 }
e11fea92
KS
809 return ret;
810}
811
9dd95748 812static __poll_t devkmsg_poll(struct file *file, poll_table *wait)
e11fea92
KS
813{
814 struct devkmsg_user *user = file->private_data;
13791c80 815 struct printk_info info;
9dd95748 816 __poll_t ret = 0;
e11fea92
KS
817
818 if (!user)
a9a08845 819 return EPOLLERR|EPOLLNVAL;
e11fea92
KS
820
821 poll_wait(file, &log_wait, wait);
822
35b2b163 823 if (prb_read_valid_info(prb, atomic64_read(&user->seq), &info, NULL)) {
e11fea92 824 /* return error when data has vanished underneath us */
35b2b163 825 if (info.seq != atomic64_read(&user->seq))
a9a08845 826 ret = EPOLLIN|EPOLLRDNORM|EPOLLERR|EPOLLPRI;
0a285317 827 else
a9a08845 828 ret = EPOLLIN|EPOLLRDNORM;
e11fea92 829 }
e11fea92
KS
830
831 return ret;
832}
833
834static int devkmsg_open(struct inode *inode, struct file *file)
835{
836 struct devkmsg_user *user;
837 int err;
838
750afe7b
BP
839 if (devkmsg_log & DEVKMSG_LOG_MASK_OFF)
840 return -EPERM;
e11fea92 841
750afe7b
BP
842 /* write-only does not need any file context */
843 if ((file->f_flags & O_ACCMODE) != O_WRONLY) {
844 err = check_syslog_permissions(SYSLOG_ACTION_READ_ALL,
845 SYSLOG_FROM_READER);
846 if (err)
847 return err;
848 }
e11fea92
KS
849
850 user = kmalloc(sizeof(struct devkmsg_user), GFP_KERNEL);
851 if (!user)
852 return -ENOMEM;
853
750afe7b
BP
854 ratelimit_default_init(&user->rs);
855 ratelimit_set_flags(&user->rs, RATELIMIT_MSG_ON_RELEASE);
856
e11fea92
KS
857 mutex_init(&user->lock);
858
896fbe20 859 prb_rec_init_rd(&user->record, &user->info,
f35efc78 860 &user->text_buf[0], sizeof(user->text_buf));
896fbe20 861
35b2b163 862 atomic64_set(&user->seq, prb_first_valid_seq(prb));
e11fea92
KS
863
864 file->private_data = user;
865 return 0;
866}
867
868static int devkmsg_release(struct inode *inode, struct file *file)
869{
870 struct devkmsg_user *user = file->private_data;
871
872 if (!user)
873 return 0;
874
750afe7b
BP
875 ratelimit_state_exit(&user->rs);
876
e11fea92
KS
877 mutex_destroy(&user->lock);
878 kfree(user);
879 return 0;
880}
881
882const struct file_operations kmsg_fops = {
883 .open = devkmsg_open,
884 .read = devkmsg_read,
849f3127 885 .write_iter = devkmsg_write,
e11fea92
KS
886 .llseek = devkmsg_llseek,
887 .poll = devkmsg_poll,
888 .release = devkmsg_release,
889};
890
692f66f2 891#ifdef CONFIG_CRASH_CORE
04d491ab 892/*
4c1ace64 893 * This appends the listed symbols to /proc/vmcore
04d491ab 894 *
4c1ace64 895 * /proc/vmcore is used by various utilities, like crash and makedumpfile to
04d491ab
NH
896 * obtain access to symbols that are otherwise very difficult to locate. These
897 * symbols are specifically used so that utilities can access and extract the
898 * dmesg log from a vmcore file after a crash.
899 */
692f66f2 900void log_buf_vmcoreinfo_setup(void)
04d491ab 901{
74caba7f
JO
902 struct dev_printk_info *dev_info = NULL;
903
896fbe20
JO
904 VMCOREINFO_SYMBOL(prb);
905 VMCOREINFO_SYMBOL(printk_rb_static);
906 VMCOREINFO_SYMBOL(clear_seq);
907
6791457a 908 /*
896fbe20 909 * Export struct size and field offsets. User space tools can
6791457a
VG
910 * parse it and detect any changes to structure down the line.
911 */
896fbe20
JO
912
913 VMCOREINFO_STRUCT_SIZE(printk_ringbuffer);
914 VMCOREINFO_OFFSET(printk_ringbuffer, desc_ring);
915 VMCOREINFO_OFFSET(printk_ringbuffer, text_data_ring);
896fbe20
JO
916 VMCOREINFO_OFFSET(printk_ringbuffer, fail);
917
918 VMCOREINFO_STRUCT_SIZE(prb_desc_ring);
919 VMCOREINFO_OFFSET(prb_desc_ring, count_bits);
920 VMCOREINFO_OFFSET(prb_desc_ring, descs);
cfe2790b 921 VMCOREINFO_OFFSET(prb_desc_ring, infos);
896fbe20
JO
922 VMCOREINFO_OFFSET(prb_desc_ring, head_id);
923 VMCOREINFO_OFFSET(prb_desc_ring, tail_id);
924
925 VMCOREINFO_STRUCT_SIZE(prb_desc);
896fbe20
JO
926 VMCOREINFO_OFFSET(prb_desc, state_var);
927 VMCOREINFO_OFFSET(prb_desc, text_blk_lpos);
896fbe20
JO
928
929 VMCOREINFO_STRUCT_SIZE(prb_data_blk_lpos);
930 VMCOREINFO_OFFSET(prb_data_blk_lpos, begin);
931 VMCOREINFO_OFFSET(prb_data_blk_lpos, next);
932
933 VMCOREINFO_STRUCT_SIZE(printk_info);
934 VMCOREINFO_OFFSET(printk_info, seq);
935 VMCOREINFO_OFFSET(printk_info, ts_nsec);
936 VMCOREINFO_OFFSET(printk_info, text_len);
896fbe20 937 VMCOREINFO_OFFSET(printk_info, caller_id);
74caba7f
JO
938 VMCOREINFO_OFFSET(printk_info, dev_info);
939
940 VMCOREINFO_STRUCT_SIZE(dev_printk_info);
941 VMCOREINFO_OFFSET(dev_printk_info, subsystem);
942 VMCOREINFO_LENGTH(printk_info_subsystem, sizeof(dev_info->subsystem));
943 VMCOREINFO_OFFSET(dev_printk_info, device);
944 VMCOREINFO_LENGTH(printk_info_device, sizeof(dev_info->device));
896fbe20
JO
945
946 VMCOREINFO_STRUCT_SIZE(prb_data_ring);
947 VMCOREINFO_OFFSET(prb_data_ring, size_bits);
948 VMCOREINFO_OFFSET(prb_data_ring, data);
949 VMCOREINFO_OFFSET(prb_data_ring, head_lpos);
950 VMCOREINFO_OFFSET(prb_data_ring, tail_lpos);
951
952 VMCOREINFO_SIZE(atomic_long_t);
953 VMCOREINFO_TYPE_OFFSET(atomic_long_t, counter);
7d7a23a9
JO
954
955 VMCOREINFO_STRUCT_SIZE(latched_seq);
956 VMCOREINFO_OFFSET(latched_seq, val);
04d491ab
NH
957}
958#endif
959
162a7e75
MT
960/* requested log_buf_len from kernel cmdline */
961static unsigned long __initdata new_log_buf_len;
962
c0a318a3 963/* we practice scaling the ring buffer by powers of 2 */
e6fe3e5b 964static void __init log_buf_len_update(u64 size)
1da177e4 965{
e6fe3e5b
HZ
966 if (size > (u64)LOG_BUF_LEN_MAX) {
967 size = (u64)LOG_BUF_LEN_MAX;
968 pr_err("log_buf over 2G is not supported.\n");
969 }
970
1da177e4
LT
971 if (size)
972 size = roundup_pow_of_two(size);
162a7e75 973 if (size > log_buf_len)
e6fe3e5b 974 new_log_buf_len = (unsigned long)size;
c0a318a3
LR
975}
976
977/* save requested log_buf_len since it's too early to process it */
978static int __init log_buf_len_setup(char *str)
979{
e6fe3e5b 980 u64 size;
277fcdb2
HZ
981
982 if (!str)
983 return -EINVAL;
984
985 size = memparse(str, &str);
c0a318a3
LR
986
987 log_buf_len_update(size);
162a7e75
MT
988
989 return 0;
1da177e4 990}
162a7e75
MT
991early_param("log_buf_len", log_buf_len_setup);
992
2240a31d
GU
993#ifdef CONFIG_SMP
994#define __LOG_CPU_MAX_BUF_LEN (1 << CONFIG_LOG_CPU_MAX_BUF_SHIFT)
995
23b2899f
LR
996static void __init log_buf_add_cpu(void)
997{
998 unsigned int cpu_extra;
999
1000 /*
1001 * archs should set up cpu_possible_bits properly with
1002 * set_cpu_possible() after setup_arch() but just in
1003 * case lets ensure this is valid.
1004 */
1005 if (num_possible_cpus() == 1)
1006 return;
1007
1008 cpu_extra = (num_possible_cpus() - 1) * __LOG_CPU_MAX_BUF_LEN;
1009
1010 /* by default this will only continue through for large > 64 CPUs */
1011 if (cpu_extra <= __LOG_BUF_LEN / 2)
1012 return;
1013
1014 pr_info("log_buf_len individual max cpu contribution: %d bytes\n",
1015 __LOG_CPU_MAX_BUF_LEN);
1016 pr_info("log_buf_len total cpu_extra contributions: %d bytes\n",
1017 cpu_extra);
1018 pr_info("log_buf_len min size: %d bytes\n", __LOG_BUF_LEN);
1019
1020 log_buf_len_update(cpu_extra + __LOG_BUF_LEN);
1021}
2240a31d
GU
1022#else /* !CONFIG_SMP */
1023static inline void log_buf_add_cpu(void) {}
1024#endif /* CONFIG_SMP */
23b2899f 1025
ab6f762f
SS
1026static void __init set_percpu_data_ready(void)
1027{
ab6f762f
SS
1028 __printk_percpu_data_ready = true;
1029}
1030
896fbe20
JO
1031static unsigned int __init add_to_rb(struct printk_ringbuffer *rb,
1032 struct printk_record *r)
1033{
1034 struct prb_reserved_entry e;
1035 struct printk_record dest_r;
1036
f35efc78 1037 prb_rec_init_wr(&dest_r, r->info->text_len);
896fbe20
JO
1038
1039 if (!prb_reserve(&e, rb, &dest_r))
1040 return 0;
1041
cc5c7041
JO
1042 memcpy(&dest_r.text_buf[0], &r->text_buf[0], r->info->text_len);
1043 dest_r.info->text_len = r->info->text_len;
896fbe20
JO
1044 dest_r.info->facility = r->info->facility;
1045 dest_r.info->level = r->info->level;
1046 dest_r.info->flags = r->info->flags;
1047 dest_r.info->ts_nsec = r->info->ts_nsec;
1048 dest_r.info->caller_id = r->info->caller_id;
74caba7f 1049 memcpy(&dest_r.info->dev_info, &r->info->dev_info, sizeof(dest_r.info->dev_info));
896fbe20 1050
f5f022e5 1051 prb_final_commit(&e);
896fbe20
JO
1052
1053 return prb_record_text_space(&e);
1054}
1055
0463d04e 1056static char setup_text_buf[LOG_LINE_MAX] __initdata;
896fbe20 1057
162a7e75
MT
1058void __init setup_log_buf(int early)
1059{
cfe2790b 1060 struct printk_info *new_infos;
896fbe20
JO
1061 unsigned int new_descs_count;
1062 struct prb_desc *new_descs;
1063 struct printk_info info;
1064 struct printk_record r;
93d102f0 1065 unsigned int text_size;
896fbe20 1066 size_t new_descs_size;
cfe2790b 1067 size_t new_infos_size;
162a7e75 1068 unsigned long flags;
162a7e75 1069 char *new_log_buf;
d2130e82 1070 unsigned int free;
896fbe20 1071 u64 seq;
162a7e75 1072
ab6f762f
SS
1073 /*
1074 * Some archs call setup_log_buf() multiple times - first is very
1075 * early, e.g. from setup_arch(), and second - when percpu_areas
1076 * are initialised.
1077 */
1078 if (!early)
1079 set_percpu_data_ready();
1080
23b2899f
LR
1081 if (log_buf != __log_buf)
1082 return;
1083
1084 if (!early && !new_log_buf_len)
1085 log_buf_add_cpu();
1086
162a7e75
MT
1087 if (!new_log_buf_len)
1088 return;
1da177e4 1089
896fbe20
JO
1090 new_descs_count = new_log_buf_len >> PRB_AVGBITS;
1091 if (new_descs_count == 0) {
1092 pr_err("new_log_buf_len: %lu too small\n", new_log_buf_len);
1093 return;
1094 }
1095
26fb3dae 1096 new_log_buf = memblock_alloc(new_log_buf_len, LOG_ALIGN);
162a7e75 1097 if (unlikely(!new_log_buf)) {
896fbe20
JO
1098 pr_err("log_buf_len: %lu text bytes not available\n",
1099 new_log_buf_len);
162a7e75
MT
1100 return;
1101 }
1102
896fbe20
JO
1103 new_descs_size = new_descs_count * sizeof(struct prb_desc);
1104 new_descs = memblock_alloc(new_descs_size, LOG_ALIGN);
1105 if (unlikely(!new_descs)) {
1106 pr_err("log_buf_len: %zu desc bytes not available\n",
1107 new_descs_size);
f35efc78 1108 goto err_free_log_buf;
cfe2790b
JO
1109 }
1110
1111 new_infos_size = new_descs_count * sizeof(struct printk_info);
1112 new_infos = memblock_alloc(new_infos_size, LOG_ALIGN);
1113 if (unlikely(!new_infos)) {
1114 pr_err("log_buf_len: %zu info bytes not available\n",
1115 new_infos_size);
1116 goto err_free_descs;
896fbe20
JO
1117 }
1118
f35efc78 1119 prb_rec_init_rd(&r, &info, &setup_text_buf[0], sizeof(setup_text_buf));
896fbe20
JO
1120
1121 prb_init(&printk_rb_dynamic,
1122 new_log_buf, ilog2(new_log_buf_len),
cfe2790b
JO
1123 new_descs, ilog2(new_descs_count),
1124 new_infos);
896fbe20 1125
93d102f0 1126 local_irq_save(flags);
896fbe20 1127
162a7e75
MT
1128 log_buf_len = new_log_buf_len;
1129 log_buf = new_log_buf;
1130 new_log_buf_len = 0;
896fbe20
JO
1131
1132 free = __LOG_BUF_LEN;
93d102f0
JO
1133 prb_for_each_record(0, &printk_rb_static, seq, &r) {
1134 text_size = add_to_rb(&printk_rb_dynamic, &r);
1135 if (text_size > free)
1136 free = 0;
1137 else
1138 free -= text_size;
1139 }
896fbe20 1140
896fbe20
JO
1141 prb = &printk_rb_dynamic;
1142
93d102f0
JO
1143 local_irq_restore(flags);
1144
1145 /*
1146 * Copy any remaining messages that might have appeared from
1147 * NMI context after copying but before switching to the
1148 * dynamic buffer.
1149 */
1150 prb_for_each_record(seq, &printk_rb_static, seq, &r) {
1151 text_size = add_to_rb(&printk_rb_dynamic, &r);
1152 if (text_size > free)
1153 free = 0;
1154 else
1155 free -= text_size;
1156 }
162a7e75 1157
896fbe20
JO
1158 if (seq != prb_next_seq(&printk_rb_static)) {
1159 pr_err("dropped %llu messages\n",
1160 prb_next_seq(&printk_rb_static) - seq);
1161 }
1162
e6fe3e5b
HZ
1163 pr_info("log_buf_len: %u bytes\n", log_buf_len);
1164 pr_info("early log buf free: %u(%u%%)\n",
162a7e75 1165 free, (free * 100) / __LOG_BUF_LEN);
cfe2790b
JO
1166 return;
1167
1168err_free_descs:
1169 memblock_free(__pa(new_descs), new_descs_size);
cfe2790b
JO
1170err_free_log_buf:
1171 memblock_free(__pa(new_log_buf), new_log_buf_len);
162a7e75 1172}
1da177e4 1173
2fa72c8f
AC
1174static bool __read_mostly ignore_loglevel;
1175
1176static int __init ignore_loglevel_setup(char *str)
1177{
d25d9fec 1178 ignore_loglevel = true;
27083bac 1179 pr_info("debug: ignoring loglevel setting.\n");
2fa72c8f
AC
1180
1181 return 0;
1182}
1183
1184early_param("ignore_loglevel", ignore_loglevel_setup);
1185module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR);
205bd3d2
JP
1186MODULE_PARM_DESC(ignore_loglevel,
1187 "ignore loglevel setting (prints all kernel messages to the console)");
2fa72c8f 1188
cf775444
SS
1189static bool suppress_message_printing(int level)
1190{
1191 return (level >= console_loglevel && !ignore_loglevel);
1192}
1193
bfe8df3d
RD
1194#ifdef CONFIG_BOOT_PRINTK_DELAY
1195
674dff65 1196static int boot_delay; /* msecs delay after each printk during bootup */
3a3b6ed2 1197static unsigned long long loops_per_msec; /* based on boot_delay */
bfe8df3d
RD
1198
1199static int __init boot_delay_setup(char *str)
1200{
1201 unsigned long lpj;
bfe8df3d
RD
1202
1203 lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */
1204 loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
1205
1206 get_option(&str, &boot_delay);
1207 if (boot_delay > 10 * 1000)
1208 boot_delay = 0;
1209
3a3b6ed2
DY
1210 pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
1211 "HZ: %d, loops_per_msec: %llu\n",
1212 boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
29e9d225 1213 return 0;
bfe8df3d 1214}
29e9d225 1215early_param("boot_delay", boot_delay_setup);
bfe8df3d 1216
2fa72c8f 1217static void boot_delay_msec(int level)
bfe8df3d
RD
1218{
1219 unsigned long long k;
1220 unsigned long timeout;
1221
ff48cd26 1222 if ((boot_delay == 0 || system_state >= SYSTEM_RUNNING)
cf775444 1223 || suppress_message_printing(level)) {
bfe8df3d 1224 return;
2fa72c8f 1225 }
bfe8df3d 1226
3a3b6ed2 1227 k = (unsigned long long)loops_per_msec * boot_delay;
bfe8df3d
RD
1228
1229 timeout = jiffies + msecs_to_jiffies(boot_delay);
1230 while (k) {
1231 k--;
1232 cpu_relax();
1233 /*
1234 * use (volatile) jiffies to prevent
1235 * compiler reduction; loop termination via jiffies
1236 * is secondary and may or may not happen.
1237 */
1238 if (time_after(jiffies, timeout))
1239 break;
1240 touch_nmi_watchdog();
1241 }
1242}
1243#else
2fa72c8f 1244static inline void boot_delay_msec(int level)
bfe8df3d
RD
1245{
1246}
1247#endif
1248
e99aa461 1249static bool printk_time = IS_ENABLED(CONFIG_PRINTK_TIME);
7ff9554b
KS
1250module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
1251
07c17732 1252static size_t print_syslog(unsigned int level, char *buf)
084681d1 1253{
07c17732
TH
1254 return sprintf(buf, "<%u>", level);
1255}
35dac27c 1256
084681d1
KS
1257static size_t print_time(u64 ts, char *buf)
1258{
e80c1a9d 1259 unsigned long rem_nsec = do_div(ts, 1000000000);
084681d1 1260
15ff2069 1261 return sprintf(buf, "[%5lu.%06lu]",
084681d1
KS
1262 (unsigned long)ts, rem_nsec / 1000);
1263}
1264
15ff2069
TH
1265#ifdef CONFIG_PRINTK_CALLER
1266static size_t print_caller(u32 id, char *buf)
1267{
1268 char caller[12];
1269
1270 snprintf(caller, sizeof(caller), "%c%u",
1271 id & 0x80000000 ? 'C' : 'T', id & ~0x80000000);
1272 return sprintf(buf, "[%6s]", caller);
1273}
1274#else
1275#define print_caller(id, buf) 0
1276#endif
1277
896fbe20
JO
1278static size_t info_print_prefix(const struct printk_info *info, bool syslog,
1279 bool time, char *buf)
649e6ee3 1280{
3ce9a7c0 1281 size_t len = 0;
649e6ee3 1282
07c17732 1283 if (syslog)
896fbe20 1284 len = print_syslog((info->facility << 3) | info->level, buf);
15ff2069 1285
e80c1a9d 1286 if (time)
896fbe20 1287 len += print_time(info->ts_nsec, buf + len);
15ff2069 1288
896fbe20 1289 len += print_caller(info->caller_id, buf + len);
15ff2069
TH
1290
1291 if (IS_ENABLED(CONFIG_PRINTK_CALLER) || time) {
1292 buf[len++] = ' ';
1293 buf[len] = '\0';
1294 }
1295
3ce9a7c0 1296 return len;
649e6ee3
KS
1297}
1298
896fbe20
JO
1299/*
1300 * Prepare the record for printing. The text is shifted within the given
1301 * buffer to avoid a need for another one. The following operations are
1302 * done:
1303 *
1304 * - Add prefix for each line.
f0e386ee 1305 * - Drop truncated lines that no longer fit into the buffer.
896fbe20 1306 * - Add the trailing newline that has been removed in vprintk_store().
f0e386ee
JO
1307 * - Add a string terminator.
1308 *
1309 * Since the produced string is always terminated, the maximum possible
1310 * return value is @r->text_buf_size - 1;
896fbe20
JO
1311 *
1312 * Return: The length of the updated/prepared text, including the added
f0e386ee
JO
1313 * prefixes and the newline. The terminator is not counted. The dropped
1314 * line(s) are not counted.
896fbe20
JO
1315 */
1316static size_t record_print_text(struct printk_record *r, bool syslog,
1317 bool time)
7ff9554b 1318{
896fbe20
JO
1319 size_t text_len = r->info->text_len;
1320 size_t buf_size = r->text_buf_size;
1321 char *text = r->text_buf;
07c17732 1322 char prefix[PREFIX_MAX];
896fbe20
JO
1323 bool truncated = false;
1324 size_t prefix_len;
1325 size_t line_len;
1326 size_t len = 0;
1327 char *next;
3ce9a7c0 1328
59f8bcca
JO
1329 /*
1330 * If the message was truncated because the buffer was not large
1331 * enough, treat the available text as if it were the full text.
1332 */
1333 if (text_len > buf_size)
1334 text_len = buf_size;
3ce9a7c0 1335
896fbe20 1336 prefix_len = info_print_prefix(r->info, syslog, time, prefix);
3ce9a7c0 1337
896fbe20
JO
1338 /*
1339 * @text_len: bytes of unprocessed text
1340 * @line_len: bytes of current line _without_ newline
1341 * @text: pointer to beginning of current line
1342 * @len: number of bytes prepared in r->text_buf
1343 */
1344 for (;;) {
1345 next = memchr(text, '\n', text_len);
3ce9a7c0 1346 if (next) {
896fbe20 1347 line_len = next - text;
3ce9a7c0 1348 } else {
896fbe20
JO
1349 /* Drop truncated line(s). */
1350 if (truncated)
1351 break;
1352 line_len = text_len;
3ce9a7c0 1353 }
7ff9554b 1354
896fbe20
JO
1355 /*
1356 * Truncate the text if there is not enough space to add the
f0e386ee 1357 * prefix and a trailing newline and a terminator.
896fbe20 1358 */
f0e386ee 1359 if (len + prefix_len + text_len + 1 + 1 > buf_size) {
896fbe20 1360 /* Drop even the current line if no space. */
f0e386ee 1361 if (len + prefix_len + line_len + 1 + 1 > buf_size)
3ce9a7c0 1362 break;
7ff9554b 1363
f0e386ee 1364 text_len = buf_size - len - prefix_len - 1 - 1;
896fbe20 1365 truncated = true;
3ce9a7c0 1366 }
7ff9554b 1367
896fbe20
JO
1368 memmove(text + prefix_len, text, text_len);
1369 memcpy(text, prefix, prefix_len);
1370
f0e386ee
JO
1371 /*
1372 * Increment the prepared length to include the text and
1373 * prefix that were just moved+copied. Also increment for the
1374 * newline at the end of this line. If this is the last line,
1375 * there is no newline, but it will be added immediately below.
1376 */
896fbe20 1377 len += prefix_len + line_len + 1;
896fbe20
JO
1378 if (text_len == line_len) {
1379 /*
f0e386ee
JO
1380 * This is the last line. Add the trailing newline
1381 * removed in vprintk_store().
896fbe20
JO
1382 */
1383 text[prefix_len + line_len] = '\n';
1384 break;
1385 }
1386
1387 /*
1388 * Advance beyond the added prefix and the related line with
1389 * its newline.
1390 */
1391 text += prefix_len + line_len + 1;
1392
1393 /*
1394 * The remaining text has only decreased by the line with its
1395 * newline.
1396 *
1397 * Note that @text_len can become zero. It happens when @text
1398 * ended with a newline (either due to truncation or the
1399 * original string ending with "\n\n"). The loop is correctly
1400 * repeated and (if not truncated) an empty line with a prefix
1401 * will be prepared.
1402 */
1403 text_len -= line_len + 1;
1404 }
7ff9554b 1405
f0e386ee
JO
1406 /*
1407 * If a buffer was provided, it will be terminated. Space for the
1408 * string terminator is guaranteed to be available. The terminator is
1409 * not counted in the return value.
1410 */
1411 if (buf_size > 0)
08d60e59 1412 r->text_buf[len] = 0;
f0e386ee 1413
7ff9554b
KS
1414 return len;
1415}
1416
896fbe20
JO
1417static size_t get_record_print_text_size(struct printk_info *info,
1418 unsigned int line_count,
1419 bool syslog, bool time)
1420{
1421 char prefix[PREFIX_MAX];
1422 size_t prefix_len;
1423
1424 prefix_len = info_print_prefix(info, syslog, time, prefix);
1425
1426 /*
1427 * Each line will be preceded with a prefix. The intermediate
1428 * newlines are already within the text, but a final trailing
1429 * newline will be added.
1430 */
1431 return ((prefix_len * line_count) + info->text_len + 1);
1432}
1433
4260e0e5
JO
1434/*
1435 * Beginning with @start_seq, find the first record where it and all following
1436 * records up to (but not including) @max_seq fit into @size.
1437 *
1438 * @max_seq is simply an upper bound and does not need to exist. If the caller
1439 * does not require an upper bound, -1 can be used for @max_seq.
1440 */
1441static u64 find_first_fitting_seq(u64 start_seq, u64 max_seq, size_t size,
1442 bool syslog, bool time)
1443{
1444 struct printk_info info;
1445 unsigned int line_count;
1446 size_t len = 0;
1447 u64 seq;
1448
1449 /* Determine the size of the records up to @max_seq. */
1450 prb_for_each_info(start_seq, prb, seq, &info, &line_count) {
1451 if (info.seq >= max_seq)
1452 break;
1453 len += get_record_print_text_size(&info, line_count, syslog, time);
1454 }
1455
1456 /*
1457 * Adjust the upper bound for the next loop to avoid subtracting
1458 * lengths that were never added.
1459 */
1460 if (seq < max_seq)
1461 max_seq = seq;
1462
1463 /*
1464 * Move first record forward until length fits into the buffer. Ignore
1465 * newest messages that were not counted in the above cycle. Messages
1466 * might appear and get lost in the meantime. This is a best effort
1467 * that prevents an infinite loop that could occur with a retry.
1468 */
1469 prb_for_each_info(start_seq, prb, seq, &info, &line_count) {
1470 if (len <= size || info.seq >= max_seq)
1471 break;
1472 len -= get_record_print_text_size(&info, line_count, syslog, time);
1473 }
1474
1475 return seq;
1476}
1477
8d909b23 1478/* The caller is responsible for making sure @size is greater than 0. */
7ff9554b
KS
1479static int syslog_print(char __user *buf, int size)
1480{
896fbe20
JO
1481 struct printk_info info;
1482 struct printk_record r;
7ff9554b 1483 char *text;
116e90b2 1484 int len = 0;
8d909b23 1485 u64 seq;
7ff9554b 1486
cf5b0208 1487 text = kmalloc(CONSOLE_LOG_MAX, GFP_KERNEL);
7ff9554b
KS
1488 if (!text)
1489 return -ENOMEM;
1490
cf5b0208 1491 prb_rec_init_rd(&r, &info, text, CONSOLE_LOG_MAX);
896fbe20 1492
8d909b23
JO
1493 mutex_lock(&syslog_lock);
1494
1495 /*
1496 * Wait for the @syslog_seq record to be available. @syslog_seq may
1497 * change while waiting.
1498 */
1499 do {
1500 seq = syslog_seq;
1501
1502 mutex_unlock(&syslog_lock);
1503 len = wait_event_interruptible(log_wait, prb_read_valid(prb, seq, NULL));
1504 mutex_lock(&syslog_lock);
1505
1506 if (len)
1507 goto out;
1508 } while (syslog_seq != seq);
1509
1510 /*
1511 * Copy records that fit into the buffer. The above cycle makes sure
1512 * that the first record is always available.
1513 */
1514 do {
116e90b2 1515 size_t n;
eb02dac9 1516 size_t skip;
8d909b23 1517 int err;
116e90b2 1518
8d909b23 1519 if (!prb_read_valid(prb, syslog_seq, &r))
116e90b2 1520 break;
8d909b23 1521
896fbe20
JO
1522 if (r.info->seq != syslog_seq) {
1523 /* message is gone, move to next valid one */
1524 syslog_seq = r.info->seq;
1525 syslog_partial = 0;
1526 }
eb02dac9 1527
e80c1a9d
TH
1528 /*
1529 * To keep reading/counting partial line consistent,
1530 * use printk_time value as of the beginning of a line.
1531 */
1532 if (!syslog_partial)
1533 syslog_time = printk_time;
1534
eb02dac9 1535 skip = syslog_partial;
896fbe20 1536 n = record_print_text(&r, true, syslog_time);
eb02dac9
KS
1537 if (n - syslog_partial <= size) {
1538 /* message fits into buffer, move forward */
896fbe20 1539 syslog_seq = r.info->seq + 1;
eb02dac9
KS
1540 n -= syslog_partial;
1541 syslog_partial = 0;
1542 } else if (!len){
1543 /* partial read(), remember position */
1544 n = size;
1545 syslog_partial += n;
116e90b2
JB
1546 } else
1547 n = 0;
116e90b2
JB
1548
1549 if (!n)
1550 break;
1551
8d909b23
JO
1552 mutex_unlock(&syslog_lock);
1553 err = copy_to_user(buf, text + skip, n);
1554 mutex_lock(&syslog_lock);
1555
1556 if (err) {
116e90b2
JB
1557 if (!len)
1558 len = -EFAULT;
1559 break;
1560 }
eb02dac9
KS
1561
1562 len += n;
1563 size -= n;
1564 buf += n;
8d909b23
JO
1565 } while (size);
1566out:
1567 mutex_unlock(&syslog_lock);
7ff9554b
KS
1568 kfree(text);
1569 return len;
1570}
1571
1572static int syslog_print_all(char __user *buf, int size, bool clear)
1573{
896fbe20 1574 struct printk_info info;
896fbe20 1575 struct printk_record r;
7ff9554b
KS
1576 char *text;
1577 int len = 0;
63842c21 1578 u64 seq;
e80c1a9d 1579 bool time;
63842c21 1580
cf5b0208 1581 text = kmalloc(CONSOLE_LOG_MAX, GFP_KERNEL);
7ff9554b
KS
1582 if (!text)
1583 return -ENOMEM;
1584
e80c1a9d 1585 time = printk_time;
63842c21
NG
1586 /*
1587 * Find first record that fits, including all following records,
1588 * into the user-provided buffer for this dump.
1589 */
7d7a23a9
JO
1590 seq = find_first_fitting_seq(latched_seq_read_nolock(&clear_seq), -1,
1591 size, true, time);
7ff9554b 1592
cf5b0208 1593 prb_rec_init_rd(&r, &info, text, CONSOLE_LOG_MAX);
7ff9554b 1594
63842c21 1595 len = 0;
896fbe20
JO
1596 prb_for_each_record(seq, prb, seq, &r) {
1597 int textlen;
7ff9554b 1598
896fbe20
JO
1599 textlen = record_print_text(&r, true, time);
1600
1601 if (len + textlen > size) {
1602 seq--;
1603 break;
1604 }
7ff9554b 1605
63842c21
NG
1606 if (copy_to_user(buf + len, text, textlen))
1607 len = -EFAULT;
1608 else
1609 len += textlen;
7ff9554b 1610
896fbe20
JO
1611 if (len < 0)
1612 break;
7ff9554b
KS
1613 }
1614
636babdc 1615 if (clear) {
b371cbb5 1616 mutex_lock(&syslog_lock);
7d7a23a9 1617 latched_seq_write(&clear_seq, seq);
b371cbb5 1618 mutex_unlock(&syslog_lock);
636babdc 1619 }
7ff9554b
KS
1620
1621 kfree(text);
1622 return len;
1623}
1624
8599dc7d
PM
1625static void syslog_clear(void)
1626{
b371cbb5 1627 mutex_lock(&syslog_lock);
7d7a23a9 1628 latched_seq_write(&clear_seq, prb_next_seq(prb));
b371cbb5 1629 mutex_unlock(&syslog_lock);
636babdc
JO
1630}
1631
3ea4331c 1632int do_syslog(int type, char __user *buf, int len, int source)
1da177e4 1633{
13791c80 1634 struct printk_info info;
7ff9554b 1635 bool clear = false;
a39d4a85 1636 static int saved_console_loglevel = LOGLEVEL_DEFAULT;
ee24aebf 1637 int error;
1da177e4 1638
3ea4331c 1639 error = check_syslog_permissions(type, source);
ee24aebf 1640 if (error)
077a1cc0 1641 return error;
12b3052c 1642
1da177e4 1643 switch (type) {
d78ca3cd 1644 case SYSLOG_ACTION_CLOSE: /* Close log */
1da177e4 1645 break;
d78ca3cd 1646 case SYSLOG_ACTION_OPEN: /* Open log */
1da177e4 1647 break;
d78ca3cd 1648 case SYSLOG_ACTION_READ: /* Read from log */
1da177e4 1649 if (!buf || len < 0)
077a1cc0 1650 return -EINVAL;
1da177e4 1651 if (!len)
077a1cc0 1652 return 0;
96d4f267 1653 if (!access_ok(buf, len))
077a1cc0 1654 return -EFAULT;
7ff9554b 1655 error = syslog_print(buf, len);
1da177e4 1656 break;
d78ca3cd
KC
1657 /* Read/clear last kernel messages */
1658 case SYSLOG_ACTION_READ_CLEAR:
7ff9554b 1659 clear = true;
4e797e6e 1660 fallthrough;
d78ca3cd
KC
1661 /* Read last kernel messages */
1662 case SYSLOG_ACTION_READ_ALL:
1da177e4 1663 if (!buf || len < 0)
077a1cc0 1664 return -EINVAL;
1da177e4 1665 if (!len)
077a1cc0 1666 return 0;
96d4f267 1667 if (!access_ok(buf, len))
077a1cc0 1668 return -EFAULT;
7ff9554b 1669 error = syslog_print_all(buf, len, clear);
1da177e4 1670 break;
d78ca3cd
KC
1671 /* Clear ring buffer */
1672 case SYSLOG_ACTION_CLEAR:
8599dc7d 1673 syslog_clear();
4661e356 1674 break;
d78ca3cd
KC
1675 /* Disable logging to console */
1676 case SYSLOG_ACTION_CONSOLE_OFF:
a39d4a85 1677 if (saved_console_loglevel == LOGLEVEL_DEFAULT)
1aaad49e 1678 saved_console_loglevel = console_loglevel;
1da177e4
LT
1679 console_loglevel = minimum_console_loglevel;
1680 break;
d78ca3cd
KC
1681 /* Enable logging to console */
1682 case SYSLOG_ACTION_CONSOLE_ON:
a39d4a85 1683 if (saved_console_loglevel != LOGLEVEL_DEFAULT) {
1aaad49e 1684 console_loglevel = saved_console_loglevel;
a39d4a85 1685 saved_console_loglevel = LOGLEVEL_DEFAULT;
1aaad49e 1686 }
1da177e4 1687 break;
d78ca3cd
KC
1688 /* Set level of messages printed to console */
1689 case SYSLOG_ACTION_CONSOLE_LEVEL:
1da177e4 1690 if (len < 1 || len > 8)
077a1cc0 1691 return -EINVAL;
1da177e4
LT
1692 if (len < minimum_console_loglevel)
1693 len = minimum_console_loglevel;
1694 console_loglevel = len;
1aaad49e 1695 /* Implicitly re-enable logging to console */
a39d4a85 1696 saved_console_loglevel = LOGLEVEL_DEFAULT;
1da177e4 1697 break;
d78ca3cd
KC
1698 /* Number of chars in the log buffer */
1699 case SYSLOG_ACTION_SIZE_UNREAD:
b371cbb5 1700 mutex_lock(&syslog_lock);
13791c80
JO
1701 if (!prb_read_valid_info(prb, syslog_seq, &info, NULL)) {
1702 /* No unread messages. */
b371cbb5 1703 mutex_unlock(&syslog_lock);
13791c80
JO
1704 return 0;
1705 }
1706 if (info.seq != syslog_seq) {
7ff9554b 1707 /* messages are gone, move to first one */
13791c80 1708 syslog_seq = info.seq;
eb02dac9 1709 syslog_partial = 0;
7ff9554b 1710 }
3ea4331c 1711 if (source == SYSLOG_FROM_PROC) {
7ff9554b
KS
1712 /*
1713 * Short-cut for poll(/"proc/kmsg") which simply checks
1714 * for pending data, not the size; return the count of
1715 * records, not the length.
1716 */
896fbe20 1717 error = prb_next_seq(prb) - syslog_seq;
7ff9554b 1718 } else {
e80c1a9d 1719 bool time = syslog_partial ? syslog_time : printk_time;
896fbe20
JO
1720 unsigned int line_count;
1721 u64 seq;
1722
1723 prb_for_each_info(syslog_seq, prb, seq, &info,
1724 &line_count) {
1725 error += get_record_print_text_size(&info, line_count,
1726 true, time);
e80c1a9d 1727 time = printk_time;
7ff9554b 1728 }
eb02dac9 1729 error -= syslog_partial;
7ff9554b 1730 }
b371cbb5 1731 mutex_unlock(&syslog_lock);
1da177e4 1732 break;
d78ca3cd
KC
1733 /* Size of the log buffer */
1734 case SYSLOG_ACTION_SIZE_BUFFER:
1da177e4
LT
1735 error = log_buf_len;
1736 break;
1737 default:
1738 error = -EINVAL;
1739 break;
1740 }
077a1cc0 1741
1da177e4
LT
1742 return error;
1743}
1744
1e7bfb21 1745SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
1da177e4 1746{
637241a9 1747 return do_syslog(type, buf, len, SYSLOG_FROM_READER);
1da177e4
LT
1748}
1749
c162d5b4
PM
1750/*
1751 * Special console_lock variants that help to reduce the risk of soft-lockups.
1752 * They allow to pass console_lock to another printk() call using a busy wait.
1753 */
1754
1755#ifdef CONFIG_LOCKDEP
1756static struct lockdep_map console_owner_dep_map = {
1757 .name = "console_owner"
1758};
1759#endif
1760
1761static DEFINE_RAW_SPINLOCK(console_owner_lock);
1762static struct task_struct *console_owner;
1763static bool console_waiter;
1764
1765/**
1766 * console_lock_spinning_enable - mark beginning of code where another
1767 * thread might safely busy wait
1768 *
1769 * This basically converts console_lock into a spinlock. This marks
1770 * the section where the console_lock owner can not sleep, because
1771 * there may be a waiter spinning (like a spinlock). Also it must be
1772 * ready to hand over the lock at the end of the section.
1773 */
1774static void console_lock_spinning_enable(void)
1775{
1776 raw_spin_lock(&console_owner_lock);
1777 console_owner = current;
1778 raw_spin_unlock(&console_owner_lock);
1779
1780 /* The waiter may spin on us after setting console_owner */
1781 spin_acquire(&console_owner_dep_map, 0, 0, _THIS_IP_);
1782}
1783
1784/**
1785 * console_lock_spinning_disable_and_check - mark end of code where another
1786 * thread was able to busy wait and check if there is a waiter
1787 *
1788 * This is called at the end of the section where spinning is allowed.
1789 * It has two functions. First, it is a signal that it is no longer
1790 * safe to start busy waiting for the lock. Second, it checks if
1791 * there is a busy waiter and passes the lock rights to her.
1792 *
1793 * Important: Callers lose the lock if there was a busy waiter.
1794 * They must not touch items synchronized by console_lock
1795 * in this case.
1796 *
1797 * Return: 1 if the lock rights were passed, 0 otherwise.
1798 */
1799static int console_lock_spinning_disable_and_check(void)
1800{
1801 int waiter;
1802
1803 raw_spin_lock(&console_owner_lock);
1804 waiter = READ_ONCE(console_waiter);
1805 console_owner = NULL;
1806 raw_spin_unlock(&console_owner_lock);
1807
1808 if (!waiter) {
5facae4f 1809 spin_release(&console_owner_dep_map, _THIS_IP_);
c162d5b4
PM
1810 return 0;
1811 }
1812
1813 /* The waiter is now free to continue */
1814 WRITE_ONCE(console_waiter, false);
1815
5facae4f 1816 spin_release(&console_owner_dep_map, _THIS_IP_);
c162d5b4
PM
1817
1818 /*
1819 * Hand off console_lock to waiter. The waiter will perform
1820 * the up(). After this, the waiter is the console_lock owner.
1821 */
5facae4f 1822 mutex_release(&console_lock_dep_map, _THIS_IP_);
c162d5b4
PM
1823 return 1;
1824}
1825
1826/**
1827 * console_trylock_spinning - try to get console_lock by busy waiting
1828 *
1829 * This allows to busy wait for the console_lock when the current
1830 * owner is running in specially marked sections. It means that
1831 * the current owner is running and cannot reschedule until it
1832 * is ready to lose the lock.
1833 *
1834 * Return: 1 if we got the lock, 0 othrewise
1835 */
1836static int console_trylock_spinning(void)
1837{
1838 struct task_struct *owner = NULL;
1839 bool waiter;
1840 bool spin = false;
1841 unsigned long flags;
1842
1843 if (console_trylock())
1844 return 1;
1845
1846 printk_safe_enter_irqsave(flags);
1847
1848 raw_spin_lock(&console_owner_lock);
1849 owner = READ_ONCE(console_owner);
1850 waiter = READ_ONCE(console_waiter);
1851 if (!waiter && owner && owner != current) {
1852 WRITE_ONCE(console_waiter, true);
1853 spin = true;
1854 }
1855 raw_spin_unlock(&console_owner_lock);
1856
1857 /*
1858 * If there is an active printk() writing to the
1859 * consoles, instead of having it write our data too,
1860 * see if we can offload that load from the active
1861 * printer, and do some printing ourselves.
1862 * Go into a spin only if there isn't already a waiter
1863 * spinning, and there is an active printer, and
1864 * that active printer isn't us (recursive printk?).
1865 */
1866 if (!spin) {
1867 printk_safe_exit_irqrestore(flags);
1868 return 0;
1869 }
1870
1871 /* We spin waiting for the owner to release us */
1872 spin_acquire(&console_owner_dep_map, 0, 0, _THIS_IP_);
1873 /* Owner will clear console_waiter on hand off */
1874 while (READ_ONCE(console_waiter))
1875 cpu_relax();
5facae4f 1876 spin_release(&console_owner_dep_map, _THIS_IP_);
c162d5b4
PM
1877
1878 printk_safe_exit_irqrestore(flags);
1879 /*
1880 * The owner passed the console lock to us.
1881 * Since we did not spin on console lock, annotate
1882 * this as a trylock. Otherwise lockdep will
1883 * complain.
1884 */
1885 mutex_acquire(&console_lock_dep_map, 0, 1, _THIS_IP_);
1886
1887 return 1;
1888}
1889
1da177e4
LT
1890/*
1891 * Call the console drivers, asking them to write out
1892 * log_buf[start] to log_buf[end - 1].
ac751efa 1893 * The console_lock must be held.
1da177e4 1894 */
d9c23523 1895static void call_console_drivers(const char *ext_text, size_t ext_len,
6fe29354 1896 const char *text, size_t len)
1da177e4 1897{
896fbe20
JO
1898 static char dropped_text[64];
1899 size_t dropped_len = 0;
7ff9554b 1900 struct console *con;
1da177e4 1901
fc98c3c8 1902 trace_console_rcuidle(text, len);
7ff9554b 1903
896fbe20
JO
1904 if (!console_drivers)
1905 return;
1906
1907 if (console_dropped) {
1908 dropped_len = snprintf(dropped_text, sizeof(dropped_text),
1909 "** %lu printk messages dropped **\n",
1910 console_dropped);
1911 console_dropped = 0;
1912 }
1913
7ff9554b
KS
1914 for_each_console(con) {
1915 if (exclusive_console && con != exclusive_console)
1916 continue;
1917 if (!(con->flags & CON_ENABLED))
1918 continue;
1919 if (!con->write)
1920 continue;
1921 if (!cpu_online(smp_processor_id()) &&
1922 !(con->flags & CON_ANYTIME))
1923 continue;
6fe29354
TH
1924 if (con->flags & CON_EXTENDED)
1925 con->write(con, ext_text, ext_len);
896fbe20
JO
1926 else {
1927 if (dropped_len)
1928 con->write(con, dropped_text, dropped_len);
6fe29354 1929 con->write(con, text, len);
896fbe20 1930 }
7ff9554b 1931 }
1da177e4
LT
1932}
1933
002eb6ad
JO
1934/*
1935 * Recursion is tracked separately on each CPU. If NMIs are supported, an
1936 * additional NMI context per CPU is also separately tracked. Until per-CPU
1937 * is available, a separate "early tracking" is performed.
1938 */
1939static DEFINE_PER_CPU(u8, printk_count);
1940static u8 printk_count_early;
1941#ifdef CONFIG_HAVE_NMI
1942static DEFINE_PER_CPU(u8, printk_count_nmi);
1943static u8 printk_count_nmi_early;
1944#endif
1945
1946/*
1947 * Recursion is limited to keep the output sane. printk() should not require
1948 * more than 1 level of recursion (allowing, for example, printk() to trigger
1949 * a WARN), but a higher value is used in case some printk-internal errors
1950 * exist, such as the ringbuffer validation checks failing.
1951 */
1952#define PRINTK_MAX_RECURSION 3
1953
1954/*
1955 * Return a pointer to the dedicated counter for the CPU+context of the
1956 * caller.
1957 */
1958static u8 *__printk_recursion_counter(void)
1959{
1960#ifdef CONFIG_HAVE_NMI
1961 if (in_nmi()) {
1962 if (printk_percpu_data_ready())
1963 return this_cpu_ptr(&printk_count_nmi);
1964 return &printk_count_nmi_early;
1965 }
1966#endif
1967 if (printk_percpu_data_ready())
1968 return this_cpu_ptr(&printk_count);
1969 return &printk_count_early;
1970}
1971
1972/*
1973 * Enter recursion tracking. Interrupts are disabled to simplify tracking.
1974 * The caller must check the boolean return value to see if the recursion is
1975 * allowed. On failure, interrupts are not disabled.
1976 *
1977 * @recursion_ptr must be a variable of type (u8 *) and is the same variable
1978 * that is passed to printk_exit_irqrestore().
1979 */
1980#define printk_enter_irqsave(recursion_ptr, flags) \
1981({ \
1982 bool success = true; \
1983 \
1984 typecheck(u8 *, recursion_ptr); \
1985 local_irq_save(flags); \
1986 (recursion_ptr) = __printk_recursion_counter(); \
1987 if (*(recursion_ptr) > PRINTK_MAX_RECURSION) { \
1988 local_irq_restore(flags); \
1989 success = false; \
1990 } else { \
1991 (*(recursion_ptr))++; \
1992 } \
1993 success; \
1994})
1995
1996/* Exit recursion tracking, restoring interrupts. */
1997#define printk_exit_irqrestore(recursion_ptr, flags) \
1998 do { \
1999 typecheck(u8 *, recursion_ptr); \
2000 (*(recursion_ptr))--; \
2001 local_irq_restore(flags); \
2002 } while (0)
2003
af91322e
DY
2004int printk_delay_msec __read_mostly;
2005
2006static inline void printk_delay(void)
2007{
2008 if (unlikely(printk_delay_msec)) {
2009 int m = printk_delay_msec;
2010
2011 while (m--) {
2012 mdelay(1);
2013 touch_nmi_watchdog();
2014 }
2015 }
2016}
2017
cbae05d3
TH
2018static inline u32 printk_caller_id(void)
2019{
2020 return in_task() ? task_pid_nr(current) :
2021 0x80000000 + raw_smp_processor_id();
2022}
2023
b031a684 2024/**
f3d75cf5 2025 * printk_parse_prefix - Parse level and control flags.
b031a684
JO
2026 *
2027 * @text: The terminated text message.
2028 * @level: A pointer to the current level value, will be updated.
a1ad4b8a 2029 * @flags: A pointer to the current printk_info flags, will be updated.
b031a684
JO
2030 *
2031 * @level may be NULL if the caller is not interested in the parsed value.
2032 * Otherwise the variable pointed to by @level must be set to
2033 * LOGLEVEL_DEFAULT in order to be updated with the parsed value.
2034 *
a1ad4b8a
CD
2035 * @flags may be NULL if the caller is not interested in the parsed value.
2036 * Otherwise the variable pointed to by @flags will be OR'd with the parsed
b031a684
JO
2037 * value.
2038 *
2039 * Return: The length of the parsed level and control flags.
2040 */
f3d75cf5 2041u16 printk_parse_prefix(const char *text, int *level,
a1ad4b8a 2042 enum printk_info_flags *flags)
c362c7ff 2043{
b031a684
JO
2044 u16 prefix_len = 0;
2045 int kern_level;
cbae05d3 2046
b031a684
JO
2047 while (*text) {
2048 kern_level = printk_get_level(text);
2049 if (!kern_level)
2050 break;
f5f022e5 2051
b031a684
JO
2052 switch (kern_level) {
2053 case '0' ... '7':
2054 if (level && *level == LOGLEVEL_DEFAULT)
2055 *level = kern_level - '0';
2056 break;
2057 case 'c': /* KERN_CONT */
a1ad4b8a
CD
2058 if (flags)
2059 *flags |= LOG_CONT;
b031a684
JO
2060 }
2061
2062 prefix_len += 2;
2063 text += 2;
2064 }
2065
2066 return prefix_len;
2067}
2068
a1ad4b8a
CD
2069static u16 printk_sprint(char *text, u16 size, int facility,
2070 enum printk_info_flags *flags, const char *fmt,
2071 va_list args)
b031a684
JO
2072{
2073 u16 text_len;
2074
2075 text_len = vscnprintf(text, size, fmt, args);
2076
2077 /* Mark and strip a trailing newline. */
2078 if (text_len && text[text_len - 1] == '\n') {
2079 text_len--;
a1ad4b8a 2080 *flags |= LOG_NEWLINE;
b031a684
JO
2081 }
2082
2083 /* Strip log level and control flags. */
2084 if (facility == 0) {
2085 u16 prefix_len;
2086
f3d75cf5 2087 prefix_len = printk_parse_prefix(text, NULL, NULL);
b031a684
JO
2088 if (prefix_len) {
2089 text_len -= prefix_len;
2090 memmove(text, text + prefix_len, text_len);
f5f022e5 2091 }
c362c7ff
LT
2092 }
2093
b031a684 2094 return text_len;
c362c7ff
LT
2095}
2096
b031a684 2097__printf(4, 0)
ba552399 2098int vprintk_store(int facility, int level,
74caba7f 2099 const struct dev_printk_info *dev_info,
ba552399 2100 const char *fmt, va_list args)
1da177e4 2101{
6b916706 2102 const u32 caller_id = printk_caller_id();
6b916706 2103 struct prb_reserved_entry e;
a1ad4b8a 2104 enum printk_info_flags flags = 0;
6b916706 2105 struct printk_record r;
002eb6ad 2106 unsigned long irqflags;
6b916706 2107 u16 trunc_msg_len = 0;
b031a684 2108 char prefix_buf[8];
002eb6ad 2109 u8 *recursion_ptr;
b031a684
JO
2110 u16 reserve_size;
2111 va_list args2;
6b916706 2112 u16 text_len;
002eb6ad 2113 int ret = 0;
6b916706 2114 u64 ts_nsec;
bfe8df3d 2115
7ff9554b 2116 /*
6b916706
JO
2117 * Since the duration of printk() can vary depending on the message
2118 * and state of the ringbuffer, grab the timestamp now so that it is
2119 * close to the call of printk(). This provides a more deterministic
2120 * timestamp with respect to the caller.
7ff9554b 2121 */
6b916706 2122 ts_nsec = local_clock();
5fd29d6c 2123
002eb6ad
JO
2124 if (!printk_enter_irqsave(recursion_ptr, irqflags))
2125 return 0;
2126
7ff9554b 2127 /*
b031a684
JO
2128 * The sprintf needs to come first since the syslog prefix might be
2129 * passed in as a parameter. An extra byte must be reserved so that
2130 * later the vscnprintf() into the reserved buffer has room for the
2131 * terminating '\0', which is not counted by vsnprintf().
7ff9554b 2132 */
b031a684
JO
2133 va_copy(args2, args);
2134 reserve_size = vsnprintf(&prefix_buf[0], sizeof(prefix_buf), fmt, args2) + 1;
2135 va_end(args2);
9d90c8d9 2136
b031a684
JO
2137 if (reserve_size > LOG_LINE_MAX)
2138 reserve_size = LOG_LINE_MAX;
088a52aa 2139
b031a684
JO
2140 /* Extract log level or control flags. */
2141 if (facility == 0)
f3d75cf5 2142 printk_parse_prefix(&prefix_buf[0], &level, &flags);
5fd29d6c 2143
a39d4a85 2144 if (level == LOGLEVEL_DEFAULT)
c313af14 2145 level = default_message_loglevel;
9d90c8d9 2146
74caba7f 2147 if (dev_info)
a1ad4b8a 2148 flags |= LOG_NEWLINE;
9d90c8d9 2149
a1ad4b8a 2150 if (flags & LOG_CONT) {
b031a684 2151 prb_rec_init_wr(&r, reserve_size);
6b916706 2152 if (prb_reserve_in_last(&e, prb, &r, caller_id, LOG_LINE_MAX)) {
b031a684 2153 text_len = printk_sprint(&r.text_buf[r.info->text_len], reserve_size,
a1ad4b8a 2154 facility, &flags, fmt, args);
6b916706 2155 r.info->text_len += text_len;
088a52aa 2156
a1ad4b8a 2157 if (flags & LOG_NEWLINE) {
6b916706
JO
2158 r.info->flags |= LOG_NEWLINE;
2159 prb_final_commit(&e);
2160 } else {
2161 prb_commit(&e);
088a52aa 2162 }
4bcc595c 2163
002eb6ad
JO
2164 ret = text_len;
2165 goto out;
5fd29d6c
LT
2166 }
2167 }
2168
6b916706
JO
2169 /*
2170 * Explicitly initialize the record before every prb_reserve() call.
2171 * prb_reserve_in_last() and prb_reserve() purposely invalidate the
2172 * structure when they fail.
2173 */
b031a684 2174 prb_rec_init_wr(&r, reserve_size);
6b916706
JO
2175 if (!prb_reserve(&e, prb, &r)) {
2176 /* truncate the message if it is too long for empty buffer */
b031a684 2177 truncate_msg(&reserve_size, &trunc_msg_len);
9d90c8d9 2178
b031a684 2179 prb_rec_init_wr(&r, reserve_size + trunc_msg_len);
6b916706 2180 if (!prb_reserve(&e, prb, &r))
002eb6ad 2181 goto out;
6b916706
JO
2182 }
2183
2184 /* fill message */
a1ad4b8a 2185 text_len = printk_sprint(&r.text_buf[0], reserve_size, facility, &flags, fmt, args);
6b916706
JO
2186 if (trunc_msg_len)
2187 memcpy(&r.text_buf[text_len], trunc_msg, trunc_msg_len);
2188 r.info->text_len = text_len + trunc_msg_len;
2189 r.info->facility = facility;
2190 r.info->level = level & 7;
a1ad4b8a 2191 r.info->flags = flags & 0x1f;
6b916706
JO
2192 r.info->ts_nsec = ts_nsec;
2193 r.info->caller_id = caller_id;
74caba7f 2194 if (dev_info)
6b916706 2195 memcpy(&r.info->dev_info, dev_info, sizeof(r.info->dev_info));
ac60ad74 2196
6b916706 2197 /* A message without a trailing newline can be continued. */
a1ad4b8a 2198 if (!(flags & LOG_NEWLINE))
6b916706
JO
2199 prb_commit(&e);
2200 else
2201 prb_final_commit(&e);
2202
002eb6ad
JO
2203 ret = text_len + trunc_msg_len;
2204out:
2205 printk_exit_irqrestore(recursion_ptr, irqflags);
2206 return ret;
ba552399 2207}
1da177e4 2208
ba552399 2209asmlinkage int vprintk_emit(int facility, int level,
74caba7f 2210 const struct dev_printk_info *dev_info,
ba552399
PM
2211 const char *fmt, va_list args)
2212{
2213 int printed_len;
8749efc0 2214 bool in_sched = false;
ba552399 2215
c39ea0b9
FT
2216 /* Suppress unimportant messages after panic happens */
2217 if (unlikely(suppress_printk))
2218 return 0;
2219
ba552399
PM
2220 if (level == LOGLEVEL_SCHED) {
2221 level = LOGLEVEL_DEFAULT;
2222 in_sched = true;
2223 }
2224
2225 boot_delay_msec(level);
2226 printk_delay();
2227
74caba7f 2228 printed_len = vprintk_store(facility, level, dev_info, fmt, args);
939f04be 2229
458df9fd 2230 /* If called from the scheduler, we can not call up(). */
8749efc0 2231 if (!in_sched) {
fd5f7cde
SS
2232 /*
2233 * Disable preemption to avoid being preempted while holding
2234 * console_sem which would prevent anyone from printing to
2235 * console
2236 */
2237 preempt_disable();
d18bbc21
AM
2238 /*
2239 * Try to acquire and then immediately release the console
2240 * semaphore. The release will print out buffers and wake up
2241 * /dev/kmsg and syslog() users.
2242 */
c162d5b4 2243 if (console_trylock_spinning())
d18bbc21 2244 console_unlock();
fd5f7cde 2245 preempt_enable();
d18bbc21 2246 }
76a8ad29 2247
8749efc0 2248 wake_up_klogd();
1da177e4
LT
2249 return printed_len;
2250}
7ff9554b
KS
2251EXPORT_SYMBOL(vprintk_emit);
2252
a0cba217 2253int vprintk_default(const char *fmt, va_list args)
afdc34a3 2254{
74caba7f 2255 return vprintk_emit(0, LOGLEVEL_DEFAULT, NULL, fmt, args);
afdc34a3
SRRH
2256}
2257EXPORT_SYMBOL_GPL(vprintk_default);
2258
33701557 2259asmlinkage __visible int _printk(const char *fmt, ...)
7ff9554b
KS
2260{
2261 va_list args;
2262 int r;
2263
7ff9554b 2264 va_start(args, fmt);
28e1745b 2265 r = vprintk(fmt, args);
7ff9554b
KS
2266 va_end(args);
2267
2268 return r;
2269}
33701557 2270EXPORT_SYMBOL(_printk);
7f3a781d 2271
96efedf1 2272#else /* CONFIG_PRINTK */
d59745ce 2273
cf5b0208 2274#define CONSOLE_LOG_MAX 0
e80c1a9d 2275#define printk_time false
249771b8 2276
896fbe20
JO
2277#define prb_read_valid(rb, seq, r) false
2278#define prb_first_valid_seq(rb) 0
2279
96efedf1 2280static u64 syslog_seq;
eab07260 2281static u64 console_seq;
f92b070f 2282static u64 exclusive_console_stop_seq;
896fbe20
JO
2283static unsigned long console_dropped;
2284
2285static size_t record_print_text(const struct printk_record *r,
2286 bool syslog, bool time)
2287{
2288 return 0;
2289}
2290static ssize_t info_print_ext_header(char *buf, size_t size,
2291 struct printk_info *info)
2292{
2293 return 0;
2294}
6fe29354 2295static ssize_t msg_print_ext_body(char *buf, size_t size,
74caba7f
JO
2296 char *text, size_t text_len,
2297 struct dev_printk_info *dev_info) { return 0; }
c162d5b4
PM
2298static void console_lock_spinning_enable(void) { }
2299static int console_lock_spinning_disable_and_check(void) { return 0; }
d9c23523 2300static void call_console_drivers(const char *ext_text, size_t ext_len,
6fe29354 2301 const char *text, size_t len) {}
a6ae928c 2302static bool suppress_message_printing(int level) { return false; }
d59745ce 2303
7f3a781d 2304#endif /* CONFIG_PRINTK */
d59745ce 2305
d0380e6c
TG
2306#ifdef CONFIG_EARLY_PRINTK
2307struct console *early_console;
2308
722a9f92 2309asmlinkage __visible void early_printk(const char *fmt, ...)
d0380e6c
TG
2310{
2311 va_list ap;
1dc6244b
JP
2312 char buf[512];
2313 int n;
2314
2315 if (!early_console)
2316 return;
d0380e6c
TG
2317
2318 va_start(ap, fmt);
1dc6244b 2319 n = vscnprintf(buf, sizeof(buf), fmt, ap);
d0380e6c 2320 va_end(ap);
1dc6244b
JP
2321
2322 early_console->write(early_console, buf, n);
d0380e6c
TG
2323}
2324#endif
2325
f7511d5f 2326static int __add_preferred_console(char *name, int idx, char *options,
e369d822 2327 char *brl_options, bool user_specified)
f7511d5f
ST
2328{
2329 struct console_cmdline *c;
2330 int i;
2331
2332 /*
2333 * See if this tty is not yet registered, and
2334 * if we have a slot free.
2335 */
dac8bbba
PM
2336 for (i = 0, c = console_cmdline;
2337 i < MAX_CMDLINECONSOLES && c->name[0];
2338 i++, c++) {
23475408 2339 if (strcmp(c->name, name) == 0 && c->index == idx) {
dac8bbba
PM
2340 if (!brl_options)
2341 preferred_console = i;
e369d822
BH
2342 if (user_specified)
2343 c->user_specified = true;
23475408 2344 return 0;
f7511d5f 2345 }
23475408 2346 }
f7511d5f
ST
2347 if (i == MAX_CMDLINECONSOLES)
2348 return -E2BIG;
2349 if (!brl_options)
ad86ee2b 2350 preferred_console = i;
f7511d5f
ST
2351 strlcpy(c->name, name, sizeof(c->name));
2352 c->options = options;
e369d822 2353 c->user_specified = user_specified;
bbeddf52
JP
2354 braille_set_options(c, brl_options);
2355
f7511d5f
ST
2356 c->index = idx;
2357 return 0;
2358}
cca10d58
SS
2359
2360static int __init console_msg_format_setup(char *str)
2361{
2362 if (!strcmp(str, "syslog"))
2363 console_msg_format = MSG_FORMAT_SYSLOG;
2364 if (!strcmp(str, "default"))
2365 console_msg_format = MSG_FORMAT_DEFAULT;
2366 return 1;
2367}
2368__setup("console_msg_format=", console_msg_format_setup);
2369
2ea1c539 2370/*
0b90fec3
AE
2371 * Set up a console. Called via do_early_param() in init/main.c
2372 * for each "console=" parameter in the boot command line.
2ea1c539
JB
2373 */
2374static int __init console_setup(char *str)
2375{
0b90fec3 2376 char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for "ttyS" */
f7511d5f 2377 char *s, *options, *brl_options = NULL;
2ea1c539
JB
2378 int idx;
2379
3cffa06a
PM
2380 /*
2381 * console="" or console=null have been suggested as a way to
2382 * disable console output. Use ttynull that has been created
acebb559 2383 * for exactly this purpose.
3cffa06a
PM
2384 */
2385 if (str[0] == 0 || strcmp(str, "null") == 0) {
2386 __add_preferred_console("ttynull", 0, NULL, NULL, true);
48021f98 2387 return 1;
3cffa06a 2388 }
48021f98 2389
bbeddf52
JP
2390 if (_braille_console_setup(&str, &brl_options))
2391 return 1;
f7511d5f 2392
2ea1c539
JB
2393 /*
2394 * Decode str into name, index, options.
2395 */
2396 if (str[0] >= '0' && str[0] <= '9') {
eaa944af
YL
2397 strcpy(buf, "ttyS");
2398 strncpy(buf + 4, str, sizeof(buf) - 5);
2ea1c539 2399 } else {
eaa944af 2400 strncpy(buf, str, sizeof(buf) - 1);
2ea1c539 2401 }
eaa944af 2402 buf[sizeof(buf) - 1] = 0;
249771b8
AE
2403 options = strchr(str, ',');
2404 if (options)
2ea1c539
JB
2405 *(options++) = 0;
2406#ifdef __sparc__
2407 if (!strcmp(str, "ttya"))
eaa944af 2408 strcpy(buf, "ttyS0");
2ea1c539 2409 if (!strcmp(str, "ttyb"))
eaa944af 2410 strcpy(buf, "ttyS1");
2ea1c539 2411#endif
eaa944af 2412 for (s = buf; *s; s++)
249771b8 2413 if (isdigit(*s) || *s == ',')
2ea1c539
JB
2414 break;
2415 idx = simple_strtoul(s, NULL, 10);
2416 *s = 0;
2417
e369d822 2418 __add_preferred_console(buf, idx, options, brl_options, true);
9e124fe1 2419 console_set_on_cmdline = 1;
2ea1c539
JB
2420 return 1;
2421}
2422__setup("console=", console_setup);
2423
3c0547ba
MM
2424/**
2425 * add_preferred_console - add a device to the list of preferred consoles.
ddad86c2
MW
2426 * @name: device name
2427 * @idx: device index
2428 * @options: options for this console
3c0547ba
MM
2429 *
2430 * The last preferred console added will be used for kernel messages
2431 * and stdin/out/err for init. Normally this is used by console_setup
2432 * above to handle user-supplied console arguments; however it can also
2433 * be used by arch-specific code either to override the user or more
2434 * commonly to provide a default console (ie from PROM variables) when
2435 * the user has not supplied one.
2436 */
fb445ee5 2437int add_preferred_console(char *name, int idx, char *options)
3c0547ba 2438{
e369d822 2439 return __add_preferred_console(name, idx, options, NULL, false);
3c0547ba
MM
2440}
2441
d25d9fec 2442bool console_suspend_enabled = true;
8f4ce8c3
AS
2443EXPORT_SYMBOL(console_suspend_enabled);
2444
2445static int __init console_suspend_disable(char *str)
2446{
d25d9fec 2447 console_suspend_enabled = false;
8f4ce8c3
AS
2448 return 1;
2449}
2450__setup("no_console_suspend", console_suspend_disable);
134620f7
YZ
2451module_param_named(console_suspend, console_suspend_enabled,
2452 bool, S_IRUGO | S_IWUSR);
2453MODULE_PARM_DESC(console_suspend, "suspend console during suspend"
2454 " and hibernate operations");
8f4ce8c3 2455
10102a89
DS
2456static bool printk_console_no_auto_verbose;
2457
2458void console_verbose(void)
2459{
2460 if (console_loglevel && !printk_console_no_auto_verbose)
2461 console_loglevel = CONSOLE_LOGLEVEL_MOTORMOUTH;
2462}
2463EXPORT_SYMBOL_GPL(console_verbose);
2464
2465module_param_named(console_no_auto_verbose, printk_console_no_auto_verbose, bool, 0644);
2466MODULE_PARM_DESC(console_no_auto_verbose, "Disable console loglevel raise to highest on oops/panic/etc");
2467
557240b4
LT
2468/**
2469 * suspend_console - suspend the console subsystem
2470 *
2471 * This disables printk() while we go into suspend states
2472 */
2473void suspend_console(void)
2474{
8f4ce8c3
AS
2475 if (!console_suspend_enabled)
2476 return;
47319f71 2477 pr_info("Suspending console(s) (use no_console_suspend to debug)\n");
ac751efa 2478 console_lock();
557240b4 2479 console_suspended = 1;
bd8d7cf5 2480 up_console_sem();
557240b4
LT
2481}
2482
2483void resume_console(void)
2484{
8f4ce8c3
AS
2485 if (!console_suspend_enabled)
2486 return;
bd8d7cf5 2487 down_console_sem();
557240b4 2488 console_suspended = 0;
ac751efa 2489 console_unlock();
557240b4
LT
2490}
2491
034260d6
KC
2492/**
2493 * console_cpu_notify - print deferred console messages after CPU hotplug
90b14889 2494 * @cpu: unused
034260d6
KC
2495 *
2496 * If printk() is called from a CPU that is not online yet, the messages
64ca752d
SS
2497 * will be printed on the console only if there are CON_ANYTIME consoles.
2498 * This function is called when a new CPU comes online (or fails to come
2499 * up) or goes offline.
034260d6 2500 */
90b14889
SAS
2501static int console_cpu_notify(unsigned int cpu)
2502{
f97960fb 2503 if (!cpuhp_tasks_frozen) {
64ca752d
SS
2504 /* If trylock fails, someone else is doing the printing */
2505 if (console_trylock())
2506 console_unlock();
034260d6 2507 }
90b14889 2508 return 0;
034260d6
KC
2509}
2510
1da177e4 2511/**
ac751efa 2512 * console_lock - lock the console system for exclusive use.
1da177e4 2513 *
ac751efa 2514 * Acquires a lock which guarantees that the caller has
1da177e4
LT
2515 * exclusive access to the console system and the console_drivers list.
2516 *
2517 * Can sleep, returns nothing.
2518 */
ac751efa 2519void console_lock(void)
1da177e4 2520{
6b898c07
DV
2521 might_sleep();
2522
bd8d7cf5 2523 down_console_sem();
403f3075
AH
2524 if (console_suspended)
2525 return;
1da177e4
LT
2526 console_locked = 1;
2527 console_may_schedule = 1;
2528}
ac751efa 2529EXPORT_SYMBOL(console_lock);
1da177e4 2530
ac751efa
TH
2531/**
2532 * console_trylock - try to lock the console system for exclusive use.
2533 *
0b90fec3
AE
2534 * Try to acquire a lock which guarantees that the caller has exclusive
2535 * access to the console system and the console_drivers list.
ac751efa
TH
2536 *
2537 * returns 1 on success, and 0 on failure to acquire the lock.
2538 */
2539int console_trylock(void)
1da177e4 2540{
bd8d7cf5 2541 if (down_trylock_console_sem())
ac751efa 2542 return 0;
403f3075 2543 if (console_suspended) {
bd8d7cf5 2544 up_console_sem();
ac751efa 2545 return 0;
403f3075 2546 }
1da177e4 2547 console_locked = 1;
fd5f7cde 2548 console_may_schedule = 0;
ac751efa 2549 return 1;
1da177e4 2550}
ac751efa 2551EXPORT_SYMBOL(console_trylock);
1da177e4
LT
2552
2553int is_console_locked(void)
2554{
2555 return console_locked;
2556}
d48de54a 2557EXPORT_SYMBOL(is_console_locked);
1da177e4 2558
a8199371
SS
2559/*
2560 * Check if we have any console that is capable of printing while cpu is
2561 * booting or shutting down. Requires console_sem.
2562 */
2563static int have_callable_console(void)
2564{
2565 struct console *con;
2566
2567 for_each_console(con)
adaf6590
SS
2568 if ((con->flags & CON_ENABLED) &&
2569 (con->flags & CON_ANYTIME))
a8199371
SS
2570 return 1;
2571
2572 return 0;
2573}
2574
2575/*
2576 * Can we actually use the console at this time on this cpu?
2577 *
2578 * Console drivers may assume that per-cpu resources have been allocated. So
2579 * unless they're explicitly marked as being able to cope (CON_ANYTIME) don't
2580 * call them until this CPU is officially up.
2581 */
2582static inline int can_use_console(void)
2583{
2584 return cpu_online(raw_smp_processor_id()) || have_callable_console();
2585}
2586
1da177e4 2587/**
ac751efa 2588 * console_unlock - unlock the console system
1da177e4 2589 *
ac751efa 2590 * Releases the console_lock which the caller holds on the console system
1da177e4
LT
2591 * and the console driver list.
2592 *
ac751efa
TH
2593 * While the console_lock was held, console output may have been buffered
2594 * by printk(). If this is the case, console_unlock(); emits
2595 * the output prior to releasing the lock.
1da177e4 2596 *
7f3a781d 2597 * If there is output waiting, we wake /dev/kmsg and syslog() users.
1da177e4 2598 *
ac751efa 2599 * console_unlock(); may be called from any context.
1da177e4 2600 */
ac751efa 2601void console_unlock(void)
1da177e4 2602{
6fe29354 2603 static char ext_text[CONSOLE_EXT_LOG_MAX];
cf5b0208 2604 static char text[CONSOLE_LOG_MAX];
1da177e4 2605 unsigned long flags;
8d91f8b1 2606 bool do_cond_resched, retry;
896fbe20
JO
2607 struct printk_info info;
2608 struct printk_record r;
11e4b63a 2609 u64 __maybe_unused next_seq;
1da177e4 2610
557240b4 2611 if (console_suspended) {
bd8d7cf5 2612 up_console_sem();
557240b4
LT
2613 return;
2614 }
78944e54 2615
f35efc78 2616 prb_rec_init_rd(&r, &info, text, sizeof(text));
896fbe20 2617
8d91f8b1 2618 /*
257ab443 2619 * Console drivers are called with interrupts disabled, so
8d91f8b1
TH
2620 * @console_may_schedule should be cleared before; however, we may
2621 * end up dumping a lot of lines, for example, if called from
2622 * console registration path, and should invoke cond_resched()
2623 * between lines if allowable. Not doing so can cause a very long
2624 * scheduling stall on a slow console leading to RCU stall and
2625 * softlockup warnings which exacerbate the issue with more
2626 * messages practically incapacitating the system.
257ab443
PM
2627 *
2628 * console_trylock() is not able to detect the preemptive
2629 * context reliably. Therefore the value must be stored before
547bbf7d 2630 * and cleared after the "again" goto label.
8d91f8b1
TH
2631 */
2632 do_cond_resched = console_may_schedule;
257ab443 2633again:
78944e54
AD
2634 console_may_schedule = 0;
2635
a8199371
SS
2636 /*
2637 * We released the console_sem lock, so we need to recheck if
2638 * cpu is online and (if not) is there at least one CON_ANYTIME
2639 * console.
2640 */
2641 if (!can_use_console()) {
2642 console_locked = 0;
2643 up_console_sem();
2644 return;
2645 }
2646
7ff9554b 2647 for (;;) {
6fe29354 2648 size_t ext_len = 0;
93d102f0 2649 int handover;
3ce9a7c0 2650 size_t len;
7ff9554b 2651
084681d1 2652skip:
896fbe20 2653 if (!prb_read_valid(prb, console_seq, &r))
7ff9554b
KS
2654 break;
2655
896fbe20
JO
2656 if (console_seq != r.info->seq) {
2657 console_dropped += r.info->seq - console_seq;
2658 console_seq = r.info->seq;
2659 }
2660
2661 if (suppress_message_printing(r.info->level)) {
084681d1 2662 /*
a6ae928c
PM
2663 * Skip record we have buffered and already printed
2664 * directly to the console when we received it, and
2665 * record that has level above the console loglevel.
084681d1 2666 */
084681d1
KS
2667 console_seq++;
2668 goto skip;
2669 }
649e6ee3 2670
f92b070f
PM
2671 /* Output to all consoles once old messages replayed. */
2672 if (unlikely(exclusive_console &&
2673 console_seq >= exclusive_console_stop_seq)) {
2674 exclusive_console = NULL;
2675 }
2676
896fbe20
JO
2677 /*
2678 * Handle extended console text first because later
2679 * record_print_text() will modify the record buffer in-place.
2680 */
6fe29354 2681 if (nr_ext_console_drivers) {
896fbe20 2682 ext_len = info_print_ext_header(ext_text,
6fe29354 2683 sizeof(ext_text),
896fbe20 2684 r.info);
6fe29354
TH
2685 ext_len += msg_print_ext_body(ext_text + ext_len,
2686 sizeof(ext_text) - ext_len,
896fbe20 2687 &r.text_buf[0],
74caba7f
JO
2688 r.info->text_len,
2689 &r.info->dev_info);
6fe29354 2690 }
896fbe20
JO
2691 len = record_print_text(&r,
2692 console_msg_format & MSG_FORMAT_SYSLOG,
2693 printk_time);
7ff9554b 2694 console_seq++;
7ff9554b 2695
dbdda842
SRV
2696 /*
2697 * While actively printing out messages, if another printk()
2698 * were to occur on another CPU, it may wait for this one to
2699 * finish. This task can not be preempted if there is a
2700 * waiter waiting to take over.
93d102f0
JO
2701 *
2702 * Interrupts are disabled because the hand over to a waiter
2703 * must not be interrupted until the hand over is completed
2704 * (@console_waiter is cleared).
dbdda842 2705 */
93d102f0 2706 printk_safe_enter_irqsave(flags);
c162d5b4 2707 console_lock_spinning_enable();
dbdda842 2708
81d68a96 2709 stop_critical_timings(); /* don't trace print latency */
d9c23523 2710 call_console_drivers(ext_text, ext_len, text, len);
81d68a96 2711 start_critical_timings();
dbdda842 2712
93d102f0 2713 handover = console_lock_spinning_disable_and_check();
f975237b 2714 printk_safe_exit_irqrestore(flags);
93d102f0
JO
2715 if (handover)
2716 return;
8d91f8b1
TH
2717
2718 if (do_cond_resched)
2719 cond_resched();
1da177e4 2720 }
dbdda842 2721
11e4b63a
PM
2722 /* Get consistent value of the next-to-be-used sequence number. */
2723 next_seq = console_seq;
fe3d8ad3 2724
11e4b63a 2725 console_locked = 0;
bd8d7cf5 2726 up_console_sem();
4f2a8d3c
PZ
2727
2728 /*
2729 * Someone could have filled up the buffer again, so re-check if there's
2730 * something to flush. In case we cannot trylock the console_sem again,
2731 * there's a new owner and the console_unlock() from them will do the
2732 * flush, no worries.
2733 */
11e4b63a 2734 retry = prb_read_valid(prb, next_seq, NULL);
4f2a8d3c
PZ
2735 if (retry && console_trylock())
2736 goto again;
1da177e4 2737}
ac751efa 2738EXPORT_SYMBOL(console_unlock);
1da177e4 2739
ddad86c2
MW
2740/**
2741 * console_conditional_schedule - yield the CPU if required
1da177e4
LT
2742 *
2743 * If the console code is currently allowed to sleep, and
2744 * if this CPU should yield the CPU to another task, do
2745 * so here.
2746 *
ac751efa 2747 * Must be called within console_lock();.
1da177e4
LT
2748 */
2749void __sched console_conditional_schedule(void)
2750{
2751 if (console_may_schedule)
2752 cond_resched();
2753}
2754EXPORT_SYMBOL(console_conditional_schedule);
2755
1da177e4
LT
2756void console_unblank(void)
2757{
2758 struct console *c;
2759
2760 /*
2761 * console_unblank can no longer be called in interrupt context unless
2762 * oops_in_progress is set to 1..
2763 */
2764 if (oops_in_progress) {
bd8d7cf5 2765 if (down_trylock_console_sem() != 0)
1da177e4
LT
2766 return;
2767 } else
ac751efa 2768 console_lock();
1da177e4
LT
2769
2770 console_locked = 1;
2771 console_may_schedule = 0;
4d091611 2772 for_each_console(c)
1da177e4
LT
2773 if ((c->flags & CON_ENABLED) && c->unblank)
2774 c->unblank();
ac751efa 2775 console_unlock();
1da177e4 2776}
1da177e4 2777
8d91f8b1
TH
2778/**
2779 * console_flush_on_panic - flush console content on panic
de6da1e8 2780 * @mode: flush all messages in buffer or just the pending ones
8d91f8b1
TH
2781 *
2782 * Immediately output all pending messages no matter what.
2783 */
de6da1e8 2784void console_flush_on_panic(enum con_flush_mode mode)
8d91f8b1
TH
2785{
2786 /*
2787 * If someone else is holding the console lock, trylock will fail
2788 * and may_schedule may be set. Ignore and proceed to unlock so
2789 * that messages are flushed out. As this can be called from any
2790 * context and we don't want to get preempted while flushing,
2791 * ensure may_schedule is cleared.
2792 */
2793 console_trylock();
2794 console_may_schedule = 0;
de6da1e8 2795
93d102f0 2796 if (mode == CONSOLE_REPLAY_ALL)
896fbe20 2797 console_seq = prb_first_valid_seq(prb);
8d91f8b1
TH
2798 console_unlock();
2799}
2800
1da177e4
LT
2801/*
2802 * Return the console tty driver structure and its associated index
2803 */
2804struct tty_driver *console_device(int *index)
2805{
2806 struct console *c;
2807 struct tty_driver *driver = NULL;
2808
ac751efa 2809 console_lock();
4d091611 2810 for_each_console(c) {
1da177e4
LT
2811 if (!c->device)
2812 continue;
2813 driver = c->device(c, index);
2814 if (driver)
2815 break;
2816 }
ac751efa 2817 console_unlock();
1da177e4
LT
2818 return driver;
2819}
2820
2821/*
2822 * Prevent further output on the passed console device so that (for example)
2823 * serial drivers can disable console output before suspending a port, and can
2824 * re-enable output afterwards.
2825 */
2826void console_stop(struct console *console)
2827{
ac751efa 2828 console_lock();
1da177e4 2829 console->flags &= ~CON_ENABLED;
ac751efa 2830 console_unlock();
1da177e4
LT
2831}
2832EXPORT_SYMBOL(console_stop);
2833
2834void console_start(struct console *console)
2835{
ac751efa 2836 console_lock();
1da177e4 2837 console->flags |= CON_ENABLED;
ac751efa 2838 console_unlock();
1da177e4
LT
2839}
2840EXPORT_SYMBOL(console_start);
2841
7bf69395
FDN
2842static int __read_mostly keep_bootcon;
2843
2844static int __init keep_bootcon_setup(char *str)
2845{
2846 keep_bootcon = 1;
27083bac 2847 pr_info("debug: skip boot console de-registration.\n");
7bf69395
FDN
2848
2849 return 0;
2850}
2851
2852early_param("keep_bootcon", keep_bootcon_setup);
2853
ad8cd1db
BH
2854/*
2855 * This is called by register_console() to try to match
2856 * the newly registered console with any of the ones selected
2857 * by either the command line or add_preferred_console() and
2858 * setup/enable it.
2859 *
2860 * Care need to be taken with consoles that are statically
2861 * enabled such as netconsole
2862 */
e369d822 2863static int try_enable_new_console(struct console *newcon, bool user_specified)
ad8cd1db
BH
2864{
2865 struct console_cmdline *c;
bba18a1a 2866 int i, err;
ad8cd1db
BH
2867
2868 for (i = 0, c = console_cmdline;
2869 i < MAX_CMDLINECONSOLES && c->name[0];
2870 i++, c++) {
e369d822
BH
2871 if (c->user_specified != user_specified)
2872 continue;
ad8cd1db
BH
2873 if (!newcon->match ||
2874 newcon->match(newcon, c->name, c->index, c->options) != 0) {
2875 /* default matching */
2876 BUILD_BUG_ON(sizeof(c->name) != sizeof(newcon->name));
2877 if (strcmp(c->name, newcon->name) != 0)
2878 continue;
2879 if (newcon->index >= 0 &&
2880 newcon->index != c->index)
2881 continue;
2882 if (newcon->index < 0)
2883 newcon->index = c->index;
2884
2885 if (_braille_register_console(newcon, c))
2886 return 0;
2887
2888 if (newcon->setup &&
bba18a1a
AS
2889 (err = newcon->setup(newcon, c->options)) != 0)
2890 return err;
ad8cd1db
BH
2891 }
2892 newcon->flags |= CON_ENABLED;
2893 if (i == preferred_console) {
2894 newcon->flags |= CON_CONSDEV;
2895 has_preferred_console = true;
2896 }
2897 return 0;
2898 }
2899
2900 /*
2901 * Some consoles, such as pstore and netconsole, can be enabled even
e369d822 2902 * without matching. Accept the pre-enabled consoles only when match()
50460376 2903 * and setup() had a chance to be called.
ad8cd1db 2904 */
e369d822 2905 if (newcon->flags & CON_ENABLED && c->user_specified == user_specified)
ad8cd1db
BH
2906 return 0;
2907
2908 return -ENOENT;
2909}
2910
1da177e4
LT
2911/*
2912 * The console driver calls this routine during kernel initialization
2913 * to register the console printing procedure with printk() and to
2914 * print any messages that were printed by the kernel before the
2915 * console driver was initialized.
4d091611
RG
2916 *
2917 * This can happen pretty early during the boot process (because of
2918 * early_printk) - sometimes before setup_arch() completes - be careful
2919 * of what kernel features are used - they may not be initialised yet.
2920 *
2921 * There are two types of consoles - bootconsoles (early_printk) and
2922 * "real" consoles (everything which is not a bootconsole) which are
2923 * handled differently.
2924 * - Any number of bootconsoles can be registered at any time.
2925 * - As soon as a "real" console is registered, all bootconsoles
2926 * will be unregistered automatically.
2927 * - Once a "real" console is registered, any attempt to register a
2928 * bootconsoles will be rejected
1da177e4 2929 */
4d091611 2930void register_console(struct console *newcon)
1da177e4 2931{
4d091611 2932 struct console *bcon = NULL;
ad8cd1db 2933 int err;
1da177e4 2934
caa72c3b
AS
2935 for_each_console(bcon) {
2936 if (WARN(bcon == newcon, "console '%s%d' already registered\n",
2937 bcon->name, bcon->index))
2938 return;
2939 }
16cf48a6 2940
4d091611
RG
2941 /*
2942 * before we register a new CON_BOOT console, make sure we don't
2943 * already have a valid console
2944 */
caa72c3b 2945 if (newcon->flags & CON_BOOT) {
4d091611
RG
2946 for_each_console(bcon) {
2947 if (!(bcon->flags & CON_BOOT)) {
27083bac 2948 pr_info("Too late to register bootconsole %s%d\n",
4d091611
RG
2949 newcon->name, newcon->index);
2950 return;
2951 }
2952 }
69331af7
GH
2953 }
2954
4d091611
RG
2955 if (console_drivers && console_drivers->flags & CON_BOOT)
2956 bcon = console_drivers;
2957
ad8cd1db
BH
2958 if (!has_preferred_console || bcon || !console_drivers)
2959 has_preferred_console = preferred_console >= 0;
1da177e4
LT
2960
2961 /*
2962 * See if we want to use this console driver. If we
2963 * didn't select a console we take the first one
2964 * that registers here.
2965 */
ad8cd1db 2966 if (!has_preferred_console) {
4d091611
RG
2967 if (newcon->index < 0)
2968 newcon->index = 0;
2969 if (newcon->setup == NULL ||
2970 newcon->setup(newcon, NULL) == 0) {
2971 newcon->flags |= CON_ENABLED;
2972 if (newcon->device) {
2973 newcon->flags |= CON_CONSDEV;
ad8cd1db 2974 has_preferred_console = true;
cd3a1b85 2975 }
1da177e4
LT
2976 }
2977 }
2978
e369d822
BH
2979 /* See if this console matches one we selected on the command line */
2980 err = try_enable_new_console(newcon, true);
bbeddf52 2981
e369d822
BH
2982 /* If not, try to match against the platform default(s) */
2983 if (err == -ENOENT)
2984 err = try_enable_new_console(newcon, false);
1da177e4 2985
ad8cd1db
BH
2986 /* printk() messages are not printed to the Braille console. */
2987 if (err || newcon->flags & CON_BRL)
1da177e4
LT
2988 return;
2989
8259cf43
RG
2990 /*
2991 * If we have a bootconsole, and are switching to a real console,
2992 * don't print everything out again, since when the boot console, and
2993 * the real console are the same physical device, it's annoying to
2994 * see the beginning boot messages twice
2995 */
2996 if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
4d091611 2997 newcon->flags &= ~CON_PRINTBUFFER;
1da177e4
LT
2998
2999 /*
3000 * Put this console in the list - keep the
3001 * preferred driver at the head of the list.
3002 */
ac751efa 3003 console_lock();
4d091611
RG
3004 if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) {
3005 newcon->next = console_drivers;
3006 console_drivers = newcon;
3007 if (newcon->next)
3008 newcon->next->flags &= ~CON_CONSDEV;
33225d7b
BH
3009 /* Ensure this flag is always set for the head of the list */
3010 newcon->flags |= CON_CONSDEV;
1da177e4 3011 } else {
4d091611
RG
3012 newcon->next = console_drivers->next;
3013 console_drivers->next = newcon;
1da177e4 3014 }
6fe29354
TH
3015
3016 if (newcon->flags & CON_EXTENDED)
9627808d 3017 nr_ext_console_drivers++;
6fe29354 3018
4d091611 3019 if (newcon->flags & CON_PRINTBUFFER) {
1da177e4 3020 /*
ac751efa 3021 * console_unlock(); will print out the buffered messages
1da177e4 3022 * for us.
505a27a7 3023 *
fe3d8ad3
FT
3024 * We're about to replay the log buffer. Only do this to the
3025 * just-registered console to avoid excessive message spam to
3026 * the already-registered consoles.
884e370e
SS
3027 *
3028 * Set exclusive_console with disabled interrupts to reduce
3029 * race window with eventual console_flush_on_panic() that
3030 * ignores console_lock.
fe3d8ad3
FT
3031 */
3032 exclusive_console = newcon;
f92b070f 3033 exclusive_console_stop_seq = console_seq;
636babdc
JO
3034
3035 /* Get a consistent copy of @syslog_seq. */
b371cbb5 3036 mutex_lock(&syslog_lock);
def97da1 3037 console_seq = syslog_seq;
b371cbb5 3038 mutex_unlock(&syslog_lock);
1da177e4 3039 }
ac751efa 3040 console_unlock();
fbc92a34 3041 console_sysfs_notify();
8259cf43
RG
3042
3043 /*
3044 * By unregistering the bootconsoles after we enable the real console
3045 * we get the "console xxx enabled" message on all the consoles -
3046 * boot consoles, real consoles, etc - this is to ensure that end
3047 * users know there might be something in the kernel's log buffer that
3048 * went to the bootconsole (that they do not see on the real console)
3049 */
27083bac 3050 pr_info("%sconsole [%s%d] enabled\n",
6b802394
KC
3051 (newcon->flags & CON_BOOT) ? "boot" : "" ,
3052 newcon->name, newcon->index);
7bf69395
FDN
3053 if (bcon &&
3054 ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) &&
3055 !keep_bootcon) {
6b802394
KC
3056 /* We need to iterate through all boot consoles, to make
3057 * sure we print everything out, before we unregister them.
8259cf43 3058 */
8259cf43
RG
3059 for_each_console(bcon)
3060 if (bcon->flags & CON_BOOT)
3061 unregister_console(bcon);
8259cf43 3062 }
1da177e4
LT
3063}
3064EXPORT_SYMBOL(register_console);
3065
40dc5651 3066int unregister_console(struct console *console)
1da177e4 3067{
12825e6b 3068 struct console *con;
bbeddf52 3069 int res;
1da177e4 3070
27083bac 3071 pr_info("%sconsole [%s%d] disabled\n",
6b802394
KC
3072 (console->flags & CON_BOOT) ? "boot" : "" ,
3073 console->name, console->index);
3074
bbeddf52 3075 res = _braille_unregister_console(console);
bb72e398 3076 if (res < 0)
bbeddf52 3077 return res;
bb72e398
AS
3078 if (res > 0)
3079 return 0;
f7511d5f 3080
bb72e398 3081 res = -ENODEV;
ac751efa 3082 console_lock();
1da177e4
LT
3083 if (console_drivers == console) {
3084 console_drivers=console->next;
3085 res = 0;
12825e6b
AS
3086 } else {
3087 for_each_console(con) {
3088 if (con->next == console) {
3089 con->next = console->next;
1da177e4
LT
3090 res = 0;
3091 break;
40dc5651 3092 }
1da177e4
LT
3093 }
3094 }
40dc5651 3095
e78bedbd
AS
3096 if (res)
3097 goto out_disable_unlock;
3098
3099 if (console->flags & CON_EXTENDED)
6fe29354
TH
3100 nr_ext_console_drivers--;
3101
69331af7 3102 /*
ab4af03a
GE
3103 * If this isn't the last console and it has CON_CONSDEV set, we
3104 * need to set it on the next preferred console.
1da177e4 3105 */
69331af7 3106 if (console_drivers != NULL && console->flags & CON_CONSDEV)
ab4af03a 3107 console_drivers->flags |= CON_CONSDEV;
1da177e4 3108
7fa21dd8 3109 console->flags &= ~CON_ENABLED;
ac751efa 3110 console_unlock();
fbc92a34 3111 console_sysfs_notify();
e78bedbd 3112
ed31685c
AS
3113 if (console->exit)
3114 res = console->exit(console);
3115
e78bedbd
AS
3116 return res;
3117
3118out_disable_unlock:
3119 console->flags &= ~CON_ENABLED;
3120 console_unlock();
3121
1da177e4
LT
3122 return res;
3123}
3124EXPORT_SYMBOL(unregister_console);
d59745ce 3125
0c688614
NP
3126/*
3127 * Initialize the console device. This is called *early*, so
3128 * we can't necessarily depend on lots of kernel help here.
3129 * Just do some early initializations, and do the complex setup
3130 * later.
3131 */
3132void __init console_init(void)
3133{
58eacfff 3134 int ret;
1b1eeca7
AB
3135 initcall_t call;
3136 initcall_entry_t *ce;
0c688614
NP
3137
3138 /* Setup the default TTY line discipline. */
3139 n_tty_init();
3140
3141 /*
3142 * set up the console device so that later boot sequences can
3143 * inform about problems etc..
3144 */
1b1eeca7 3145 ce = __con_initcall_start;
58eacfff 3146 trace_initcall_level("console");
1b1eeca7
AB
3147 while (ce < __con_initcall_end) {
3148 call = initcall_from_entry(ce);
3149 trace_initcall_start(call);
3150 ret = call();
3151 trace_initcall_finish(call, ret);
3152 ce++;
0c688614
NP
3153 }
3154}
3155
81cc26f2
TR
3156/*
3157 * Some boot consoles access data that is in the init section and which will
3158 * be discarded after the initcalls have been run. To make sure that no code
3159 * will access this data, unregister the boot consoles in a late initcall.
3160 *
3161 * If for some reason, such as deferred probe or the driver being a loadable
3162 * module, the real console hasn't registered yet at this point, there will
3163 * be a brief interval in which no messages are logged to the console, which
3164 * makes it difficult to diagnose problems that occur during this time.
3165 *
3166 * To mitigate this problem somewhat, only unregister consoles whose memory
2b1be689 3167 * intersects with the init section. Note that all other boot consoles will
acebb559 3168 * get unregistered when the real preferred console is registered.
81cc26f2 3169 */
034260d6 3170static int __init printk_late_init(void)
0c5564bd 3171{
4d091611 3172 struct console *con;
90b14889 3173 int ret;
4d091611
RG
3174
3175 for_each_console(con) {
5a814231
PM
3176 if (!(con->flags & CON_BOOT))
3177 continue;
3178
3179 /* Check addresses that might be used for enabled consoles. */
3180 if (init_section_intersects(con, sizeof(*con)) ||
3181 init_section_contains(con->write, 0) ||
3182 init_section_contains(con->read, 0) ||
3183 init_section_contains(con->device, 0) ||
3184 init_section_contains(con->unblank, 0) ||
3185 init_section_contains(con->data, 0)) {
81cc26f2 3186 /*
2b1be689
MR
3187 * Please, consider moving the reported consoles out
3188 * of the init section.
81cc26f2 3189 */
2b1be689
MR
3190 pr_warn("bootconsole [%s%d] uses init memory and must be disabled even before the real one is ready\n",
3191 con->name, con->index);
3192 unregister_console(con);
cb00e99c 3193 }
0c5564bd 3194 }
90b14889
SAS
3195 ret = cpuhp_setup_state_nocalls(CPUHP_PRINTK_DEAD, "printk:dead", NULL,
3196 console_cpu_notify);
3197 WARN_ON(ret < 0);
3198 ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, "printk:online",
3199 console_cpu_notify, NULL);
3200 WARN_ON(ret < 0);
0c5564bd
RG
3201 return 0;
3202}
034260d6 3203late_initcall(printk_late_init);
0c5564bd 3204
7ef3d2fd 3205#if defined CONFIG_PRINTK
dc72c32e
FW
3206/*
3207 * Delayed printk version, for scheduler-internal messages:
3208 */
dc72c32e 3209#define PRINTK_PENDING_WAKEUP 0x01
458df9fd 3210#define PRINTK_PENDING_OUTPUT 0x02
dc72c32e
FW
3211
3212static DEFINE_PER_CPU(int, printk_pending);
dc72c32e
FW
3213
3214static void wake_up_klogd_work_func(struct irq_work *irq_work)
3215{
3216 int pending = __this_cpu_xchg(printk_pending, 0);
3217
458df9fd
SR
3218 if (pending & PRINTK_PENDING_OUTPUT) {
3219 /* If trylock fails, someone else is doing the printing */
3220 if (console_trylock())
3221 console_unlock();
dc72c32e
FW
3222 }
3223
3224 if (pending & PRINTK_PENDING_WAKEUP)
3225 wake_up_interruptible(&log_wait);
3226}
3227
7a9f50a0
PZ
3228static DEFINE_PER_CPU(struct irq_work, wake_up_klogd_work) =
3229 IRQ_WORK_INIT_LAZY(wake_up_klogd_work_func);
dc72c32e
FW
3230
3231void wake_up_klogd(void)
3232{
ab6f762f
SS
3233 if (!printk_percpu_data_ready())
3234 return;
3235
dc72c32e
FW
3236 preempt_disable();
3237 if (waitqueue_active(&log_wait)) {
3238 this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP);
bb964a92 3239 irq_work_queue(this_cpu_ptr(&wake_up_klogd_work));
dc72c32e
FW
3240 }
3241 preempt_enable();
3242}
717115e1 3243
a338f84d 3244void defer_console_output(void)
600e1458 3245{
ab6f762f
SS
3246 if (!printk_percpu_data_ready())
3247 return;
3248
719f6a70 3249 preempt_disable();
458df9fd 3250 __this_cpu_or(printk_pending, PRINTK_PENDING_OUTPUT);
bb964a92 3251 irq_work_queue(this_cpu_ptr(&wake_up_klogd_work));
81954606 3252 preempt_enable();
a338f84d
PM
3253}
3254
3255int vprintk_deferred(const char *fmt, va_list args)
3256{
3257 int r;
3258
74caba7f 3259 r = vprintk_emit(0, LOGLEVEL_SCHED, NULL, fmt, args);
a338f84d 3260 defer_console_output();
600e1458
PZ
3261
3262 return r;
3263}
3264
33701557 3265int _printk_deferred(const char *fmt, ...)
719f6a70
PM
3266{
3267 va_list args;
3268 int r;
3269
3270 va_start(args, fmt);
3271 r = vprintk_deferred(fmt, args);
3272 va_end(args);
3273
3274 return r;
3275}
3276
1da177e4
LT
3277/*
3278 * printk rate limiting, lifted from the networking subsystem.
3279 *
641de9d8
UKK
3280 * This enforces a rate limit: not more than 10 kernel messages
3281 * every 5s to make a denial-of-service attack impossible.
1da177e4 3282 */
641de9d8
UKK
3283DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10);
3284
5c828713 3285int __printk_ratelimit(const char *func)
1da177e4 3286{
5c828713 3287 return ___ratelimit(&printk_ratelimit_state, func);
1da177e4 3288}
5c828713 3289EXPORT_SYMBOL(__printk_ratelimit);
f46c4833
AM
3290
3291/**
3292 * printk_timed_ratelimit - caller-controlled printk ratelimiting
3293 * @caller_jiffies: pointer to caller's state
3294 * @interval_msecs: minimum interval between prints
3295 *
3296 * printk_timed_ratelimit() returns true if more than @interval_msecs
3297 * milliseconds have elapsed since the last time printk_timed_ratelimit()
3298 * returned true.
3299 */
3300bool printk_timed_ratelimit(unsigned long *caller_jiffies,
3301 unsigned int interval_msecs)
3302{
249771b8
AE
3303 unsigned long elapsed = jiffies - *caller_jiffies;
3304
3305 if (*caller_jiffies && elapsed <= msecs_to_jiffies(interval_msecs))
3306 return false;
3307
3308 *caller_jiffies = jiffies;
3309 return true;
f46c4833
AM
3310}
3311EXPORT_SYMBOL(printk_timed_ratelimit);
456b565c
SK
3312
3313static DEFINE_SPINLOCK(dump_list_lock);
3314static LIST_HEAD(dump_list);
3315
3316/**
3317 * kmsg_dump_register - register a kernel log dumper.
6485536b 3318 * @dumper: pointer to the kmsg_dumper structure
456b565c
SK
3319 *
3320 * Adds a kernel log dumper to the system. The dump callback in the
3321 * structure will be called when the kernel oopses or panics and must be
3322 * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise.
3323 */
3324int kmsg_dump_register(struct kmsg_dumper *dumper)
3325{
3326 unsigned long flags;
3327 int err = -EBUSY;
3328
3329 /* The dump callback needs to be set */
3330 if (!dumper->dump)
3331 return -EINVAL;
3332
3333 spin_lock_irqsave(&dump_list_lock, flags);
3334 /* Don't allow registering multiple times */
3335 if (!dumper->registered) {
3336 dumper->registered = 1;
fb842b00 3337 list_add_tail_rcu(&dumper->list, &dump_list);
456b565c
SK
3338 err = 0;
3339 }
3340 spin_unlock_irqrestore(&dump_list_lock, flags);
3341
3342 return err;
3343}
3344EXPORT_SYMBOL_GPL(kmsg_dump_register);
3345
3346/**
3347 * kmsg_dump_unregister - unregister a kmsg dumper.
6485536b 3348 * @dumper: pointer to the kmsg_dumper structure
456b565c
SK
3349 *
3350 * Removes a dump device from the system. Returns zero on success and
3351 * %-EINVAL otherwise.
3352 */
3353int kmsg_dump_unregister(struct kmsg_dumper *dumper)
3354{
3355 unsigned long flags;
3356 int err = -EINVAL;
3357
3358 spin_lock_irqsave(&dump_list_lock, flags);
3359 if (dumper->registered) {
3360 dumper->registered = 0;
fb842b00 3361 list_del_rcu(&dumper->list);
456b565c
SK
3362 err = 0;
3363 }
3364 spin_unlock_irqrestore(&dump_list_lock, flags);
fb842b00 3365 synchronize_rcu();
456b565c
SK
3366
3367 return err;
3368}
3369EXPORT_SYMBOL_GPL(kmsg_dump_unregister);
3370
7ff9554b
KS
3371static bool always_kmsg_dump;
3372module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR);
3373
fb13cb8a
KC
3374const char *kmsg_dump_reason_str(enum kmsg_dump_reason reason)
3375{
3376 switch (reason) {
3377 case KMSG_DUMP_PANIC:
3378 return "Panic";
3379 case KMSG_DUMP_OOPS:
3380 return "Oops";
3381 case KMSG_DUMP_EMERG:
3382 return "Emergency";
3383 case KMSG_DUMP_SHUTDOWN:
3384 return "Shutdown";
3385 default:
3386 return "Unknown";
3387 }
3388}
3389EXPORT_SYMBOL_GPL(kmsg_dump_reason_str);
3390
456b565c
SK
3391/**
3392 * kmsg_dump - dump kernel log to kernel message dumpers.
3393 * @reason: the reason (oops, panic etc) for dumping
3394 *
e2ae715d
KS
3395 * Call each of the registered dumper's dump() callback, which can
3396 * retrieve the kmsg records with kmsg_dump_get_line() or
3397 * kmsg_dump_get_buffer().
456b565c
SK
3398 */
3399void kmsg_dump(enum kmsg_dump_reason reason)
3400{
456b565c 3401 struct kmsg_dumper *dumper;
456b565c 3402
e2ae715d
KS
3403 rcu_read_lock();
3404 list_for_each_entry_rcu(dumper, &dump_list, list) {
b1f6f161
PT
3405 enum kmsg_dump_reason max_reason = dumper->max_reason;
3406
3407 /*
3408 * If client has not provided a specific max_reason, default
3409 * to KMSG_DUMP_OOPS, unless always_kmsg_dump was set.
3410 */
3411 if (max_reason == KMSG_DUMP_UNDEF) {
3412 max_reason = always_kmsg_dump ? KMSG_DUMP_MAX :
3413 KMSG_DUMP_OOPS;
3414 }
3415 if (reason > max_reason)
e2ae715d
KS
3416 continue;
3417
e2ae715d
KS
3418 /* invoke dumper which will iterate over records */
3419 dumper->dump(dumper, reason);
e2ae715d
KS
3420 }
3421 rcu_read_unlock();
3422}
3423
3424/**
a4f98765 3425 * kmsg_dump_get_line - retrieve one kmsg log line
f9f3f02d 3426 * @iter: kmsg dump iterator
e2ae715d
KS
3427 * @syslog: include the "<4>" prefixes
3428 * @line: buffer to copy the line to
3429 * @size: maximum size of the buffer
3430 * @len: length of line placed into buffer
3431 *
3432 * Start at the beginning of the kmsg buffer, with the oldest kmsg
3433 * record, and copy one record into the provided buffer.
3434 *
3435 * Consecutive calls will return the next available record moving
3436 * towards the end of the buffer with the youngest messages.
3437 *
3438 * A return value of FALSE indicates that there are no more records to
3439 * read.
3440 */
a4f98765
JO
3441bool kmsg_dump_get_line(struct kmsg_dump_iter *iter, bool syslog,
3442 char *line, size_t size, size_t *len)
e2ae715d 3443{
f9f3f02d 3444 u64 min_seq = latched_seq_read_nolock(&clear_seq);
896fbe20
JO
3445 struct printk_info info;
3446 unsigned int line_count;
3447 struct printk_record r;
e2ae715d
KS
3448 size_t l = 0;
3449 bool ret = false;
3450
f9f3f02d
JO
3451 if (iter->cur_seq < min_seq)
3452 iter->cur_seq = min_seq;
3453
f35efc78 3454 prb_rec_init_rd(&r, &info, line, size);
896fbe20 3455
896fbe20
JO
3456 /* Read text or count text lines? */
3457 if (line) {
f9f3f02d 3458 if (!prb_read_valid(prb, iter->cur_seq, &r))
896fbe20
JO
3459 goto out;
3460 l = record_print_text(&r, syslog, printk_time);
3461 } else {
f9f3f02d 3462 if (!prb_read_valid_info(prb, iter->cur_seq,
896fbe20
JO
3463 &info, &line_count)) {
3464 goto out;
3465 }
3466 l = get_record_print_text_size(&info, line_count, syslog,
3467 printk_time);
456b565c 3468
896fbe20 3469 }
e2ae715d 3470
f9f3f02d 3471 iter->cur_seq = r.info->seq + 1;
e2ae715d 3472 ret = true;
e2ae715d
KS
3473out:
3474 if (len)
3475 *len = l;
3476 return ret;
3477}
3478EXPORT_SYMBOL_GPL(kmsg_dump_get_line);
3479
3480/**
3481 * kmsg_dump_get_buffer - copy kmsg log lines
f9f3f02d 3482 * @iter: kmsg dump iterator
e2ae715d 3483 * @syslog: include the "<4>" prefixes
4f0f4af5 3484 * @buf: buffer to copy the line to
e2ae715d 3485 * @size: maximum size of the buffer
726b5097 3486 * @len_out: length of line placed into buffer
e2ae715d
KS
3487 *
3488 * Start at the end of the kmsg buffer and fill the provided buffer
547bbf7d 3489 * with as many of the *youngest* kmsg records that fit into it.
e2ae715d
KS
3490 * If the buffer is large enough, all available kmsg records will be
3491 * copied with a single call.
3492 *
3493 * Consecutive calls will fill the buffer with the next block of
3494 * available older records, not including the earlier retrieved ones.
3495 *
3496 * A return value of FALSE indicates that there are no more records to
3497 * read.
3498 */
f9f3f02d 3499bool kmsg_dump_get_buffer(struct kmsg_dump_iter *iter, bool syslog,
726b5097 3500 char *buf, size_t size, size_t *len_out)
e2ae715d 3501{
f9f3f02d 3502 u64 min_seq = latched_seq_read_nolock(&clear_seq);
896fbe20 3503 struct printk_info info;
896fbe20 3504 struct printk_record r;
e2ae715d 3505 u64 seq;
e2ae715d 3506 u64 next_seq;
726b5097 3507 size_t len = 0;
e2ae715d 3508 bool ret = false;
e80c1a9d 3509 bool time = printk_time;
e2ae715d 3510
5f6c7648 3511 if (!buf || !size)
e2ae715d
KS
3512 goto out;
3513
f9f3f02d
JO
3514 if (iter->cur_seq < min_seq)
3515 iter->cur_seq = min_seq;
3516
f9f3f02d
JO
3517 if (prb_read_valid_info(prb, iter->cur_seq, &info, NULL)) {
3518 if (info.seq != iter->cur_seq) {
13791c80 3519 /* messages are gone, move to first available one */
f9f3f02d 3520 iter->cur_seq = info.seq;
13791c80 3521 }
e2ae715d
KS
3522 }
3523
3524 /* last entry */
93d102f0 3525 if (iter->cur_seq >= iter->next_seq)
e2ae715d 3526 goto out;
e2ae715d 3527
726b5097
JO
3528 /*
3529 * Find first record that fits, including all following records,
4260e0e5
JO
3530 * into the user-provided buffer for this dump. Pass in size-1
3531 * because this function (by way of record_print_text()) will
3532 * not write more than size-1 bytes of text into @buf.
726b5097 3533 */
f9f3f02d 3534 seq = find_first_fitting_seq(iter->cur_seq, iter->next_seq,
4260e0e5 3535 size - 1, syslog, time);
e2ae715d 3536
726b5097
JO
3537 /*
3538 * Next kmsg_dump_get_buffer() invocation will dump block of
3539 * older records stored right before this one.
3540 */
e2ae715d 3541 next_seq = seq;
e2ae715d 3542
726b5097
JO
3543 prb_rec_init_rd(&r, &info, buf, size);
3544
3545 len = 0;
3546 prb_for_each_record(seq, prb, seq, &r) {
f9f3f02d 3547 if (r.info->seq >= iter->next_seq)
896fbe20
JO
3548 break;
3549
726b5097 3550 len += record_print_text(&r, syslog, time);
896fbe20 3551
726b5097
JO
3552 /* Adjust record to store to remaining buffer space. */
3553 prb_rec_init_rd(&r, &info, buf + len, size - len);
e2ae715d
KS
3554 }
3555
f9f3f02d 3556 iter->next_seq = next_seq;
e2ae715d 3557 ret = true;
e2ae715d 3558out:
726b5097
JO
3559 if (len_out)
3560 *len_out = len;
e2ae715d
KS
3561 return ret;
3562}
3563EXPORT_SYMBOL_GPL(kmsg_dump_get_buffer);
456b565c 3564
e2ae715d 3565/**
325606af 3566 * kmsg_dump_rewind - reset the iterator
f9f3f02d 3567 * @iter: kmsg dump iterator
e2ae715d
KS
3568 *
3569 * Reset the dumper's iterator so that kmsg_dump_get_line() and
3570 * kmsg_dump_get_buffer() can be called again and used multiple
3571 * times within the same dumper.dump() callback.
3572 */
f9f3f02d 3573void kmsg_dump_rewind(struct kmsg_dump_iter *iter)
e2ae715d 3574{
a4f98765
JO
3575 iter->cur_seq = latched_seq_read_nolock(&clear_seq);
3576 iter->next_seq = prb_next_seq(prb);
456b565c 3577}
e2ae715d 3578EXPORT_SYMBOL_GPL(kmsg_dump_rewind);
196779b9 3579
7ef3d2fd 3580#endif
766c268b
JO
3581
3582#ifdef CONFIG_SMP
3583static atomic_t printk_cpulock_owner = ATOMIC_INIT(-1);
3584static atomic_t printk_cpulock_nested = ATOMIC_INIT(0);
3585
3586/**
3587 * __printk_wait_on_cpu_lock() - Busy wait until the printk cpu-reentrant
3588 * spinning lock is not owned by any CPU.
3589 *
3590 * Context: Any context.
3591 */
3592void __printk_wait_on_cpu_lock(void)
3593{
3594 do {
3595 cpu_relax();
3596 } while (atomic_read(&printk_cpulock_owner) != -1);
3597}
3598EXPORT_SYMBOL(__printk_wait_on_cpu_lock);
3599
3600/**
3601 * __printk_cpu_trylock() - Try to acquire the printk cpu-reentrant
3602 * spinning lock.
3603 *
3604 * If no processor has the lock, the calling processor takes the lock and
3605 * becomes the owner. If the calling processor is already the owner of the
3606 * lock, this function succeeds immediately.
3607 *
3608 * Context: Any context. Expects interrupts to be disabled.
3609 * Return: 1 on success, otherwise 0.
3610 */
3611int __printk_cpu_trylock(void)
3612{
3613 int cpu;
3614 int old;
3615
3616 cpu = smp_processor_id();
3617
3342aa8e
JO
3618 /*
3619 * Guarantee loads and stores from this CPU when it is the lock owner
3620 * are _not_ visible to the previous lock owner. This pairs with
3621 * __printk_cpu_unlock:B.
3622 *
3623 * Memory barrier involvement:
3624 *
3625 * If __printk_cpu_trylock:A reads from __printk_cpu_unlock:B, then
3626 * __printk_cpu_unlock:A can never read from __printk_cpu_trylock:B.
3627 *
3628 * Relies on:
3629 *
3630 * RELEASE from __printk_cpu_unlock:A to __printk_cpu_unlock:B
3631 * of the previous CPU
3632 * matching
3633 * ACQUIRE from __printk_cpu_trylock:A to __printk_cpu_trylock:B
3634 * of this CPU
3635 */
3636 old = atomic_cmpxchg_acquire(&printk_cpulock_owner, -1,
3637 cpu); /* LMM(__printk_cpu_trylock:A) */
766c268b 3638 if (old == -1) {
3342aa8e
JO
3639 /*
3640 * This CPU is now the owner and begins loading/storing
3641 * data: LMM(__printk_cpu_trylock:B)
3642 */
766c268b 3643 return 1;
3342aa8e 3644
766c268b
JO
3645 } else if (old == cpu) {
3646 /* This CPU is already the owner. */
3647 atomic_inc(&printk_cpulock_nested);
3648 return 1;
3649 }
3650
3651 return 0;
3652}
3653EXPORT_SYMBOL(__printk_cpu_trylock);
3654
3655/**
3656 * __printk_cpu_unlock() - Release the printk cpu-reentrant spinning lock.
3657 *
3658 * The calling processor must be the owner of the lock.
3659 *
3660 * Context: Any context. Expects interrupts to be disabled.
3661 */
3662void __printk_cpu_unlock(void)
3663{
3664 if (atomic_read(&printk_cpulock_nested)) {
3665 atomic_dec(&printk_cpulock_nested);
3666 return;
3667 }
3668
3342aa8e
JO
3669 /*
3670 * This CPU is finished loading/storing data:
3671 * LMM(__printk_cpu_unlock:A)
3672 */
3673
3674 /*
3675 * Guarantee loads and stores from this CPU when it was the
3676 * lock owner are visible to the next lock owner. This pairs
3677 * with __printk_cpu_trylock:A.
3678 *
3679 * Memory barrier involvement:
3680 *
3681 * If __printk_cpu_trylock:A reads from __printk_cpu_unlock:B,
3682 * then __printk_cpu_trylock:B reads from __printk_cpu_unlock:A.
3683 *
3684 * Relies on:
3685 *
3686 * RELEASE from __printk_cpu_unlock:A to __printk_cpu_unlock:B
3687 * of this CPU
3688 * matching
3689 * ACQUIRE from __printk_cpu_trylock:A to __printk_cpu_trylock:B
3690 * of the next CPU
3691 */
3692 atomic_set_release(&printk_cpulock_owner,
3693 -1); /* LMM(__printk_cpu_unlock:B) */
766c268b
JO
3694}
3695EXPORT_SYMBOL(__printk_cpu_unlock);
3696#endif /* CONFIG_SMP */