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