]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - kernel/printk.c
We are enabling some power features on medfield. To test suspend-2-RAM
[karo-tx-linux.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/syscalls.h>
36 #include <linux/kexec.h>
37 #include <linux/kdb.h>
38 #include <linux/ratelimit.h>
39 #include <linux/kmsg_dump.h>
40 #include <linux/syslog.h>
41 #include <linux/cpu.h>
42 #include <linux/notifier.h>
43 #include <linux/rculist.h>
44
45 #include <asm/uaccess.h>
46
47 /*
48  * Architectures can override it:
49  */
50 void asmlinkage __attribute__((weak)) early_printk(const char *fmt, ...)
51 {
52 }
53
54 #define __LOG_BUF_LEN   (1 << CONFIG_LOG_BUF_SHIFT)
55
56 /* printk's without a loglevel use this.. */
57 #define DEFAULT_MESSAGE_LOGLEVEL CONFIG_DEFAULT_MESSAGE_LOGLEVEL
58
59 /* We show everything that is MORE important than this.. */
60 #define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */
61 #define DEFAULT_CONSOLE_LOGLEVEL 7 /* anything MORE serious than KERN_DEBUG */
62
63 DECLARE_WAIT_QUEUE_HEAD(log_wait);
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 /*
89  * This is used for debugging the mess that is the VT code by
90  * keeping track if we have the console semaphore held. It's
91  * definitely not the perfect debug tool (we don't know if _WE_
92  * hold it are racing, but it helps tracking those weird code
93  * path in the console code where we end up in places I want
94  * locked without the console sempahore held
95  */
96 static int console_locked, console_suspended;
97
98 /*
99  * logbuf_lock protects log_buf, log_start, log_end, con_start and logged_chars
100  * It is also used in interesting ways to provide interlocking in
101  * console_unlock();.
102  */
103 static DEFINE_RAW_SPINLOCK(logbuf_lock);
104
105 #define LOG_BUF_MASK (log_buf_len-1)
106 #define LOG_BUF(idx) (log_buf[(idx) & LOG_BUF_MASK])
107
108 /*
109  * The indices into log_buf are not constrained to log_buf_len - they
110  * must be masked before subscripting
111  */
112 static unsigned log_start;      /* Index into log_buf: next char to be read by syslog() */
113 static unsigned con_start;      /* Index into log_buf: next char to be sent to consoles */
114 static unsigned log_end;        /* Index into log_buf: most-recently-written-char + 1 */
115
116 /*
117  * If exclusive_console is non-NULL then only this console is to be printed to.
118  */
119 static struct console *exclusive_console;
120
121 /*
122  *      Array of consoles built from command line options (console=)
123  */
124 struct console_cmdline
125 {
126         char    name[8];                        /* Name of the driver       */
127         int     index;                          /* Minor dev. to use        */
128         char    *options;                       /* Options for the driver   */
129 #ifdef CONFIG_A11Y_BRAILLE_CONSOLE
130         char    *brl_options;                   /* Options for braille driver */
131 #endif
132 };
133
134 #define MAX_CMDLINECONSOLES 8
135
136 static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
137 static int selected_console = -1;
138 static int preferred_console = -1;
139 int console_set_on_cmdline;
140 EXPORT_SYMBOL(console_set_on_cmdline);
141
142 /* Flag: console code may call schedule() */
143 static int console_may_schedule;
144
145 #ifdef CONFIG_PRINTK
146
147 static char __log_buf[__LOG_BUF_LEN];
148 static char *log_buf = __log_buf;
149 static int log_buf_len = __LOG_BUF_LEN;
150 static unsigned logged_chars; /* Number of chars produced since last read+clear operation */
151 static int saved_console_loglevel = -1;
152
153 #ifdef CONFIG_KEXEC
154 /*
155  * This appends the listed symbols to /proc/vmcoreinfo
156  *
157  * /proc/vmcoreinfo is used by various utiilties, like crash and makedumpfile to
158  * obtain access to symbols that are otherwise very difficult to locate.  These
159  * symbols are specifically used so that utilities can access and extract the
160  * dmesg log from a vmcore file after a crash.
161  */
162 void log_buf_kexec_setup(void)
163 {
164         VMCOREINFO_SYMBOL(log_buf);
165         VMCOREINFO_SYMBOL(log_end);
166         VMCOREINFO_SYMBOL(log_buf_len);
167         VMCOREINFO_SYMBOL(logged_chars);
168 }
169 #endif
170
171 /* requested log_buf_len from kernel cmdline */
172 static unsigned long __initdata new_log_buf_len;
173
174 /* save requested log_buf_len since it's too early to process it */
175 static int __init log_buf_len_setup(char *str)
176 {
177         unsigned size = memparse(str, &str);
178
179         if (size)
180                 size = roundup_pow_of_two(size);
181         if (size > log_buf_len)
182                 new_log_buf_len = size;
183
184         return 0;
185 }
186 early_param("log_buf_len", log_buf_len_setup);
187
188 void __init setup_log_buf(int early)
189 {
190         unsigned long flags;
191         unsigned start, dest_idx, offset;
192         char *new_log_buf;
193         int free;
194
195         if (!new_log_buf_len)
196                 return;
197
198         if (early) {
199                 unsigned long mem;
200
201                 mem = memblock_alloc(new_log_buf_len, PAGE_SIZE);
202                 if (mem == MEMBLOCK_ERROR)
203                         return;
204                 new_log_buf = __va(mem);
205         } else {
206                 new_log_buf = alloc_bootmem_nopanic(new_log_buf_len);
207         }
208
209         if (unlikely(!new_log_buf)) {
210                 pr_err("log_buf_len: %ld bytes not available\n",
211                         new_log_buf_len);
212                 return;
213         }
214
215         raw_spin_lock_irqsave(&logbuf_lock, flags);
216         log_buf_len = new_log_buf_len;
217         log_buf = new_log_buf;
218         new_log_buf_len = 0;
219         free = __LOG_BUF_LEN - log_end;
220
221         offset = start = min(con_start, log_start);
222         dest_idx = 0;
223         while (start != log_end) {
224                 unsigned log_idx_mask = start & (__LOG_BUF_LEN - 1);
225
226                 log_buf[dest_idx] = __log_buf[log_idx_mask];
227                 start++;
228                 dest_idx++;
229         }
230         log_start -= offset;
231         con_start -= offset;
232         log_end -= offset;
233         raw_spin_unlock_irqrestore(&logbuf_lock, flags);
234
235         pr_info("log_buf_len: %d\n", log_buf_len);
236         pr_info("early log buf free: %d(%d%%)\n",
237                 free, (free * 100) / __LOG_BUF_LEN);
238 }
239
240 #ifdef CONFIG_BOOT_PRINTK_DELAY
241
242 static int boot_delay; /* msecs delay after each printk during bootup */
243 static unsigned long long loops_per_msec;       /* based on boot_delay */
244
245 static int __init boot_delay_setup(char *str)
246 {
247         unsigned long lpj;
248
249         lpj = preset_lpj ? preset_lpj : 1000000;        /* some guess */
250         loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
251
252         get_option(&str, &boot_delay);
253         if (boot_delay > 10 * 1000)
254                 boot_delay = 0;
255
256         pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
257                 "HZ: %d, loops_per_msec: %llu\n",
258                 boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
259         return 1;
260 }
261 __setup("boot_delay=", boot_delay_setup);
262
263 static void boot_delay_msec(void)
264 {
265         unsigned long long k;
266         unsigned long timeout;
267
268         if (boot_delay == 0 || system_state != SYSTEM_BOOTING)
269                 return;
270
271         k = (unsigned long long)loops_per_msec * boot_delay;
272
273         timeout = jiffies + msecs_to_jiffies(boot_delay);
274         while (k) {
275                 k--;
276                 cpu_relax();
277                 /*
278                  * use (volatile) jiffies to prevent
279                  * compiler reduction; loop termination via jiffies
280                  * is secondary and may or may not happen.
281                  */
282                 if (time_after(jiffies, timeout))
283                         break;
284                 touch_nmi_watchdog();
285         }
286 }
287 #else
288 static inline void boot_delay_msec(void)
289 {
290 }
291 #endif
292
293 #ifdef CONFIG_SECURITY_DMESG_RESTRICT
294 int dmesg_restrict = 1;
295 #else
296 int dmesg_restrict;
297 #endif
298
299 static int syslog_action_restricted(int type)
300 {
301         if (dmesg_restrict)
302                 return 1;
303         /* Unless restricted, we allow "read all" and "get buffer size" for everybody */
304         return type != SYSLOG_ACTION_READ_ALL && type != SYSLOG_ACTION_SIZE_BUFFER;
305 }
306
307 static int check_syslog_permissions(int type, bool from_file)
308 {
309         /*
310          * If this is from /proc/kmsg and we've already opened it, then we've
311          * already done the capabilities checks at open time.
312          */
313         if (from_file && type != SYSLOG_ACTION_OPEN)
314                 return 0;
315
316         if (syslog_action_restricted(type)) {
317                 if (capable(CAP_SYSLOG))
318                         return 0;
319                 /* For historical reasons, accept CAP_SYS_ADMIN too, with a warning */
320                 if (capable(CAP_SYS_ADMIN)) {
321                         printk_once(KERN_WARNING "%s (%d): "
322                                  "Attempt to access syslog with CAP_SYS_ADMIN "
323                                  "but no CAP_SYSLOG (deprecated).\n",
324                                  current->comm, task_pid_nr(current));
325                         return 0;
326                 }
327                 return -EPERM;
328         }
329         return 0;
330 }
331
332 int do_syslog(int type, char __user *buf, int len, bool from_file)
333 {
334         unsigned i, j, limit, count;
335         int do_clear = 0;
336         char c;
337         int error;
338
339         error = check_syslog_permissions(type, from_file);
340         if (error)
341                 goto out;
342
343         error = security_syslog(type);
344         if (error)
345                 return error;
346
347         switch (type) {
348         case SYSLOG_ACTION_CLOSE:       /* Close log */
349                 break;
350         case SYSLOG_ACTION_OPEN:        /* Open log */
351                 break;
352         case SYSLOG_ACTION_READ:        /* Read from log */
353                 error = -EINVAL;
354                 if (!buf || len < 0)
355                         goto out;
356                 error = 0;
357                 if (!len)
358                         goto out;
359                 if (!access_ok(VERIFY_WRITE, buf, len)) {
360                         error = -EFAULT;
361                         goto out;
362                 }
363                 error = wait_event_interruptible(log_wait,
364                                                         (log_start - log_end));
365                 if (error)
366                         goto out;
367                 i = 0;
368                 raw_spin_lock_irq(&logbuf_lock);
369                 while (!error && (log_start != log_end) && i < len) {
370                         c = LOG_BUF(log_start);
371                         log_start++;
372                         raw_spin_unlock_irq(&logbuf_lock);
373                         error = __put_user(c,buf);
374                         buf++;
375                         i++;
376                         cond_resched();
377                         raw_spin_lock_irq(&logbuf_lock);
378                 }
379                 raw_spin_unlock_irq(&logbuf_lock);
380                 if (!error)
381                         error = i;
382                 break;
383         /* Read/clear last kernel messages */
384         case SYSLOG_ACTION_READ_CLEAR:
385                 do_clear = 1;
386                 /* FALL THRU */
387         /* Read last kernel messages */
388         case SYSLOG_ACTION_READ_ALL:
389                 error = -EINVAL;
390                 if (!buf || len < 0)
391                         goto out;
392                 error = 0;
393                 if (!len)
394                         goto out;
395                 if (!access_ok(VERIFY_WRITE, buf, len)) {
396                         error = -EFAULT;
397                         goto out;
398                 }
399                 count = len;
400                 if (count > log_buf_len)
401                         count = log_buf_len;
402                 raw_spin_lock_irq(&logbuf_lock);
403                 if (count > logged_chars)
404                         count = logged_chars;
405                 if (do_clear)
406                         logged_chars = 0;
407                 limit = log_end;
408                 /*
409                  * __put_user() could sleep, and while we sleep
410                  * printk() could overwrite the messages
411                  * we try to copy to user space. Therefore
412                  * the messages are copied in reverse. <manfreds>
413                  */
414                 for (i = 0; i < count && !error; i++) {
415                         j = limit-1-i;
416                         if (j + log_buf_len < log_end)
417                                 break;
418                         c = LOG_BUF(j);
419                         raw_spin_unlock_irq(&logbuf_lock);
420                         error = __put_user(c,&buf[count-1-i]);
421                         cond_resched();
422                         raw_spin_lock_irq(&logbuf_lock);
423                 }
424                 raw_spin_unlock_irq(&logbuf_lock);
425                 if (error)
426                         break;
427                 error = i;
428                 if (i != count) {
429                         int offset = count-error;
430                         /* buffer overflow during copy, correct user buffer. */
431                         for (i = 0; i < error; i++) {
432                                 if (__get_user(c,&buf[i+offset]) ||
433                                     __put_user(c,&buf[i])) {
434                                         error = -EFAULT;
435                                         break;
436                                 }
437                                 cond_resched();
438                         }
439                 }
440                 break;
441         /* Clear ring buffer */
442         case SYSLOG_ACTION_CLEAR:
443                 logged_chars = 0;
444                 break;
445         /* Disable logging to console */
446         case SYSLOG_ACTION_CONSOLE_OFF:
447                 if (saved_console_loglevel == -1)
448                         saved_console_loglevel = console_loglevel;
449                 console_loglevel = minimum_console_loglevel;
450                 break;
451         /* Enable logging to console */
452         case SYSLOG_ACTION_CONSOLE_ON:
453                 if (saved_console_loglevel != -1) {
454                         console_loglevel = saved_console_loglevel;
455                         saved_console_loglevel = -1;
456                 }
457                 break;
458         /* Set level of messages printed to console */
459         case SYSLOG_ACTION_CONSOLE_LEVEL:
460                 error = -EINVAL;
461                 if (len < 1 || len > 8)
462                         goto out;
463                 if (len < minimum_console_loglevel)
464                         len = minimum_console_loglevel;
465                 console_loglevel = len;
466                 /* Implicitly re-enable logging to console */
467                 saved_console_loglevel = -1;
468                 error = 0;
469                 break;
470         /* Number of chars in the log buffer */
471         case SYSLOG_ACTION_SIZE_UNREAD:
472                 error = log_end - log_start;
473                 break;
474         /* Size of the log buffer */
475         case SYSLOG_ACTION_SIZE_BUFFER:
476                 error = log_buf_len;
477                 break;
478         default:
479                 error = -EINVAL;
480                 break;
481         }
482 out:
483         return error;
484 }
485
486 SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
487 {
488         return do_syslog(type, buf, len, SYSLOG_FROM_CALL);
489 }
490
491 #ifdef  CONFIG_KGDB_KDB
492 /* kdb dmesg command needs access to the syslog buffer.  do_syslog()
493  * uses locks so it cannot be used during debugging.  Just tell kdb
494  * where the start and end of the physical and logical logs are.  This
495  * is equivalent to do_syslog(3).
496  */
497 void kdb_syslog_data(char *syslog_data[4])
498 {
499         syslog_data[0] = log_buf;
500         syslog_data[1] = log_buf + log_buf_len;
501         syslog_data[2] = log_buf + log_end -
502                 (logged_chars < log_buf_len ? logged_chars : log_buf_len);
503         syslog_data[3] = log_buf + log_end;
504 }
505 #endif  /* CONFIG_KGDB_KDB */
506
507 /*
508  * Call the console drivers on a range of log_buf
509  */
510 static void __call_console_drivers(unsigned start, unsigned end)
511 {
512         struct console *con;
513
514         for_each_console(con) {
515                 if (exclusive_console && con != exclusive_console)
516                         continue;
517                 if ((con->flags & CON_ENABLED) && con->write &&
518                                 (cpu_online(smp_processor_id()) ||
519                                 (con->flags & CON_ANYTIME)))
520                         con->write(con, &LOG_BUF(start), end - start);
521         }
522 }
523
524 static int __read_mostly ignore_loglevel;
525
526 static int __init ignore_loglevel_setup(char *str)
527 {
528         ignore_loglevel = 1;
529         printk(KERN_INFO "debug: ignoring loglevel setting.\n");
530
531         return 0;
532 }
533
534 early_param("ignore_loglevel", ignore_loglevel_setup);
535 module_param_named(ignore_loglevel, ignore_loglevel, bool, S_IRUGO | S_IWUSR);
536
537 /*
538  * Write out chars from start to end - 1 inclusive
539  */
540 static void _call_console_drivers(unsigned start,
541                                 unsigned end, int msg_log_level)
542 {
543         if ((msg_log_level < console_loglevel || ignore_loglevel) &&
544                         console_drivers && start != end) {
545                 if ((start & LOG_BUF_MASK) > (end & LOG_BUF_MASK)) {
546                         /* wrapped write */
547                         __call_console_drivers(start & LOG_BUF_MASK,
548                                                 log_buf_len);
549                         __call_console_drivers(0, end & LOG_BUF_MASK);
550                 } else {
551                         __call_console_drivers(start, end);
552                 }
553         }
554 }
555
556 /*
557  * Parse the syslog header <[0-9]*>. The decimal value represents 32bit, the
558  * lower 3 bit are the log level, the rest are the log facility. In case
559  * userspace passes usual userspace syslog messages to /dev/kmsg or
560  * /dev/ttyprintk, the log prefix might contain the facility. Printk needs
561  * to extract the correct log level for in-kernel processing, and not mangle
562  * the original value.
563  *
564  * If a prefix is found, the length of the prefix is returned. If 'level' is
565  * passed, it will be filled in with the log level without a possible facility
566  * value. If 'special' is passed, the special printk prefix chars are accepted
567  * and returned. If no valid header is found, 0 is returned and the passed
568  * variables are not touched.
569  */
570 static size_t log_prefix(const char *p, unsigned int *level, char *special)
571 {
572         unsigned int lev = 0;
573         char sp = '\0';
574         size_t len;
575
576         if (p[0] != '<' || !p[1])
577                 return 0;
578         if (p[2] == '>') {
579                 /* usual single digit level number or special char */
580                 switch (p[1]) {
581                 case '0' ... '7':
582                         lev = p[1] - '0';
583                         break;
584                 case 'c': /* KERN_CONT */
585                 case 'd': /* KERN_DEFAULT */
586                         sp = p[1];
587                         break;
588                 default:
589                         return 0;
590                 }
591                 len = 3;
592         } else {
593                 /* multi digit including the level and facility number */
594                 char *endp = NULL;
595
596                 if (p[1] < '0' && p[1] > '9')
597                         return 0;
598
599                 lev = (simple_strtoul(&p[1], &endp, 10) & 7);
600                 if (endp == NULL || endp[0] != '>')
601                         return 0;
602                 len = (endp + 1) - p;
603         }
604
605         /* do not accept special char if not asked for */
606         if (sp && !special)
607                 return 0;
608
609         if (special) {
610                 *special = sp;
611                 /* return special char, do not touch level */
612                 if (sp)
613                         return len;
614         }
615
616         if (level)
617                 *level = lev;
618         return len;
619 }
620
621 /*
622  * Call the console drivers, asking them to write out
623  * log_buf[start] to log_buf[end - 1].
624  * The console_lock must be held.
625  */
626 static void call_console_drivers(unsigned start, unsigned end)
627 {
628         unsigned cur_index, start_print;
629         static int msg_level = -1;
630
631         BUG_ON(((int)(start - end)) > 0);
632
633         cur_index = start;
634         start_print = start;
635         while (cur_index != end) {
636                 if (msg_level < 0 && ((end - cur_index) > 2)) {
637                         /* strip log prefix */
638                         cur_index += log_prefix(&LOG_BUF(cur_index), &msg_level, NULL);
639                         start_print = cur_index;
640                 }
641                 while (cur_index != end) {
642                         char c = LOG_BUF(cur_index);
643
644                         cur_index++;
645                         if (c == '\n') {
646                                 if (msg_level < 0) {
647                                         /*
648                                          * printk() has already given us loglevel tags in
649                                          * the buffer.  This code is here in case the
650                                          * log buffer has wrapped right round and scribbled
651                                          * on those tags
652                                          */
653                                         msg_level = default_message_loglevel;
654                                 }
655                                 _call_console_drivers(start_print, cur_index, msg_level);
656                                 msg_level = -1;
657                                 start_print = cur_index;
658                                 break;
659                         }
660                 }
661         }
662         _call_console_drivers(start_print, end, msg_level);
663 }
664
665 static void emit_log_char(char c)
666 {
667         LOG_BUF(log_end) = c;
668         log_end++;
669         if (log_end - log_start > log_buf_len)
670                 log_start = log_end - log_buf_len;
671         if (log_end - con_start > log_buf_len)
672                 con_start = log_end - log_buf_len;
673         if (logged_chars < log_buf_len)
674                 logged_chars++;
675 }
676
677 /*
678  * Zap console related locks when oopsing. Only zap at most once
679  * every 10 seconds, to leave time for slow consoles to print a
680  * full oops.
681  */
682 static void zap_locks(void)
683 {
684         static unsigned long oops_timestamp;
685
686         if (time_after_eq(jiffies, oops_timestamp) &&
687                         !time_after(jiffies, oops_timestamp + 30 * HZ))
688                 return;
689
690         oops_timestamp = jiffies;
691
692         /* If a crash is occurring, make sure we can't deadlock */
693         raw_spin_lock_init(&logbuf_lock);
694         /* And make sure that we print immediately */
695         sema_init(&console_sem, 1);
696 }
697
698 #if defined(CONFIG_PRINTK_TIME)
699 static int printk_time = 1;
700 #else
701 static int printk_time = 0;
702 #endif
703 module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
704
705 /* Check if we have any console registered that can be called early in boot. */
706 static int have_callable_console(void)
707 {
708         struct console *con;
709
710         for_each_console(con)
711                 if (con->flags & CON_ANYTIME)
712                         return 1;
713
714         return 0;
715 }
716
717 /**
718  * printk - print a kernel message
719  * @fmt: format string
720  *
721  * This is printk().  It can be called from any context.  We want it to work.
722  *
723  * We try to grab the console_lock.  If we succeed, it's easy - we log the output and
724  * call the console drivers.  If we fail to get the semaphore we place the output
725  * into the log buffer and return.  The current holder of the console_sem will
726  * notice the new output in console_unlock(); and will send it to the
727  * consoles before releasing the lock.
728  *
729  * One effect of this deferred printing is that code which calls printk() and
730  * then changes console_loglevel may break. This is because console_loglevel
731  * is inspected when the actual printing occurs.
732  *
733  * See also:
734  * printf(3)
735  *
736  * See the vsnprintf() documentation for format string extensions over C99.
737  */
738
739 asmlinkage int printk(const char *fmt, ...)
740 {
741         va_list args;
742         int r;
743
744 #ifdef CONFIG_KGDB_KDB
745         if (unlikely(kdb_trap_printk)) {
746                 va_start(args, fmt);
747                 r = vkdb_printf(fmt, args);
748                 va_end(args);
749                 return r;
750         }
751 #endif
752         va_start(args, fmt);
753         r = vprintk(fmt, args);
754         va_end(args);
755
756         return r;
757 }
758
759 /* cpu currently holding logbuf_lock */
760 static volatile unsigned int printk_cpu = UINT_MAX;
761
762 /*
763  * Can we actually use the console at this time on this cpu?
764  *
765  * Console drivers may assume that per-cpu resources have
766  * been allocated. So unless they're explicitly marked as
767  * being able to cope (CON_ANYTIME) don't call them until
768  * this CPU is officially up.
769  */
770 static inline int can_use_console(unsigned int cpu)
771 {
772         return cpu_online(cpu) || have_callable_console();
773 }
774
775 /*
776  * Try to get console ownership to actually show the kernel
777  * messages from a 'printk'. Return true (and with the
778  * console_lock held, and 'console_locked' set) if it
779  * is successful, false otherwise.
780  *
781  * This gets called with the 'logbuf_lock' spinlock held and
782  * interrupts disabled. It should return with 'lockbuf_lock'
783  * released but interrupts still disabled.
784  */
785 static int console_trylock_for_printk(unsigned int cpu)
786         __releases(&logbuf_lock)
787 {
788         int retval = 0, wake = 0;
789
790         if (console_trylock()) {
791                 retval = 1;
792
793                 /*
794                  * If we can't use the console, we need to release
795                  * the console semaphore by hand to avoid flushing
796                  * the buffer. We need to hold the console semaphore
797                  * in order to do this test safely.
798                  */
799                 if (!can_use_console(cpu)) {
800                         console_locked = 0;
801                         wake = 1;
802                         retval = 0;
803                 }
804         }
805         printk_cpu = UINT_MAX;
806         if (wake)
807                 up(&console_sem);
808         raw_spin_unlock(&logbuf_lock);
809         return retval;
810 }
811 static const char recursion_bug_msg [] =
812                 KERN_CRIT "BUG: recent printk recursion!\n";
813 static int recursion_bug;
814 static int new_text_line = 1;
815 static char printk_buf[1024];
816
817 int printk_delay_msec __read_mostly;
818
819 static inline void printk_delay(void)
820 {
821         if (unlikely(printk_delay_msec)) {
822                 int m = printk_delay_msec;
823
824                 while (m--) {
825                         mdelay(1);
826                         touch_nmi_watchdog();
827                 }
828         }
829 }
830
831 asmlinkage int vprintk(const char *fmt, va_list args)
832 {
833         int printed_len = 0;
834         int current_log_level = default_message_loglevel;
835         unsigned long flags;
836         int this_cpu;
837         char *p;
838         size_t plen;
839         char special;
840
841         boot_delay_msec();
842         printk_delay();
843
844         preempt_disable();
845         /* This stops the holder of console_sem just where we want him */
846         raw_local_irq_save(flags);
847         this_cpu = smp_processor_id();
848
849         /*
850          * Ouch, printk recursed into itself!
851          */
852         if (unlikely(printk_cpu == this_cpu)) {
853                 /*
854                  * If a crash is occurring during printk() on this CPU,
855                  * then try to get the crash message out but make sure
856                  * we can't deadlock. Otherwise just return to avoid the
857                  * recursion and return - but flag the recursion so that
858                  * it can be printed at the next appropriate moment:
859                  */
860                 if (!oops_in_progress) {
861                         recursion_bug = 1;
862                         goto out_restore_irqs;
863                 }
864                 zap_locks();
865         }
866
867         lockdep_off();
868         raw_spin_lock(&logbuf_lock);
869         printk_cpu = this_cpu;
870
871         if (recursion_bug) {
872                 recursion_bug = 0;
873                 strcpy(printk_buf, recursion_bug_msg);
874                 printed_len = strlen(recursion_bug_msg);
875         }
876         /* Emit the output into the temporary buffer */
877         printed_len += vscnprintf(printk_buf + printed_len,
878                                   sizeof(printk_buf) - printed_len, fmt, args);
879
880         p = printk_buf;
881
882         /* Read log level and handle special printk prefix */
883         plen = log_prefix(p, &current_log_level, &special);
884         if (plen) {
885                 p += plen;
886
887                 switch (special) {
888                 case 'c': /* Strip <c> KERN_CONT, continue line */
889                         plen = 0;
890                         break;
891                 case 'd': /* Strip <d> KERN_DEFAULT, start new line */
892                         plen = 0;
893                 default:
894                         if (!new_text_line) {
895                                 emit_log_char('\n');
896                                 new_text_line = 1;
897                         }
898                 }
899         }
900
901         /*
902          * Copy the output into log_buf. If the caller didn't provide
903          * the appropriate log prefix, we insert them here
904          */
905         for (; *p; p++) {
906                 if (new_text_line) {
907                         new_text_line = 0;
908
909                         if (plen) {
910                                 /* Copy original log prefix */
911                                 int i;
912
913                                 for (i = 0; i < plen; i++)
914                                         emit_log_char(printk_buf[i]);
915                                 printed_len += plen;
916                         } else {
917                                 /* Add log prefix */
918                                 emit_log_char('<');
919                                 emit_log_char(current_log_level + '0');
920                                 emit_log_char('>');
921                                 printed_len += 3;
922                         }
923
924                         if (printk_time) {
925                                 /* Add the current time stamp */
926                                 char tbuf[50], *tp;
927                                 unsigned tlen;
928                                 unsigned long long t;
929                                 unsigned long nanosec_rem;
930
931                                 t = cpu_clock(printk_cpu);
932                                 nanosec_rem = do_div(t, 1000000000);
933                                 tlen = sprintf(tbuf, "[%5lu.%06lu] ",
934                                                 (unsigned long) t,
935                                                 nanosec_rem / 1000);
936
937                                 for (tp = tbuf; tp < tbuf + tlen; tp++)
938                                         emit_log_char(*tp);
939                                 printed_len += tlen;
940                         }
941
942                         if (!*p)
943                                 break;
944                 }
945
946                 emit_log_char(*p);
947                 if (*p == '\n')
948                         new_text_line = 1;
949         }
950
951         /*
952          * Try to acquire and then immediately release the
953          * console semaphore. The release will do all the
954          * actual magic (print out buffers, wake up klogd,
955          * etc). 
956          *
957          * The console_trylock_for_printk() function
958          * will release 'logbuf_lock' regardless of whether it
959          * actually gets the semaphore or not.
960          */
961         if (console_trylock_for_printk(this_cpu))
962                 console_unlock();
963
964         lockdep_on();
965 out_restore_irqs:
966         raw_local_irq_restore(flags);
967
968         preempt_enable();
969         return printed_len;
970 }
971 EXPORT_SYMBOL(printk);
972 EXPORT_SYMBOL(vprintk);
973
974 #else
975
976 static void call_console_drivers(unsigned start, unsigned end)
977 {
978 }
979
980 #endif
981
982 static int __add_preferred_console(char *name, int idx, char *options,
983                                    char *brl_options)
984 {
985         struct console_cmdline *c;
986         int i;
987
988         /*
989          *      See if this tty is not yet registered, and
990          *      if we have a slot free.
991          */
992         for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
993                 if (strcmp(console_cmdline[i].name, name) == 0 &&
994                           console_cmdline[i].index == idx) {
995                                 if (!brl_options)
996                                         selected_console = i;
997                                 return 0;
998                 }
999         if (i == MAX_CMDLINECONSOLES)
1000                 return -E2BIG;
1001         if (!brl_options)
1002                 selected_console = i;
1003         c = &console_cmdline[i];
1004         strlcpy(c->name, name, sizeof(c->name));
1005         c->options = options;
1006 #ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1007         c->brl_options = brl_options;
1008 #endif
1009         c->index = idx;
1010         return 0;
1011 }
1012 /*
1013  * Set up a list of consoles.  Called from init/main.c
1014  */
1015 static int __init console_setup(char *str)
1016 {
1017         char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for index */
1018         char *s, *options, *brl_options = NULL;
1019         int idx;
1020
1021 #ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1022         if (!memcmp(str, "brl,", 4)) {
1023                 brl_options = "";
1024                 str += 4;
1025         } else if (!memcmp(str, "brl=", 4)) {
1026                 brl_options = str + 4;
1027                 str = strchr(brl_options, ',');
1028                 if (!str) {
1029                         printk(KERN_ERR "need port name after brl=\n");
1030                         return 1;
1031                 }
1032                 *(str++) = 0;
1033         }
1034 #endif
1035
1036         /*
1037          * Decode str into name, index, options.
1038          */
1039         if (str[0] >= '0' && str[0] <= '9') {
1040                 strcpy(buf, "ttyS");
1041                 strncpy(buf + 4, str, sizeof(buf) - 5);
1042         } else {
1043                 strncpy(buf, str, sizeof(buf) - 1);
1044         }
1045         buf[sizeof(buf) - 1] = 0;
1046         if ((options = strchr(str, ',')) != NULL)
1047                 *(options++) = 0;
1048 #ifdef __sparc__
1049         if (!strcmp(str, "ttya"))
1050                 strcpy(buf, "ttyS0");
1051         if (!strcmp(str, "ttyb"))
1052                 strcpy(buf, "ttyS1");
1053 #endif
1054         for (s = buf; *s; s++)
1055                 if ((*s >= '0' && *s <= '9') || *s == ',')
1056                         break;
1057         idx = simple_strtoul(s, NULL, 10);
1058         *s = 0;
1059
1060         __add_preferred_console(buf, idx, options, brl_options);
1061         console_set_on_cmdline = 1;
1062         return 1;
1063 }
1064 __setup("console=", console_setup);
1065
1066 /**
1067  * add_preferred_console - add a device to the list of preferred consoles.
1068  * @name: device name
1069  * @idx: device index
1070  * @options: options for this console
1071  *
1072  * The last preferred console added will be used for kernel messages
1073  * and stdin/out/err for init.  Normally this is used by console_setup
1074  * above to handle user-supplied console arguments; however it can also
1075  * be used by arch-specific code either to override the user or more
1076  * commonly to provide a default console (ie from PROM variables) when
1077  * the user has not supplied one.
1078  */
1079 int add_preferred_console(char *name, int idx, char *options)
1080 {
1081         return __add_preferred_console(name, idx, options, NULL);
1082 }
1083
1084 int update_console_cmdline(char *name, int idx, char *name_new, int idx_new, char *options)
1085 {
1086         struct console_cmdline *c;
1087         int i;
1088
1089         for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
1090                 if (strcmp(console_cmdline[i].name, name) == 0 &&
1091                           console_cmdline[i].index == idx) {
1092                                 c = &console_cmdline[i];
1093                                 strlcpy(c->name, name_new, sizeof(c->name));
1094                                 c->name[sizeof(c->name) - 1] = 0;
1095                                 c->options = options;
1096                                 c->index = idx_new;
1097                                 return i;
1098                 }
1099         /* not found */
1100         return -1;
1101 }
1102
1103 int console_suspend_enabled = 1;
1104 EXPORT_SYMBOL(console_suspend_enabled);
1105
1106 static int __init console_suspend_disable(char *str)
1107 {
1108         console_suspend_enabled = 0;
1109         return 1;
1110 }
1111 __setup("no_console_suspend", console_suspend_disable);
1112
1113 /**
1114  * suspend_console - suspend the console subsystem
1115  *
1116  * This disables printk() while we go into suspend states
1117  */
1118 void suspend_console(void)
1119 {
1120         if (!console_suspend_enabled)
1121                 return;
1122         printk("Suspending console(s) (use no_console_suspend to debug)\n");
1123         console_lock();
1124         console_suspended = 1;
1125         up(&console_sem);
1126 }
1127
1128 void resume_console(void)
1129 {
1130         if (!console_suspend_enabled)
1131                 return;
1132         down(&console_sem);
1133         console_suspended = 0;
1134         console_unlock();
1135 }
1136
1137 /**
1138  * console_cpu_notify - print deferred console messages after CPU hotplug
1139  * @self: notifier struct
1140  * @action: CPU hotplug event
1141  * @hcpu: unused
1142  *
1143  * If printk() is called from a CPU that is not online yet, the messages
1144  * will be spooled but will not show up on the console.  This function is
1145  * called when a new CPU comes online (or fails to come up), and ensures
1146  * that any such output gets printed.
1147  */
1148 static int __cpuinit console_cpu_notify(struct notifier_block *self,
1149         unsigned long action, void *hcpu)
1150 {
1151         switch (action) {
1152         case CPU_ONLINE:
1153         case CPU_DEAD:
1154         case CPU_DYING:
1155         case CPU_DOWN_FAILED:
1156         case CPU_UP_CANCELED:
1157                 console_lock();
1158                 console_unlock();
1159         }
1160         return NOTIFY_OK;
1161 }
1162
1163 /**
1164  * console_lock - lock the console system for exclusive use.
1165  *
1166  * Acquires a lock which guarantees that the caller has
1167  * exclusive access to the console system and the console_drivers list.
1168  *
1169  * Can sleep, returns nothing.
1170  */
1171 void console_lock(void)
1172 {
1173         BUG_ON(in_interrupt());
1174         down(&console_sem);
1175         if (console_suspended)
1176                 return;
1177         console_locked = 1;
1178         console_may_schedule = 1;
1179 }
1180 EXPORT_SYMBOL(console_lock);
1181
1182 /**
1183  * console_trylock - try to lock the console system for exclusive use.
1184  *
1185  * Tried to acquire a lock which guarantees that the caller has
1186  * exclusive access to the console system and the console_drivers list.
1187  *
1188  * returns 1 on success, and 0 on failure to acquire the lock.
1189  */
1190 int console_trylock(void)
1191 {
1192         if (down_trylock(&console_sem))
1193                 return 0;
1194         if (console_suspended) {
1195                 up(&console_sem);
1196                 return 0;
1197         }
1198         console_locked = 1;
1199         console_may_schedule = 0;
1200         return 1;
1201 }
1202 EXPORT_SYMBOL(console_trylock);
1203
1204 int is_console_locked(void)
1205 {
1206         return console_locked;
1207 }
1208
1209 static DEFINE_PER_CPU(int, printk_pending);
1210
1211 void printk_tick(void)
1212 {
1213         if (__this_cpu_read(printk_pending)) {
1214                 __this_cpu_write(printk_pending, 0);
1215                 wake_up_interruptible(&log_wait);
1216         }
1217 }
1218
1219 int printk_needs_cpu(int cpu)
1220 {
1221         if (cpu_is_offline(cpu))
1222                 printk_tick();
1223         return __this_cpu_read(printk_pending);
1224 }
1225
1226 void wake_up_klogd(void)
1227 {
1228         if (waitqueue_active(&log_wait))
1229                 this_cpu_write(printk_pending, 1);
1230 }
1231
1232 /**
1233  * console_unlock - unlock the console system
1234  *
1235  * Releases the console_lock which the caller holds on the console system
1236  * and the console driver list.
1237  *
1238  * While the console_lock was held, console output may have been buffered
1239  * by printk().  If this is the case, console_unlock(); emits
1240  * the output prior to releasing the lock.
1241  *
1242  * If there is output waiting for klogd, we wake it up.
1243  *
1244  * console_unlock(); may be called from any context.
1245  */
1246 void console_unlock(void)
1247 {
1248         unsigned long flags;
1249         unsigned _con_start, _log_end;
1250         unsigned wake_klogd = 0, retry = 0;
1251
1252         if (console_suspended) {
1253                 up(&console_sem);
1254                 return;
1255         }
1256
1257         console_may_schedule = 0;
1258
1259 again:
1260         for ( ; ; ) {
1261                 raw_spin_lock_irqsave(&logbuf_lock, flags);
1262                 wake_klogd |= log_start - log_end;
1263                 if (con_start == log_end)
1264                         break;                  /* Nothing to print */
1265                 _con_start = con_start;
1266                 _log_end = log_end;
1267                 con_start = log_end;            /* Flush */
1268                 raw_spin_unlock(&logbuf_lock);
1269                 stop_critical_timings();        /* don't trace print latency */
1270                 call_console_drivers(_con_start, _log_end);
1271                 start_critical_timings();
1272                 local_irq_restore(flags);
1273         }
1274         console_locked = 0;
1275
1276         /* Release the exclusive_console once it is used */
1277         if (unlikely(exclusive_console))
1278                 exclusive_console = NULL;
1279
1280         raw_spin_unlock(&logbuf_lock);
1281
1282         up(&console_sem);
1283
1284         /*
1285          * Someone could have filled up the buffer again, so re-check if there's
1286          * something to flush. In case we cannot trylock the console_sem again,
1287          * there's a new owner and the console_unlock() from them will do the
1288          * flush, no worries.
1289          */
1290         raw_spin_lock(&logbuf_lock);
1291         if (con_start != log_end)
1292                 retry = 1;
1293         if (retry && console_trylock())
1294                 goto again;
1295
1296         raw_spin_unlock_irqrestore(&logbuf_lock, flags);
1297         if (wake_klogd)
1298                 wake_up_klogd();
1299 }
1300 EXPORT_SYMBOL(console_unlock);
1301
1302 /**
1303  * console_conditional_schedule - yield the CPU if required
1304  *
1305  * If the console code is currently allowed to sleep, and
1306  * if this CPU should yield the CPU to another task, do
1307  * so here.
1308  *
1309  * Must be called within console_lock();.
1310  */
1311 void __sched console_conditional_schedule(void)
1312 {
1313         if (console_may_schedule)
1314                 cond_resched();
1315 }
1316 EXPORT_SYMBOL(console_conditional_schedule);
1317
1318 void console_unblank(void)
1319 {
1320         struct console *c;
1321
1322         /*
1323          * console_unblank can no longer be called in interrupt context unless
1324          * oops_in_progress is set to 1..
1325          */
1326         if (oops_in_progress) {
1327                 if (down_trylock(&console_sem) != 0)
1328                         return;
1329         } else
1330                 console_lock();
1331
1332         console_locked = 1;
1333         console_may_schedule = 0;
1334         for_each_console(c)
1335                 if ((c->flags & CON_ENABLED) && c->unblank)
1336                         c->unblank();
1337         console_unlock();
1338 }
1339
1340 /*
1341  * Return the console tty driver structure and its associated index
1342  */
1343 struct tty_driver *console_device(int *index)
1344 {
1345         struct console *c;
1346         struct tty_driver *driver = NULL;
1347
1348         console_lock();
1349         for_each_console(c) {
1350                 if (!c->device)
1351                         continue;
1352                 driver = c->device(c, index);
1353                 if (driver)
1354                         break;
1355         }
1356         console_unlock();
1357         return driver;
1358 }
1359
1360 /*
1361  * Prevent further output on the passed console device so that (for example)
1362  * serial drivers can disable console output before suspending a port, and can
1363  * re-enable output afterwards.
1364  */
1365 void console_stop(struct console *console)
1366 {
1367         console_lock();
1368         console->flags &= ~CON_ENABLED;
1369         console_unlock();
1370 }
1371 EXPORT_SYMBOL(console_stop);
1372
1373 void console_start(struct console *console)
1374 {
1375         console_lock();
1376         console->flags |= CON_ENABLED;
1377         console_unlock();
1378 }
1379 EXPORT_SYMBOL(console_start);
1380
1381 static int __read_mostly keep_bootcon;
1382
1383 static int __init keep_bootcon_setup(char *str)
1384 {
1385         keep_bootcon = 1;
1386         printk(KERN_INFO "debug: skip boot console de-registration.\n");
1387
1388         return 0;
1389 }
1390
1391 early_param("keep_bootcon", keep_bootcon_setup);
1392
1393 /*
1394  * The console driver calls this routine during kernel initialization
1395  * to register the console printing procedure with printk() and to
1396  * print any messages that were printed by the kernel before the
1397  * console driver was initialized.
1398  *
1399  * This can happen pretty early during the boot process (because of
1400  * early_printk) - sometimes before setup_arch() completes - be careful
1401  * of what kernel features are used - they may not be initialised yet.
1402  *
1403  * There are two types of consoles - bootconsoles (early_printk) and
1404  * "real" consoles (everything which is not a bootconsole) which are
1405  * handled differently.
1406  *  - Any number of bootconsoles can be registered at any time.
1407  *  - As soon as a "real" console is registered, all bootconsoles
1408  *    will be unregistered automatically.
1409  *  - Once a "real" console is registered, any attempt to register a
1410  *    bootconsoles will be rejected
1411  */
1412 void register_console(struct console *newcon)
1413 {
1414         int i;
1415         unsigned long flags;
1416         struct console *bcon = NULL;
1417
1418         /*
1419          * before we register a new CON_BOOT console, make sure we don't
1420          * already have a valid console
1421          */
1422         if (console_drivers && newcon->flags & CON_BOOT) {
1423                 /* find the last or real console */
1424                 for_each_console(bcon) {
1425                         if (!(bcon->flags & CON_BOOT)) {
1426                                 printk(KERN_INFO "Too late to register bootconsole %s%d\n",
1427                                         newcon->name, newcon->index);
1428                                 return;
1429                         }
1430                 }
1431         }
1432
1433         if (console_drivers && console_drivers->flags & CON_BOOT)
1434                 bcon = console_drivers;
1435
1436         if (preferred_console < 0 || bcon || !console_drivers)
1437                 preferred_console = selected_console;
1438
1439         if (newcon->early_setup)
1440                 newcon->early_setup();
1441
1442         /*
1443          *      See if we want to use this console driver. If we
1444          *      didn't select a console we take the first one
1445          *      that registers here.
1446          */
1447         if (preferred_console < 0) {
1448                 if (newcon->index < 0)
1449                         newcon->index = 0;
1450                 if (newcon->setup == NULL ||
1451                     newcon->setup(newcon, NULL) == 0) {
1452                         newcon->flags |= CON_ENABLED;
1453                         if (newcon->device) {
1454                                 newcon->flags |= CON_CONSDEV;
1455                                 preferred_console = 0;
1456                         }
1457                 }
1458         }
1459
1460         /*
1461          *      See if this console matches one we selected on
1462          *      the command line.
1463          */
1464         for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0];
1465                         i++) {
1466                 if (strcmp(console_cmdline[i].name, newcon->name) != 0)
1467                         continue;
1468                 if (newcon->index >= 0 &&
1469                     newcon->index != console_cmdline[i].index)
1470                         continue;
1471                 if (newcon->index < 0)
1472                         newcon->index = console_cmdline[i].index;
1473 #ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1474                 if (console_cmdline[i].brl_options) {
1475                         newcon->flags |= CON_BRL;
1476                         braille_register_console(newcon,
1477                                         console_cmdline[i].index,
1478                                         console_cmdline[i].options,
1479                                         console_cmdline[i].brl_options);
1480                         return;
1481                 }
1482 #endif
1483                 if (newcon->setup &&
1484                     newcon->setup(newcon, console_cmdline[i].options) != 0)
1485                         break;
1486                 newcon->flags |= CON_ENABLED;
1487                 newcon->index = console_cmdline[i].index;
1488                 if (i == selected_console) {
1489                         newcon->flags |= CON_CONSDEV;
1490                         preferred_console = selected_console;
1491                 }
1492                 break;
1493         }
1494
1495         if (!(newcon->flags & CON_ENABLED))
1496                 return;
1497
1498         /*
1499          * If we have a bootconsole, and are switching to a real console,
1500          * don't print everything out again, since when the boot console, and
1501          * the real console are the same physical device, it's annoying to
1502          * see the beginning boot messages twice
1503          */
1504         if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
1505                 newcon->flags &= ~CON_PRINTBUFFER;
1506
1507         /*
1508          *      Put this console in the list - keep the
1509          *      preferred driver at the head of the list.
1510          */
1511         console_lock();
1512         if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) {
1513                 newcon->next = console_drivers;
1514                 console_drivers = newcon;
1515                 if (newcon->next)
1516                         newcon->next->flags &= ~CON_CONSDEV;
1517         } else {
1518                 newcon->next = console_drivers->next;
1519                 console_drivers->next = newcon;
1520         }
1521         if (newcon->flags & CON_PRINTBUFFER) {
1522                 /*
1523                  * console_unlock(); will print out the buffered messages
1524                  * for us.
1525                  */
1526                 raw_spin_lock_irqsave(&logbuf_lock, flags);
1527                 con_start = log_start;
1528                 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
1529                 /*
1530                  * We're about to replay the log buffer.  Only do this to the
1531                  * just-registered console to avoid excessive message spam to
1532                  * the already-registered consoles.
1533                  */
1534                 exclusive_console = newcon;
1535         }
1536         console_unlock();
1537         console_sysfs_notify();
1538
1539         /*
1540          * By unregistering the bootconsoles after we enable the real console
1541          * we get the "console xxx enabled" message on all the consoles -
1542          * boot consoles, real consoles, etc - this is to ensure that end
1543          * users know there might be something in the kernel's log buffer that
1544          * went to the bootconsole (that they do not see on the real console)
1545          */
1546         if (bcon &&
1547             ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) &&
1548             !keep_bootcon) {
1549                 /* we need to iterate through twice, to make sure we print
1550                  * everything out, before we unregister the console(s)
1551                  */
1552                 printk(KERN_INFO "console [%s%d] enabled, bootconsole disabled\n",
1553                         newcon->name, newcon->index);
1554                 for_each_console(bcon)
1555                         if (bcon->flags & CON_BOOT)
1556                                 unregister_console(bcon);
1557         } else {
1558                 printk(KERN_INFO "%sconsole [%s%d] enabled\n",
1559                         (newcon->flags & CON_BOOT) ? "boot" : "" ,
1560                         newcon->name, newcon->index);
1561         }
1562 }
1563 EXPORT_SYMBOL(register_console);
1564
1565 int unregister_console(struct console *console)
1566 {
1567         struct console *a, *b;
1568         int res = 1;
1569
1570 #ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1571         if (console->flags & CON_BRL)
1572                 return braille_unregister_console(console);
1573 #endif
1574
1575         console_lock();
1576         if (console_drivers == console) {
1577                 console_drivers=console->next;
1578                 res = 0;
1579         } else if (console_drivers) {
1580                 for (a=console_drivers->next, b=console_drivers ;
1581                      a; b=a, a=b->next) {
1582                         if (a == console) {
1583                                 b->next = a->next;
1584                                 res = 0;
1585                                 break;
1586                         }
1587                 }
1588         }
1589
1590         /*
1591          * If this isn't the last console and it has CON_CONSDEV set, we
1592          * need to set it on the next preferred console.
1593          */
1594         if (console_drivers != NULL && console->flags & CON_CONSDEV)
1595                 console_drivers->flags |= CON_CONSDEV;
1596
1597         console_unlock();
1598         console_sysfs_notify();
1599         return res;
1600 }
1601 EXPORT_SYMBOL(unregister_console);
1602
1603 static int __init printk_late_init(void)
1604 {
1605         struct console *con;
1606
1607         for_each_console(con) {
1608                 if (!keep_bootcon && con->flags & CON_BOOT) {
1609                         printk(KERN_INFO "turn off boot console %s%d\n",
1610                                 con->name, con->index);
1611                         unregister_console(con);
1612                 }
1613         }
1614         hotcpu_notifier(console_cpu_notify, 0);
1615         return 0;
1616 }
1617 late_initcall(printk_late_init);
1618
1619 #if defined CONFIG_PRINTK
1620
1621 /*
1622  * printk rate limiting, lifted from the networking subsystem.
1623  *
1624  * This enforces a rate limit: not more than 10 kernel messages
1625  * every 5s to make a denial-of-service attack impossible.
1626  */
1627 DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10);
1628
1629 int __printk_ratelimit(const char *func)
1630 {
1631         return ___ratelimit(&printk_ratelimit_state, func);
1632 }
1633 EXPORT_SYMBOL(__printk_ratelimit);
1634
1635 /**
1636  * printk_timed_ratelimit - caller-controlled printk ratelimiting
1637  * @caller_jiffies: pointer to caller's state
1638  * @interval_msecs: minimum interval between prints
1639  *
1640  * printk_timed_ratelimit() returns true if more than @interval_msecs
1641  * milliseconds have elapsed since the last time printk_timed_ratelimit()
1642  * returned true.
1643  */
1644 bool printk_timed_ratelimit(unsigned long *caller_jiffies,
1645                         unsigned int interval_msecs)
1646 {
1647         if (*caller_jiffies == 0
1648                         || !time_in_range(jiffies, *caller_jiffies,
1649                                         *caller_jiffies
1650                                         + msecs_to_jiffies(interval_msecs))) {
1651                 *caller_jiffies = jiffies;
1652                 return true;
1653         }
1654         return false;
1655 }
1656 EXPORT_SYMBOL(printk_timed_ratelimit);
1657
1658 static DEFINE_SPINLOCK(dump_list_lock);
1659 static LIST_HEAD(dump_list);
1660
1661 /**
1662  * kmsg_dump_register - register a kernel log dumper.
1663  * @dumper: pointer to the kmsg_dumper structure
1664  *
1665  * Adds a kernel log dumper to the system. The dump callback in the
1666  * structure will be called when the kernel oopses or panics and must be
1667  * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise.
1668  */
1669 int kmsg_dump_register(struct kmsg_dumper *dumper)
1670 {
1671         unsigned long flags;
1672         int err = -EBUSY;
1673
1674         /* The dump callback needs to be set */
1675         if (!dumper->dump)
1676                 return -EINVAL;
1677
1678         spin_lock_irqsave(&dump_list_lock, flags);
1679         /* Don't allow registering multiple times */
1680         if (!dumper->registered) {
1681                 dumper->registered = 1;
1682                 list_add_tail_rcu(&dumper->list, &dump_list);
1683                 err = 0;
1684         }
1685         spin_unlock_irqrestore(&dump_list_lock, flags);
1686
1687         return err;
1688 }
1689 EXPORT_SYMBOL_GPL(kmsg_dump_register);
1690
1691 /**
1692  * kmsg_dump_unregister - unregister a kmsg dumper.
1693  * @dumper: pointer to the kmsg_dumper structure
1694  *
1695  * Removes a dump device from the system. Returns zero on success and
1696  * %-EINVAL otherwise.
1697  */
1698 int kmsg_dump_unregister(struct kmsg_dumper *dumper)
1699 {
1700         unsigned long flags;
1701         int err = -EINVAL;
1702
1703         spin_lock_irqsave(&dump_list_lock, flags);
1704         if (dumper->registered) {
1705                 dumper->registered = 0;
1706                 list_del_rcu(&dumper->list);
1707                 err = 0;
1708         }
1709         spin_unlock_irqrestore(&dump_list_lock, flags);
1710         synchronize_rcu();
1711
1712         return err;
1713 }
1714 EXPORT_SYMBOL_GPL(kmsg_dump_unregister);
1715
1716 /**
1717  * kmsg_dump - dump kernel log to kernel message dumpers.
1718  * @reason: the reason (oops, panic etc) for dumping
1719  *
1720  * Iterate through each of the dump devices and call the oops/panic
1721  * callbacks with the log buffer.
1722  */
1723 void kmsg_dump(enum kmsg_dump_reason reason)
1724 {
1725         unsigned long end;
1726         unsigned chars;
1727         struct kmsg_dumper *dumper;
1728         const char *s1, *s2;
1729         unsigned long l1, l2;
1730         unsigned long flags;
1731
1732         /* Theoretically, the log could move on after we do this, but
1733            there's not a lot we can do about that. The new messages
1734            will overwrite the start of what we dump. */
1735         raw_spin_lock_irqsave(&logbuf_lock, flags);
1736         end = log_end & LOG_BUF_MASK;
1737         chars = logged_chars;
1738         raw_spin_unlock_irqrestore(&logbuf_lock, flags);
1739
1740         if (chars > end) {
1741                 s1 = log_buf + log_buf_len - chars + end;
1742                 l1 = chars - end;
1743
1744                 s2 = log_buf;
1745                 l2 = end;
1746         } else {
1747                 s1 = "";
1748                 l1 = 0;
1749
1750                 s2 = log_buf + end - chars;
1751                 l2 = chars;
1752         }
1753
1754         rcu_read_lock();
1755         list_for_each_entry_rcu(dumper, &dump_list, list)
1756                 dumper->dump(dumper, reason, s1, l1, s2, l2);
1757         rcu_read_unlock();
1758 }
1759 #endif