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