]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - kernel/printk.c
Merge with ../linux-2.6
[linux-2.6-omap-h63xx.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  *     manfreds@colorfullife.com
15  * Rewrote bits to get rid of console_lock
16  *      01Mar01 Andrew Morton <andrewm@uow.edu.au>
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/smp_lock.h>
24 #include <linux/console.h>
25 #include <linux/init.h>
26 #include <linux/module.h>
27 #include <linux/interrupt.h>                    /* For in_interrupt() */
28 #include <linux/config.h>
29 #include <linux/delay.h>
30 #include <linux/smp.h>
31 #include <linux/security.h>
32 #include <linux/bootmem.h>
33 #include <linux/syscalls.h>
34
35 #include <asm/uaccess.h>
36
37 #define __LOG_BUF_LEN   (1 << CONFIG_LOG_BUF_SHIFT)
38
39 #ifdef        CONFIG_DEBUG_LL
40 extern void printascii(char *);
41 #endif
42
43 /* printk's without a loglevel use this.. */
44 #define DEFAULT_MESSAGE_LOGLEVEL 4 /* KERN_WARNING */
45
46 /* We show everything that is MORE important than this.. */
47 #define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */
48 #define DEFAULT_CONSOLE_LOGLEVEL 7 /* anything MORE serious than KERN_DEBUG */
49
50 DECLARE_WAIT_QUEUE_HEAD(log_wait);
51
52 int console_printk[4] = {
53         DEFAULT_CONSOLE_LOGLEVEL,       /* console_loglevel */
54         DEFAULT_MESSAGE_LOGLEVEL,       /* default_message_loglevel */
55         MINIMUM_CONSOLE_LOGLEVEL,       /* minimum_console_loglevel */
56         DEFAULT_CONSOLE_LOGLEVEL,       /* default_console_loglevel */
57 };
58
59 EXPORT_SYMBOL(console_printk);
60
61 /*
62  * Low lever drivers may need that to know if they can schedule in
63  * their unblank() callback or not. So let's export it.
64  */
65 int oops_in_progress;
66 EXPORT_SYMBOL(oops_in_progress);
67
68 /*
69  * console_sem protects the console_drivers list, and also
70  * provides serialisation for access to the entire console
71  * driver system.
72  */
73 static DECLARE_MUTEX(console_sem);
74 struct console *console_drivers;
75 /*
76  * This is used for debugging the mess that is the VT code by
77  * keeping track if we have the console semaphore held. It's
78  * definitely not the perfect debug tool (we don't know if _WE_
79  * hold it are racing, but it helps tracking those weird code
80  * path in the console code where we end up in places I want
81  * locked without the console sempahore held
82  */
83 static int console_locked;
84
85 /*
86  * logbuf_lock protects log_buf, log_start, log_end, con_start and logged_chars
87  * It is also used in interesting ways to provide interlocking in
88  * release_console_sem().
89  */
90 static DEFINE_SPINLOCK(logbuf_lock);
91
92 #define LOG_BUF_MASK    (log_buf_len-1)
93 #define LOG_BUF(idx) (log_buf[(idx) & LOG_BUF_MASK])
94
95 /*
96  * The indices into log_buf are not constrained to log_buf_len - they
97  * must be masked before subscripting
98  */
99 static unsigned long log_start; /* Index into log_buf: next char to be read by syslog() */
100 static unsigned long con_start; /* Index into log_buf: next char to be sent to consoles */
101 static unsigned long log_end;   /* Index into log_buf: most-recently-written-char + 1 */
102
103 /*
104  *      Array of consoles built from command line options (console=)
105  */
106 struct console_cmdline
107 {
108         char    name[8];                        /* Name of the driver       */
109         int     index;                          /* Minor dev. to use        */
110         char    *options;                       /* Options for the driver   */
111 };
112
113 #define MAX_CMDLINECONSOLES 8
114
115 static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
116 static int selected_console = -1;
117 static int preferred_console = -1;
118
119 /* Flag: console code may call schedule() */
120 static int console_may_schedule;
121
122 #ifdef CONFIG_PRINTK
123
124 static char __log_buf[__LOG_BUF_LEN];
125 static char *log_buf = __log_buf;
126 static int log_buf_len = __LOG_BUF_LEN;
127 static unsigned long logged_chars; /* Number of chars produced since last read+clear operation */
128
129 /*
130  *      Setup a list of consoles. Called from init/main.c
131  */
132 static int __init console_setup(char *str)
133 {
134         char name[sizeof(console_cmdline[0].name)];
135         char *s, *options;
136         int idx;
137
138         /*
139          *      Decode str into name, index, options.
140          */
141         if (str[0] >= '0' && str[0] <= '9') {
142                 strcpy(name, "ttyS");
143                 strncpy(name + 4, str, sizeof(name) - 5);
144         } else
145                 strncpy(name, str, sizeof(name) - 1);
146         name[sizeof(name) - 1] = 0;
147         if ((options = strchr(str, ',')) != NULL)
148                 *(options++) = 0;
149 #ifdef __sparc__
150         if (!strcmp(str, "ttya"))
151                 strcpy(name, "ttyS0");
152         if (!strcmp(str, "ttyb"))
153                 strcpy(name, "ttyS1");
154 #endif
155         for (s = name; *s; s++)
156                 if ((*s >= '0' && *s <= '9') || *s == ',')
157                         break;
158         idx = simple_strtoul(s, NULL, 10);
159         *s = 0;
160
161         add_preferred_console(name, idx, options);
162         return 1;
163 }
164
165 __setup("console=", console_setup);
166
167 static int __init log_buf_len_setup(char *str)
168 {
169         unsigned long size = memparse(str, &str);
170         unsigned long flags;
171
172         if (size)
173                 size = roundup_pow_of_two(size);
174         if (size > log_buf_len) {
175                 unsigned long start, dest_idx, offset;
176                 char *new_log_buf;
177
178                 new_log_buf = alloc_bootmem(size);
179                 if (!new_log_buf) {
180                         printk(KERN_WARNING "log_buf_len: allocation failed\n");
181                         goto out;
182                 }
183
184                 spin_lock_irqsave(&logbuf_lock, flags);
185                 log_buf_len = size;
186                 log_buf = new_log_buf;
187
188                 offset = start = min(con_start, log_start);
189                 dest_idx = 0;
190                 while (start != log_end) {
191                         log_buf[dest_idx] = __log_buf[start & (__LOG_BUF_LEN - 1)];
192                         start++;
193                         dest_idx++;
194                 }
195                 log_start -= offset;
196                 con_start -= offset;
197                 log_end -= offset;
198                 spin_unlock_irqrestore(&logbuf_lock, flags);
199
200                 printk(KERN_NOTICE "log_buf_len: %d\n", log_buf_len);
201         }
202 out:
203         return 1;
204 }
205
206 __setup("log_buf_len=", log_buf_len_setup);
207
208 /*
209  * Commands to do_syslog:
210  *
211  *      0 -- Close the log.  Currently a NOP.
212  *      1 -- Open the log. Currently a NOP.
213  *      2 -- Read from the log.
214  *      3 -- Read all messages remaining in the ring buffer.
215  *      4 -- Read and clear all messages remaining in the ring buffer
216  *      5 -- Clear ring buffer.
217  *      6 -- Disable printk's to console
218  *      7 -- Enable printk's to console
219  *      8 -- Set level of messages printed to console
220  *      9 -- Return number of unread characters in the log buffer
221  *     10 -- Return size of the log buffer
222  */
223 int do_syslog(int type, char __user *buf, int len)
224 {
225         unsigned long i, j, limit, count;
226         int do_clear = 0;
227         char c;
228         int error = 0;
229
230         error = security_syslog(type);
231         if (error)
232                 return error;
233
234         switch (type) {
235         case 0:         /* Close log */
236                 break;
237         case 1:         /* Open log */
238                 break;
239         case 2:         /* Read from log */
240                 error = -EINVAL;
241                 if (!buf || len < 0)
242                         goto out;
243                 error = 0;
244                 if (!len)
245                         goto out;
246                 if (!access_ok(VERIFY_WRITE, buf, len)) {
247                         error = -EFAULT;
248                         goto out;
249                 }
250                 error = wait_event_interruptible(log_wait,
251                                                         (log_start - log_end));
252                 if (error)
253                         goto out;
254                 i = 0;
255                 spin_lock_irq(&logbuf_lock);
256                 while (!error && (log_start != log_end) && i < len) {
257                         c = LOG_BUF(log_start);
258                         log_start++;
259                         spin_unlock_irq(&logbuf_lock);
260                         error = __put_user(c,buf);
261                         buf++;
262                         i++;
263                         cond_resched();
264                         spin_lock_irq(&logbuf_lock);
265                 }
266                 spin_unlock_irq(&logbuf_lock);
267                 if (!error)
268                         error = i;
269                 break;
270         case 4:         /* Read/clear last kernel messages */
271                 do_clear = 1;
272                 /* FALL THRU */
273         case 3:         /* Read last kernel messages */
274                 error = -EINVAL;
275                 if (!buf || len < 0)
276                         goto out;
277                 error = 0;
278                 if (!len)
279                         goto out;
280                 if (!access_ok(VERIFY_WRITE, buf, len)) {
281                         error = -EFAULT;
282                         goto out;
283                 }
284                 count = len;
285                 if (count > log_buf_len)
286                         count = log_buf_len;
287                 spin_lock_irq(&logbuf_lock);
288                 if (count > logged_chars)
289                         count = logged_chars;
290                 if (do_clear)
291                         logged_chars = 0;
292                 limit = log_end;
293                 /*
294                  * __put_user() could sleep, and while we sleep
295                  * printk() could overwrite the messages
296                  * we try to copy to user space. Therefore
297                  * the messages are copied in reverse. <manfreds>
298                  */
299                 for (i = 0; i < count && !error; i++) {
300                         j = limit-1-i;
301                         if (j + log_buf_len < log_end)
302                                 break;
303                         c = LOG_BUF(j);
304                         spin_unlock_irq(&logbuf_lock);
305                         error = __put_user(c,&buf[count-1-i]);
306                         cond_resched();
307                         spin_lock_irq(&logbuf_lock);
308                 }
309                 spin_unlock_irq(&logbuf_lock);
310                 if (error)
311                         break;
312                 error = i;
313                 if (i != count) {
314                         int offset = count-error;
315                         /* buffer overflow during copy, correct user buffer. */
316                         for (i = 0; i < error; i++) {
317                                 if (__get_user(c,&buf[i+offset]) ||
318                                     __put_user(c,&buf[i])) {
319                                         error = -EFAULT;
320                                         break;
321                                 }
322                                 cond_resched();
323                         }
324                 }
325                 break;
326         case 5:         /* Clear ring buffer */
327                 logged_chars = 0;
328                 break;
329         case 6:         /* Disable logging to console */
330                 console_loglevel = minimum_console_loglevel;
331                 break;
332         case 7:         /* Enable logging to console */
333                 console_loglevel = default_console_loglevel;
334                 break;
335         case 8:         /* Set level of messages printed to console */
336                 error = -EINVAL;
337                 if (len < 1 || len > 8)
338                         goto out;
339                 if (len < minimum_console_loglevel)
340                         len = minimum_console_loglevel;
341                 console_loglevel = len;
342                 error = 0;
343                 break;
344         case 9:         /* Number of chars in the log buffer */
345                 error = log_end - log_start;
346                 break;
347         case 10:        /* Size of the log buffer */
348                 error = log_buf_len;
349                 break;
350         default:
351                 error = -EINVAL;
352                 break;
353         }
354 out:
355         return error;
356 }
357
358 asmlinkage long sys_syslog(int type, char __user *buf, int len)
359 {
360         return do_syslog(type, buf, len);
361 }
362
363 /*
364  * Call the console drivers on a range of log_buf
365  */
366 static void __call_console_drivers(unsigned long start, unsigned long end)
367 {
368         struct console *con;
369
370         for (con = console_drivers; con; con = con->next) {
371                 if ((con->flags & CON_ENABLED) && con->write)
372                         con->write(con, &LOG_BUF(start), end - start);
373         }
374 }
375
376 /*
377  * Write out chars from start to end - 1 inclusive
378  */
379 static void _call_console_drivers(unsigned long start,
380                                 unsigned long end, int msg_log_level)
381 {
382         if (msg_log_level < console_loglevel &&
383                         console_drivers && start != end) {
384                 if ((start & LOG_BUF_MASK) > (end & LOG_BUF_MASK)) {
385                         /* wrapped write */
386                         __call_console_drivers(start & LOG_BUF_MASK,
387                                                 log_buf_len);
388                         __call_console_drivers(0, end & LOG_BUF_MASK);
389                 } else {
390                         __call_console_drivers(start, end);
391                 }
392         }
393 }
394
395 /*
396  * Call the console drivers, asking them to write out
397  * log_buf[start] to log_buf[end - 1].
398  * The console_sem must be held.
399  */
400 static void call_console_drivers(unsigned long start, unsigned long end)
401 {
402         unsigned long cur_index, start_print;
403         static int msg_level = -1;
404
405         if (((long)(start - end)) > 0)
406                 BUG();
407
408         cur_index = start;
409         start_print = start;
410         while (cur_index != end) {
411                 if (msg_level < 0 && ((end - cur_index) > 2) &&
412                                 LOG_BUF(cur_index + 0) == '<' &&
413                                 LOG_BUF(cur_index + 1) >= '0' &&
414                                 LOG_BUF(cur_index + 1) <= '7' &&
415                                 LOG_BUF(cur_index + 2) == '>') {
416                         msg_level = LOG_BUF(cur_index + 1) - '0';
417                         cur_index += 3;
418                         start_print = cur_index;
419                 }
420                 while (cur_index != end) {
421                         char c = LOG_BUF(cur_index);
422
423                         cur_index++;
424                         if (c == '\n') {
425                                 if (msg_level < 0) {
426                                         /*
427                                          * printk() has already given us loglevel tags in
428                                          * the buffer.  This code is here in case the
429                                          * log buffer has wrapped right round and scribbled
430                                          * on those tags
431                                          */
432                                         msg_level = default_message_loglevel;
433                                 }
434                                 _call_console_drivers(start_print, cur_index, msg_level);
435                                 msg_level = -1;
436                                 start_print = cur_index;
437                                 break;
438                         }
439                 }
440         }
441         _call_console_drivers(start_print, end, msg_level);
442 }
443
444 static void emit_log_char(char c)
445 {
446         LOG_BUF(log_end) = c;
447         log_end++;
448         if (log_end - log_start > log_buf_len)
449                 log_start = log_end - log_buf_len;
450         if (log_end - con_start > log_buf_len)
451                 con_start = log_end - log_buf_len;
452         if (logged_chars < log_buf_len)
453                 logged_chars++;
454 }
455
456 /*
457  * Zap console related locks when oopsing. Only zap at most once
458  * every 10 seconds, to leave time for slow consoles to print a
459  * full oops.
460  */
461 static void zap_locks(void)
462 {
463         static unsigned long oops_timestamp;
464
465         if (time_after_eq(jiffies, oops_timestamp) &&
466                         !time_after(jiffies, oops_timestamp + 30 * HZ))
467                 return;
468
469         oops_timestamp = jiffies;
470
471         /* If a crash is occurring, make sure we can't deadlock */
472         spin_lock_init(&logbuf_lock);
473         /* And make sure that we print immediately */
474         init_MUTEX(&console_sem);
475 }
476
477 #if defined(CONFIG_PRINTK_TIME)
478 static int printk_time = 1;
479 #else
480 static int printk_time = 0;
481 #endif
482
483 static int __init printk_time_setup(char *str)
484 {
485         if (*str)
486                 return 0;
487         printk_time = 1;
488         return 1;
489 }
490
491 __setup("time", printk_time_setup);
492
493 __attribute__((weak)) unsigned long long printk_clock(void)
494 {
495         return sched_clock();
496 }
497
498 /*
499  * This is printk.  It can be called from any context.  We want it to work.
500  *
501  * We try to grab the console_sem.  If we succeed, it's easy - we log the output and
502  * call the console drivers.  If we fail to get the semaphore we place the output
503  * into the log buffer and return.  The current holder of the console_sem will
504  * notice the new output in release_console_sem() and will send it to the
505  * consoles before releasing the semaphore.
506  *
507  * One effect of this deferred printing is that code which calls printk() and
508  * then changes console_loglevel may break. This is because console_loglevel
509  * is inspected when the actual printing occurs.
510  */
511
512 asmlinkage int printk(const char *fmt, ...)
513 {
514         va_list args;
515         int r;
516
517         va_start(args, fmt);
518         r = vprintk(fmt, args);
519         va_end(args);
520
521         return r;
522 }
523
524 /* cpu currently holding logbuf_lock */
525 static volatile unsigned int printk_cpu = UINT_MAX;
526
527 asmlinkage int vprintk(const char *fmt, va_list args)
528 {
529         unsigned long flags;
530         int printed_len;
531         char *p;
532         static char printk_buf[1024];
533         static int log_level_unknown = 1;
534
535         preempt_disable();
536         if (unlikely(oops_in_progress) && printk_cpu == smp_processor_id())
537                 /* If a crash is occurring during printk() on this CPU,
538                  * make sure we can't deadlock */
539                 zap_locks();
540
541         /* This stops the holder of console_sem just where we want him */
542         spin_lock_irqsave(&logbuf_lock, flags);
543         printk_cpu = smp_processor_id();
544
545         /* Emit the output into the temporary buffer */
546         printed_len = vscnprintf(printk_buf, sizeof(printk_buf), fmt, args);
547
548 #ifdef  CONFIG_DEBUG_LL
549         printascii(printk_buf);
550 #endif
551
552         /*
553          * Copy the output into log_buf.  If the caller didn't provide
554          * appropriate log level tags, we insert them here
555          */
556         for (p = printk_buf; *p; p++) {
557                 if (log_level_unknown) {
558                         /* log_level_unknown signals the start of a new line */
559                         if (printk_time) {
560                                 int loglev_char;
561                                 char tbuf[50], *tp;
562                                 unsigned tlen;
563                                 unsigned long long t;
564                                 unsigned long nanosec_rem;
565
566                                 /*
567                                  * force the log level token to be
568                                  * before the time output.
569                                  */
570                                 if (p[0] == '<' && p[1] >='0' &&
571                                    p[1] <= '7' && p[2] == '>') {
572                                         loglev_char = p[1];
573                                         p += 3;
574                                         printed_len += 3;
575                                 } else {
576                                         loglev_char = default_message_loglevel
577                                                 + '0';
578                                 }
579                                 t = printk_clock();
580                                 nanosec_rem = do_div(t, 1000000000);
581                                 tlen = sprintf(tbuf,
582                                                 "<%c>[%5lu.%06lu] ",
583                                                 loglev_char,
584                                                 (unsigned long)t,
585                                                 nanosec_rem/1000);
586
587                                 for (tp = tbuf; tp < tbuf + tlen; tp++)
588                                         emit_log_char(*tp);
589                                 printed_len += tlen - 3;
590                         } else {
591                                 if (p[0] != '<' || p[1] < '0' ||
592                                    p[1] > '7' || p[2] != '>') {
593                                         emit_log_char('<');
594                                         emit_log_char(default_message_loglevel
595                                                 + '0');
596                                         emit_log_char('>');
597                                 }
598                                 printed_len += 3;
599                         }
600                         log_level_unknown = 0;
601                         if (!*p)
602                                 break;
603                 }
604                 emit_log_char(*p);
605                 if (*p == '\n')
606                         log_level_unknown = 1;
607         }
608
609         if (!cpu_online(smp_processor_id())) {
610                 /*
611                  * Some console drivers may assume that per-cpu resources have
612                  * been allocated.  So don't allow them to be called by this
613                  * CPU until it is officially up.  We shouldn't be calling into
614                  * random console drivers on a CPU which doesn't exist yet..
615                  */
616                 printk_cpu = UINT_MAX;
617                 spin_unlock_irqrestore(&logbuf_lock, flags);
618                 goto out;
619         }
620         if (!down_trylock(&console_sem)) {
621                 console_locked = 1;
622                 /*
623                  * We own the drivers.  We can drop the spinlock and let
624                  * release_console_sem() print the text
625                  */
626                 printk_cpu = UINT_MAX;
627                 spin_unlock_irqrestore(&logbuf_lock, flags);
628                 console_may_schedule = 0;
629                 release_console_sem();
630         } else {
631                 /*
632                  * Someone else owns the drivers.  We drop the spinlock, which
633                  * allows the semaphore holder to proceed and to call the
634                  * console drivers with the output which we just produced.
635                  */
636                 printk_cpu = UINT_MAX;
637                 spin_unlock_irqrestore(&logbuf_lock, flags);
638         }
639 out:
640         preempt_enable();
641         return printed_len;
642 }
643 EXPORT_SYMBOL(printk);
644 EXPORT_SYMBOL(vprintk);
645
646 #else
647
648 asmlinkage long sys_syslog(int type, char __user *buf, int len)
649 {
650         return 0;
651 }
652
653 int do_syslog(int type, char __user *buf, int len)
654 {
655         return 0;
656 }
657
658 static void call_console_drivers(unsigned long start, unsigned long end)
659 {
660 }
661
662 #endif
663
664 /**
665  * add_preferred_console - add a device to the list of preferred consoles.
666  *
667  * The last preferred console added will be used for kernel messages
668  * and stdin/out/err for init.  Normally this is used by console_setup
669  * above to handle user-supplied console arguments; however it can also
670  * be used by arch-specific code either to override the user or more
671  * commonly to provide a default console (ie from PROM variables) when
672  * the user has not supplied one.
673  */
674 int __init add_preferred_console(char *name, int idx, char *options)
675 {
676         struct console_cmdline *c;
677         int i;
678
679         /*
680          *      See if this tty is not yet registered, and
681          *      if we have a slot free.
682          */
683         for(i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
684                 if (strcmp(console_cmdline[i].name, name) == 0 &&
685                           console_cmdline[i].index == idx) {
686                                 selected_console = i;
687                                 return 0;
688                 }
689         if (i == MAX_CMDLINECONSOLES)
690                 return -E2BIG;
691         selected_console = i;
692         c = &console_cmdline[i];
693         memcpy(c->name, name, sizeof(c->name));
694         c->name[sizeof(c->name) - 1] = 0;
695         c->options = options;
696         c->index = idx;
697         return 0;
698 }
699
700 /**
701  * acquire_console_sem - lock the console system for exclusive use.
702  *
703  * Acquires a semaphore which guarantees that the caller has
704  * exclusive access to the console system and the console_drivers list.
705  *
706  * Can sleep, returns nothing.
707  */
708 void acquire_console_sem(void)
709 {
710         if (in_interrupt())
711                 BUG();
712         down(&console_sem);
713         console_locked = 1;
714         console_may_schedule = 1;
715 }
716 EXPORT_SYMBOL(acquire_console_sem);
717
718 int try_acquire_console_sem(void)
719 {
720         if (down_trylock(&console_sem))
721                 return -1;
722         console_locked = 1;
723         console_may_schedule = 0;
724         return 0;
725 }
726 EXPORT_SYMBOL(try_acquire_console_sem);
727
728 int is_console_locked(void)
729 {
730         return console_locked;
731 }
732 EXPORT_SYMBOL(is_console_locked);
733
734 /**
735  * release_console_sem - unlock the console system
736  *
737  * Releases the semaphore which the caller holds on the console system
738  * and the console driver list.
739  *
740  * While the semaphore was held, console output may have been buffered
741  * by printk().  If this is the case, release_console_sem() emits
742  * the output prior to releasing the semaphore.
743  *
744  * If there is output waiting for klogd, we wake it up.
745  *
746  * release_console_sem() may be called from any context.
747  */
748 void release_console_sem(void)
749 {
750         unsigned long flags;
751         unsigned long _con_start, _log_end;
752         unsigned long wake_klogd = 0;
753
754         for ( ; ; ) {
755                 spin_lock_irqsave(&logbuf_lock, flags);
756                 wake_klogd |= log_start - log_end;
757                 if (con_start == log_end)
758                         break;                  /* Nothing to print */
759                 _con_start = con_start;
760                 _log_end = log_end;
761                 con_start = log_end;            /* Flush */
762                 spin_unlock(&logbuf_lock);
763                 call_console_drivers(_con_start, _log_end);
764                 local_irq_restore(flags);
765         }
766         console_locked = 0;
767         console_may_schedule = 0;
768         up(&console_sem);
769         spin_unlock_irqrestore(&logbuf_lock, flags);
770         if (wake_klogd && !oops_in_progress && waitqueue_active(&log_wait))
771                 wake_up_interruptible(&log_wait);
772 }
773 EXPORT_SYMBOL(release_console_sem);
774
775 /** console_conditional_schedule - yield the CPU if required
776  *
777  * If the console code is currently allowed to sleep, and
778  * if this CPU should yield the CPU to another task, do
779  * so here.
780  *
781  * Must be called within acquire_console_sem().
782  */
783 void __sched console_conditional_schedule(void)
784 {
785         if (console_may_schedule)
786                 cond_resched();
787 }
788 EXPORT_SYMBOL(console_conditional_schedule);
789
790 void console_print(const char *s)
791 {
792         printk(KERN_EMERG "%s", s);
793 }
794 EXPORT_SYMBOL(console_print);
795
796 void console_unblank(void)
797 {
798         struct console *c;
799
800         /*
801          * console_unblank can no longer be called in interrupt context unless
802          * oops_in_progress is set to 1..
803          */
804         if (oops_in_progress) {
805                 if (down_trylock(&console_sem) != 0)
806                         return;
807         } else
808                 acquire_console_sem();
809
810         console_locked = 1;
811         console_may_schedule = 0;
812         for (c = console_drivers; c != NULL; c = c->next)
813                 if ((c->flags & CON_ENABLED) && c->unblank)
814                         c->unblank();
815         release_console_sem();
816 }
817
818 /*
819  * Return the console tty driver structure and its associated index
820  */
821 struct tty_driver *console_device(int *index)
822 {
823         struct console *c;
824         struct tty_driver *driver = NULL;
825
826         acquire_console_sem();
827         for (c = console_drivers; c != NULL; c = c->next) {
828                 if (!c->device)
829                         continue;
830                 driver = c->device(c, index);
831                 if (driver)
832                         break;
833         }
834         release_console_sem();
835         return driver;
836 }
837
838 /*
839  * Prevent further output on the passed console device so that (for example)
840  * serial drivers can disable console output before suspending a port, and can
841  * re-enable output afterwards.
842  */
843 void console_stop(struct console *console)
844 {
845         acquire_console_sem();
846         console->flags &= ~CON_ENABLED;
847         release_console_sem();
848 }
849 EXPORT_SYMBOL(console_stop);
850
851 void console_start(struct console *console)
852 {
853         acquire_console_sem();
854         console->flags |= CON_ENABLED;
855         release_console_sem();
856 }
857 EXPORT_SYMBOL(console_start);
858
859 /*
860  * The console driver calls this routine during kernel initialization
861  * to register the console printing procedure with printk() and to
862  * print any messages that were printed by the kernel before the
863  * console driver was initialized.
864  */
865 void register_console(struct console *console)
866 {
867         int i;
868         unsigned long flags;
869
870         if (preferred_console < 0)
871                 preferred_console = selected_console;
872
873         /*
874          *      See if we want to use this console driver. If we
875          *      didn't select a console we take the first one
876          *      that registers here.
877          */
878         if (preferred_console < 0) {
879                 if (console->index < 0)
880                         console->index = 0;
881                 if (console->setup == NULL ||
882                     console->setup(console, NULL) == 0) {
883                         console->flags |= CON_ENABLED | CON_CONSDEV;
884                         preferred_console = 0;
885                 }
886         }
887
888         /*
889          *      See if this console matches one we selected on
890          *      the command line.
891          */
892         for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0];
893                         i++) {
894                 if (strcmp(console_cmdline[i].name, console->name) != 0)
895                         continue;
896                 if (console->index >= 0 &&
897                     console->index != console_cmdline[i].index)
898                         continue;
899                 if (console->index < 0)
900                         console->index = console_cmdline[i].index;
901                 if (console->setup &&
902                     console->setup(console, console_cmdline[i].options) != 0)
903                         break;
904                 console->flags |= CON_ENABLED;
905                 console->index = console_cmdline[i].index;
906                 if (i == selected_console) {
907                         console->flags |= CON_CONSDEV;
908                         preferred_console = selected_console;
909                 }
910                 break;
911         }
912
913         if (!(console->flags & CON_ENABLED))
914                 return;
915
916         if (console_drivers && (console_drivers->flags & CON_BOOT)) {
917                 unregister_console(console_drivers);
918                 console->flags &= ~CON_PRINTBUFFER;
919         }
920
921         /*
922          *      Put this console in the list - keep the
923          *      preferred driver at the head of the list.
924          */
925         acquire_console_sem();
926         if ((console->flags & CON_CONSDEV) || console_drivers == NULL) {
927                 console->next = console_drivers;
928                 console_drivers = console;
929                 if (console->next)
930                         console->next->flags &= ~CON_CONSDEV;
931         } else {
932                 console->next = console_drivers->next;
933                 console_drivers->next = console;
934         }
935         if (console->flags & CON_PRINTBUFFER) {
936                 /*
937                  * release_console_sem() will print out the buffered messages
938                  * for us.
939                  */
940                 spin_lock_irqsave(&logbuf_lock, flags);
941                 con_start = log_start;
942                 spin_unlock_irqrestore(&logbuf_lock, flags);
943         }
944         release_console_sem();
945 }
946 EXPORT_SYMBOL(register_console);
947
948 int unregister_console(struct console *console)
949 {
950         struct console *a, *b;
951         int res = 1;
952
953         acquire_console_sem();
954         if (console_drivers == console) {
955                 console_drivers=console->next;
956                 res = 0;
957         } else {
958                 for (a=console_drivers->next, b=console_drivers ;
959                      a; b=a, a=b->next) {
960                         if (a == console) {
961                                 b->next = a->next;
962                                 res = 0;
963                                 break;
964                         }
965                 }
966         }
967
968         /* If last console is removed, we re-enable picking the first
969          * one that gets registered. Without that, pmac early boot console
970          * would prevent fbcon from taking over.
971          *
972          * If this isn't the last console and it has CON_CONSDEV set, we
973          * need to set it on the next preferred console.
974          */
975         if (console_drivers == NULL)
976                 preferred_console = selected_console;
977         else if (console->flags & CON_CONSDEV)
978                 console_drivers->flags |= CON_CONSDEV;
979
980         release_console_sem();
981         return res;
982 }
983 EXPORT_SYMBOL(unregister_console);
984
985 /**
986  * tty_write_message - write a message to a certain tty, not just the console.
987  *
988  * This is used for messages that need to be redirected to a specific tty.
989  * We don't put it into the syslog queue right now maybe in the future if
990  * really needed.
991  */
992 void tty_write_message(struct tty_struct *tty, char *msg)
993 {
994         if (tty && tty->driver->write)
995                 tty->driver->write(tty, msg, strlen(msg));
996         return;
997 }
998
999 /*
1000  * printk rate limiting, lifted from the networking subsystem.
1001  *
1002  * This enforces a rate limit: not more than one kernel message
1003  * every printk_ratelimit_jiffies to make a denial-of-service
1004  * attack impossible.
1005  */
1006 int __printk_ratelimit(int ratelimit_jiffies, int ratelimit_burst)
1007 {
1008         static DEFINE_SPINLOCK(ratelimit_lock);
1009         static unsigned long toks = 10 * 5 * HZ;
1010         static unsigned long last_msg;
1011         static int missed;
1012         unsigned long flags;
1013         unsigned long now = jiffies;
1014
1015         spin_lock_irqsave(&ratelimit_lock, flags);
1016         toks += now - last_msg;
1017         last_msg = now;
1018         if (toks > (ratelimit_burst * ratelimit_jiffies))
1019                 toks = ratelimit_burst * ratelimit_jiffies;
1020         if (toks >= ratelimit_jiffies) {
1021                 int lost = missed;
1022
1023                 missed = 0;
1024                 toks -= ratelimit_jiffies;
1025                 spin_unlock_irqrestore(&ratelimit_lock, flags);
1026                 if (lost)
1027                         printk(KERN_WARNING "printk: %d messages suppressed.\n", lost);
1028                 return 1;
1029         }
1030         missed++;
1031         spin_unlock_irqrestore(&ratelimit_lock, flags);
1032         return 0;
1033 }
1034 EXPORT_SYMBOL(__printk_ratelimit);
1035
1036 /* minimum time in jiffies between messages */
1037 int printk_ratelimit_jiffies = 5 * HZ;
1038
1039 /* number of messages we send before ratelimiting */
1040 int printk_ratelimit_burst = 10;
1041
1042 int printk_ratelimit(void)
1043 {
1044         return __printk_ratelimit(printk_ratelimit_jiffies,
1045                                 printk_ratelimit_burst);
1046 }
1047 EXPORT_SYMBOL(printk_ratelimit);