2 * linux/kernel/printk.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
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).
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>
19 #include <linux/kernel.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>
35 #include <asm/uaccess.h>
37 #define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
39 /* printk's without a loglevel use this.. */
40 #define DEFAULT_MESSAGE_LOGLEVEL 4 /* KERN_WARNING */
42 /* We show everything that is MORE important than this.. */
43 #define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */
44 #define DEFAULT_CONSOLE_LOGLEVEL 7 /* anything MORE serious than KERN_DEBUG */
46 DECLARE_WAIT_QUEUE_HEAD(log_wait
);
48 int console_printk
[4] = {
49 DEFAULT_CONSOLE_LOGLEVEL
, /* console_loglevel */
50 DEFAULT_MESSAGE_LOGLEVEL
, /* default_message_loglevel */
51 MINIMUM_CONSOLE_LOGLEVEL
, /* minimum_console_loglevel */
52 DEFAULT_CONSOLE_LOGLEVEL
, /* default_console_loglevel */
55 EXPORT_SYMBOL(console_printk
);
58 * Low lever drivers may need that to know if they can schedule in
59 * their unblank() callback or not. So let's export it.
62 EXPORT_SYMBOL(oops_in_progress
);
65 * console_sem protects the console_drivers list, and also
66 * provides serialisation for access to the entire console
69 static DECLARE_MUTEX(console_sem
);
70 struct console
*console_drivers
;
72 * This is used for debugging the mess that is the VT code by
73 * keeping track if we have the console semaphore held. It's
74 * definitely not the perfect debug tool (we don't know if _WE_
75 * hold it are racing, but it helps tracking those weird code
76 * path in the console code where we end up in places I want
77 * locked without the console sempahore held
79 static int console_locked
;
82 * logbuf_lock protects log_buf, log_start, log_end, con_start and logged_chars
83 * It is also used in interesting ways to provide interlocking in
84 * release_console_sem().
86 static DEFINE_SPINLOCK(logbuf_lock
);
88 #define LOG_BUF_MASK (log_buf_len-1)
89 #define LOG_BUF(idx) (log_buf[(idx) & LOG_BUF_MASK])
92 * The indices into log_buf are not constrained to log_buf_len - they
93 * must be masked before subscripting
95 static unsigned long log_start
; /* Index into log_buf: next char to be read by syslog() */
96 static unsigned long con_start
; /* Index into log_buf: next char to be sent to consoles */
97 static unsigned long log_end
; /* Index into log_buf: most-recently-written-char + 1 */
100 * Array of consoles built from command line options (console=)
102 struct console_cmdline
104 char name
[8]; /* Name of the driver */
105 int index
; /* Minor dev. to use */
106 char *options
; /* Options for the driver */
109 #define MAX_CMDLINECONSOLES 8
111 static struct console_cmdline console_cmdline
[MAX_CMDLINECONSOLES
];
112 static int selected_console
= -1;
113 static int preferred_console
= -1;
115 /* Flag: console code may call schedule() */
116 static int console_may_schedule
;
120 static char __log_buf
[__LOG_BUF_LEN
];
121 static char *log_buf
= __log_buf
;
122 static int log_buf_len
= __LOG_BUF_LEN
;
123 static unsigned long logged_chars
; /* Number of chars produced since last read+clear operation */
126 * Setup a list of consoles. Called from init/main.c
128 static int __init
console_setup(char *str
)
130 char name
[sizeof(console_cmdline
[0].name
)];
135 * Decode str into name, index, options.
137 if (str
[0] >= '0' && str
[0] <= '9') {
138 strcpy(name
, "ttyS");
139 strncpy(name
+ 4, str
, sizeof(name
) - 5);
141 strncpy(name
, str
, sizeof(name
) - 1);
142 name
[sizeof(name
) - 1] = 0;
143 if ((options
= strchr(str
, ',')) != NULL
)
146 if (!strcmp(str
, "ttya"))
147 strcpy(name
, "ttyS0");
148 if (!strcmp(str
, "ttyb"))
149 strcpy(name
, "ttyS1");
151 for(s
= name
; *s
; s
++)
152 if ((*s
>= '0' && *s
<= '9') || *s
== ',')
154 idx
= simple_strtoul(s
, NULL
, 10);
157 add_preferred_console(name
, idx
, options
);
161 __setup("console=", console_setup
);
163 static int __init
log_buf_len_setup(char *str
)
165 unsigned long size
= memparse(str
, &str
);
169 size
= roundup_pow_of_two(size
);
170 if (size
> log_buf_len
) {
171 unsigned long start
, dest_idx
, offset
;
174 new_log_buf
= alloc_bootmem(size
);
176 printk("log_buf_len: allocation failed\n");
180 spin_lock_irqsave(&logbuf_lock
, flags
);
182 log_buf
= new_log_buf
;
184 offset
= start
= min(con_start
, log_start
);
186 while (start
!= log_end
) {
187 log_buf
[dest_idx
] = __log_buf
[start
& (__LOG_BUF_LEN
- 1)];
194 spin_unlock_irqrestore(&logbuf_lock
, flags
);
196 printk("log_buf_len: %d\n", log_buf_len
);
203 __setup("log_buf_len=", log_buf_len_setup
);
206 * Commands to do_syslog:
208 * 0 -- Close the log. Currently a NOP.
209 * 1 -- Open the log. Currently a NOP.
210 * 2 -- Read from the log.
211 * 3 -- Read all messages remaining in the ring buffer.
212 * 4 -- Read and clear all messages remaining in the ring buffer
213 * 5 -- Clear ring buffer.
214 * 6 -- Disable printk's to console
215 * 7 -- Enable printk's to console
216 * 8 -- Set level of messages printed to console
217 * 9 -- Return number of unread characters in the log buffer
218 * 10 -- Return size of the log buffer
220 int do_syslog(int type
, char __user
* buf
, int len
)
222 unsigned long i
, j
, limit
, count
;
227 error
= security_syslog(type
);
232 case 0: /* Close log */
234 case 1: /* Open log */
236 case 2: /* Read from log */
243 if (!access_ok(VERIFY_WRITE
, buf
, len
)) {
247 error
= wait_event_interruptible(log_wait
, (log_start
- log_end
));
251 spin_lock_irq(&logbuf_lock
);
252 while (!error
&& (log_start
!= log_end
) && i
< len
) {
253 c
= LOG_BUF(log_start
);
255 spin_unlock_irq(&logbuf_lock
);
256 error
= __put_user(c
,buf
);
260 spin_lock_irq(&logbuf_lock
);
262 spin_unlock_irq(&logbuf_lock
);
266 case 4: /* Read/clear last kernel messages */
269 case 3: /* Read last kernel messages */
276 if (!access_ok(VERIFY_WRITE
, buf
, len
)) {
281 if (count
> log_buf_len
)
283 spin_lock_irq(&logbuf_lock
);
284 if (count
> logged_chars
)
285 count
= logged_chars
;
290 * __put_user() could sleep, and while we sleep
291 * printk() could overwrite the messages
292 * we try to copy to user space. Therefore
293 * the messages are copied in reverse. <manfreds>
295 for(i
= 0; i
< count
&& !error
; i
++) {
297 if (j
+ log_buf_len
< log_end
)
300 spin_unlock_irq(&logbuf_lock
);
301 error
= __put_user(c
,&buf
[count
-1-i
]);
303 spin_lock_irq(&logbuf_lock
);
305 spin_unlock_irq(&logbuf_lock
);
310 int offset
= count
-error
;
311 /* buffer overflow during copy, correct user buffer. */
312 for(i
=0;i
<error
;i
++) {
313 if (__get_user(c
,&buf
[i
+offset
]) ||
314 __put_user(c
,&buf
[i
])) {
322 case 5: /* Clear ring buffer */
325 case 6: /* Disable logging to console */
326 console_loglevel
= minimum_console_loglevel
;
328 case 7: /* Enable logging to console */
329 console_loglevel
= default_console_loglevel
;
331 case 8: /* Set level of messages printed to console */
333 if (len
< 1 || len
> 8)
335 if (len
< minimum_console_loglevel
)
336 len
= minimum_console_loglevel
;
337 console_loglevel
= len
;
340 case 9: /* Number of chars in the log buffer */
341 error
= log_end
- log_start
;
343 case 10: /* Size of the log buffer */
354 asmlinkage
long sys_syslog(int type
, char __user
* buf
, int len
)
356 return do_syslog(type
, buf
, len
);
360 * Call the console drivers on a range of log_buf
362 static void __call_console_drivers(unsigned long start
, unsigned long end
)
366 for (con
= console_drivers
; con
; con
= con
->next
) {
367 if ((con
->flags
& CON_ENABLED
) && con
->write
)
368 con
->write(con
, &LOG_BUF(start
), end
- start
);
373 * Write out chars from start to end - 1 inclusive
375 static void _call_console_drivers(unsigned long start
,
376 unsigned long end
, int msg_log_level
)
378 if (msg_log_level
< console_loglevel
&&
379 console_drivers
&& start
!= end
) {
380 if ((start
& LOG_BUF_MASK
) > (end
& LOG_BUF_MASK
)) {
382 __call_console_drivers(start
& LOG_BUF_MASK
,
384 __call_console_drivers(0, end
& LOG_BUF_MASK
);
386 __call_console_drivers(start
, end
);
392 * Call the console drivers, asking them to write out
393 * log_buf[start] to log_buf[end - 1].
394 * The console_sem must be held.
396 static void call_console_drivers(unsigned long start
, unsigned long end
)
398 unsigned long cur_index
, start_print
;
399 static int msg_level
= -1;
401 if (((long)(start
- end
)) > 0)
406 while (cur_index
!= end
) {
407 if ( msg_level
< 0 &&
408 ((end
- cur_index
) > 2) &&
409 LOG_BUF(cur_index
+ 0) == '<' &&
410 LOG_BUF(cur_index
+ 1) >= '0' &&
411 LOG_BUF(cur_index
+ 1) <= '7' &&
412 LOG_BUF(cur_index
+ 2) == '>')
414 msg_level
= LOG_BUF(cur_index
+ 1) - '0';
416 start_print
= cur_index
;
418 while (cur_index
!= end
) {
419 char c
= LOG_BUF(cur_index
);
425 * printk() has already given us loglevel tags in
426 * the buffer. This code is here in case the
427 * log buffer has wrapped right round and scribbled
430 msg_level
= default_message_loglevel
;
432 _call_console_drivers(start_print
, cur_index
, msg_level
);
434 start_print
= cur_index
;
439 _call_console_drivers(start_print
, end
, msg_level
);
442 static void emit_log_char(char c
)
444 LOG_BUF(log_end
) = c
;
446 if (log_end
- log_start
> log_buf_len
)
447 log_start
= log_end
- log_buf_len
;
448 if (log_end
- con_start
> log_buf_len
)
449 con_start
= log_end
- log_buf_len
;
450 if (logged_chars
< log_buf_len
)
455 * Zap console related locks when oopsing. Only zap at most once
456 * every 10 seconds, to leave time for slow consoles to print a
459 static void zap_locks(void)
461 static unsigned long oops_timestamp
;
463 if (time_after_eq(jiffies
, oops_timestamp
) &&
464 !time_after(jiffies
, oops_timestamp
+ 30*HZ
))
467 oops_timestamp
= jiffies
;
469 /* If a crash is occurring, make sure we can't deadlock */
470 spin_lock_init(&logbuf_lock
);
471 /* And make sure that we print immediately */
472 init_MUTEX(&console_sem
);
475 #if defined(CONFIG_PRINTK_TIME)
476 static int printk_time
= 1;
478 static int printk_time
= 0;
481 static int __init
printk_time_setup(char *str
)
489 __setup("time", printk_time_setup
);
492 * This is printk. It can be called from any context. We want it to work.
494 * We try to grab the console_sem. If we succeed, it's easy - we log the output and
495 * call the console drivers. If we fail to get the semaphore we place the output
496 * into the log buffer and return. The current holder of the console_sem will
497 * notice the new output in release_console_sem() and will send it to the
498 * consoles before releasing the semaphore.
500 * One effect of this deferred printing is that code which calls printk() and
501 * then changes console_loglevel may break. This is because console_loglevel
502 * is inspected when the actual printing occurs.
505 asmlinkage
int printk(const char *fmt
, ...)
511 r
= vprintk(fmt
, args
);
517 /* cpu currently holding logbuf_lock */
518 static volatile unsigned int printk_cpu
= UINT_MAX
;
520 asmlinkage
int vprintk(const char *fmt
, va_list args
)
525 static char printk_buf
[1024];
526 static int log_level_unknown
= 1;
529 if (unlikely(oops_in_progress
) && printk_cpu
== smp_processor_id())
530 /* If a crash is occurring during printk() on this CPU,
531 * make sure we can't deadlock */
534 /* This stops the holder of console_sem just where we want him */
535 spin_lock_irqsave(&logbuf_lock
, flags
);
536 printk_cpu
= smp_processor_id();
538 /* Emit the output into the temporary buffer */
539 printed_len
= vscnprintf(printk_buf
, sizeof(printk_buf
), fmt
, args
);
542 * Copy the output into log_buf. If the caller didn't provide
543 * appropriate log level tags, we insert them here
545 for (p
= printk_buf
; *p
; p
++) {
546 if (log_level_unknown
) {
547 /* log_level_unknown signals the start of a new line */
552 unsigned long long t
;
553 unsigned long nanosec_rem
;
556 * force the log level token to be
557 * before the time output.
559 if (p
[0] == '<' && p
[1] >='0' &&
560 p
[1] <= '7' && p
[2] == '>') {
565 loglev_char
= default_message_loglevel
569 nanosec_rem
= do_div(t
, 1000000000);
576 for (tp
= tbuf
; tp
< tbuf
+ tlen
; tp
++)
578 printed_len
+= tlen
- 3;
580 if (p
[0] != '<' || p
[1] < '0' ||
581 p
[1] > '7' || p
[2] != '>') {
583 emit_log_char(default_message_loglevel
589 log_level_unknown
= 0;
595 log_level_unknown
= 1;
598 if (!cpu_online(smp_processor_id())) {
600 * Some console drivers may assume that per-cpu resources have
601 * been allocated. So don't allow them to be called by this
602 * CPU until it is officially up. We shouldn't be calling into
603 * random console drivers on a CPU which doesn't exist yet..
605 printk_cpu
= UINT_MAX
;
606 spin_unlock_irqrestore(&logbuf_lock
, flags
);
609 if (!down_trylock(&console_sem
)) {
612 * We own the drivers. We can drop the spinlock and let
613 * release_console_sem() print the text
615 printk_cpu
= UINT_MAX
;
616 spin_unlock_irqrestore(&logbuf_lock
, flags
);
617 console_may_schedule
= 0;
618 release_console_sem();
621 * Someone else owns the drivers. We drop the spinlock, which
622 * allows the semaphore holder to proceed and to call the
623 * console drivers with the output which we just produced.
625 printk_cpu
= UINT_MAX
;
626 spin_unlock_irqrestore(&logbuf_lock
, flags
);
632 EXPORT_SYMBOL(printk
);
633 EXPORT_SYMBOL(vprintk
);
637 asmlinkage
long sys_syslog(int type
, char __user
* buf
, int len
)
642 int do_syslog(int type
, char __user
* buf
, int len
) { return 0; }
643 static void call_console_drivers(unsigned long start
, unsigned long end
) {}
648 * add_preferred_console - add a device to the list of preferred consoles.
650 * The last preferred console added will be used for kernel messages
651 * and stdin/out/err for init. Normally this is used by console_setup
652 * above to handle user-supplied console arguments; however it can also
653 * be used by arch-specific code either to override the user or more
654 * commonly to provide a default console (ie from PROM variables) when
655 * the user has not supplied one.
657 int __init
add_preferred_console(char *name
, int idx
, char *options
)
659 struct console_cmdline
*c
;
663 * See if this tty is not yet registered, and
664 * if we have a slot free.
666 for(i
= 0; i
< MAX_CMDLINECONSOLES
&& console_cmdline
[i
].name
[0]; i
++)
667 if (strcmp(console_cmdline
[i
].name
, name
) == 0 &&
668 console_cmdline
[i
].index
== idx
) {
669 selected_console
= i
;
672 if (i
== MAX_CMDLINECONSOLES
)
674 selected_console
= i
;
675 c
= &console_cmdline
[i
];
676 memcpy(c
->name
, name
, sizeof(c
->name
));
677 c
->name
[sizeof(c
->name
) - 1] = 0;
678 c
->options
= options
;
684 * acquire_console_sem - lock the console system for exclusive use.
686 * Acquires a semaphore which guarantees that the caller has
687 * exclusive access to the console system and the console_drivers list.
689 * Can sleep, returns nothing.
691 void acquire_console_sem(void)
697 console_may_schedule
= 1;
699 EXPORT_SYMBOL(acquire_console_sem
);
701 int try_acquire_console_sem(void)
703 if (down_trylock(&console_sem
))
706 console_may_schedule
= 0;
709 EXPORT_SYMBOL(try_acquire_console_sem
);
711 int is_console_locked(void)
713 return console_locked
;
715 EXPORT_SYMBOL(is_console_locked
);
718 * release_console_sem - unlock the console system
720 * Releases the semaphore which the caller holds on the console system
721 * and the console driver list.
723 * While the semaphore was held, console output may have been buffered
724 * by printk(). If this is the case, release_console_sem() emits
725 * the output prior to releasing the semaphore.
727 * If there is output waiting for klogd, we wake it up.
729 * release_console_sem() may be called from any context.
731 void release_console_sem(void)
734 unsigned long _con_start
, _log_end
;
735 unsigned long wake_klogd
= 0;
738 spin_lock_irqsave(&logbuf_lock
, flags
);
739 wake_klogd
|= log_start
- log_end
;
740 if (con_start
== log_end
)
741 break; /* Nothing to print */
742 _con_start
= con_start
;
744 con_start
= log_end
; /* Flush */
745 spin_unlock(&logbuf_lock
);
746 call_console_drivers(_con_start
, _log_end
);
747 local_irq_restore(flags
);
750 console_may_schedule
= 0;
752 spin_unlock_irqrestore(&logbuf_lock
, flags
);
753 if (wake_klogd
&& !oops_in_progress
&& waitqueue_active(&log_wait
))
754 wake_up_interruptible(&log_wait
);
756 EXPORT_SYMBOL(release_console_sem
);
758 /** console_conditional_schedule - yield the CPU if required
760 * If the console code is currently allowed to sleep, and
761 * if this CPU should yield the CPU to another task, do
764 * Must be called within acquire_console_sem().
766 void __sched
console_conditional_schedule(void)
768 if (console_may_schedule
)
771 EXPORT_SYMBOL(console_conditional_schedule
);
773 void console_print(const char *s
)
775 printk(KERN_EMERG
"%s", s
);
777 EXPORT_SYMBOL(console_print
);
779 void console_unblank(void)
784 * console_unblank can no longer be called in interrupt context unless
785 * oops_in_progress is set to 1..
787 if (oops_in_progress
) {
788 if (down_trylock(&console_sem
) != 0)
791 acquire_console_sem();
794 console_may_schedule
= 0;
795 for (c
= console_drivers
; c
!= NULL
; c
= c
->next
)
796 if ((c
->flags
& CON_ENABLED
) && c
->unblank
)
798 release_console_sem();
800 EXPORT_SYMBOL(console_unblank
);
803 * Return the console tty driver structure and its associated index
805 struct tty_driver
*console_device(int *index
)
808 struct tty_driver
*driver
= NULL
;
810 acquire_console_sem();
811 for (c
= console_drivers
; c
!= NULL
; c
= c
->next
) {
814 driver
= c
->device(c
, index
);
818 release_console_sem();
823 * Prevent further output on the passed console device so that (for example)
824 * serial drivers can disable console output before suspending a port, and can
825 * re-enable output afterwards.
827 void console_stop(struct console
*console
)
829 acquire_console_sem();
830 console
->flags
&= ~CON_ENABLED
;
831 release_console_sem();
833 EXPORT_SYMBOL(console_stop
);
835 void console_start(struct console
*console
)
837 acquire_console_sem();
838 console
->flags
|= CON_ENABLED
;
839 release_console_sem();
841 EXPORT_SYMBOL(console_start
);
844 * The console driver calls this routine during kernel initialization
845 * to register the console printing procedure with printk() and to
846 * print any messages that were printed by the kernel before the
847 * console driver was initialized.
849 void register_console(struct console
* console
)
854 if (preferred_console
< 0)
855 preferred_console
= selected_console
;
858 * See if we want to use this console driver. If we
859 * didn't select a console we take the first one
860 * that registers here.
862 if (preferred_console
< 0) {
863 if (console
->index
< 0)
865 if (console
->setup
== NULL
||
866 console
->setup(console
, NULL
) == 0) {
867 console
->flags
|= CON_ENABLED
| CON_CONSDEV
;
868 preferred_console
= 0;
873 * See if this console matches one we selected on
876 for(i
= 0; i
< MAX_CMDLINECONSOLES
&& console_cmdline
[i
].name
[0]; i
++) {
877 if (strcmp(console_cmdline
[i
].name
, console
->name
) != 0)
879 if (console
->index
>= 0 &&
880 console
->index
!= console_cmdline
[i
].index
)
882 if (console
->index
< 0)
883 console
->index
= console_cmdline
[i
].index
;
884 if (console
->setup
&&
885 console
->setup(console
, console_cmdline
[i
].options
) != 0)
887 console
->flags
|= CON_ENABLED
;
888 console
->index
= console_cmdline
[i
].index
;
889 if (i
== selected_console
) {
890 console
->flags
|= CON_CONSDEV
;
891 preferred_console
= selected_console
;
896 if (!(console
->flags
& CON_ENABLED
))
899 if (console_drivers
&& (console_drivers
->flags
& CON_BOOT
)) {
900 unregister_console(console_drivers
);
901 console
->flags
&= ~CON_PRINTBUFFER
;
905 * Put this console in the list - keep the
906 * preferred driver at the head of the list.
908 acquire_console_sem();
909 if ((console
->flags
& CON_CONSDEV
) || console_drivers
== NULL
) {
910 console
->next
= console_drivers
;
911 console_drivers
= console
;
913 console
->next
->flags
&= ~CON_CONSDEV
;
915 console
->next
= console_drivers
->next
;
916 console_drivers
->next
= console
;
918 if (console
->flags
& CON_PRINTBUFFER
) {
920 * release_console_sem() will print out the buffered messages
923 spin_lock_irqsave(&logbuf_lock
, flags
);
924 con_start
= log_start
;
925 spin_unlock_irqrestore(&logbuf_lock
, flags
);
927 release_console_sem();
929 EXPORT_SYMBOL(register_console
);
931 int unregister_console(struct console
* console
)
933 struct console
*a
,*b
;
936 acquire_console_sem();
937 if (console_drivers
== console
) {
938 console_drivers
=console
->next
;
941 for (a
=console_drivers
->next
, b
=console_drivers
;
951 /* If last console is removed, we re-enable picking the first
952 * one that gets registered. Without that, pmac early boot console
953 * would prevent fbcon from taking over.
955 * If this isn't the last console and it has CON_CONSDEV set, we
956 * need to set it on the next preferred console.
958 if (console_drivers
== NULL
)
959 preferred_console
= selected_console
;
960 else if (console
->flags
& CON_CONSDEV
)
961 console_drivers
->flags
|= CON_CONSDEV
;
963 release_console_sem();
966 EXPORT_SYMBOL(unregister_console
);
969 * tty_write_message - write a message to a certain tty, not just the console.
971 * This is used for messages that need to be redirected to a specific tty.
972 * We don't put it into the syslog queue right now maybe in the future if
975 void tty_write_message(struct tty_struct
*tty
, char *msg
)
977 if (tty
&& tty
->driver
->write
)
978 tty
->driver
->write(tty
, msg
, strlen(msg
));
983 * printk rate limiting, lifted from the networking subsystem.
985 * This enforces a rate limit: not more than one kernel message
986 * every printk_ratelimit_jiffies to make a denial-of-service
989 int __printk_ratelimit(int ratelimit_jiffies
, int ratelimit_burst
)
991 static DEFINE_SPINLOCK(ratelimit_lock
);
992 static unsigned long toks
= 10*5*HZ
;
993 static unsigned long last_msg
;
996 unsigned long now
= jiffies
;
998 spin_lock_irqsave(&ratelimit_lock
, flags
);
999 toks
+= now
- last_msg
;
1001 if (toks
> (ratelimit_burst
* ratelimit_jiffies
))
1002 toks
= ratelimit_burst
* ratelimit_jiffies
;
1003 if (toks
>= ratelimit_jiffies
) {
1006 toks
-= ratelimit_jiffies
;
1007 spin_unlock_irqrestore(&ratelimit_lock
, flags
);
1009 printk(KERN_WARNING
"printk: %d messages suppressed.\n", lost
);
1013 spin_unlock_irqrestore(&ratelimit_lock
, flags
);
1016 EXPORT_SYMBOL(__printk_ratelimit
);
1018 /* minimum time in jiffies between messages */
1019 int printk_ratelimit_jiffies
= 5*HZ
;
1021 /* number of messages we send before ratelimiting */
1022 int printk_ratelimit_burst
= 10;
1024 int printk_ratelimit(void)
1026 return __printk_ratelimit(printk_ratelimit_jiffies
,
1027 printk_ratelimit_burst
);
1029 EXPORT_SYMBOL(printk_ratelimit
);