blob: da8ca817eae3b817d037f3f2d4b9666e52569b35 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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.
Jesper Juhl40dc5652005-10-30 15:02:46 -080013 * Fixed SMP synchronization, 08/08/99, Manfred Spraul
Christian Kujau624dffc2006-01-15 02:43:54 +010014 * manfred@colorfullife.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Rewrote bits to get rid of console_lock
Francois Camie1f8e872008-10-15 22:01:59 -070016 * 01Mar01 Andrew Morton
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
19#include <linux/kernel.h>
20#include <linux/mm.h>
21#include <linux/tty.h>
22#include <linux/tty_driver.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/console.h>
24#include <linux/init.h>
Randy Dunlapbfe8df32007-10-16 01:23:46 -070025#include <linux/jiffies.h>
26#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/module.h>
Jan Engelhardt3b9c0412006-06-25 05:48:15 -070028#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/interrupt.h> /* For in_interrupt() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/delay.h>
31#include <linux/smp.h>
32#include <linux/security.h>
33#include <linux/bootmem.h>
34#include <linux/syscalls.h>
Neil Horman04d491a2009-04-02 16:58:57 -070035#include <linux/kexec.h>
Jason Wesseld37d39a2010-05-20 21:04:27 -050036#include <linux/kdb.h>
Ingo Molnar3fff4c42009-09-22 16:18:09 +020037#include <linux/ratelimit.h>
Simon Kagstrom456b5652009-10-16 14:09:18 +020038#include <linux/kmsg_dump.h>
Kees Cook00234592010-02-03 15:36:43 -080039#include <linux/syslog.h>
Kevin Cernekee034260d2010-06-03 22:11:25 -070040#include <linux/cpu.h>
41#include <linux/notifier.h>
Huang Yingfb842b02011-01-12 16:59:43 -080042#include <linux/rculist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <asm/uaccess.h>
45
Ingo Molnar076f9772008-01-30 13:33:06 +010046/*
47 * Architectures can override it:
48 */
Jiri Slabye17ba732008-05-12 15:44:40 +020049void asmlinkage __attribute__((weak)) early_printk(const char *fmt, ...)
Ingo Molnar076f9772008-01-30 13:33:06 +010050{
51}
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
54
55/* printk's without a loglevel use this.. */
Mandeep Singh Baines5af5bcb2011-03-22 16:34:23 -070056#define DEFAULT_MESSAGE_LOGLEVEL CONFIG_DEFAULT_MESSAGE_LOGLEVEL
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/* We show everything that is MORE important than this.. */
59#define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */
60#define DEFAULT_CONSOLE_LOGLEVEL 7 /* anything MORE serious than KERN_DEBUG */
61
62DECLARE_WAIT_QUEUE_HEAD(log_wait);
63
64int console_printk[4] = {
65 DEFAULT_CONSOLE_LOGLEVEL, /* console_loglevel */
66 DEFAULT_MESSAGE_LOGLEVEL, /* default_message_loglevel */
67 MINIMUM_CONSOLE_LOGLEVEL, /* minimum_console_loglevel */
68 DEFAULT_CONSOLE_LOGLEVEL, /* default_console_loglevel */
69};
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/*
Patrick Pletscher0bbfb7c2007-02-17 20:10:16 +010072 * Low level drivers may need that to know if they can schedule in
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 * their unblank() callback or not. So let's export it.
74 */
75int oops_in_progress;
76EXPORT_SYMBOL(oops_in_progress);
77
78/*
79 * console_sem protects the console_drivers list, and also
80 * provides serialisation for access to the entire console
81 * driver system.
82 */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +000083static DEFINE_SEMAPHORE(console_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084struct console *console_drivers;
Ingo Molnara29d1cf2008-06-02 13:19:08 +020085EXPORT_SYMBOL_GPL(console_drivers);
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/*
88 * This is used for debugging the mess that is the VT code by
89 * keeping track if we have the console semaphore held. It's
90 * definitely not the perfect debug tool (we don't know if _WE_
91 * hold it are racing, but it helps tracking those weird code
92 * path in the console code where we end up in places I want
93 * locked without the console sempahore held
94 */
Linus Torvalds557240b2006-06-19 18:16:01 -070095static int console_locked, console_suspended;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97/*
98 * logbuf_lock protects log_buf, log_start, log_end, con_start and logged_chars
99 * It is also used in interesting ways to provide interlocking in
Torben Hohnac751ef2011-01-25 15:07:35 -0800100 * console_unlock();.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 */
102static DEFINE_SPINLOCK(logbuf_lock);
103
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800104#define LOG_BUF_MASK (log_buf_len-1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#define LOG_BUF(idx) (log_buf[(idx) & LOG_BUF_MASK])
106
107/*
108 * The indices into log_buf are not constrained to log_buf_len - they
109 * must be masked before subscripting
110 */
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800111static unsigned log_start; /* Index into log_buf: next char to be read by syslog() */
112static unsigned con_start; /* Index into log_buf: next char to be sent to consoles */
113static unsigned log_end; /* Index into log_buf: most-recently-written-char + 1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115/*
Feng Tangfe3d8ad2011-03-22 16:34:21 -0700116 * If exclusive_console is non-NULL then only this console is to be printed to.
117 */
118static struct console *exclusive_console;
119
120/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 * Array of consoles built from command line options (console=)
122 */
123struct console_cmdline
124{
125 char name[8]; /* Name of the driver */
126 int index; /* Minor dev. to use */
127 char *options; /* Options for the driver */
Samuel Thibaultf7511d52008-04-30 00:54:51 -0700128#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
129 char *brl_options; /* Options for braille driver */
130#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
133#define MAX_CMDLINECONSOLES 8
134
135static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
136static int selected_console = -1;
137static int preferred_console = -1;
Markus Armbruster9e124fe2008-05-26 23:31:07 +0100138int console_set_on_cmdline;
139EXPORT_SYMBOL(console_set_on_cmdline);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141/* Flag: console code may call schedule() */
142static int console_may_schedule;
143
Matt Mackalld59745c2005-05-01 08:59:02 -0700144#ifdef CONFIG_PRINTK
145
146static char __log_buf[__LOG_BUF_LEN];
147static char *log_buf = __log_buf;
148static int log_buf_len = __LOG_BUF_LEN;
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800149static unsigned logged_chars; /* Number of chars produced since last read+clear operation */
Gustavo F. Padovancea83882010-03-05 13:42:58 -0800150static int saved_console_loglevel = -1;
Matt Mackalld59745c2005-05-01 08:59:02 -0700151
Neil Horman04d491a2009-04-02 16:58:57 -0700152#ifdef CONFIG_KEXEC
153/*
154 * This appends the listed symbols to /proc/vmcoreinfo
155 *
156 * /proc/vmcoreinfo is used by various utiilties, like crash and makedumpfile to
157 * obtain access to symbols that are otherwise very difficult to locate. These
158 * symbols are specifically used so that utilities can access and extract the
159 * dmesg log from a vmcore file after a crash.
160 */
161void log_buf_kexec_setup(void)
162{
163 VMCOREINFO_SYMBOL(log_buf);
164 VMCOREINFO_SYMBOL(log_end);
165 VMCOREINFO_SYMBOL(log_buf_len);
166 VMCOREINFO_SYMBOL(logged_chars);
167}
168#endif
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170static int __init log_buf_len_setup(char *str)
171{
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800172 unsigned size = memparse(str, &str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 unsigned long flags;
174
175 if (size)
176 size = roundup_pow_of_two(size);
177 if (size > log_buf_len) {
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800178 unsigned start, dest_idx, offset;
Jesper Juhl40dc5652005-10-30 15:02:46 -0800179 char *new_log_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 new_log_buf = alloc_bootmem(size);
182 if (!new_log_buf) {
Jesper Juhl40dc5652005-10-30 15:02:46 -0800183 printk(KERN_WARNING "log_buf_len: allocation failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 goto out;
185 }
186
187 spin_lock_irqsave(&logbuf_lock, flags);
188 log_buf_len = size;
189 log_buf = new_log_buf;
190
191 offset = start = min(con_start, log_start);
192 dest_idx = 0;
193 while (start != log_end) {
194 log_buf[dest_idx] = __log_buf[start & (__LOG_BUF_LEN - 1)];
195 start++;
196 dest_idx++;
197 }
198 log_start -= offset;
199 con_start -= offset;
200 log_end -= offset;
201 spin_unlock_irqrestore(&logbuf_lock, flags);
202
Jesper Juhl40dc5652005-10-30 15:02:46 -0800203 printk(KERN_NOTICE "log_buf_len: %d\n", log_buf_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return 1;
207}
208
209__setup("log_buf_len=", log_buf_len_setup);
210
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700211#ifdef CONFIG_BOOT_PRINTK_DELAY
212
Namhyung Kim674dff62010-10-26 14:22:48 -0700213static int boot_delay; /* msecs delay after each printk during bootup */
Dave Young3a3b6ed2009-09-22 16:43:31 -0700214static unsigned long long loops_per_msec; /* based on boot_delay */
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700215
216static int __init boot_delay_setup(char *str)
217{
218 unsigned long lpj;
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700219
220 lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */
221 loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
222
223 get_option(&str, &boot_delay);
224 if (boot_delay > 10 * 1000)
225 boot_delay = 0;
226
Dave Young3a3b6ed2009-09-22 16:43:31 -0700227 pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
228 "HZ: %d, loops_per_msec: %llu\n",
229 boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700230 return 1;
231}
232__setup("boot_delay=", boot_delay_setup);
233
234static void boot_delay_msec(void)
235{
236 unsigned long long k;
237 unsigned long timeout;
238
239 if (boot_delay == 0 || system_state != SYSTEM_BOOTING)
240 return;
241
Dave Young3a3b6ed2009-09-22 16:43:31 -0700242 k = (unsigned long long)loops_per_msec * boot_delay;
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700243
244 timeout = jiffies + msecs_to_jiffies(boot_delay);
245 while (k) {
246 k--;
247 cpu_relax();
248 /*
249 * use (volatile) jiffies to prevent
250 * compiler reduction; loop termination via jiffies
251 * is secondary and may or may not happen.
252 */
253 if (time_after(jiffies, timeout))
254 break;
255 touch_nmi_watchdog();
256 }
257}
258#else
259static inline void boot_delay_msec(void)
260{
261}
262#endif
263
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800264#ifdef CONFIG_SECURITY_DMESG_RESTRICT
265int dmesg_restrict = 1;
266#else
267int dmesg_restrict;
268#endif
269
Linus Torvaldsee24aeb2011-02-10 17:53:55 -0800270static int syslog_action_restricted(int type)
271{
272 if (dmesg_restrict)
273 return 1;
274 /* Unless restricted, we allow "read all" and "get buffer size" for everybody */
275 return type != SYSLOG_ACTION_READ_ALL && type != SYSLOG_ACTION_SIZE_BUFFER;
276}
277
278static int check_syslog_permissions(int type, bool from_file)
279{
280 /*
281 * If this is from /proc/kmsg and we've already opened it, then we've
282 * already done the capabilities checks at open time.
283 */
284 if (from_file && type != SYSLOG_ACTION_OPEN)
285 return 0;
286
287 if (syslog_action_restricted(type)) {
288 if (capable(CAP_SYSLOG))
289 return 0;
290 /* For historical reasons, accept CAP_SYS_ADMIN too, with a warning */
291 if (capable(CAP_SYS_ADMIN)) {
292 WARN_ONCE(1, "Attempt to access syslog with CAP_SYS_ADMIN "
293 "but no CAP_SYSLOG (deprecated).\n");
294 return 0;
295 }
296 return -EPERM;
297 }
298 return 0;
299}
300
Kees Cook00234592010-02-03 15:36:43 -0800301int do_syslog(int type, char __user *buf, int len, bool from_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800303 unsigned i, j, limit, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 int do_clear = 0;
305 char c;
Linus Torvaldsee24aeb2011-02-10 17:53:55 -0800306 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Linus Torvaldsee24aeb2011-02-10 17:53:55 -0800308 error = check_syslog_permissions(type, from_file);
309 if (error)
310 goto out;
Eric Paris12b30522010-11-15 18:36:29 -0500311
312 error = security_syslog(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (error)
314 return error;
315
316 switch (type) {
Kees Cookd78ca3c2010-02-03 15:37:13 -0800317 case SYSLOG_ACTION_CLOSE: /* Close log */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800319 case SYSLOG_ACTION_OPEN: /* Open log */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800321 case SYSLOG_ACTION_READ: /* Read from log */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 error = -EINVAL;
323 if (!buf || len < 0)
324 goto out;
325 error = 0;
326 if (!len)
327 goto out;
328 if (!access_ok(VERIFY_WRITE, buf, len)) {
329 error = -EFAULT;
330 goto out;
331 }
Jesper Juhl40dc5652005-10-30 15:02:46 -0800332 error = wait_event_interruptible(log_wait,
333 (log_start - log_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (error)
335 goto out;
336 i = 0;
337 spin_lock_irq(&logbuf_lock);
338 while (!error && (log_start != log_end) && i < len) {
339 c = LOG_BUF(log_start);
340 log_start++;
341 spin_unlock_irq(&logbuf_lock);
342 error = __put_user(c,buf);
343 buf++;
344 i++;
345 cond_resched();
346 spin_lock_irq(&logbuf_lock);
347 }
348 spin_unlock_irq(&logbuf_lock);
349 if (!error)
350 error = i;
351 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800352 /* Read/clear last kernel messages */
353 case SYSLOG_ACTION_READ_CLEAR:
Jesper Juhl40dc5652005-10-30 15:02:46 -0800354 do_clear = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 /* FALL THRU */
Kees Cookd78ca3c2010-02-03 15:37:13 -0800356 /* Read last kernel messages */
357 case SYSLOG_ACTION_READ_ALL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 error = -EINVAL;
359 if (!buf || len < 0)
360 goto out;
361 error = 0;
362 if (!len)
363 goto out;
364 if (!access_ok(VERIFY_WRITE, buf, len)) {
365 error = -EFAULT;
366 goto out;
367 }
368 count = len;
369 if (count > log_buf_len)
370 count = log_buf_len;
371 spin_lock_irq(&logbuf_lock);
372 if (count > logged_chars)
373 count = logged_chars;
374 if (do_clear)
375 logged_chars = 0;
376 limit = log_end;
377 /*
378 * __put_user() could sleep, and while we sleep
Jesper Juhl40dc5652005-10-30 15:02:46 -0800379 * printk() could overwrite the messages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * we try to copy to user space. Therefore
381 * the messages are copied in reverse. <manfreds>
382 */
Jesper Juhl40dc5652005-10-30 15:02:46 -0800383 for (i = 0; i < count && !error; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 j = limit-1-i;
385 if (j + log_buf_len < log_end)
386 break;
387 c = LOG_BUF(j);
388 spin_unlock_irq(&logbuf_lock);
389 error = __put_user(c,&buf[count-1-i]);
390 cond_resched();
391 spin_lock_irq(&logbuf_lock);
392 }
393 spin_unlock_irq(&logbuf_lock);
394 if (error)
395 break;
396 error = i;
Jesper Juhl40dc5652005-10-30 15:02:46 -0800397 if (i != count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 int offset = count-error;
399 /* buffer overflow during copy, correct user buffer. */
Jesper Juhl40dc5652005-10-30 15:02:46 -0800400 for (i = 0; i < error; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 if (__get_user(c,&buf[i+offset]) ||
402 __put_user(c,&buf[i])) {
403 error = -EFAULT;
404 break;
405 }
406 cond_resched();
407 }
408 }
409 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800410 /* Clear ring buffer */
411 case SYSLOG_ACTION_CLEAR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 logged_chars = 0;
413 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800414 /* Disable logging to console */
415 case SYSLOG_ACTION_CONSOLE_OFF:
Frans Pop1aaad492009-07-06 13:31:48 +0200416 if (saved_console_loglevel == -1)
417 saved_console_loglevel = console_loglevel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 console_loglevel = minimum_console_loglevel;
419 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800420 /* Enable logging to console */
421 case SYSLOG_ACTION_CONSOLE_ON:
Frans Pop1aaad492009-07-06 13:31:48 +0200422 if (saved_console_loglevel != -1) {
423 console_loglevel = saved_console_loglevel;
424 saved_console_loglevel = -1;
425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800427 /* Set level of messages printed to console */
428 case SYSLOG_ACTION_CONSOLE_LEVEL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 error = -EINVAL;
430 if (len < 1 || len > 8)
431 goto out;
432 if (len < minimum_console_loglevel)
433 len = minimum_console_loglevel;
434 console_loglevel = len;
Frans Pop1aaad492009-07-06 13:31:48 +0200435 /* Implicitly re-enable logging to console */
436 saved_console_loglevel = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 error = 0;
438 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800439 /* Number of chars in the log buffer */
440 case SYSLOG_ACTION_SIZE_UNREAD:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 error = log_end - log_start;
442 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -0800443 /* Size of the log buffer */
444 case SYSLOG_ACTION_SIZE_BUFFER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 error = log_buf_len;
446 break;
447 default:
448 error = -EINVAL;
449 break;
450 }
451out:
452 return error;
453}
454
Heiko Carstens1e7bfb22009-01-14 14:14:29 +0100455SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Kees Cook00234592010-02-03 15:36:43 -0800457 return do_syslog(type, buf, len, SYSLOG_FROM_CALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Jason Wessel67fc4e02010-05-20 21:04:21 -0500460#ifdef CONFIG_KGDB_KDB
461/* kdb dmesg command needs access to the syslog buffer. do_syslog()
462 * uses locks so it cannot be used during debugging. Just tell kdb
463 * where the start and end of the physical and logical logs are. This
464 * is equivalent to do_syslog(3).
465 */
466void kdb_syslog_data(char *syslog_data[4])
467{
468 syslog_data[0] = log_buf;
469 syslog_data[1] = log_buf + log_buf_len;
470 syslog_data[2] = log_buf + log_end -
471 (logged_chars < log_buf_len ? logged_chars : log_buf_len);
472 syslog_data[3] = log_buf + log_end;
473}
474#endif /* CONFIG_KGDB_KDB */
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/*
477 * Call the console drivers on a range of log_buf
478 */
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800479static void __call_console_drivers(unsigned start, unsigned end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 struct console *con;
482
Robin Getz4d091612009-07-01 21:08:37 -0400483 for_each_console(con) {
Feng Tangfe3d8ad2011-03-22 16:34:21 -0700484 if (exclusive_console && con != exclusive_console)
485 continue;
Michael Ellerman76a8ad22006-06-25 05:47:40 -0700486 if ((con->flags & CON_ENABLED) && con->write &&
487 (cpu_online(smp_processor_id()) ||
488 (con->flags & CON_ANYTIME)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 con->write(con, &LOG_BUF(start), end - start);
490 }
491}
492
Ingo Molnar792908222006-12-06 20:40:51 -0800493static int __read_mostly ignore_loglevel;
494
Adrian Bunk99eea6a2006-12-22 01:07:00 -0800495static int __init ignore_loglevel_setup(char *str)
Ingo Molnar792908222006-12-06 20:40:51 -0800496{
497 ignore_loglevel = 1;
498 printk(KERN_INFO "debug: ignoring loglevel setting.\n");
499
Ingo Molnarc4772d92008-01-31 22:45:23 +0100500 return 0;
Ingo Molnar792908222006-12-06 20:40:51 -0800501}
502
Ingo Molnarc4772d92008-01-31 22:45:23 +0100503early_param("ignore_loglevel", ignore_loglevel_setup);
Ingo Molnar792908222006-12-06 20:40:51 -0800504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505/*
506 * Write out chars from start to end - 1 inclusive
507 */
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800508static void _call_console_drivers(unsigned start,
509 unsigned end, int msg_log_level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Ingo Molnar792908222006-12-06 20:40:51 -0800511 if ((msg_log_level < console_loglevel || ignore_loglevel) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 console_drivers && start != end) {
513 if ((start & LOG_BUF_MASK) > (end & LOG_BUF_MASK)) {
514 /* wrapped write */
515 __call_console_drivers(start & LOG_BUF_MASK,
516 log_buf_len);
517 __call_console_drivers(0, end & LOG_BUF_MASK);
518 } else {
519 __call_console_drivers(start, end);
520 }
521 }
522}
523
524/*
Kay Sievers9d90c8d2011-03-13 03:19:51 +0100525 * Parse the syslog header <[0-9]*>. The decimal value represents 32bit, the
526 * lower 3 bit are the log level, the rest are the log facility. In case
527 * userspace passes usual userspace syslog messages to /dev/kmsg or
528 * /dev/ttyprintk, the log prefix might contain the facility. Printk needs
529 * to extract the correct log level for in-kernel processing, and not mangle
530 * the original value.
531 *
532 * If a prefix is found, the length of the prefix is returned. If 'level' is
533 * passed, it will be filled in with the log level without a possible facility
534 * value. If 'special' is passed, the special printk prefix chars are accepted
535 * and returned. If no valid header is found, 0 is returned and the passed
536 * variables are not touched.
537 */
538static size_t log_prefix(const char *p, unsigned int *level, char *special)
539{
540 unsigned int lev = 0;
541 char sp = '\0';
542 size_t len;
543
544 if (p[0] != '<' || !p[1])
545 return 0;
546 if (p[2] == '>') {
547 /* usual single digit level number or special char */
548 switch (p[1]) {
549 case '0' ... '7':
550 lev = p[1] - '0';
551 break;
552 case 'c': /* KERN_CONT */
553 case 'd': /* KERN_DEFAULT */
554 sp = p[1];
555 break;
556 default:
557 return 0;
558 }
559 len = 3;
560 } else {
561 /* multi digit including the level and facility number */
562 char *endp = NULL;
563
564 if (p[1] < '0' && p[1] > '9')
565 return 0;
566
567 lev = (simple_strtoul(&p[1], &endp, 10) & 7);
568 if (endp == NULL || endp[0] != '>')
569 return 0;
570 len = (endp + 1) - p;
571 }
572
573 /* do not accept special char if not asked for */
574 if (sp && !special)
575 return 0;
576
577 if (special) {
578 *special = sp;
579 /* return special char, do not touch level */
580 if (sp)
581 return len;
582 }
583
584 if (level)
585 *level = lev;
586 return len;
587}
588
589/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 * Call the console drivers, asking them to write out
591 * log_buf[start] to log_buf[end - 1].
Torben Hohnac751ef2011-01-25 15:07:35 -0800592 * The console_lock must be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 */
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800594static void call_console_drivers(unsigned start, unsigned end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800596 unsigned cur_index, start_print;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 static int msg_level = -1;
598
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800599 BUG_ON(((int)(start - end)) > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 cur_index = start;
602 start_print = start;
603 while (cur_index != end) {
Kay Sievers9d90c8d2011-03-13 03:19:51 +0100604 if (msg_level < 0 && ((end - cur_index) > 2)) {
605 /* strip log prefix */
606 cur_index += log_prefix(&LOG_BUF(cur_index), &msg_level, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 start_print = cur_index;
608 }
609 while (cur_index != end) {
610 char c = LOG_BUF(cur_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Jesper Juhl40dc5652005-10-30 15:02:46 -0800612 cur_index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (c == '\n') {
614 if (msg_level < 0) {
615 /*
616 * printk() has already given us loglevel tags in
617 * the buffer. This code is here in case the
618 * log buffer has wrapped right round and scribbled
619 * on those tags
620 */
621 msg_level = default_message_loglevel;
622 }
623 _call_console_drivers(start_print, cur_index, msg_level);
624 msg_level = -1;
625 start_print = cur_index;
626 break;
627 }
628 }
629 }
630 _call_console_drivers(start_print, end, msg_level);
631}
632
633static void emit_log_char(char c)
634{
635 LOG_BUF(log_end) = c;
636 log_end++;
637 if (log_end - log_start > log_buf_len)
638 log_start = log_end - log_buf_len;
639 if (log_end - con_start > log_buf_len)
640 con_start = log_end - log_buf_len;
641 if (logged_chars < log_buf_len)
642 logged_chars++;
643}
644
645/*
646 * Zap console related locks when oopsing. Only zap at most once
647 * every 10 seconds, to leave time for slow consoles to print a
648 * full oops.
649 */
650static void zap_locks(void)
651{
652 static unsigned long oops_timestamp;
653
654 if (time_after_eq(jiffies, oops_timestamp) &&
Jesper Juhl40dc5652005-10-30 15:02:46 -0800655 !time_after(jiffies, oops_timestamp + 30 * HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return;
657
658 oops_timestamp = jiffies;
659
660 /* If a crash is occurring, make sure we can't deadlock */
661 spin_lock_init(&logbuf_lock);
662 /* And make sure that we print immediately */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +0000663 sema_init(&console_sem, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664}
665
666#if defined(CONFIG_PRINTK_TIME)
667static int printk_time = 1;
668#else
669static int printk_time = 0;
670#endif
Randy Dunlape84845c2007-07-15 23:40:25 -0700671module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Michael Ellerman76a8ad22006-06-25 05:47:40 -0700673/* Check if we have any console registered that can be called early in boot. */
674static int have_callable_console(void)
675{
676 struct console *con;
677
Robin Getz4d091612009-07-01 21:08:37 -0400678 for_each_console(con)
Michael Ellerman76a8ad22006-06-25 05:47:40 -0700679 if (con->flags & CON_ANYTIME)
680 return 1;
681
682 return 0;
683}
684
Martin Waitzddad86c2005-11-13 16:08:14 -0800685/**
686 * printk - print a kernel message
687 * @fmt: format string
688 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800689 * This is printk(). It can be called from any context. We want it to work.
Jesper Juhl40dc5652005-10-30 15:02:46 -0800690 *
Torben Hohnac751ef2011-01-25 15:07:35 -0800691 * We try to grab the console_lock. If we succeed, it's easy - we log the output and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 * call the console drivers. If we fail to get the semaphore we place the output
693 * into the log buffer and return. The current holder of the console_sem will
Torben Hohnac751ef2011-01-25 15:07:35 -0800694 * notice the new output in console_unlock(); and will send it to the
695 * consoles before releasing the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 *
697 * One effect of this deferred printing is that code which calls printk() and
698 * then changes console_loglevel may break. This is because console_loglevel
699 * is inspected when the actual printing occurs.
Martin Waitzddad86c2005-11-13 16:08:14 -0800700 *
701 * See also:
702 * printf(3)
Andi Kleen20036fd2008-10-15 22:02:02 -0700703 *
704 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 */
Matt Mackalld59745c2005-05-01 08:59:02 -0700706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707asmlinkage int printk(const char *fmt, ...)
708{
709 va_list args;
710 int r;
711
Jason Wesseld37d39a2010-05-20 21:04:27 -0500712#ifdef CONFIG_KGDB_KDB
713 if (unlikely(kdb_trap_printk)) {
714 va_start(args, fmt);
715 r = vkdb_printf(fmt, args);
716 va_end(args);
717 return r;
718 }
719#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 va_start(args, fmt);
721 r = vprintk(fmt, args);
722 va_end(args);
723
724 return r;
725}
726
David Howellsfe217732005-09-06 15:16:34 -0700727/* cpu currently holding logbuf_lock */
728static volatile unsigned int printk_cpu = UINT_MAX;
729
Linus Torvalds266c2e02008-03-24 19:25:08 -0700730/*
731 * Can we actually use the console at this time on this cpu?
732 *
733 * Console drivers may assume that per-cpu resources have
734 * been allocated. So unless they're explicitly marked as
735 * being able to cope (CON_ANYTIME) don't call them until
736 * this CPU is officially up.
737 */
738static inline int can_use_console(unsigned int cpu)
739{
740 return cpu_online(cpu) || have_callable_console();
741}
742
743/*
744 * Try to get console ownership to actually show the kernel
745 * messages from a 'printk'. Return true (and with the
Torben Hohnac751ef2011-01-25 15:07:35 -0800746 * console_lock held, and 'console_locked' set) if it
Linus Torvalds266c2e02008-03-24 19:25:08 -0700747 * is successful, false otherwise.
748 *
749 * This gets called with the 'logbuf_lock' spinlock held and
750 * interrupts disabled. It should return with 'lockbuf_lock'
751 * released but interrupts still disabled.
752 */
Torben Hohnac751ef2011-01-25 15:07:35 -0800753static int console_trylock_for_printk(unsigned int cpu)
Namhyung Kim8155c022010-10-26 14:22:47 -0700754 __releases(&logbuf_lock)
Linus Torvalds266c2e02008-03-24 19:25:08 -0700755{
756 int retval = 0;
757
Torben Hohnac751ef2011-01-25 15:07:35 -0800758 if (console_trylock()) {
Linus Torvalds093a07e2008-04-15 13:09:54 -0700759 retval = 1;
760
761 /*
762 * If we can't use the console, we need to release
763 * the console semaphore by hand to avoid flushing
764 * the buffer. We need to hold the console semaphore
765 * in order to do this test safely.
766 */
767 if (!can_use_console(cpu)) {
768 console_locked = 0;
769 up(&console_sem);
770 retval = 0;
771 }
772 }
Linus Torvalds266c2e02008-03-24 19:25:08 -0700773 printk_cpu = UINT_MAX;
774 spin_unlock(&logbuf_lock);
775 return retval;
776}
Tejun Heo3b8945e2008-05-12 21:21:04 +0200777static const char recursion_bug_msg [] =
778 KERN_CRIT "BUG: recent printk recursion!\n";
779static int recursion_bug;
Jiri Kosinaedb123e2008-12-04 12:39:49 +0100780static int new_text_line = 1;
Tejun Heo3b8945e2008-05-12 21:21:04 +0200781static char printk_buf[1024];
Ingo Molnar32a76002008-01-25 21:07:58 +0100782
Dave Youngaf913222009-09-22 16:43:33 -0700783int printk_delay_msec __read_mostly;
784
785static inline void printk_delay(void)
786{
787 if (unlikely(printk_delay_msec)) {
788 int m = printk_delay_msec;
789
790 while (m--) {
791 mdelay(1);
792 touch_nmi_watchdog();
793 }
794 }
795}
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797asmlinkage int vprintk(const char *fmt, va_list args)
798{
Ingo Molnar32a76002008-01-25 21:07:58 +0100799 int printed_len = 0;
Nick Andrew09159302008-05-12 21:21:04 +0200800 int current_log_level = default_message_loglevel;
Nick Andrewac60ad72008-05-12 21:21:04 +0200801 unsigned long flags;
Ingo Molnar32a76002008-01-25 21:07:58 +0100802 int this_cpu;
803 char *p;
Kay Sievers9d90c8d2011-03-13 03:19:51 +0100804 size_t plen;
805 char special;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700807 boot_delay_msec();
Dave Youngaf913222009-09-22 16:43:33 -0700808 printk_delay();
Randy Dunlapbfe8df32007-10-16 01:23:46 -0700809
David Howellsfe217732005-09-06 15:16:34 -0700810 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 /* This stops the holder of console_sem just where we want him */
Mathieu Desnoyers1efc5da2007-02-10 01:46:29 -0800812 raw_local_irq_save(flags);
Ingo Molnar32a76002008-01-25 21:07:58 +0100813 this_cpu = smp_processor_id();
814
815 /*
816 * Ouch, printk recursed into itself!
817 */
818 if (unlikely(printk_cpu == this_cpu)) {
819 /*
820 * If a crash is occurring during printk() on this CPU,
821 * then try to get the crash message out but make sure
822 * we can't deadlock. Otherwise just return to avoid the
823 * recursion and return - but flag the recursion so that
824 * it can be printed at the next appropriate moment:
825 */
826 if (!oops_in_progress) {
Tejun Heo3b8945e2008-05-12 21:21:04 +0200827 recursion_bug = 1;
Ingo Molnar32a76002008-01-25 21:07:58 +0100828 goto out_restore_irqs;
829 }
830 zap_locks();
831 }
832
Ingo Molnara0f1ccf2006-07-03 00:24:58 -0700833 lockdep_off();
834 spin_lock(&logbuf_lock);
Ingo Molnar32a76002008-01-25 21:07:58 +0100835 printk_cpu = this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Tejun Heo3b8945e2008-05-12 21:21:04 +0200837 if (recursion_bug) {
838 recursion_bug = 0;
839 strcpy(printk_buf, recursion_bug_msg);
Hiroshi Shimamoto26cc2712008-12-19 10:23:03 -0800840 printed_len = strlen(recursion_bug_msg);
Ingo Molnar32a76002008-01-25 21:07:58 +0100841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 /* Emit the output into the temporary buffer */
Ingo Molnar32a76002008-01-25 21:07:58 +0100843 printed_len += vscnprintf(printk_buf + printed_len,
Tejun Heocf3680b2008-02-14 10:32:07 +0900844 sizeof(printk_buf) - printed_len, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Linus Torvalds5fd29d62009-06-16 10:57:02 -0700846 p = printk_buf;
847
Kay Sievers9d90c8d2011-03-13 03:19:51 +0100848 /* Read log level and handle special printk prefix */
849 plen = log_prefix(p, &current_log_level, &special);
850 if (plen) {
851 p += plen;
852
853 switch (special) {
854 case 'c': /* Strip <c> KERN_CONT, continue line */
855 plen = 0;
856 break;
857 case 'd': /* Strip <d> KERN_DEFAULT, start new line */
858 plen = 0;
859 default:
860 if (!new_text_line) {
861 emit_log_char('\n');
862 new_text_line = 1;
Linus Torvalds5fd29d62009-06-16 10:57:02 -0700863 }
864 }
865 }
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 /*
Kay Sievers9d90c8d2011-03-13 03:19:51 +0100868 * Copy the output into log_buf. If the caller didn't provide
869 * the appropriate log prefix, we insert them here
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 */
Kay Sievers9d90c8d2011-03-13 03:19:51 +0100871 for (; *p; p++) {
Nick Andrewac60ad72008-05-12 21:21:04 +0200872 if (new_text_line) {
Nick Andrewac60ad72008-05-12 21:21:04 +0200873 new_text_line = 0;
874
Kay Sievers9d90c8d2011-03-13 03:19:51 +0100875 if (plen) {
876 /* Copy original log prefix */
877 int i;
878
879 for (i = 0; i < plen; i++)
880 emit_log_char(printk_buf[i]);
881 printed_len += plen;
882 } else {
883 /* Add log prefix */
884 emit_log_char('<');
885 emit_log_char(current_log_level + '0');
886 emit_log_char('>');
887 printed_len += 3;
888 }
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (printk_time) {
Kay Sievers9d90c8d2011-03-13 03:19:51 +0100891 /* Add the current time stamp */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 char tbuf[50], *tp;
893 unsigned tlen;
894 unsigned long long t;
895 unsigned long nanosec_rem;
896
Ingo Molnar326e96b2008-01-27 08:03:54 +0100897 t = cpu_clock(printk_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 nanosec_rem = do_div(t, 1000000000);
Nick Andrewac60ad72008-05-12 21:21:04 +0200899 tlen = sprintf(tbuf, "[%5lu.%06lu] ",
900 (unsigned long) t,
901 nanosec_rem / 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 for (tp = tbuf; tp < tbuf + tlen; tp++)
904 emit_log_char(*tp);
Guillaume Chazarain025510c2006-01-08 01:02:41 -0800905 printed_len += tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
Nick Andrewac60ad72008-05-12 21:21:04 +0200907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (!*p)
909 break;
910 }
Nick Andrewac60ad72008-05-12 21:21:04 +0200911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 emit_log_char(*p);
913 if (*p == '\n')
Nick Andrewac60ad72008-05-12 21:21:04 +0200914 new_text_line = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916
Linus Torvalds266c2e02008-03-24 19:25:08 -0700917 /*
918 * Try to acquire and then immediately release the
919 * console semaphore. The release will do all the
920 * actual magic (print out buffers, wake up klogd,
921 * etc).
922 *
Torben Hohnac751ef2011-01-25 15:07:35 -0800923 * The console_trylock_for_printk() function
Linus Torvalds266c2e02008-03-24 19:25:08 -0700924 * will release 'logbuf_lock' regardless of whether it
925 * actually gets the semaphore or not.
926 */
Torben Hohnac751ef2011-01-25 15:07:35 -0800927 if (console_trylock_for_printk(this_cpu))
928 console_unlock();
Michael Ellerman76a8ad22006-06-25 05:47:40 -0700929
Linus Torvalds266c2e02008-03-24 19:25:08 -0700930 lockdep_on();
Ingo Molnar32a76002008-01-25 21:07:58 +0100931out_restore_irqs:
Linus Torvalds266c2e02008-03-24 19:25:08 -0700932 raw_local_irq_restore(flags);
Michael Ellerman76a8ad22006-06-25 05:47:40 -0700933
David Howellsfe217732005-09-06 15:16:34 -0700934 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return printed_len;
936}
937EXPORT_SYMBOL(printk);
938EXPORT_SYMBOL(vprintk);
939
Matt Mackalld59745c2005-05-01 08:59:02 -0700940#else
941
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -0800942static void call_console_drivers(unsigned start, unsigned end)
Jesper Juhl40dc5652005-10-30 15:02:46 -0800943{
944}
Matt Mackalld59745c2005-05-01 08:59:02 -0700945
946#endif
947
Samuel Thibaultf7511d52008-04-30 00:54:51 -0700948static int __add_preferred_console(char *name, int idx, char *options,
949 char *brl_options)
950{
951 struct console_cmdline *c;
952 int i;
953
954 /*
955 * See if this tty is not yet registered, and
956 * if we have a slot free.
957 */
958 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
959 if (strcmp(console_cmdline[i].name, name) == 0 &&
960 console_cmdline[i].index == idx) {
961 if (!brl_options)
962 selected_console = i;
963 return 0;
964 }
965 if (i == MAX_CMDLINECONSOLES)
966 return -E2BIG;
967 if (!brl_options)
968 selected_console = i;
969 c = &console_cmdline[i];
970 strlcpy(c->name, name, sizeof(c->name));
971 c->options = options;
972#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
973 c->brl_options = brl_options;
974#endif
975 c->index = idx;
976 return 0;
977}
John Z. Bohach2ea1c532006-03-24 03:18:19 -0800978/*
979 * Set up a list of consoles. Called from init/main.c
980 */
981static int __init console_setup(char *str)
982{
Yinghai Lueaa944a2007-07-15 23:37:27 -0700983 char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for index */
Samuel Thibaultf7511d52008-04-30 00:54:51 -0700984 char *s, *options, *brl_options = NULL;
John Z. Bohach2ea1c532006-03-24 03:18:19 -0800985 int idx;
986
Samuel Thibaultf7511d52008-04-30 00:54:51 -0700987#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
988 if (!memcmp(str, "brl,", 4)) {
989 brl_options = "";
990 str += 4;
991 } else if (!memcmp(str, "brl=", 4)) {
992 brl_options = str + 4;
993 str = strchr(brl_options, ',');
994 if (!str) {
995 printk(KERN_ERR "need port name after brl=\n");
996 return 1;
997 }
998 *(str++) = 0;
999 }
1000#endif
1001
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001002 /*
1003 * Decode str into name, index, options.
1004 */
1005 if (str[0] >= '0' && str[0] <= '9') {
Yinghai Lueaa944a2007-07-15 23:37:27 -07001006 strcpy(buf, "ttyS");
1007 strncpy(buf + 4, str, sizeof(buf) - 5);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001008 } else {
Yinghai Lueaa944a2007-07-15 23:37:27 -07001009 strncpy(buf, str, sizeof(buf) - 1);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001010 }
Yinghai Lueaa944a2007-07-15 23:37:27 -07001011 buf[sizeof(buf) - 1] = 0;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001012 if ((options = strchr(str, ',')) != NULL)
1013 *(options++) = 0;
1014#ifdef __sparc__
1015 if (!strcmp(str, "ttya"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07001016 strcpy(buf, "ttyS0");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001017 if (!strcmp(str, "ttyb"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07001018 strcpy(buf, "ttyS1");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001019#endif
Yinghai Lueaa944a2007-07-15 23:37:27 -07001020 for (s = buf; *s; s++)
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001021 if ((*s >= '0' && *s <= '9') || *s == ',')
1022 break;
1023 idx = simple_strtoul(s, NULL, 10);
1024 *s = 0;
1025
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001026 __add_preferred_console(buf, idx, options, brl_options);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001027 console_set_on_cmdline = 1;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001028 return 1;
1029}
1030__setup("console=", console_setup);
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032/**
Matt Mackall3c0547b2005-05-16 21:53:47 -07001033 * add_preferred_console - add a device to the list of preferred consoles.
Martin Waitzddad86c2005-11-13 16:08:14 -08001034 * @name: device name
1035 * @idx: device index
1036 * @options: options for this console
Matt Mackall3c0547b2005-05-16 21:53:47 -07001037 *
1038 * The last preferred console added will be used for kernel messages
1039 * and stdin/out/err for init. Normally this is used by console_setup
1040 * above to handle user-supplied console arguments; however it can also
1041 * be used by arch-specific code either to override the user or more
1042 * commonly to provide a default console (ie from PROM variables) when
1043 * the user has not supplied one.
1044 */
David S. Millerfb445ee2007-12-29 01:19:49 -08001045int add_preferred_console(char *name, int idx, char *options)
Matt Mackall3c0547b2005-05-16 21:53:47 -07001046{
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001047 return __add_preferred_console(name, idx, options, NULL);
Matt Mackall3c0547b2005-05-16 21:53:47 -07001048}
1049
Daniel Ritzb6b1d872007-08-03 16:07:43 +02001050int update_console_cmdline(char *name, int idx, char *name_new, int idx_new, char *options)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07001051{
1052 struct console_cmdline *c;
1053 int i;
1054
1055 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++)
1056 if (strcmp(console_cmdline[i].name, name) == 0 &&
1057 console_cmdline[i].index == idx) {
1058 c = &console_cmdline[i];
Markus Armbrusterf7352952008-04-30 00:54:52 -07001059 strlcpy(c->name, name_new, sizeof(c->name));
Yinghai Lu18a8bd92007-07-15 23:37:59 -07001060 c->name[sizeof(c->name) - 1] = 0;
1061 c->options = options;
1062 c->index = idx_new;
1063 return i;
1064 }
1065 /* not found */
1066 return -1;
1067}
1068
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001069int console_suspend_enabled = 1;
1070EXPORT_SYMBOL(console_suspend_enabled);
1071
1072static int __init console_suspend_disable(char *str)
1073{
1074 console_suspend_enabled = 0;
1075 return 1;
1076}
1077__setup("no_console_suspend", console_suspend_disable);
1078
Matt Mackall3c0547b2005-05-16 21:53:47 -07001079/**
Linus Torvalds557240b2006-06-19 18:16:01 -07001080 * suspend_console - suspend the console subsystem
1081 *
1082 * This disables printk() while we go into suspend states
1083 */
1084void suspend_console(void)
1085{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001086 if (!console_suspend_enabled)
1087 return;
Pavel Machek0d630812008-07-23 21:28:32 -07001088 printk("Suspending console(s) (use no_console_suspend to debug)\n");
Torben Hohnac751ef2011-01-25 15:07:35 -08001089 console_lock();
Linus Torvalds557240b2006-06-19 18:16:01 -07001090 console_suspended = 1;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001091 up(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07001092}
1093
1094void resume_console(void)
1095{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001096 if (!console_suspend_enabled)
1097 return;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001098 down(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07001099 console_suspended = 0;
Torben Hohnac751ef2011-01-25 15:07:35 -08001100 console_unlock();
Linus Torvalds557240b2006-06-19 18:16:01 -07001101}
1102
1103/**
Kevin Cernekee034260d2010-06-03 22:11:25 -07001104 * console_cpu_notify - print deferred console messages after CPU hotplug
1105 * @self: notifier struct
1106 * @action: CPU hotplug event
1107 * @hcpu: unused
1108 *
1109 * If printk() is called from a CPU that is not online yet, the messages
1110 * will be spooled but will not show up on the console. This function is
1111 * called when a new CPU comes online (or fails to come up), and ensures
1112 * that any such output gets printed.
1113 */
1114static int __cpuinit console_cpu_notify(struct notifier_block *self,
1115 unsigned long action, void *hcpu)
1116{
1117 switch (action) {
1118 case CPU_ONLINE:
1119 case CPU_DEAD:
1120 case CPU_DYING:
1121 case CPU_DOWN_FAILED:
1122 case CPU_UP_CANCELED:
Torben Hohnac751ef2011-01-25 15:07:35 -08001123 console_lock();
1124 console_unlock();
Kevin Cernekee034260d2010-06-03 22:11:25 -07001125 }
1126 return NOTIFY_OK;
1127}
1128
1129/**
Torben Hohnac751ef2011-01-25 15:07:35 -08001130 * console_lock - lock the console system for exclusive use.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001132 * Acquires a lock which guarantees that the caller has
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 * exclusive access to the console system and the console_drivers list.
1134 *
1135 * Can sleep, returns nothing.
1136 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001137void console_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
Eric Sesterhenn8abd8e22006-04-01 01:21:17 +02001139 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 down(&console_sem);
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001141 if (console_suspended)
1142 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 console_locked = 1;
1144 console_may_schedule = 1;
1145}
Torben Hohnac751ef2011-01-25 15:07:35 -08001146EXPORT_SYMBOL(console_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Torben Hohnac751ef2011-01-25 15:07:35 -08001148/**
1149 * console_trylock - try to lock the console system for exclusive use.
1150 *
1151 * Tried to acquire a lock which guarantees that the caller has
1152 * exclusive access to the console system and the console_drivers list.
1153 *
1154 * returns 1 on success, and 0 on failure to acquire the lock.
1155 */
1156int console_trylock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157{
1158 if (down_trylock(&console_sem))
Torben Hohnac751ef2011-01-25 15:07:35 -08001159 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001160 if (console_suspended) {
1161 up(&console_sem);
Torben Hohnac751ef2011-01-25 15:07:35 -08001162 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 console_locked = 1;
1165 console_may_schedule = 0;
Torben Hohnac751ef2011-01-25 15:07:35 -08001166 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
Torben Hohnac751ef2011-01-25 15:07:35 -08001168EXPORT_SYMBOL(console_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170int is_console_locked(void)
1171{
1172 return console_locked;
1173}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Peter Zijlstrab845b512008-08-08 21:47:09 +02001175static DEFINE_PER_CPU(int, printk_pending);
1176
1177void printk_tick(void)
1178{
Eric Dumazet40dc11f2010-11-26 17:22:16 +01001179 if (__this_cpu_read(printk_pending)) {
1180 __this_cpu_write(printk_pending, 0);
Peter Zijlstrab845b512008-08-08 21:47:09 +02001181 wake_up_interruptible(&log_wait);
1182 }
1183}
1184
1185int printk_needs_cpu(int cpu)
1186{
Eric Dumazet40dc11f2010-11-26 17:22:16 +01001187 if (cpu_is_offline(cpu))
Heiko Carstens61ab25442010-11-26 13:00:59 +01001188 printk_tick();
Eric Dumazet40dc11f2010-11-26 17:22:16 +01001189 return __this_cpu_read(printk_pending);
Peter Zijlstrab845b512008-08-08 21:47:09 +02001190}
1191
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08001192void wake_up_klogd(void)
1193{
Peter Zijlstrab845b512008-08-08 21:47:09 +02001194 if (waitqueue_active(&log_wait))
Heiko Carstens49f41382010-11-26 13:42:47 +01001195 this_cpu_write(printk_pending, 1);
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08001196}
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198/**
Torben Hohnac751ef2011-01-25 15:07:35 -08001199 * console_unlock - unlock the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001201 * Releases the console_lock which the caller holds on the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 * and the console driver list.
1203 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001204 * While the console_lock was held, console output may have been buffered
1205 * by printk(). If this is the case, console_unlock(); emits
1206 * the output prior to releasing the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 *
1208 * If there is output waiting for klogd, we wake it up.
1209 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001210 * console_unlock(); may be called from any context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001212void console_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
1214 unsigned long flags;
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -08001215 unsigned _con_start, _log_end;
1216 unsigned wake_klogd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Linus Torvalds557240b2006-06-19 18:16:01 -07001218 if (console_suspended) {
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01001219 up(&console_sem);
Linus Torvalds557240b2006-06-19 18:16:01 -07001220 return;
1221 }
Antonino A. Daplas78944e52006-08-05 12:14:16 -07001222
1223 console_may_schedule = 0;
1224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 for ( ; ; ) {
1226 spin_lock_irqsave(&logbuf_lock, flags);
1227 wake_klogd |= log_start - log_end;
1228 if (con_start == log_end)
1229 break; /* Nothing to print */
1230 _con_start = con_start;
1231 _log_end = log_end;
1232 con_start = log_end; /* Flush */
1233 spin_unlock(&logbuf_lock);
Steven Rostedt81d68a92008-05-12 21:20:42 +02001234 stop_critical_timings(); /* don't trace print latency */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 call_console_drivers(_con_start, _log_end);
Steven Rostedt81d68a92008-05-12 21:20:42 +02001236 start_critical_timings();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 local_irq_restore(flags);
1238 }
1239 console_locked = 0;
Feng Tangfe3d8ad2011-03-22 16:34:21 -07001240
1241 /* Release the exclusive_console once it is used */
1242 if (unlikely(exclusive_console))
1243 exclusive_console = NULL;
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 up(&console_sem);
1246 spin_unlock_irqrestore(&logbuf_lock, flags);
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08001247 if (wake_klogd)
1248 wake_up_klogd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249}
Torben Hohnac751ef2011-01-25 15:07:35 -08001250EXPORT_SYMBOL(console_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Martin Waitzddad86c2005-11-13 16:08:14 -08001252/**
1253 * console_conditional_schedule - yield the CPU if required
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 *
1255 * If the console code is currently allowed to sleep, and
1256 * if this CPU should yield the CPU to another task, do
1257 * so here.
1258 *
Torben Hohnac751ef2011-01-25 15:07:35 -08001259 * Must be called within console_lock();.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 */
1261void __sched console_conditional_schedule(void)
1262{
1263 if (console_may_schedule)
1264 cond_resched();
1265}
1266EXPORT_SYMBOL(console_conditional_schedule);
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268void console_unblank(void)
1269{
1270 struct console *c;
1271
1272 /*
1273 * console_unblank can no longer be called in interrupt context unless
1274 * oops_in_progress is set to 1..
1275 */
1276 if (oops_in_progress) {
1277 if (down_trylock(&console_sem) != 0)
1278 return;
1279 } else
Torben Hohnac751ef2011-01-25 15:07:35 -08001280 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 console_locked = 1;
1283 console_may_schedule = 0;
Robin Getz4d091612009-07-01 21:08:37 -04001284 for_each_console(c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if ((c->flags & CON_ENABLED) && c->unblank)
1286 c->unblank();
Torben Hohnac751ef2011-01-25 15:07:35 -08001287 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290/*
1291 * Return the console tty driver structure and its associated index
1292 */
1293struct tty_driver *console_device(int *index)
1294{
1295 struct console *c;
1296 struct tty_driver *driver = NULL;
1297
Torben Hohnac751ef2011-01-25 15:07:35 -08001298 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04001299 for_each_console(c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (!c->device)
1301 continue;
1302 driver = c->device(c, index);
1303 if (driver)
1304 break;
1305 }
Torben Hohnac751ef2011-01-25 15:07:35 -08001306 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return driver;
1308}
1309
1310/*
1311 * Prevent further output on the passed console device so that (for example)
1312 * serial drivers can disable console output before suspending a port, and can
1313 * re-enable output afterwards.
1314 */
1315void console_stop(struct console *console)
1316{
Torben Hohnac751ef2011-01-25 15:07:35 -08001317 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 console->flags &= ~CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08001319 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
1321EXPORT_SYMBOL(console_stop);
1322
1323void console_start(struct console *console)
1324{
Torben Hohnac751ef2011-01-25 15:07:35 -08001325 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 console->flags |= CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08001327 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329EXPORT_SYMBOL(console_start);
1330
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07001331static int __read_mostly keep_bootcon;
1332
1333static int __init keep_bootcon_setup(char *str)
1334{
1335 keep_bootcon = 1;
1336 printk(KERN_INFO "debug: skip boot console de-registration.\n");
1337
1338 return 0;
1339}
1340
1341early_param("keep_bootcon", keep_bootcon_setup);
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343/*
1344 * The console driver calls this routine during kernel initialization
1345 * to register the console printing procedure with printk() and to
1346 * print any messages that were printed by the kernel before the
1347 * console driver was initialized.
Robin Getz4d091612009-07-01 21:08:37 -04001348 *
1349 * This can happen pretty early during the boot process (because of
1350 * early_printk) - sometimes before setup_arch() completes - be careful
1351 * of what kernel features are used - they may not be initialised yet.
1352 *
1353 * There are two types of consoles - bootconsoles (early_printk) and
1354 * "real" consoles (everything which is not a bootconsole) which are
1355 * handled differently.
1356 * - Any number of bootconsoles can be registered at any time.
1357 * - As soon as a "real" console is registered, all bootconsoles
1358 * will be unregistered automatically.
1359 * - Once a "real" console is registered, any attempt to register a
1360 * bootconsoles will be rejected
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 */
Robin Getz4d091612009-07-01 21:08:37 -04001362void register_console(struct console *newcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363{
Jesper Juhl40dc5652005-10-30 15:02:46 -08001364 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 unsigned long flags;
Robin Getz4d091612009-07-01 21:08:37 -04001366 struct console *bcon = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Robin Getz4d091612009-07-01 21:08:37 -04001368 /*
1369 * before we register a new CON_BOOT console, make sure we don't
1370 * already have a valid console
1371 */
1372 if (console_drivers && newcon->flags & CON_BOOT) {
1373 /* find the last or real console */
1374 for_each_console(bcon) {
1375 if (!(bcon->flags & CON_BOOT)) {
1376 printk(KERN_INFO "Too late to register bootconsole %s%d\n",
1377 newcon->name, newcon->index);
1378 return;
1379 }
1380 }
Gerd Hoffmann69331af2007-05-08 00:26:49 -07001381 }
1382
Robin Getz4d091612009-07-01 21:08:37 -04001383 if (console_drivers && console_drivers->flags & CON_BOOT)
1384 bcon = console_drivers;
1385
1386 if (preferred_console < 0 || bcon || !console_drivers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 preferred_console = selected_console;
1388
Robin Getz4d091612009-07-01 21:08:37 -04001389 if (newcon->early_setup)
1390 newcon->early_setup();
Yinghai Lu18a8bd92007-07-15 23:37:59 -07001391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 /*
1393 * See if we want to use this console driver. If we
1394 * didn't select a console we take the first one
1395 * that registers here.
1396 */
1397 if (preferred_console < 0) {
Robin Getz4d091612009-07-01 21:08:37 -04001398 if (newcon->index < 0)
1399 newcon->index = 0;
1400 if (newcon->setup == NULL ||
1401 newcon->setup(newcon, NULL) == 0) {
1402 newcon->flags |= CON_ENABLED;
1403 if (newcon->device) {
1404 newcon->flags |= CON_CONSDEV;
Jan Kiszkacd3a1b82008-05-12 21:21:04 +02001405 preferred_console = 0;
1406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 }
1408 }
1409
1410 /*
1411 * See if this console matches one we selected on
1412 * the command line.
1413 */
Jesper Juhl40dc5652005-10-30 15:02:46 -08001414 for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0];
1415 i++) {
Robin Getz4d091612009-07-01 21:08:37 -04001416 if (strcmp(console_cmdline[i].name, newcon->name) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 continue;
Robin Getz4d091612009-07-01 21:08:37 -04001418 if (newcon->index >= 0 &&
1419 newcon->index != console_cmdline[i].index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 continue;
Robin Getz4d091612009-07-01 21:08:37 -04001421 if (newcon->index < 0)
1422 newcon->index = console_cmdline[i].index;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001423#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1424 if (console_cmdline[i].brl_options) {
Robin Getz4d091612009-07-01 21:08:37 -04001425 newcon->flags |= CON_BRL;
1426 braille_register_console(newcon,
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001427 console_cmdline[i].index,
1428 console_cmdline[i].options,
1429 console_cmdline[i].brl_options);
1430 return;
1431 }
1432#endif
Robin Getz4d091612009-07-01 21:08:37 -04001433 if (newcon->setup &&
1434 newcon->setup(newcon, console_cmdline[i].options) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 break;
Robin Getz4d091612009-07-01 21:08:37 -04001436 newcon->flags |= CON_ENABLED;
1437 newcon->index = console_cmdline[i].index;
Greg Edwardsab4af032005-06-23 00:09:05 -07001438 if (i == selected_console) {
Robin Getz4d091612009-07-01 21:08:37 -04001439 newcon->flags |= CON_CONSDEV;
Greg Edwardsab4af032005-06-23 00:09:05 -07001440 preferred_console = selected_console;
1441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 break;
1443 }
1444
Robin Getz4d091612009-07-01 21:08:37 -04001445 if (!(newcon->flags & CON_ENABLED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return;
1447
Robin Getz8259cf42009-07-09 13:08:37 -04001448 /*
1449 * If we have a bootconsole, and are switching to a real console,
1450 * don't print everything out again, since when the boot console, and
1451 * the real console are the same physical device, it's annoying to
1452 * see the beginning boot messages twice
1453 */
1454 if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
Robin Getz4d091612009-07-01 21:08:37 -04001455 newcon->flags &= ~CON_PRINTBUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 /*
1458 * Put this console in the list - keep the
1459 * preferred driver at the head of the list.
1460 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001461 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04001462 if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) {
1463 newcon->next = console_drivers;
1464 console_drivers = newcon;
1465 if (newcon->next)
1466 newcon->next->flags &= ~CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 } else {
Robin Getz4d091612009-07-01 21:08:37 -04001468 newcon->next = console_drivers->next;
1469 console_drivers->next = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
Robin Getz4d091612009-07-01 21:08:37 -04001471 if (newcon->flags & CON_PRINTBUFFER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 /*
Torben Hohnac751ef2011-01-25 15:07:35 -08001473 * console_unlock(); will print out the buffered messages
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 * for us.
1475 */
1476 spin_lock_irqsave(&logbuf_lock, flags);
1477 con_start = log_start;
1478 spin_unlock_irqrestore(&logbuf_lock, flags);
Feng Tangfe3d8ad2011-03-22 16:34:21 -07001479 /*
1480 * We're about to replay the log buffer. Only do this to the
1481 * just-registered console to avoid excessive message spam to
1482 * the already-registered consoles.
1483 */
1484 exclusive_console = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 }
Torben Hohnac751ef2011-01-25 15:07:35 -08001486 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01001487 console_sysfs_notify();
Robin Getz8259cf42009-07-09 13:08:37 -04001488
1489 /*
1490 * By unregistering the bootconsoles after we enable the real console
1491 * we get the "console xxx enabled" message on all the consoles -
1492 * boot consoles, real consoles, etc - this is to ensure that end
1493 * users know there might be something in the kernel's log buffer that
1494 * went to the bootconsole (that they do not see on the real console)
1495 */
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07001496 if (bcon &&
1497 ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) &&
1498 !keep_bootcon) {
Robin Getz8259cf42009-07-09 13:08:37 -04001499 /* we need to iterate through twice, to make sure we print
1500 * everything out, before we unregister the console(s)
1501 */
1502 printk(KERN_INFO "console [%s%d] enabled, bootconsole disabled\n",
1503 newcon->name, newcon->index);
1504 for_each_console(bcon)
1505 if (bcon->flags & CON_BOOT)
1506 unregister_console(bcon);
1507 } else {
1508 printk(KERN_INFO "%sconsole [%s%d] enabled\n",
1509 (newcon->flags & CON_BOOT) ? "boot" : "" ,
1510 newcon->name, newcon->index);
1511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
1513EXPORT_SYMBOL(register_console);
1514
Jesper Juhl40dc5652005-10-30 15:02:46 -08001515int unregister_console(struct console *console)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Jesper Juhl40dc5652005-10-30 15:02:46 -08001517 struct console *a, *b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 int res = 1;
1519
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001520#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
1521 if (console->flags & CON_BRL)
1522 return braille_unregister_console(console);
1523#endif
1524
Torben Hohnac751ef2011-01-25 15:07:35 -08001525 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 if (console_drivers == console) {
1527 console_drivers=console->next;
1528 res = 0;
Benjamin Herrenschmidte9b15b52005-11-23 13:37:44 -08001529 } else if (console_drivers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 for (a=console_drivers->next, b=console_drivers ;
1531 a; b=a, a=b->next) {
1532 if (a == console) {
1533 b->next = a->next;
1534 res = 0;
1535 break;
Jesper Juhl40dc5652005-10-30 15:02:46 -08001536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 }
1538 }
Jesper Juhl40dc5652005-10-30 15:02:46 -08001539
Gerd Hoffmann69331af2007-05-08 00:26:49 -07001540 /*
Greg Edwardsab4af032005-06-23 00:09:05 -07001541 * If this isn't the last console and it has CON_CONSDEV set, we
1542 * need to set it on the next preferred console.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 */
Gerd Hoffmann69331af2007-05-08 00:26:49 -07001544 if (console_drivers != NULL && console->flags & CON_CONSDEV)
Greg Edwardsab4af032005-06-23 00:09:05 -07001545 console_drivers->flags |= CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Torben Hohnac751ef2011-01-25 15:07:35 -08001547 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01001548 console_sysfs_notify();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return res;
1550}
1551EXPORT_SYMBOL(unregister_console);
Matt Mackalld59745c2005-05-01 08:59:02 -07001552
Kevin Cernekee034260d2010-06-03 22:11:25 -07001553static int __init printk_late_init(void)
Robin Getz0c5564b2007-08-20 15:22:47 -04001554{
Robin Getz4d091612009-07-01 21:08:37 -04001555 struct console *con;
1556
1557 for_each_console(con) {
1558 if (con->flags & CON_BOOT) {
Robin Getzcb00e992007-08-21 23:14:58 -04001559 printk(KERN_INFO "turn off boot console %s%d\n",
Robin Getz4d091612009-07-01 21:08:37 -04001560 con->name, con->index);
Sonic Zhang42c2c8c2009-08-06 15:58:11 -07001561 unregister_console(con);
Robin Getzcb00e992007-08-21 23:14:58 -04001562 }
Robin Getz0c5564b2007-08-20 15:22:47 -04001563 }
Kevin Cernekee034260d2010-06-03 22:11:25 -07001564 hotcpu_notifier(console_cpu_notify, 0);
Robin Getz0c5564b2007-08-20 15:22:47 -04001565 return 0;
1566}
Kevin Cernekee034260d2010-06-03 22:11:25 -07001567late_initcall(printk_late_init);
Robin Getz0c5564b2007-08-20 15:22:47 -04001568
Joe Perches7ef3d2f2008-02-08 04:21:25 -08001569#if defined CONFIG_PRINTK
Dave Young717115e2008-07-25 01:45:58 -07001570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571/*
1572 * printk rate limiting, lifted from the networking subsystem.
1573 *
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07001574 * This enforces a rate limit: not more than 10 kernel messages
1575 * every 5s to make a denial-of-service attack impossible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 */
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07001577DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10);
1578
Christian Borntraeger5c828712009-10-23 14:58:11 +02001579int __printk_ratelimit(const char *func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
Christian Borntraeger5c828712009-10-23 14:58:11 +02001581 return ___ratelimit(&printk_ratelimit_state, func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
Christian Borntraeger5c828712009-10-23 14:58:11 +02001583EXPORT_SYMBOL(__printk_ratelimit);
Andrew Mortonf46c4832006-11-02 22:07:16 -08001584
1585/**
1586 * printk_timed_ratelimit - caller-controlled printk ratelimiting
1587 * @caller_jiffies: pointer to caller's state
1588 * @interval_msecs: minimum interval between prints
1589 *
1590 * printk_timed_ratelimit() returns true if more than @interval_msecs
1591 * milliseconds have elapsed since the last time printk_timed_ratelimit()
1592 * returned true.
1593 */
1594bool printk_timed_ratelimit(unsigned long *caller_jiffies,
1595 unsigned int interval_msecs)
1596{
Guillaume Knispelf2d28a22009-03-17 16:18:42 +01001597 if (*caller_jiffies == 0
1598 || !time_in_range(jiffies, *caller_jiffies,
1599 *caller_jiffies
1600 + msecs_to_jiffies(interval_msecs))) {
1601 *caller_jiffies = jiffies;
Andrew Mortonf46c4832006-11-02 22:07:16 -08001602 return true;
1603 }
1604 return false;
1605}
1606EXPORT_SYMBOL(printk_timed_ratelimit);
Simon Kagstrom456b5652009-10-16 14:09:18 +02001607
1608static DEFINE_SPINLOCK(dump_list_lock);
1609static LIST_HEAD(dump_list);
1610
1611/**
1612 * kmsg_dump_register - register a kernel log dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08001613 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02001614 *
1615 * Adds a kernel log dumper to the system. The dump callback in the
1616 * structure will be called when the kernel oopses or panics and must be
1617 * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise.
1618 */
1619int kmsg_dump_register(struct kmsg_dumper *dumper)
1620{
1621 unsigned long flags;
1622 int err = -EBUSY;
1623
1624 /* The dump callback needs to be set */
1625 if (!dumper->dump)
1626 return -EINVAL;
1627
1628 spin_lock_irqsave(&dump_list_lock, flags);
1629 /* Don't allow registering multiple times */
1630 if (!dumper->registered) {
1631 dumper->registered = 1;
Huang Yingfb842b02011-01-12 16:59:43 -08001632 list_add_tail_rcu(&dumper->list, &dump_list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02001633 err = 0;
1634 }
1635 spin_unlock_irqrestore(&dump_list_lock, flags);
1636
1637 return err;
1638}
1639EXPORT_SYMBOL_GPL(kmsg_dump_register);
1640
1641/**
1642 * kmsg_dump_unregister - unregister a kmsg dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08001643 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02001644 *
1645 * Removes a dump device from the system. Returns zero on success and
1646 * %-EINVAL otherwise.
1647 */
1648int kmsg_dump_unregister(struct kmsg_dumper *dumper)
1649{
1650 unsigned long flags;
1651 int err = -EINVAL;
1652
1653 spin_lock_irqsave(&dump_list_lock, flags);
1654 if (dumper->registered) {
1655 dumper->registered = 0;
Huang Yingfb842b02011-01-12 16:59:43 -08001656 list_del_rcu(&dumper->list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02001657 err = 0;
1658 }
1659 spin_unlock_irqrestore(&dump_list_lock, flags);
Huang Yingfb842b02011-01-12 16:59:43 -08001660 synchronize_rcu();
Simon Kagstrom456b5652009-10-16 14:09:18 +02001661
1662 return err;
1663}
1664EXPORT_SYMBOL_GPL(kmsg_dump_unregister);
1665
Simon Kagstrom456b5652009-10-16 14:09:18 +02001666/**
1667 * kmsg_dump - dump kernel log to kernel message dumpers.
1668 * @reason: the reason (oops, panic etc) for dumping
1669 *
1670 * Iterate through each of the dump devices and call the oops/panic
1671 * callbacks with the log buffer.
1672 */
1673void kmsg_dump(enum kmsg_dump_reason reason)
1674{
1675 unsigned long end;
1676 unsigned chars;
1677 struct kmsg_dumper *dumper;
1678 const char *s1, *s2;
1679 unsigned long l1, l2;
1680 unsigned long flags;
1681
1682 /* Theoretically, the log could move on after we do this, but
1683 there's not a lot we can do about that. The new messages
1684 will overwrite the start of what we dump. */
1685 spin_lock_irqsave(&logbuf_lock, flags);
1686 end = log_end & LOG_BUF_MASK;
1687 chars = logged_chars;
1688 spin_unlock_irqrestore(&logbuf_lock, flags);
1689
Andi Kleen8c4af382010-08-09 17:20:36 -07001690 if (chars > end) {
1691 s1 = log_buf + log_buf_len - chars + end;
1692 l1 = chars - end;
Simon Kagstrom456b5652009-10-16 14:09:18 +02001693
1694 s2 = log_buf;
1695 l2 = end;
1696 } else {
1697 s1 = "";
1698 l1 = 0;
1699
Andi Kleen8c4af382010-08-09 17:20:36 -07001700 s2 = log_buf + end - chars;
1701 l2 = chars;
Simon Kagstrom456b5652009-10-16 14:09:18 +02001702 }
1703
Huang Yingfb842b02011-01-12 16:59:43 -08001704 rcu_read_lock();
1705 list_for_each_entry_rcu(dumper, &dump_list, list)
Simon Kagstrom456b5652009-10-16 14:09:18 +02001706 dumper->dump(dumper, reason, s1, l1, s2, l2);
Huang Yingfb842b02011-01-12 16:59:43 -08001707 rcu_read_unlock();
Simon Kagstrom456b5652009-10-16 14:09:18 +02001708}
Joe Perches7ef3d2f2008-02-08 04:21:25 -08001709#endif