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