Merge branch 'tracing/for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / kernel / printk.c
CommitLineData
1da177e4
LT
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.
40dc5651 13 * Fixed SMP synchronization, 08/08/99, Manfred Spraul
624dffcb 14 * manfred@colorfullife.com
1da177e4
LT
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>
1da177e4
LT
23#include <linux/console.h>
24#include <linux/init.h>
bfe8df3d
RD
25#include <linux/jiffies.h>
26#include <linux/nmi.h>
1da177e4 27#include <linux/module.h>
3b9c0410 28#include <linux/moduleparam.h>
1da177e4 29#include <linux/interrupt.h> /* For in_interrupt() */
1da177e4
LT
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>
35
36#include <asm/uaccess.h>
37
076f9776
IM
38/*
39 * Architectures can override it:
40 */
41void __attribute__((weak)) early_printk(const char *fmt, ...)
42{
43}
44
1da177e4
LT
45#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
46
47/* printk's without a loglevel use this.. */
48#define DEFAULT_MESSAGE_LOGLEVEL 4 /* KERN_WARNING */
49
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 */
53
54DECLARE_WAIT_QUEUE_HEAD(log_wait);
55
56int 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 */
61};
62
1da177e4 63/*
0bbfb7c2 64 * Low level drivers may need that to know if they can schedule in
1da177e4
LT
65 * their unblank() callback or not. So let's export it.
66 */
67int oops_in_progress;
68EXPORT_SYMBOL(oops_in_progress);
69
70/*
71 * console_sem protects the console_drivers list, and also
72 * provides serialisation for access to the entire console
73 * driver system.
74 */
75static DECLARE_MUTEX(console_sem);
557240b4 76static DECLARE_MUTEX(secondary_console_sem);
1da177e4 77struct console *console_drivers;
a29d1cfe
IM
78EXPORT_SYMBOL_GPL(console_drivers);
79
1da177e4
LT
80/*
81 * This is used for debugging the mess that is the VT code by
82 * keeping track if we have the console semaphore held. It's
83 * definitely not the perfect debug tool (we don't know if _WE_
84 * hold it are racing, but it helps tracking those weird code
85 * path in the console code where we end up in places I want
86 * locked without the console sempahore held
87 */
557240b4 88static int console_locked, console_suspended;
1da177e4
LT
89
90/*
91 * logbuf_lock protects log_buf, log_start, log_end, con_start and logged_chars
92 * It is also used in interesting ways to provide interlocking in
93 * release_console_sem().
94 */
95static DEFINE_SPINLOCK(logbuf_lock);
96
eed4a2ab 97#define LOG_BUF_MASK (log_buf_len-1)
1da177e4
LT
98#define LOG_BUF(idx) (log_buf[(idx) & LOG_BUF_MASK])
99
100/*
101 * The indices into log_buf are not constrained to log_buf_len - they
102 * must be masked before subscripting
103 */
eed4a2ab
DV
104static unsigned log_start; /* Index into log_buf: next char to be read by syslog() */
105static unsigned con_start; /* Index into log_buf: next char to be sent to consoles */
106static unsigned log_end; /* Index into log_buf: most-recently-written-char + 1 */
1da177e4
LT
107
108/*
109 * Array of consoles built from command line options (console=)
110 */
111struct console_cmdline
112{
113 char name[8]; /* Name of the driver */
114 int index; /* Minor dev. to use */
115 char *options; /* Options for the driver */
f7511d5f
ST
116#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
117 char *brl_options; /* Options for braille driver */
118#endif
1da177e4
LT
119};
120
121#define MAX_CMDLINECONSOLES 8
122
123static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
124static int selected_console = -1;
125static int preferred_console = -1;
9e124fe1
MA
126int console_set_on_cmdline;
127EXPORT_SYMBOL(console_set_on_cmdline);
1da177e4
LT
128
129/* Flag: console code may call schedule() */
130static int console_may_schedule;
131
d59745ce
MM
132#ifdef CONFIG_PRINTK
133
134static char __log_buf[__LOG_BUF_LEN];
135static char *log_buf = __log_buf;
136static int log_buf_len = __LOG_BUF_LEN;
eed4a2ab 137static unsigned logged_chars; /* Number of chars produced since last read+clear operation */
d59745ce 138
1da177e4
LT
139static int __init log_buf_len_setup(char *str)
140{
eed4a2ab 141 unsigned size = memparse(str, &str);
1da177e4
LT
142 unsigned long flags;
143
144 if (size)
145 size = roundup_pow_of_two(size);
146 if (size > log_buf_len) {
eed4a2ab 147 unsigned start, dest_idx, offset;
40dc5651 148 char *new_log_buf;
1da177e4
LT
149
150 new_log_buf = alloc_bootmem(size);
151 if (!new_log_buf) {
40dc5651 152 printk(KERN_WARNING "log_buf_len: allocation failed\n");
1da177e4
LT
153 goto out;
154 }
155
156 spin_lock_irqsave(&logbuf_lock, flags);
157 log_buf_len = size;
158 log_buf = new_log_buf;
159
160 offset = start = min(con_start, log_start);
161 dest_idx = 0;
162 while (start != log_end) {
163 log_buf[dest_idx] = __log_buf[start & (__LOG_BUF_LEN - 1)];
164 start++;
165 dest_idx++;
166 }
167 log_start -= offset;
168 con_start -= offset;
169 log_end -= offset;
170 spin_unlock_irqrestore(&logbuf_lock, flags);
171
40dc5651 172 printk(KERN_NOTICE "log_buf_len: %d\n", log_buf_len);
1da177e4
LT
173 }
174out:
1da177e4
LT
175 return 1;
176}
177
178__setup("log_buf_len=", log_buf_len_setup);
179
bfe8df3d
RD
180#ifdef CONFIG_BOOT_PRINTK_DELAY
181
182static unsigned int boot_delay; /* msecs delay after each printk during bootup */
183static unsigned long long printk_delay_msec; /* per msec, based on boot_delay */
184
185static int __init boot_delay_setup(char *str)
186{
187 unsigned long lpj;
188 unsigned long long loops_per_msec;
189
190 lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */
191 loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
192
193 get_option(&str, &boot_delay);
194 if (boot_delay > 10 * 1000)
195 boot_delay = 0;
196
197 printk_delay_msec = loops_per_msec;
198 printk(KERN_DEBUG "boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
199 "HZ: %d, printk_delay_msec: %llu\n",
200 boot_delay, preset_lpj, lpj, HZ, printk_delay_msec);
201 return 1;
202}
203__setup("boot_delay=", boot_delay_setup);
204
205static void boot_delay_msec(void)
206{
207 unsigned long long k;
208 unsigned long timeout;
209
210 if (boot_delay == 0 || system_state != SYSTEM_BOOTING)
211 return;
212
213 k = (unsigned long long)printk_delay_msec * boot_delay;
214
215 timeout = jiffies + msecs_to_jiffies(boot_delay);
216 while (k) {
217 k--;
218 cpu_relax();
219 /*
220 * use (volatile) jiffies to prevent
221 * compiler reduction; loop termination via jiffies
222 * is secondary and may or may not happen.
223 */
224 if (time_after(jiffies, timeout))
225 break;
226 touch_nmi_watchdog();
227 }
228}
229#else
230static inline void boot_delay_msec(void)
231{
232}
233#endif
234
0b15d04a
MF
235/*
236 * Return the number of unread characters in the log buffer.
237 */
238int log_buf_get_len(void)
239{
240 return logged_chars;
241}
242
243/*
244 * Copy a range of characters from the log buffer.
245 */
246int log_buf_copy(char *dest, int idx, int len)
247{
248 int ret, max;
249 bool took_lock = false;
250
251 if (!oops_in_progress) {
252 spin_lock_irq(&logbuf_lock);
253 took_lock = true;
254 }
255
256 max = log_buf_get_len();
257 if (idx < 0 || idx >= max) {
258 ret = -1;
259 } else {
260 if (len > max)
261 len = max;
262 ret = len;
263 idx += (log_end - max);
264 while (len-- > 0)
265 dest[len] = LOG_BUF(idx + len);
266 }
267
268 if (took_lock)
269 spin_unlock_irq(&logbuf_lock);
270
271 return ret;
272}
273
274/*
275 * Extract a single character from the log buffer.
276 */
277int log_buf_read(int idx)
278{
279 char ret;
280
281 if (log_buf_copy(&ret, idx, 1) == 1)
282 return ret;
283 else
284 return -1;
285}
286
1da177e4
LT
287/*
288 * Commands to do_syslog:
289 *
290 * 0 -- Close the log. Currently a NOP.
291 * 1 -- Open the log. Currently a NOP.
292 * 2 -- Read from the log.
293 * 3 -- Read all messages remaining in the ring buffer.
294 * 4 -- Read and clear all messages remaining in the ring buffer
295 * 5 -- Clear ring buffer.
296 * 6 -- Disable printk's to console
297 * 7 -- Enable printk's to console
298 * 8 -- Set level of messages printed to console
299 * 9 -- Return number of unread characters in the log buffer
300 * 10 -- Return size of the log buffer
301 */
40dc5651 302int do_syslog(int type, char __user *buf, int len)
1da177e4 303{
eed4a2ab 304 unsigned i, j, limit, count;
1da177e4
LT
305 int do_clear = 0;
306 char c;
307 int error = 0;
308
309 error = security_syslog(type);
310 if (error)
311 return error;
312
313 switch (type) {
314 case 0: /* Close log */
315 break;
316 case 1: /* Open log */
317 break;
318 case 2: /* Read from log */
319 error = -EINVAL;
320 if (!buf || len < 0)
321 goto out;
322 error = 0;
323 if (!len)
324 goto out;
325 if (!access_ok(VERIFY_WRITE, buf, len)) {
326 error = -EFAULT;
327 goto out;
328 }
40dc5651
JJ
329 error = wait_event_interruptible(log_wait,
330 (log_start - log_end));
1da177e4
LT
331 if (error)
332 goto out;
333 i = 0;
334 spin_lock_irq(&logbuf_lock);
335 while (!error && (log_start != log_end) && i < len) {
336 c = LOG_BUF(log_start);
337 log_start++;
338 spin_unlock_irq(&logbuf_lock);
339 error = __put_user(c,buf);
340 buf++;
341 i++;
342 cond_resched();
343 spin_lock_irq(&logbuf_lock);
344 }
345 spin_unlock_irq(&logbuf_lock);
346 if (!error)
347 error = i;
348 break;
349 case 4: /* Read/clear last kernel messages */
40dc5651 350 do_clear = 1;
1da177e4
LT
351 /* FALL THRU */
352 case 3: /* Read last kernel messages */
353 error = -EINVAL;
354 if (!buf || len < 0)
355 goto out;
356 error = 0;
357 if (!len)
358 goto out;
359 if (!access_ok(VERIFY_WRITE, buf, len)) {
360 error = -EFAULT;
361 goto out;
362 }
363 count = len;
364 if (count > log_buf_len)
365 count = log_buf_len;
366 spin_lock_irq(&logbuf_lock);
367 if (count > logged_chars)
368 count = logged_chars;
369 if (do_clear)
370 logged_chars = 0;
371 limit = log_end;
372 /*
373 * __put_user() could sleep, and while we sleep
40dc5651 374 * printk() could overwrite the messages
1da177e4
LT
375 * we try to copy to user space. Therefore
376 * the messages are copied in reverse. <manfreds>
377 */
40dc5651 378 for (i = 0; i < count && !error; i++) {
1da177e4
LT
379 j = limit-1-i;
380 if (j + log_buf_len < log_end)
381 break;
382 c = LOG_BUF(j);
383 spin_unlock_irq(&logbuf_lock);
384 error = __put_user(c,&buf[count-1-i]);
385 cond_resched();
386 spin_lock_irq(&logbuf_lock);
387 }
388 spin_unlock_irq(&logbuf_lock);
389 if (error)
390 break;
391 error = i;
40dc5651 392 if (i != count) {
1da177e4
LT
393 int offset = count-error;
394 /* buffer overflow during copy, correct user buffer. */
40dc5651 395 for (i = 0; i < error; i++) {
1da177e4
LT
396 if (__get_user(c,&buf[i+offset]) ||
397 __put_user(c,&buf[i])) {
398 error = -EFAULT;
399 break;
400 }
401 cond_resched();
402 }
403 }
404 break;
405 case 5: /* Clear ring buffer */
406 logged_chars = 0;
407 break;
408 case 6: /* Disable logging to console */
409 console_loglevel = minimum_console_loglevel;
410 break;
411 case 7: /* Enable logging to console */
412 console_loglevel = default_console_loglevel;
413 break;
414 case 8: /* Set level of messages printed to console */
415 error = -EINVAL;
416 if (len < 1 || len > 8)
417 goto out;
418 if (len < minimum_console_loglevel)
419 len = minimum_console_loglevel;
420 console_loglevel = len;
421 error = 0;
422 break;
423 case 9: /* Number of chars in the log buffer */
424 error = log_end - log_start;
425 break;
426 case 10: /* Size of the log buffer */
427 error = log_buf_len;
428 break;
429 default:
430 error = -EINVAL;
431 break;
432 }
433out:
434 return error;
435}
436
40dc5651 437asmlinkage long sys_syslog(int type, char __user *buf, int len)
1da177e4
LT
438{
439 return do_syslog(type, buf, len);
440}
441
442/*
443 * Call the console drivers on a range of log_buf
444 */
eed4a2ab 445static void __call_console_drivers(unsigned start, unsigned end)
1da177e4
LT
446{
447 struct console *con;
448
449 for (con = console_drivers; con; con = con->next) {
76a8ad29
ME
450 if ((con->flags & CON_ENABLED) && con->write &&
451 (cpu_online(smp_processor_id()) ||
452 (con->flags & CON_ANYTIME)))
1da177e4
LT
453 con->write(con, &LOG_BUF(start), end - start);
454 }
455}
456
79290822
IM
457static int __read_mostly ignore_loglevel;
458
99eea6a1 459static int __init ignore_loglevel_setup(char *str)
79290822
IM
460{
461 ignore_loglevel = 1;
462 printk(KERN_INFO "debug: ignoring loglevel setting.\n");
463
c4772d99 464 return 0;
79290822
IM
465}
466
c4772d99 467early_param("ignore_loglevel", ignore_loglevel_setup);
79290822 468
1da177e4
LT
469/*
470 * Write out chars from start to end - 1 inclusive
471 */
eed4a2ab
DV
472static void _call_console_drivers(unsigned start,
473 unsigned end, int msg_log_level)
1da177e4 474{
79290822 475 if ((msg_log_level < console_loglevel || ignore_loglevel) &&
1da177e4
LT
476 console_drivers && start != end) {
477 if ((start & LOG_BUF_MASK) > (end & LOG_BUF_MASK)) {
478 /* wrapped write */
479 __call_console_drivers(start & LOG_BUF_MASK,
480 log_buf_len);
481 __call_console_drivers(0, end & LOG_BUF_MASK);
482 } else {
483 __call_console_drivers(start, end);
484 }
485 }
486}
487
488/*
489 * Call the console drivers, asking them to write out
490 * log_buf[start] to log_buf[end - 1].
491 * The console_sem must be held.
492 */
eed4a2ab 493static void call_console_drivers(unsigned start, unsigned end)
1da177e4 494{
eed4a2ab 495 unsigned cur_index, start_print;
1da177e4
LT
496 static int msg_level = -1;
497
eed4a2ab 498 BUG_ON(((int)(start - end)) > 0);
1da177e4
LT
499
500 cur_index = start;
501 start_print = start;
502 while (cur_index != end) {
40dc5651
JJ
503 if (msg_level < 0 && ((end - cur_index) > 2) &&
504 LOG_BUF(cur_index + 0) == '<' &&
505 LOG_BUF(cur_index + 1) >= '0' &&
506 LOG_BUF(cur_index + 1) <= '7' &&
507 LOG_BUF(cur_index + 2) == '>') {
1da177e4
LT
508 msg_level = LOG_BUF(cur_index + 1) - '0';
509 cur_index += 3;
510 start_print = cur_index;
511 }
512 while (cur_index != end) {
513 char c = LOG_BUF(cur_index);
1da177e4 514
40dc5651 515 cur_index++;
1da177e4
LT
516 if (c == '\n') {
517 if (msg_level < 0) {
518 /*
519 * printk() has already given us loglevel tags in
520 * the buffer. This code is here in case the
521 * log buffer has wrapped right round and scribbled
522 * on those tags
523 */
524 msg_level = default_message_loglevel;
525 }
526 _call_console_drivers(start_print, cur_index, msg_level);
527 msg_level = -1;
528 start_print = cur_index;
529 break;
530 }
531 }
532 }
533 _call_console_drivers(start_print, end, msg_level);
534}
535
536static void emit_log_char(char c)
537{
538 LOG_BUF(log_end) = c;
539 log_end++;
540 if (log_end - log_start > log_buf_len)
541 log_start = log_end - log_buf_len;
542 if (log_end - con_start > log_buf_len)
543 con_start = log_end - log_buf_len;
544 if (logged_chars < log_buf_len)
545 logged_chars++;
546}
547
548/*
549 * Zap console related locks when oopsing. Only zap at most once
550 * every 10 seconds, to leave time for slow consoles to print a
551 * full oops.
552 */
553static void zap_locks(void)
554{
555 static unsigned long oops_timestamp;
556
557 if (time_after_eq(jiffies, oops_timestamp) &&
40dc5651 558 !time_after(jiffies, oops_timestamp + 30 * HZ))
1da177e4
LT
559 return;
560
561 oops_timestamp = jiffies;
562
563 /* If a crash is occurring, make sure we can't deadlock */
564 spin_lock_init(&logbuf_lock);
565 /* And make sure that we print immediately */
566 init_MUTEX(&console_sem);
567}
568
569#if defined(CONFIG_PRINTK_TIME)
570static int printk_time = 1;
571#else
572static int printk_time = 0;
573#endif
e84845c4 574module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
1da177e4 575
76a8ad29
ME
576/* Check if we have any console registered that can be called early in boot. */
577static int have_callable_console(void)
578{
579 struct console *con;
580
581 for (con = console_drivers; con; con = con->next)
582 if (con->flags & CON_ANYTIME)
583 return 1;
584
585 return 0;
586}
587
ddad86c2
MW
588/**
589 * printk - print a kernel message
590 * @fmt: format string
591 *
72fd4a35 592 * This is printk(). It can be called from any context. We want it to work.
1492192b
JK
593 * Be aware of the fact that if oops_in_progress is not set, we might try to
594 * wake klogd up which could deadlock on runqueue lock if printk() is called
595 * from scheduler code.
40dc5651 596 *
1da177e4
LT
597 * We try to grab the console_sem. If we succeed, it's easy - we log the output and
598 * call the console drivers. If we fail to get the semaphore we place the output
599 * into the log buffer and return. The current holder of the console_sem will
600 * notice the new output in release_console_sem() and will send it to the
601 * consoles before releasing the semaphore.
602 *
603 * One effect of this deferred printing is that code which calls printk() and
604 * then changes console_loglevel may break. This is because console_loglevel
605 * is inspected when the actual printing occurs.
ddad86c2
MW
606 *
607 * See also:
608 * printf(3)
1da177e4 609 */
d59745ce 610
1da177e4
LT
611asmlinkage int printk(const char *fmt, ...)
612{
613 va_list args;
614 int r;
615
616 va_start(args, fmt);
617 r = vprintk(fmt, args);
618 va_end(args);
619
620 return r;
621}
622
fe21773d
DH
623/* cpu currently holding logbuf_lock */
624static volatile unsigned int printk_cpu = UINT_MAX;
625
266c2e0a
LT
626/*
627 * Can we actually use the console at this time on this cpu?
628 *
629 * Console drivers may assume that per-cpu resources have
630 * been allocated. So unless they're explicitly marked as
631 * being able to cope (CON_ANYTIME) don't call them until
632 * this CPU is officially up.
633 */
634static inline int can_use_console(unsigned int cpu)
635{
636 return cpu_online(cpu) || have_callable_console();
637}
638
639/*
640 * Try to get console ownership to actually show the kernel
641 * messages from a 'printk'. Return true (and with the
642 * console_semaphore held, and 'console_locked' set) if it
643 * is successful, false otherwise.
644 *
645 * This gets called with the 'logbuf_lock' spinlock held and
646 * interrupts disabled. It should return with 'lockbuf_lock'
647 * released but interrupts still disabled.
648 */
649static int acquire_console_semaphore_for_printk(unsigned int cpu)
650{
651 int retval = 0;
652
093a07e2
LT
653 if (!try_acquire_console_sem()) {
654 retval = 1;
655
656 /*
657 * If we can't use the console, we need to release
658 * the console semaphore by hand to avoid flushing
659 * the buffer. We need to hold the console semaphore
660 * in order to do this test safely.
661 */
662 if (!can_use_console(cpu)) {
663 console_locked = 0;
664 up(&console_sem);
665 retval = 0;
666 }
667 }
266c2e0a
LT
668 printk_cpu = UINT_MAX;
669 spin_unlock(&logbuf_lock);
670 return retval;
671}
672
7683c57c 673static const char printk_recursion_bug_msg [] =
32a76006
IM
674 KERN_CRIT "BUG: recent printk recursion!\n";
675static int printk_recursion_bug;
676
1da177e4
LT
677asmlinkage int vprintk(const char *fmt, va_list args)
678{
32a76006
IM
679 static int log_level_unknown = 1;
680 static char printk_buf[1024];
681
1da177e4 682 unsigned long flags;
32a76006
IM
683 int printed_len = 0;
684 int this_cpu;
1da177e4 685 char *p;
1da177e4 686
bfe8df3d
RD
687 boot_delay_msec();
688
fe21773d 689 preempt_disable();
1da177e4 690 /* This stops the holder of console_sem just where we want him */
1efc5da3 691 raw_local_irq_save(flags);
32a76006
IM
692 this_cpu = smp_processor_id();
693
694 /*
695 * Ouch, printk recursed into itself!
696 */
697 if (unlikely(printk_cpu == this_cpu)) {
698 /*
699 * If a crash is occurring during printk() on this CPU,
700 * then try to get the crash message out but make sure
701 * we can't deadlock. Otherwise just return to avoid the
702 * recursion and return - but flag the recursion so that
703 * it can be printed at the next appropriate moment:
704 */
705 if (!oops_in_progress) {
706 printk_recursion_bug = 1;
707 goto out_restore_irqs;
708 }
709 zap_locks();
710 }
711
a0f1ccfd
IM
712 lockdep_off();
713 spin_lock(&logbuf_lock);
32a76006 714 printk_cpu = this_cpu;
1da177e4 715
32a76006
IM
716 if (printk_recursion_bug) {
717 printk_recursion_bug = 0;
718 strcpy(printk_buf, printk_recursion_bug_msg);
719 printed_len = sizeof(printk_recursion_bug_msg);
720 }
1da177e4 721 /* Emit the output into the temporary buffer */
32a76006 722 printed_len += vscnprintf(printk_buf + printed_len,
cf3680b9 723 sizeof(printk_buf) - printed_len, fmt, args);
1da177e4
LT
724
725 /*
726 * Copy the output into log_buf. If the caller didn't provide
727 * appropriate log level tags, we insert them here
728 */
729 for (p = printk_buf; *p; p++) {
730 if (log_level_unknown) {
731 /* log_level_unknown signals the start of a new line */
732 if (printk_time) {
733 int loglev_char;
734 char tbuf[50], *tp;
735 unsigned tlen;
736 unsigned long long t;
737 unsigned long nanosec_rem;
738
739 /*
740 * force the log level token to be
741 * before the time output.
742 */
743 if (p[0] == '<' && p[1] >='0' &&
744 p[1] <= '7' && p[2] == '>') {
745 loglev_char = p[1];
746 p += 3;
025510cd 747 printed_len -= 3;
1da177e4
LT
748 } else {
749 loglev_char = default_message_loglevel
750 + '0';
751 }
326e96b9 752 t = cpu_clock(printk_cpu);
1da177e4
LT
753 nanosec_rem = do_div(t, 1000000000);
754 tlen = sprintf(tbuf,
755 "<%c>[%5lu.%06lu] ",
756 loglev_char,
757 (unsigned long)t,
758 nanosec_rem/1000);
759
760 for (tp = tbuf; tp < tbuf + tlen; tp++)
761 emit_log_char(*tp);
025510cd 762 printed_len += tlen;
1da177e4
LT
763 } else {
764 if (p[0] != '<' || p[1] < '0' ||
765 p[1] > '7' || p[2] != '>') {
766 emit_log_char('<');
767 emit_log_char(default_message_loglevel
768 + '0');
769 emit_log_char('>');
025510cd 770 printed_len += 3;
1da177e4 771 }
1da177e4
LT
772 }
773 log_level_unknown = 0;
774 if (!*p)
775 break;
776 }
777 emit_log_char(*p);
778 if (*p == '\n')
779 log_level_unknown = 1;
780 }
781
266c2e0a
LT
782 /*
783 * Try to acquire and then immediately release the
784 * console semaphore. The release will do all the
785 * actual magic (print out buffers, wake up klogd,
786 * etc).
787 *
788 * The acquire_console_semaphore_for_printk() function
789 * will release 'logbuf_lock' regardless of whether it
790 * actually gets the semaphore or not.
791 */
792 if (acquire_console_semaphore_for_printk(this_cpu))
793 release_console_sem();
76a8ad29 794
266c2e0a 795 lockdep_on();
32a76006 796out_restore_irqs:
266c2e0a 797 raw_local_irq_restore(flags);
76a8ad29 798
fe21773d 799 preempt_enable();
1da177e4
LT
800 return printed_len;
801}
802EXPORT_SYMBOL(printk);
803EXPORT_SYMBOL(vprintk);
804
d59745ce
MM
805#else
806
40dc5651 807asmlinkage long sys_syslog(int type, char __user *buf, int len)
d59745ce 808{
c36264df 809 return -ENOSYS;
40dc5651
JJ
810}
811
eed4a2ab 812static void call_console_drivers(unsigned start, unsigned end)
40dc5651
JJ
813{
814}
d59745ce
MM
815
816#endif
817
f7511d5f
ST
818static int __add_preferred_console(char *name, int idx, char *options,
819 char *brl_options)
820{
821 struct console_cmdline *c;
822 int i;
823
824 /*
825 * See if this tty is not yet registered, and
826 * if we have a slot free.
827 */
828 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
829 if (strcmp(console_cmdline[i].name, name) == 0 &&
830 console_cmdline[i].index == idx) {
831 if (!brl_options)
832 selected_console = i;
833 return 0;
834 }
835 if (i == MAX_CMDLINECONSOLES)
836 return -E2BIG;
837 if (!brl_options)
838 selected_console = i;
839 c = &console_cmdline[i];
840 strlcpy(c->name, name, sizeof(c->name));
841 c->options = options;
842#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
843 c->brl_options = brl_options;
844#endif
845 c->index = idx;
846 return 0;
847}
2ea1c539
JB
848/*
849 * Set up a list of consoles. Called from init/main.c
850 */
851static int __init console_setup(char *str)
852{
eaa944af 853 char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for index */
f7511d5f 854 char *s, *options, *brl_options = NULL;
2ea1c539
JB
855 int idx;
856
f7511d5f
ST
857#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
858 if (!memcmp(str, "brl,", 4)) {
859 brl_options = "";
860 str += 4;
861 } else if (!memcmp(str, "brl=", 4)) {
862 brl_options = str + 4;
863 str = strchr(brl_options, ',');
864 if (!str) {
865 printk(KERN_ERR "need port name after brl=\n");
866 return 1;
867 }
868 *(str++) = 0;
869 }
870#endif
871
2ea1c539
JB
872 /*
873 * Decode str into name, index, options.
874 */
875 if (str[0] >= '0' && str[0] <= '9') {
eaa944af
YL
876 strcpy(buf, "ttyS");
877 strncpy(buf + 4, str, sizeof(buf) - 5);
2ea1c539 878 } else {
eaa944af 879 strncpy(buf, str, sizeof(buf) - 1);
2ea1c539 880 }
eaa944af 881 buf[sizeof(buf) - 1] = 0;
2ea1c539
JB
882 if ((options = strchr(str, ',')) != NULL)
883 *(options++) = 0;
884#ifdef __sparc__
885 if (!strcmp(str, "ttya"))
eaa944af 886 strcpy(buf, "ttyS0");
2ea1c539 887 if (!strcmp(str, "ttyb"))
eaa944af 888 strcpy(buf, "ttyS1");
2ea1c539 889#endif
eaa944af 890 for (s = buf; *s; s++)
2ea1c539
JB
891 if ((*s >= '0' && *s <= '9') || *s == ',')
892 break;
893 idx = simple_strtoul(s, NULL, 10);
894 *s = 0;
895
f7511d5f 896 __add_preferred_console(buf, idx, options, brl_options);
9e124fe1 897 console_set_on_cmdline = 1;
2ea1c539
JB
898 return 1;
899}
900__setup("console=", console_setup);
901
3c0547ba
MM
902/**
903 * add_preferred_console - add a device to the list of preferred consoles.
ddad86c2
MW
904 * @name: device name
905 * @idx: device index
906 * @options: options for this console
3c0547ba
MM
907 *
908 * The last preferred console added will be used for kernel messages
909 * and stdin/out/err for init. Normally this is used by console_setup
910 * above to handle user-supplied console arguments; however it can also
911 * be used by arch-specific code either to override the user or more
912 * commonly to provide a default console (ie from PROM variables) when
913 * the user has not supplied one.
914 */
fb445ee5 915int add_preferred_console(char *name, int idx, char *options)
3c0547ba 916{
f7511d5f 917 return __add_preferred_console(name, idx, options, NULL);
3c0547ba
MM
918}
919
b6b1d877 920int update_console_cmdline(char *name, int idx, char *name_new, int idx_new, char *options)
18a8bd94
YL
921{
922 struct console_cmdline *c;
923 int i;
924
925 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
926 if (strcmp(console_cmdline[i].name, name) == 0 &&
927 console_cmdline[i].index == idx) {
928 c = &console_cmdline[i];
f735295b 929 strlcpy(c->name, name_new, sizeof(c->name));
18a8bd94
YL
930 c->name[sizeof(c->name) - 1] = 0;
931 c->options = options;
932 c->index = idx_new;
933 return i;
934 }
935 /* not found */
936 return -1;
937}
938
8f4ce8c3
AS
939int console_suspend_enabled = 1;
940EXPORT_SYMBOL(console_suspend_enabled);
941
942static int __init console_suspend_disable(char *str)
943{
944 console_suspend_enabled = 0;
945 return 1;
946}
947__setup("no_console_suspend", console_suspend_disable);
948
557240b4
LT
949/**
950 * suspend_console - suspend the console subsystem
951 *
952 * This disables printk() while we go into suspend states
953 */
954void suspend_console(void)
955{
8f4ce8c3
AS
956 if (!console_suspend_enabled)
957 return;
c8eb8b40 958 printk("Suspending console(s)\n");
557240b4
LT
959 acquire_console_sem();
960 console_suspended = 1;
961}
962
963void resume_console(void)
964{
8f4ce8c3
AS
965 if (!console_suspend_enabled)
966 return;
557240b4
LT
967 console_suspended = 0;
968 release_console_sem();
969}
970
1da177e4
LT
971/**
972 * acquire_console_sem - lock the console system for exclusive use.
973 *
974 * Acquires a semaphore which guarantees that the caller has
975 * exclusive access to the console system and the console_drivers list.
976 *
977 * Can sleep, returns nothing.
978 */
979void acquire_console_sem(void)
980{
8abd8e29 981 BUG_ON(in_interrupt());
557240b4
LT
982 if (console_suspended) {
983 down(&secondary_console_sem);
984 return;
985 }
1da177e4
LT
986 down(&console_sem);
987 console_locked = 1;
988 console_may_schedule = 1;
989}
990EXPORT_SYMBOL(acquire_console_sem);
991
992int try_acquire_console_sem(void)
993{
994 if (down_trylock(&console_sem))
995 return -1;
996 console_locked = 1;
997 console_may_schedule = 0;
998 return 0;
999}
1000EXPORT_SYMBOL(try_acquire_console_sem);
1001
1002int is_console_locked(void)
1003{
1004 return console_locked;
1005}
1da177e4 1006
e3e8a75d
KK
1007void wake_up_klogd(void)
1008{
1009 if (!oops_in_progress && waitqueue_active(&log_wait))
1010 wake_up_interruptible(&log_wait);
1011}
1012
1da177e4
LT
1013/**
1014 * release_console_sem - unlock the console system
1015 *
1016 * Releases the semaphore which the caller holds on the console system
1017 * and the console driver list.
1018 *
1019 * While the semaphore was held, console output may have been buffered
1020 * by printk(). If this is the case, release_console_sem() emits
1021 * the output prior to releasing the semaphore.
1022 *
1023 * If there is output waiting for klogd, we wake it up.
1024 *
1025 * release_console_sem() may be called from any context.
1026 */
1027void release_console_sem(void)
1028{
1029 unsigned long flags;
eed4a2ab
DV
1030 unsigned _con_start, _log_end;
1031 unsigned wake_klogd = 0;
1da177e4 1032
557240b4
LT
1033 if (console_suspended) {
1034 up(&secondary_console_sem);
1035 return;
1036 }
78944e54
AD
1037
1038 console_may_schedule = 0;
1039
1da177e4
LT
1040 for ( ; ; ) {
1041 spin_lock_irqsave(&logbuf_lock, flags);
1042 wake_klogd |= log_start - log_end;
1043 if (con_start == log_end)
1044 break; /* Nothing to print */
1045 _con_start = con_start;
1046 _log_end = log_end;
1047 con_start = log_end; /* Flush */
1048 spin_unlock(&logbuf_lock);
81d68a96 1049 stop_critical_timings(); /* don't trace print latency */
1da177e4 1050 call_console_drivers(_con_start, _log_end);
81d68a96 1051 start_critical_timings();
1da177e4
LT
1052 local_irq_restore(flags);
1053 }
1054 console_locked = 0;
1da177e4
LT
1055 up(&console_sem);
1056 spin_unlock_irqrestore(&logbuf_lock, flags);
e3e8a75d
KK
1057 if (wake_klogd)
1058 wake_up_klogd();
1da177e4
LT
1059}
1060EXPORT_SYMBOL(release_console_sem);
1061
ddad86c2
MW
1062/**
1063 * console_conditional_schedule - yield the CPU if required
1da177e4
LT
1064 *
1065 * If the console code is currently allowed to sleep, and
1066 * if this CPU should yield the CPU to another task, do
1067 * so here.
1068 *
1069 * Must be called within acquire_console_sem().
1070 */
1071void __sched console_conditional_schedule(void)
1072{
1073 if (console_may_schedule)
1074 cond_resched();
1075}
1076EXPORT_SYMBOL(console_conditional_schedule);
1077
1078void console_print(const char *s)
1079{
1080 printk(KERN_EMERG "%s", s);
1081}
1082EXPORT_SYMBOL(console_print);
1083
1084void console_unblank(void)
1085{
1086 struct console *c;
1087
1088 /*
1089 * console_unblank can no longer be called in interrupt context unless
1090 * oops_in_progress is set to 1..
1091 */
1092 if (oops_in_progress) {
1093 if (down_trylock(&console_sem) != 0)
1094 return;
1095 } else
1096 acquire_console_sem();
1097
1098 console_locked = 1;
1099 console_may_schedule = 0;
1100 for (c = console_drivers; c != NULL; c = c->next)
1101 if ((c->flags & CON_ENABLED) && c->unblank)
1102 c->unblank();
1103 release_console_sem();
1104}
1da177e4
LT
1105
1106/*
1107 * Return the console tty driver structure and its associated index
1108 */
1109struct tty_driver *console_device(int *index)
1110{
1111 struct console *c;
1112 struct tty_driver *driver = NULL;
1113
1114 acquire_console_sem();
1115 for (c = console_drivers; c != NULL; c = c->next) {
1116 if (!c->device)
1117 continue;
1118 driver = c->device(c, index);
1119 if (driver)
1120 break;
1121 }
1122 release_console_sem();
1123 return driver;
1124}
1125
1126/*
1127 * Prevent further output on the passed console device so that (for example)
1128 * serial drivers can disable console output before suspending a port, and can
1129 * re-enable output afterwards.
1130 */
1131void console_stop(struct console *console)
1132{
1133 acquire_console_sem();
1134 console->flags &= ~CON_ENABLED;
1135 release_console_sem();
1136}
1137EXPORT_SYMBOL(console_stop);
1138
1139void console_start(struct console *console)
1140{
1141 acquire_console_sem();
1142 console->flags |= CON_ENABLED;
1143 release_console_sem();
1144}
1145EXPORT_SYMBOL(console_start);
1146
1147/*
1148 * The console driver calls this routine during kernel initialization
1149 * to register the console printing procedure with printk() and to
1150 * print any messages that were printed by the kernel before the
1151 * console driver was initialized.
1152 */
40dc5651 1153void register_console(struct console *console)
1da177e4 1154{
40dc5651 1155 int i;
1da177e4 1156 unsigned long flags;
69331af7 1157 struct console *bootconsole = NULL;
1da177e4 1158
69331af7
GH
1159 if (console_drivers) {
1160 if (console->flags & CON_BOOT)
1161 return;
1162 if (console_drivers->flags & CON_BOOT)
1163 bootconsole = console_drivers;
1164 }
1165
1166 if (preferred_console < 0 || bootconsole || !console_drivers)
1da177e4
LT
1167 preferred_console = selected_console;
1168
18a8bd94
YL
1169 if (console->early_setup)
1170 console->early_setup();
1171
1da177e4
LT
1172 /*
1173 * See if we want to use this console driver. If we
1174 * didn't select a console we take the first one
1175 * that registers here.
1176 */
1177 if (preferred_console < 0) {
1178 if (console->index < 0)
1179 console->index = 0;
1180 if (console->setup == NULL ||
1181 console->setup(console, NULL) == 0) {
1182 console->flags |= CON_ENABLED | CON_CONSDEV;
1183 preferred_console = 0;
1184 }
1185 }
1186
1187 /*
1188 * See if this console matches one we selected on
1189 * the command line.
1190 */
40dc5651
JJ
1191 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0];
1192 i++) {
1da177e4
LT
1193 if (strcmp(console_cmdline[i].name, console->name) != 0)
1194 continue;
1195 if (console->index >= 0 &&
1196 console->index != console_cmdline[i].index)
1197 continue;
1198 if (console->index < 0)
1199 console->index = console_cmdline[i].index;
f7511d5f
ST
1200#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1201 if (console_cmdline[i].brl_options) {
1202 console->flags |= CON_BRL;
1203 braille_register_console(console,
1204 console_cmdline[i].index,
1205 console_cmdline[i].options,
1206 console_cmdline[i].brl_options);
1207 return;
1208 }
1209#endif
1da177e4
LT
1210 if (console->setup &&
1211 console->setup(console, console_cmdline[i].options) != 0)
1212 break;
1213 console->flags |= CON_ENABLED;
1214 console->index = console_cmdline[i].index;
ab4af03a 1215 if (i == selected_console) {
1da177e4 1216 console->flags |= CON_CONSDEV;
ab4af03a
GE
1217 preferred_console = selected_console;
1218 }
1da177e4
LT
1219 break;
1220 }
1221
1222 if (!(console->flags & CON_ENABLED))
1223 return;
1224
d37bf60d 1225 if (bootconsole && (console->flags & CON_CONSDEV)) {
69331af7
GH
1226 printk(KERN_INFO "console handover: boot [%s%d] -> real [%s%d]\n",
1227 bootconsole->name, bootconsole->index,
1228 console->name, console->index);
1229 unregister_console(bootconsole);
1da177e4 1230 console->flags &= ~CON_PRINTBUFFER;
d37bf60d
YL
1231 } else {
1232 printk(KERN_INFO "console [%s%d] enabled\n",
1233 console->name, console->index);
1da177e4
LT
1234 }
1235
1236 /*
1237 * Put this console in the list - keep the
1238 * preferred driver at the head of the list.
1239 */
1240 acquire_console_sem();
1241 if ((console->flags & CON_CONSDEV) || console_drivers == NULL) {
1242 console->next = console_drivers;
1243 console_drivers = console;
ab4af03a
GE
1244 if (console->next)
1245 console->next->flags &= ~CON_CONSDEV;
1da177e4
LT
1246 } else {
1247 console->next = console_drivers->next;
1248 console_drivers->next = console;
1249 }
1250 if (console->flags & CON_PRINTBUFFER) {
1251 /*
1252 * release_console_sem() will print out the buffered messages
1253 * for us.
1254 */
1255 spin_lock_irqsave(&logbuf_lock, flags);
1256 con_start = log_start;
1257 spin_unlock_irqrestore(&logbuf_lock, flags);
1258 }
1259 release_console_sem();
1260}
1261EXPORT_SYMBOL(register_console);
1262
40dc5651 1263int unregister_console(struct console *console)
1da177e4 1264{
40dc5651 1265 struct console *a, *b;
1da177e4
LT
1266 int res = 1;
1267
f7511d5f
ST
1268#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1269 if (console->flags & CON_BRL)
1270 return braille_unregister_console(console);
1271#endif
1272
1da177e4
LT
1273 acquire_console_sem();
1274 if (console_drivers == console) {
1275 console_drivers=console->next;
1276 res = 0;
e9b15b54 1277 } else if (console_drivers) {
1da177e4
LT
1278 for (a=console_drivers->next, b=console_drivers ;
1279 a; b=a, a=b->next) {
1280 if (a == console) {
1281 b->next = a->next;
1282 res = 0;
1283 break;
40dc5651 1284 }
1da177e4
LT
1285 }
1286 }
40dc5651 1287
69331af7 1288 /*
ab4af03a
GE
1289 * If this isn't the last console and it has CON_CONSDEV set, we
1290 * need to set it on the next preferred console.
1da177e4 1291 */
69331af7 1292 if (console_drivers != NULL && console->flags & CON_CONSDEV)
ab4af03a 1293 console_drivers->flags |= CON_CONSDEV;
1da177e4
LT
1294
1295 release_console_sem();
1296 return res;
1297}
1298EXPORT_SYMBOL(unregister_console);
d59745ce 1299
0c5564bd
RG
1300static int __init disable_boot_consoles(void)
1301{
cb00e99c
RG
1302 if (console_drivers != NULL) {
1303 if (console_drivers->flags & CON_BOOT) {
1304 printk(KERN_INFO "turn off boot console %s%d\n",
1305 console_drivers->name, console_drivers->index);
1306 return unregister_console(console_drivers);
1307 }
0c5564bd
RG
1308 }
1309 return 0;
1310}
1311late_initcall(disable_boot_consoles);
1312
1da177e4
LT
1313/**
1314 * tty_write_message - write a message to a certain tty, not just the console.
ddad86c2
MW
1315 * @tty: the destination tty_struct
1316 * @msg: the message to write
1da177e4
LT
1317 *
1318 * This is used for messages that need to be redirected to a specific tty.
1319 * We don't put it into the syslog queue right now maybe in the future if
1320 * really needed.
1321 */
1322void tty_write_message(struct tty_struct *tty, char *msg)
1323{
f34d7a5b
AC
1324 if (tty && tty->ops->write)
1325 tty->ops->write(tty, msg, strlen(msg));
1da177e4
LT
1326 return;
1327}
1328
7ef3d2fd 1329#if defined CONFIG_PRINTK
1da177e4
LT
1330/*
1331 * printk rate limiting, lifted from the networking subsystem.
1332 *
1333 * This enforces a rate limit: not more than one kernel message
1334 * every printk_ratelimit_jiffies to make a denial-of-service
1335 * attack impossible.
1336 */
1337int __printk_ratelimit(int ratelimit_jiffies, int ratelimit_burst)
1338{
5f97a5a8 1339 return __ratelimit(ratelimit_jiffies, ratelimit_burst);
1da177e4
LT
1340}
1341EXPORT_SYMBOL(__printk_ratelimit);
1342
1343/* minimum time in jiffies between messages */
40dc5651 1344int printk_ratelimit_jiffies = 5 * HZ;
1da177e4
LT
1345
1346/* number of messages we send before ratelimiting */
1347int printk_ratelimit_burst = 10;
1348
1349int printk_ratelimit(void)
1350{
1351 return __printk_ratelimit(printk_ratelimit_jiffies,
1352 printk_ratelimit_burst);
1353}
1354EXPORT_SYMBOL(printk_ratelimit);
f46c4833
AM
1355
1356/**
1357 * printk_timed_ratelimit - caller-controlled printk ratelimiting
1358 * @caller_jiffies: pointer to caller's state
1359 * @interval_msecs: minimum interval between prints
1360 *
1361 * printk_timed_ratelimit() returns true if more than @interval_msecs
1362 * milliseconds have elapsed since the last time printk_timed_ratelimit()
1363 * returned true.
1364 */
1365bool printk_timed_ratelimit(unsigned long *caller_jiffies,
1366 unsigned int interval_msecs)
1367{
1368 if (*caller_jiffies == 0 || time_after(jiffies, *caller_jiffies)) {
1369 *caller_jiffies = jiffies + msecs_to_jiffies(interval_msecs);
1370 return true;
1371 }
1372 return false;
1373}
1374EXPORT_SYMBOL(printk_timed_ratelimit);
7ef3d2fd 1375#endif
This page took 0.493932 seconds and 5 git commands to generate.