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