patch-2.6.6-vs1.9.0
[linux-2.6.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
34 #include <asm/uaccess.h>
35
36 #define __LOG_BUF_LEN   (1 << CONFIG_LOG_BUF_SHIFT)
37
38 /* printk's without a loglevel use this.. */
39 #define DEFAULT_MESSAGE_LOGLEVEL 4 /* KERN_WARNING */
40
41 /* We show everything that is MORE important than this.. */
42 #define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */
43 #define DEFAULT_CONSOLE_LOGLEVEL 7 /* anything MORE serious than KERN_DEBUG */
44
45 DECLARE_WAIT_QUEUE_HEAD(log_wait);
46
47 int console_printk[4] = {
48         DEFAULT_CONSOLE_LOGLEVEL,       /* console_loglevel */
49         DEFAULT_MESSAGE_LOGLEVEL,       /* default_message_loglevel */
50         MINIMUM_CONSOLE_LOGLEVEL,       /* minimum_console_loglevel */
51         DEFAULT_CONSOLE_LOGLEVEL,       /* default_console_loglevel */
52 };
53
54 EXPORT_SYMBOL(console_printk);
55
56 int oops_in_progress;
57
58 /*
59  * console_sem protects the console_drivers list, and also
60  * provides serialisation for access to the entire console
61  * driver system.
62  */
63 static DECLARE_MUTEX(console_sem);
64 struct console *console_drivers;
65 /*
66  * This is used for debugging the mess that is the VT code by
67  * keeping track if we have the console semaphore held. It's
68  * definitely not the perfect debug tool (we don't know if _WE_
69  * hold it are racing, but it helps tracking those weird code
70  * path in the console code where we end up in places I want
71  * locked without the console sempahore held
72  */
73 static int console_locked;
74
75 /*
76  * logbuf_lock protects log_buf, log_start, log_end, con_start and logged_chars
77  * It is also used in interesting ways to provide interlocking in
78  * release_console_sem().
79  */
80 static spinlock_t logbuf_lock = SPIN_LOCK_UNLOCKED;
81
82 static char __log_buf[__LOG_BUF_LEN];
83 static char *log_buf = __log_buf;
84 static int log_buf_len = __LOG_BUF_LEN;
85
86 #define LOG_BUF_MASK    (log_buf_len-1)
87 #define LOG_BUF(idx) (log_buf[(idx) & LOG_BUF_MASK])
88
89 /*
90  * The indices into log_buf are not constrained to log_buf_len - they
91  * must be masked before subscripting
92  */
93 static unsigned long log_start; /* Index into log_buf: next char to be read by syslog() */
94 static unsigned long con_start; /* Index into log_buf: next char to be sent to consoles */
95 static unsigned long log_end;   /* Index into log_buf: most-recently-written-char + 1 */
96 static unsigned long logged_chars; /* Number of chars produced since last read+clear operation */
97
98 /*
99  *      Array of consoles built from command line options (console=)
100  */
101 struct console_cmdline
102 {
103         char    name[8];                        /* Name of the driver       */
104         int     index;                          /* Minor dev. to use        */
105         char    *options;                       /* Options for the driver   */
106 };
107
108 #define MAX_CMDLINECONSOLES 8
109
110 static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
111 static int preferred_console = -1;
112
113 /* Flag: console code may call schedule() */
114 static int console_may_schedule;
115
116 /*
117  *      Setup a list of consoles. Called from init/main.c
118  */
119 static int __init console_setup(char *str)
120 {
121         char name[sizeof(console_cmdline[0].name)];
122         char *s, *options;
123         int idx;
124
125         /*
126          *      Decode str into name, index, options.
127          */
128         if (str[0] >= '0' && str[0] <= '9') {
129                 strcpy(name, "ttyS");
130                 strncpy(name + 4, str, sizeof(name) - 5);
131         } else
132                 strncpy(name, str, sizeof(name) - 1);
133         name[sizeof(name) - 1] = 0;
134         if ((options = strchr(str, ',')) != NULL)
135                 *(options++) = 0;
136 #ifdef __sparc__
137         if (!strcmp(str, "ttya"))
138                 strcpy(name, "ttyS0");
139         if (!strcmp(str, "ttyb"))
140                 strcpy(name, "ttyS1");
141 #endif
142         for(s = name; *s; s++)
143                 if (*s >= '0' && *s <= '9')
144                         break;
145         idx = simple_strtoul(s, NULL, 10);
146         *s = 0;
147
148         add_preferred_console(name, idx, options);
149         return 1;
150 }
151
152 __setup("console=", console_setup);
153
154 /**
155  * add_preferred_console - add a device to the list of preferred consoles.
156  *
157  * The last preferred console added will be used for kernel messages
158  * and stdin/out/err for init.  Normally this is used by console_setup
159  * above to handle user-supplied console arguments; however it can also
160  * be used by arch-specific code either to override the user or more
161  * commonly to provide a default console (ie from PROM variables) when
162  * the user has not supplied one.
163  */
164 int __init add_preferred_console(char *name, int idx, char *options)
165 {
166         struct console_cmdline *c;
167         int i;
168
169         /*
170          *      See if this tty is not yet registered, and
171          *      if we have a slot free.
172          */
173         for(i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
174                 if (strcmp(console_cmdline[i].name, name) == 0 &&
175                           console_cmdline[i].index == idx) {
176                                 preferred_console = i;
177                                 return 0;
178                 }
179         if (i == MAX_CMDLINECONSOLES)
180                 return -E2BIG;
181         preferred_console = i;
182         c = &console_cmdline[i];
183         memcpy(c->name, name, sizeof(c->name));
184         c->name[sizeof(c->name) - 1] = 0;
185         c->options = options;
186         c->index = idx;
187         return 0;
188 }
189
190 static int __init log_buf_len_setup(char *str)
191 {
192         unsigned long size = memparse(str, &str);
193         unsigned long flags;
194
195         if (size > log_buf_len) {
196                 unsigned long start, dest_idx, offset;
197                 char * new_log_buf;
198
199                 new_log_buf = alloc_bootmem(size);
200                 if (!new_log_buf) {
201                         printk("log_buf_len: allocation failed\n");
202                         goto out;
203                 }
204
205                 spin_lock_irqsave(&logbuf_lock, flags);
206                 log_buf_len = size;
207                 log_buf = new_log_buf;
208
209                 offset = start = min(con_start, log_start);
210                 dest_idx = 0;
211                 while (start != log_end) {
212                         log_buf[dest_idx] = __log_buf[start & (__LOG_BUF_LEN - 1)];
213                         start++;
214                         dest_idx++;
215                 }
216                 log_start -= offset;
217                 con_start -= offset;
218                 log_end -= offset;
219                 spin_unlock_irqrestore(&logbuf_lock, flags);
220
221                 printk("log_buf_len: %d\n", log_buf_len);
222         }
223 out:
224
225         return 1;
226 }
227
228 __setup("log_buf_len=", log_buf_len_setup);
229
230 /*
231  * Commands to do_syslog:
232  *
233  *      0 -- Close the log.  Currently a NOP.
234  *      1 -- Open the log. Currently a NOP.
235  *      2 -- Read from the log.
236  *      3 -- Read all messages remaining in the ring buffer.
237  *      4 -- Read and clear all messages remaining in the ring buffer
238  *      5 -- Clear ring buffer.
239  *      6 -- Disable printk's to console
240  *      7 -- Enable printk's to console
241  *      8 -- Set level of messages printed to console
242  *      9 -- Return number of unread characters in the log buffer
243  *     10 -- Return size of the log buffer
244  */
245 int do_syslog(int type, char __user * buf, int len)
246 {
247         unsigned long i, j, limit, count;
248         int do_clear = 0;
249         char c;
250         int error = -EPERM;
251
252         if (!vx_check(0, VX_ADMIN|VX_WATCH))
253                 return error;
254
255         error = security_syslog(type);
256         if (error)
257                 return error;
258
259         switch (type) {
260         case 0:         /* Close log */
261                 break;
262         case 1:         /* Open log */
263                 break;
264         case 2:         /* Read from log */
265                 error = -EINVAL;
266                 if (!buf || len < 0)
267                         goto out;
268                 error = 0;
269                 if (!len)
270                         goto out;
271                 error = verify_area(VERIFY_WRITE,buf,len);
272                 if (error)
273                         goto out;
274                 error = wait_event_interruptible(log_wait, (log_start - log_end));
275                 if (error)
276                         goto out;
277                 i = 0;
278                 spin_lock_irq(&logbuf_lock);
279                 while (!error && (log_start != log_end) && i < len) {
280                         c = LOG_BUF(log_start);
281                         log_start++;
282                         spin_unlock_irq(&logbuf_lock);
283                         error = __put_user(c,buf);
284                         buf++;
285                         i++;
286                         spin_lock_irq(&logbuf_lock);
287                 }
288                 spin_unlock_irq(&logbuf_lock);
289                 if (!error)
290                         error = i;
291                 break;
292         case 4:         /* Read/clear last kernel messages */
293                 do_clear = 1; 
294                 /* FALL THRU */
295         case 3:         /* Read last kernel messages */
296                 error = -EINVAL;
297                 if (!buf || len < 0)
298                         goto out;
299                 error = 0;
300                 if (!len)
301                         goto out;
302                 error = verify_area(VERIFY_WRITE,buf,len);
303                 if (error)
304                         goto out;
305                 count = len;
306                 if (count > log_buf_len)
307                         count = log_buf_len;
308                 spin_lock_irq(&logbuf_lock);
309                 if (count > logged_chars)
310                         count = logged_chars;
311                 if (do_clear)
312                         logged_chars = 0;
313                 limit = log_end;
314                 /*
315                  * __put_user() could sleep, and while we sleep
316                  * printk() could overwrite the messages 
317                  * we try to copy to user space. Therefore
318                  * the messages are copied in reverse. <manfreds>
319                  */
320                 for(i = 0; i < count && !error; i++) {
321                         j = limit-1-i;
322                         if (j + log_buf_len < log_end)
323                                 break;
324                         c = LOG_BUF(j);
325                         spin_unlock_irq(&logbuf_lock);
326                         error = __put_user(c,&buf[count-1-i]);
327                         spin_lock_irq(&logbuf_lock);
328                 }
329                 spin_unlock_irq(&logbuf_lock);
330                 if (error)
331                         break;
332                 error = i;
333                 if(i != count) {
334                         int offset = count-error;
335                         /* buffer overflow during copy, correct user buffer. */
336                         for(i=0;i<error;i++) {
337                                 if (__get_user(c,&buf[i+offset]) ||
338                                     __put_user(c,&buf[i])) {
339                                         error = -EFAULT;
340                                         break;
341                                 }
342                         }
343                 }
344                 break;
345         case 5:         /* Clear ring buffer */
346                 logged_chars = 0;
347                 break;
348         case 6:         /* Disable logging to console */
349                 console_loglevel = minimum_console_loglevel;
350                 break;
351         case 7:         /* Enable logging to console */
352                 console_loglevel = default_console_loglevel;
353                 break;
354         case 8:         /* Set level of messages printed to console */
355                 error = -EINVAL;
356                 if (len < 1 || len > 8)
357                         goto out;
358                 if (len < minimum_console_loglevel)
359                         len = minimum_console_loglevel;
360                 console_loglevel = len;
361                 error = 0;
362                 break;
363         case 9:         /* Number of chars in the log buffer */
364                 error = log_end - log_start;
365                 break;
366         case 10:        /* Size of the log buffer */
367                 error = log_buf_len;
368                 break;
369         default:
370                 error = -EINVAL;
371                 break;
372         }
373 out:
374         return error;
375 }
376
377 asmlinkage long sys_syslog(int type, char __user * buf, int len)
378 {
379         return do_syslog(type, buf, len);
380 }
381
382 /*
383  * Call the console drivers on a range of log_buf
384  */
385 static void __call_console_drivers(unsigned long start, unsigned long end)
386 {
387         struct console *con;
388
389         for (con = console_drivers; con; con = con->next) {
390                 if ((con->flags & CON_ENABLED) && con->write)
391                         con->write(con, &LOG_BUF(start), end - start);
392         }
393 }
394
395 /*
396  * Write out chars from start to end - 1 inclusive
397  */
398 static void _call_console_drivers(unsigned long start,
399                                 unsigned long end, int msg_log_level)
400 {
401         if (msg_log_level < console_loglevel &&
402                         console_drivers && start != end) {
403                 if ((start & LOG_BUF_MASK) > (end & LOG_BUF_MASK)) {
404                         /* wrapped write */
405                         __call_console_drivers(start & LOG_BUF_MASK,
406                                                 log_buf_len);
407                         __call_console_drivers(0, end & LOG_BUF_MASK);
408                 } else {
409                         __call_console_drivers(start, end);
410                 }
411         }
412 }
413
414 /*
415  * Call the console drivers, asking them to write out
416  * log_buf[start] to log_buf[end - 1].
417  * The console_sem must be held.
418  */
419 static void call_console_drivers(unsigned long start, unsigned long end)
420 {
421         unsigned long cur_index, start_print;
422         static int msg_level = -1;
423
424         if (((long)(start - end)) > 0)
425                 BUG();
426
427         cur_index = start;
428         start_print = start;
429         while (cur_index != end) {
430                 if (    msg_level < 0 &&
431                         ((end - cur_index) > 2) &&
432                         LOG_BUF(cur_index + 0) == '<' &&
433                         LOG_BUF(cur_index + 1) >= '0' &&
434                         LOG_BUF(cur_index + 1) <= '7' &&
435                         LOG_BUF(cur_index + 2) == '>')
436                 {
437                         msg_level = LOG_BUF(cur_index + 1) - '0';
438                         cur_index += 3;
439                         start_print = cur_index;
440                 }
441                 while (cur_index != end) {
442                         char c = LOG_BUF(cur_index);
443                         cur_index++;
444
445                         if (c == '\n') {
446                                 if (msg_level < 0) {
447                                         /*
448                                          * printk() has already given us loglevel tags in
449                                          * the buffer.  This code is here in case the
450                                          * log buffer has wrapped right round and scribbled
451                                          * on those tags
452                                          */
453                                         msg_level = default_message_loglevel;
454                                 }
455                                 _call_console_drivers(start_print, cur_index, msg_level);
456                                 msg_level = -1;
457                                 start_print = cur_index;
458                                 break;
459                         }
460                 }
461         }
462         _call_console_drivers(start_print, end, msg_level);
463 }
464
465 static void emit_log_char(char c)
466 {
467         LOG_BUF(log_end) = c;
468         log_end++;
469         if (log_end - log_start > log_buf_len)
470                 log_start = log_end - log_buf_len;
471         if (log_end - con_start > log_buf_len)
472                 con_start = log_end - log_buf_len;
473         if (logged_chars < log_buf_len)
474                 logged_chars++;
475 }
476
477 /*
478  * This is printk.  It can be called from any context.  We want it to work.
479  * 
480  * We try to grab the console_sem.  If we succeed, it's easy - we log the output and
481  * call the console drivers.  If we fail to get the semaphore we place the output
482  * into the log buffer and return.  The current holder of the console_sem will
483  * notice the new output in release_console_sem() and will send it to the
484  * consoles before releasing the semaphore.
485  *
486  * One effect of this deferred printing is that code which calls printk() and
487  * then changes console_loglevel may break. This is because console_loglevel
488  * is inspected when the actual printing occurs.
489  */
490 asmlinkage int printk(const char *fmt, ...)
491 {
492         va_list args;
493         unsigned long flags;
494         int printed_len;
495         char *p;
496         static char printk_buf[1024];
497         static int log_level_unknown = 1;
498
499         if (oops_in_progress) {
500                 /* If a crash is occurring, make sure we can't deadlock */
501                 spin_lock_init(&logbuf_lock);
502                 /* And make sure that we print immediately */
503                 init_MUTEX(&console_sem);
504         }
505
506         /* This stops the holder of console_sem just where we want him */
507         spin_lock_irqsave(&logbuf_lock, flags);
508
509         /* Emit the output into the temporary buffer */
510         va_start(args, fmt);
511         printed_len = vscnprintf(printk_buf, sizeof(printk_buf), fmt, args);
512         va_end(args);
513
514         /*
515          * Copy the output into log_buf.  If the caller didn't provide
516          * appropriate log level tags, we insert them here
517          */
518         for (p = printk_buf; *p; p++) {
519                 if (log_level_unknown) {
520                         if (p[0] != '<' || p[1] < '0' || p[1] > '7' || p[2] != '>') {
521                                 emit_log_char('<');
522                                 emit_log_char(default_message_loglevel + '0');
523                                 emit_log_char('>');
524                         }
525                         log_level_unknown = 0;
526                 }
527                 emit_log_char(*p);
528                 if (*p == '\n')
529                         log_level_unknown = 1;
530         }
531
532         if (!cpu_online(smp_processor_id()) &&
533             system_state != SYSTEM_RUNNING) {
534                 /*
535                  * Some console drivers may assume that per-cpu resources have
536                  * been allocated.  So don't allow them to be called by this
537                  * CPU until it is officially up.  We shouldn't be calling into
538                  * random console drivers on a CPU which doesn't exist yet..
539                  */
540                 spin_unlock_irqrestore(&logbuf_lock, flags);
541                 goto out;
542         }
543         if (!down_trylock(&console_sem)) {
544                 console_locked = 1;
545                 /*
546                  * We own the drivers.  We can drop the spinlock and let
547                  * release_console_sem() print the text
548                  */
549                 spin_unlock_irqrestore(&logbuf_lock, flags);
550                 console_may_schedule = 0;
551                 release_console_sem();
552         } else {
553                 /*
554                  * Someone else owns the drivers.  We drop the spinlock, which
555                  * allows the semaphore holder to proceed and to call the
556                  * console drivers with the output which we just produced.
557                  */
558                 spin_unlock_irqrestore(&logbuf_lock, flags);
559         }
560 out:
561         return printed_len;
562 }
563 EXPORT_SYMBOL(printk);
564
565 /**
566  * acquire_console_sem - lock the console system for exclusive use.
567  *
568  * Acquires a semaphore which guarantees that the caller has
569  * exclusive access to the console system and the console_drivers list.
570  *
571  * Can sleep, returns nothing.
572  */
573 void acquire_console_sem(void)
574 {
575         if (in_interrupt())
576                 BUG();
577         down(&console_sem);
578         console_locked = 1;
579         console_may_schedule = 1;
580 }
581 EXPORT_SYMBOL(acquire_console_sem);
582
583 int is_console_locked(void)
584 {
585         return console_locked;
586 }
587 EXPORT_SYMBOL(is_console_locked);
588
589 /**
590  * release_console_sem - unlock the console system
591  *
592  * Releases the semaphore which the caller holds on the console system
593  * and the console driver list.
594  *
595  * While the semaphore was held, console output may have been buffered
596  * by printk().  If this is the case, release_console_sem() emits
597  * the output prior to releasing the semaphore.
598  *
599  * If there is output waiting for klogd, we wake it up.
600  *
601  * release_console_sem() may be called from any context.
602  */
603 void release_console_sem(void)
604 {
605         unsigned long flags;
606         unsigned long _con_start, _log_end;
607         unsigned long wake_klogd = 0;
608
609         for ( ; ; ) {
610                 spin_lock_irqsave(&logbuf_lock, flags);
611                 wake_klogd |= log_start - log_end;
612                 if (con_start == log_end)
613                         break;                  /* Nothing to print */
614                 _con_start = con_start;
615                 _log_end = log_end;
616                 con_start = log_end;            /* Flush */
617                 spin_unlock_irqrestore(&logbuf_lock, flags);
618                 call_console_drivers(_con_start, _log_end);
619         }
620         console_locked = 0;
621         console_may_schedule = 0;
622         up(&console_sem);
623         spin_unlock_irqrestore(&logbuf_lock, flags);
624         if (wake_klogd && !oops_in_progress && waitqueue_active(&log_wait))
625                 wake_up_interruptible(&log_wait);
626 }
627 EXPORT_SYMBOL(release_console_sem);
628
629 /** console_conditional_schedule - yield the CPU if required
630  *
631  * If the console code is currently allowed to sleep, and
632  * if this CPU should yield the CPU to another task, do
633  * so here.
634  *
635  * Must be called within acquire_console_sem().
636  */
637 void console_conditional_schedule(void)
638 {
639         if (console_may_schedule && need_resched()) {
640                 set_current_state(TASK_RUNNING);
641                 schedule();
642         }
643 }
644 EXPORT_SYMBOL(console_conditional_schedule);
645
646 void console_print(const char *s)
647 {
648         printk(KERN_EMERG "%s", s);
649 }
650 EXPORT_SYMBOL(console_print);
651
652 void console_unblank(void)
653 {
654         struct console *c;
655
656         /*
657          * Try to get the console semaphore. If someone else owns it
658          * we have to return without unblanking because console_unblank
659          * may be called in interrupt context.
660          */
661         if (down_trylock(&console_sem) != 0)
662                 return;
663         console_locked = 1;
664         console_may_schedule = 0;
665         for (c = console_drivers; c != NULL; c = c->next)
666                 if ((c->flags & CON_ENABLED) && c->unblank)
667                         c->unblank();
668         release_console_sem();
669 }
670 EXPORT_SYMBOL(console_unblank);
671
672 /*
673  * The console driver calls this routine during kernel initialization
674  * to register the console printing procedure with printk() and to
675  * print any messages that were printed by the kernel before the
676  * console driver was initialized.
677  */
678 void register_console(struct console * console)
679 {
680         int     i;
681         unsigned long flags;
682
683         /*
684          *      See if we want to use this console driver. If we
685          *      didn't select a console we take the first one
686          *      that registers here.
687          */
688         if (preferred_console < 0) {
689                 if (console->index < 0)
690                         console->index = 0;
691                 if (console->setup == NULL ||
692                     console->setup(console, NULL) == 0) {
693                         console->flags |= CON_ENABLED | CON_CONSDEV;
694                         preferred_console = 0;
695                 }
696         }
697
698         /*
699          *      See if this console matches one we selected on
700          *      the command line.
701          */
702         for(i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++) {
703                 if (strcmp(console_cmdline[i].name, console->name) != 0)
704                         continue;
705                 if (console->index >= 0 &&
706                     console->index != console_cmdline[i].index)
707                         continue;
708                 if (console->index < 0)
709                         console->index = console_cmdline[i].index;
710                 if (console->setup &&
711                     console->setup(console, console_cmdline[i].options) != 0)
712                         break;
713                 console->flags |= CON_ENABLED;
714                 console->index = console_cmdline[i].index;
715                 if (i == preferred_console)
716                         console->flags |= CON_CONSDEV;
717                 break;
718         }
719
720         if (!(console->flags & CON_ENABLED))
721                 return;
722
723         /*
724          *      Put this console in the list - keep the
725          *      preferred driver at the head of the list.
726          */
727         acquire_console_sem();
728         if ((console->flags & CON_CONSDEV) || console_drivers == NULL) {
729                 console->next = console_drivers;
730                 console_drivers = console;
731         } else {
732                 console->next = console_drivers->next;
733                 console_drivers->next = console;
734         }
735         if (console->flags & CON_PRINTBUFFER) {
736                 /*
737                  * release_console_sem() will print out the buffered messages
738                  * for us.
739                  */
740                 spin_lock_irqsave(&logbuf_lock, flags);
741                 con_start = log_start;
742                 spin_unlock_irqrestore(&logbuf_lock, flags);
743         }
744         release_console_sem();
745 }
746 EXPORT_SYMBOL(register_console);
747
748 int unregister_console(struct console * console)
749 {
750         struct console *a,*b;
751         int res = 1;
752
753         acquire_console_sem();
754         if (console_drivers == console) {
755                 console_drivers=console->next;
756                 res = 0;
757         } else {
758                 for (a=console_drivers->next, b=console_drivers ;
759                      a; b=a, a=b->next) {
760                         if (a == console) {
761                                 b->next = a->next;
762                                 res = 0;
763                                 break;
764                         }  
765                 }
766         }
767         
768         /* If last console is removed, we re-enable picking the first
769          * one that gets registered. Without that, pmac early boot console
770          * would prevent fbcon from taking over.
771          */
772         if (console_drivers == NULL)
773                 preferred_console = -1;
774                 
775
776         release_console_sem();
777         return res;
778 }
779 EXPORT_SYMBOL(unregister_console);
780         
781 /**
782  * tty_write_message - write a message to a certain tty, not just the console.
783  *
784  * This is used for messages that need to be redirected to a specific tty.
785  * We don't put it into the syslog queue right now maybe in the future if
786  * really needed.
787  */
788 void tty_write_message(struct tty_struct *tty, char *msg)
789 {
790         if (tty && tty->driver->write)
791                 tty->driver->write(tty, 0, msg, strlen(msg));
792         return;
793 }
794
795 /*
796  * printk rate limiting, lifted from the networking subsystem.
797  *
798  * This enforces a rate limit: not more than one kernel message
799  * every printk_ratelimit_jiffies to make a denial-of-service
800  * attack impossible.
801  */
802 int __printk_ratelimit(int ratelimit_jiffies, int ratelimit_burst)
803 {
804         static spinlock_t ratelimit_lock = SPIN_LOCK_UNLOCKED;
805         static unsigned long toks = 10*5*HZ;
806         static unsigned long last_msg;
807         static int missed;
808         unsigned long flags;
809         unsigned long now = jiffies;
810
811         spin_lock_irqsave(&ratelimit_lock, flags);
812         toks += now - last_msg;
813         last_msg = now;
814         if (toks > (ratelimit_burst * ratelimit_jiffies))
815                 toks = ratelimit_burst * ratelimit_jiffies;
816         if (toks >= ratelimit_jiffies) {
817                 int lost = missed;
818                 missed = 0;
819                 toks -= ratelimit_jiffies;
820                 spin_unlock_irqrestore(&ratelimit_lock, flags);
821                 if (lost)
822                         printk(KERN_WARNING "printk: %d messages suppressed.\n", lost);
823                 return 1;
824         }
825         missed++;
826         spin_unlock_irqrestore(&ratelimit_lock, flags);
827         return 0;
828 }
829 EXPORT_SYMBOL(__printk_ratelimit);
830
831 /* minimum time in jiffies between messages */
832 int printk_ratelimit_jiffies = 5*HZ;
833
834 /* number of messages we send before ratelimiting */
835 int printk_ratelimit_burst = 10;
836
837 int printk_ratelimit(void)
838 {
839         return __printk_ratelimit(printk_ratelimit_jiffies,
840                                 printk_ratelimit_burst);
841 }
842 EXPORT_SYMBOL(printk_ratelimit);