This commit was manufactured by cvs2svn to create tag
[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 = 0;
251
252         error = security_syslog(type);
253         if (error)
254                 return error;
255
256         switch (type) {
257         case 0:         /* Close log */
258                 break;
259         case 1:         /* Open log */
260                 break;
261         case 2:         /* Read from log */
262                 error = -EINVAL;
263                 if (!buf || len < 0)
264                         goto out;
265                 error = 0;
266                 if (!len)
267                         goto out;
268                 error = verify_area(VERIFY_WRITE,buf,len);
269                 if (error)
270                         goto out;
271                 error = wait_event_interruptible(log_wait, (log_start - log_end));
272                 if (error)
273                         goto out;
274                 i = 0;
275                 spin_lock_irq(&logbuf_lock);
276                 while (!error && (log_start != log_end) && i < len) {
277                         c = LOG_BUF(log_start);
278                         log_start++;
279                         spin_unlock_irq(&logbuf_lock);
280                         error = __put_user(c,buf);
281                         buf++;
282                         i++;
283                         spin_lock_irq(&logbuf_lock);
284                 }
285                 spin_unlock_irq(&logbuf_lock);
286                 if (!error)
287                         error = i;
288                 break;
289         case 4:         /* Read/clear last kernel messages */
290                 do_clear = 1; 
291                 /* FALL THRU */
292         case 3:         /* Read last kernel messages */
293                 error = -EINVAL;
294                 if (!buf || len < 0)
295                         goto out;
296                 error = 0;
297                 if (!len)
298                         goto out;
299                 error = verify_area(VERIFY_WRITE,buf,len);
300                 if (error)
301                         goto out;
302                 count = len;
303                 if (count > log_buf_len)
304                         count = log_buf_len;
305                 spin_lock_irq(&logbuf_lock);
306                 if (count > logged_chars)
307                         count = logged_chars;
308                 if (do_clear)
309                         logged_chars = 0;
310                 limit = log_end;
311                 /*
312                  * __put_user() could sleep, and while we sleep
313                  * printk() could overwrite the messages 
314                  * we try to copy to user space. Therefore
315                  * the messages are copied in reverse. <manfreds>
316                  */
317                 for(i = 0; i < count && !error; i++) {
318                         j = limit-1-i;
319                         if (j + log_buf_len < log_end)
320                                 break;
321                         c = LOG_BUF(j);
322                         spin_unlock_irq(&logbuf_lock);
323                         error = __put_user(c,&buf[count-1-i]);
324                         spin_lock_irq(&logbuf_lock);
325                 }
326                 spin_unlock_irq(&logbuf_lock);
327                 if (error)
328                         break;
329                 error = i;
330                 if(i != count) {
331                         int offset = count-error;
332                         /* buffer overflow during copy, correct user buffer. */
333                         for(i=0;i<error;i++) {
334                                 if (__get_user(c,&buf[i+offset]) ||
335                                     __put_user(c,&buf[i])) {
336                                         error = -EFAULT;
337                                         break;
338                                 }
339                         }
340                 }
341                 break;
342         case 5:         /* Clear ring buffer */
343                 logged_chars = 0;
344                 break;
345         case 6:         /* Disable logging to console */
346                 console_loglevel = minimum_console_loglevel;
347                 break;
348         case 7:         /* Enable logging to console */
349                 console_loglevel = default_console_loglevel;
350                 break;
351         case 8:         /* Set level of messages printed to console */
352                 error = -EINVAL;
353                 if (len < 1 || len > 8)
354                         goto out;
355                 if (len < minimum_console_loglevel)
356                         len = minimum_console_loglevel;
357                 console_loglevel = len;
358                 error = 0;
359                 break;
360         case 9:         /* Number of chars in the log buffer */
361                 error = log_end - log_start;
362                 break;
363         case 10:        /* Size of the log buffer */
364                 error = log_buf_len;
365                 break;
366         default:
367                 error = -EINVAL;
368                 break;
369         }
370 out:
371         return error;
372 }
373
374 asmlinkage long sys_syslog(int type, char __user * buf, int len)
375 {
376         return do_syslog(type, buf, len);
377 }
378
379 /*
380  * Call the console drivers on a range of log_buf
381  */
382 static void __call_console_drivers(unsigned long start, unsigned long end)
383 {
384         struct console *con;
385
386         for (con = console_drivers; con; con = con->next) {
387                 if ((con->flags & CON_ENABLED) && con->write)
388                         con->write(con, &LOG_BUF(start), end - start);
389         }
390 }
391
392 /*
393  * Write out chars from start to end - 1 inclusive
394  */
395 static void _call_console_drivers(unsigned long start,
396                                 unsigned long end, int msg_log_level)
397 {
398         if (msg_log_level < console_loglevel &&
399                         console_drivers && start != end) {
400                 if ((start & LOG_BUF_MASK) > (end & LOG_BUF_MASK)) {
401                         /* wrapped write */
402                         __call_console_drivers(start & LOG_BUF_MASK,
403                                                 log_buf_len);
404                         __call_console_drivers(0, end & LOG_BUF_MASK);
405                 } else {
406                         __call_console_drivers(start, end);
407                 }
408         }
409 }
410
411 /*
412  * Call the console drivers, asking them to write out
413  * log_buf[start] to log_buf[end - 1].
414  * The console_sem must be held.
415  */
416 static void call_console_drivers(unsigned long start, unsigned long end)
417 {
418         unsigned long cur_index, start_print;
419         static int msg_level = -1;
420
421         if (((long)(start - end)) > 0)
422                 BUG();
423
424         cur_index = start;
425         start_print = start;
426         while (cur_index != end) {
427                 if (    msg_level < 0 &&
428                         ((end - cur_index) > 2) &&
429                         LOG_BUF(cur_index + 0) == '<' &&
430                         LOG_BUF(cur_index + 1) >= '0' &&
431                         LOG_BUF(cur_index + 1) <= '7' &&
432                         LOG_BUF(cur_index + 2) == '>')
433                 {
434                         msg_level = LOG_BUF(cur_index + 1) - '0';
435                         cur_index += 3;
436                         start_print = cur_index;
437                 }
438                 while (cur_index != end) {
439                         char c = LOG_BUF(cur_index);
440                         cur_index++;
441
442                         if (c == '\n') {
443                                 if (msg_level < 0) {
444                                         /*
445                                          * printk() has already given us loglevel tags in
446                                          * the buffer.  This code is here in case the
447                                          * log buffer has wrapped right round and scribbled
448                                          * on those tags
449                                          */
450                                         msg_level = default_message_loglevel;
451                                 }
452                                 _call_console_drivers(start_print, cur_index, msg_level);
453                                 msg_level = -1;
454                                 start_print = cur_index;
455                                 break;
456                         }
457                 }
458         }
459         _call_console_drivers(start_print, end, msg_level);
460 }
461
462 static void emit_log_char(char c)
463 {
464         LOG_BUF(log_end) = c;
465         log_end++;
466         if (log_end - log_start > log_buf_len)
467                 log_start = log_end - log_buf_len;
468         if (log_end - con_start > log_buf_len)
469                 con_start = log_end - log_buf_len;
470         if (logged_chars < log_buf_len)
471                 logged_chars++;
472 }
473
474 /*
475  * Zap console related locks when oopsing. Only zap at most once
476  * every 10 seconds, to leave time for slow consoles to print a
477  * full oops.
478  */
479 static void zap_locks(void)
480 {
481         static unsigned long oops_timestamp;
482
483         if (time_after_eq(jiffies, oops_timestamp) &&
484                         !time_after(jiffies, oops_timestamp + 30*HZ))
485                 return;
486
487         oops_timestamp = jiffies;
488
489         /* If a crash is occurring, make sure we can't deadlock */
490         spin_lock_init(&logbuf_lock);
491         /* And make sure that we print immediately */
492         init_MUTEX(&console_sem);
493 }
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 asmlinkage int printk(const char *fmt, ...)
509 {
510         va_list args;
511         unsigned long flags;
512         int printed_len;
513         char *p;
514         static char printk_buf[1024];
515         static int log_level_unknown = 1;
516
517         if (unlikely(oops_in_progress))
518                 zap_locks();
519
520         /* This stops the holder of console_sem just where we want him */
521         spin_lock_irqsave(&logbuf_lock, flags);
522
523         /* Emit the output into the temporary buffer */
524         va_start(args, fmt);
525         printed_len = vscnprintf(printk_buf, sizeof(printk_buf), fmt, args);
526         va_end(args);
527
528         /*
529          * Copy the output into log_buf.  If the caller didn't provide
530          * appropriate log level tags, we insert them here
531          */
532         for (p = printk_buf; *p; p++) {
533                 if (log_level_unknown) {
534                         if (p[0] != '<' || p[1] < '0' || p[1] > '7' || p[2] != '>') {
535                                 emit_log_char('<');
536                                 emit_log_char(default_message_loglevel + '0');
537                                 emit_log_char('>');
538                         }
539                         log_level_unknown = 0;
540                 }
541                 emit_log_char(*p);
542                 if (*p == '\n')
543                         log_level_unknown = 1;
544         }
545
546         if (!cpu_online(smp_processor_id()) &&
547             system_state != SYSTEM_RUNNING) {
548                 /*
549                  * Some console drivers may assume that per-cpu resources have
550                  * been allocated.  So don't allow them to be called by this
551                  * CPU until it is officially up.  We shouldn't be calling into
552                  * random console drivers on a CPU which doesn't exist yet..
553                  */
554                 spin_unlock_irqrestore(&logbuf_lock, flags);
555                 goto out;
556         }
557         if (!down_trylock(&console_sem)) {
558                 console_locked = 1;
559                 /*
560                  * We own the drivers.  We can drop the spinlock and let
561                  * release_console_sem() print the text
562                  */
563                 spin_unlock_irqrestore(&logbuf_lock, flags);
564                 console_may_schedule = 0;
565                 release_console_sem();
566         } else {
567                 /*
568                  * Someone else owns the drivers.  We drop the spinlock, which
569                  * allows the semaphore holder to proceed and to call the
570                  * console drivers with the output which we just produced.
571                  */
572                 spin_unlock_irqrestore(&logbuf_lock, flags);
573         }
574 out:
575         return printed_len;
576 }
577 EXPORT_SYMBOL(printk);
578
579 /**
580  * acquire_console_sem - lock the console system for exclusive use.
581  *
582  * Acquires a semaphore which guarantees that the caller has
583  * exclusive access to the console system and the console_drivers list.
584  *
585  * Can sleep, returns nothing.
586  */
587 void acquire_console_sem(void)
588 {
589         if (in_interrupt())
590                 BUG();
591         down(&console_sem);
592         console_locked = 1;
593         console_may_schedule = 1;
594 }
595 EXPORT_SYMBOL(acquire_console_sem);
596
597 int is_console_locked(void)
598 {
599         return console_locked;
600 }
601 EXPORT_SYMBOL(is_console_locked);
602
603 /**
604  * release_console_sem - unlock the console system
605  *
606  * Releases the semaphore which the caller holds on the console system
607  * and the console driver list.
608  *
609  * While the semaphore was held, console output may have been buffered
610  * by printk().  If this is the case, release_console_sem() emits
611  * the output prior to releasing the semaphore.
612  *
613  * If there is output waiting for klogd, we wake it up.
614  *
615  * release_console_sem() may be called from any context.
616  */
617 void release_console_sem(void)
618 {
619         unsigned long flags;
620         unsigned long _con_start, _log_end;
621         unsigned long wake_klogd = 0;
622
623         for ( ; ; ) {
624                 spin_lock_irqsave(&logbuf_lock, flags);
625                 wake_klogd |= log_start - log_end;
626                 if (con_start == log_end)
627                         break;                  /* Nothing to print */
628                 _con_start = con_start;
629                 _log_end = log_end;
630                 con_start = log_end;            /* Flush */
631                 spin_unlock_irqrestore(&logbuf_lock, flags);
632                 call_console_drivers(_con_start, _log_end);
633         }
634         console_locked = 0;
635         console_may_schedule = 0;
636         up(&console_sem);
637         spin_unlock_irqrestore(&logbuf_lock, flags);
638         if (wake_klogd && !oops_in_progress && waitqueue_active(&log_wait))
639                 wake_up_interruptible(&log_wait);
640 }
641 EXPORT_SYMBOL(release_console_sem);
642
643 /** console_conditional_schedule - yield the CPU if required
644  *
645  * If the console code is currently allowed to sleep, and
646  * if this CPU should yield the CPU to another task, do
647  * so here.
648  *
649  * Must be called within acquire_console_sem().
650  */
651 void console_conditional_schedule(void)
652 {
653         if (console_may_schedule && need_resched()) {
654                 set_current_state(TASK_RUNNING);
655                 schedule();
656         }
657 }
658 EXPORT_SYMBOL(console_conditional_schedule);
659
660 void console_print(const char *s)
661 {
662         printk(KERN_EMERG "%s", s);
663 }
664 EXPORT_SYMBOL(console_print);
665
666 void console_unblank(void)
667 {
668         struct console *c;
669
670         /*
671          * Try to get the console semaphore. If someone else owns it
672          * we have to return without unblanking because console_unblank
673          * may be called in interrupt context.
674          */
675         if (down_trylock(&console_sem) != 0)
676                 return;
677         console_locked = 1;
678         console_may_schedule = 0;
679         for (c = console_drivers; c != NULL; c = c->next)
680                 if ((c->flags & CON_ENABLED) && c->unblank)
681                         c->unblank();
682         release_console_sem();
683 }
684 EXPORT_SYMBOL(console_unblank);
685
686 /*
687  * The console driver calls this routine during kernel initialization
688  * to register the console printing procedure with printk() and to
689  * print any messages that were printed by the kernel before the
690  * console driver was initialized.
691  */
692 void register_console(struct console * console)
693 {
694         int     i;
695         unsigned long flags;
696
697         /*
698          *      See if we want to use this console driver. If we
699          *      didn't select a console we take the first one
700          *      that registers here.
701          */
702         if (preferred_console < 0) {
703                 if (console->index < 0)
704                         console->index = 0;
705                 if (console->setup == NULL ||
706                     console->setup(console, NULL) == 0) {
707                         console->flags |= CON_ENABLED | CON_CONSDEV;
708                         preferred_console = 0;
709                 }
710         }
711
712         /*
713          *      See if this console matches one we selected on
714          *      the command line.
715          */
716         for(i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++) {
717                 if (strcmp(console_cmdline[i].name, console->name) != 0)
718                         continue;
719                 if (console->index >= 0 &&
720                     console->index != console_cmdline[i].index)
721                         continue;
722                 if (console->index < 0)
723                         console->index = console_cmdline[i].index;
724                 if (console->setup &&
725                     console->setup(console, console_cmdline[i].options) != 0)
726                         break;
727                 console->flags |= CON_ENABLED;
728                 console->index = console_cmdline[i].index;
729                 if (i == preferred_console)
730                         console->flags |= CON_CONSDEV;
731                 break;
732         }
733
734         if (!(console->flags & CON_ENABLED))
735                 return;
736
737         /*
738          *      Put this console in the list - keep the
739          *      preferred driver at the head of the list.
740          */
741         acquire_console_sem();
742         if ((console->flags & CON_CONSDEV) || console_drivers == NULL) {
743                 console->next = console_drivers;
744                 console_drivers = console;
745         } else {
746                 console->next = console_drivers->next;
747                 console_drivers->next = console;
748         }
749         if (console->flags & CON_PRINTBUFFER) {
750                 /*
751                  * release_console_sem() will print out the buffered messages
752                  * for us.
753                  */
754                 spin_lock_irqsave(&logbuf_lock, flags);
755                 con_start = log_start;
756                 spin_unlock_irqrestore(&logbuf_lock, flags);
757         }
758         release_console_sem();
759 }
760 EXPORT_SYMBOL(register_console);
761
762 int unregister_console(struct console * console)
763 {
764         struct console *a,*b;
765         int res = 1;
766
767         acquire_console_sem();
768         if (console_drivers == console) {
769                 console_drivers=console->next;
770                 res = 0;
771         } else {
772                 for (a=console_drivers->next, b=console_drivers ;
773                      a; b=a, a=b->next) {
774                         if (a == console) {
775                                 b->next = a->next;
776                                 res = 0;
777                                 break;
778                         }  
779                 }
780         }
781         
782         /* If last console is removed, we re-enable picking the first
783          * one that gets registered. Without that, pmac early boot console
784          * would prevent fbcon from taking over.
785          */
786         if (console_drivers == NULL)
787                 preferred_console = -1;
788                 
789
790         release_console_sem();
791         return res;
792 }
793 EXPORT_SYMBOL(unregister_console);
794         
795 /**
796  * tty_write_message - write a message to a certain tty, not just the console.
797  *
798  * This is used for messages that need to be redirected to a specific tty.
799  * We don't put it into the syslog queue right now maybe in the future if
800  * really needed.
801  */
802 void tty_write_message(struct tty_struct *tty, char *msg)
803 {
804         if (tty && tty->driver->write)
805                 tty->driver->write(tty, 0, msg, strlen(msg));
806         return;
807 }
808
809 /*
810  * printk rate limiting, lifted from the networking subsystem.
811  *
812  * This enforces a rate limit: not more than one kernel message
813  * every printk_ratelimit_jiffies to make a denial-of-service
814  * attack impossible.
815  */
816 int __printk_ratelimit(int ratelimit_jiffies, int ratelimit_burst)
817 {
818         static spinlock_t ratelimit_lock = SPIN_LOCK_UNLOCKED;
819         static unsigned long toks = 10*5*HZ;
820         static unsigned long last_msg;
821         static int missed;
822         unsigned long flags;
823         unsigned long now = jiffies;
824
825         spin_lock_irqsave(&ratelimit_lock, flags);
826         toks += now - last_msg;
827         last_msg = now;
828         if (toks > (ratelimit_burst * ratelimit_jiffies))
829                 toks = ratelimit_burst * ratelimit_jiffies;
830         if (toks >= ratelimit_jiffies) {
831                 int lost = missed;
832                 missed = 0;
833                 toks -= ratelimit_jiffies;
834                 spin_unlock_irqrestore(&ratelimit_lock, flags);
835                 if (lost)
836                         printk(KERN_WARNING "printk: %d messages suppressed.\n", lost);
837                 return 1;
838         }
839         missed++;
840         spin_unlock_irqrestore(&ratelimit_lock, flags);
841         return 0;
842 }
843 EXPORT_SYMBOL(__printk_ratelimit);
844
845 /* minimum time in jiffies between messages */
846 int printk_ratelimit_jiffies = 5*HZ;
847
848 /* number of messages we send before ratelimiting */
849 int printk_ratelimit_burst = 10;
850
851 int printk_ratelimit(void)
852 {
853         return __printk_ratelimit(printk_ratelimit_jiffies,
854                                 printk_ratelimit_burst);
855 }
856 EXPORT_SYMBOL(printk_ratelimit);