]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - kernel/printk.c
Merged 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("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("log_buf_len: %d\n", log_buf_len);
201         }
202 out:
203
204         return 1;
205 }
206
207 __setup("log_buf_len=", log_buf_len_setup);
208
209 /*
210  * Commands to do_syslog:
211  *
212  *      0 -- Close the log.  Currently a NOP.
213  *      1 -- Open the log. Currently a NOP.
214  *      2 -- Read from the log.
215  *      3 -- Read all messages remaining in the ring buffer.
216  *      4 -- Read and clear all messages remaining in the ring buffer
217  *      5 -- Clear ring buffer.
218  *      6 -- Disable printk's to console
219  *      7 -- Enable printk's to console
220  *      8 -- Set level of messages printed to console
221  *      9 -- Return number of unread characters in the log buffer
222  *     10 -- Return size of the log buffer
223  */
224 int do_syslog(int type, char __user * buf, int len)
225 {
226         unsigned long i, j, limit, count;
227         int do_clear = 0;
228         char c;
229         int error = 0;
230
231         error = security_syslog(type);
232         if (error)
233                 return error;
234
235         switch (type) {
236         case 0:         /* Close log */
237                 break;
238         case 1:         /* Open log */
239                 break;
240         case 2:         /* Read from log */
241                 error = -EINVAL;
242                 if (!buf || len < 0)
243                         goto out;
244                 error = 0;
245                 if (!len)
246                         goto out;
247                 if (!access_ok(VERIFY_WRITE, buf, len)) {
248                         error = -EFAULT;
249                         goto out;
250                 }
251                 error = wait_event_interruptible(log_wait, (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 &&
412                         ((end - cur_index) > 2) &&
413                         LOG_BUF(cur_index + 0) == '<' &&
414                         LOG_BUF(cur_index + 1) >= '0' &&
415                         LOG_BUF(cur_index + 1) <= '7' &&
416                         LOG_BUF(cur_index + 2) == '>')
417                 {
418                         msg_level = LOG_BUF(cur_index + 1) - '0';
419                         cur_index += 3;
420                         start_print = cur_index;
421                 }
422                 while (cur_index != end) {
423                         char c = LOG_BUF(cur_index);
424                         cur_index++;
425
426                         if (c == '\n') {
427                                 if (msg_level < 0) {
428                                         /*
429                                          * printk() has already given us loglevel tags in
430                                          * the buffer.  This code is here in case the
431                                          * log buffer has wrapped right round and scribbled
432                                          * on those tags
433                                          */
434                                         msg_level = default_message_loglevel;
435                                 }
436                                 _call_console_drivers(start_print, cur_index, msg_level);
437                                 msg_level = -1;
438                                 start_print = cur_index;
439                                 break;
440                         }
441                 }
442         }
443         _call_console_drivers(start_print, end, msg_level);
444 }
445
446 static void emit_log_char(char c)
447 {
448         LOG_BUF(log_end) = c;
449         log_end++;
450         if (log_end - log_start > log_buf_len)
451                 log_start = log_end - log_buf_len;
452         if (log_end - con_start > log_buf_len)
453                 con_start = log_end - log_buf_len;
454         if (logged_chars < log_buf_len)
455                 logged_chars++;
456 }
457
458 /*
459  * Zap console related locks when oopsing. Only zap at most once
460  * every 10 seconds, to leave time for slow consoles to print a
461  * full oops.
462  */
463 static void zap_locks(void)
464 {
465         static unsigned long oops_timestamp;
466
467         if (time_after_eq(jiffies, oops_timestamp) &&
468                         !time_after(jiffies, oops_timestamp + 30*HZ))
469                 return;
470
471         oops_timestamp = jiffies;
472
473         /* If a crash is occurring, make sure we can't deadlock */
474         spin_lock_init(&logbuf_lock);
475         /* And make sure that we print immediately */
476         init_MUTEX(&console_sem);
477 }
478
479 #if defined(CONFIG_PRINTK_TIME)
480 static int printk_time = 1;
481 #else
482 static int printk_time = 0;
483 #endif
484
485 static int __init printk_time_setup(char *str)
486 {
487         if (*str)
488                 return 0;
489         printk_time = 1;
490         return 1;
491 }
492
493 __setup("time", printk_time_setup);
494
495 /*
496  * This is printk.  It can be called from any context.  We want it to work.
497  * 
498  * We try to grab the console_sem.  If we succeed, it's easy - we log the output and
499  * call the console drivers.  If we fail to get the semaphore we place the output
500  * into the log buffer and return.  The current holder of the console_sem will
501  * notice the new output in release_console_sem() and will send it to the
502  * consoles before releasing the semaphore.
503  *
504  * One effect of this deferred printing is that code which calls printk() and
505  * then changes console_loglevel may break. This is because console_loglevel
506  * is inspected when the actual printing occurs.
507  */
508
509 asmlinkage int printk(const char *fmt, ...)
510 {
511         va_list args;
512         int r;
513
514         va_start(args, fmt);
515         r = vprintk(fmt, args);
516         va_end(args);
517
518         return r;
519 }
520
521 asmlinkage int vprintk(const char *fmt, va_list args)
522 {
523         unsigned long flags;
524         int printed_len;
525         char *p;
526         static char printk_buf[1024];
527         static int log_level_unknown = 1;
528
529         if (unlikely(oops_in_progress))
530                 zap_locks();
531
532         /* This stops the holder of console_sem just where we want him */
533         spin_lock_irqsave(&logbuf_lock, flags);
534
535         /* Emit the output into the temporary buffer */
536         printed_len = vscnprintf(printk_buf, sizeof(printk_buf), fmt, args);
537
538 #ifdef  CONFIG_DEBUG_LL
539         printascii(printk_buf);
540 #endif
541
542         /*
543          * Copy the output into log_buf.  If the caller didn't provide
544          * appropriate log level tags, we insert them here
545          */
546         for (p = printk_buf; *p; p++) {
547                 if (log_level_unknown) {
548                         /* log_level_unknown signals the start of a new line */
549                         if (printk_time) {
550                                 int loglev_char;
551                                 char tbuf[50], *tp;
552                                 unsigned tlen;
553                                 unsigned long long t;
554                                 unsigned long nanosec_rem;
555
556                                 /*
557                                  * force the log level token to be
558                                  * before the time output.
559                                  */
560                                 if (p[0] == '<' && p[1] >='0' &&
561                                    p[1] <= '7' && p[2] == '>') {
562                                         loglev_char = p[1];
563                                         p += 3;
564                                         printed_len += 3;
565                                 } else {
566                                         loglev_char = default_message_loglevel
567                                                 + '0';
568                                 }
569                                 t = sched_clock();
570                                 nanosec_rem = do_div(t, 1000000000);
571                                 tlen = sprintf(tbuf,
572                                                 "<%c>[%5lu.%06lu] ",
573                                                 loglev_char,
574                                                 (unsigned long)t,
575                                                 nanosec_rem/1000);
576
577                                 for (tp = tbuf; tp < tbuf + tlen; tp++)
578                                         emit_log_char(*tp);
579                                 printed_len += tlen - 3;
580                         } else {
581                                 if (p[0] != '<' || p[1] < '0' ||
582                                    p[1] > '7' || p[2] != '>') {
583                                         emit_log_char('<');
584                                         emit_log_char(default_message_loglevel
585                                                 + '0');
586                                         emit_log_char('>');
587                                 }
588                                 printed_len += 3;
589                         }
590                         log_level_unknown = 0;
591                         if (!*p)
592                                 break;
593                 }
594                 emit_log_char(*p);
595                 if (*p == '\n')
596                         log_level_unknown = 1;
597         }
598
599         if (!cpu_online(smp_processor_id())) {
600                 /*
601                  * Some console drivers may assume that per-cpu resources have
602                  * been allocated.  So don't allow them to be called by this
603                  * CPU until it is officially up.  We shouldn't be calling into
604                  * random console drivers on a CPU which doesn't exist yet..
605                  */
606                 spin_unlock_irqrestore(&logbuf_lock, flags);
607                 goto out;
608         }
609         if (!down_trylock(&console_sem)) {
610                 console_locked = 1;
611                 /*
612                  * We own the drivers.  We can drop the spinlock and let
613                  * release_console_sem() print the text
614                  */
615                 spin_unlock_irqrestore(&logbuf_lock, flags);
616                 console_may_schedule = 0;
617                 release_console_sem();
618         } else {
619                 /*
620                  * Someone else owns the drivers.  We drop the spinlock, which
621                  * allows the semaphore holder to proceed and to call the
622                  * console drivers with the output which we just produced.
623                  */
624                 spin_unlock_irqrestore(&logbuf_lock, flags);
625         }
626 out:
627         return printed_len;
628 }
629 EXPORT_SYMBOL(printk);
630 EXPORT_SYMBOL(vprintk);
631
632 #else
633
634 asmlinkage long sys_syslog(int type, char __user * buf, int len)
635 {
636         return 0;
637 }
638
639 int do_syslog(int type, char __user * buf, int len) { return 0; }
640 static void call_console_drivers(unsigned long start, unsigned long end) {}
641
642 #endif
643
644 /**
645  * add_preferred_console - add a device to the list of preferred consoles.
646  *
647  * The last preferred console added will be used for kernel messages
648  * and stdin/out/err for init.  Normally this is used by console_setup
649  * above to handle user-supplied console arguments; however it can also
650  * be used by arch-specific code either to override the user or more
651  * commonly to provide a default console (ie from PROM variables) when
652  * the user has not supplied one.
653  */
654 int __init add_preferred_console(char *name, int idx, char *options)
655 {
656         struct console_cmdline *c;
657         int i;
658
659         /*
660          *      See if this tty is not yet registered, and
661          *      if we have a slot free.
662          */
663         for(i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
664                 if (strcmp(console_cmdline[i].name, name) == 0 &&
665                           console_cmdline[i].index == idx) {
666                                 selected_console = i;
667                                 return 0;
668                 }
669         if (i == MAX_CMDLINECONSOLES)
670                 return -E2BIG;
671         selected_console = i;
672         c = &console_cmdline[i];
673         memcpy(c->name, name, sizeof(c->name));
674         c->name[sizeof(c->name) - 1] = 0;
675         c->options = options;
676         c->index = idx;
677         return 0;
678 }
679
680 /**
681  * acquire_console_sem - lock the console system for exclusive use.
682  *
683  * Acquires a semaphore which guarantees that the caller has
684  * exclusive access to the console system and the console_drivers list.
685  *
686  * Can sleep, returns nothing.
687  */
688 void acquire_console_sem(void)
689 {
690         if (in_interrupt())
691                 BUG();
692         down(&console_sem);
693         console_locked = 1;
694         console_may_schedule = 1;
695 }
696 EXPORT_SYMBOL(acquire_console_sem);
697
698 int try_acquire_console_sem(void)
699 {
700         if (down_trylock(&console_sem))
701                 return -1;
702         console_locked = 1;
703         console_may_schedule = 0;
704         return 0;
705 }
706 EXPORT_SYMBOL(try_acquire_console_sem);
707
708 int is_console_locked(void)
709 {
710         return console_locked;
711 }
712 EXPORT_SYMBOL(is_console_locked);
713
714 /**
715  * release_console_sem - unlock the console system
716  *
717  * Releases the semaphore which the caller holds on the console system
718  * and the console driver list.
719  *
720  * While the semaphore was held, console output may have been buffered
721  * by printk().  If this is the case, release_console_sem() emits
722  * the output prior to releasing the semaphore.
723  *
724  * If there is output waiting for klogd, we wake it up.
725  *
726  * release_console_sem() may be called from any context.
727  */
728 void release_console_sem(void)
729 {
730         unsigned long flags;
731         unsigned long _con_start, _log_end;
732         unsigned long wake_klogd = 0;
733
734         for ( ; ; ) {
735                 spin_lock_irqsave(&logbuf_lock, flags);
736                 wake_klogd |= log_start - log_end;
737                 if (con_start == log_end)
738                         break;                  /* Nothing to print */
739                 _con_start = con_start;
740                 _log_end = log_end;
741                 con_start = log_end;            /* Flush */
742                 spin_unlock(&logbuf_lock);
743                 call_console_drivers(_con_start, _log_end);
744                 local_irq_restore(flags);
745         }
746         console_locked = 0;
747         console_may_schedule = 0;
748         up(&console_sem);
749         spin_unlock_irqrestore(&logbuf_lock, flags);
750         if (wake_klogd && !oops_in_progress && waitqueue_active(&log_wait))
751                 wake_up_interruptible(&log_wait);
752 }
753 EXPORT_SYMBOL(release_console_sem);
754
755 /** console_conditional_schedule - yield the CPU if required
756  *
757  * If the console code is currently allowed to sleep, and
758  * if this CPU should yield the CPU to another task, do
759  * so here.
760  *
761  * Must be called within acquire_console_sem().
762  */
763 void __sched console_conditional_schedule(void)
764 {
765         if (console_may_schedule)
766                 cond_resched();
767 }
768 EXPORT_SYMBOL(console_conditional_schedule);
769
770 void console_print(const char *s)
771 {
772         printk(KERN_EMERG "%s", s);
773 }
774 EXPORT_SYMBOL(console_print);
775
776 void console_unblank(void)
777 {
778         struct console *c;
779
780         /*
781          * console_unblank can no longer be called in interrupt context unless
782          * oops_in_progress is set to 1..
783          */
784         if (oops_in_progress) {
785                 if (down_trylock(&console_sem) != 0)
786                         return;
787         } else
788                 acquire_console_sem();
789
790         console_locked = 1;
791         console_may_schedule = 0;
792         for (c = console_drivers; c != NULL; c = c->next)
793                 if ((c->flags & CON_ENABLED) && c->unblank)
794                         c->unblank();
795         release_console_sem();
796 }
797 EXPORT_SYMBOL(console_unblank);
798
799 /*
800  * Return the console tty driver structure and its associated index
801  */
802 struct tty_driver *console_device(int *index)
803 {
804         struct console *c;
805         struct tty_driver *driver = NULL;
806
807         acquire_console_sem();
808         for (c = console_drivers; c != NULL; c = c->next) {
809                 if (!c->device)
810                         continue;
811                 driver = c->device(c, index);
812                 if (driver)
813                         break;
814         }
815         release_console_sem();
816         return driver;
817 }
818
819 /*
820  * Prevent further output on the passed console device so that (for example)
821  * serial drivers can disable console output before suspending a port, and can
822  * re-enable output afterwards.
823  */
824 void console_stop(struct console *console)
825 {
826         acquire_console_sem();
827         console->flags &= ~CON_ENABLED;
828         release_console_sem();
829 }
830 EXPORT_SYMBOL(console_stop);
831
832 void console_start(struct console *console)
833 {
834         acquire_console_sem();
835         console->flags |= CON_ENABLED;
836         release_console_sem();
837 }
838 EXPORT_SYMBOL(console_start);
839
840 /*
841  * The console driver calls this routine during kernel initialization
842  * to register the console printing procedure with printk() and to
843  * print any messages that were printed by the kernel before the
844  * console driver was initialized.
845  */
846 void register_console(struct console * console)
847 {
848         int     i;
849         unsigned long flags;
850
851         if (preferred_console < 0)
852                 preferred_console = selected_console;
853
854         /*
855          *      See if we want to use this console driver. If we
856          *      didn't select a console we take the first one
857          *      that registers here.
858          */
859         if (preferred_console < 0) {
860                 if (console->index < 0)
861                         console->index = 0;
862                 if (console->setup == NULL ||
863                     console->setup(console, NULL) == 0) {
864                         console->flags |= CON_ENABLED | CON_CONSDEV;
865                         preferred_console = 0;
866                 }
867         }
868
869         /*
870          *      See if this console matches one we selected on
871          *      the command line.
872          */
873         for(i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++) {
874                 if (strcmp(console_cmdline[i].name, console->name) != 0)
875                         continue;
876                 if (console->index >= 0 &&
877                     console->index != console_cmdline[i].index)
878                         continue;
879                 if (console->index < 0)
880                         console->index = console_cmdline[i].index;
881                 if (console->setup &&
882                     console->setup(console, console_cmdline[i].options) != 0)
883                         break;
884                 console->flags |= CON_ENABLED;
885                 console->index = console_cmdline[i].index;
886                 if (i == selected_console) {
887                         console->flags |= CON_CONSDEV;
888                         preferred_console = selected_console;
889                 }
890                 break;
891         }
892
893         if (!(console->flags & CON_ENABLED))
894                 return;
895
896         if (console_drivers && (console_drivers->flags & CON_BOOT)) {
897                 unregister_console(console_drivers);
898                 console->flags &= ~CON_PRINTBUFFER;
899         }
900
901         /*
902          *      Put this console in the list - keep the
903          *      preferred driver at the head of the list.
904          */
905         acquire_console_sem();
906         if ((console->flags & CON_CONSDEV) || console_drivers == NULL) {
907                 console->next = console_drivers;
908                 console_drivers = console;
909                 if (console->next)
910                         console->next->flags &= ~CON_CONSDEV;
911         } else {
912                 console->next = console_drivers->next;
913                 console_drivers->next = console;
914         }
915         if (console->flags & CON_PRINTBUFFER) {
916                 /*
917                  * release_console_sem() will print out the buffered messages
918                  * for us.
919                  */
920                 spin_lock_irqsave(&logbuf_lock, flags);
921                 con_start = log_start;
922                 spin_unlock_irqrestore(&logbuf_lock, flags);
923         }
924         release_console_sem();
925 }
926 EXPORT_SYMBOL(register_console);
927
928 int unregister_console(struct console * console)
929 {
930         struct console *a,*b;
931         int res = 1;
932
933         acquire_console_sem();
934         if (console_drivers == console) {
935                 console_drivers=console->next;
936                 res = 0;
937         } else {
938                 for (a=console_drivers->next, b=console_drivers ;
939                      a; b=a, a=b->next) {
940                         if (a == console) {
941                                 b->next = a->next;
942                                 res = 0;
943                                 break;
944                         }  
945                 }
946         }
947         
948         /* If last console is removed, we re-enable picking the first
949          * one that gets registered. Without that, pmac early boot console
950          * would prevent fbcon from taking over.
951          *
952          * If this isn't the last console and it has CON_CONSDEV set, we
953          * need to set it on the next preferred console.
954          */
955         if (console_drivers == NULL)
956                 preferred_console = selected_console;
957         else if (console->flags & CON_CONSDEV)
958                 console_drivers->flags |= CON_CONSDEV;
959
960         release_console_sem();
961         return res;
962 }
963 EXPORT_SYMBOL(unregister_console);
964
965 /**
966  * tty_write_message - write a message to a certain tty, not just the console.
967  *
968  * This is used for messages that need to be redirected to a specific tty.
969  * We don't put it into the syslog queue right now maybe in the future if
970  * really needed.
971  */
972 void tty_write_message(struct tty_struct *tty, char *msg)
973 {
974         if (tty && tty->driver->write)
975                 tty->driver->write(tty, msg, strlen(msg));
976         return;
977 }
978
979 /*
980  * printk rate limiting, lifted from the networking subsystem.
981  *
982  * This enforces a rate limit: not more than one kernel message
983  * every printk_ratelimit_jiffies to make a denial-of-service
984  * attack impossible.
985  */
986 int __printk_ratelimit(int ratelimit_jiffies, int ratelimit_burst)
987 {
988         static DEFINE_SPINLOCK(ratelimit_lock);
989         static unsigned long toks = 10*5*HZ;
990         static unsigned long last_msg;
991         static int missed;
992         unsigned long flags;
993         unsigned long now = jiffies;
994
995         spin_lock_irqsave(&ratelimit_lock, flags);
996         toks += now - last_msg;
997         last_msg = now;
998         if (toks > (ratelimit_burst * ratelimit_jiffies))
999                 toks = ratelimit_burst * ratelimit_jiffies;
1000         if (toks >= ratelimit_jiffies) {
1001                 int lost = missed;
1002                 missed = 0;
1003                 toks -= ratelimit_jiffies;
1004                 spin_unlock_irqrestore(&ratelimit_lock, flags);
1005                 if (lost)
1006                         printk(KERN_WARNING "printk: %d messages suppressed.\n", lost);
1007                 return 1;
1008         }
1009         missed++;
1010         spin_unlock_irqrestore(&ratelimit_lock, flags);
1011         return 0;
1012 }
1013 EXPORT_SYMBOL(__printk_ratelimit);
1014
1015 /* minimum time in jiffies between messages */
1016 int printk_ratelimit_jiffies = 5*HZ;
1017
1018 /* number of messages we send before ratelimiting */
1019 int printk_ratelimit_burst = 10;
1020
1021 int printk_ratelimit(void)
1022 {
1023         return __printk_ratelimit(printk_ratelimit_jiffies,
1024                                 printk_ratelimit_burst);
1025 }
1026 EXPORT_SYMBOL(printk_ratelimit);