Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 13 | * Fixed SMP synchronization, 08/08/99, Manfred Spraul |
Christian Kujau | 624dffc | 2006-01-15 02:43:54 +0100 | [diff] [blame] | 14 | * manfred@colorfullife.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | * Rewrote bits to get rid of console_lock |
Francois Cami | e1f8e87 | 2008-10-15 22:01:59 -0700 | [diff] [blame] | 16 | * 01Mar01 Andrew Morton |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
| 18 | |
| 19 | #include <linux/kernel.h> |
| 20 | #include <linux/mm.h> |
| 21 | #include <linux/tty.h> |
| 22 | #include <linux/tty_driver.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/console.h> |
| 24 | #include <linux/init.h> |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 25 | #include <linux/jiffies.h> |
| 26 | #include <linux/nmi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/module.h> |
Jan Engelhardt | 3b9c041 | 2006-06-25 05:48:15 -0700 | [diff] [blame] | 28 | #include <linux/moduleparam.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/interrupt.h> /* For in_interrupt() */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/delay.h> |
| 31 | #include <linux/smp.h> |
| 32 | #include <linux/security.h> |
| 33 | #include <linux/bootmem.h> |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 34 | #include <linux/memblock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/syscalls.h> |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 36 | #include <linux/kexec.h> |
Jason Wessel | d37d39a | 2010-05-20 21:04:27 -0500 | [diff] [blame] | 37 | #include <linux/kdb.h> |
Ingo Molnar | 3fff4c4 | 2009-09-22 16:18:09 +0200 | [diff] [blame] | 38 | #include <linux/ratelimit.h> |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 39 | #include <linux/kmsg_dump.h> |
Kees Cook | 0023459 | 2010-02-03 15:36:43 -0800 | [diff] [blame] | 40 | #include <linux/syslog.h> |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 41 | #include <linux/cpu.h> |
| 42 | #include <linux/notifier.h> |
Huang Ying | fb842b0 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 43 | #include <linux/rculist.h> |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 44 | #include <linux/poll.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | #include <asm/uaccess.h> |
| 47 | |
Johannes Berg | 9510035 | 2011-11-24 20:03:08 +0100 | [diff] [blame] | 48 | #define CREATE_TRACE_POINTS |
| 49 | #include <trace/events/printk.h> |
| 50 | |
Ingo Molnar | 076f977 | 2008-01-30 13:33:06 +0100 | [diff] [blame] | 51 | /* |
| 52 | * Architectures can override it: |
| 53 | */ |
Jiri Slaby | e17ba73 | 2008-05-12 15:44:40 +0200 | [diff] [blame] | 54 | void asmlinkage __attribute__((weak)) early_printk(const char *fmt, ...) |
Ingo Molnar | 076f977 | 2008-01-30 13:33:06 +0100 | [diff] [blame] | 55 | { |
| 56 | } |
| 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | /* printk's without a loglevel use this.. */ |
Mandeep Singh Baines | 5af5bcb | 2011-03-22 16:34:23 -0700 | [diff] [blame] | 59 | #define DEFAULT_MESSAGE_LOGLEVEL CONFIG_DEFAULT_MESSAGE_LOGLEVEL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | /* We show everything that is MORE important than this.. */ |
| 62 | #define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */ |
| 63 | #define DEFAULT_CONSOLE_LOGLEVEL 7 /* anything MORE serious than KERN_DEBUG */ |
| 64 | |
| 65 | DECLARE_WAIT_QUEUE_HEAD(log_wait); |
| 66 | |
| 67 | int console_printk[4] = { |
| 68 | DEFAULT_CONSOLE_LOGLEVEL, /* console_loglevel */ |
| 69 | DEFAULT_MESSAGE_LOGLEVEL, /* default_message_loglevel */ |
| 70 | MINIMUM_CONSOLE_LOGLEVEL, /* minimum_console_loglevel */ |
| 71 | DEFAULT_CONSOLE_LOGLEVEL, /* default_console_loglevel */ |
| 72 | }; |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | /* |
Patrick Pletscher | 0bbfb7c | 2007-02-17 20:10:16 +0100 | [diff] [blame] | 75 | * Low level drivers may need that to know if they can schedule in |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | * their unblank() callback or not. So let's export it. |
| 77 | */ |
| 78 | int oops_in_progress; |
| 79 | EXPORT_SYMBOL(oops_in_progress); |
| 80 | |
| 81 | /* |
| 82 | * console_sem protects the console_drivers list, and also |
| 83 | * provides serialisation for access to the entire console |
| 84 | * driver system. |
| 85 | */ |
Thomas Gleixner | 5b8c4f2 | 2010-09-07 14:33:43 +0000 | [diff] [blame] | 86 | static DEFINE_SEMAPHORE(console_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | struct console *console_drivers; |
Ingo Molnar | a29d1cf | 2008-06-02 13:19:08 +0200 | [diff] [blame] | 88 | EXPORT_SYMBOL_GPL(console_drivers); |
| 89 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | /* |
| 91 | * This is used for debugging the mess that is the VT code by |
| 92 | * keeping track if we have the console semaphore held. It's |
| 93 | * definitely not the perfect debug tool (we don't know if _WE_ |
| 94 | * hold it are racing, but it helps tracking those weird code |
| 95 | * path in the console code where we end up in places I want |
| 96 | * locked without the console sempahore held |
| 97 | */ |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 98 | static int console_locked, console_suspended; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
| 100 | /* |
Feng Tang | fe3d8ad | 2011-03-22 16:34:21 -0700 | [diff] [blame] | 101 | * If exclusive_console is non-NULL then only this console is to be printed to. |
| 102 | */ |
| 103 | static struct console *exclusive_console; |
| 104 | |
| 105 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | * Array of consoles built from command line options (console=) |
| 107 | */ |
| 108 | struct console_cmdline |
| 109 | { |
| 110 | char name[8]; /* Name of the driver */ |
| 111 | int index; /* Minor dev. to use */ |
| 112 | char *options; /* Options for the driver */ |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 113 | #ifdef CONFIG_A11Y_BRAILLE_CONSOLE |
| 114 | char *brl_options; /* Options for braille driver */ |
| 115 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | }; |
| 117 | |
| 118 | #define MAX_CMDLINECONSOLES 8 |
| 119 | |
| 120 | static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES]; |
| 121 | static int selected_console = -1; |
| 122 | static int preferred_console = -1; |
Markus Armbruster | 9e124fe | 2008-05-26 23:31:07 +0100 | [diff] [blame] | 123 | int console_set_on_cmdline; |
| 124 | EXPORT_SYMBOL(console_set_on_cmdline); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
| 126 | /* Flag: console code may call schedule() */ |
| 127 | static int console_may_schedule; |
| 128 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 129 | /* |
| 130 | * The printk log buffer consists of a chain of concatenated variable |
| 131 | * length records. Every record starts with a record header, containing |
| 132 | * the overall length of the record. |
| 133 | * |
| 134 | * The heads to the first and last entry in the buffer, as well as the |
| 135 | * sequence numbers of these both entries are maintained when messages |
| 136 | * are stored.. |
| 137 | * |
| 138 | * If the heads indicate available messages, the length in the header |
| 139 | * tells the start next message. A length == 0 for the next message |
| 140 | * indicates a wrap-around to the beginning of the buffer. |
| 141 | * |
| 142 | * Every record carries the monotonic timestamp in microseconds, as well as |
| 143 | * the standard userspace syslog level and syslog facility. The usual |
| 144 | * kernel messages use LOG_KERN; userspace-injected messages always carry |
| 145 | * a matching syslog facility, by default LOG_USER. The origin of every |
| 146 | * message can be reliably determined that way. |
| 147 | * |
| 148 | * The human readable log message directly follows the message header. The |
| 149 | * length of the message text is stored in the header, the stored message |
| 150 | * is not terminated. |
| 151 | * |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 152 | * Optionally, a message can carry a dictionary of properties (key/value pairs), |
| 153 | * to provide userspace with a machine-readable message context. |
| 154 | * |
| 155 | * Examples for well-defined, commonly used property names are: |
| 156 | * DEVICE=b12:8 device identifier |
| 157 | * b12:8 block dev_t |
| 158 | * c127:3 char dev_t |
| 159 | * n8 netdev ifindex |
| 160 | * +sound:card0 subsystem:devname |
| 161 | * SUBSYSTEM=pci driver-core subsystem name |
| 162 | * |
| 163 | * Valid characters in property names are [a-zA-Z0-9.-_]. The plain text value |
| 164 | * follows directly after a '=' character. Every property is terminated by |
| 165 | * a '\0' character. The last property is not terminated. |
| 166 | * |
| 167 | * Example of a message structure: |
| 168 | * 0000 ff 8f 00 00 00 00 00 00 monotonic time in nsec |
| 169 | * 0008 34 00 record is 52 bytes long |
| 170 | * 000a 0b 00 text is 11 bytes long |
| 171 | * 000c 1f 00 dictionary is 23 bytes long |
| 172 | * 000e 03 00 LOG_KERN (facility) LOG_ERR (level) |
| 173 | * 0010 69 74 27 73 20 61 20 6c "it's a l" |
| 174 | * 69 6e 65 "ine" |
| 175 | * 001b 44 45 56 49 43 "DEVIC" |
| 176 | * 45 3d 62 38 3a 32 00 44 "E=b8:2\0D" |
| 177 | * 52 49 56 45 52 3d 62 75 "RIVER=bu" |
| 178 | * 67 "g" |
| 179 | * 0032 00 00 00 padding to next message header |
| 180 | * |
| 181 | * The 'struct log' buffer header must never be directly exported to |
| 182 | * userspace, it is a kernel-private implementation detail that might |
| 183 | * need to be changed in the future, when the requirements change. |
| 184 | * |
| 185 | * /dev/kmsg exports the structured data in the following line format: |
| 186 | * "level,sequnum,timestamp;<message text>\n" |
| 187 | * |
| 188 | * The optional key/value pairs are attached as continuation lines starting |
| 189 | * with a space character and terminated by a newline. All possible |
| 190 | * non-prinatable characters are escaped in the "\xff" notation. |
| 191 | * |
| 192 | * Users of the export format should ignore possible additional values |
| 193 | * separated by ',', and find the message after the ';' character. |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 194 | */ |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 195 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 196 | struct log { |
| 197 | u64 ts_nsec; /* timestamp in nanoseconds */ |
| 198 | u16 len; /* length of entire record */ |
| 199 | u16 text_len; /* length of text buffer */ |
| 200 | u16 dict_len; /* length of dictionary buffer */ |
| 201 | u16 level; /* syslog level + facility */ |
| 202 | }; |
| 203 | |
| 204 | /* |
| 205 | * The logbuf_lock protects kmsg buffer, indices, counters. It is also |
| 206 | * used in interesting ways to provide interlocking in console_unlock(); |
| 207 | */ |
| 208 | static DEFINE_RAW_SPINLOCK(logbuf_lock); |
| 209 | |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 210 | /* the next printk record to read by syslog(READ) or /proc/kmsg */ |
| 211 | static u64 syslog_seq; |
| 212 | static u32 syslog_idx; |
| 213 | |
| 214 | /* index and sequence number of the first record stored in the buffer */ |
| 215 | static u64 log_first_seq; |
| 216 | static u32 log_first_idx; |
| 217 | |
| 218 | /* index and sequence number of the next record to store in the buffer */ |
| 219 | static u64 log_next_seq; |
| 220 | #ifdef CONFIG_PRINTK |
| 221 | static u32 log_next_idx; |
| 222 | |
| 223 | /* the next printk record to read after the last 'clear' command */ |
| 224 | static u64 clear_seq; |
| 225 | static u32 clear_idx; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 226 | |
| 227 | #define LOG_LINE_MAX 1024 |
| 228 | |
| 229 | /* record buffer */ |
Stephen Warren | f8450fc | 2012-05-10 16:14:33 -0600 | [diff] [blame] | 230 | #if !defined(CONFIG_64BIT) || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) |
| 231 | #define LOG_ALIGN 4 |
| 232 | #else |
| 233 | #define LOG_ALIGN 8 |
| 234 | #endif |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 235 | #define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT) |
Stephen Warren | f8450fc | 2012-05-10 16:14:33 -0600 | [diff] [blame] | 236 | static char __log_buf[__LOG_BUF_LEN] __aligned(LOG_ALIGN); |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 237 | static char *log_buf = __log_buf; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 238 | static u32 log_buf_len = __LOG_BUF_LEN; |
| 239 | |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 240 | /* cpu currently holding logbuf_lock */ |
| 241 | static volatile unsigned int logbuf_cpu = UINT_MAX; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 242 | |
| 243 | /* human readable text of the record */ |
| 244 | static char *log_text(const struct log *msg) |
| 245 | { |
| 246 | return (char *)msg + sizeof(struct log); |
| 247 | } |
| 248 | |
| 249 | /* optional key/value pair dictionary attached to the record */ |
| 250 | static char *log_dict(const struct log *msg) |
| 251 | { |
| 252 | return (char *)msg + sizeof(struct log) + msg->text_len; |
| 253 | } |
| 254 | |
| 255 | /* get record by index; idx must point to valid msg */ |
| 256 | static struct log *log_from_idx(u32 idx) |
| 257 | { |
| 258 | struct log *msg = (struct log *)(log_buf + idx); |
| 259 | |
| 260 | /* |
| 261 | * A length == 0 record is the end of buffer marker. Wrap around and |
| 262 | * read the message at the start of the buffer. |
| 263 | */ |
| 264 | if (!msg->len) |
| 265 | return (struct log *)log_buf; |
| 266 | return msg; |
| 267 | } |
| 268 | |
| 269 | /* get next record; idx must point to valid msg */ |
| 270 | static u32 log_next(u32 idx) |
| 271 | { |
| 272 | struct log *msg = (struct log *)(log_buf + idx); |
| 273 | |
| 274 | /* length == 0 indicates the end of the buffer; wrap */ |
| 275 | /* |
| 276 | * A length == 0 record is the end of buffer marker. Wrap around and |
| 277 | * read the message at the start of the buffer as *this* one, and |
| 278 | * return the one after that. |
| 279 | */ |
| 280 | if (!msg->len) { |
| 281 | msg = (struct log *)log_buf; |
| 282 | return msg->len; |
| 283 | } |
| 284 | return idx + msg->len; |
| 285 | } |
| 286 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 287 | /* insert record into the buffer, discard old ones, update heads */ |
| 288 | static void log_store(int facility, int level, |
| 289 | const char *dict, u16 dict_len, |
| 290 | const char *text, u16 text_len) |
| 291 | { |
| 292 | struct log *msg; |
| 293 | u32 size, pad_len; |
| 294 | |
| 295 | /* number of '\0' padding bytes to next message */ |
| 296 | size = sizeof(struct log) + text_len + dict_len; |
| 297 | pad_len = (-size) & (LOG_ALIGN - 1); |
| 298 | size += pad_len; |
| 299 | |
| 300 | while (log_first_seq < log_next_seq) { |
| 301 | u32 free; |
| 302 | |
| 303 | if (log_next_idx > log_first_idx) |
| 304 | free = max(log_buf_len - log_next_idx, log_first_idx); |
| 305 | else |
| 306 | free = log_first_idx - log_next_idx; |
| 307 | |
| 308 | if (free > size + sizeof(struct log)) |
| 309 | break; |
| 310 | |
| 311 | /* drop old messages until we have enough contiuous space */ |
| 312 | log_first_idx = log_next(log_first_idx); |
| 313 | log_first_seq++; |
| 314 | } |
| 315 | |
| 316 | if (log_next_idx + size + sizeof(struct log) >= log_buf_len) { |
| 317 | /* |
| 318 | * This message + an additional empty header does not fit |
| 319 | * at the end of the buffer. Add an empty header with len == 0 |
| 320 | * to signify a wrap around. |
| 321 | */ |
| 322 | memset(log_buf + log_next_idx, 0, sizeof(struct log)); |
| 323 | log_next_idx = 0; |
| 324 | } |
| 325 | |
| 326 | /* fill message */ |
| 327 | msg = (struct log *)(log_buf + log_next_idx); |
| 328 | memcpy(log_text(msg), text, text_len); |
| 329 | msg->text_len = text_len; |
| 330 | memcpy(log_dict(msg), dict, dict_len); |
| 331 | msg->dict_len = dict_len; |
| 332 | msg->level = (facility << 3) | (level & 7); |
| 333 | msg->ts_nsec = local_clock(); |
| 334 | memset(log_dict(msg) + dict_len, 0, pad_len); |
| 335 | msg->len = sizeof(struct log) + text_len + dict_len + pad_len; |
| 336 | |
| 337 | /* insert message */ |
| 338 | log_next_idx += msg->len; |
| 339 | log_next_seq++; |
| 340 | } |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 341 | |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 342 | /* /dev/kmsg - userspace message inject/listen interface */ |
| 343 | struct devkmsg_user { |
| 344 | u64 seq; |
| 345 | u32 idx; |
| 346 | struct mutex lock; |
| 347 | char buf[8192]; |
| 348 | }; |
| 349 | |
| 350 | static ssize_t devkmsg_writev(struct kiocb *iocb, const struct iovec *iv, |
| 351 | unsigned long count, loff_t pos) |
| 352 | { |
| 353 | char *buf, *line; |
| 354 | int i; |
| 355 | int level = default_message_loglevel; |
| 356 | int facility = 1; /* LOG_USER */ |
| 357 | size_t len = iov_length(iv, count); |
| 358 | ssize_t ret = len; |
| 359 | |
| 360 | if (len > LOG_LINE_MAX) |
| 361 | return -EINVAL; |
| 362 | buf = kmalloc(len+1, GFP_KERNEL); |
| 363 | if (buf == NULL) |
| 364 | return -ENOMEM; |
| 365 | |
| 366 | line = buf; |
| 367 | for (i = 0; i < count; i++) { |
| 368 | if (copy_from_user(line, iv[i].iov_base, iv[i].iov_len)) |
| 369 | goto out; |
| 370 | line += iv[i].iov_len; |
| 371 | } |
| 372 | |
| 373 | /* |
| 374 | * Extract and skip the syslog prefix <[0-9]*>. Coming from userspace |
| 375 | * the decimal value represents 32bit, the lower 3 bit are the log |
| 376 | * level, the rest are the log facility. |
| 377 | * |
| 378 | * If no prefix or no userspace facility is specified, we |
| 379 | * enforce LOG_USER, to be able to reliably distinguish |
| 380 | * kernel-generated messages from userspace-injected ones. |
| 381 | */ |
| 382 | line = buf; |
| 383 | if (line[0] == '<') { |
| 384 | char *endp = NULL; |
| 385 | |
| 386 | i = simple_strtoul(line+1, &endp, 10); |
| 387 | if (endp && endp[0] == '>') { |
| 388 | level = i & 7; |
| 389 | if (i >> 3) |
| 390 | facility = i >> 3; |
| 391 | endp++; |
| 392 | len -= endp - line; |
| 393 | line = endp; |
| 394 | } |
| 395 | } |
| 396 | line[len] = '\0'; |
| 397 | |
| 398 | printk_emit(facility, level, NULL, 0, "%s", line); |
| 399 | out: |
| 400 | kfree(buf); |
| 401 | return ret; |
| 402 | } |
| 403 | |
| 404 | static ssize_t devkmsg_read(struct file *file, char __user *buf, |
| 405 | size_t count, loff_t *ppos) |
| 406 | { |
| 407 | struct devkmsg_user *user = file->private_data; |
| 408 | struct log *msg; |
Kay Sievers | 5fc32490 | 2012-05-08 13:04:17 +0200 | [diff] [blame] | 409 | u64 ts_usec; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 410 | size_t i; |
| 411 | size_t len; |
| 412 | ssize_t ret; |
| 413 | |
| 414 | if (!user) |
| 415 | return -EBADF; |
| 416 | |
| 417 | mutex_lock(&user->lock); |
| 418 | raw_spin_lock(&logbuf_lock); |
| 419 | while (user->seq == log_next_seq) { |
| 420 | if (file->f_flags & O_NONBLOCK) { |
| 421 | ret = -EAGAIN; |
| 422 | raw_spin_unlock(&logbuf_lock); |
| 423 | goto out; |
| 424 | } |
| 425 | |
| 426 | raw_spin_unlock(&logbuf_lock); |
| 427 | ret = wait_event_interruptible(log_wait, |
| 428 | user->seq != log_next_seq); |
| 429 | if (ret) |
| 430 | goto out; |
| 431 | raw_spin_lock(&logbuf_lock); |
| 432 | } |
| 433 | |
| 434 | if (user->seq < log_first_seq) { |
| 435 | /* our last seen message is gone, return error and reset */ |
| 436 | user->idx = log_first_idx; |
| 437 | user->seq = log_first_seq; |
| 438 | ret = -EPIPE; |
| 439 | raw_spin_unlock(&logbuf_lock); |
| 440 | goto out; |
| 441 | } |
| 442 | |
| 443 | msg = log_from_idx(user->idx); |
Kay Sievers | 5fc32490 | 2012-05-08 13:04:17 +0200 | [diff] [blame] | 444 | ts_usec = msg->ts_nsec; |
| 445 | do_div(ts_usec, 1000); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 446 | len = sprintf(user->buf, "%u,%llu,%llu;", |
Kay Sievers | 5fc32490 | 2012-05-08 13:04:17 +0200 | [diff] [blame] | 447 | msg->level, user->seq, ts_usec); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 448 | |
| 449 | /* escape non-printable characters */ |
| 450 | for (i = 0; i < msg->text_len; i++) { |
| 451 | char c = log_text(msg)[i]; |
| 452 | |
| 453 | if (c < ' ' || c >= 128) |
| 454 | len += sprintf(user->buf + len, "\\x%02x", c); |
| 455 | else |
| 456 | user->buf[len++] = c; |
| 457 | } |
| 458 | user->buf[len++] = '\n'; |
| 459 | |
| 460 | if (msg->dict_len) { |
| 461 | bool line = true; |
| 462 | |
| 463 | for (i = 0; i < msg->dict_len; i++) { |
| 464 | char c = log_dict(msg)[i]; |
| 465 | |
| 466 | if (line) { |
| 467 | user->buf[len++] = ' '; |
| 468 | line = false; |
| 469 | } |
| 470 | |
| 471 | if (c == '\0') { |
| 472 | user->buf[len++] = '\n'; |
| 473 | line = true; |
| 474 | continue; |
| 475 | } |
| 476 | |
| 477 | if (c < ' ' || c >= 128) { |
| 478 | len += sprintf(user->buf + len, "\\x%02x", c); |
| 479 | continue; |
| 480 | } |
| 481 | |
| 482 | user->buf[len++] = c; |
| 483 | } |
| 484 | user->buf[len++] = '\n'; |
| 485 | } |
| 486 | |
| 487 | user->idx = log_next(user->idx); |
| 488 | user->seq++; |
| 489 | raw_spin_unlock(&logbuf_lock); |
| 490 | |
| 491 | if (len > count) { |
| 492 | ret = -EINVAL; |
| 493 | goto out; |
| 494 | } |
| 495 | |
| 496 | if (copy_to_user(buf, user->buf, len)) { |
| 497 | ret = -EFAULT; |
| 498 | goto out; |
| 499 | } |
| 500 | ret = len; |
| 501 | out: |
| 502 | mutex_unlock(&user->lock); |
| 503 | return ret; |
| 504 | } |
| 505 | |
| 506 | static loff_t devkmsg_llseek(struct file *file, loff_t offset, int whence) |
| 507 | { |
| 508 | struct devkmsg_user *user = file->private_data; |
| 509 | loff_t ret = 0; |
| 510 | |
| 511 | if (!user) |
| 512 | return -EBADF; |
| 513 | if (offset) |
| 514 | return -ESPIPE; |
| 515 | |
| 516 | raw_spin_lock(&logbuf_lock); |
| 517 | switch (whence) { |
| 518 | case SEEK_SET: |
| 519 | /* the first record */ |
| 520 | user->idx = log_first_idx; |
| 521 | user->seq = log_first_seq; |
| 522 | break; |
| 523 | case SEEK_DATA: |
| 524 | /* |
| 525 | * The first record after the last SYSLOG_ACTION_CLEAR, |
| 526 | * like issued by 'dmesg -c'. Reading /dev/kmsg itself |
| 527 | * changes no global state, and does not clear anything. |
| 528 | */ |
| 529 | user->idx = clear_idx; |
| 530 | user->seq = clear_seq; |
| 531 | break; |
| 532 | case SEEK_END: |
| 533 | /* after the last record */ |
| 534 | user->idx = log_next_idx; |
| 535 | user->seq = log_next_seq; |
| 536 | break; |
| 537 | default: |
| 538 | ret = -EINVAL; |
| 539 | } |
| 540 | raw_spin_unlock(&logbuf_lock); |
| 541 | return ret; |
| 542 | } |
| 543 | |
| 544 | static unsigned int devkmsg_poll(struct file *file, poll_table *wait) |
| 545 | { |
| 546 | struct devkmsg_user *user = file->private_data; |
| 547 | int ret = 0; |
| 548 | |
| 549 | if (!user) |
| 550 | return POLLERR|POLLNVAL; |
| 551 | |
| 552 | poll_wait(file, &log_wait, wait); |
| 553 | |
| 554 | raw_spin_lock(&logbuf_lock); |
| 555 | if (user->seq < log_next_seq) { |
| 556 | /* return error when data has vanished underneath us */ |
| 557 | if (user->seq < log_first_seq) |
| 558 | ret = POLLIN|POLLRDNORM|POLLERR|POLLPRI; |
| 559 | ret = POLLIN|POLLRDNORM; |
| 560 | } |
| 561 | raw_spin_unlock(&logbuf_lock); |
| 562 | |
| 563 | return ret; |
| 564 | } |
| 565 | |
| 566 | static int devkmsg_open(struct inode *inode, struct file *file) |
| 567 | { |
| 568 | struct devkmsg_user *user; |
| 569 | int err; |
| 570 | |
| 571 | /* write-only does not need any file context */ |
| 572 | if ((file->f_flags & O_ACCMODE) == O_WRONLY) |
| 573 | return 0; |
| 574 | |
| 575 | err = security_syslog(SYSLOG_ACTION_READ_ALL); |
| 576 | if (err) |
| 577 | return err; |
| 578 | |
| 579 | user = kmalloc(sizeof(struct devkmsg_user), GFP_KERNEL); |
| 580 | if (!user) |
| 581 | return -ENOMEM; |
| 582 | |
| 583 | mutex_init(&user->lock); |
| 584 | |
| 585 | raw_spin_lock(&logbuf_lock); |
| 586 | user->idx = log_first_idx; |
| 587 | user->seq = log_first_seq; |
| 588 | raw_spin_unlock(&logbuf_lock); |
| 589 | |
| 590 | file->private_data = user; |
| 591 | return 0; |
| 592 | } |
| 593 | |
| 594 | static int devkmsg_release(struct inode *inode, struct file *file) |
| 595 | { |
| 596 | struct devkmsg_user *user = file->private_data; |
| 597 | |
| 598 | if (!user) |
| 599 | return 0; |
| 600 | |
| 601 | mutex_destroy(&user->lock); |
| 602 | kfree(user); |
| 603 | return 0; |
| 604 | } |
| 605 | |
| 606 | const struct file_operations kmsg_fops = { |
| 607 | .open = devkmsg_open, |
| 608 | .read = devkmsg_read, |
| 609 | .aio_write = devkmsg_writev, |
| 610 | .llseek = devkmsg_llseek, |
| 611 | .poll = devkmsg_poll, |
| 612 | .release = devkmsg_release, |
| 613 | }; |
| 614 | |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 615 | #ifdef CONFIG_KEXEC |
| 616 | /* |
| 617 | * This appends the listed symbols to /proc/vmcoreinfo |
| 618 | * |
| 619 | * /proc/vmcoreinfo is used by various utiilties, like crash and makedumpfile to |
| 620 | * obtain access to symbols that are otherwise very difficult to locate. These |
| 621 | * symbols are specifically used so that utilities can access and extract the |
| 622 | * dmesg log from a vmcore file after a crash. |
| 623 | */ |
| 624 | void log_buf_kexec_setup(void) |
| 625 | { |
| 626 | VMCOREINFO_SYMBOL(log_buf); |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 627 | VMCOREINFO_SYMBOL(log_buf_len); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 628 | VMCOREINFO_SYMBOL(log_first_idx); |
| 629 | VMCOREINFO_SYMBOL(log_next_idx); |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 630 | } |
| 631 | #endif |
| 632 | |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 633 | /* requested log_buf_len from kernel cmdline */ |
| 634 | static unsigned long __initdata new_log_buf_len; |
| 635 | |
| 636 | /* save requested log_buf_len since it's too early to process it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | static int __init log_buf_len_setup(char *str) |
| 638 | { |
Denys Vlasenko | eed4a2a | 2008-02-06 01:37:02 -0800 | [diff] [blame] | 639 | unsigned size = memparse(str, &str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | |
| 641 | if (size) |
| 642 | size = roundup_pow_of_two(size); |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 643 | if (size > log_buf_len) |
| 644 | new_log_buf_len = size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 646 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | } |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 648 | early_param("log_buf_len", log_buf_len_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 650 | void __init setup_log_buf(int early) |
| 651 | { |
| 652 | unsigned long flags; |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 653 | char *new_log_buf; |
| 654 | int free; |
| 655 | |
| 656 | if (!new_log_buf_len) |
| 657 | return; |
| 658 | |
| 659 | if (early) { |
| 660 | unsigned long mem; |
| 661 | |
| 662 | mem = memblock_alloc(new_log_buf_len, PAGE_SIZE); |
Tejun Heo | 1f5026a | 2011-07-12 09:58:09 +0200 | [diff] [blame] | 663 | if (!mem) |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 664 | return; |
| 665 | new_log_buf = __va(mem); |
| 666 | } else { |
| 667 | new_log_buf = alloc_bootmem_nopanic(new_log_buf_len); |
| 668 | } |
| 669 | |
| 670 | if (unlikely(!new_log_buf)) { |
| 671 | pr_err("log_buf_len: %ld bytes not available\n", |
| 672 | new_log_buf_len); |
| 673 | return; |
| 674 | } |
| 675 | |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 676 | raw_spin_lock_irqsave(&logbuf_lock, flags); |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 677 | log_buf_len = new_log_buf_len; |
| 678 | log_buf = new_log_buf; |
| 679 | new_log_buf_len = 0; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 680 | free = __LOG_BUF_LEN - log_next_idx; |
| 681 | memcpy(log_buf, __log_buf, __LOG_BUF_LEN); |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 682 | raw_spin_unlock_irqrestore(&logbuf_lock, flags); |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 683 | |
| 684 | pr_info("log_buf_len: %d\n", log_buf_len); |
| 685 | pr_info("early log buf free: %d(%d%%)\n", |
| 686 | free, (free * 100) / __LOG_BUF_LEN); |
| 687 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 689 | #ifdef CONFIG_BOOT_PRINTK_DELAY |
| 690 | |
Namhyung Kim | 674dff6 | 2010-10-26 14:22:48 -0700 | [diff] [blame] | 691 | static int boot_delay; /* msecs delay after each printk during bootup */ |
Dave Young | 3a3b6ed | 2009-09-22 16:43:31 -0700 | [diff] [blame] | 692 | static unsigned long long loops_per_msec; /* based on boot_delay */ |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 693 | |
| 694 | static int __init boot_delay_setup(char *str) |
| 695 | { |
| 696 | unsigned long lpj; |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 697 | |
| 698 | lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */ |
| 699 | loops_per_msec = (unsigned long long)lpj / 1000 * HZ; |
| 700 | |
| 701 | get_option(&str, &boot_delay); |
| 702 | if (boot_delay > 10 * 1000) |
| 703 | boot_delay = 0; |
| 704 | |
Dave Young | 3a3b6ed | 2009-09-22 16:43:31 -0700 | [diff] [blame] | 705 | pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, " |
| 706 | "HZ: %d, loops_per_msec: %llu\n", |
| 707 | boot_delay, preset_lpj, lpj, HZ, loops_per_msec); |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 708 | return 1; |
| 709 | } |
| 710 | __setup("boot_delay=", boot_delay_setup); |
| 711 | |
| 712 | static void boot_delay_msec(void) |
| 713 | { |
| 714 | unsigned long long k; |
| 715 | unsigned long timeout; |
| 716 | |
| 717 | if (boot_delay == 0 || system_state != SYSTEM_BOOTING) |
| 718 | return; |
| 719 | |
Dave Young | 3a3b6ed | 2009-09-22 16:43:31 -0700 | [diff] [blame] | 720 | k = (unsigned long long)loops_per_msec * boot_delay; |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 721 | |
| 722 | timeout = jiffies + msecs_to_jiffies(boot_delay); |
| 723 | while (k) { |
| 724 | k--; |
| 725 | cpu_relax(); |
| 726 | /* |
| 727 | * use (volatile) jiffies to prevent |
| 728 | * compiler reduction; loop termination via jiffies |
| 729 | * is secondary and may or may not happen. |
| 730 | */ |
| 731 | if (time_after(jiffies, timeout)) |
| 732 | break; |
| 733 | touch_nmi_watchdog(); |
| 734 | } |
| 735 | } |
| 736 | #else |
| 737 | static inline void boot_delay_msec(void) |
| 738 | { |
| 739 | } |
| 740 | #endif |
| 741 | |
Dan Rosenberg | eaf06b2 | 2010-11-11 14:05:18 -0800 | [diff] [blame] | 742 | #ifdef CONFIG_SECURITY_DMESG_RESTRICT |
| 743 | int dmesg_restrict = 1; |
| 744 | #else |
| 745 | int dmesg_restrict; |
| 746 | #endif |
| 747 | |
Linus Torvalds | ee24aeb | 2011-02-10 17:53:55 -0800 | [diff] [blame] | 748 | static int syslog_action_restricted(int type) |
| 749 | { |
| 750 | if (dmesg_restrict) |
| 751 | return 1; |
| 752 | /* Unless restricted, we allow "read all" and "get buffer size" for everybody */ |
| 753 | return type != SYSLOG_ACTION_READ_ALL && type != SYSLOG_ACTION_SIZE_BUFFER; |
| 754 | } |
| 755 | |
| 756 | static int check_syslog_permissions(int type, bool from_file) |
| 757 | { |
| 758 | /* |
| 759 | * If this is from /proc/kmsg and we've already opened it, then we've |
| 760 | * already done the capabilities checks at open time. |
| 761 | */ |
| 762 | if (from_file && type != SYSLOG_ACTION_OPEN) |
| 763 | return 0; |
| 764 | |
| 765 | if (syslog_action_restricted(type)) { |
| 766 | if (capable(CAP_SYSLOG)) |
| 767 | return 0; |
| 768 | /* For historical reasons, accept CAP_SYS_ADMIN too, with a warning */ |
| 769 | if (capable(CAP_SYS_ADMIN)) { |
Jonathan Nieder | f2c0d02 | 2011-08-08 06:22:43 +0200 | [diff] [blame] | 770 | printk_once(KERN_WARNING "%s (%d): " |
| 771 | "Attempt to access syslog with CAP_SYS_ADMIN " |
| 772 | "but no CAP_SYSLOG (deprecated).\n", |
| 773 | current->comm, task_pid_nr(current)); |
Linus Torvalds | ee24aeb | 2011-02-10 17:53:55 -0800 | [diff] [blame] | 774 | return 0; |
| 775 | } |
| 776 | return -EPERM; |
| 777 | } |
| 778 | return 0; |
| 779 | } |
| 780 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 781 | #if defined(CONFIG_PRINTK_TIME) |
| 782 | static bool printk_time = 1; |
| 783 | #else |
| 784 | static bool printk_time; |
| 785 | #endif |
| 786 | module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR); |
| 787 | |
Kay Sievers | 649e6ee | 2012-05-10 04:30:45 +0200 | [diff] [blame] | 788 | static size_t prepend_timestamp(unsigned long long t, char *buf) |
| 789 | { |
| 790 | unsigned long rem_ns; |
| 791 | |
| 792 | if (!printk_time) |
| 793 | return 0; |
| 794 | |
| 795 | if (!buf) |
| 796 | return 15; |
| 797 | |
| 798 | rem_ns = do_div(t, 1000000000); |
| 799 | |
| 800 | return sprintf(buf, "[%5lu.%06lu] ", |
| 801 | (unsigned long) t, rem_ns / 1000); |
| 802 | } |
| 803 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 804 | static int syslog_print_line(u32 idx, char *text, size_t size) |
| 805 | { |
| 806 | struct log *msg; |
| 807 | size_t len; |
| 808 | |
| 809 | msg = log_from_idx(idx); |
| 810 | if (!text) { |
| 811 | /* calculate length only */ |
| 812 | len = 3; |
| 813 | |
| 814 | if (msg->level > 9) |
| 815 | len++; |
| 816 | if (msg->level > 99) |
| 817 | len++; |
Kay Sievers | 649e6ee | 2012-05-10 04:30:45 +0200 | [diff] [blame] | 818 | len += prepend_timestamp(0, NULL); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 819 | |
| 820 | len += msg->text_len; |
| 821 | len++; |
| 822 | return len; |
| 823 | } |
| 824 | |
| 825 | len = sprintf(text, "<%u>", msg->level); |
Kay Sievers | 649e6ee | 2012-05-10 04:30:45 +0200 | [diff] [blame] | 826 | len += prepend_timestamp(msg->ts_nsec, text + len); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 827 | if (len + msg->text_len > size) |
| 828 | return -EINVAL; |
| 829 | memcpy(text + len, log_text(msg), msg->text_len); |
| 830 | len += msg->text_len; |
| 831 | text[len++] = '\n'; |
| 832 | return len; |
| 833 | } |
| 834 | |
| 835 | static int syslog_print(char __user *buf, int size) |
| 836 | { |
| 837 | char *text; |
| 838 | int len; |
| 839 | |
| 840 | text = kmalloc(LOG_LINE_MAX, GFP_KERNEL); |
| 841 | if (!text) |
| 842 | return -ENOMEM; |
| 843 | |
| 844 | raw_spin_lock_irq(&logbuf_lock); |
| 845 | if (syslog_seq < log_first_seq) { |
| 846 | /* messages are gone, move to first one */ |
| 847 | syslog_seq = log_first_seq; |
| 848 | syslog_idx = log_first_idx; |
| 849 | } |
| 850 | len = syslog_print_line(syslog_idx, text, LOG_LINE_MAX); |
| 851 | syslog_idx = log_next(syslog_idx); |
| 852 | syslog_seq++; |
| 853 | raw_spin_unlock_irq(&logbuf_lock); |
| 854 | |
| 855 | if (len > 0 && copy_to_user(buf, text, len)) |
| 856 | len = -EFAULT; |
| 857 | |
| 858 | kfree(text); |
| 859 | return len; |
| 860 | } |
| 861 | |
| 862 | static int syslog_print_all(char __user *buf, int size, bool clear) |
| 863 | { |
| 864 | char *text; |
| 865 | int len = 0; |
| 866 | |
| 867 | text = kmalloc(LOG_LINE_MAX, GFP_KERNEL); |
| 868 | if (!text) |
| 869 | return -ENOMEM; |
| 870 | |
| 871 | raw_spin_lock_irq(&logbuf_lock); |
| 872 | if (buf) { |
| 873 | u64 next_seq; |
| 874 | u64 seq; |
| 875 | u32 idx; |
| 876 | |
| 877 | if (clear_seq < log_first_seq) { |
| 878 | /* messages are gone, move to first available one */ |
| 879 | clear_seq = log_first_seq; |
| 880 | clear_idx = log_first_idx; |
| 881 | } |
| 882 | |
| 883 | /* |
| 884 | * Find first record that fits, including all following records, |
| 885 | * into the user-provided buffer for this dump. |
| 886 | */ |
| 887 | seq = clear_seq; |
| 888 | idx = clear_idx; |
| 889 | while (seq < log_next_seq) { |
| 890 | len += syslog_print_line(idx, NULL, 0); |
| 891 | idx = log_next(idx); |
| 892 | seq++; |
| 893 | } |
| 894 | seq = clear_seq; |
| 895 | idx = clear_idx; |
| 896 | while (len > size && seq < log_next_seq) { |
| 897 | len -= syslog_print_line(idx, NULL, 0); |
| 898 | idx = log_next(idx); |
| 899 | seq++; |
| 900 | } |
| 901 | |
| 902 | /* last message in this dump */ |
| 903 | next_seq = log_next_seq; |
| 904 | |
| 905 | len = 0; |
| 906 | while (len >= 0 && seq < next_seq) { |
| 907 | int textlen; |
| 908 | |
| 909 | textlen = syslog_print_line(idx, text, LOG_LINE_MAX); |
| 910 | if (textlen < 0) { |
| 911 | len = textlen; |
| 912 | break; |
| 913 | } |
| 914 | idx = log_next(idx); |
| 915 | seq++; |
| 916 | |
| 917 | raw_spin_unlock_irq(&logbuf_lock); |
| 918 | if (copy_to_user(buf + len, text, textlen)) |
| 919 | len = -EFAULT; |
| 920 | else |
| 921 | len += textlen; |
| 922 | raw_spin_lock_irq(&logbuf_lock); |
| 923 | |
| 924 | if (seq < log_first_seq) { |
| 925 | /* messages are gone, move to next one */ |
| 926 | seq = log_first_seq; |
| 927 | idx = log_first_idx; |
| 928 | } |
| 929 | } |
| 930 | } |
| 931 | |
| 932 | if (clear) { |
| 933 | clear_seq = log_next_seq; |
| 934 | clear_idx = log_next_idx; |
| 935 | } |
| 936 | raw_spin_unlock_irq(&logbuf_lock); |
| 937 | |
| 938 | kfree(text); |
| 939 | return len; |
| 940 | } |
| 941 | |
Kees Cook | 0023459 | 2010-02-03 15:36:43 -0800 | [diff] [blame] | 942 | int do_syslog(int type, char __user *buf, int len, bool from_file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | { |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 944 | bool clear = false; |
| 945 | static int saved_console_loglevel = -1; |
Linus Torvalds | ee24aeb | 2011-02-10 17:53:55 -0800 | [diff] [blame] | 946 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | |
Linus Torvalds | ee24aeb | 2011-02-10 17:53:55 -0800 | [diff] [blame] | 948 | error = check_syslog_permissions(type, from_file); |
| 949 | if (error) |
| 950 | goto out; |
Eric Paris | 12b3052 | 2010-11-15 18:36:29 -0500 | [diff] [blame] | 951 | |
| 952 | error = security_syslog(type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | if (error) |
| 954 | return error; |
| 955 | |
| 956 | switch (type) { |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 957 | case SYSLOG_ACTION_CLOSE: /* Close log */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 959 | case SYSLOG_ACTION_OPEN: /* Open log */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 961 | case SYSLOG_ACTION_READ: /* Read from log */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | error = -EINVAL; |
| 963 | if (!buf || len < 0) |
| 964 | goto out; |
| 965 | error = 0; |
| 966 | if (!len) |
| 967 | goto out; |
| 968 | if (!access_ok(VERIFY_WRITE, buf, len)) { |
| 969 | error = -EFAULT; |
| 970 | goto out; |
| 971 | } |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 972 | error = wait_event_interruptible(log_wait, |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 973 | syslog_seq != log_next_seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | if (error) |
| 975 | goto out; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 976 | error = syslog_print(buf, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 978 | /* Read/clear last kernel messages */ |
| 979 | case SYSLOG_ACTION_READ_CLEAR: |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 980 | clear = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | /* FALL THRU */ |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 982 | /* Read last kernel messages */ |
| 983 | case SYSLOG_ACTION_READ_ALL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | error = -EINVAL; |
| 985 | if (!buf || len < 0) |
| 986 | goto out; |
| 987 | error = 0; |
| 988 | if (!len) |
| 989 | goto out; |
| 990 | if (!access_ok(VERIFY_WRITE, buf, len)) { |
| 991 | error = -EFAULT; |
| 992 | goto out; |
| 993 | } |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 994 | error = syslog_print_all(buf, len, clear); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 996 | /* Clear ring buffer */ |
| 997 | case SYSLOG_ACTION_CLEAR: |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 998 | syslog_print_all(NULL, 0, true); |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 999 | /* Disable logging to console */ |
| 1000 | case SYSLOG_ACTION_CONSOLE_OFF: |
Frans Pop | 1aaad49 | 2009-07-06 13:31:48 +0200 | [diff] [blame] | 1001 | if (saved_console_loglevel == -1) |
| 1002 | saved_console_loglevel = console_loglevel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | console_loglevel = minimum_console_loglevel; |
| 1004 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1005 | /* Enable logging to console */ |
| 1006 | case SYSLOG_ACTION_CONSOLE_ON: |
Frans Pop | 1aaad49 | 2009-07-06 13:31:48 +0200 | [diff] [blame] | 1007 | if (saved_console_loglevel != -1) { |
| 1008 | console_loglevel = saved_console_loglevel; |
| 1009 | saved_console_loglevel = -1; |
| 1010 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1012 | /* Set level of messages printed to console */ |
| 1013 | case SYSLOG_ACTION_CONSOLE_LEVEL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | error = -EINVAL; |
| 1015 | if (len < 1 || len > 8) |
| 1016 | goto out; |
| 1017 | if (len < minimum_console_loglevel) |
| 1018 | len = minimum_console_loglevel; |
| 1019 | console_loglevel = len; |
Frans Pop | 1aaad49 | 2009-07-06 13:31:48 +0200 | [diff] [blame] | 1020 | /* Implicitly re-enable logging to console */ |
| 1021 | saved_console_loglevel = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | error = 0; |
| 1023 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1024 | /* Number of chars in the log buffer */ |
| 1025 | case SYSLOG_ACTION_SIZE_UNREAD: |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1026 | raw_spin_lock_irq(&logbuf_lock); |
| 1027 | if (syslog_seq < log_first_seq) { |
| 1028 | /* messages are gone, move to first one */ |
| 1029 | syslog_seq = log_first_seq; |
| 1030 | syslog_idx = log_first_idx; |
| 1031 | } |
| 1032 | if (from_file) { |
| 1033 | /* |
| 1034 | * Short-cut for poll(/"proc/kmsg") which simply checks |
| 1035 | * for pending data, not the size; return the count of |
| 1036 | * records, not the length. |
| 1037 | */ |
| 1038 | error = log_next_idx - syslog_idx; |
| 1039 | } else { |
| 1040 | u64 seq; |
| 1041 | u32 idx; |
| 1042 | |
| 1043 | error = 0; |
| 1044 | seq = syslog_seq; |
| 1045 | idx = syslog_idx; |
| 1046 | while (seq < log_next_seq) { |
| 1047 | error += syslog_print_line(idx, NULL, 0); |
| 1048 | idx = log_next(idx); |
| 1049 | seq++; |
| 1050 | } |
| 1051 | } |
| 1052 | raw_spin_unlock_irq(&logbuf_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1054 | /* Size of the log buffer */ |
| 1055 | case SYSLOG_ACTION_SIZE_BUFFER: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | error = log_buf_len; |
| 1057 | break; |
| 1058 | default: |
| 1059 | error = -EINVAL; |
| 1060 | break; |
| 1061 | } |
| 1062 | out: |
| 1063 | return error; |
| 1064 | } |
| 1065 | |
Heiko Carstens | 1e7bfb2 | 2009-01-14 14:14:29 +0100 | [diff] [blame] | 1066 | SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | { |
Kees Cook | 0023459 | 2010-02-03 15:36:43 -0800 | [diff] [blame] | 1068 | return do_syslog(type, buf, len, SYSLOG_FROM_CALL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | } |
| 1070 | |
Jason Wessel | 67fc4e0 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 1071 | #ifdef CONFIG_KGDB_KDB |
| 1072 | /* kdb dmesg command needs access to the syslog buffer. do_syslog() |
| 1073 | * uses locks so it cannot be used during debugging. Just tell kdb |
| 1074 | * where the start and end of the physical and logical logs are. This |
| 1075 | * is equivalent to do_syslog(3). |
| 1076 | */ |
| 1077 | void kdb_syslog_data(char *syslog_data[4]) |
| 1078 | { |
| 1079 | syslog_data[0] = log_buf; |
| 1080 | syslog_data[1] = log_buf + log_buf_len; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1081 | syslog_data[2] = log_buf + log_first_idx; |
| 1082 | syslog_data[3] = log_buf + log_next_idx; |
Jason Wessel | 67fc4e0 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 1083 | } |
| 1084 | #endif /* CONFIG_KGDB_KDB */ |
| 1085 | |
Rusty Russell | 2329abf | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 1086 | static bool __read_mostly ignore_loglevel; |
Ingo Molnar | 79290822 | 2006-12-06 20:40:51 -0800 | [diff] [blame] | 1087 | |
Adrian Bunk | 99eea6a | 2006-12-22 01:07:00 -0800 | [diff] [blame] | 1088 | static int __init ignore_loglevel_setup(char *str) |
Ingo Molnar | 79290822 | 2006-12-06 20:40:51 -0800 | [diff] [blame] | 1089 | { |
| 1090 | ignore_loglevel = 1; |
| 1091 | printk(KERN_INFO "debug: ignoring loglevel setting.\n"); |
| 1092 | |
Ingo Molnar | c4772d9 | 2008-01-31 22:45:23 +0100 | [diff] [blame] | 1093 | return 0; |
Ingo Molnar | 79290822 | 2006-12-06 20:40:51 -0800 | [diff] [blame] | 1094 | } |
| 1095 | |
Ingo Molnar | c4772d9 | 2008-01-31 22:45:23 +0100 | [diff] [blame] | 1096 | early_param("ignore_loglevel", ignore_loglevel_setup); |
Rusty Russell | 29d4d6d | 2012-01-13 09:32:17 +1030 | [diff] [blame] | 1097 | module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR); |
Yanmin Zhang | 0eca6b7 | 2011-10-31 17:11:25 -0700 | [diff] [blame] | 1098 | MODULE_PARM_DESC(ignore_loglevel, "ignore loglevel setting, to" |
| 1099 | "print all kernel messages to the console."); |
Ingo Molnar | 79290822 | 2006-12-06 20:40:51 -0800 | [diff] [blame] | 1100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | * Call the console drivers, asking them to write out |
| 1103 | * log_buf[start] to log_buf[end - 1]. |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1104 | * The console_lock must be held. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1106 | static void call_console_drivers(int level, const char *text, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | { |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1108 | struct console *con; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1110 | trace_console(text, 0, len, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1112 | if (level >= console_loglevel && !ignore_loglevel) |
| 1113 | return; |
| 1114 | if (!console_drivers) |
| 1115 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1117 | for_each_console(con) { |
| 1118 | if (exclusive_console && con != exclusive_console) |
| 1119 | continue; |
| 1120 | if (!(con->flags & CON_ENABLED)) |
| 1121 | continue; |
| 1122 | if (!con->write) |
| 1123 | continue; |
| 1124 | if (!cpu_online(smp_processor_id()) && |
| 1125 | !(con->flags & CON_ANYTIME)) |
| 1126 | continue; |
| 1127 | con->write(con, text, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | } |
| 1130 | |
| 1131 | /* |
| 1132 | * Zap console related locks when oopsing. Only zap at most once |
| 1133 | * every 10 seconds, to leave time for slow consoles to print a |
| 1134 | * full oops. |
| 1135 | */ |
| 1136 | static void zap_locks(void) |
| 1137 | { |
| 1138 | static unsigned long oops_timestamp; |
| 1139 | |
| 1140 | if (time_after_eq(jiffies, oops_timestamp) && |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 1141 | !time_after(jiffies, oops_timestamp + 30 * HZ)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | return; |
| 1143 | |
| 1144 | oops_timestamp = jiffies; |
| 1145 | |
Peter Zijlstra | 94d24fc | 2011-06-07 11:17:30 +0200 | [diff] [blame] | 1146 | debug_locks_off(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | /* If a crash is occurring, make sure we can't deadlock */ |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 1148 | raw_spin_lock_init(&logbuf_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | /* And make sure that we print immediately */ |
Thomas Gleixner | 5b8c4f2 | 2010-09-07 14:33:43 +0000 | [diff] [blame] | 1150 | sema_init(&console_sem, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | } |
| 1152 | |
Michael Ellerman | 76a8ad2 | 2006-06-25 05:47:40 -0700 | [diff] [blame] | 1153 | /* Check if we have any console registered that can be called early in boot. */ |
| 1154 | static int have_callable_console(void) |
| 1155 | { |
| 1156 | struct console *con; |
| 1157 | |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1158 | for_each_console(con) |
Michael Ellerman | 76a8ad2 | 2006-06-25 05:47:40 -0700 | [diff] [blame] | 1159 | if (con->flags & CON_ANYTIME) |
| 1160 | return 1; |
| 1161 | |
| 1162 | return 0; |
| 1163 | } |
| 1164 | |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1165 | /* |
| 1166 | * Can we actually use the console at this time on this cpu? |
| 1167 | * |
| 1168 | * Console drivers may assume that per-cpu resources have |
| 1169 | * been allocated. So unless they're explicitly marked as |
| 1170 | * being able to cope (CON_ANYTIME) don't call them until |
| 1171 | * this CPU is officially up. |
| 1172 | */ |
| 1173 | static inline int can_use_console(unsigned int cpu) |
| 1174 | { |
| 1175 | return cpu_online(cpu) || have_callable_console(); |
| 1176 | } |
| 1177 | |
| 1178 | /* |
| 1179 | * Try to get console ownership to actually show the kernel |
| 1180 | * messages from a 'printk'. Return true (and with the |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1181 | * console_lock held, and 'console_locked' set) if it |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1182 | * is successful, false otherwise. |
| 1183 | * |
| 1184 | * This gets called with the 'logbuf_lock' spinlock held and |
| 1185 | * interrupts disabled. It should return with 'lockbuf_lock' |
| 1186 | * released but interrupts still disabled. |
| 1187 | */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1188 | static int console_trylock_for_printk(unsigned int cpu) |
Namhyung Kim | 8155c02 | 2010-10-26 14:22:47 -0700 | [diff] [blame] | 1189 | __releases(&logbuf_lock) |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1190 | { |
Peter Zijlstra | 0b5e1c5 | 2011-06-07 11:15:33 +0200 | [diff] [blame] | 1191 | int retval = 0, wake = 0; |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1192 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1193 | if (console_trylock()) { |
Linus Torvalds | 093a07e | 2008-04-15 13:09:54 -0700 | [diff] [blame] | 1194 | retval = 1; |
| 1195 | |
| 1196 | /* |
| 1197 | * If we can't use the console, we need to release |
| 1198 | * the console semaphore by hand to avoid flushing |
| 1199 | * the buffer. We need to hold the console semaphore |
| 1200 | * in order to do this test safely. |
| 1201 | */ |
| 1202 | if (!can_use_console(cpu)) { |
| 1203 | console_locked = 0; |
Peter Zijlstra | 0b5e1c5 | 2011-06-07 11:15:33 +0200 | [diff] [blame] | 1204 | wake = 1; |
Linus Torvalds | 093a07e | 2008-04-15 13:09:54 -0700 | [diff] [blame] | 1205 | retval = 0; |
| 1206 | } |
| 1207 | } |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1208 | logbuf_cpu = UINT_MAX; |
Peter Zijlstra | 0b5e1c5 | 2011-06-07 11:15:33 +0200 | [diff] [blame] | 1209 | if (wake) |
| 1210 | up(&console_sem); |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 1211 | raw_spin_unlock(&logbuf_lock); |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1212 | return retval; |
| 1213 | } |
Ingo Molnar | 32a7600 | 2008-01-25 21:07:58 +0100 | [diff] [blame] | 1214 | |
Dave Young | af91322 | 2009-09-22 16:43:33 -0700 | [diff] [blame] | 1215 | int printk_delay_msec __read_mostly; |
| 1216 | |
| 1217 | static inline void printk_delay(void) |
| 1218 | { |
| 1219 | if (unlikely(printk_delay_msec)) { |
| 1220 | int m = printk_delay_msec; |
| 1221 | |
| 1222 | while (m--) { |
| 1223 | mdelay(1); |
| 1224 | touch_nmi_watchdog(); |
| 1225 | } |
| 1226 | } |
| 1227 | } |
| 1228 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1229 | asmlinkage int vprintk_emit(int facility, int level, |
| 1230 | const char *dict, size_t dictlen, |
| 1231 | const char *fmt, va_list args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | { |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1233 | static int recursion_bug; |
| 1234 | static char buf[LOG_LINE_MAX]; |
| 1235 | static size_t buflen; |
| 1236 | static int buflevel; |
| 1237 | static char textbuf[LOG_LINE_MAX]; |
Kay Sievers | 5c5d5ca | 2012-05-10 04:32:53 +0200 | [diff] [blame] | 1238 | static struct task_struct *cont; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1239 | char *text = textbuf; |
| 1240 | size_t textlen; |
Nick Andrew | ac60ad7 | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 1241 | unsigned long flags; |
Ingo Molnar | 32a7600 | 2008-01-25 21:07:58 +0100 | [diff] [blame] | 1242 | int this_cpu; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1243 | bool newline = false; |
Kay Sievers | 5c5d5ca | 2012-05-10 04:32:53 +0200 | [diff] [blame] | 1244 | bool prefix = false; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1245 | int printed_len = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 1247 | boot_delay_msec(); |
Dave Young | af91322 | 2009-09-22 16:43:33 -0700 | [diff] [blame] | 1248 | printk_delay(); |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 1249 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | /* This stops the holder of console_sem just where we want him */ |
Peter Zijlstra | 1a9a8ae | 2011-06-07 11:17:30 +0200 | [diff] [blame] | 1251 | local_irq_save(flags); |
Ingo Molnar | 32a7600 | 2008-01-25 21:07:58 +0100 | [diff] [blame] | 1252 | this_cpu = smp_processor_id(); |
| 1253 | |
| 1254 | /* |
| 1255 | * Ouch, printk recursed into itself! |
| 1256 | */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1257 | if (unlikely(logbuf_cpu == this_cpu)) { |
Ingo Molnar | 32a7600 | 2008-01-25 21:07:58 +0100 | [diff] [blame] | 1258 | /* |
| 1259 | * If a crash is occurring during printk() on this CPU, |
| 1260 | * then try to get the crash message out but make sure |
| 1261 | * we can't deadlock. Otherwise just return to avoid the |
| 1262 | * recursion and return - but flag the recursion so that |
| 1263 | * it can be printed at the next appropriate moment: |
| 1264 | */ |
Peter Zijlstra | 94d24fc | 2011-06-07 11:17:30 +0200 | [diff] [blame] | 1265 | if (!oops_in_progress && !lockdep_recursing(current)) { |
Tejun Heo | 3b8945e | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 1266 | recursion_bug = 1; |
Ingo Molnar | 32a7600 | 2008-01-25 21:07:58 +0100 | [diff] [blame] | 1267 | goto out_restore_irqs; |
| 1268 | } |
| 1269 | zap_locks(); |
| 1270 | } |
| 1271 | |
Ingo Molnar | a0f1ccf | 2006-07-03 00:24:58 -0700 | [diff] [blame] | 1272 | lockdep_off(); |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 1273 | raw_spin_lock(&logbuf_lock); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1274 | logbuf_cpu = this_cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | |
Tejun Heo | 3b8945e | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 1276 | if (recursion_bug) { |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1277 | static const char recursion_msg[] = |
| 1278 | "BUG: recent printk recursion!"; |
| 1279 | |
Tejun Heo | 3b8945e | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 1280 | recursion_bug = 0; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1281 | printed_len += strlen(recursion_msg); |
| 1282 | /* emit KERN_CRIT message */ |
| 1283 | log_store(0, 2, NULL, 0, recursion_msg, printed_len); |
Linus Torvalds | 5fd29d6 | 2009-06-16 10:57:02 -0700 | [diff] [blame] | 1284 | } |
| 1285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | /* |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1287 | * The printf needs to come first; we need the syslog |
| 1288 | * prefix which might be passed-in as a parameter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1290 | textlen = vscnprintf(text, sizeof(textbuf), fmt, args); |
Nick Andrew | ac60ad7 | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 1291 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1292 | /* mark and strip a trailing newline */ |
| 1293 | if (textlen && text[textlen-1] == '\n') { |
| 1294 | textlen--; |
| 1295 | newline = true; |
| 1296 | } |
Kay Sievers | 9d90c8d | 2011-03-13 03:19:51 +0100 | [diff] [blame] | 1297 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1298 | /* strip syslog prefix and extract log level or flags */ |
| 1299 | if (text[0] == '<' && text[1] && text[2] == '>') { |
| 1300 | switch (text[1]) { |
| 1301 | case '0' ... '7': |
| 1302 | if (level == -1) |
| 1303 | level = text[1] - '0'; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1304 | case 'd': /* KERN_DEFAULT */ |
Kay Sievers | 5c5d5ca | 2012-05-10 04:32:53 +0200 | [diff] [blame] | 1305 | prefix = true; |
| 1306 | case 'c': /* KERN_CONT */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1307 | text += 3; |
| 1308 | textlen -= 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | } |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1310 | } |
Nick Andrew | ac60ad7 | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 1311 | |
Kay Sievers | 5c5d5ca | 2012-05-10 04:32:53 +0200 | [diff] [blame] | 1312 | if (buflen && (prefix || dict || cont != current)) { |
| 1313 | /* flush existing buffer */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1314 | log_store(facility, buflevel, NULL, 0, buf, buflen); |
| 1315 | printed_len += buflen; |
| 1316 | buflen = 0; |
| 1317 | } |
| 1318 | |
| 1319 | if (buflen == 0) { |
| 1320 | /* remember level for first message in the buffer */ |
| 1321 | if (level == -1) |
| 1322 | buflevel = default_message_loglevel; |
| 1323 | else |
| 1324 | buflevel = level; |
| 1325 | } |
| 1326 | |
| 1327 | if (buflen || !newline) { |
| 1328 | /* append to existing buffer, or buffer until next message */ |
| 1329 | if (buflen + textlen > sizeof(buf)) |
| 1330 | textlen = sizeof(buf) - buflen; |
| 1331 | memcpy(buf + buflen, text, textlen); |
| 1332 | buflen += textlen; |
| 1333 | } |
| 1334 | |
| 1335 | if (newline) { |
| 1336 | /* end of line; flush buffer */ |
| 1337 | if (buflen) { |
| 1338 | log_store(facility, buflevel, |
| 1339 | dict, dictlen, buf, buflen); |
| 1340 | printed_len += buflen; |
| 1341 | buflen = 0; |
| 1342 | } else { |
| 1343 | log_store(facility, buflevel, |
| 1344 | dict, dictlen, text, textlen); |
| 1345 | printed_len += textlen; |
| 1346 | } |
Kay Sievers | 5c5d5ca | 2012-05-10 04:32:53 +0200 | [diff] [blame] | 1347 | cont = NULL; |
| 1348 | } else { |
| 1349 | /* remember thread which filled the buffer */ |
| 1350 | cont = current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | } |
| 1352 | |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1353 | /* |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1354 | * Try to acquire and then immediately release the console semaphore. |
| 1355 | * The release will print out buffers and wake up /dev/kmsg and syslog() |
| 1356 | * users. |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1357 | * |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1358 | * The console_trylock_for_printk() function will release 'logbuf_lock' |
| 1359 | * regardless of whether it actually gets the console semaphore or not. |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1360 | */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1361 | if (console_trylock_for_printk(this_cpu)) |
| 1362 | console_unlock(); |
Michael Ellerman | 76a8ad2 | 2006-06-25 05:47:40 -0700 | [diff] [blame] | 1363 | |
Linus Torvalds | 266c2e0 | 2008-03-24 19:25:08 -0700 | [diff] [blame] | 1364 | lockdep_on(); |
Ingo Molnar | 32a7600 | 2008-01-25 21:07:58 +0100 | [diff] [blame] | 1365 | out_restore_irqs: |
Peter Zijlstra | 1a9a8ae | 2011-06-07 11:17:30 +0200 | [diff] [blame] | 1366 | local_irq_restore(flags); |
Michael Ellerman | 76a8ad2 | 2006-06-25 05:47:40 -0700 | [diff] [blame] | 1367 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | return printed_len; |
| 1369 | } |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1370 | EXPORT_SYMBOL(vprintk_emit); |
| 1371 | |
| 1372 | asmlinkage int vprintk(const char *fmt, va_list args) |
| 1373 | { |
| 1374 | return vprintk_emit(0, -1, NULL, 0, fmt, args); |
| 1375 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | EXPORT_SYMBOL(vprintk); |
| 1377 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1378 | asmlinkage int printk_emit(int facility, int level, |
| 1379 | const char *dict, size_t dictlen, |
| 1380 | const char *fmt, ...) |
| 1381 | { |
| 1382 | va_list args; |
| 1383 | int r; |
| 1384 | |
| 1385 | va_start(args, fmt); |
| 1386 | r = vprintk_emit(facility, level, dict, dictlen, fmt, args); |
| 1387 | va_end(args); |
| 1388 | |
| 1389 | return r; |
| 1390 | } |
| 1391 | EXPORT_SYMBOL(printk_emit); |
| 1392 | |
| 1393 | /** |
| 1394 | * printk - print a kernel message |
| 1395 | * @fmt: format string |
| 1396 | * |
| 1397 | * This is printk(). It can be called from any context. We want it to work. |
| 1398 | * |
| 1399 | * We try to grab the console_lock. If we succeed, it's easy - we log the |
| 1400 | * output and call the console drivers. If we fail to get the semaphore, we |
| 1401 | * place the output into the log buffer and return. The current holder of |
| 1402 | * the console_sem will notice the new output in console_unlock(); and will |
| 1403 | * send it to the consoles before releasing the lock. |
| 1404 | * |
| 1405 | * One effect of this deferred printing is that code which calls printk() and |
| 1406 | * then changes console_loglevel may break. This is because console_loglevel |
| 1407 | * is inspected when the actual printing occurs. |
| 1408 | * |
| 1409 | * See also: |
| 1410 | * printf(3) |
| 1411 | * |
| 1412 | * See the vsnprintf() documentation for format string extensions over C99. |
| 1413 | */ |
| 1414 | asmlinkage int printk(const char *fmt, ...) |
| 1415 | { |
| 1416 | va_list args; |
| 1417 | int r; |
| 1418 | |
| 1419 | #ifdef CONFIG_KGDB_KDB |
| 1420 | if (unlikely(kdb_trap_printk)) { |
| 1421 | va_start(args, fmt); |
| 1422 | r = vkdb_printf(fmt, args); |
| 1423 | va_end(args); |
| 1424 | return r; |
| 1425 | } |
| 1426 | #endif |
| 1427 | va_start(args, fmt); |
| 1428 | r = vprintk_emit(0, -1, NULL, 0, fmt, args); |
| 1429 | va_end(args); |
| 1430 | |
| 1431 | return r; |
| 1432 | } |
| 1433 | EXPORT_SYMBOL(printk); |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 1434 | |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 1435 | #else |
| 1436 | |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 1437 | #define LOG_LINE_MAX 0 |
| 1438 | static struct log *log_from_idx(u32 idx) { return NULL; } |
| 1439 | static u32 log_next(u32 idx) { return 0; } |
| 1440 | static char *log_text(const struct log *msg) { return NULL; } |
| 1441 | static void call_console_drivers(int level, const char *text, size_t len) {} |
Randy Dunlap | 1fce677 | 2012-05-11 16:36:07 -0700 | [diff] [blame^] | 1442 | static size_t prepend_timestamp(unsigned long long t, char *buf) |
| 1443 | { |
| 1444 | return 0; |
| 1445 | } |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 1446 | |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 1447 | #endif /* CONFIG_PRINTK */ |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 1448 | |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 1449 | static int __add_preferred_console(char *name, int idx, char *options, |
| 1450 | char *brl_options) |
| 1451 | { |
| 1452 | struct console_cmdline *c; |
| 1453 | int i; |
| 1454 | |
| 1455 | /* |
| 1456 | * See if this tty is not yet registered, and |
| 1457 | * if we have a slot free. |
| 1458 | */ |
| 1459 | for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++) |
| 1460 | if (strcmp(console_cmdline[i].name, name) == 0 && |
| 1461 | console_cmdline[i].index == idx) { |
| 1462 | if (!brl_options) |
| 1463 | selected_console = i; |
| 1464 | return 0; |
| 1465 | } |
| 1466 | if (i == MAX_CMDLINECONSOLES) |
| 1467 | return -E2BIG; |
| 1468 | if (!brl_options) |
| 1469 | selected_console = i; |
| 1470 | c = &console_cmdline[i]; |
| 1471 | strlcpy(c->name, name, sizeof(c->name)); |
| 1472 | c->options = options; |
| 1473 | #ifdef CONFIG_A11Y_BRAILLE_CONSOLE |
| 1474 | c->brl_options = brl_options; |
| 1475 | #endif |
| 1476 | c->index = idx; |
| 1477 | return 0; |
| 1478 | } |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1479 | /* |
| 1480 | * Set up a list of consoles. Called from init/main.c |
| 1481 | */ |
| 1482 | static int __init console_setup(char *str) |
| 1483 | { |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 1484 | char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for index */ |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 1485 | char *s, *options, *brl_options = NULL; |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1486 | int idx; |
| 1487 | |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 1488 | #ifdef CONFIG_A11Y_BRAILLE_CONSOLE |
| 1489 | if (!memcmp(str, "brl,", 4)) { |
| 1490 | brl_options = ""; |
| 1491 | str += 4; |
| 1492 | } else if (!memcmp(str, "brl=", 4)) { |
| 1493 | brl_options = str + 4; |
| 1494 | str = strchr(brl_options, ','); |
| 1495 | if (!str) { |
| 1496 | printk(KERN_ERR "need port name after brl=\n"); |
| 1497 | return 1; |
| 1498 | } |
| 1499 | *(str++) = 0; |
| 1500 | } |
| 1501 | #endif |
| 1502 | |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1503 | /* |
| 1504 | * Decode str into name, index, options. |
| 1505 | */ |
| 1506 | if (str[0] >= '0' && str[0] <= '9') { |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 1507 | strcpy(buf, "ttyS"); |
| 1508 | strncpy(buf + 4, str, sizeof(buf) - 5); |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1509 | } else { |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 1510 | strncpy(buf, str, sizeof(buf) - 1); |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1511 | } |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 1512 | buf[sizeof(buf) - 1] = 0; |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1513 | if ((options = strchr(str, ',')) != NULL) |
| 1514 | *(options++) = 0; |
| 1515 | #ifdef __sparc__ |
| 1516 | if (!strcmp(str, "ttya")) |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 1517 | strcpy(buf, "ttyS0"); |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1518 | if (!strcmp(str, "ttyb")) |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 1519 | strcpy(buf, "ttyS1"); |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1520 | #endif |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 1521 | for (s = buf; *s; s++) |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1522 | if ((*s >= '0' && *s <= '9') || *s == ',') |
| 1523 | break; |
| 1524 | idx = simple_strtoul(s, NULL, 10); |
| 1525 | *s = 0; |
| 1526 | |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 1527 | __add_preferred_console(buf, idx, options, brl_options); |
Markus Armbruster | 9e124fe | 2008-05-26 23:31:07 +0100 | [diff] [blame] | 1528 | console_set_on_cmdline = 1; |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 1529 | return 1; |
| 1530 | } |
| 1531 | __setup("console=", console_setup); |
| 1532 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1533 | /** |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 1534 | * add_preferred_console - add a device to the list of preferred consoles. |
Martin Waitz | ddad86c | 2005-11-13 16:08:14 -0800 | [diff] [blame] | 1535 | * @name: device name |
| 1536 | * @idx: device index |
| 1537 | * @options: options for this console |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 1538 | * |
| 1539 | * The last preferred console added will be used for kernel messages |
| 1540 | * and stdin/out/err for init. Normally this is used by console_setup |
| 1541 | * above to handle user-supplied console arguments; however it can also |
| 1542 | * be used by arch-specific code either to override the user or more |
| 1543 | * commonly to provide a default console (ie from PROM variables) when |
| 1544 | * the user has not supplied one. |
| 1545 | */ |
David S. Miller | fb445ee | 2007-12-29 01:19:49 -0800 | [diff] [blame] | 1546 | int add_preferred_console(char *name, int idx, char *options) |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 1547 | { |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 1548 | return __add_preferred_console(name, idx, options, NULL); |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 1549 | } |
| 1550 | |
Daniel Ritz | b6b1d87 | 2007-08-03 16:07:43 +0200 | [diff] [blame] | 1551 | int update_console_cmdline(char *name, int idx, char *name_new, int idx_new, char *options) |
Yinghai Lu | 18a8bd9 | 2007-07-15 23:37:59 -0700 | [diff] [blame] | 1552 | { |
| 1553 | struct console_cmdline *c; |
| 1554 | int i; |
| 1555 | |
| 1556 | for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++) |
| 1557 | if (strcmp(console_cmdline[i].name, name) == 0 && |
| 1558 | console_cmdline[i].index == idx) { |
| 1559 | c = &console_cmdline[i]; |
Markus Armbruster | f735295 | 2008-04-30 00:54:52 -0700 | [diff] [blame] | 1560 | strlcpy(c->name, name_new, sizeof(c->name)); |
Yinghai Lu | 18a8bd9 | 2007-07-15 23:37:59 -0700 | [diff] [blame] | 1561 | c->name[sizeof(c->name) - 1] = 0; |
| 1562 | c->options = options; |
| 1563 | c->index = idx_new; |
| 1564 | return i; |
| 1565 | } |
| 1566 | /* not found */ |
| 1567 | return -1; |
| 1568 | } |
| 1569 | |
Rusty Russell | 2329abf | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 1570 | bool console_suspend_enabled = 1; |
Andres Salomon | 8f4ce8c | 2007-10-18 03:04:50 -0700 | [diff] [blame] | 1571 | EXPORT_SYMBOL(console_suspend_enabled); |
| 1572 | |
| 1573 | static int __init console_suspend_disable(char *str) |
| 1574 | { |
| 1575 | console_suspend_enabled = 0; |
| 1576 | return 1; |
| 1577 | } |
| 1578 | __setup("no_console_suspend", console_suspend_disable); |
Yanmin Zhang | 134620f | 2011-10-31 17:11:27 -0700 | [diff] [blame] | 1579 | module_param_named(console_suspend, console_suspend_enabled, |
| 1580 | bool, S_IRUGO | S_IWUSR); |
| 1581 | MODULE_PARM_DESC(console_suspend, "suspend console during suspend" |
| 1582 | " and hibernate operations"); |
Andres Salomon | 8f4ce8c | 2007-10-18 03:04:50 -0700 | [diff] [blame] | 1583 | |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 1584 | /** |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 1585 | * suspend_console - suspend the console subsystem |
| 1586 | * |
| 1587 | * This disables printk() while we go into suspend states |
| 1588 | */ |
| 1589 | void suspend_console(void) |
| 1590 | { |
Andres Salomon | 8f4ce8c | 2007-10-18 03:04:50 -0700 | [diff] [blame] | 1591 | if (!console_suspend_enabled) |
| 1592 | return; |
Pavel Machek | 0d63081 | 2008-07-23 21:28:32 -0700 | [diff] [blame] | 1593 | printk("Suspending console(s) (use no_console_suspend to debug)\n"); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1594 | console_lock(); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 1595 | console_suspended = 1; |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 1596 | up(&console_sem); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 1597 | } |
| 1598 | |
| 1599 | void resume_console(void) |
| 1600 | { |
Andres Salomon | 8f4ce8c | 2007-10-18 03:04:50 -0700 | [diff] [blame] | 1601 | if (!console_suspend_enabled) |
| 1602 | return; |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 1603 | down(&console_sem); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 1604 | console_suspended = 0; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1605 | console_unlock(); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 1606 | } |
| 1607 | |
| 1608 | /** |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 1609 | * console_cpu_notify - print deferred console messages after CPU hotplug |
| 1610 | * @self: notifier struct |
| 1611 | * @action: CPU hotplug event |
| 1612 | * @hcpu: unused |
| 1613 | * |
| 1614 | * If printk() is called from a CPU that is not online yet, the messages |
| 1615 | * will be spooled but will not show up on the console. This function is |
| 1616 | * called when a new CPU comes online (or fails to come up), and ensures |
| 1617 | * that any such output gets printed. |
| 1618 | */ |
| 1619 | static int __cpuinit console_cpu_notify(struct notifier_block *self, |
| 1620 | unsigned long action, void *hcpu) |
| 1621 | { |
| 1622 | switch (action) { |
| 1623 | case CPU_ONLINE: |
| 1624 | case CPU_DEAD: |
| 1625 | case CPU_DYING: |
| 1626 | case CPU_DOWN_FAILED: |
| 1627 | case CPU_UP_CANCELED: |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1628 | console_lock(); |
| 1629 | console_unlock(); |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 1630 | } |
| 1631 | return NOTIFY_OK; |
| 1632 | } |
| 1633 | |
| 1634 | /** |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1635 | * console_lock - lock the console system for exclusive use. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1637 | * Acquires a lock which guarantees that the caller has |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | * exclusive access to the console system and the console_drivers list. |
| 1639 | * |
| 1640 | * Can sleep, returns nothing. |
| 1641 | */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1642 | void console_lock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | { |
Eric Sesterhenn | 8abd8e2 | 2006-04-01 01:21:17 +0200 | [diff] [blame] | 1644 | BUG_ON(in_interrupt()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | down(&console_sem); |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 1646 | if (console_suspended) |
| 1647 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | console_locked = 1; |
| 1649 | console_may_schedule = 1; |
| 1650 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1651 | EXPORT_SYMBOL(console_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1653 | /** |
| 1654 | * console_trylock - try to lock the console system for exclusive use. |
| 1655 | * |
| 1656 | * Tried to acquire a lock which guarantees that the caller has |
| 1657 | * exclusive access to the console system and the console_drivers list. |
| 1658 | * |
| 1659 | * returns 1 on success, and 0 on failure to acquire the lock. |
| 1660 | */ |
| 1661 | int console_trylock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | { |
| 1663 | if (down_trylock(&console_sem)) |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1664 | return 0; |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 1665 | if (console_suspended) { |
| 1666 | up(&console_sem); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1667 | return 0; |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 1668 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | console_locked = 1; |
| 1670 | console_may_schedule = 0; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1671 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1673 | EXPORT_SYMBOL(console_trylock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | |
| 1675 | int is_console_locked(void) |
| 1676 | { |
| 1677 | return console_locked; |
| 1678 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1679 | |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 1680 | /* |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1681 | * Delayed printk version, for scheduler-internal messages: |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 1682 | */ |
| 1683 | #define PRINTK_BUF_SIZE 512 |
| 1684 | |
| 1685 | #define PRINTK_PENDING_WAKEUP 0x01 |
| 1686 | #define PRINTK_PENDING_SCHED 0x02 |
| 1687 | |
Peter Zijlstra | b845b51 | 2008-08-08 21:47:09 +0200 | [diff] [blame] | 1688 | static DEFINE_PER_CPU(int, printk_pending); |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 1689 | static DEFINE_PER_CPU(char [PRINTK_BUF_SIZE], printk_sched_buf); |
Peter Zijlstra | b845b51 | 2008-08-08 21:47:09 +0200 | [diff] [blame] | 1690 | |
| 1691 | void printk_tick(void) |
| 1692 | { |
Eric Dumazet | 40dc11f | 2010-11-26 17:22:16 +0100 | [diff] [blame] | 1693 | if (__this_cpu_read(printk_pending)) { |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 1694 | int pending = __this_cpu_xchg(printk_pending, 0); |
| 1695 | if (pending & PRINTK_PENDING_SCHED) { |
| 1696 | char *buf = __get_cpu_var(printk_sched_buf); |
| 1697 | printk(KERN_WARNING "[sched_delayed] %s", buf); |
| 1698 | } |
| 1699 | if (pending & PRINTK_PENDING_WAKEUP) |
| 1700 | wake_up_interruptible(&log_wait); |
Peter Zijlstra | b845b51 | 2008-08-08 21:47:09 +0200 | [diff] [blame] | 1701 | } |
| 1702 | } |
| 1703 | |
| 1704 | int printk_needs_cpu(int cpu) |
| 1705 | { |
Eric Dumazet | 40dc11f | 2010-11-26 17:22:16 +0100 | [diff] [blame] | 1706 | if (cpu_is_offline(cpu)) |
Heiko Carstens | 61ab2544 | 2010-11-26 13:00:59 +0100 | [diff] [blame] | 1707 | printk_tick(); |
Eric Dumazet | 40dc11f | 2010-11-26 17:22:16 +0100 | [diff] [blame] | 1708 | return __this_cpu_read(printk_pending); |
Peter Zijlstra | b845b51 | 2008-08-08 21:47:09 +0200 | [diff] [blame] | 1709 | } |
| 1710 | |
Kirill Korotaev | e3e8a75 | 2007-02-10 01:46:19 -0800 | [diff] [blame] | 1711 | void wake_up_klogd(void) |
| 1712 | { |
Peter Zijlstra | b845b51 | 2008-08-08 21:47:09 +0200 | [diff] [blame] | 1713 | if (waitqueue_active(&log_wait)) |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 1714 | this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP); |
Kirill Korotaev | e3e8a75 | 2007-02-10 01:46:19 -0800 | [diff] [blame] | 1715 | } |
| 1716 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1717 | /* the next printk record to write to the console */ |
| 1718 | static u64 console_seq; |
| 1719 | static u32 console_idx; |
| 1720 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | /** |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1722 | * console_unlock - unlock the console system |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1724 | * Releases the console_lock which the caller holds on the console system |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | * and the console driver list. |
| 1726 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1727 | * While the console_lock was held, console output may have been buffered |
| 1728 | * by printk(). If this is the case, console_unlock(); emits |
| 1729 | * the output prior to releasing the lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1730 | * |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 1731 | * If there is output waiting, we wake /dev/kmsg and syslog() users. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1733 | * console_unlock(); may be called from any context. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1735 | void console_unlock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1736 | { |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1737 | static u64 seen_seq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1738 | unsigned long flags; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1739 | bool wake_klogd = false; |
| 1740 | bool retry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1741 | |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 1742 | if (console_suspended) { |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 1743 | up(&console_sem); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 1744 | return; |
| 1745 | } |
Antonino A. Daplas | 78944e5 | 2006-08-05 12:14:16 -0700 | [diff] [blame] | 1746 | |
| 1747 | console_may_schedule = 0; |
| 1748 | |
Peter Zijlstra | 4f2a8d3 | 2011-06-22 11:20:09 +0200 | [diff] [blame] | 1749 | again: |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1750 | for (;;) { |
| 1751 | struct log *msg; |
| 1752 | static char text[LOG_LINE_MAX]; |
Kay Sievers | 649e6ee | 2012-05-10 04:30:45 +0200 | [diff] [blame] | 1753 | size_t len, l; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1754 | int level; |
| 1755 | |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 1756 | raw_spin_lock_irqsave(&logbuf_lock, flags); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1757 | if (seen_seq != log_next_seq) { |
| 1758 | wake_klogd = true; |
| 1759 | seen_seq = log_next_seq; |
| 1760 | } |
| 1761 | |
| 1762 | if (console_seq < log_first_seq) { |
| 1763 | /* messages are gone, move to first one */ |
| 1764 | console_seq = log_first_seq; |
| 1765 | console_idx = log_first_idx; |
| 1766 | } |
| 1767 | |
| 1768 | if (console_seq == log_next_seq) |
| 1769 | break; |
| 1770 | |
| 1771 | msg = log_from_idx(console_idx); |
| 1772 | level = msg->level & 7; |
Kay Sievers | 649e6ee | 2012-05-10 04:30:45 +0200 | [diff] [blame] | 1773 | |
| 1774 | len = prepend_timestamp(msg->ts_nsec, text); |
| 1775 | l = msg->text_len; |
| 1776 | if (len + l + 1 >= sizeof(text)) |
| 1777 | l = sizeof(text) - len - 1; |
| 1778 | memcpy(text + len, log_text(msg), l); |
| 1779 | len += l; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1780 | text[len++] = '\n'; |
| 1781 | |
| 1782 | console_idx = log_next(console_idx); |
| 1783 | console_seq++; |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 1784 | raw_spin_unlock(&logbuf_lock); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1785 | |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 1786 | stop_critical_timings(); /* don't trace print latency */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1787 | call_console_drivers(level, text, len); |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 1788 | start_critical_timings(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | local_irq_restore(flags); |
| 1790 | } |
| 1791 | console_locked = 0; |
Feng Tang | fe3d8ad | 2011-03-22 16:34:21 -0700 | [diff] [blame] | 1792 | |
| 1793 | /* Release the exclusive_console once it is used */ |
| 1794 | if (unlikely(exclusive_console)) |
| 1795 | exclusive_console = NULL; |
| 1796 | |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 1797 | raw_spin_unlock(&logbuf_lock); |
Peter Zijlstra | 4f2a8d3 | 2011-06-22 11:20:09 +0200 | [diff] [blame] | 1798 | |
Peter Zijlstra | 0b5e1c5 | 2011-06-07 11:15:33 +0200 | [diff] [blame] | 1799 | up(&console_sem); |
Peter Zijlstra | 4f2a8d3 | 2011-06-22 11:20:09 +0200 | [diff] [blame] | 1800 | |
| 1801 | /* |
| 1802 | * Someone could have filled up the buffer again, so re-check if there's |
| 1803 | * something to flush. In case we cannot trylock the console_sem again, |
| 1804 | * there's a new owner and the console_unlock() from them will do the |
| 1805 | * flush, no worries. |
| 1806 | */ |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 1807 | raw_spin_lock(&logbuf_lock); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1808 | retry = console_seq != log_next_seq; |
Peter Zijlstra | 09dc3cf | 2011-12-08 14:34:13 -0800 | [diff] [blame] | 1809 | raw_spin_unlock_irqrestore(&logbuf_lock, flags); |
| 1810 | |
Peter Zijlstra | 4f2a8d3 | 2011-06-22 11:20:09 +0200 | [diff] [blame] | 1811 | if (retry && console_trylock()) |
| 1812 | goto again; |
| 1813 | |
Kirill Korotaev | e3e8a75 | 2007-02-10 01:46:19 -0800 | [diff] [blame] | 1814 | if (wake_klogd) |
| 1815 | wake_up_klogd(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1816 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1817 | EXPORT_SYMBOL(console_unlock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | |
Martin Waitz | ddad86c | 2005-11-13 16:08:14 -0800 | [diff] [blame] | 1819 | /** |
| 1820 | * console_conditional_schedule - yield the CPU if required |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | * |
| 1822 | * If the console code is currently allowed to sleep, and |
| 1823 | * if this CPU should yield the CPU to another task, do |
| 1824 | * so here. |
| 1825 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1826 | * Must be called within console_lock();. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1827 | */ |
| 1828 | void __sched console_conditional_schedule(void) |
| 1829 | { |
| 1830 | if (console_may_schedule) |
| 1831 | cond_resched(); |
| 1832 | } |
| 1833 | EXPORT_SYMBOL(console_conditional_schedule); |
| 1834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | void console_unblank(void) |
| 1836 | { |
| 1837 | struct console *c; |
| 1838 | |
| 1839 | /* |
| 1840 | * console_unblank can no longer be called in interrupt context unless |
| 1841 | * oops_in_progress is set to 1.. |
| 1842 | */ |
| 1843 | if (oops_in_progress) { |
| 1844 | if (down_trylock(&console_sem) != 0) |
| 1845 | return; |
| 1846 | } else |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1847 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | |
| 1849 | console_locked = 1; |
| 1850 | console_may_schedule = 0; |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1851 | for_each_console(c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | if ((c->flags & CON_ENABLED) && c->unblank) |
| 1853 | c->unblank(); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1854 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1856 | |
| 1857 | /* |
| 1858 | * Return the console tty driver structure and its associated index |
| 1859 | */ |
| 1860 | struct tty_driver *console_device(int *index) |
| 1861 | { |
| 1862 | struct console *c; |
| 1863 | struct tty_driver *driver = NULL; |
| 1864 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1865 | console_lock(); |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1866 | for_each_console(c) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1867 | if (!c->device) |
| 1868 | continue; |
| 1869 | driver = c->device(c, index); |
| 1870 | if (driver) |
| 1871 | break; |
| 1872 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1873 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | return driver; |
| 1875 | } |
| 1876 | |
| 1877 | /* |
| 1878 | * Prevent further output on the passed console device so that (for example) |
| 1879 | * serial drivers can disable console output before suspending a port, and can |
| 1880 | * re-enable output afterwards. |
| 1881 | */ |
| 1882 | void console_stop(struct console *console) |
| 1883 | { |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1884 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | console->flags &= ~CON_ENABLED; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1886 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | } |
| 1888 | EXPORT_SYMBOL(console_stop); |
| 1889 | |
| 1890 | void console_start(struct console *console) |
| 1891 | { |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1892 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | console->flags |= CON_ENABLED; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1894 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | } |
| 1896 | EXPORT_SYMBOL(console_start); |
| 1897 | |
Fabio M. Di Nitto | 7bf6939 | 2011-03-22 16:34:20 -0700 | [diff] [blame] | 1898 | static int __read_mostly keep_bootcon; |
| 1899 | |
| 1900 | static int __init keep_bootcon_setup(char *str) |
| 1901 | { |
| 1902 | keep_bootcon = 1; |
| 1903 | printk(KERN_INFO "debug: skip boot console de-registration.\n"); |
| 1904 | |
| 1905 | return 0; |
| 1906 | } |
| 1907 | |
| 1908 | early_param("keep_bootcon", keep_bootcon_setup); |
| 1909 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | /* |
| 1911 | * The console driver calls this routine during kernel initialization |
| 1912 | * to register the console printing procedure with printk() and to |
| 1913 | * print any messages that were printed by the kernel before the |
| 1914 | * console driver was initialized. |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1915 | * |
| 1916 | * This can happen pretty early during the boot process (because of |
| 1917 | * early_printk) - sometimes before setup_arch() completes - be careful |
| 1918 | * of what kernel features are used - they may not be initialised yet. |
| 1919 | * |
| 1920 | * There are two types of consoles - bootconsoles (early_printk) and |
| 1921 | * "real" consoles (everything which is not a bootconsole) which are |
| 1922 | * handled differently. |
| 1923 | * - Any number of bootconsoles can be registered at any time. |
| 1924 | * - As soon as a "real" console is registered, all bootconsoles |
| 1925 | * will be unregistered automatically. |
| 1926 | * - Once a "real" console is registered, any attempt to register a |
| 1927 | * bootconsoles will be rejected |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1928 | */ |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1929 | void register_console(struct console *newcon) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1930 | { |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 1931 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | unsigned long flags; |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1933 | struct console *bcon = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1934 | |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1935 | /* |
| 1936 | * before we register a new CON_BOOT console, make sure we don't |
| 1937 | * already have a valid console |
| 1938 | */ |
| 1939 | if (console_drivers && newcon->flags & CON_BOOT) { |
| 1940 | /* find the last or real console */ |
| 1941 | for_each_console(bcon) { |
| 1942 | if (!(bcon->flags & CON_BOOT)) { |
| 1943 | printk(KERN_INFO "Too late to register bootconsole %s%d\n", |
| 1944 | newcon->name, newcon->index); |
| 1945 | return; |
| 1946 | } |
| 1947 | } |
Gerd Hoffmann | 69331af | 2007-05-08 00:26:49 -0700 | [diff] [blame] | 1948 | } |
| 1949 | |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1950 | if (console_drivers && console_drivers->flags & CON_BOOT) |
| 1951 | bcon = console_drivers; |
| 1952 | |
| 1953 | if (preferred_console < 0 || bcon || !console_drivers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | preferred_console = selected_console; |
| 1955 | |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1956 | if (newcon->early_setup) |
| 1957 | newcon->early_setup(); |
Yinghai Lu | 18a8bd9 | 2007-07-15 23:37:59 -0700 | [diff] [blame] | 1958 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1959 | /* |
| 1960 | * See if we want to use this console driver. If we |
| 1961 | * didn't select a console we take the first one |
| 1962 | * that registers here. |
| 1963 | */ |
| 1964 | if (preferred_console < 0) { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1965 | if (newcon->index < 0) |
| 1966 | newcon->index = 0; |
| 1967 | if (newcon->setup == NULL || |
| 1968 | newcon->setup(newcon, NULL) == 0) { |
| 1969 | newcon->flags |= CON_ENABLED; |
| 1970 | if (newcon->device) { |
| 1971 | newcon->flags |= CON_CONSDEV; |
Jan Kiszka | cd3a1b8 | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 1972 | preferred_console = 0; |
| 1973 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1974 | } |
| 1975 | } |
| 1976 | |
| 1977 | /* |
| 1978 | * See if this console matches one we selected on |
| 1979 | * the command line. |
| 1980 | */ |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 1981 | for (i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; |
| 1982 | i++) { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1983 | if (strcmp(console_cmdline[i].name, newcon->name) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | continue; |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1985 | if (newcon->index >= 0 && |
| 1986 | newcon->index != console_cmdline[i].index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | continue; |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1988 | if (newcon->index < 0) |
| 1989 | newcon->index = console_cmdline[i].index; |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 1990 | #ifdef CONFIG_A11Y_BRAILLE_CONSOLE |
| 1991 | if (console_cmdline[i].brl_options) { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 1992 | newcon->flags |= CON_BRL; |
| 1993 | braille_register_console(newcon, |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 1994 | console_cmdline[i].index, |
| 1995 | console_cmdline[i].options, |
| 1996 | console_cmdline[i].brl_options); |
| 1997 | return; |
| 1998 | } |
| 1999 | #endif |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2000 | if (newcon->setup && |
| 2001 | newcon->setup(newcon, console_cmdline[i].options) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2002 | break; |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2003 | newcon->flags |= CON_ENABLED; |
| 2004 | newcon->index = console_cmdline[i].index; |
Greg Edwards | ab4af03 | 2005-06-23 00:09:05 -0700 | [diff] [blame] | 2005 | if (i == selected_console) { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2006 | newcon->flags |= CON_CONSDEV; |
Greg Edwards | ab4af03 | 2005-06-23 00:09:05 -0700 | [diff] [blame] | 2007 | preferred_console = selected_console; |
| 2008 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2009 | break; |
| 2010 | } |
| 2011 | |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2012 | if (!(newcon->flags & CON_ENABLED)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | return; |
| 2014 | |
Robin Getz | 8259cf4 | 2009-07-09 13:08:37 -0400 | [diff] [blame] | 2015 | /* |
| 2016 | * If we have a bootconsole, and are switching to a real console, |
| 2017 | * don't print everything out again, since when the boot console, and |
| 2018 | * the real console are the same physical device, it's annoying to |
| 2019 | * see the beginning boot messages twice |
| 2020 | */ |
| 2021 | if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV)) |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2022 | newcon->flags &= ~CON_PRINTBUFFER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2023 | |
| 2024 | /* |
| 2025 | * Put this console in the list - keep the |
| 2026 | * preferred driver at the head of the list. |
| 2027 | */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2028 | console_lock(); |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2029 | if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) { |
| 2030 | newcon->next = console_drivers; |
| 2031 | console_drivers = newcon; |
| 2032 | if (newcon->next) |
| 2033 | newcon->next->flags &= ~CON_CONSDEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | } else { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2035 | newcon->next = console_drivers->next; |
| 2036 | console_drivers->next = newcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2037 | } |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2038 | if (newcon->flags & CON_PRINTBUFFER) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2039 | /* |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2040 | * console_unlock(); will print out the buffered messages |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2041 | * for us. |
| 2042 | */ |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 2043 | raw_spin_lock_irqsave(&logbuf_lock, flags); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2044 | console_seq = syslog_seq; |
| 2045 | console_idx = syslog_idx; |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 2046 | raw_spin_unlock_irqrestore(&logbuf_lock, flags); |
Feng Tang | fe3d8ad | 2011-03-22 16:34:21 -0700 | [diff] [blame] | 2047 | /* |
| 2048 | * We're about to replay the log buffer. Only do this to the |
| 2049 | * just-registered console to avoid excessive message spam to |
| 2050 | * the already-registered consoles. |
| 2051 | */ |
| 2052 | exclusive_console = newcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2053 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2054 | console_unlock(); |
Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 2055 | console_sysfs_notify(); |
Robin Getz | 8259cf4 | 2009-07-09 13:08:37 -0400 | [diff] [blame] | 2056 | |
| 2057 | /* |
| 2058 | * By unregistering the bootconsoles after we enable the real console |
| 2059 | * we get the "console xxx enabled" message on all the consoles - |
| 2060 | * boot consoles, real consoles, etc - this is to ensure that end |
| 2061 | * users know there might be something in the kernel's log buffer that |
| 2062 | * went to the bootconsole (that they do not see on the real console) |
| 2063 | */ |
Fabio M. Di Nitto | 7bf6939 | 2011-03-22 16:34:20 -0700 | [diff] [blame] | 2064 | if (bcon && |
| 2065 | ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) && |
| 2066 | !keep_bootcon) { |
Robin Getz | 8259cf4 | 2009-07-09 13:08:37 -0400 | [diff] [blame] | 2067 | /* we need to iterate through twice, to make sure we print |
| 2068 | * everything out, before we unregister the console(s) |
| 2069 | */ |
| 2070 | printk(KERN_INFO "console [%s%d] enabled, bootconsole disabled\n", |
| 2071 | newcon->name, newcon->index); |
| 2072 | for_each_console(bcon) |
| 2073 | if (bcon->flags & CON_BOOT) |
| 2074 | unregister_console(bcon); |
| 2075 | } else { |
| 2076 | printk(KERN_INFO "%sconsole [%s%d] enabled\n", |
| 2077 | (newcon->flags & CON_BOOT) ? "boot" : "" , |
| 2078 | newcon->name, newcon->index); |
| 2079 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | } |
| 2081 | EXPORT_SYMBOL(register_console); |
| 2082 | |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 2083 | int unregister_console(struct console *console) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | { |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 2085 | struct console *a, *b; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2086 | int res = 1; |
| 2087 | |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 2088 | #ifdef CONFIG_A11Y_BRAILLE_CONSOLE |
| 2089 | if (console->flags & CON_BRL) |
| 2090 | return braille_unregister_console(console); |
| 2091 | #endif |
| 2092 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2093 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2094 | if (console_drivers == console) { |
| 2095 | console_drivers=console->next; |
| 2096 | res = 0; |
Benjamin Herrenschmidt | e9b15b5 | 2005-11-23 13:37:44 -0800 | [diff] [blame] | 2097 | } else if (console_drivers) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2098 | for (a=console_drivers->next, b=console_drivers ; |
| 2099 | a; b=a, a=b->next) { |
| 2100 | if (a == console) { |
| 2101 | b->next = a->next; |
| 2102 | res = 0; |
| 2103 | break; |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 2104 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2105 | } |
| 2106 | } |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 2107 | |
Gerd Hoffmann | 69331af | 2007-05-08 00:26:49 -0700 | [diff] [blame] | 2108 | /* |
Greg Edwards | ab4af03 | 2005-06-23 00:09:05 -0700 | [diff] [blame] | 2109 | * If this isn't the last console and it has CON_CONSDEV set, we |
| 2110 | * need to set it on the next preferred console. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2111 | */ |
Gerd Hoffmann | 69331af | 2007-05-08 00:26:49 -0700 | [diff] [blame] | 2112 | if (console_drivers != NULL && console->flags & CON_CONSDEV) |
Greg Edwards | ab4af03 | 2005-06-23 00:09:05 -0700 | [diff] [blame] | 2113 | console_drivers->flags |= CON_CONSDEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2115 | console_unlock(); |
Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 2116 | console_sysfs_notify(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | return res; |
| 2118 | } |
| 2119 | EXPORT_SYMBOL(unregister_console); |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 2120 | |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 2121 | static int __init printk_late_init(void) |
Robin Getz | 0c5564b | 2007-08-20 15:22:47 -0400 | [diff] [blame] | 2122 | { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2123 | struct console *con; |
| 2124 | |
| 2125 | for_each_console(con) { |
Nishanth Aravamudan | 4c30c6f | 2011-08-25 15:59:11 -0700 | [diff] [blame] | 2126 | if (!keep_bootcon && con->flags & CON_BOOT) { |
Robin Getz | cb00e99 | 2007-08-21 23:14:58 -0400 | [diff] [blame] | 2127 | printk(KERN_INFO "turn off boot console %s%d\n", |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2128 | con->name, con->index); |
Sonic Zhang | 42c2c8c | 2009-08-06 15:58:11 -0700 | [diff] [blame] | 2129 | unregister_console(con); |
Robin Getz | cb00e99 | 2007-08-21 23:14:58 -0400 | [diff] [blame] | 2130 | } |
Robin Getz | 0c5564b | 2007-08-20 15:22:47 -0400 | [diff] [blame] | 2131 | } |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 2132 | hotcpu_notifier(console_cpu_notify, 0); |
Robin Getz | 0c5564b | 2007-08-20 15:22:47 -0400 | [diff] [blame] | 2133 | return 0; |
| 2134 | } |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 2135 | late_initcall(printk_late_init); |
Robin Getz | 0c5564b | 2007-08-20 15:22:47 -0400 | [diff] [blame] | 2136 | |
Joe Perches | 7ef3d2f | 2008-02-08 04:21:25 -0800 | [diff] [blame] | 2137 | #if defined CONFIG_PRINTK |
Dave Young | 717115e | 2008-07-25 01:45:58 -0700 | [diff] [blame] | 2138 | |
Peter Zijlstra | 600e145 | 2012-03-15 12:35:37 +0100 | [diff] [blame] | 2139 | int printk_sched(const char *fmt, ...) |
| 2140 | { |
| 2141 | unsigned long flags; |
| 2142 | va_list args; |
| 2143 | char *buf; |
| 2144 | int r; |
| 2145 | |
| 2146 | local_irq_save(flags); |
| 2147 | buf = __get_cpu_var(printk_sched_buf); |
| 2148 | |
| 2149 | va_start(args, fmt); |
| 2150 | r = vsnprintf(buf, PRINTK_BUF_SIZE, fmt, args); |
| 2151 | va_end(args); |
| 2152 | |
| 2153 | __this_cpu_or(printk_pending, PRINTK_PENDING_SCHED); |
| 2154 | local_irq_restore(flags); |
| 2155 | |
| 2156 | return r; |
| 2157 | } |
| 2158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | /* |
| 2160 | * printk rate limiting, lifted from the networking subsystem. |
| 2161 | * |
Uwe Kleine-König | 641de9d | 2008-07-29 22:33:38 -0700 | [diff] [blame] | 2162 | * This enforces a rate limit: not more than 10 kernel messages |
| 2163 | * every 5s to make a denial-of-service attack impossible. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | */ |
Uwe Kleine-König | 641de9d | 2008-07-29 22:33:38 -0700 | [diff] [blame] | 2165 | DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10); |
| 2166 | |
Christian Borntraeger | 5c82871 | 2009-10-23 14:58:11 +0200 | [diff] [blame] | 2167 | int __printk_ratelimit(const char *func) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | { |
Christian Borntraeger | 5c82871 | 2009-10-23 14:58:11 +0200 | [diff] [blame] | 2169 | return ___ratelimit(&printk_ratelimit_state, func); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2170 | } |
Christian Borntraeger | 5c82871 | 2009-10-23 14:58:11 +0200 | [diff] [blame] | 2171 | EXPORT_SYMBOL(__printk_ratelimit); |
Andrew Morton | f46c483 | 2006-11-02 22:07:16 -0800 | [diff] [blame] | 2172 | |
| 2173 | /** |
| 2174 | * printk_timed_ratelimit - caller-controlled printk ratelimiting |
| 2175 | * @caller_jiffies: pointer to caller's state |
| 2176 | * @interval_msecs: minimum interval between prints |
| 2177 | * |
| 2178 | * printk_timed_ratelimit() returns true if more than @interval_msecs |
| 2179 | * milliseconds have elapsed since the last time printk_timed_ratelimit() |
| 2180 | * returned true. |
| 2181 | */ |
| 2182 | bool printk_timed_ratelimit(unsigned long *caller_jiffies, |
| 2183 | unsigned int interval_msecs) |
| 2184 | { |
Guillaume Knispel | f2d28a2 | 2009-03-17 16:18:42 +0100 | [diff] [blame] | 2185 | if (*caller_jiffies == 0 |
| 2186 | || !time_in_range(jiffies, *caller_jiffies, |
| 2187 | *caller_jiffies |
| 2188 | + msecs_to_jiffies(interval_msecs))) { |
| 2189 | *caller_jiffies = jiffies; |
Andrew Morton | f46c483 | 2006-11-02 22:07:16 -0800 | [diff] [blame] | 2190 | return true; |
| 2191 | } |
| 2192 | return false; |
| 2193 | } |
| 2194 | EXPORT_SYMBOL(printk_timed_ratelimit); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2195 | |
| 2196 | static DEFINE_SPINLOCK(dump_list_lock); |
| 2197 | static LIST_HEAD(dump_list); |
| 2198 | |
| 2199 | /** |
| 2200 | * kmsg_dump_register - register a kernel log dumper. |
Randy Dunlap | 6485536 | 2009-12-17 15:27:27 -0800 | [diff] [blame] | 2201 | * @dumper: pointer to the kmsg_dumper structure |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2202 | * |
| 2203 | * Adds a kernel log dumper to the system. The dump callback in the |
| 2204 | * structure will be called when the kernel oopses or panics and must be |
| 2205 | * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise. |
| 2206 | */ |
| 2207 | int kmsg_dump_register(struct kmsg_dumper *dumper) |
| 2208 | { |
| 2209 | unsigned long flags; |
| 2210 | int err = -EBUSY; |
| 2211 | |
| 2212 | /* The dump callback needs to be set */ |
| 2213 | if (!dumper->dump) |
| 2214 | return -EINVAL; |
| 2215 | |
| 2216 | spin_lock_irqsave(&dump_list_lock, flags); |
| 2217 | /* Don't allow registering multiple times */ |
| 2218 | if (!dumper->registered) { |
| 2219 | dumper->registered = 1; |
Huang Ying | fb842b0 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 2220 | list_add_tail_rcu(&dumper->list, &dump_list); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2221 | err = 0; |
| 2222 | } |
| 2223 | spin_unlock_irqrestore(&dump_list_lock, flags); |
| 2224 | |
| 2225 | return err; |
| 2226 | } |
| 2227 | EXPORT_SYMBOL_GPL(kmsg_dump_register); |
| 2228 | |
| 2229 | /** |
| 2230 | * kmsg_dump_unregister - unregister a kmsg dumper. |
Randy Dunlap | 6485536 | 2009-12-17 15:27:27 -0800 | [diff] [blame] | 2231 | * @dumper: pointer to the kmsg_dumper structure |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2232 | * |
| 2233 | * Removes a dump device from the system. Returns zero on success and |
| 2234 | * %-EINVAL otherwise. |
| 2235 | */ |
| 2236 | int kmsg_dump_unregister(struct kmsg_dumper *dumper) |
| 2237 | { |
| 2238 | unsigned long flags; |
| 2239 | int err = -EINVAL; |
| 2240 | |
| 2241 | spin_lock_irqsave(&dump_list_lock, flags); |
| 2242 | if (dumper->registered) { |
| 2243 | dumper->registered = 0; |
Huang Ying | fb842b0 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 2244 | list_del_rcu(&dumper->list); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2245 | err = 0; |
| 2246 | } |
| 2247 | spin_unlock_irqrestore(&dump_list_lock, flags); |
Huang Ying | fb842b0 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 2248 | synchronize_rcu(); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2249 | |
| 2250 | return err; |
| 2251 | } |
| 2252 | EXPORT_SYMBOL_GPL(kmsg_dump_unregister); |
| 2253 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2254 | static bool always_kmsg_dump; |
| 2255 | module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR); |
| 2256 | |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2257 | /** |
| 2258 | * kmsg_dump - dump kernel log to kernel message dumpers. |
| 2259 | * @reason: the reason (oops, panic etc) for dumping |
| 2260 | * |
| 2261 | * Iterate through each of the dump devices and call the oops/panic |
| 2262 | * callbacks with the log buffer. |
| 2263 | */ |
| 2264 | void kmsg_dump(enum kmsg_dump_reason reason) |
| 2265 | { |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2266 | u64 idx; |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2267 | struct kmsg_dumper *dumper; |
| 2268 | const char *s1, *s2; |
| 2269 | unsigned long l1, l2; |
| 2270 | unsigned long flags; |
| 2271 | |
Matthew Garrett | c22ab33 | 2012-03-05 14:59:10 -0800 | [diff] [blame] | 2272 | if ((reason > KMSG_DUMP_OOPS) && !always_kmsg_dump) |
| 2273 | return; |
| 2274 | |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2275 | /* Theoretically, the log could move on after we do this, but |
| 2276 | there's not a lot we can do about that. The new messages |
| 2277 | will overwrite the start of what we dump. */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2278 | |
Thomas Gleixner | 07354eb | 2009-07-25 17:50:36 +0200 | [diff] [blame] | 2279 | raw_spin_lock_irqsave(&logbuf_lock, flags); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2280 | if (syslog_seq < log_first_seq) |
| 2281 | idx = syslog_idx; |
| 2282 | else |
| 2283 | idx = log_first_idx; |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2284 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2285 | if (idx > log_next_idx) { |
| 2286 | s1 = log_buf; |
| 2287 | l1 = log_next_idx; |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2288 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2289 | s2 = log_buf + idx; |
| 2290 | l2 = log_buf_len - idx; |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2291 | } else { |
| 2292 | s1 = ""; |
| 2293 | l1 = 0; |
| 2294 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2295 | s2 = log_buf + idx; |
| 2296 | l2 = log_next_idx - idx; |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2297 | } |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2298 | raw_spin_unlock_irqrestore(&logbuf_lock, flags); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2299 | |
Huang Ying | fb842b0 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 2300 | rcu_read_lock(); |
| 2301 | list_for_each_entry_rcu(dumper, &dump_list, list) |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2302 | dumper->dump(dumper, reason, s1, l1, s2, l2); |
Huang Ying | fb842b0 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 2303 | rcu_read_unlock(); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 2304 | } |
Joe Perches | 7ef3d2f | 2008-02-08 04:21:25 -0800 | [diff] [blame] | 2305 | #endif |