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 * manfred@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/moduleparam.h>
28 #include <linux/interrupt.h> /* For in_interrupt() */
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 #include <linux/jiffies.h>
36 #include <asm/uaccess.h>
38 #define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
40 #ifdef CONFIG_DEBUG_LL
41 extern void printascii(char *);
44 /* printk's without a loglevel use this.. */
45 #define DEFAULT_MESSAGE_LOGLEVEL 4 /* KERN_WARNING */
47 /* We show everything that is MORE important than this.. */
48 #define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */
49 #define DEFAULT_CONSOLE_LOGLEVEL 7 /* anything MORE serious than KERN_DEBUG */
51 DECLARE_WAIT_QUEUE_HEAD(log_wait);
53 int console_printk[4] = {
54 DEFAULT_CONSOLE_LOGLEVEL, /* console_loglevel */
55 DEFAULT_MESSAGE_LOGLEVEL, /* default_message_loglevel */
56 MINIMUM_CONSOLE_LOGLEVEL, /* minimum_console_loglevel */
57 DEFAULT_CONSOLE_LOGLEVEL, /* default_console_loglevel */
61 * Low level drivers may need that to know if they can schedule in
62 * their unblank() callback or not. So let's export it.
65 EXPORT_SYMBOL(oops_in_progress);
68 * console_sem protects the console_drivers list, and also
69 * provides serialisation for access to the entire console
72 static DECLARE_MUTEX(console_sem);
73 static DECLARE_MUTEX(secondary_console_sem);
74 struct console *console_drivers;
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
83 static int console_locked, console_suspended;
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().
90 static DEFINE_SPINLOCK(logbuf_lock);
92 #define LOG_BUF_MASK (log_buf_len-1)
93 #define LOG_BUF(idx) (log_buf[(idx) & LOG_BUF_MASK])
96 * The indices into log_buf are not constrained to log_buf_len - they
97 * must be masked before subscripting
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 */
104 * Array of consoles built from command line options (console=)
106 struct console_cmdline
108 char name[8]; /* Name of the driver */
109 int index; /* Minor dev. to use */
110 char *options; /* Options for the driver */
113 #define MAX_CMDLINECONSOLES 8
115 static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
116 static int selected_console = -1;
117 static int preferred_console = -1;
119 /* Flag: console code may call schedule() */
120 static int console_may_schedule;
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 */
129 static int __init log_buf_len_setup(char *str)
131 unsigned long size = memparse(str, &str);
135 size = roundup_pow_of_two(size);
136 if (size > log_buf_len) {
137 unsigned long start, dest_idx, offset;
140 new_log_buf = alloc_bootmem(size);
142 printk(KERN_WARNING "log_buf_len: allocation failed\n");
146 spin_lock_irqsave(&logbuf_lock, flags);
148 log_buf = new_log_buf;
150 offset = start = min(con_start, log_start);
152 while (start != log_end) {
153 log_buf[dest_idx] = __log_buf[start & (__LOG_BUF_LEN - 1)];
160 spin_unlock_irqrestore(&logbuf_lock, flags);
162 printk(KERN_NOTICE "log_buf_len: %d\n", log_buf_len);
168 __setup("log_buf_len=", log_buf_len_setup);
171 * Commands to do_syslog:
173 * 0 -- Close the log. Currently a NOP.
174 * 1 -- Open the log. Currently a NOP.
175 * 2 -- Read from the log.
176 * 3 -- Read all messages remaining in the ring buffer.
177 * 4 -- Read and clear all messages remaining in the ring buffer
178 * 5 -- Clear ring buffer.
179 * 6 -- Disable printk's to console
180 * 7 -- Enable printk's to console
181 * 8 -- Set level of messages printed to console
182 * 9 -- Return number of unread characters in the log buffer
183 * 10 -- Return size of the log buffer
185 int do_syslog(int type, char __user *buf, int len)
187 unsigned long i, j, limit, count;
192 error = security_syslog(type);
197 case 0: /* Close log */
199 case 1: /* Open log */
201 case 2: /* Read from log */
208 if (!access_ok(VERIFY_WRITE, buf, len)) {
212 error = wait_event_interruptible(log_wait,
213 (log_start - log_end));
217 spin_lock_irq(&logbuf_lock);
218 while (!error && (log_start != log_end) && i < len) {
219 c = LOG_BUF(log_start);
221 spin_unlock_irq(&logbuf_lock);
222 error = __put_user(c,buf);
226 spin_lock_irq(&logbuf_lock);
228 spin_unlock_irq(&logbuf_lock);
232 case 4: /* Read/clear last kernel messages */
235 case 3: /* Read last kernel messages */
242 if (!access_ok(VERIFY_WRITE, buf, len)) {
247 if (count > log_buf_len)
249 spin_lock_irq(&logbuf_lock);
250 if (count > logged_chars)
251 count = logged_chars;
256 * __put_user() could sleep, and while we sleep
257 * printk() could overwrite the messages
258 * we try to copy to user space. Therefore
259 * the messages are copied in reverse. <manfreds>
261 for (i = 0; i < count && !error; i++) {
263 if (j + log_buf_len < log_end)
266 spin_unlock_irq(&logbuf_lock);
267 error = __put_user(c,&buf[count-1-i]);
269 spin_lock_irq(&logbuf_lock);
271 spin_unlock_irq(&logbuf_lock);
276 int offset = count-error;
277 /* buffer overflow during copy, correct user buffer. */
278 for (i = 0; i < error; i++) {
279 if (__get_user(c,&buf[i+offset]) ||
280 __put_user(c,&buf[i])) {
288 case 5: /* Clear ring buffer */
291 case 6: /* Disable logging to console */
292 console_loglevel = minimum_console_loglevel;
294 case 7: /* Enable logging to console */
295 console_loglevel = default_console_loglevel;
297 case 8: /* Set level of messages printed to console */
299 if (len < 1 || len > 8)
301 if (len < minimum_console_loglevel)
302 len = minimum_console_loglevel;
303 console_loglevel = len;
306 case 9: /* Number of chars in the log buffer */
307 error = log_end - log_start;
309 case 10: /* Size of the log buffer */
320 asmlinkage long sys_syslog(int type, char __user *buf, int len)
322 return do_syslog(type, buf, len);
326 * Call the console drivers on a range of log_buf
328 static void __call_console_drivers(unsigned long start, unsigned long end)
332 for (con = console_drivers; con; con = con->next) {
333 if ((con->flags & CON_ENABLED) && con->write &&
334 (cpu_online(smp_processor_id()) ||
335 (con->flags & CON_ANYTIME)))
336 con->write(con, &LOG_BUF(start), end - start);
340 static int __read_mostly ignore_loglevel;
342 static int __init ignore_loglevel_setup(char *str)
345 printk(KERN_INFO "debug: ignoring loglevel setting.\n");
350 __setup("ignore_loglevel", ignore_loglevel_setup);
353 * Write out chars from start to end - 1 inclusive
355 static void _call_console_drivers(unsigned long start,
356 unsigned long end, int msg_log_level)
358 if ((msg_log_level < console_loglevel || ignore_loglevel) &&
359 console_drivers && start != end) {
360 if ((start & LOG_BUF_MASK) > (end & LOG_BUF_MASK)) {
362 __call_console_drivers(start & LOG_BUF_MASK,
364 __call_console_drivers(0, end & LOG_BUF_MASK);
366 __call_console_drivers(start, end);
372 * Call the console drivers, asking them to write out
373 * log_buf[start] to log_buf[end - 1].
374 * The console_sem must be held.
376 static void call_console_drivers(unsigned long start, unsigned long end)
378 unsigned long cur_index, start_print;
379 static int msg_level = -1;
381 BUG_ON(((long)(start - end)) > 0);
385 while (cur_index != end) {
386 if (msg_level < 0 && ((end - cur_index) > 2) &&
387 LOG_BUF(cur_index + 0) == '<' &&
388 LOG_BUF(cur_index + 1) >= '0' &&
389 LOG_BUF(cur_index + 1) <= '7' &&
390 LOG_BUF(cur_index + 2) == '>') {
391 msg_level = LOG_BUF(cur_index + 1) - '0';
393 start_print = cur_index;
395 while (cur_index != end) {
396 char c = LOG_BUF(cur_index);
402 * printk() has already given us loglevel tags in
403 * the buffer. This code is here in case the
404 * log buffer has wrapped right round and scribbled
407 msg_level = default_message_loglevel;
409 _call_console_drivers(start_print, cur_index, msg_level);
411 start_print = cur_index;
416 _call_console_drivers(start_print, end, msg_level);
419 static void emit_log_char(char c)
421 LOG_BUF(log_end) = c;
423 if (log_end - log_start > log_buf_len)
424 log_start = log_end - log_buf_len;
425 if (log_end - con_start > log_buf_len)
426 con_start = log_end - log_buf_len;
427 if (logged_chars < log_buf_len)
432 * Zap console related locks when oopsing. Only zap at most once
433 * every 10 seconds, to leave time for slow consoles to print a
436 static void zap_locks(void)
438 static unsigned long oops_timestamp;
440 if (time_after_eq(jiffies, oops_timestamp) &&
441 !time_after(jiffies, oops_timestamp + 30 * HZ))
444 oops_timestamp = jiffies;
446 /* If a crash is occurring, make sure we can't deadlock */
447 spin_lock_init(&logbuf_lock);
448 /* And make sure that we print immediately */
449 init_MUTEX(&console_sem);
452 static int printk_time = 0;
454 #ifdef CONFIG_PRINTK_TIME
457 * Initialize printk time. Note that on some systems sched_clock()
458 * does not work until timer is initialized.
460 static int __init printk_time_init(void)
466 subsys_initcall(printk_time_init);
470 static int __init printk_time_setup(char *str)
478 __setup("time", printk_time_setup);
482 __attribute__((weak)) unsigned long long printk_clock(void)
484 return sched_clock();
487 /* Check if we have any console registered that can be called early in boot. */
488 static int have_callable_console(void)
492 for (con = console_drivers; con; con = con->next)
493 if (con->flags & CON_ANYTIME)
500 * printk - print a kernel message
501 * @fmt: format string
503 * This is printk(). It can be called from any context. We want it to work.
505 * We try to grab the console_sem. If we succeed, it's easy - we log the output and
506 * call the console drivers. If we fail to get the semaphore we place the output
507 * into the log buffer and return. The current holder of the console_sem will
508 * notice the new output in release_console_sem() and will send it to the
509 * consoles before releasing the semaphore.
511 * One effect of this deferred printing is that code which calls printk() and
512 * then changes console_loglevel may break. This is because console_loglevel
513 * is inspected when the actual printing occurs.
519 asmlinkage int printk(const char *fmt, ...)
525 r = vprintk(fmt, args);
531 /* cpu currently holding logbuf_lock */
532 static volatile unsigned int printk_cpu = UINT_MAX;
534 asmlinkage int vprintk(const char *fmt, va_list args)
539 static char printk_buf[1024];
540 static int log_level_unknown = 1;
543 if (unlikely(oops_in_progress) && printk_cpu == smp_processor_id())
544 /* If a crash is occurring during printk() on this CPU,
545 * make sure we can't deadlock */
548 /* This stops the holder of console_sem just where we want him */
549 raw_local_irq_save(flags);
551 spin_lock(&logbuf_lock);
552 printk_cpu = smp_processor_id();
554 /* Emit the output into the temporary buffer */
555 printed_len = vscnprintf(printk_buf, sizeof(printk_buf), fmt, args);
557 #ifdef CONFIG_DEBUG_LL
558 printascii(printk_buf);
562 * Copy the output into log_buf. If the caller didn't provide
563 * appropriate log level tags, we insert them here
565 for (p = printk_buf; *p; p++) {
566 if (log_level_unknown) {
567 /* log_level_unknown signals the start of a new line */
572 unsigned long long t;
573 unsigned long nanosec_rem;
576 * force the log level token to be
577 * before the time output.
579 if (p[0] == '<' && p[1] >='0' &&
580 p[1] <= '7' && p[2] == '>') {
585 loglev_char = default_message_loglevel
589 nanosec_rem = do_div(t, 1000000000);
596 for (tp = tbuf; tp < tbuf + tlen; tp++)
600 if (p[0] != '<' || p[1] < '0' ||
601 p[1] > '7' || p[2] != '>') {
603 emit_log_char(default_message_loglevel
609 log_level_unknown = 0;
615 log_level_unknown = 1;
618 if (!down_trylock(&console_sem)) {
620 * We own the drivers. We can drop the spinlock and
621 * let release_console_sem() print the text, maybe ...
624 printk_cpu = UINT_MAX;
625 spin_unlock(&logbuf_lock);
628 * Console drivers may assume that per-cpu resources have
629 * been allocated. So unless they're explicitly marked as
630 * being able to cope (CON_ANYTIME) don't call them until
631 * this CPU is officially up.
633 if (cpu_online(smp_processor_id()) || have_callable_console()) {
634 console_may_schedule = 0;
635 release_console_sem();
637 /* Release by hand to avoid flushing the buffer. */
642 raw_local_irq_restore(flags);
645 * Someone else owns the drivers. We drop the spinlock, which
646 * allows the semaphore holder to proceed and to call the
647 * console drivers with the output which we just produced.
649 printk_cpu = UINT_MAX;
650 spin_unlock(&logbuf_lock);
652 raw_local_irq_restore(flags);
658 EXPORT_SYMBOL(printk);
659 EXPORT_SYMBOL(vprintk);
663 asmlinkage long sys_syslog(int type, char __user *buf, int len)
668 static void call_console_drivers(unsigned long start, unsigned long end)
675 * Set up a list of consoles. Called from init/main.c
677 static int __init console_setup(char *str)
679 char name[sizeof(console_cmdline[0].name)];
684 * Decode str into name, index, options.
686 if (str[0] >= '0' && str[0] <= '9') {
687 strcpy(name, "ttyS");
688 strncpy(name + 4, str, sizeof(name) - 5);
690 strncpy(name, str, sizeof(name) - 1);
692 name[sizeof(name) - 1] = 0;
693 if ((options = strchr(str, ',')) != NULL)
696 if (!strcmp(str, "ttya"))
697 strcpy(name, "ttyS0");
698 if (!strcmp(str, "ttyb"))
699 strcpy(name, "ttyS1");
701 for (s = name; *s; s++)
702 if ((*s >= '0' && *s <= '9') || *s == ',')
704 idx = simple_strtoul(s, NULL, 10);
707 add_preferred_console(name, idx, options);
710 __setup("console=", console_setup);
713 * add_preferred_console - add a device to the list of preferred consoles.
716 * @options: options for this console
718 * The last preferred console added will be used for kernel messages
719 * and stdin/out/err for init. Normally this is used by console_setup
720 * above to handle user-supplied console arguments; however it can also
721 * be used by arch-specific code either to override the user or more
722 * commonly to provide a default console (ie from PROM variables) when
723 * the user has not supplied one.
725 int __init add_preferred_console(char *name, int idx, char *options)
727 struct console_cmdline *c;
731 * See if this tty is not yet registered, and
732 * if we have a slot free.
734 for(i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
735 if (strcmp(console_cmdline[i].name, name) == 0 &&
736 console_cmdline[i].index == idx) {
737 selected_console = i;
740 if (i == MAX_CMDLINECONSOLES)
742 selected_console = i;
743 c = &console_cmdline[i];
744 memcpy(c->name, name, sizeof(c->name));
745 c->name[sizeof(c->name) - 1] = 0;
746 c->options = options;
751 #ifndef CONFIG_DISABLE_CONSOLE_SUSPEND
753 * suspend_console - suspend the console subsystem
755 * This disables printk() while we go into suspend states
757 void suspend_console(void)
759 printk("Suspending console(s)\n");
760 acquire_console_sem();
761 console_suspended = 1;
764 void resume_console(void)
766 console_suspended = 0;
767 release_console_sem();
769 #endif /* CONFIG_DISABLE_CONSOLE_SUSPEND */
772 * acquire_console_sem - lock the console system for exclusive use.
774 * Acquires a semaphore which guarantees that the caller has
775 * exclusive access to the console system and the console_drivers list.
777 * Can sleep, returns nothing.
779 void acquire_console_sem(void)
781 BUG_ON(in_interrupt());
782 if (console_suspended) {
783 down(&secondary_console_sem);
788 console_may_schedule = 1;
790 EXPORT_SYMBOL(acquire_console_sem);
792 int try_acquire_console_sem(void)
794 if (down_trylock(&console_sem))
797 console_may_schedule = 0;
800 EXPORT_SYMBOL(try_acquire_console_sem);
802 int is_console_locked(void)
804 return console_locked;
807 void wake_up_klogd(void)
809 if (!oops_in_progress && waitqueue_active(&log_wait))
810 wake_up_interruptible(&log_wait);
814 * release_console_sem - unlock the console system
816 * Releases the semaphore which the caller holds on the console system
817 * and the console driver list.
819 * While the semaphore was held, console output may have been buffered
820 * by printk(). If this is the case, release_console_sem() emits
821 * the output prior to releasing the semaphore.
823 * If there is output waiting for klogd, we wake it up.
825 * release_console_sem() may be called from any context.
827 void release_console_sem(void)
830 unsigned long _con_start, _log_end;
831 unsigned long wake_klogd = 0;
833 if (console_suspended) {
834 up(&secondary_console_sem);
838 console_may_schedule = 0;
841 spin_lock_irqsave(&logbuf_lock, flags);
842 wake_klogd |= log_start - log_end;
843 if (con_start == log_end)
844 break; /* Nothing to print */
845 _con_start = con_start;
847 con_start = log_end; /* Flush */
848 spin_unlock(&logbuf_lock);
849 call_console_drivers(_con_start, _log_end);
850 local_irq_restore(flags);
854 spin_unlock_irqrestore(&logbuf_lock, flags);
858 EXPORT_SYMBOL(release_console_sem);
861 * console_conditional_schedule - yield the CPU if required
863 * If the console code is currently allowed to sleep, and
864 * if this CPU should yield the CPU to another task, do
867 * Must be called within acquire_console_sem().
869 void __sched console_conditional_schedule(void)
871 if (console_may_schedule)
874 EXPORT_SYMBOL(console_conditional_schedule);
876 void console_print(const char *s)
878 printk(KERN_EMERG "%s", s);
880 EXPORT_SYMBOL(console_print);
882 void console_unblank(void)
887 * console_unblank can no longer be called in interrupt context unless
888 * oops_in_progress is set to 1..
890 if (oops_in_progress) {
891 if (down_trylock(&console_sem) != 0)
894 acquire_console_sem();
897 console_may_schedule = 0;
898 for (c = console_drivers; c != NULL; c = c->next)
899 if ((c->flags & CON_ENABLED) && c->unblank)
901 release_console_sem();
905 * Return the console tty driver structure and its associated index
907 struct tty_driver *console_device(int *index)
910 struct tty_driver *driver = NULL;
912 acquire_console_sem();
913 for (c = console_drivers; c != NULL; c = c->next) {
916 driver = c->device(c, index);
920 release_console_sem();
925 * Prevent further output on the passed console device so that (for example)
926 * serial drivers can disable console output before suspending a port, and can
927 * re-enable output afterwards.
929 void console_stop(struct console *console)
931 acquire_console_sem();
932 console->flags &= ~CON_ENABLED;
933 release_console_sem();
935 EXPORT_SYMBOL(console_stop);
937 void console_start(struct console *console)
939 acquire_console_sem();
940 console->flags |= CON_ENABLED;
941 release_console_sem();
943 EXPORT_SYMBOL(console_start);
946 * The console driver calls this routine during kernel initialization
947 * to register the console printing procedure with printk() and to
948 * print any messages that were printed by the kernel before the
949 * console driver was initialized.
951 void register_console(struct console *console)
956 if (preferred_console < 0)
957 preferred_console = selected_console;
960 * See if we want to use this console driver. If we
961 * didn't select a console we take the first one
962 * that registers here.
964 if (preferred_console < 0) {
965 if (console->index < 0)
967 if (console->setup == NULL ||
968 console->setup(console, NULL) == 0) {
969 console->flags |= CON_ENABLED | CON_CONSDEV;
970 preferred_console = 0;
975 * See if this console matches one we selected on
978 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0];
980 if (strcmp(console_cmdline[i].name, console->name) != 0)
982 if (console->index >= 0 &&
983 console->index != console_cmdline[i].index)
985 if (console->index < 0)
986 console->index = console_cmdline[i].index;
987 if (console->setup &&
988 console->setup(console, console_cmdline[i].options) != 0)
990 console->flags |= CON_ENABLED;
991 console->index = console_cmdline[i].index;
992 if (i == selected_console) {
993 console->flags |= CON_CONSDEV;
994 preferred_console = selected_console;
999 if (!(console->flags & CON_ENABLED))
1002 if (console_drivers && (console_drivers->flags & CON_BOOT)) {
1003 unregister_console(console_drivers);
1004 console->flags &= ~CON_PRINTBUFFER;
1008 * Put this console in the list - keep the
1009 * preferred driver at the head of the list.
1011 acquire_console_sem();
1012 if ((console->flags & CON_CONSDEV) || console_drivers == NULL) {
1013 console->next = console_drivers;
1014 console_drivers = console;
1016 console->next->flags &= ~CON_CONSDEV;
1018 console->next = console_drivers->next;
1019 console_drivers->next = console;
1021 if (console->flags & CON_PRINTBUFFER) {
1023 * release_console_sem() will print out the buffered messages
1026 spin_lock_irqsave(&logbuf_lock, flags);
1027 con_start = log_start;
1028 spin_unlock_irqrestore(&logbuf_lock, flags);
1030 release_console_sem();
1032 EXPORT_SYMBOL(register_console);
1034 int unregister_console(struct console *console)
1036 struct console *a, *b;
1039 acquire_console_sem();
1040 if (console_drivers == console) {
1041 console_drivers=console->next;
1043 } else if (console_drivers) {
1044 for (a=console_drivers->next, b=console_drivers ;
1045 a; b=a, a=b->next) {
1054 /* If last console is removed, we re-enable picking the first
1055 * one that gets registered. Without that, pmac early boot console
1056 * would prevent fbcon from taking over.
1058 * If this isn't the last console and it has CON_CONSDEV set, we
1059 * need to set it on the next preferred console.
1061 if (console_drivers == NULL)
1062 preferred_console = selected_console;
1063 else if (console->flags & CON_CONSDEV)
1064 console_drivers->flags |= CON_CONSDEV;
1066 release_console_sem();
1069 EXPORT_SYMBOL(unregister_console);
1072 * tty_write_message - write a message to a certain tty, not just the console.
1073 * @tty: the destination tty_struct
1074 * @msg: the message to write
1076 * This is used for messages that need to be redirected to a specific tty.
1077 * We don't put it into the syslog queue right now maybe in the future if
1080 void tty_write_message(struct tty_struct *tty, char *msg)
1082 if (tty && tty->driver->write)
1083 tty->driver->write(tty, msg, strlen(msg));
1088 * printk rate limiting, lifted from the networking subsystem.
1090 * This enforces a rate limit: not more than one kernel message
1091 * every printk_ratelimit_jiffies to make a denial-of-service
1092 * attack impossible.
1094 int __printk_ratelimit(int ratelimit_jiffies, int ratelimit_burst)
1096 static DEFINE_SPINLOCK(ratelimit_lock);
1097 static unsigned long toks = 10 * 5 * HZ;
1098 static unsigned long last_msg;
1100 unsigned long flags;
1101 unsigned long now = jiffies;
1103 spin_lock_irqsave(&ratelimit_lock, flags);
1104 toks += now - last_msg;
1106 if (toks > (ratelimit_burst * ratelimit_jiffies))
1107 toks = ratelimit_burst * ratelimit_jiffies;
1108 if (toks >= ratelimit_jiffies) {
1112 toks -= ratelimit_jiffies;
1113 spin_unlock_irqrestore(&ratelimit_lock, flags);
1115 printk(KERN_WARNING "printk: %d messages suppressed.\n", lost);
1119 spin_unlock_irqrestore(&ratelimit_lock, flags);
1122 EXPORT_SYMBOL(__printk_ratelimit);
1124 /* minimum time in jiffies between messages */
1125 int printk_ratelimit_jiffies = 5 * HZ;
1127 /* number of messages we send before ratelimiting */
1128 int printk_ratelimit_burst = 10;
1130 int printk_ratelimit(void)
1132 return __printk_ratelimit(printk_ratelimit_jiffies,
1133 printk_ratelimit_burst);
1135 EXPORT_SYMBOL(printk_ratelimit);
1138 * printk_timed_ratelimit - caller-controlled printk ratelimiting
1139 * @caller_jiffies: pointer to caller's state
1140 * @interval_msecs: minimum interval between prints
1142 * printk_timed_ratelimit() returns true if more than @interval_msecs
1143 * milliseconds have elapsed since the last time printk_timed_ratelimit()
1146 bool printk_timed_ratelimit(unsigned long *caller_jiffies,
1147 unsigned int interval_msecs)
1149 if (*caller_jiffies == 0 || time_after(jiffies, *caller_jiffies)) {
1150 *caller_jiffies = jiffies + msecs_to_jiffies(interval_msecs);
1155 EXPORT_SYMBOL(printk_timed_ratelimit);