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