repo init
[linux-rt-nao.git] / kernel / printk.c
blob984a35d44c8e943e97b7c0dc4136c1edb6f474bb
1 /*
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).
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 * manfred@colorfullife.com
15 * Rewrote bits to get rid of console_lock
16 * 01Mar01 Andrew Morton
19 #include <linux/kernel.h>
20 #include <linux/mm.h>
21 #include <linux/tty.h>
22 #include <linux/tty_driver.h>
23 #include <linux/console.h>
24 #include <linux/init.h>
25 #include <linux/jiffies.h>
26 #include <linux/nmi.h>
27 #include <linux/module.h>
28 #include <linux/moduleparam.h>
29 #include <linux/interrupt.h> /* For in_interrupt() */
30 #include <linux/delay.h>
31 #include <linux/smp.h>
32 #include <linux/security.h>
33 #include <linux/bootmem.h>
34 #include <linux/syscalls.h>
36 #include <asm/uaccess.h>
39 * Architectures can override it:
41 void asmlinkage __attribute__((weak)) early_printk(const char *fmt, ...)
45 #define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
47 /* printk's without a loglevel use this.. */
48 #define DEFAULT_MESSAGE_LOGLEVEL 4 /* KERN_WARNING */
50 /* We show everything that is MORE important than this.. */
51 #define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */
52 #define DEFAULT_CONSOLE_LOGLEVEL 7 /* anything MORE serious than KERN_DEBUG */
54 DECLARE_WAIT_QUEUE_HEAD(log_wait);
56 int console_printk[4] = {
57 DEFAULT_CONSOLE_LOGLEVEL, /* console_loglevel */
58 DEFAULT_MESSAGE_LOGLEVEL, /* default_message_loglevel */
59 MINIMUM_CONSOLE_LOGLEVEL, /* minimum_console_loglevel */
60 DEFAULT_CONSOLE_LOGLEVEL, /* default_console_loglevel */
64 * Low level drivers may need that to know if they can schedule in
65 * their unblank() callback or not. So let's export it.
67 int oops_in_progress;
68 EXPORT_SYMBOL(oops_in_progress);
71 * console_sem protects the console_drivers list, and also
72 * provides serialisation for access to the entire console
73 * driver system.
75 static DECLARE_MUTEX(console_sem);
76 struct console *console_drivers;
77 EXPORT_SYMBOL_GPL(console_drivers);
80 * This is used for debugging the mess that is the VT code by
81 * keeping track if we have the console semaphore held. It's
82 * definitely not the perfect debug tool (we don't know if _WE_
83 * hold it are racing, but it helps tracking those weird code
84 * path in the console code where we end up in places I want
85 * locked without the console sempahore held
87 static int console_locked, console_suspended;
90 * logbuf_lock protects log_buf, log_start, log_end, con_start and logged_chars
91 * It is also used in interesting ways to provide interlocking in
92 * release_console_sem().
94 static DEFINE_RAW_SPINLOCK(logbuf_lock);
96 #define LOG_BUF_MASK (log_buf_len-1)
97 #define LOG_BUF(idx) (log_buf[(idx) & LOG_BUF_MASK])
100 * The indices into log_buf are not constrained to log_buf_len - they
101 * must be masked before subscripting
103 static unsigned log_start; /* Index into log_buf: next char to be read by syslog() */
104 static unsigned con_start; /* Index into log_buf: next char to be sent to consoles */
105 static unsigned log_end; /* Index into log_buf: most-recently-written-char + 1 */
108 * Array of consoles built from command line options (console=)
110 struct console_cmdline
112 char name[8]; /* Name of the driver */
113 int index; /* Minor dev. to use */
114 char *options; /* Options for the driver */
115 #ifdef CONFIG_A11Y_BRAILLE_CONSOLE
116 char *brl_options; /* Options for braille driver */
117 #endif
120 #define MAX_CMDLINECONSOLES 8
122 static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
123 static int selected_console = -1;
124 static int preferred_console = -1;
125 int console_set_on_cmdline;
126 EXPORT_SYMBOL(console_set_on_cmdline);
128 /* Flag: console code may call schedule() */
129 static int console_may_schedule;
131 #ifdef CONFIG_PRINTK
133 static char __log_buf[__LOG_BUF_LEN];
134 static char *log_buf = __log_buf;
135 static int log_buf_len = __LOG_BUF_LEN;
136 static unsigned logged_chars; /* Number of chars produced since last read+clear operation */
138 static int __init log_buf_len_setup(char *str)
140 unsigned size = memparse(str, &str);
141 unsigned long flags;
143 if (size)
144 size = roundup_pow_of_two(size);
145 if (size > log_buf_len) {
146 unsigned start, dest_idx, offset;
147 char *new_log_buf;
149 new_log_buf = alloc_bootmem(size);
150 if (!new_log_buf) {
151 printk(KERN_WARNING "log_buf_len: allocation failed\n");
152 goto out;
155 spin_lock_irqsave(&logbuf_lock, flags);
156 log_buf_len = size;
157 log_buf = new_log_buf;
159 offset = start = min(con_start, log_start);
160 dest_idx = 0;
161 while (start != log_end) {
162 log_buf[dest_idx] = __log_buf[start & (__LOG_BUF_LEN - 1)];
163 start++;
164 dest_idx++;
166 log_start -= offset;
167 con_start -= offset;
168 log_end -= offset;
169 spin_unlock_irqrestore(&logbuf_lock, flags);
171 printk(KERN_NOTICE "log_buf_len: %d\n", log_buf_len);
173 out:
174 return 1;
177 __setup("log_buf_len=", log_buf_len_setup);
179 #ifdef CONFIG_BOOT_PRINTK_DELAY
181 static unsigned int boot_delay; /* msecs delay after each printk during bootup */
182 static unsigned long long printk_delay_msec; /* per msec, based on boot_delay */
184 static int __init boot_delay_setup(char *str)
186 unsigned long lpj;
187 unsigned long long loops_per_msec;
189 lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */
190 loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
192 get_option(&str, &boot_delay);
193 if (boot_delay > 10 * 1000)
194 boot_delay = 0;
196 printk_delay_msec = loops_per_msec;
197 printk(KERN_DEBUG "boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
198 "HZ: %d, printk_delay_msec: %llu\n",
199 boot_delay, preset_lpj, lpj, HZ, printk_delay_msec);
200 return 1;
202 __setup("boot_delay=", boot_delay_setup);
204 static void boot_delay_msec(void)
206 unsigned long long k;
207 unsigned long timeout;
209 if (boot_delay == 0 || system_state != SYSTEM_BOOTING)
210 return;
212 k = (unsigned long long)printk_delay_msec * boot_delay;
214 timeout = jiffies + msecs_to_jiffies(boot_delay);
215 while (k) {
216 k--;
217 cpu_relax();
219 * use (volatile) jiffies to prevent
220 * compiler reduction; loop termination via jiffies
221 * is secondary and may or may not happen.
223 if (time_after(jiffies, timeout))
224 break;
225 touch_nmi_watchdog();
228 #else
229 static inline void boot_delay_msec(void)
232 #endif
235 * Commands to do_syslog:
237 * 0 -- Close the log. Currently a NOP.
238 * 1 -- Open the log. Currently a NOP.
239 * 2 -- Read from the log.
240 * 3 -- Read all messages remaining in the ring buffer.
241 * 4 -- Read and clear all messages remaining in the ring buffer
242 * 5 -- Clear ring buffer.
243 * 6 -- Disable printk's to console
244 * 7 -- Enable printk's to console
245 * 8 -- Set level of messages printed to console
246 * 9 -- Return number of unread characters in the log buffer
247 * 10 -- Return size of the log buffer
249 int do_syslog(int type, char __user *buf, int len)
251 unsigned i, j, limit, count;
252 int do_clear = 0;
253 char c;
254 int error = 0;
256 error = security_syslog(type);
257 if (error)
258 return error;
260 switch (type) {
261 case 0: /* Close log */
262 break;
263 case 1: /* Open log */
264 break;
265 case 2: /* Read from log */
266 error = -EINVAL;
267 if (!buf || len < 0)
268 goto out;
269 error = 0;
270 if (!len)
271 goto out;
272 if (!access_ok(VERIFY_WRITE, buf, len)) {
273 error = -EFAULT;
274 goto out;
276 error = wait_event_interruptible(log_wait,
277 (log_start - log_end));
278 if (error)
279 goto out;
280 i = 0;
281 spin_lock_irq(&logbuf_lock);
282 while (!error && (log_start != log_end) && i < len) {
283 c = LOG_BUF(log_start);
284 log_start++;
285 spin_unlock_irq(&logbuf_lock);
286 error = __put_user(c,buf);
287 buf++;
288 i++;
289 cond_resched();
290 spin_lock_irq(&logbuf_lock);
292 spin_unlock_irq(&logbuf_lock);
293 if (!error)
294 error = i;
295 break;
296 case 4: /* Read/clear last kernel messages */
297 do_clear = 1;
298 /* FALL THRU */
299 case 3: /* Read last kernel messages */
300 error = -EINVAL;
301 if (!buf || len < 0)
302 goto out;
303 error = 0;
304 if (!len)
305 goto out;
306 if (!access_ok(VERIFY_WRITE, buf, len)) {
307 error = -EFAULT;
308 goto out;
310 count = len;
311 if (count > log_buf_len)
312 count = log_buf_len;
313 spin_lock_irq(&logbuf_lock);
314 if (count > logged_chars)
315 count = logged_chars;
316 if (do_clear)
317 logged_chars = 0;
318 limit = log_end;
320 * __put_user() could sleep, and while we sleep
321 * printk() could overwrite the messages
322 * we try to copy to user space. Therefore
323 * the messages are copied in reverse. <manfreds>
325 for (i = 0; i < count && !error; i++) {
326 j = limit-1-i;
327 if (j + log_buf_len < log_end)
328 break;
329 c = LOG_BUF(j);
330 spin_unlock_irq(&logbuf_lock);
331 error = __put_user(c,&buf[count-1-i]);
332 cond_resched();
333 spin_lock_irq(&logbuf_lock);
335 spin_unlock_irq(&logbuf_lock);
336 if (error)
337 break;
338 error = i;
339 if (i != count) {
340 int offset = count-error;
341 /* buffer overflow during copy, correct user buffer. */
342 for (i = 0; i < error; i++) {
343 if (__get_user(c,&buf[i+offset]) ||
344 __put_user(c,&buf[i])) {
345 error = -EFAULT;
346 break;
348 cond_resched();
351 break;
352 case 5: /* Clear ring buffer */
353 logged_chars = 0;
354 break;
355 case 6: /* Disable logging to console */
356 console_loglevel = minimum_console_loglevel;
357 break;
358 case 7: /* Enable logging to console */
359 console_loglevel = default_console_loglevel;
360 break;
361 case 8: /* Set level of messages printed to console */
362 error = -EINVAL;
363 if (len < 1 || len > 8)
364 goto out;
365 if (len < minimum_console_loglevel)
366 len = minimum_console_loglevel;
367 console_loglevel = len;
368 error = 0;
369 break;
370 case 9: /* Number of chars in the log buffer */
371 error = log_end - log_start;
372 break;
373 case 10: /* Size of the log buffer */
374 error = log_buf_len;
375 break;
376 default:
377 error = -EINVAL;
378 break;
380 out:
381 return error;
384 SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
386 return do_syslog(type, buf, len);
390 * Call the console drivers on a range of log_buf
392 static void __call_console_drivers(unsigned start, unsigned end)
394 struct console *con;
396 for (con = console_drivers; con; con = con->next) {
397 if ((con->flags & CON_ENABLED) && con->write &&
398 console_atomic_safe(con) &&
399 (cpu_online(raw_smp_processor_id()) ||
400 (con->flags & CON_ANYTIME))) {
401 set_printk_might_sleep(1);
402 con->write(con, &LOG_BUF(start), end - start);
403 set_printk_might_sleep(0);
408 static int __read_mostly ignore_loglevel;
410 static int __init ignore_loglevel_setup(char *str)
412 ignore_loglevel = 1;
413 printk(KERN_INFO "debug: ignoring loglevel setting.\n");
415 return 0;
418 early_param("ignore_loglevel", ignore_loglevel_setup);
421 * Write out chars from start to end - 1 inclusive
423 static void _call_console_drivers(unsigned start,
424 unsigned end, int msg_log_level)
426 if ((msg_log_level < console_loglevel || ignore_loglevel) &&
427 console_drivers && start != end) {
428 if ((start & LOG_BUF_MASK) > (end & LOG_BUF_MASK)) {
429 /* wrapped write */
430 __call_console_drivers(start & LOG_BUF_MASK,
431 log_buf_len);
432 __call_console_drivers(0, end & LOG_BUF_MASK);
433 } else {
434 __call_console_drivers(start, end);
440 * Call the console drivers, asking them to write out
441 * log_buf[start] to log_buf[end - 1].
442 * The console_sem must be held.
444 static void call_console_drivers(unsigned start, unsigned end)
446 unsigned cur_index, start_print;
447 static int msg_level = -1;
449 BUG_ON(((int)(start - end)) > 0);
451 cur_index = start;
452 start_print = start;
453 while (cur_index != end) {
454 if (msg_level < 0 && ((end - cur_index) > 2) &&
455 LOG_BUF(cur_index + 0) == '<' &&
456 LOG_BUF(cur_index + 1) >= '0' &&
457 LOG_BUF(cur_index + 1) <= '7' &&
458 LOG_BUF(cur_index + 2) == '>') {
459 msg_level = LOG_BUF(cur_index + 1) - '0';
460 cur_index += 3;
461 start_print = cur_index;
463 while (cur_index != end) {
464 char c = LOG_BUF(cur_index);
466 cur_index++;
467 if (c == '\n') {
468 if (msg_level < 0) {
470 * printk() has already given us loglevel tags in
471 * the buffer. This code is here in case the
472 * log buffer has wrapped right round and scribbled
473 * on those tags
475 msg_level = default_message_loglevel;
477 _call_console_drivers(start_print, cur_index, msg_level);
478 msg_level = -1;
479 start_print = cur_index;
480 break;
484 _call_console_drivers(start_print, end, msg_level);
487 static void emit_log_char(char c)
489 LOG_BUF(log_end) = c;
490 log_end++;
491 if (log_end - log_start > log_buf_len)
492 log_start = log_end - log_buf_len;
493 if (log_end - con_start > log_buf_len)
494 con_start = log_end - log_buf_len;
495 if (logged_chars < log_buf_len)
496 logged_chars++;
500 * Zap console related locks when oopsing. Only zap at most once
501 * every 10 seconds, to leave time for slow consoles to print a
502 * full oops.
504 static void zap_locks(void)
506 static unsigned long oops_timestamp;
508 if (time_after_eq(jiffies, oops_timestamp) &&
509 !time_after(jiffies, oops_timestamp + 30 * HZ))
510 return;
512 oops_timestamp = jiffies;
514 /* If a crash is occurring, make sure we can't deadlock */
515 spin_lock_init(&logbuf_lock);
516 /* And make sure that we print immediately */
517 init_MUTEX(&console_sem);
518 zap_rt_locks();
521 #if defined(CONFIG_PRINTK_TIME)
522 static int printk_time = 1;
523 #else
524 static int printk_time = 0;
525 #endif
526 module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
528 /* Check if we have any console registered that can be called early in boot. */
529 static int have_callable_console(void)
531 struct console *con;
533 for (con = console_drivers; con; con = con->next)
534 if (con->flags & CON_ANYTIME)
535 return 1;
537 return 0;
541 * printk - print a kernel message
542 * @fmt: format string
544 * This is printk(). It can be called from any context. We want it to work.
546 * We try to grab the console_sem. If we succeed, it's easy - we log the output and
547 * call the console drivers. If we fail to get the semaphore we place the output
548 * into the log buffer and return. The current holder of the console_sem will
549 * notice the new output in release_console_sem() and will send it to the
550 * consoles before releasing the semaphore.
552 * One effect of this deferred printing is that code which calls printk() and
553 * then changes console_loglevel may break. This is because console_loglevel
554 * is inspected when the actual printing occurs.
556 * See also:
557 * printf(3)
559 * See the vsnprintf() documentation for format string extensions over C99.
562 asmlinkage int printk(const char *fmt, ...)
564 va_list args;
565 int r;
567 va_start(args, fmt);
568 r = vprintk(fmt, args);
569 va_end(args);
571 return r;
574 /* cpu currently holding logbuf_lock */
575 static volatile unsigned int printk_cpu = UINT_MAX;
578 * Can we actually use the console at this time on this cpu?
580 * Console drivers may assume that per-cpu resources have
581 * been allocated. So unless they're explicitly marked as
582 * being able to cope (CON_ANYTIME) don't call them until
583 * this CPU is officially up.
585 static inline int can_use_console(unsigned int cpu)
587 return cpu_online(cpu) || have_callable_console();
591 * Try to get console ownership to actually show the kernel
592 * messages from a 'printk'. Return true (and with the
593 * console_semaphore held, and 'console_locked' set) if it
594 * is successful, false otherwise.
596 * This gets called with the 'logbuf_lock' spinlock held and
597 * interrupts disabled. It should return with 'lockbuf_lock'
598 * released but interrupts still disabled.
600 static int acquire_console_semaphore_for_printk(unsigned int cpu,
601 unsigned long flags)
603 int retval = 0;
605 if (!try_acquire_console_sem()) {
606 retval = 1;
609 * If we can't use the console, we need to release
610 * the console semaphore by hand to avoid flushing
611 * the buffer. We need to hold the console semaphore
612 * in order to do this test safely.
614 if (!can_use_console(cpu)) {
615 console_locked = 0;
616 up(&console_sem);
617 retval = 0;
620 printk_cpu = UINT_MAX;
621 spin_unlock(&logbuf_lock);
622 lockdep_on();
623 local_irq_restore(flags);
624 return retval;
626 static const char recursion_bug_msg [] =
627 KERN_CRIT "BUG: recent printk recursion!\n";
628 static int recursion_bug;
629 static int new_text_line = 1;
630 static char printk_buf[1024];
632 asmlinkage int vprintk(const char *fmt, va_list args)
634 int printed_len = 0;
635 int current_log_level = default_message_loglevel;
636 unsigned long flags;
637 int this_cpu;
638 char *p;
640 boot_delay_msec();
642 preempt_disable();
643 /* This stops the holder of console_sem just where we want him */
644 raw_local_irq_save(flags);
645 this_cpu = raw_smp_processor_id();
648 * Ouch, printk recursed into itself!
650 if (unlikely(printk_cpu == this_cpu)) {
652 * If a crash is occurring during printk() on this CPU,
653 * then try to get the crash message out but make sure
654 * we can't deadlock. Otherwise just return to avoid the
655 * recursion and return - but flag the recursion so that
656 * it can be printed at the next appropriate moment:
658 if (!oops_in_progress) {
659 recursion_bug = 1;
660 raw_local_irq_restore(flags);
661 goto out;
663 zap_locks();
666 lockdep_off();
667 spin_lock(&logbuf_lock);
668 printk_cpu = this_cpu;
669 preempt_enable();
671 if (recursion_bug) {
672 recursion_bug = 0;
673 strcpy(printk_buf, recursion_bug_msg);
674 printed_len = strlen(recursion_bug_msg);
676 /* Emit the output into the temporary buffer */
677 printed_len += vscnprintf(printk_buf + printed_len,
678 sizeof(printk_buf) - printed_len, fmt, args);
682 * Copy the output into log_buf. If the caller didn't provide
683 * appropriate log level tags, we insert them here
685 for (p = printk_buf; *p; p++) {
686 if (new_text_line) {
687 /* If a token, set current_log_level and skip over */
688 if (p[0] == '<' && p[1] >= '0' && p[1] <= '7' &&
689 p[2] == '>') {
690 current_log_level = p[1] - '0';
691 p += 3;
692 printed_len -= 3;
695 /* Always output the token */
696 emit_log_char('<');
697 emit_log_char(current_log_level + '0');
698 emit_log_char('>');
699 printed_len += 3;
700 new_text_line = 0;
702 if (printk_time) {
703 /* Follow the token with the time */
704 char tbuf[50], *tp;
705 unsigned tlen;
706 unsigned long long t;
707 unsigned long nanosec_rem;
709 t = cpu_clock(printk_cpu);
710 nanosec_rem = do_div(t, 1000000000);
711 tlen = sprintf(tbuf, "[%5lu.%06lu] ",
712 (unsigned long) t,
713 nanosec_rem / 1000);
715 for (tp = tbuf; tp < tbuf + tlen; tp++)
716 emit_log_char(*tp);
717 printed_len += tlen;
720 if (!*p)
721 break;
724 emit_log_char(*p);
725 if (*p == '\n')
726 new_text_line = 1;
730 * Try to acquire and then immediately release the
731 * console semaphore. The release will do all the
732 * actual magic (print out buffers, wake up klogd,
733 * etc).
735 * The acquire_console_semaphore_for_printk() function
736 * will release 'logbuf_lock' regardless of whether it
737 * actually gets the semaphore or not.
739 if (acquire_console_semaphore_for_printk(this_cpu, flags))
740 release_console_sem();
742 out:
743 return printed_len;
745 EXPORT_SYMBOL(printk);
746 EXPORT_SYMBOL(vprintk);
748 #else
750 static void call_console_drivers(unsigned start, unsigned end)
754 #endif
756 static int __add_preferred_console(char *name, int idx, char *options,
757 char *brl_options)
759 struct console_cmdline *c;
760 int i;
763 * See if this tty is not yet registered, and
764 * if we have a slot free.
766 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
767 if (strcmp(console_cmdline[i].name, name) == 0 &&
768 console_cmdline[i].index == idx) {
769 if (!brl_options)
770 selected_console = i;
771 return 0;
773 if (i == MAX_CMDLINECONSOLES)
774 return -E2BIG;
775 if (!brl_options)
776 selected_console = i;
777 c = &console_cmdline[i];
778 strlcpy(c->name, name, sizeof(c->name));
779 c->options = options;
780 #ifdef CONFIG_A11Y_BRAILLE_CONSOLE
781 c->brl_options = brl_options;
782 #endif
783 c->index = idx;
784 return 0;
787 * Set up a list of consoles. Called from init/main.c
789 static int __init console_setup(char *str)
791 char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for index */
792 char *s, *options, *brl_options = NULL;
793 int idx;
795 #ifdef CONFIG_A11Y_BRAILLE_CONSOLE
796 if (!memcmp(str, "brl,", 4)) {
797 brl_options = "";
798 str += 4;
799 } else if (!memcmp(str, "brl=", 4)) {
800 brl_options = str + 4;
801 str = strchr(brl_options, ',');
802 if (!str) {
803 printk(KERN_ERR "need port name after brl=\n");
804 return 1;
806 *(str++) = 0;
808 #endif
811 * Decode str into name, index, options.
813 if (str[0] >= '0' && str[0] <= '9') {
814 strcpy(buf, "ttyS");
815 strncpy(buf + 4, str, sizeof(buf) - 5);
816 } else {
817 strncpy(buf, str, sizeof(buf) - 1);
819 buf[sizeof(buf) - 1] = 0;
820 if ((options = strchr(str, ',')) != NULL)
821 *(options++) = 0;
822 #ifdef __sparc__
823 if (!strcmp(str, "ttya"))
824 strcpy(buf, "ttyS0");
825 if (!strcmp(str, "ttyb"))
826 strcpy(buf, "ttyS1");
827 #endif
828 for (s = buf; *s; s++)
829 if ((*s >= '0' && *s <= '9') || *s == ',')
830 break;
831 idx = simple_strtoul(s, NULL, 10);
832 *s = 0;
834 __add_preferred_console(buf, idx, options, brl_options);
835 console_set_on_cmdline = 1;
836 return 1;
838 __setup("console=", console_setup);
841 * add_preferred_console - add a device to the list of preferred consoles.
842 * @name: device name
843 * @idx: device index
844 * @options: options for this console
846 * The last preferred console added will be used for kernel messages
847 * and stdin/out/err for init. Normally this is used by console_setup
848 * above to handle user-supplied console arguments; however it can also
849 * be used by arch-specific code either to override the user or more
850 * commonly to provide a default console (ie from PROM variables) when
851 * the user has not supplied one.
853 int add_preferred_console(char *name, int idx, char *options)
855 return __add_preferred_console(name, idx, options, NULL);
858 int update_console_cmdline(char *name, int idx, char *name_new, int idx_new, char *options)
860 struct console_cmdline *c;
861 int i;
863 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
864 if (strcmp(console_cmdline[i].name, name) == 0 &&
865 console_cmdline[i].index == idx) {
866 c = &console_cmdline[i];
867 strlcpy(c->name, name_new, sizeof(c->name));
868 c->name[sizeof(c->name) - 1] = 0;
869 c->options = options;
870 c->index = idx_new;
871 return i;
873 /* not found */
874 return -1;
877 int console_suspend_enabled = 1;
878 EXPORT_SYMBOL(console_suspend_enabled);
880 static int __init console_suspend_disable(char *str)
882 console_suspend_enabled = 0;
883 return 1;
885 __setup("no_console_suspend", console_suspend_disable);
888 * suspend_console - suspend the console subsystem
890 * This disables printk() while we go into suspend states
892 void suspend_console(void)
894 if (!console_suspend_enabled)
895 return;
896 printk("Suspending console(s) (use no_console_suspend to debug)\n");
897 acquire_console_sem();
898 console_suspended = 1;
899 up(&console_sem);
902 void resume_console(void)
904 if (!console_suspend_enabled)
905 return;
906 down(&console_sem);
907 console_suspended = 0;
908 release_console_sem();
912 * acquire_console_sem - lock the console system for exclusive use.
914 * Acquires a semaphore which guarantees that the caller has
915 * exclusive access to the console system and the console_drivers list.
917 * Can sleep, returns nothing.
919 void acquire_console_sem(void)
921 BUG_ON(in_interrupt());
922 down(&console_sem);
923 if (console_suspended)
924 return;
925 console_locked = 1;
926 console_may_schedule = 1;
928 EXPORT_SYMBOL(acquire_console_sem);
930 int try_acquire_console_sem(void)
932 if (down_trylock(&console_sem))
933 return -1;
934 if (console_suspended) {
935 up(&console_sem);
936 return -1;
938 console_locked = 1;
939 console_may_schedule = 0;
940 return 0;
942 EXPORT_SYMBOL(try_acquire_console_sem);
944 int is_console_locked(void)
946 return console_locked;
949 static DEFINE_PER_CPU(int, printk_pending);
951 void printk_tick(void)
953 if (__get_cpu_var(printk_pending)) {
954 __get_cpu_var(printk_pending) = 0;
955 wake_up_interruptible(&log_wait);
959 int printk_needs_cpu(int cpu)
961 return per_cpu(printk_pending, cpu);
964 void wake_up_klogd(void)
966 if (waitqueue_active(&log_wait))
967 __raw_get_cpu_var(printk_pending) = 1;
971 * release_console_sem - unlock the console system
973 * Releases the semaphore which the caller holds on the console system
974 * and the console driver list.
976 * While the semaphore was held, console output may have been buffered
977 * by printk(). If this is the case, release_console_sem() emits
978 * the output prior to releasing the semaphore.
980 * If there is output waiting for klogd, we wake it up.
982 * release_console_sem() may be called from any context.
984 void release_console_sem(void)
986 unsigned long flags;
987 unsigned _con_start, _log_end;
988 unsigned wake_klogd = 0;
990 if (console_suspended) {
991 up(&console_sem);
992 return;
995 console_may_schedule = 0;
997 for ( ; ; ) {
998 spin_lock_irqsave(&logbuf_lock, flags);
999 wake_klogd |= log_start - log_end;
1000 if (con_start == log_end)
1001 break; /* Nothing to print */
1002 _con_start = con_start;
1003 _log_end = log_end;
1004 con_start = log_end; /* Flush */
1006 * on PREEMPT_RT, call console drivers with
1007 * interrupts enabled (if printk was called
1008 * with interrupts disabled):
1010 #ifdef CONFIG_PREEMPT_RT
1011 spin_unlock_irqrestore(&logbuf_lock, flags);
1012 #else
1013 spin_unlock(&logbuf_lock);
1014 stop_critical_timings(); /* don't trace print latency */
1015 #endif
1016 call_console_drivers(_con_start, _log_end);
1017 start_critical_timings();
1018 #ifndef CONFIG_PREEMPT_RT
1019 local_irq_restore(flags);
1020 #endif
1022 console_locked = 0;
1023 spin_unlock_irqrestore(&logbuf_lock, flags);
1024 up(&console_sem);
1026 * On PREEMPT_RT kernels __wake_up may sleep, so wake syslogd
1027 * up only if we are in a preemptible section. We normally dont
1028 * printk from non-preemptible sections so this is for the emergency
1029 * case only.
1031 #ifdef CONFIG_PREEMPT_RT
1032 if (!in_atomic() && !irqs_disabled())
1033 #endif
1034 if (wake_klogd)
1035 wake_up_klogd();
1037 EXPORT_SYMBOL(release_console_sem);
1040 * console_conditional_schedule - yield the CPU if required
1042 * If the console code is currently allowed to sleep, and
1043 * if this CPU should yield the CPU to another task, do
1044 * so here.
1046 * Must be called within acquire_console_sem().
1048 void __sched console_conditional_schedule(void)
1050 if (console_may_schedule)
1051 cond_resched();
1053 EXPORT_SYMBOL(console_conditional_schedule);
1055 void console_print(const char *s)
1057 printk(KERN_EMERG "%s", s);
1059 EXPORT_SYMBOL(console_print);
1061 void console_unblank(void)
1063 struct console *c;
1066 * console_unblank can no longer be called in interrupt context unless
1067 * oops_in_progress is set to 1..
1069 if (oops_in_progress) {
1070 if (down_trylock(&console_sem) != 0)
1071 return;
1072 } else
1073 acquire_console_sem();
1075 console_locked = 1;
1076 console_may_schedule = 0;
1077 for (c = console_drivers; c != NULL; c = c->next)
1078 if ((c->flags & CON_ENABLED) && c->unblank)
1079 c->unblank();
1080 release_console_sem();
1084 * Return the console tty driver structure and its associated index
1086 struct tty_driver *console_device(int *index)
1088 struct console *c;
1089 struct tty_driver *driver = NULL;
1091 acquire_console_sem();
1092 for (c = console_drivers; c != NULL; c = c->next) {
1093 if (!c->device)
1094 continue;
1095 driver = c->device(c, index);
1096 if (driver)
1097 break;
1099 release_console_sem();
1100 return driver;
1104 * Prevent further output on the passed console device so that (for example)
1105 * serial drivers can disable console output before suspending a port, and can
1106 * re-enable output afterwards.
1108 void console_stop(struct console *console)
1110 acquire_console_sem();
1111 console->flags &= ~CON_ENABLED;
1112 release_console_sem();
1114 EXPORT_SYMBOL(console_stop);
1116 void console_start(struct console *console)
1118 acquire_console_sem();
1119 console->flags |= CON_ENABLED;
1120 release_console_sem();
1122 EXPORT_SYMBOL(console_start);
1125 * The console driver calls this routine during kernel initialization
1126 * to register the console printing procedure with printk() and to
1127 * print any messages that were printed by the kernel before the
1128 * console driver was initialized.
1130 void register_console(struct console *console)
1132 int i;
1133 unsigned long flags;
1134 struct console *bootconsole = NULL;
1136 if (console_drivers) {
1137 if (console->flags & CON_BOOT)
1138 return;
1139 if (console_drivers->flags & CON_BOOT)
1140 bootconsole = console_drivers;
1143 if (preferred_console < 0 || bootconsole || !console_drivers)
1144 preferred_console = selected_console;
1146 if (console->early_setup)
1147 console->early_setup();
1150 * See if we want to use this console driver. If we
1151 * didn't select a console we take the first one
1152 * that registers here.
1154 if (preferred_console < 0) {
1155 if (console->index < 0)
1156 console->index = 0;
1157 if (console->setup == NULL ||
1158 console->setup(console, NULL) == 0) {
1159 console->flags |= CON_ENABLED;
1160 if (console->device) {
1161 console->flags |= CON_CONSDEV;
1162 preferred_console = 0;
1168 * See if this console matches one we selected on
1169 * the command line.
1171 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0];
1172 i++) {
1173 if (strcmp(console_cmdline[i].name, console->name) != 0)
1174 continue;
1175 if (console->index >= 0 &&
1176 console->index != console_cmdline[i].index)
1177 continue;
1178 if (console->index < 0)
1179 console->index = console_cmdline[i].index;
1180 #ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1181 if (console_cmdline[i].brl_options) {
1182 console->flags |= CON_BRL;
1183 braille_register_console(console,
1184 console_cmdline[i].index,
1185 console_cmdline[i].options,
1186 console_cmdline[i].brl_options);
1187 return;
1189 #endif
1190 if (console->setup &&
1191 console->setup(console, console_cmdline[i].options) != 0)
1192 break;
1193 console->flags |= CON_ENABLED;
1194 console->index = console_cmdline[i].index;
1195 if (i == selected_console) {
1196 console->flags |= CON_CONSDEV;
1197 preferred_console = selected_console;
1199 break;
1202 if (!(console->flags & CON_ENABLED))
1203 return;
1205 if (bootconsole && (console->flags & CON_CONSDEV)) {
1206 printk(KERN_INFO "console handover: boot [%s%d] -> real [%s%d]\n",
1207 bootconsole->name, bootconsole->index,
1208 console->name, console->index);
1209 unregister_console(bootconsole);
1210 console->flags &= ~CON_PRINTBUFFER;
1211 } else {
1212 printk(KERN_INFO "console [%s%d] enabled\n",
1213 console->name, console->index);
1217 * Put this console in the list - keep the
1218 * preferred driver at the head of the list.
1220 acquire_console_sem();
1221 if ((console->flags & CON_CONSDEV) || console_drivers == NULL) {
1222 console->next = console_drivers;
1223 console_drivers = console;
1224 if (console->next)
1225 console->next->flags &= ~CON_CONSDEV;
1226 } else {
1227 console->next = console_drivers->next;
1228 console_drivers->next = console;
1230 if (console->flags & CON_PRINTBUFFER) {
1232 * release_console_sem() will print out the buffered messages
1233 * for us.
1235 spin_lock_irqsave(&logbuf_lock, flags);
1236 con_start = log_start;
1237 spin_unlock_irqrestore(&logbuf_lock, flags);
1239 release_console_sem();
1241 EXPORT_SYMBOL(register_console);
1243 int unregister_console(struct console *console)
1245 struct console *a, *b;
1246 int res = 1;
1248 #ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1249 if (console->flags & CON_BRL)
1250 return braille_unregister_console(console);
1251 #endif
1253 acquire_console_sem();
1254 if (console_drivers == console) {
1255 console_drivers=console->next;
1256 res = 0;
1257 } else if (console_drivers) {
1258 for (a=console_drivers->next, b=console_drivers ;
1259 a; b=a, a=b->next) {
1260 if (a == console) {
1261 b->next = a->next;
1262 res = 0;
1263 break;
1269 * If this isn't the last console and it has CON_CONSDEV set, we
1270 * need to set it on the next preferred console.
1272 if (console_drivers != NULL && console->flags & CON_CONSDEV)
1273 console_drivers->flags |= CON_CONSDEV;
1275 release_console_sem();
1276 return res;
1278 EXPORT_SYMBOL(unregister_console);
1280 static int __init disable_boot_consoles(void)
1282 if (console_drivers != NULL) {
1283 if (console_drivers->flags & CON_BOOT) {
1284 printk(KERN_INFO "turn off boot console %s%d\n",
1285 console_drivers->name, console_drivers->index);
1286 return unregister_console(console_drivers);
1289 return 0;
1291 late_initcall(disable_boot_consoles);
1293 #if defined CONFIG_PRINTK
1296 * printk rate limiting, lifted from the networking subsystem.
1298 * This enforces a rate limit: not more than 10 kernel messages
1299 * every 5s to make a denial-of-service attack impossible.
1301 DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10);
1303 int printk_ratelimit(void)
1305 return __ratelimit(&printk_ratelimit_state);
1307 EXPORT_SYMBOL(printk_ratelimit);
1309 static DEFINE_RAW_SPINLOCK(warn_lock);
1311 void __WARN_ON(const char *func, const char *file, const int line)
1313 unsigned long flags;
1315 spin_lock_irqsave(&warn_lock, flags);
1316 printk("%s/%d[CPU#%d]: BUG in %s at %s:%d\n",
1317 current->comm, current->pid, raw_smp_processor_id(),
1318 func, file, line);
1319 dump_stack();
1320 spin_unlock_irqrestore(&warn_lock, flags);
1323 EXPORT_SYMBOL(__WARN_ON);
1327 * printk_timed_ratelimit - caller-controlled printk ratelimiting
1328 * @caller_jiffies: pointer to caller's state
1329 * @interval_msecs: minimum interval between prints
1331 * printk_timed_ratelimit() returns true if more than @interval_msecs
1332 * milliseconds have elapsed since the last time printk_timed_ratelimit()
1333 * returned true.
1335 bool printk_timed_ratelimit(unsigned long *caller_jiffies,
1336 unsigned int interval_msecs)
1338 if (*caller_jiffies == 0
1339 || !time_in_range(jiffies, *caller_jiffies,
1340 *caller_jiffies
1341 + msecs_to_jiffies(interval_msecs))) {
1342 *caller_jiffies = jiffies;
1343 return true;
1345 return false;
1347 EXPORT_SYMBOL(printk_timed_ratelimit);
1348 #endif