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