blob: b6e193da6ea4a489dec689a754d3547bdc550040 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/printk.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
6 * Modified to make sys_syslog() more flexible: added commands to
7 * return the last 4k of kernel messages, regardless of whether
8 * they've been read or not. Added option to suppress kernel printk's
9 * to the console. Added hook for sending the console messages
10 * elsewhere, in preparation for a serial line console (someday).
11 * Ted Ts'o, 2/11/93.
12 * Modified for sysctl support, 1/8/97, Chris Horn.
Jesper Juhl40dc5652005-10-30 15:02:46 -080013 * Fixed SMP synchronization, 08/08/99, Manfred Spraul
Christian Kujau624dffc2006-01-15 02:43:54 +010014 * manfred@colorfullife.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Rewrote bits to get rid of console_lock
Francois Camie1f8e872008-10-15 22:01:59 -070016 * 01Mar01 Andrew Morton
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
19#include <linux/kernel.h>
20#include <linux/mm.h>
21#include <linux/tty.h>
22#include <linux/tty_driver.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/console.h>
24#include <linux/init.h>
Randy Dunlapbfe8df32007-10-16 01:23:46 -070025#include <linux/jiffies.h>
26#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/module.h>
Jan Engelhardt3b9c0412006-06-25 05:48:15 -070028#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/delay.h>
30#include <linux/smp.h>
31#include <linux/security.h>
32#include <linux/bootmem.h>
Mike Travis162a7e72011-05-24 17:13:20 -070033#include <linux/memblock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/syscalls.h>
Neil Horman04d491a2009-04-02 16:58:57 -070035#include <linux/kexec.h>
Jason Wesseld37d39a2010-05-20 21:04:27 -050036#include <linux/kdb.h>
Ingo Molnar3fff4c42009-09-22 16:18:09 +020037#include <linux/ratelimit.h>
Simon Kagstrom456b5652009-10-16 14:09:18 +020038#include <linux/kmsg_dump.h>
Kees Cook00234592010-02-03 15:36:43 -080039#include <linux/syslog.h>
Kevin Cernekee034260d2010-06-03 22:11:25 -070040#include <linux/cpu.h>
41#include <linux/notifier.h>
Huang Yingfb842b02011-01-12 16:59:43 -080042#include <linux/rculist.h>
Kay Sieverse11fea92012-05-03 02:29:41 +020043#include <linux/poll.h>
Frederic Weisbecker74876a92012-10-12 18:00:23 +020044#include <linux/irq_work.h>
Tejun Heo196779b2013-04-30 15:27:12 -070045#include <linux/utsname.h>
Alex Elder249771b2014-08-06 16:09:08 -070046#include <linux/ctype.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080047#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#include <asm/uaccess.h>
Christoph Hellwig40a7d9f2016-08-02 14:03:59 -070050#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Johannes Berg95100352011-11-24 20:03:08 +010052#define CREATE_TRACE_POINTS
53#include <trace/events/printk.h>
54
Joe Perchesd197c432013-07-31 13:53:44 -070055#include "console_cmdline.h"
Joe Perchesbbeddf52013-07-31 13:53:45 -070056#include "braille.h"
Petr Mladek42a0bb32016-05-20 17:00:33 -070057#include "internal.h"
Joe Perchesd197c432013-07-31 13:53:44 -070058
Arve Hjønnevåg813f2672013-06-14 19:54:40 -070059#ifdef CONFIG_EARLY_PRINTK_DIRECT
Tony Lindgrenf9deaf12005-05-09 14:10:26 -070060extern void printascii(char *);
61#endif
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063int console_printk[4] = {
Borislav Petkova8fe19e2014-06-04 16:11:46 -070064 CONSOLE_LOGLEVEL_DEFAULT, /* console_loglevel */
Alex Elder42a9dc02014-08-06 16:09:01 -070065 MESSAGE_LOGLEVEL_DEFAULT, /* default_message_loglevel */
Borislav Petkova8fe19e2014-06-04 16:11:46 -070066 CONSOLE_LOGLEVEL_MIN, /* minimum_console_loglevel */
67 CONSOLE_LOGLEVEL_DEFAULT, /* default_console_loglevel */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
Patrick Pletscher0bbfb7c2007-02-17 20:10:16 +010071 * Low level drivers may need that to know if they can schedule in
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * their unblank() callback or not. So let's export it.
73 */
74int oops_in_progress;
75EXPORT_SYMBOL(oops_in_progress);
76
77/*
78 * console_sem protects the console_drivers list, and also
79 * provides serialisation for access to the entire console
80 * driver system.
81 */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +000082static DEFINE_SEMAPHORE(console_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083struct console *console_drivers;
Ingo Molnara29d1cf2008-06-02 13:19:08 +020084EXPORT_SYMBOL_GPL(console_drivers);
85
Daniel Vetterdaee7792012-09-22 19:52:11 +020086#ifdef CONFIG_LOCKDEP
87static struct lockdep_map console_lock_dep_map = {
88 .name = "console_lock"
89};
90#endif
91
Borislav Petkov750afe72016-08-02 14:04:07 -070092enum devkmsg_log_bits {
93 __DEVKMSG_LOG_BIT_ON = 0,
94 __DEVKMSG_LOG_BIT_OFF,
95 __DEVKMSG_LOG_BIT_LOCK,
96};
97
98enum devkmsg_log_masks {
99 DEVKMSG_LOG_MASK_ON = BIT(__DEVKMSG_LOG_BIT_ON),
100 DEVKMSG_LOG_MASK_OFF = BIT(__DEVKMSG_LOG_BIT_OFF),
101 DEVKMSG_LOG_MASK_LOCK = BIT(__DEVKMSG_LOG_BIT_LOCK),
102};
103
104/* Keep both the 'on' and 'off' bits clear, i.e. ratelimit by default: */
105#define DEVKMSG_LOG_MASK_DEFAULT 0
106
107static unsigned int __read_mostly devkmsg_log = DEVKMSG_LOG_MASK_DEFAULT;
108
109static int __control_devkmsg(char *str)
110{
111 if (!str)
112 return -EINVAL;
113
114 if (!strncmp(str, "on", 2)) {
115 devkmsg_log = DEVKMSG_LOG_MASK_ON;
116 return 2;
117 } else if (!strncmp(str, "off", 3)) {
118 devkmsg_log = DEVKMSG_LOG_MASK_OFF;
119 return 3;
120 } else if (!strncmp(str, "ratelimit", 9)) {
121 devkmsg_log = DEVKMSG_LOG_MASK_DEFAULT;
122 return 9;
123 }
124 return -EINVAL;
125}
126
127static int __init control_devkmsg(char *str)
128{
129 if (__control_devkmsg(str) < 0)
130 return 1;
131
132 /*
133 * Set sysctl string accordingly:
134 */
135 if (devkmsg_log == DEVKMSG_LOG_MASK_ON) {
136 memset(devkmsg_log_str, 0, DEVKMSG_STR_MAX_SIZE);
137 strncpy(devkmsg_log_str, "on", 2);
138 } else if (devkmsg_log == DEVKMSG_LOG_MASK_OFF) {
139 memset(devkmsg_log_str, 0, DEVKMSG_STR_MAX_SIZE);
140 strncpy(devkmsg_log_str, "off", 3);
141 }
142 /* else "ratelimit" which is set by default. */
143
144 /*
145 * Sysctl cannot change it anymore. The kernel command line setting of
146 * this parameter is to force the setting to be permanent throughout the
147 * runtime of the system. This is a precation measure against userspace
148 * trying to be a smarta** and attempting to change it up on us.
149 */
150 devkmsg_log |= DEVKMSG_LOG_MASK_LOCK;
151
152 return 0;
153}
154__setup("printk.devkmsg=", control_devkmsg);
155
156char devkmsg_log_str[DEVKMSG_STR_MAX_SIZE] = "ratelimit";
157
158int devkmsg_sysctl_set_loglvl(struct ctl_table *table, int write,
159 void __user *buffer, size_t *lenp, loff_t *ppos)
160{
161 char old_str[DEVKMSG_STR_MAX_SIZE];
162 unsigned int old;
163 int err;
164
165 if (write) {
166 if (devkmsg_log & DEVKMSG_LOG_MASK_LOCK)
167 return -EINVAL;
168
169 old = devkmsg_log;
170 strncpy(old_str, devkmsg_log_str, DEVKMSG_STR_MAX_SIZE);
171 }
172
173 err = proc_dostring(table, write, buffer, lenp, ppos);
174 if (err)
175 return err;
176
177 if (write) {
178 err = __control_devkmsg(devkmsg_log_str);
179
180 /*
181 * Do not accept an unknown string OR a known string with
182 * trailing crap...
183 */
184 if (err < 0 || (err + 1 != *lenp)) {
185
186 /* ... and restore old setting. */
187 devkmsg_log = old;
188 strncpy(devkmsg_log_str, old_str, DEVKMSG_STR_MAX_SIZE);
189
190 return -EINVAL;
191 }
192 }
193
194 return 0;
195}
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197/*
Tejun Heo6fe29352015-06-25 15:01:30 -0700198 * Number of registered extended console drivers.
199 *
200 * If extended consoles are present, in-kernel cont reassembly is disabled
201 * and each fragment is stored as a separate log entry with proper
202 * continuation flag so that every emitted message has full metadata. This
203 * doesn't change the result for regular consoles or /proc/kmsg. For
204 * /dev/kmsg, as long as the reader concatenates messages according to
205 * consecutive continuation flags, the end result should be the same too.
206 */
207static int nr_ext_console_drivers;
208
209/*
Jan Karabd8d7cf2014-06-04 16:11:36 -0700210 * Helper macros to handle lockdep when locking/unlocking console_sem. We use
211 * macros instead of functions so that _RET_IP_ contains useful information.
212 */
213#define down_console_sem() do { \
214 down(&console_sem);\
215 mutex_acquire(&console_lock_dep_map, 0, 0, _RET_IP_);\
216} while (0)
217
218static int __down_trylock_console_sem(unsigned long ip)
219{
220 if (down_trylock(&console_sem))
221 return 1;
222 mutex_acquire(&console_lock_dep_map, 0, 1, ip);
223 return 0;
224}
225#define down_trylock_console_sem() __down_trylock_console_sem(_RET_IP_)
226
227#define up_console_sem() do { \
228 mutex_release(&console_lock_dep_map, 1, _RET_IP_);\
229 up(&console_sem);\
230} while (0)
231
232/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 * This is used for debugging the mess that is the VT code by
234 * keeping track if we have the console semaphore held. It's
235 * definitely not the perfect debug tool (we don't know if _WE_
Alex Elder0b90fec2014-08-06 16:09:03 -0700236 * hold it and are racing, but it helps tracking those weird code
237 * paths in the console code where we end up in places I want
238 * locked without the console sempahore held).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 */
Linus Torvalds557240b2006-06-19 18:16:01 -0700240static int console_locked, console_suspended;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242/*
Feng Tangfe3d8ad2011-03-22 16:34:21 -0700243 * If exclusive_console is non-NULL then only this console is to be printed to.
244 */
245static struct console *exclusive_console;
246
247/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 * Array of consoles built from command line options (console=)
249 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251#define MAX_CMDLINECONSOLES 8
252
253static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
Joe Perchesd197c432013-07-31 13:53:44 -0700254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255static int selected_console = -1;
256static int preferred_console = -1;
Markus Armbruster9e124fe2008-05-26 23:31:07 +0100257int console_set_on_cmdline;
258EXPORT_SYMBOL(console_set_on_cmdline);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260/* Flag: console code may call schedule() */
261static int console_may_schedule;
262
Kay Sievers7ff95542012-05-03 02:29:13 +0200263/*
264 * The printk log buffer consists of a chain of concatenated variable
265 * length records. Every record starts with a record header, containing
266 * the overall length of the record.
267 *
268 * The heads to the first and last entry in the buffer, as well as the
Alex Elder0b90fec2014-08-06 16:09:03 -0700269 * sequence numbers of these entries are maintained when messages are
270 * stored.
Kay Sievers7ff95542012-05-03 02:29:13 +0200271 *
272 * If the heads indicate available messages, the length in the header
273 * tells the start next message. A length == 0 for the next message
274 * indicates a wrap-around to the beginning of the buffer.
275 *
276 * Every record carries the monotonic timestamp in microseconds, as well as
277 * the standard userspace syslog level and syslog facility. The usual
278 * kernel messages use LOG_KERN; userspace-injected messages always carry
279 * a matching syslog facility, by default LOG_USER. The origin of every
280 * message can be reliably determined that way.
281 *
282 * The human readable log message directly follows the message header. The
283 * length of the message text is stored in the header, the stored message
284 * is not terminated.
285 *
Kay Sieverse11fea92012-05-03 02:29:41 +0200286 * Optionally, a message can carry a dictionary of properties (key/value pairs),
287 * to provide userspace with a machine-readable message context.
288 *
289 * Examples for well-defined, commonly used property names are:
290 * DEVICE=b12:8 device identifier
291 * b12:8 block dev_t
292 * c127:3 char dev_t
293 * n8 netdev ifindex
294 * +sound:card0 subsystem:devname
295 * SUBSYSTEM=pci driver-core subsystem name
296 *
297 * Valid characters in property names are [a-zA-Z0-9.-_]. The plain text value
298 * follows directly after a '=' character. Every property is terminated by
299 * a '\0' character. The last property is not terminated.
300 *
301 * Example of a message structure:
302 * 0000 ff 8f 00 00 00 00 00 00 monotonic time in nsec
303 * 0008 34 00 record is 52 bytes long
304 * 000a 0b 00 text is 11 bytes long
305 * 000c 1f 00 dictionary is 23 bytes long
306 * 000e 03 00 LOG_KERN (facility) LOG_ERR (level)
307 * 0010 69 74 27 73 20 61 20 6c "it's a l"
308 * 69 6e 65 "ine"
309 * 001b 44 45 56 49 43 "DEVIC"
310 * 45 3d 62 38 3a 32 00 44 "E=b8:2\0D"
311 * 52 49 56 45 52 3d 62 75 "RIVER=bu"
312 * 67 "g"
313 * 0032 00 00 00 padding to next message header
314 *
Joe Perches62e32ac2013-07-31 13:53:47 -0700315 * The 'struct printk_log' buffer header must never be directly exported to
Kay Sieverse11fea92012-05-03 02:29:41 +0200316 * userspace, it is a kernel-private implementation detail that might
317 * need to be changed in the future, when the requirements change.
318 *
319 * /dev/kmsg exports the structured data in the following line format:
Antonio Ospiteb3896452015-06-30 14:59:03 -0700320 * "<level>,<sequnum>,<timestamp>,<contflag>[,additional_values, ... ];<message text>\n"
321 *
322 * Users of the export format should ignore possible additional values
323 * separated by ',', and find the message after the ';' character.
Kay Sieverse11fea92012-05-03 02:29:41 +0200324 *
325 * The optional key/value pairs are attached as continuation lines starting
326 * with a space character and terminated by a newline. All possible
327 * non-prinatable characters are escaped in the "\xff" notation.
Kay Sievers7ff95542012-05-03 02:29:13 +0200328 */
Matt Mackalld59745c2005-05-01 08:59:02 -0700329
Kay Sievers084681d2012-06-28 09:38:53 +0200330enum log_flags {
Kay Sievers5becfb12012-07-09 12:15:42 -0700331 LOG_NOCONS = 1, /* already flushed, do not print to console */
332 LOG_NEWLINE = 2, /* text ended with a newline */
333 LOG_PREFIX = 4, /* text started with a prefix */
334 LOG_CONT = 8, /* text is a fragment of a continuation line */
Kay Sievers084681d2012-06-28 09:38:53 +0200335};
336
Joe Perches62e32ac2013-07-31 13:53:47 -0700337struct printk_log {
Kay Sievers7ff95542012-05-03 02:29:13 +0200338 u64 ts_nsec; /* timestamp in nanoseconds */
339 u16 len; /* length of entire record */
340 u16 text_len; /* length of text buffer */
341 u16 dict_len; /* length of dictionary buffer */
Kay Sievers084681d2012-06-28 09:38:53 +0200342 u8 facility; /* syslog facility */
343 u8 flags:5; /* internal record flags */
344 u8 level:3; /* syslog level */
Andrey Ryabinin5c9cf8a2016-01-20 15:00:48 -0800345}
346#ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
347__packed __aligned(4)
348#endif
349;
Kay Sievers7ff95542012-05-03 02:29:13 +0200350
351/*
Steven Rostedt458df9f2014-06-04 16:11:38 -0700352 * The logbuf_lock protects kmsg buffer, indices, counters. This can be taken
353 * within the scheduler's rq lock. It must be released before calling
354 * console_unlock() or anything else that might wake up a process.
Kay Sievers7ff95542012-05-03 02:29:13 +0200355 */
Petr Mladekcf9b1102016-05-20 17:00:42 -0700356DEFINE_RAW_SPINLOCK(logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +0200357
Kay Sievers96efedf2012-07-16 18:35:29 -0700358#ifdef CONFIG_PRINTK
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -0700359DECLARE_WAIT_QUEUE_HEAD(log_wait);
Kay Sievers7f3a7812012-05-09 01:37:51 +0200360/* the next printk record to read by syslog(READ) or /proc/kmsg */
361static u64 syslog_seq;
362static u32 syslog_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -0700363static enum log_flags syslog_prev;
Kay Sieverseb02dac2012-07-09 10:05:10 -0700364static size_t syslog_partial;
Kay Sievers7f3a7812012-05-09 01:37:51 +0200365
366/* index and sequence number of the first record stored in the buffer */
367static u64 log_first_seq;
368static u32 log_first_idx;
369
370/* index and sequence number of the next record to store in the buffer */
371static u64 log_next_seq;
Kay Sievers7f3a7812012-05-09 01:37:51 +0200372static u32 log_next_idx;
373
Kay Sieverseab07262012-07-16 18:35:30 -0700374/* the next printk record to write to the console */
375static u64 console_seq;
376static u32 console_idx;
377static enum log_flags console_prev;
378
Kay Sievers7f3a7812012-05-09 01:37:51 +0200379/* the next printk record to read after the last 'clear' command */
380static u64 clear_seq;
381static u32 clear_idx;
Kay Sievers7ff95542012-05-03 02:29:13 +0200382
Kay Sievers70498252012-07-16 18:35:29 -0700383#define PREFIX_MAX 32
Alex Elder249771b2014-08-06 16:09:08 -0700384#define LOG_LINE_MAX (1024 - PREFIX_MAX)
Kay Sievers7ff95542012-05-03 02:29:13 +0200385
Mathias Krause38246572015-11-06 16:30:38 -0800386#define LOG_LEVEL(v) ((v) & 0x07)
387#define LOG_FACILITY(v) ((v) >> 3 & 0xff)
388
Kay Sievers7ff95542012-05-03 02:29:13 +0200389/* record buffer */
Joe Perches62e32ac2013-07-31 13:53:47 -0700390#define LOG_ALIGN __alignof__(struct printk_log)
Kay Sievers7ff95542012-05-03 02:29:13 +0200391#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
Stephen Warrenf8450fc2012-05-10 16:14:33 -0600392static char __log_buf[__LOG_BUF_LEN] __aligned(LOG_ALIGN);
Matt Mackalld59745c2005-05-01 08:59:02 -0700393static char *log_buf = __log_buf;
Kay Sievers7ff95542012-05-03 02:29:13 +0200394static u32 log_buf_len = __LOG_BUF_LEN;
395
Vasant Hegde14c40002014-08-09 11:15:30 +0530396/* Return log buffer address */
397char *log_buf_addr_get(void)
398{
399 return log_buf;
400}
401
402/* Return log buffer size */
403u32 log_buf_len_get(void)
404{
405 return log_buf_len;
406}
407
Kay Sievers7ff95542012-05-03 02:29:13 +0200408/* human readable text of the record */
Joe Perches62e32ac2013-07-31 13:53:47 -0700409static char *log_text(const struct printk_log *msg)
Kay Sievers7ff95542012-05-03 02:29:13 +0200410{
Joe Perches62e32ac2013-07-31 13:53:47 -0700411 return (char *)msg + sizeof(struct printk_log);
Kay Sievers7ff95542012-05-03 02:29:13 +0200412}
413
414/* optional key/value pair dictionary attached to the record */
Joe Perches62e32ac2013-07-31 13:53:47 -0700415static char *log_dict(const struct printk_log *msg)
Kay Sievers7ff95542012-05-03 02:29:13 +0200416{
Joe Perches62e32ac2013-07-31 13:53:47 -0700417 return (char *)msg + sizeof(struct printk_log) + msg->text_len;
Kay Sievers7ff95542012-05-03 02:29:13 +0200418}
419
420/* get record by index; idx must point to valid msg */
Joe Perches62e32ac2013-07-31 13:53:47 -0700421static struct printk_log *log_from_idx(u32 idx)
Kay Sievers7ff95542012-05-03 02:29:13 +0200422{
Joe Perches62e32ac2013-07-31 13:53:47 -0700423 struct printk_log *msg = (struct printk_log *)(log_buf + idx);
Kay Sievers7ff95542012-05-03 02:29:13 +0200424
425 /*
426 * A length == 0 record is the end of buffer marker. Wrap around and
427 * read the message at the start of the buffer.
428 */
429 if (!msg->len)
Joe Perches62e32ac2013-07-31 13:53:47 -0700430 return (struct printk_log *)log_buf;
Kay Sievers7ff95542012-05-03 02:29:13 +0200431 return msg;
432}
433
434/* get next record; idx must point to valid msg */
435static u32 log_next(u32 idx)
436{
Joe Perches62e32ac2013-07-31 13:53:47 -0700437 struct printk_log *msg = (struct printk_log *)(log_buf + idx);
Kay Sievers7ff95542012-05-03 02:29:13 +0200438
439 /* length == 0 indicates the end of the buffer; wrap */
440 /*
441 * A length == 0 record is the end of buffer marker. Wrap around and
442 * read the message at the start of the buffer as *this* one, and
443 * return the one after that.
444 */
445 if (!msg->len) {
Joe Perches62e32ac2013-07-31 13:53:47 -0700446 msg = (struct printk_log *)log_buf;
Kay Sievers7ff95542012-05-03 02:29:13 +0200447 return msg->len;
448 }
449 return idx + msg->len;
450}
451
Petr Mladekf40e4b92014-06-04 16:11:30 -0700452/*
453 * Check whether there is enough free space for the given message.
454 *
455 * The same values of first_idx and next_idx mean that the buffer
456 * is either empty or full.
457 *
458 * If the buffer is empty, we must respect the position of the indexes.
459 * They cannot be reset to the beginning of the buffer.
460 */
461static int logbuf_has_space(u32 msg_size, bool empty)
Petr Mladek0a581692014-06-04 16:11:28 -0700462{
463 u32 free;
464
Petr Mladekf40e4b92014-06-04 16:11:30 -0700465 if (log_next_idx > log_first_idx || empty)
Petr Mladek0a581692014-06-04 16:11:28 -0700466 free = max(log_buf_len - log_next_idx, log_first_idx);
467 else
468 free = log_first_idx - log_next_idx;
469
470 /*
471 * We need space also for an empty header that signalizes wrapping
472 * of the buffer.
473 */
474 return free >= msg_size + sizeof(struct printk_log);
475}
476
Petr Mladekf40e4b92014-06-04 16:11:30 -0700477static int log_make_free_space(u32 msg_size)
Petr Mladek0a581692014-06-04 16:11:28 -0700478{
Ivan Delalandef4689082016-03-17 14:21:30 -0700479 while (log_first_seq < log_next_seq &&
480 !logbuf_has_space(msg_size, false)) {
Alex Elder0b90fec2014-08-06 16:09:03 -0700481 /* drop old messages until we have enough contiguous space */
Petr Mladek0a581692014-06-04 16:11:28 -0700482 log_first_idx = log_next(log_first_idx);
483 log_first_seq++;
484 }
Petr Mladekf40e4b92014-06-04 16:11:30 -0700485
Ivan Delalandef4689082016-03-17 14:21:30 -0700486 if (clear_seq < log_first_seq) {
487 clear_seq = log_first_seq;
488 clear_idx = log_first_idx;
489 }
490
Petr Mladekf40e4b92014-06-04 16:11:30 -0700491 /* sequence numbers are equal, so the log buffer is empty */
Ivan Delalandef4689082016-03-17 14:21:30 -0700492 if (logbuf_has_space(msg_size, log_first_seq == log_next_seq))
Petr Mladekf40e4b92014-06-04 16:11:30 -0700493 return 0;
494
495 return -ENOMEM;
Petr Mladek0a581692014-06-04 16:11:28 -0700496}
497
Petr Mladek85c870432014-06-04 16:11:31 -0700498/* compute the message size including the padding bytes */
499static u32 msg_used_size(u16 text_len, u16 dict_len, u32 *pad_len)
500{
501 u32 size;
502
503 size = sizeof(struct printk_log) + text_len + dict_len;
504 *pad_len = (-size) & (LOG_ALIGN - 1);
505 size += *pad_len;
506
507 return size;
508}
509
Petr Mladek55bd53a2014-06-04 16:11:32 -0700510/*
511 * Define how much of the log buffer we could take at maximum. The value
512 * must be greater than two. Note that only half of the buffer is available
513 * when the index points to the middle.
514 */
515#define MAX_LOG_TAKE_PART 4
516static const char trunc_msg[] = "<truncated>";
517
518static u32 truncate_msg(u16 *text_len, u16 *trunc_msg_len,
519 u16 *dict_len, u32 *pad_len)
520{
521 /*
522 * The message should not take the whole buffer. Otherwise, it might
523 * get removed too soon.
524 */
525 u32 max_text_len = log_buf_len / MAX_LOG_TAKE_PART;
526 if (*text_len > max_text_len)
527 *text_len = max_text_len;
528 /* enable the warning message */
529 *trunc_msg_len = strlen(trunc_msg);
530 /* disable the "dict" completely */
531 *dict_len = 0;
532 /* compute the size again, count also the warning message */
533 return msg_used_size(*text_len + *trunc_msg_len, 0, pad_len);
534}
535
Kay Sievers7ff95542012-05-03 02:29:13 +0200536/* insert record into the buffer, discard old ones, update heads */
Petr Mladek034633c2014-06-04 16:11:33 -0700537static int log_store(int facility, int level,
538 enum log_flags flags, u64 ts_nsec,
539 const char *dict, u16 dict_len,
540 const char *text, u16 text_len)
Kay Sievers7ff95542012-05-03 02:29:13 +0200541{
Joe Perches62e32ac2013-07-31 13:53:47 -0700542 struct printk_log *msg;
Kay Sievers7ff95542012-05-03 02:29:13 +0200543 u32 size, pad_len;
Petr Mladek55bd53a2014-06-04 16:11:32 -0700544 u16 trunc_msg_len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +0200545
546 /* number of '\0' padding bytes to next message */
Petr Mladek85c870432014-06-04 16:11:31 -0700547 size = msg_used_size(text_len, dict_len, &pad_len);
Kay Sievers7ff95542012-05-03 02:29:13 +0200548
Petr Mladek55bd53a2014-06-04 16:11:32 -0700549 if (log_make_free_space(size)) {
550 /* truncate the message if it is too long for empty buffer */
551 size = truncate_msg(&text_len, &trunc_msg_len,
552 &dict_len, &pad_len);
553 /* survive when the log buffer is too small for trunc_msg */
554 if (log_make_free_space(size))
Petr Mladek034633c2014-06-04 16:11:33 -0700555 return 0;
Petr Mladek55bd53a2014-06-04 16:11:32 -0700556 }
Kay Sievers7ff95542012-05-03 02:29:13 +0200557
Petr Mladek39b25102014-04-03 14:48:42 -0700558 if (log_next_idx + size + sizeof(struct printk_log) > log_buf_len) {
Kay Sievers7ff95542012-05-03 02:29:13 +0200559 /*
560 * This message + an additional empty header does not fit
561 * at the end of the buffer. Add an empty header with len == 0
562 * to signify a wrap around.
563 */
Joe Perches62e32ac2013-07-31 13:53:47 -0700564 memset(log_buf + log_next_idx, 0, sizeof(struct printk_log));
Kay Sievers7ff95542012-05-03 02:29:13 +0200565 log_next_idx = 0;
566 }
567
568 /* fill message */
Joe Perches62e32ac2013-07-31 13:53:47 -0700569 msg = (struct printk_log *)(log_buf + log_next_idx);
Kay Sievers7ff95542012-05-03 02:29:13 +0200570 memcpy(log_text(msg), text, text_len);
571 msg->text_len = text_len;
Petr Mladek55bd53a2014-06-04 16:11:32 -0700572 if (trunc_msg_len) {
573 memcpy(log_text(msg) + text_len, trunc_msg, trunc_msg_len);
574 msg->text_len += trunc_msg_len;
575 }
Kay Sievers7ff95542012-05-03 02:29:13 +0200576 memcpy(log_dict(msg), dict, dict_len);
577 msg->dict_len = dict_len;
Kay Sievers084681d2012-06-28 09:38:53 +0200578 msg->facility = facility;
579 msg->level = level & 7;
580 msg->flags = flags & 0x1f;
581 if (ts_nsec > 0)
582 msg->ts_nsec = ts_nsec;
583 else
584 msg->ts_nsec = local_clock();
Kay Sievers7ff95542012-05-03 02:29:13 +0200585 memset(log_dict(msg) + dict_len, 0, pad_len);
Petr Mladekfce6e032014-04-03 14:48:43 -0700586 msg->len = size;
Kay Sievers7ff95542012-05-03 02:29:13 +0200587
588 /* insert message */
589 log_next_idx += msg->len;
590 log_next_seq++;
Petr Mladek034633c2014-06-04 16:11:33 -0700591
592 return msg->text_len;
Kay Sievers7ff95542012-05-03 02:29:13 +0200593}
Matt Mackalld59745c2005-05-01 08:59:02 -0700594
Alex Eldere99aa462014-08-06 16:09:05 -0700595int dmesg_restrict = IS_ENABLED(CONFIG_SECURITY_DMESG_RESTRICT);
Kees Cook637241a2013-06-12 14:04:39 -0700596
597static int syslog_action_restricted(int type)
598{
599 if (dmesg_restrict)
600 return 1;
601 /*
602 * Unless restricted, we allow "read all" and "get buffer size"
603 * for everybody.
604 */
605 return type != SYSLOG_ACTION_READ_ALL &&
606 type != SYSLOG_ACTION_SIZE_BUFFER;
607}
608
Vasily Averin3ea43312015-06-25 15:01:47 -0700609int check_syslog_permissions(int type, int source)
Kees Cook637241a2013-06-12 14:04:39 -0700610{
611 /*
612 * If this is from /proc/kmsg and we've already opened it, then we've
613 * already done the capabilities checks at open time.
614 */
Vasily Averin3ea43312015-06-25 15:01:47 -0700615 if (source == SYSLOG_FROM_PROC && type != SYSLOG_ACTION_OPEN)
Vasily Averind194e5d2015-06-25 15:01:44 -0700616 goto ok;
Kees Cook637241a2013-06-12 14:04:39 -0700617
618 if (syslog_action_restricted(type)) {
619 if (capable(CAP_SYSLOG))
Vasily Averind194e5d2015-06-25 15:01:44 -0700620 goto ok;
Kees Cook637241a2013-06-12 14:04:39 -0700621 /*
622 * For historical reasons, accept CAP_SYS_ADMIN too, with
623 * a warning.
624 */
625 if (capable(CAP_SYS_ADMIN)) {
626 pr_warn_once("%s (%d): Attempt to access syslog with "
627 "CAP_SYS_ADMIN but no CAP_SYSLOG "
628 "(deprecated).\n",
629 current->comm, task_pid_nr(current));
Vasily Averind194e5d2015-06-25 15:01:44 -0700630 goto ok;
Kees Cook637241a2013-06-12 14:04:39 -0700631 }
632 return -EPERM;
633 }
Vasily Averind194e5d2015-06-25 15:01:44 -0700634ok:
Kees Cook637241a2013-06-12 14:04:39 -0700635 return security_syslog(type);
636}
Geliang Tangee1d2672015-10-20 00:39:03 -0700637EXPORT_SYMBOL_GPL(check_syslog_permissions);
Kees Cook637241a2013-06-12 14:04:39 -0700638
Tejun Heod43ff432015-06-25 15:01:24 -0700639static void append_char(char **pp, char *e, char c)
640{
641 if (*pp < e)
642 *(*pp)++ = c;
643}
Kees Cook637241a2013-06-12 14:04:39 -0700644
Tejun Heo0a295e672015-06-25 15:01:27 -0700645static ssize_t msg_print_ext_header(char *buf, size_t size,
646 struct printk_log *msg, u64 seq,
647 enum log_flags prev_flags)
648{
649 u64 ts_usec = msg->ts_nsec;
650 char cont = '-';
651
652 do_div(ts_usec, 1000);
653
654 /*
655 * If we couldn't merge continuation line fragments during the print,
656 * export the stored flags to allow an optional external merge of the
657 * records. Merging the records isn't always neccessarily correct, like
658 * when we hit a race during printing. In most cases though, it produces
659 * better readable output. 'c' in the record flags mark the first
660 * fragment of a line, '+' the following.
661 */
Linus Torvalds4bcc5952016-10-08 20:32:40 -0700662 if (msg->flags & LOG_CONT)
663 cont = (prev_flags & LOG_CONT) ? '+' : 'c';
Tejun Heo0a295e672015-06-25 15:01:27 -0700664
665 return scnprintf(buf, size, "%u,%llu,%llu,%c;",
666 (msg->facility << 3) | msg->level, seq, ts_usec, cont);
667}
668
669static ssize_t msg_print_ext_body(char *buf, size_t size,
670 char *dict, size_t dict_len,
671 char *text, size_t text_len)
672{
673 char *p = buf, *e = buf + size;
674 size_t i;
675
676 /* escape non-printable characters */
677 for (i = 0; i < text_len; i++) {
678 unsigned char c = text[i];
679
680 if (c < ' ' || c >= 127 || c == '\\')
681 p += scnprintf(p, e - p, "\\x%02x", c);
682 else
683 append_char(&p, e, c);
684 }
685 append_char(&p, e, '\n');
686
687 if (dict_len) {
688 bool line = true;
689
690 for (i = 0; i < dict_len; i++) {
691 unsigned char c = dict[i];
692
693 if (line) {
694 append_char(&p, e, ' ');
695 line = false;
696 }
697
698 if (c == '\0') {
699 append_char(&p, e, '\n');
700 line = true;
701 continue;
702 }
703
704 if (c < ' ' || c >= 127 || c == '\\') {
705 p += scnprintf(p, e - p, "\\x%02x", c);
706 continue;
707 }
708
709 append_char(&p, e, c);
710 }
711 append_char(&p, e, '\n');
712 }
713
714 return p - buf;
715}
716
Kay Sieverse11fea92012-05-03 02:29:41 +0200717/* /dev/kmsg - userspace message inject/listen interface */
718struct devkmsg_user {
719 u64 seq;
720 u32 idx;
Kay Sieversd39f3d72012-07-16 18:35:30 -0700721 enum log_flags prev;
Borislav Petkov750afe72016-08-02 14:04:07 -0700722 struct ratelimit_state rs;
Kay Sieverse11fea92012-05-03 02:29:41 +0200723 struct mutex lock;
Tejun Heod43ff432015-06-25 15:01:24 -0700724 char buf[CONSOLE_EXT_LOG_MAX];
Kay Sieverse11fea92012-05-03 02:29:41 +0200725};
726
Al Viro849f3122014-08-23 12:23:53 -0400727static ssize_t devkmsg_write(struct kiocb *iocb, struct iov_iter *from)
Kay Sieverse11fea92012-05-03 02:29:41 +0200728{
729 char *buf, *line;
Kay Sieverse11fea92012-05-03 02:29:41 +0200730 int level = default_message_loglevel;
731 int facility = 1; /* LOG_USER */
Borislav Petkov750afe72016-08-02 14:04:07 -0700732 struct file *file = iocb->ki_filp;
733 struct devkmsg_user *user = file->private_data;
Christoph Hellwig66ee59a2015-02-11 19:56:46 +0100734 size_t len = iov_iter_count(from);
Kay Sieverse11fea92012-05-03 02:29:41 +0200735 ssize_t ret = len;
736
Borislav Petkov750afe72016-08-02 14:04:07 -0700737 if (!user || len > LOG_LINE_MAX)
Kay Sieverse11fea92012-05-03 02:29:41 +0200738 return -EINVAL;
Borislav Petkov750afe72016-08-02 14:04:07 -0700739
740 /* Ignore when user logging is disabled. */
741 if (devkmsg_log & DEVKMSG_LOG_MASK_OFF)
742 return len;
743
744 /* Ratelimit when not explicitly enabled. */
745 if (!(devkmsg_log & DEVKMSG_LOG_MASK_ON)) {
746 if (!___ratelimit(&user->rs, current->comm))
747 return ret;
748 }
749
Kay Sieverse11fea92012-05-03 02:29:41 +0200750 buf = kmalloc(len+1, GFP_KERNEL);
751 if (buf == NULL)
752 return -ENOMEM;
753
Al Viro849f3122014-08-23 12:23:53 -0400754 buf[len] = '\0';
755 if (copy_from_iter(buf, len, from) != len) {
756 kfree(buf);
757 return -EFAULT;
Kay Sieverse11fea92012-05-03 02:29:41 +0200758 }
759
760 /*
761 * Extract and skip the syslog prefix <[0-9]*>. Coming from userspace
762 * the decimal value represents 32bit, the lower 3 bit are the log
763 * level, the rest are the log facility.
764 *
765 * If no prefix or no userspace facility is specified, we
766 * enforce LOG_USER, to be able to reliably distinguish
767 * kernel-generated messages from userspace-injected ones.
768 */
769 line = buf;
770 if (line[0] == '<') {
771 char *endp = NULL;
Mathias Krause38246572015-11-06 16:30:38 -0800772 unsigned int u;
Kay Sieverse11fea92012-05-03 02:29:41 +0200773
Mathias Krause38246572015-11-06 16:30:38 -0800774 u = simple_strtoul(line + 1, &endp, 10);
Kay Sieverse11fea92012-05-03 02:29:41 +0200775 if (endp && endp[0] == '>') {
Mathias Krause38246572015-11-06 16:30:38 -0800776 level = LOG_LEVEL(u);
777 if (LOG_FACILITY(u) != 0)
778 facility = LOG_FACILITY(u);
Kay Sieverse11fea92012-05-03 02:29:41 +0200779 endp++;
780 len -= endp - line;
781 line = endp;
782 }
783 }
Kay Sieverse11fea92012-05-03 02:29:41 +0200784
785 printk_emit(facility, level, NULL, 0, "%s", line);
Kay Sieverse11fea92012-05-03 02:29:41 +0200786 kfree(buf);
787 return ret;
788}
789
790static ssize_t devkmsg_read(struct file *file, char __user *buf,
791 size_t count, loff_t *ppos)
792{
793 struct devkmsg_user *user = file->private_data;
Joe Perches62e32ac2013-07-31 13:53:47 -0700794 struct printk_log *msg;
Kay Sieverse11fea92012-05-03 02:29:41 +0200795 size_t len;
796 ssize_t ret;
797
798 if (!user)
799 return -EBADF;
800
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +0800801 ret = mutex_lock_interruptible(&user->lock);
802 if (ret)
803 return ret;
liu chuansheng5c53d812012-07-06 09:50:08 -0700804 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200805 while (user->seq == log_next_seq) {
806 if (file->f_flags & O_NONBLOCK) {
807 ret = -EAGAIN;
liu chuansheng5c53d812012-07-06 09:50:08 -0700808 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200809 goto out;
810 }
811
liu chuansheng5c53d812012-07-06 09:50:08 -0700812 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200813 ret = wait_event_interruptible(log_wait,
814 user->seq != log_next_seq);
815 if (ret)
816 goto out;
liu chuansheng5c53d812012-07-06 09:50:08 -0700817 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200818 }
819
820 if (user->seq < log_first_seq) {
821 /* our last seen message is gone, return error and reset */
822 user->idx = log_first_idx;
823 user->seq = log_first_seq;
824 ret = -EPIPE;
liu chuansheng5c53d812012-07-06 09:50:08 -0700825 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200826 goto out;
827 }
828
829 msg = log_from_idx(user->idx);
Tejun Heo0a295e672015-06-25 15:01:27 -0700830 len = msg_print_ext_header(user->buf, sizeof(user->buf),
831 msg, user->seq, user->prev);
832 len += msg_print_ext_body(user->buf + len, sizeof(user->buf) - len,
833 log_dict(msg), msg->dict_len,
834 log_text(msg), msg->text_len);
Kay Sieversd39f3d72012-07-16 18:35:30 -0700835
Kay Sieversd39f3d72012-07-16 18:35:30 -0700836 user->prev = msg->flags;
Kay Sieverse11fea92012-05-03 02:29:41 +0200837 user->idx = log_next(user->idx);
838 user->seq++;
liu chuansheng5c53d812012-07-06 09:50:08 -0700839 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200840
841 if (len > count) {
842 ret = -EINVAL;
843 goto out;
844 }
845
846 if (copy_to_user(buf, user->buf, len)) {
847 ret = -EFAULT;
848 goto out;
849 }
850 ret = len;
851out:
852 mutex_unlock(&user->lock);
853 return ret;
854}
855
856static loff_t devkmsg_llseek(struct file *file, loff_t offset, int whence)
857{
858 struct devkmsg_user *user = file->private_data;
859 loff_t ret = 0;
860
861 if (!user)
862 return -EBADF;
863 if (offset)
864 return -ESPIPE;
865
liu chuansheng5c53d812012-07-06 09:50:08 -0700866 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200867 switch (whence) {
868 case SEEK_SET:
869 /* the first record */
870 user->idx = log_first_idx;
871 user->seq = log_first_seq;
872 break;
873 case SEEK_DATA:
874 /*
875 * The first record after the last SYSLOG_ACTION_CLEAR,
876 * like issued by 'dmesg -c'. Reading /dev/kmsg itself
877 * changes no global state, and does not clear anything.
878 */
879 user->idx = clear_idx;
880 user->seq = clear_seq;
881 break;
882 case SEEK_END:
883 /* after the last record */
884 user->idx = log_next_idx;
885 user->seq = log_next_seq;
886 break;
887 default:
888 ret = -EINVAL;
889 }
liu chuansheng5c53d812012-07-06 09:50:08 -0700890 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200891 return ret;
892}
893
894static unsigned int devkmsg_poll(struct file *file, poll_table *wait)
895{
896 struct devkmsg_user *user = file->private_data;
897 int ret = 0;
898
899 if (!user)
900 return POLLERR|POLLNVAL;
901
902 poll_wait(file, &log_wait, wait);
903
liu chuansheng5c53d812012-07-06 09:50:08 -0700904 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200905 if (user->seq < log_next_seq) {
906 /* return error when data has vanished underneath us */
907 if (user->seq < log_first_seq)
908 ret = POLLIN|POLLRDNORM|POLLERR|POLLPRI;
Nicolas Kaiser0a285312013-04-29 16:17:20 -0700909 else
910 ret = POLLIN|POLLRDNORM;
Kay Sieverse11fea92012-05-03 02:29:41 +0200911 }
liu chuansheng5c53d812012-07-06 09:50:08 -0700912 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200913
914 return ret;
915}
916
917static int devkmsg_open(struct inode *inode, struct file *file)
918{
919 struct devkmsg_user *user;
920 int err;
921
Borislav Petkov750afe72016-08-02 14:04:07 -0700922 if (devkmsg_log & DEVKMSG_LOG_MASK_OFF)
923 return -EPERM;
Kay Sieverse11fea92012-05-03 02:29:41 +0200924
Borislav Petkov750afe72016-08-02 14:04:07 -0700925 /* write-only does not need any file context */
926 if ((file->f_flags & O_ACCMODE) != O_WRONLY) {
927 err = check_syslog_permissions(SYSLOG_ACTION_READ_ALL,
928 SYSLOG_FROM_READER);
929 if (err)
930 return err;
931 }
Kay Sieverse11fea92012-05-03 02:29:41 +0200932
933 user = kmalloc(sizeof(struct devkmsg_user), GFP_KERNEL);
934 if (!user)
935 return -ENOMEM;
936
Borislav Petkov750afe72016-08-02 14:04:07 -0700937 ratelimit_default_init(&user->rs);
938 ratelimit_set_flags(&user->rs, RATELIMIT_MSG_ON_RELEASE);
939
Kay Sieverse11fea92012-05-03 02:29:41 +0200940 mutex_init(&user->lock);
941
liu chuansheng5c53d812012-07-06 09:50:08 -0700942 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200943 user->idx = log_first_idx;
944 user->seq = log_first_seq;
liu chuansheng5c53d812012-07-06 09:50:08 -0700945 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200946
947 file->private_data = user;
948 return 0;
949}
950
951static int devkmsg_release(struct inode *inode, struct file *file)
952{
953 struct devkmsg_user *user = file->private_data;
954
955 if (!user)
956 return 0;
957
Borislav Petkov750afe72016-08-02 14:04:07 -0700958 ratelimit_state_exit(&user->rs);
959
Kay Sieverse11fea92012-05-03 02:29:41 +0200960 mutex_destroy(&user->lock);
961 kfree(user);
962 return 0;
963}
964
965const struct file_operations kmsg_fops = {
966 .open = devkmsg_open,
967 .read = devkmsg_read,
Al Viro849f3122014-08-23 12:23:53 -0400968 .write_iter = devkmsg_write,
Kay Sieverse11fea92012-05-03 02:29:41 +0200969 .llseek = devkmsg_llseek,
970 .poll = devkmsg_poll,
971 .release = devkmsg_release,
972};
973
Dave Young2965faa2015-09-09 15:38:55 -0700974#ifdef CONFIG_KEXEC_CORE
Neil Horman04d491a2009-04-02 16:58:57 -0700975/*
Dirk Gouders4c1ace62013-11-12 15:08:54 -0800976 * This appends the listed symbols to /proc/vmcore
Neil Horman04d491a2009-04-02 16:58:57 -0700977 *
Dirk Gouders4c1ace62013-11-12 15:08:54 -0800978 * /proc/vmcore is used by various utilities, like crash and makedumpfile to
Neil Horman04d491a2009-04-02 16:58:57 -0700979 * obtain access to symbols that are otherwise very difficult to locate. These
980 * symbols are specifically used so that utilities can access and extract the
981 * dmesg log from a vmcore file after a crash.
982 */
983void log_buf_kexec_setup(void)
984{
985 VMCOREINFO_SYMBOL(log_buf);
Neil Horman04d491a2009-04-02 16:58:57 -0700986 VMCOREINFO_SYMBOL(log_buf_len);
Kay Sievers7ff95542012-05-03 02:29:13 +0200987 VMCOREINFO_SYMBOL(log_first_idx);
Ivan Delalandef4689082016-03-17 14:21:30 -0700988 VMCOREINFO_SYMBOL(clear_idx);
Kay Sievers7ff95542012-05-03 02:29:13 +0200989 VMCOREINFO_SYMBOL(log_next_idx);
Vivek Goyal67914572012-07-18 13:18:12 -0400990 /*
Joe Perches62e32ac2013-07-31 13:53:47 -0700991 * Export struct printk_log size and field offsets. User space tools can
Vivek Goyal67914572012-07-18 13:18:12 -0400992 * parse it and detect any changes to structure down the line.
993 */
Joe Perches62e32ac2013-07-31 13:53:47 -0700994 VMCOREINFO_STRUCT_SIZE(printk_log);
995 VMCOREINFO_OFFSET(printk_log, ts_nsec);
996 VMCOREINFO_OFFSET(printk_log, len);
997 VMCOREINFO_OFFSET(printk_log, text_len);
998 VMCOREINFO_OFFSET(printk_log, dict_len);
Neil Horman04d491a2009-04-02 16:58:57 -0700999}
1000#endif
1001
Mike Travis162a7e72011-05-24 17:13:20 -07001002/* requested log_buf_len from kernel cmdline */
1003static unsigned long __initdata new_log_buf_len;
1004
Luis R. Rodriguezc0a318a2014-08-06 16:08:52 -07001005/* we practice scaling the ring buffer by powers of 2 */
1006static void __init log_buf_len_update(unsigned size)
1007{
1008 if (size)
1009 size = roundup_pow_of_two(size);
1010 if (size > log_buf_len)
1011 new_log_buf_len = size;
1012}
1013
Mike Travis162a7e72011-05-24 17:13:20 -07001014/* save requested log_buf_len since it's too early to process it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015static int __init log_buf_len_setup(char *str)
1016{
He Zhe5aa66ca2018-09-30 00:45:50 +08001017 unsigned int size;
1018
1019 if (!str)
1020 return -EINVAL;
1021
1022 size = memparse(str, &str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Luis R. Rodriguezc0a318a2014-08-06 16:08:52 -07001024 log_buf_len_update(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Mike Travis162a7e72011-05-24 17:13:20 -07001026 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
Mike Travis162a7e72011-05-24 17:13:20 -07001028early_param("log_buf_len", log_buf_len_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Geert Uytterhoeven2240a312014-10-13 15:51:11 -07001030#ifdef CONFIG_SMP
1031#define __LOG_CPU_MAX_BUF_LEN (1 << CONFIG_LOG_CPU_MAX_BUF_SHIFT)
1032
Luis R. Rodriguez23b28992014-08-06 16:08:56 -07001033static void __init log_buf_add_cpu(void)
1034{
1035 unsigned int cpu_extra;
1036
1037 /*
1038 * archs should set up cpu_possible_bits properly with
1039 * set_cpu_possible() after setup_arch() but just in
1040 * case lets ensure this is valid.
1041 */
1042 if (num_possible_cpus() == 1)
1043 return;
1044
1045 cpu_extra = (num_possible_cpus() - 1) * __LOG_CPU_MAX_BUF_LEN;
1046
1047 /* by default this will only continue through for large > 64 CPUs */
1048 if (cpu_extra <= __LOG_BUF_LEN / 2)
1049 return;
1050
1051 pr_info("log_buf_len individual max cpu contribution: %d bytes\n",
1052 __LOG_CPU_MAX_BUF_LEN);
1053 pr_info("log_buf_len total cpu_extra contributions: %d bytes\n",
1054 cpu_extra);
1055 pr_info("log_buf_len min size: %d bytes\n", __LOG_BUF_LEN);
1056
1057 log_buf_len_update(cpu_extra + __LOG_BUF_LEN);
1058}
Geert Uytterhoeven2240a312014-10-13 15:51:11 -07001059#else /* !CONFIG_SMP */
1060static inline void log_buf_add_cpu(void) {}
1061#endif /* CONFIG_SMP */
Luis R. Rodriguez23b28992014-08-06 16:08:56 -07001062
Mike Travis162a7e72011-05-24 17:13:20 -07001063void __init setup_log_buf(int early)
1064{
1065 unsigned long flags;
Mike Travis162a7e72011-05-24 17:13:20 -07001066 char *new_log_buf;
1067 int free;
1068
Luis R. Rodriguez23b28992014-08-06 16:08:56 -07001069 if (log_buf != __log_buf)
1070 return;
1071
1072 if (!early && !new_log_buf_len)
1073 log_buf_add_cpu();
1074
Mike Travis162a7e72011-05-24 17:13:20 -07001075 if (!new_log_buf_len)
1076 return;
1077
1078 if (early) {
Santosh Shilimkar9da791d2014-01-21 15:50:23 -08001079 new_log_buf =
Luis R. Rodriguez70300172014-08-06 16:08:49 -07001080 memblock_virt_alloc(new_log_buf_len, LOG_ALIGN);
Mike Travis162a7e72011-05-24 17:13:20 -07001081 } else {
Luis R. Rodriguez70300172014-08-06 16:08:49 -07001082 new_log_buf = memblock_virt_alloc_nopanic(new_log_buf_len,
1083 LOG_ALIGN);
Mike Travis162a7e72011-05-24 17:13:20 -07001084 }
1085
1086 if (unlikely(!new_log_buf)) {
1087 pr_err("log_buf_len: %ld bytes not available\n",
1088 new_log_buf_len);
1089 return;
1090 }
1091
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001092 raw_spin_lock_irqsave(&logbuf_lock, flags);
Mike Travis162a7e72011-05-24 17:13:20 -07001093 log_buf_len = new_log_buf_len;
1094 log_buf = new_log_buf;
1095 new_log_buf_len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001096 free = __LOG_BUF_LEN - log_next_idx;
1097 memcpy(log_buf, __log_buf, __LOG_BUF_LEN);
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001098 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Mike Travis162a7e72011-05-24 17:13:20 -07001099
Luis R. Rodriguezf5405172014-08-06 16:08:54 -07001100 pr_info("log_buf_len: %d bytes\n", log_buf_len);
Mike Travis162a7e72011-05-24 17:13:20 -07001101 pr_info("early log buf free: %d(%d%%)\n",
1102 free, (free * 100) / __LOG_BUF_LEN);
1103}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001105static bool __read_mostly ignore_loglevel;
1106
1107static int __init ignore_loglevel_setup(char *str)
1108{
Neil Zhangd25d9fe2014-08-06 16:09:12 -07001109 ignore_loglevel = true;
Andrew Morton27083ba2013-11-12 15:08:50 -08001110 pr_info("debug: ignoring loglevel setting.\n");
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001111
1112 return 0;
1113}
1114
1115early_param("ignore_loglevel", ignore_loglevel_setup);
1116module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR);
Joe Perches205bd3d2015-02-12 15:01:34 -08001117MODULE_PARM_DESC(ignore_loglevel,
1118 "ignore loglevel setting (prints all kernel messages to the console)");
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001119
Sergey Senozhatskycf775442016-08-02 14:03:56 -07001120static bool suppress_message_printing(int level)
1121{
1122 return (level >= console_loglevel && !ignore_loglevel);
1123}
1124
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001125#ifdef CONFIG_BOOT_PRINTK_DELAY
1126
Namhyung Kim674dff62010-10-26 14:22:48 -07001127static int boot_delay; /* msecs delay after each printk during bootup */
Dave Young3a3b6ed2009-09-22 16:43:31 -07001128static unsigned long long loops_per_msec; /* based on boot_delay */
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001129
1130static int __init boot_delay_setup(char *str)
1131{
1132 unsigned long lpj;
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001133
1134 lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */
1135 loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
1136
1137 get_option(&str, &boot_delay);
1138 if (boot_delay > 10 * 1000)
1139 boot_delay = 0;
1140
Dave Young3a3b6ed2009-09-22 16:43:31 -07001141 pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
1142 "HZ: %d, loops_per_msec: %llu\n",
1143 boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
Dave Young29e9d222013-11-12 15:08:53 -08001144 return 0;
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001145}
Dave Young29e9d222013-11-12 15:08:53 -08001146early_param("boot_delay", boot_delay_setup);
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001147
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001148static void boot_delay_msec(int level)
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001149{
1150 unsigned long long k;
1151 unsigned long timeout;
1152
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001153 if ((boot_delay == 0 || system_state != SYSTEM_BOOTING)
Sergey Senozhatskycf775442016-08-02 14:03:56 -07001154 || suppress_message_printing(level)) {
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001155 return;
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001156 }
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001157
Dave Young3a3b6ed2009-09-22 16:43:31 -07001158 k = (unsigned long long)loops_per_msec * boot_delay;
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001159
1160 timeout = jiffies + msecs_to_jiffies(boot_delay);
1161 while (k) {
1162 k--;
1163 cpu_relax();
1164 /*
1165 * use (volatile) jiffies to prevent
1166 * compiler reduction; loop termination via jiffies
1167 * is secondary and may or may not happen.
1168 */
1169 if (time_after(jiffies, timeout))
1170 break;
1171 touch_nmi_watchdog();
1172 }
1173}
1174#else
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001175static inline void boot_delay_msec(int level)
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001176{
1177}
1178#endif
1179
Alex Eldere99aa462014-08-06 16:09:05 -07001180static bool printk_time = IS_ENABLED(CONFIG_PRINTK_TIME);
Kay Sievers7ff95542012-05-03 02:29:13 +02001181module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
1182
Kay Sievers084681d2012-06-28 09:38:53 +02001183static size_t print_time(u64 ts, char *buf)
1184{
1185 unsigned long rem_nsec;
1186
1187 if (!printk_time)
1188 return 0;
1189
Kay Sievers084681d2012-06-28 09:38:53 +02001190 rem_nsec = do_div(ts, 1000000000);
Roland Dreier35dac272013-01-04 15:35:50 -08001191
1192 if (!buf)
1193 return snprintf(NULL, 0, "[%5lu.000000] ", (unsigned long)ts);
1194
Kay Sievers084681d2012-06-28 09:38:53 +02001195 return sprintf(buf, "[%5lu.%06lu] ",
1196 (unsigned long)ts, rem_nsec / 1000);
1197}
1198
Joe Perches62e32ac2013-07-31 13:53:47 -07001199static size_t print_prefix(const struct printk_log *msg, bool syslog, char *buf)
Kay Sievers649e6ee2012-05-10 04:30:45 +02001200{
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001201 size_t len = 0;
Kay Sievers43a73a52012-07-06 09:50:09 -07001202 unsigned int prefix = (msg->facility << 3) | msg->level;
Kay Sievers649e6ee2012-05-10 04:30:45 +02001203
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001204 if (syslog) {
1205 if (buf) {
Kay Sievers43a73a52012-07-06 09:50:09 -07001206 len += sprintf(buf, "<%u>", prefix);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001207 } else {
1208 len += 3;
Kay Sievers43a73a52012-07-06 09:50:09 -07001209 if (prefix > 999)
1210 len += 3;
1211 else if (prefix > 99)
1212 len += 2;
1213 else if (prefix > 9)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001214 len++;
1215 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001216 }
1217
Kay Sievers084681d2012-06-28 09:38:53 +02001218 len += print_time(msg->ts_nsec, buf ? buf + len : NULL);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001219 return len;
1220}
1221
Joe Perches62e32ac2013-07-31 13:53:47 -07001222static size_t msg_print_text(const struct printk_log *msg, enum log_flags prev,
Kay Sievers5becfb12012-07-09 12:15:42 -07001223 bool syslog, char *buf, size_t size)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001224{
1225 const char *text = log_text(msg);
1226 size_t text_size = msg->text_len;
Kay Sievers5becfb12012-07-09 12:15:42 -07001227 bool prefix = true;
1228 bool newline = true;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001229 size_t len = 0;
1230
Kay Sievers5becfb12012-07-09 12:15:42 -07001231 if ((prev & LOG_CONT) && !(msg->flags & LOG_PREFIX))
1232 prefix = false;
1233
1234 if (msg->flags & LOG_CONT) {
1235 if ((prev & LOG_CONT) && !(prev & LOG_NEWLINE))
1236 prefix = false;
1237
1238 if (!(msg->flags & LOG_NEWLINE))
1239 newline = false;
1240 }
1241
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001242 do {
1243 const char *next = memchr(text, '\n', text_size);
1244 size_t text_len;
1245
1246 if (next) {
1247 text_len = next - text;
1248 next++;
1249 text_size -= next - text;
1250 } else {
1251 text_len = text_size;
1252 }
1253
1254 if (buf) {
1255 if (print_prefix(msg, syslog, NULL) +
Kay Sievers70498252012-07-16 18:35:29 -07001256 text_len + 1 >= size - len)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001257 break;
1258
Kay Sievers5becfb12012-07-09 12:15:42 -07001259 if (prefix)
1260 len += print_prefix(msg, syslog, buf + len);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001261 memcpy(buf + len, text, text_len);
1262 len += text_len;
Kay Sievers5becfb12012-07-09 12:15:42 -07001263 if (next || newline)
1264 buf[len++] = '\n';
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001265 } else {
1266 /* SYSLOG_ACTION_* buffer size only calculation */
Kay Sievers5becfb12012-07-09 12:15:42 -07001267 if (prefix)
1268 len += print_prefix(msg, syslog, NULL);
1269 len += text_len;
1270 if (next || newline)
1271 len++;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001272 }
1273
Kay Sievers5becfb12012-07-09 12:15:42 -07001274 prefix = true;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001275 text = next;
1276 } while (text);
1277
Kay Sievers7ff95542012-05-03 02:29:13 +02001278 return len;
1279}
1280
1281static int syslog_print(char __user *buf, int size)
1282{
1283 char *text;
Joe Perches62e32ac2013-07-31 13:53:47 -07001284 struct printk_log *msg;
Jan Beulich116e90b2012-06-22 16:36:09 +01001285 int len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001286
Kay Sievers70498252012-07-16 18:35:29 -07001287 text = kmalloc(LOG_LINE_MAX + PREFIX_MAX, GFP_KERNEL);
Kay Sievers7ff95542012-05-03 02:29:13 +02001288 if (!text)
1289 return -ENOMEM;
1290
Jan Beulich116e90b2012-06-22 16:36:09 +01001291 while (size > 0) {
1292 size_t n;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001293 size_t skip;
Kay Sievers7ff95542012-05-03 02:29:13 +02001294
Jan Beulich116e90b2012-06-22 16:36:09 +01001295 raw_spin_lock_irq(&logbuf_lock);
1296 if (syslog_seq < log_first_seq) {
1297 /* messages are gone, move to first one */
1298 syslog_seq = log_first_seq;
1299 syslog_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001300 syslog_prev = 0;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001301 syslog_partial = 0;
Jan Beulich116e90b2012-06-22 16:36:09 +01001302 }
1303 if (syslog_seq == log_next_seq) {
1304 raw_spin_unlock_irq(&logbuf_lock);
1305 break;
1306 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001307
1308 skip = syslog_partial;
Jan Beulich116e90b2012-06-22 16:36:09 +01001309 msg = log_from_idx(syslog_idx);
Kay Sievers70498252012-07-16 18:35:29 -07001310 n = msg_print_text(msg, syslog_prev, true, text,
1311 LOG_LINE_MAX + PREFIX_MAX);
Kay Sieverseb02dac2012-07-09 10:05:10 -07001312 if (n - syslog_partial <= size) {
1313 /* message fits into buffer, move forward */
Jan Beulich116e90b2012-06-22 16:36:09 +01001314 syslog_idx = log_next(syslog_idx);
1315 syslog_seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07001316 syslog_prev = msg->flags;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001317 n -= syslog_partial;
1318 syslog_partial = 0;
1319 } else if (!len){
1320 /* partial read(), remember position */
1321 n = size;
1322 syslog_partial += n;
Jan Beulich116e90b2012-06-22 16:36:09 +01001323 } else
1324 n = 0;
1325 raw_spin_unlock_irq(&logbuf_lock);
1326
1327 if (!n)
1328 break;
1329
Kay Sieverseb02dac2012-07-09 10:05:10 -07001330 if (copy_to_user(buf, text + skip, n)) {
Jan Beulich116e90b2012-06-22 16:36:09 +01001331 if (!len)
1332 len = -EFAULT;
1333 break;
1334 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001335
1336 len += n;
1337 size -= n;
1338 buf += n;
Jan Beulich116e90b2012-06-22 16:36:09 +01001339 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001340
1341 kfree(text);
1342 return len;
1343}
1344
1345static int syslog_print_all(char __user *buf, int size, bool clear)
1346{
1347 char *text;
1348 int len = 0;
1349
Kay Sievers70498252012-07-16 18:35:29 -07001350 text = kmalloc(LOG_LINE_MAX + PREFIX_MAX, GFP_KERNEL);
Kay Sievers7ff95542012-05-03 02:29:13 +02001351 if (!text)
1352 return -ENOMEM;
1353
1354 raw_spin_lock_irq(&logbuf_lock);
1355 if (buf) {
1356 u64 next_seq;
1357 u64 seq;
1358 u32 idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001359 enum log_flags prev;
Kay Sievers7ff95542012-05-03 02:29:13 +02001360
Kay Sievers7ff95542012-05-03 02:29:13 +02001361 /*
1362 * Find first record that fits, including all following records,
1363 * into the user-provided buffer for this dump.
Kay Sieverse2ae7152012-06-15 14:07:51 +02001364 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001365 seq = clear_seq;
1366 idx = clear_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001367 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001368 while (seq < log_next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001369 struct printk_log *msg = log_from_idx(idx);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001370
Kay Sievers5becfb12012-07-09 12:15:42 -07001371 len += msg_print_text(msg, prev, true, NULL, 0);
Jeff Mahoneye3756472012-08-10 15:07:09 -04001372 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001373 idx = log_next(idx);
1374 seq++;
1375 }
Kay Sieverse2ae7152012-06-15 14:07:51 +02001376
1377 /* move first record forward until length fits into the buffer */
Kay Sievers7ff95542012-05-03 02:29:13 +02001378 seq = clear_seq;
1379 idx = clear_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001380 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001381 while (len > size && seq < log_next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001382 struct printk_log *msg = log_from_idx(idx);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001383
Kay Sievers5becfb12012-07-09 12:15:42 -07001384 len -= msg_print_text(msg, prev, true, NULL, 0);
Jeff Mahoneye3756472012-08-10 15:07:09 -04001385 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001386 idx = log_next(idx);
1387 seq++;
1388 }
1389
Kay Sieverse2ae7152012-06-15 14:07:51 +02001390 /* last message fitting into this dump */
Kay Sievers7ff95542012-05-03 02:29:13 +02001391 next_seq = log_next_seq;
1392
1393 len = 0;
1394 while (len >= 0 && seq < next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001395 struct printk_log *msg = log_from_idx(idx);
Kay Sievers7ff95542012-05-03 02:29:13 +02001396 int textlen;
1397
Kay Sievers70498252012-07-16 18:35:29 -07001398 textlen = msg_print_text(msg, prev, true, text,
1399 LOG_LINE_MAX + PREFIX_MAX);
Kay Sievers7ff95542012-05-03 02:29:13 +02001400 if (textlen < 0) {
1401 len = textlen;
1402 break;
1403 }
1404 idx = log_next(idx);
1405 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07001406 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001407
1408 raw_spin_unlock_irq(&logbuf_lock);
1409 if (copy_to_user(buf + len, text, textlen))
1410 len = -EFAULT;
1411 else
1412 len += textlen;
1413 raw_spin_lock_irq(&logbuf_lock);
1414
1415 if (seq < log_first_seq) {
1416 /* messages are gone, move to next one */
1417 seq = log_first_seq;
1418 idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001419 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001420 }
1421 }
1422 }
1423
1424 if (clear) {
1425 clear_seq = log_next_seq;
1426 clear_idx = log_next_idx;
1427 }
1428 raw_spin_unlock_irq(&logbuf_lock);
1429
1430 kfree(text);
1431 return len;
1432}
1433
Vasily Averin3ea43312015-06-25 15:01:47 -07001434int do_syslog(int type, char __user *buf, int len, int source)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
Kay Sievers7ff95542012-05-03 02:29:13 +02001436 bool clear = false;
Joe Perchesa39d4a82014-12-10 15:50:15 -08001437 static int saved_console_loglevel = LOGLEVEL_DEFAULT;
Linus Torvaldsee24aeb2011-02-10 17:53:55 -08001438 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Vasily Averin3ea43312015-06-25 15:01:47 -07001440 error = check_syslog_permissions(type, source);
Linus Torvaldsee24aeb2011-02-10 17:53:55 -08001441 if (error)
1442 goto out;
Eric Paris12b30522010-11-15 18:36:29 -05001443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 switch (type) {
Kees Cookd78ca3c2010-02-03 15:37:13 -08001445 case SYSLOG_ACTION_CLOSE: /* Close log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001447 case SYSLOG_ACTION_OPEN: /* Open log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001449 case SYSLOG_ACTION_READ: /* Read from log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 error = -EINVAL;
1451 if (!buf || len < 0)
1452 goto out;
1453 error = 0;
1454 if (!len)
1455 goto out;
1456 if (!access_ok(VERIFY_WRITE, buf, len)) {
1457 error = -EFAULT;
1458 goto out;
1459 }
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +08001460 error = wait_event_interruptible(log_wait,
1461 syslog_seq != log_next_seq);
Kay Sieverscb424ff2012-07-06 09:50:09 -07001462 if (error)
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +08001463 goto out;
Kay Sievers7ff95542012-05-03 02:29:13 +02001464 error = syslog_print(buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001466 /* Read/clear last kernel messages */
1467 case SYSLOG_ACTION_READ_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +02001468 clear = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 /* FALL THRU */
Kees Cookd78ca3c2010-02-03 15:37:13 -08001470 /* Read last kernel messages */
1471 case SYSLOG_ACTION_READ_ALL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 error = -EINVAL;
1473 if (!buf || len < 0)
1474 goto out;
1475 error = 0;
1476 if (!len)
1477 goto out;
1478 if (!access_ok(VERIFY_WRITE, buf, len)) {
1479 error = -EFAULT;
1480 goto out;
1481 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001482 error = syslog_print_all(buf, len, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001484 /* Clear ring buffer */
1485 case SYSLOG_ACTION_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +02001486 syslog_print_all(NULL, 0, true);
Alan Stern4661e352012-06-22 17:12:19 -04001487 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001488 /* Disable logging to console */
1489 case SYSLOG_ACTION_CONSOLE_OFF:
Joe Perchesa39d4a82014-12-10 15:50:15 -08001490 if (saved_console_loglevel == LOGLEVEL_DEFAULT)
Frans Pop1aaad492009-07-06 13:31:48 +02001491 saved_console_loglevel = console_loglevel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 console_loglevel = minimum_console_loglevel;
1493 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001494 /* Enable logging to console */
1495 case SYSLOG_ACTION_CONSOLE_ON:
Joe Perchesa39d4a82014-12-10 15:50:15 -08001496 if (saved_console_loglevel != LOGLEVEL_DEFAULT) {
Frans Pop1aaad492009-07-06 13:31:48 +02001497 console_loglevel = saved_console_loglevel;
Joe Perchesa39d4a82014-12-10 15:50:15 -08001498 saved_console_loglevel = LOGLEVEL_DEFAULT;
Frans Pop1aaad492009-07-06 13:31:48 +02001499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001501 /* Set level of messages printed to console */
1502 case SYSLOG_ACTION_CONSOLE_LEVEL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 error = -EINVAL;
1504 if (len < 1 || len > 8)
1505 goto out;
1506 if (len < minimum_console_loglevel)
1507 len = minimum_console_loglevel;
1508 console_loglevel = len;
Frans Pop1aaad492009-07-06 13:31:48 +02001509 /* Implicitly re-enable logging to console */
Joe Perchesa39d4a82014-12-10 15:50:15 -08001510 saved_console_loglevel = LOGLEVEL_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 error = 0;
1512 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001513 /* Number of chars in the log buffer */
1514 case SYSLOG_ACTION_SIZE_UNREAD:
Kay Sievers7ff95542012-05-03 02:29:13 +02001515 raw_spin_lock_irq(&logbuf_lock);
1516 if (syslog_seq < log_first_seq) {
1517 /* messages are gone, move to first one */
1518 syslog_seq = log_first_seq;
1519 syslog_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001520 syslog_prev = 0;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001521 syslog_partial = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001522 }
Vasily Averin3ea43312015-06-25 15:01:47 -07001523 if (source == SYSLOG_FROM_PROC) {
Kay Sievers7ff95542012-05-03 02:29:13 +02001524 /*
1525 * Short-cut for poll(/"proc/kmsg") which simply checks
1526 * for pending data, not the size; return the count of
1527 * records, not the length.
1528 */
Alex Eldere97e1262014-08-06 16:08:59 -07001529 error = log_next_seq - syslog_seq;
Kay Sievers7ff95542012-05-03 02:29:13 +02001530 } else {
Kay Sievers5becfb12012-07-09 12:15:42 -07001531 u64 seq = syslog_seq;
1532 u32 idx = syslog_idx;
1533 enum log_flags prev = syslog_prev;
Kay Sievers7ff95542012-05-03 02:29:13 +02001534
1535 error = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001536 while (seq < log_next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001537 struct printk_log *msg = log_from_idx(idx);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001538
Kay Sievers5becfb12012-07-09 12:15:42 -07001539 error += msg_print_text(msg, prev, true, NULL, 0);
Kay Sievers7ff95542012-05-03 02:29:13 +02001540 idx = log_next(idx);
1541 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07001542 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001543 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001544 error -= syslog_partial;
Kay Sievers7ff95542012-05-03 02:29:13 +02001545 }
1546 raw_spin_unlock_irq(&logbuf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001548 /* Size of the log buffer */
1549 case SYSLOG_ACTION_SIZE_BUFFER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 error = log_buf_len;
1551 break;
1552 default:
1553 error = -EINVAL;
1554 break;
1555 }
1556out:
1557 return error;
1558}
1559
Heiko Carstens1e7bfb22009-01-14 14:14:29 +01001560SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561{
Kees Cook637241a2013-06-12 14:04:39 -07001562 return do_syslog(type, buf, len, SYSLOG_FROM_READER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
1564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 * Call the console drivers, asking them to write out
1567 * log_buf[start] to log_buf[end - 1].
Torben Hohnac751ef2011-01-25 15:07:35 -08001568 * The console_lock must be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 */
Tejun Heo6fe29352015-06-25 15:01:30 -07001570static void call_console_drivers(int level,
1571 const char *ext_text, size_t ext_len,
1572 const char *text, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573{
Kay Sievers7ff95542012-05-03 02:29:13 +02001574 struct console *con;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Sergey Senozhatsky7ee21032017-02-18 03:42:54 -08001576 trace_console_rcuidle(text, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Kay Sievers7ff95542012-05-03 02:29:13 +02001578 if (!console_drivers)
1579 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Kay Sievers7ff95542012-05-03 02:29:13 +02001581 for_each_console(con) {
1582 if (exclusive_console && con != exclusive_console)
1583 continue;
1584 if (!(con->flags & CON_ENABLED))
1585 continue;
1586 if (!con->write)
1587 continue;
1588 if (!cpu_online(smp_processor_id()) &&
1589 !(con->flags & CON_ANYTIME))
1590 continue;
Tejun Heo6fe29352015-06-25 15:01:30 -07001591 if (con->flags & CON_EXTENDED)
1592 con->write(con, ext_text, ext_len);
1593 else
1594 con->write(con, text, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596}
1597
1598/*
Joe Perches205bd3d2015-02-12 15:01:34 -08001599 * Zap console related locks when oopsing.
1600 * To leave time for slow consoles to print a full oops,
1601 * only zap at most once every 30 seconds.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 */
1603static void zap_locks(void)
1604{
1605 static unsigned long oops_timestamp;
1606
1607 if (time_after_eq(jiffies, oops_timestamp) &&
Joe Perches205bd3d2015-02-12 15:01:34 -08001608 !time_after(jiffies, oops_timestamp + 30 * HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 return;
1610
1611 oops_timestamp = jiffies;
1612
Peter Zijlstra94d24fc2011-06-07 11:17:30 +02001613 debug_locks_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 /* If a crash is occurring, make sure we can't deadlock */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001615 raw_spin_lock_init(&logbuf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 /* And make sure that we print immediately */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +00001617 sema_init(&console_sem, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618}
1619
Dave Youngaf913222009-09-22 16:43:33 -07001620int printk_delay_msec __read_mostly;
1621
1622static inline void printk_delay(void)
1623{
1624 if (unlikely(printk_delay_msec)) {
1625 int m = printk_delay_msec;
1626
1627 while (m--) {
1628 mdelay(1);
1629 touch_nmi_watchdog();
1630 }
1631 }
1632}
1633
Kay Sievers084681d2012-06-28 09:38:53 +02001634/*
1635 * Continuation lines are buffered, and not committed to the record buffer
1636 * until the line is complete, or a race forces it. The line fragments
1637 * though, are printed immediately to the consoles to ensure everything has
1638 * reached the console in case of a kernel crash.
1639 */
1640static struct cont {
1641 char buf[LOG_LINE_MAX];
1642 size_t len; /* length == 0 means unused buffer */
1643 size_t cons; /* bytes written to console */
1644 struct task_struct *owner; /* task of first print*/
1645 u64 ts_nsec; /* time of first print */
1646 u8 level; /* log level of first message */
Alex Elder0b90fec2014-08-06 16:09:03 -07001647 u8 facility; /* log facility of first message */
Kay Sieverseab07262012-07-16 18:35:30 -07001648 enum log_flags flags; /* prefix, newline flags */
Kay Sievers084681d2012-06-28 09:38:53 +02001649 bool flushed:1; /* buffer sealed and committed */
1650} cont;
1651
Linus Torvalds5e467652016-10-09 11:53:00 -07001652static void cont_flush(void)
Kay Sievers084681d2012-06-28 09:38:53 +02001653{
1654 if (cont.flushed)
1655 return;
1656 if (cont.len == 0)
1657 return;
Kay Sieverseab07262012-07-16 18:35:30 -07001658 if (cont.cons) {
1659 /*
1660 * If a fragment of this line was directly flushed to the
1661 * console; wait for the console to pick up the rest of the
1662 * line. LOG_NOCONS suppresses a duplicated output.
1663 */
Linus Torvalds5e467652016-10-09 11:53:00 -07001664 log_store(cont.facility, cont.level, cont.flags | LOG_NOCONS,
Kay Sieverseab07262012-07-16 18:35:30 -07001665 cont.ts_nsec, NULL, 0, cont.buf, cont.len);
Kay Sieverseab07262012-07-16 18:35:30 -07001666 cont.flushed = true;
1667 } else {
1668 /*
1669 * If no fragment of this line ever reached the console,
1670 * just submit it to the store and free the buffer.
1671 */
Linus Torvalds5e467652016-10-09 11:53:00 -07001672 log_store(cont.facility, cont.level, cont.flags, 0,
Kay Sieverseab07262012-07-16 18:35:30 -07001673 NULL, 0, cont.buf, cont.len);
1674 cont.len = 0;
1675 }
Kay Sievers084681d2012-06-28 09:38:53 +02001676}
1677
Linus Torvalds5e467652016-10-09 11:53:00 -07001678static bool cont_add(int facility, int level, enum log_flags flags, const char *text, size_t len)
Kay Sievers084681d2012-06-28 09:38:53 +02001679{
1680 if (cont.len && cont.flushed)
1681 return false;
1682
Tejun Heo6fe29352015-06-25 15:01:30 -07001683 /*
1684 * If ext consoles are present, flush and skip in-kernel
1685 * continuation. See nr_ext_console_drivers definition. Also, if
1686 * the line gets too long, split it up in separate records.
1687 */
1688 if (nr_ext_console_drivers || cont.len + len > sizeof(cont.buf)) {
Linus Torvalds5e467652016-10-09 11:53:00 -07001689 cont_flush();
Kay Sievers084681d2012-06-28 09:38:53 +02001690 return false;
1691 }
1692
1693 if (!cont.len) {
1694 cont.facility = facility;
1695 cont.level = level;
1696 cont.owner = current;
1697 cont.ts_nsec = local_clock();
Linus Torvalds5e467652016-10-09 11:53:00 -07001698 cont.flags = flags;
Kay Sievers084681d2012-06-28 09:38:53 +02001699 cont.cons = 0;
1700 cont.flushed = false;
1701 }
1702
1703 memcpy(cont.buf + cont.len, text, len);
1704 cont.len += len;
Kay Sieverseab07262012-07-16 18:35:30 -07001705
Linus Torvalds5e467652016-10-09 11:53:00 -07001706 // The original flags come from the first line,
1707 // but later continuations can add a newline.
1708 if (flags & LOG_NEWLINE) {
1709 cont.flags |= LOG_NEWLINE;
1710 cont_flush();
1711 }
1712
Kay Sieverseab07262012-07-16 18:35:30 -07001713 if (cont.len > (sizeof(cont.buf) * 80) / 100)
Linus Torvalds5e467652016-10-09 11:53:00 -07001714 cont_flush();
Kay Sieverseab07262012-07-16 18:35:30 -07001715
Kay Sievers084681d2012-06-28 09:38:53 +02001716 return true;
1717}
1718
1719static size_t cont_print_text(char *text, size_t size)
1720{
1721 size_t textlen = 0;
1722 size_t len;
1723
Kay Sieverseab07262012-07-16 18:35:30 -07001724 if (cont.cons == 0 && (console_prev & LOG_NEWLINE)) {
Kay Sievers084681d2012-06-28 09:38:53 +02001725 textlen += print_time(cont.ts_nsec, text);
1726 size -= textlen;
1727 }
1728
1729 len = cont.len - cont.cons;
1730 if (len > 0) {
1731 if (len+1 > size)
1732 len = size-1;
1733 memcpy(text + textlen, cont.buf + cont.cons, len);
1734 textlen += len;
1735 cont.cons = cont.len;
1736 }
1737
1738 if (cont.flushed) {
Kay Sieverseab07262012-07-16 18:35:30 -07001739 if (cont.flags & LOG_NEWLINE)
1740 text[textlen++] = '\n';
Kay Sievers084681d2012-06-28 09:38:53 +02001741 /* got everything, release buffer */
1742 cont.len = 0;
1743 }
1744 return textlen;
1745}
1746
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001747static size_t log_output(int facility, int level, enum log_flags lflags, const char *dict, size_t dictlen, char *text, size_t text_len)
1748{
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001749 /*
Linus Torvalds5e467652016-10-09 11:53:00 -07001750 * If an earlier line was buffered, and we're a continuation
1751 * write from the same process, try to add it to the buffer.
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001752 */
1753 if (cont.len) {
Linus Torvalds5e467652016-10-09 11:53:00 -07001754 if (cont.owner == current && (lflags & LOG_CONT)) {
1755 if (cont_add(facility, level, lflags, text, text_len))
1756 return text_len;
1757 }
1758 /* Otherwise, make sure it's flushed */
1759 cont_flush();
1760 }
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001761
Linus Torvalds8835ca52016-10-19 09:11:24 -07001762 /* Skip empty continuation lines that couldn't be added - they just flush */
1763 if (!text_len && (lflags & LOG_CONT))
1764 return 0;
1765
Linus Torvalds5e467652016-10-09 11:53:00 -07001766 /* If it doesn't end in a newline, try to buffer the current line */
1767 if (!(lflags & LOG_NEWLINE)) {
1768 if (cont_add(facility, level, lflags, text, text_len))
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001769 return text_len;
1770 }
1771
Linus Torvalds5e467652016-10-09 11:53:00 -07001772 /* Store it in the record log */
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001773 return log_store(facility, level, lflags, 0, dict, dictlen, text, text_len);
1774}
1775
Kay Sievers7ff95542012-05-03 02:29:13 +02001776asmlinkage int vprintk_emit(int facility, int level,
1777 const char *dict, size_t dictlen,
1778 const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
Sergey Senozhatsky06b031d2016-01-15 16:59:23 -08001780 static bool recursion_bug;
Kay Sievers7ff95542012-05-03 02:29:13 +02001781 static char textbuf[LOG_LINE_MAX];
1782 char *text = textbuf;
Steven Rostedt458df9f2014-06-04 16:11:38 -07001783 size_t text_len = 0;
Kay Sievers5becfb12012-07-09 12:15:42 -07001784 enum log_flags lflags = 0;
Nick Andrewac60ad72008-05-12 21:21:04 +02001785 unsigned long flags;
Ingo Molnar32a76002008-01-25 21:07:58 +01001786 int this_cpu;
Kay Sievers7ff95542012-05-03 02:29:13 +02001787 int printed_len = 0;
Petr Mladekb522dea2016-05-20 17:00:36 -07001788 int nmi_message_lost;
Steven Rostedt458df9f2014-06-04 16:11:38 -07001789 bool in_sched = false;
Jan Kara608873c2014-06-04 16:11:35 -07001790 /* cpu currently holding logbuf_lock in this function */
Alex Elderf0997552014-12-10 15:51:21 -08001791 static unsigned int logbuf_cpu = UINT_MAX;
Jan Kara608873c2014-06-04 16:11:35 -07001792
Joe Perchesa39d4a82014-12-10 15:50:15 -08001793 if (level == LOGLEVEL_SCHED) {
1794 level = LOGLEVEL_DEFAULT;
Steven Rostedt458df9f2014-06-04 16:11:38 -07001795 in_sched = true;
1796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001798 boot_delay_msec(level);
Dave Youngaf913222009-09-22 16:43:33 -07001799 printk_delay();
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001800
Peter Zijlstra1a9a8ae2011-06-07 11:17:30 +02001801 local_irq_save(flags);
Ingo Molnar32a76002008-01-25 21:07:58 +01001802 this_cpu = smp_processor_id();
1803
1804 /*
1805 * Ouch, printk recursed into itself!
1806 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001807 if (unlikely(logbuf_cpu == this_cpu)) {
Ingo Molnar32a76002008-01-25 21:07:58 +01001808 /*
1809 * If a crash is occurring during printk() on this CPU,
1810 * then try to get the crash message out but make sure
1811 * we can't deadlock. Otherwise just return to avoid the
1812 * recursion and return - but flag the recursion so that
1813 * it can be printed at the next appropriate moment:
1814 */
Peter Zijlstra94d24fc2011-06-07 11:17:30 +02001815 if (!oops_in_progress && !lockdep_recursing(current)) {
Sergey Senozhatsky06b031d2016-01-15 16:59:23 -08001816 recursion_bug = true;
Jan Kara5874af22014-08-06 16:09:10 -07001817 local_irq_restore(flags);
1818 return 0;
Ingo Molnar32a76002008-01-25 21:07:58 +01001819 }
1820 zap_locks();
1821 }
1822
Ingo Molnara0f1ccf2006-07-03 00:24:58 -07001823 lockdep_off();
Sergey Senozhatskya8199372016-03-17 14:21:20 -07001824 /* This stops the holder of console_sem just where we want him */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001825 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02001826 logbuf_cpu = this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Patrick Palka000a7d62014-09-09 14:50:48 -07001828 if (unlikely(recursion_bug)) {
Kay Sievers7ff95542012-05-03 02:29:13 +02001829 static const char recursion_msg[] =
1830 "BUG: recent printk recursion!";
1831
Sergey Senozhatsky06b031d2016-01-15 16:59:23 -08001832 recursion_bug = false;
Kay Sievers7ff95542012-05-03 02:29:13 +02001833 /* emit KERN_CRIT message */
Petr Mladek034633c2014-06-04 16:11:33 -07001834 printed_len += log_store(0, 2, LOG_PREFIX|LOG_NEWLINE, 0,
Patrick Palka000a7d62014-09-09 14:50:48 -07001835 NULL, 0, recursion_msg,
1836 strlen(recursion_msg));
Linus Torvalds5fd29d62009-06-16 10:57:02 -07001837 }
1838
Petr Mladekb522dea2016-05-20 17:00:36 -07001839 nmi_message_lost = get_nmi_message_lost();
1840 if (unlikely(nmi_message_lost)) {
1841 text_len = scnprintf(textbuf, sizeof(textbuf),
1842 "BAD LUCK: lost %d message(s) from NMI context!",
1843 nmi_message_lost);
1844 printed_len += log_store(0, 2, LOG_PREFIX|LOG_NEWLINE, 0,
1845 NULL, 0, textbuf, text_len);
1846 }
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 /*
Kay Sievers7ff95542012-05-03 02:29:13 +02001849 * The printf needs to come first; we need the syslog
1850 * prefix which might be passed-in as a parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 */
Markus Trippelsdorf98e35f52014-10-13 15:51:13 -07001852 text_len = vscnprintf(text, sizeof(textbuf), fmt, args);
Nick Andrewac60ad72008-05-12 21:21:04 +02001853
Kay Sievers7ff95542012-05-03 02:29:13 +02001854 /* mark and strip a trailing newline */
Kay Sieversc313af12012-05-14 20:46:27 +02001855 if (text_len && text[text_len-1] == '\n') {
1856 text_len--;
Kay Sievers5becfb12012-07-09 12:15:42 -07001857 lflags |= LOG_NEWLINE;
Kay Sievers7ff95542012-05-03 02:29:13 +02001858 }
Kay Sievers9d90c8d2011-03-13 03:19:51 +01001859
Joe Perches088a52a2012-07-30 14:40:19 -07001860 /* strip kernel syslog prefix and extract log level or control flags */
1861 if (facility == 0) {
Linus Torvalds4bcc5952016-10-08 20:32:40 -07001862 int kern_level;
Joe Perches088a52a2012-07-30 14:40:19 -07001863
Linus Torvalds4bcc5952016-10-08 20:32:40 -07001864 while ((kern_level = printk_get_level(text)) != 0) {
Joe Perches088a52a2012-07-30 14:40:19 -07001865 switch (kern_level) {
1866 case '0' ... '7':
Joe Perchesa39d4a82014-12-10 15:50:15 -08001867 if (level == LOGLEVEL_DEFAULT)
Joe Perches088a52a2012-07-30 14:40:19 -07001868 level = kern_level - '0';
Joe Perchesa39d4a82014-12-10 15:50:15 -08001869 /* fallthrough */
Joe Perches088a52a2012-07-30 14:40:19 -07001870 case 'd': /* KERN_DEFAULT */
1871 lflags |= LOG_PREFIX;
Linus Torvalds4bcc5952016-10-08 20:32:40 -07001872 break;
1873 case 'c': /* KERN_CONT */
1874 lflags |= LOG_CONT;
Joe Perches088a52a2012-07-30 14:40:19 -07001875 }
Linus Torvalds4bcc5952016-10-08 20:32:40 -07001876
1877 text_len -= 2;
1878 text += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001880 }
Nick Andrewac60ad72008-05-12 21:21:04 +02001881
Arve Hjønnevåg813f2672013-06-14 19:54:40 -07001882#ifdef CONFIG_EARLY_PRINTK_DIRECT
1883 printascii(text);
1884#endif
1885
Joe Perchesa39d4a82014-12-10 15:50:15 -08001886 if (level == LOGLEVEL_DEFAULT)
Kay Sieversc313af12012-05-14 20:46:27 +02001887 level = default_message_loglevel;
1888
Kay Sievers5becfb12012-07-09 12:15:42 -07001889 if (dict)
1890 lflags |= LOG_PREFIX|LOG_NEWLINE;
Kay Sievers7ff95542012-05-03 02:29:13 +02001891
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001892 printed_len += log_output(facility, level, lflags, dict, dictlen, text, text_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Jan Kara608873c2014-06-04 16:11:35 -07001894 logbuf_cpu = UINT_MAX;
1895 raw_spin_unlock(&logbuf_lock);
Jan Kara5874af22014-08-06 16:09:10 -07001896 lockdep_on();
1897 local_irq_restore(flags);
Jan Kara939f04b2014-06-04 16:11:37 -07001898
Steven Rostedt458df9f2014-06-04 16:11:38 -07001899 /* If called from the scheduler, we can not call up(). */
Andrew Mortond18bbc22014-07-02 15:22:38 -07001900 if (!in_sched) {
Jan Kara5874af22014-08-06 16:09:10 -07001901 lockdep_off();
1902 /*
Andrew Mortond18bbc22014-07-02 15:22:38 -07001903 * Try to acquire and then immediately release the console
1904 * semaphore. The release will print out buffers and wake up
1905 * /dev/kmsg and syslog() users.
1906 */
Sergey Senozhatskya8199372016-03-17 14:21:20 -07001907 if (console_trylock())
Andrew Mortond18bbc22014-07-02 15:22:38 -07001908 console_unlock();
Jan Kara5874af22014-08-06 16:09:10 -07001909 lockdep_on();
Andrew Mortond18bbc22014-07-02 15:22:38 -07001910 }
Steven Rostedt458df9f2014-06-04 16:11:38 -07001911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 return printed_len;
1913}
Kay Sievers7ff95542012-05-03 02:29:13 +02001914EXPORT_SYMBOL(vprintk_emit);
1915
1916asmlinkage int vprintk(const char *fmt, va_list args)
1917{
Joe Perchesa39d4a82014-12-10 15:50:15 -08001918 return vprintk_emit(0, LOGLEVEL_DEFAULT, NULL, 0, fmt, args);
Kay Sievers7ff95542012-05-03 02:29:13 +02001919}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920EXPORT_SYMBOL(vprintk);
1921
Kay Sievers7ff95542012-05-03 02:29:13 +02001922asmlinkage int printk_emit(int facility, int level,
1923 const char *dict, size_t dictlen,
1924 const char *fmt, ...)
1925{
1926 va_list args;
1927 int r;
1928
1929 va_start(args, fmt);
1930 r = vprintk_emit(facility, level, dict, dictlen, fmt, args);
1931 va_end(args);
1932
1933 return r;
1934}
1935EXPORT_SYMBOL(printk_emit);
1936
Linus Torvaldsa0cba212016-08-09 10:48:18 -07001937int vprintk_default(const char *fmt, va_list args)
Steven Rostedt (Red Hat)afdc34a2014-06-19 17:33:31 -04001938{
1939 int r;
1940
1941#ifdef CONFIG_KGDB_KDB
1942 if (unlikely(kdb_trap_printk)) {
Daniel Thompsonf7d4ca82014-11-07 18:37:57 +00001943 r = vkdb_printf(KDB_MSGSRC_PRINTK, fmt, args);
Steven Rostedt (Red Hat)afdc34a2014-06-19 17:33:31 -04001944 return r;
1945 }
1946#endif
Linus Torvaldsa0cba212016-08-09 10:48:18 -07001947 r = vprintk_emit(0, LOGLEVEL_DEFAULT, NULL, 0, fmt, args);
Steven Rostedt (Red Hat)afdc34a2014-06-19 17:33:31 -04001948
1949 return r;
1950}
1951EXPORT_SYMBOL_GPL(vprintk_default);
1952
Kay Sievers7ff95542012-05-03 02:29:13 +02001953/**
1954 * printk - print a kernel message
1955 * @fmt: format string
1956 *
1957 * This is printk(). It can be called from any context. We want it to work.
1958 *
1959 * We try to grab the console_lock. If we succeed, it's easy - we log the
1960 * output and call the console drivers. If we fail to get the semaphore, we
1961 * place the output into the log buffer and return. The current holder of
1962 * the console_sem will notice the new output in console_unlock(); and will
1963 * send it to the consoles before releasing the lock.
1964 *
1965 * One effect of this deferred printing is that code which calls printk() and
1966 * then changes console_loglevel may break. This is because console_loglevel
1967 * is inspected when the actual printing occurs.
1968 *
1969 * See also:
1970 * printf(3)
1971 *
1972 * See the vsnprintf() documentation for format string extensions over C99.
1973 */
Andi Kleen722a9f92014-05-02 00:44:38 +02001974asmlinkage __visible int printk(const char *fmt, ...)
Kay Sievers7ff95542012-05-03 02:29:13 +02001975{
1976 va_list args;
1977 int r;
1978
Kay Sievers7ff95542012-05-03 02:29:13 +02001979 va_start(args, fmt);
Linus Torvaldsa0cba212016-08-09 10:48:18 -07001980 r = vprintk_func(fmt, args);
Kay Sievers7ff95542012-05-03 02:29:13 +02001981 va_end(args);
1982
1983 return r;
1984}
1985EXPORT_SYMBOL(printk);
Kay Sievers7f3a7812012-05-09 01:37:51 +02001986
Kay Sievers96efedf2012-07-16 18:35:29 -07001987#else /* CONFIG_PRINTK */
Matt Mackalld59745c2005-05-01 08:59:02 -07001988
Kay Sievers70498252012-07-16 18:35:29 -07001989#define LOG_LINE_MAX 0
1990#define PREFIX_MAX 0
Alex Elder249771b2014-08-06 16:09:08 -07001991
Kay Sievers96efedf2012-07-16 18:35:29 -07001992static u64 syslog_seq;
1993static u32 syslog_idx;
Kay Sieverseab07262012-07-16 18:35:30 -07001994static u64 console_seq;
1995static u32 console_idx;
Kay Sievers96efedf2012-07-16 18:35:29 -07001996static enum log_flags syslog_prev;
1997static u64 log_first_seq;
1998static u32 log_first_idx;
1999static u64 log_next_seq;
Kay Sieverseab07262012-07-16 18:35:30 -07002000static enum log_flags console_prev;
Kay Sievers084681d2012-06-28 09:38:53 +02002001static struct cont {
2002 size_t len;
2003 size_t cons;
2004 u8 level;
2005 bool flushed:1;
2006} cont;
Tejun Heo6fe29352015-06-25 15:01:30 -07002007static char *log_text(const struct printk_log *msg) { return NULL; }
2008static char *log_dict(const struct printk_log *msg) { return NULL; }
Joe Perches62e32ac2013-07-31 13:53:47 -07002009static struct printk_log *log_from_idx(u32 idx) { return NULL; }
Kay Sievers7f3a7812012-05-09 01:37:51 +02002010static u32 log_next(u32 idx) { return 0; }
Tejun Heo6fe29352015-06-25 15:01:30 -07002011static ssize_t msg_print_ext_header(char *buf, size_t size,
2012 struct printk_log *msg, u64 seq,
2013 enum log_flags prev_flags) { return 0; }
2014static ssize_t msg_print_ext_body(char *buf, size_t size,
2015 char *dict, size_t dict_len,
2016 char *text, size_t text_len) { return 0; }
2017static void call_console_drivers(int level,
2018 const char *ext_text, size_t ext_len,
2019 const char *text, size_t len) {}
Joe Perches62e32ac2013-07-31 13:53:47 -07002020static size_t msg_print_text(const struct printk_log *msg, enum log_flags prev,
Kay Sievers5becfb12012-07-09 12:15:42 -07002021 bool syslog, char *buf, size_t size) { return 0; }
Kay Sievers084681d2012-06-28 09:38:53 +02002022static size_t cont_print_text(char *text, size_t size) { return 0; }
Sergey Senozhatskycf775442016-08-02 14:03:56 -07002023static bool suppress_message_printing(int level) { return false; }
Matt Mackalld59745c2005-05-01 08:59:02 -07002024
Steven Rostedt (Red Hat)04b74b22014-11-21 09:16:58 -05002025/* Still needs to be defined for users */
2026DEFINE_PER_CPU(printk_func_t, printk_func);
2027
Kay Sievers7f3a7812012-05-09 01:37:51 +02002028#endif /* CONFIG_PRINTK */
Matt Mackalld59745c2005-05-01 08:59:02 -07002029
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002030#ifdef CONFIG_EARLY_PRINTK
2031struct console *early_console;
2032
Andi Kleen722a9f92014-05-02 00:44:38 +02002033asmlinkage __visible void early_printk(const char *fmt, ...)
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002034{
2035 va_list ap;
Joe Perches1dc62442014-12-10 15:45:53 -08002036 char buf[512];
2037 int n;
2038
2039 if (!early_console)
2040 return;
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002041
2042 va_start(ap, fmt);
Joe Perches1dc62442014-12-10 15:45:53 -08002043 n = vscnprintf(buf, sizeof(buf), fmt, ap);
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002044 va_end(ap);
Joe Perches1dc62442014-12-10 15:45:53 -08002045
2046 early_console->write(early_console, buf, n);
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002047}
2048#endif
2049
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002050static int __add_preferred_console(char *name, int idx, char *options,
2051 char *brl_options)
2052{
2053 struct console_cmdline *c;
2054 int i;
2055
2056 /*
2057 * See if this tty is not yet registered, and
2058 * if we have a slot free.
2059 */
Joe Perches23475402013-07-31 13:53:46 -07002060 for (i = 0, c = console_cmdline;
2061 i < MAX_CMDLINECONSOLES && c->name[0];
2062 i++, c++) {
2063 if (strcmp(c->name, name) == 0 && c->index == idx) {
2064 if (!brl_options)
2065 selected_console = i;
2066 return 0;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002067 }
Joe Perches23475402013-07-31 13:53:46 -07002068 }
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002069 if (i == MAX_CMDLINECONSOLES)
2070 return -E2BIG;
2071 if (!brl_options)
2072 selected_console = i;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002073 strlcpy(c->name, name, sizeof(c->name));
2074 c->options = options;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002075 braille_set_options(c, brl_options);
2076
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002077 c->index = idx;
2078 return 0;
2079}
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002080/*
Alex Elder0b90fec2014-08-06 16:09:03 -07002081 * Set up a console. Called via do_early_param() in init/main.c
2082 * for each "console=" parameter in the boot command line.
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002083 */
2084static int __init console_setup(char *str)
2085{
Alex Elder0b90fec2014-08-06 16:09:03 -07002086 char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for "ttyS" */
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002087 char *s, *options, *brl_options = NULL;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002088 int idx;
2089
Joe Perchesbbeddf52013-07-31 13:53:45 -07002090 if (_braille_console_setup(&str, &brl_options))
2091 return 1;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002092
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002093 /*
2094 * Decode str into name, index, options.
2095 */
2096 if (str[0] >= '0' && str[0] <= '9') {
Yinghai Lueaa944a2007-07-15 23:37:27 -07002097 strcpy(buf, "ttyS");
2098 strncpy(buf + 4, str, sizeof(buf) - 5);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002099 } else {
Yinghai Lueaa944a2007-07-15 23:37:27 -07002100 strncpy(buf, str, sizeof(buf) - 1);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002101 }
Yinghai Lueaa944a2007-07-15 23:37:27 -07002102 buf[sizeof(buf) - 1] = 0;
Alex Elder249771b2014-08-06 16:09:08 -07002103 options = strchr(str, ',');
2104 if (options)
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002105 *(options++) = 0;
2106#ifdef __sparc__
2107 if (!strcmp(str, "ttya"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07002108 strcpy(buf, "ttyS0");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002109 if (!strcmp(str, "ttyb"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07002110 strcpy(buf, "ttyS1");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002111#endif
Yinghai Lueaa944a2007-07-15 23:37:27 -07002112 for (s = buf; *s; s++)
Alex Elder249771b2014-08-06 16:09:08 -07002113 if (isdigit(*s) || *s == ',')
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002114 break;
2115 idx = simple_strtoul(s, NULL, 10);
2116 *s = 0;
2117
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002118 __add_preferred_console(buf, idx, options, brl_options);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01002119 console_set_on_cmdline = 1;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002120 return 1;
2121}
2122__setup("console=", console_setup);
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124/**
Matt Mackall3c0547b2005-05-16 21:53:47 -07002125 * add_preferred_console - add a device to the list of preferred consoles.
Martin Waitzddad86c2005-11-13 16:08:14 -08002126 * @name: device name
2127 * @idx: device index
2128 * @options: options for this console
Matt Mackall3c0547b2005-05-16 21:53:47 -07002129 *
2130 * The last preferred console added will be used for kernel messages
2131 * and stdin/out/err for init. Normally this is used by console_setup
2132 * above to handle user-supplied console arguments; however it can also
2133 * be used by arch-specific code either to override the user or more
2134 * commonly to provide a default console (ie from PROM variables) when
2135 * the user has not supplied one.
2136 */
David S. Millerfb445ee2007-12-29 01:19:49 -08002137int add_preferred_console(char *name, int idx, char *options)
Matt Mackall3c0547b2005-05-16 21:53:47 -07002138{
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002139 return __add_preferred_console(name, idx, options, NULL);
Matt Mackall3c0547b2005-05-16 21:53:47 -07002140}
2141
Neil Zhangd25d9fe2014-08-06 16:09:12 -07002142bool console_suspend_enabled = true;
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002143EXPORT_SYMBOL(console_suspend_enabled);
2144
2145static int __init console_suspend_disable(char *str)
2146{
Neil Zhangd25d9fe2014-08-06 16:09:12 -07002147 console_suspend_enabled = false;
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002148 return 1;
2149}
2150__setup("no_console_suspend", console_suspend_disable);
Yanmin Zhang134620f2011-10-31 17:11:27 -07002151module_param_named(console_suspend, console_suspend_enabled,
2152 bool, S_IRUGO | S_IWUSR);
2153MODULE_PARM_DESC(console_suspend, "suspend console during suspend"
2154 " and hibernate operations");
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002155
Matt Mackall3c0547b2005-05-16 21:53:47 -07002156/**
Linus Torvalds557240b2006-06-19 18:16:01 -07002157 * suspend_console - suspend the console subsystem
2158 *
2159 * This disables printk() while we go into suspend states
2160 */
2161void suspend_console(void)
2162{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002163 if (!console_suspend_enabled)
2164 return;
Pavel Machek0d630812008-07-23 21:28:32 -07002165 printk("Suspending console(s) (use no_console_suspend to debug)\n");
Torben Hohnac751ef2011-01-25 15:07:35 -08002166 console_lock();
Linus Torvalds557240b2006-06-19 18:16:01 -07002167 console_suspended = 1;
Jan Karabd8d7cf2014-06-04 16:11:36 -07002168 up_console_sem();
Linus Torvalds557240b2006-06-19 18:16:01 -07002169}
2170
2171void resume_console(void)
2172{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002173 if (!console_suspend_enabled)
2174 return;
Jan Karabd8d7cf2014-06-04 16:11:36 -07002175 down_console_sem();
Linus Torvalds557240b2006-06-19 18:16:01 -07002176 console_suspended = 0;
Torben Hohnac751ef2011-01-25 15:07:35 -08002177 console_unlock();
Linus Torvalds557240b2006-06-19 18:16:01 -07002178}
2179
2180/**
Kevin Cernekee034260d2010-06-03 22:11:25 -07002181 * console_cpu_notify - print deferred console messages after CPU hotplug
2182 * @self: notifier struct
2183 * @action: CPU hotplug event
2184 * @hcpu: unused
2185 *
2186 * If printk() is called from a CPU that is not online yet, the messages
2187 * will be spooled but will not show up on the console. This function is
2188 * called when a new CPU comes online (or fails to come up), and ensures
2189 * that any such output gets printed.
2190 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04002191static int console_cpu_notify(struct notifier_block *self,
Kevin Cernekee034260d2010-06-03 22:11:25 -07002192 unsigned long action, void *hcpu)
2193{
2194 switch (action) {
2195 case CPU_ONLINE:
2196 case CPU_DEAD:
Kevin Cernekee034260d2010-06-03 22:11:25 -07002197 case CPU_DOWN_FAILED:
2198 case CPU_UP_CANCELED:
Torben Hohnac751ef2011-01-25 15:07:35 -08002199 console_lock();
2200 console_unlock();
Kevin Cernekee034260d2010-06-03 22:11:25 -07002201 }
2202 return NOTIFY_OK;
2203}
2204
2205/**
Torben Hohnac751ef2011-01-25 15:07:35 -08002206 * console_lock - lock the console system for exclusive use.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002208 * Acquires a lock which guarantees that the caller has
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 * exclusive access to the console system and the console_drivers list.
2210 *
2211 * Can sleep, returns nothing.
2212 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002213void console_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
Daniel Vetter6b898c02012-09-17 23:03:31 +00002215 might_sleep();
2216
Jan Karabd8d7cf2014-06-04 16:11:36 -07002217 down_console_sem();
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01002218 if (console_suspended)
2219 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 console_locked = 1;
2221 console_may_schedule = 1;
2222}
Torben Hohnac751ef2011-01-25 15:07:35 -08002223EXPORT_SYMBOL(console_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Torben Hohnac751ef2011-01-25 15:07:35 -08002225/**
2226 * console_trylock - try to lock the console system for exclusive use.
2227 *
Alex Elder0b90fec2014-08-06 16:09:03 -07002228 * Try to acquire a lock which guarantees that the caller has exclusive
2229 * access to the console system and the console_drivers list.
Torben Hohnac751ef2011-01-25 15:07:35 -08002230 *
2231 * returns 1 on success, and 0 on failure to acquire the lock.
2232 */
2233int console_trylock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234{
Jan Karabd8d7cf2014-06-04 16:11:36 -07002235 if (down_trylock_console_sem())
Torben Hohnac751ef2011-01-25 15:07:35 -08002236 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01002237 if (console_suspended) {
Jan Karabd8d7cf2014-06-04 16:11:36 -07002238 up_console_sem();
Torben Hohnac751ef2011-01-25 15:07:35 -08002239 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01002240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 console_locked = 1;
Sergey Senozhatsky6b97a202016-03-17 14:21:23 -07002242 /*
2243 * When PREEMPT_COUNT disabled we can't reliably detect if it's
2244 * safe to schedule (e.g. calling printk while holding a spin_lock),
2245 * because preempt_disable()/preempt_enable() are just barriers there
2246 * and preempt_count() is always 0.
2247 *
2248 * RCU read sections have a separate preemption counter when
2249 * PREEMPT_RCU enabled thus we must take extra care and check
2250 * rcu_preempt_depth(), otherwise RCU read sections modify
2251 * preempt_count().
2252 */
2253 console_may_schedule = !oops_in_progress &&
2254 preemptible() &&
2255 !rcu_preempt_depth();
Torben Hohnac751ef2011-01-25 15:07:35 -08002256 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257}
Torben Hohnac751ef2011-01-25 15:07:35 -08002258EXPORT_SYMBOL(console_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260int is_console_locked(void)
2261{
2262 return console_locked;
2263}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002265/*
2266 * Check if we have any console that is capable of printing while cpu is
2267 * booting or shutting down. Requires console_sem.
2268 */
2269static int have_callable_console(void)
2270{
2271 struct console *con;
2272
2273 for_each_console(con)
Sergey Senozhatskyadaf6592016-03-17 14:21:27 -07002274 if ((con->flags & CON_ENABLED) &&
2275 (con->flags & CON_ANYTIME))
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002276 return 1;
2277
2278 return 0;
2279}
2280
2281/*
2282 * Can we actually use the console at this time on this cpu?
2283 *
2284 * Console drivers may assume that per-cpu resources have been allocated. So
2285 * unless they're explicitly marked as being able to cope (CON_ANYTIME) don't
2286 * call them until this CPU is officially up.
2287 */
2288static inline int can_use_console(void)
2289{
2290 return cpu_online(raw_smp_processor_id()) || have_callable_console();
2291}
2292
Kay Sieverseab07262012-07-16 18:35:30 -07002293static void console_cont_flush(char *text, size_t size)
2294{
2295 unsigned long flags;
2296 size_t len;
2297
2298 raw_spin_lock_irqsave(&logbuf_lock, flags);
2299
2300 if (!cont.len)
2301 goto out;
2302
Sergey Senozhatskycf775442016-08-02 14:03:56 -07002303 if (suppress_message_printing(cont.level)) {
2304 cont.cons = cont.len;
2305 if (cont.flushed)
2306 cont.len = 0;
2307 goto out;
2308 }
2309
Kay Sieverseab07262012-07-16 18:35:30 -07002310 /*
2311 * We still queue earlier records, likely because the console was
2312 * busy. The earlier ones need to be printed before this one, we
2313 * did not flush any fragment so far, so just let it queue up.
2314 */
2315 if (console_seq < log_next_seq && !cont.cons)
2316 goto out;
2317
2318 len = cont_print_text(text, size);
2319 raw_spin_unlock(&logbuf_lock);
2320 stop_critical_timings();
Tejun Heo6fe29352015-06-25 15:01:30 -07002321 call_console_drivers(cont.level, NULL, 0, text, len);
Kay Sieverseab07262012-07-16 18:35:30 -07002322 start_critical_timings();
2323 local_irq_restore(flags);
2324 return;
2325out:
2326 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2327}
Kay Sievers7ff95542012-05-03 02:29:13 +02002328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329/**
Torben Hohnac751ef2011-01-25 15:07:35 -08002330 * console_unlock - unlock the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002332 * Releases the console_lock which the caller holds on the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 * and the console driver list.
2334 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002335 * While the console_lock was held, console output may have been buffered
2336 * by printk(). If this is the case, console_unlock(); emits
2337 * the output prior to releasing the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 *
Kay Sievers7f3a7812012-05-09 01:37:51 +02002339 * If there is output waiting, we wake /dev/kmsg and syslog() users.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002341 * console_unlock(); may be called from any context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002343void console_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344{
Tejun Heo6fe29352015-06-25 15:01:30 -07002345 static char ext_text[CONSOLE_EXT_LOG_MAX];
Kay Sievers70498252012-07-16 18:35:29 -07002346 static char text[LOG_LINE_MAX + PREFIX_MAX];
Kay Sievers7ff95542012-05-03 02:29:13 +02002347 static u64 seen_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 unsigned long flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02002349 bool wake_klogd = false;
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002350 bool do_cond_resched, retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
Linus Torvalds557240b2006-06-19 18:16:01 -07002352 if (console_suspended) {
Jan Karabd8d7cf2014-06-04 16:11:36 -07002353 up_console_sem();
Linus Torvalds557240b2006-06-19 18:16:01 -07002354 return;
2355 }
Antonino A. Daplas78944e52006-08-05 12:14:16 -07002356
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002357 /*
Petr Mladekb5fa6d92017-03-24 17:14:05 +01002358 * Console drivers are called with interrupts disabled, so
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002359 * @console_may_schedule should be cleared before; however, we may
2360 * end up dumping a lot of lines, for example, if called from
2361 * console registration path, and should invoke cond_resched()
2362 * between lines if allowable. Not doing so can cause a very long
2363 * scheduling stall on a slow console leading to RCU stall and
2364 * softlockup warnings which exacerbate the issue with more
2365 * messages practically incapacitating the system.
Petr Mladekb5fa6d92017-03-24 17:14:05 +01002366 *
2367 * console_trylock() is not able to detect the preemptive
2368 * context reliably. Therefore the value must be stored before
2369 * and cleared after the the "again" goto label.
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002370 */
2371 do_cond_resched = console_may_schedule;
Petr Mladekb5fa6d92017-03-24 17:14:05 +01002372again:
Antonino A. Daplas78944e52006-08-05 12:14:16 -07002373 console_may_schedule = 0;
2374
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002375 /*
2376 * We released the console_sem lock, so we need to recheck if
2377 * cpu is online and (if not) is there at least one CON_ANYTIME
2378 * console.
2379 */
2380 if (!can_use_console()) {
2381 console_locked = 0;
2382 up_console_sem();
2383 return;
2384 }
2385
Kay Sievers084681d2012-06-28 09:38:53 +02002386 /* flush buffered message fragment immediately to console */
Kay Sieverseab07262012-07-16 18:35:30 -07002387 console_cont_flush(text, sizeof(text));
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002388
Kay Sievers7ff95542012-05-03 02:29:13 +02002389 for (;;) {
Joe Perches62e32ac2013-07-31 13:53:47 -07002390 struct printk_log *msg;
Tejun Heo6fe29352015-06-25 15:01:30 -07002391 size_t ext_len = 0;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02002392 size_t len;
Kay Sievers7ff95542012-05-03 02:29:13 +02002393 int level;
2394
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002395 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02002396 if (seen_seq != log_next_seq) {
2397 wake_klogd = true;
2398 seen_seq = log_next_seq;
2399 }
2400
2401 if (console_seq < log_first_seq) {
Will Deacon84b5ec82014-06-04 16:11:45 -07002402 len = sprintf(text, "** %u printk messages dropped ** ",
2403 (unsigned)(log_first_seq - console_seq));
2404
Kay Sievers7ff95542012-05-03 02:29:13 +02002405 /* messages are gone, move to first one */
2406 console_seq = log_first_seq;
2407 console_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002408 console_prev = 0;
Will Deacon84b5ec82014-06-04 16:11:45 -07002409 } else {
2410 len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02002411 }
Kay Sievers084681d2012-06-28 09:38:53 +02002412skip:
Kay Sievers7ff95542012-05-03 02:29:13 +02002413 if (console_seq == log_next_seq)
2414 break;
2415
2416 msg = log_from_idx(console_idx);
Sergey Senozhatskycf775442016-08-02 14:03:56 -07002417 level = msg->level;
2418 if ((msg->flags & LOG_NOCONS) ||
2419 suppress_message_printing(level)) {
Kay Sievers084681d2012-06-28 09:38:53 +02002420 /*
2421 * Skip record we have buffered and already printed
Sergey Senozhatskycf775442016-08-02 14:03:56 -07002422 * directly to the console when we received it, and
2423 * record that has level above the console loglevel.
Kay Sievers084681d2012-06-28 09:38:53 +02002424 */
2425 console_idx = log_next(console_idx);
2426 console_seq++;
Kay Sievers68b65072012-07-06 09:50:09 -07002427 /*
2428 * We will get here again when we register a new
2429 * CON_PRINTBUFFER console. Clear the flag so we
2430 * will properly dump everything later.
2431 */
2432 msg->flags &= ~LOG_NOCONS;
Kay Sieverseab07262012-07-16 18:35:30 -07002433 console_prev = msg->flags;
Kay Sievers084681d2012-06-28 09:38:53 +02002434 goto skip;
2435 }
Kay Sievers649e6ee2012-05-10 04:30:45 +02002436
Will Deacon84b5ec82014-06-04 16:11:45 -07002437 len += msg_print_text(msg, console_prev, false,
2438 text + len, sizeof(text) - len);
Tejun Heo6fe29352015-06-25 15:01:30 -07002439 if (nr_ext_console_drivers) {
2440 ext_len = msg_print_ext_header(ext_text,
2441 sizeof(ext_text),
2442 msg, console_seq, console_prev);
2443 ext_len += msg_print_ext_body(ext_text + ext_len,
2444 sizeof(ext_text) - ext_len,
2445 log_dict(msg), msg->dict_len,
2446 log_text(msg), msg->text_len);
2447 }
Kay Sievers7ff95542012-05-03 02:29:13 +02002448 console_idx = log_next(console_idx);
2449 console_seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07002450 console_prev = msg->flags;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002451 raw_spin_unlock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02002452
Steven Rostedt81d68a92008-05-12 21:20:42 +02002453 stop_critical_timings(); /* don't trace print latency */
Tejun Heo6fe29352015-06-25 15:01:30 -07002454 call_console_drivers(level, ext_text, ext_len, text, len);
Steven Rostedt81d68a92008-05-12 21:20:42 +02002455 start_critical_timings();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 local_irq_restore(flags);
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002457
2458 if (do_cond_resched)
2459 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 }
2461 console_locked = 0;
Feng Tangfe3d8ad2011-03-22 16:34:21 -07002462
2463 /* Release the exclusive_console once it is used */
2464 if (unlikely(exclusive_console))
2465 exclusive_console = NULL;
2466
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002467 raw_spin_unlock(&logbuf_lock);
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002468
Jan Karabd8d7cf2014-06-04 16:11:36 -07002469 up_console_sem();
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002470
2471 /*
2472 * Someone could have filled up the buffer again, so re-check if there's
2473 * something to flush. In case we cannot trylock the console_sem again,
2474 * there's a new owner and the console_unlock() from them will do the
2475 * flush, no worries.
2476 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002477 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02002478 retry = console_seq != log_next_seq;
Peter Zijlstra09dc3cf2011-12-08 14:34:13 -08002479 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2480
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002481 if (retry && console_trylock())
2482 goto again;
2483
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08002484 if (wake_klogd)
2485 wake_up_klogd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486}
Torben Hohnac751ef2011-01-25 15:07:35 -08002487EXPORT_SYMBOL(console_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
Martin Waitzddad86c2005-11-13 16:08:14 -08002489/**
2490 * console_conditional_schedule - yield the CPU if required
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 *
2492 * If the console code is currently allowed to sleep, and
2493 * if this CPU should yield the CPU to another task, do
2494 * so here.
2495 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002496 * Must be called within console_lock();.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 */
2498void __sched console_conditional_schedule(void)
2499{
2500 if (console_may_schedule)
2501 cond_resched();
2502}
2503EXPORT_SYMBOL(console_conditional_schedule);
2504
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505void console_unblank(void)
2506{
2507 struct console *c;
2508
2509 /*
2510 * console_unblank can no longer be called in interrupt context unless
2511 * oops_in_progress is set to 1..
2512 */
2513 if (oops_in_progress) {
Jan Karabd8d7cf2014-06-04 16:11:36 -07002514 if (down_trylock_console_sem() != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 return;
2516 } else
Torben Hohnac751ef2011-01-25 15:07:35 -08002517 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
2519 console_locked = 1;
2520 console_may_schedule = 0;
Robin Getz4d091612009-07-01 21:08:37 -04002521 for_each_console(c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 if ((c->flags & CON_ENABLED) && c->unblank)
2523 c->unblank();
Torben Hohnac751ef2011-01-25 15:07:35 -08002524 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002527/**
2528 * console_flush_on_panic - flush console content on panic
2529 *
2530 * Immediately output all pending messages no matter what.
2531 */
2532void console_flush_on_panic(void)
2533{
2534 /*
2535 * If someone else is holding the console lock, trylock will fail
2536 * and may_schedule may be set. Ignore and proceed to unlock so
2537 * that messages are flushed out. As this can be called from any
2538 * context and we don't want to get preempted while flushing,
2539 * ensure may_schedule is cleared.
2540 */
2541 console_trylock();
2542 console_may_schedule = 0;
2543 console_unlock();
2544}
2545
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546/*
2547 * Return the console tty driver structure and its associated index
2548 */
2549struct tty_driver *console_device(int *index)
2550{
2551 struct console *c;
2552 struct tty_driver *driver = NULL;
2553
Torben Hohnac751ef2011-01-25 15:07:35 -08002554 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04002555 for_each_console(c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 if (!c->device)
2557 continue;
2558 driver = c->device(c, index);
2559 if (driver)
2560 break;
2561 }
Torben Hohnac751ef2011-01-25 15:07:35 -08002562 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 return driver;
2564}
2565
2566/*
2567 * Prevent further output on the passed console device so that (for example)
2568 * serial drivers can disable console output before suspending a port, and can
2569 * re-enable output afterwards.
2570 */
2571void console_stop(struct console *console)
2572{
Torben Hohnac751ef2011-01-25 15:07:35 -08002573 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 console->flags &= ~CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002575 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576}
2577EXPORT_SYMBOL(console_stop);
2578
2579void console_start(struct console *console)
2580{
Torben Hohnac751ef2011-01-25 15:07:35 -08002581 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 console->flags |= CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002583 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584}
2585EXPORT_SYMBOL(console_start);
2586
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002587static int __read_mostly keep_bootcon;
2588
2589static int __init keep_bootcon_setup(char *str)
2590{
2591 keep_bootcon = 1;
Andrew Morton27083ba2013-11-12 15:08:50 -08002592 pr_info("debug: skip boot console de-registration.\n");
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002593
2594 return 0;
2595}
2596
2597early_param("keep_bootcon", keep_bootcon_setup);
2598
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599/*
2600 * The console driver calls this routine during kernel initialization
2601 * to register the console printing procedure with printk() and to
2602 * print any messages that were printed by the kernel before the
2603 * console driver was initialized.
Robin Getz4d091612009-07-01 21:08:37 -04002604 *
2605 * This can happen pretty early during the boot process (because of
2606 * early_printk) - sometimes before setup_arch() completes - be careful
2607 * of what kernel features are used - they may not be initialised yet.
2608 *
2609 * There are two types of consoles - bootconsoles (early_printk) and
2610 * "real" consoles (everything which is not a bootconsole) which are
2611 * handled differently.
2612 * - Any number of bootconsoles can be registered at any time.
2613 * - As soon as a "real" console is registered, all bootconsoles
2614 * will be unregistered automatically.
2615 * - Once a "real" console is registered, any attempt to register a
2616 * bootconsoles will be rejected
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 */
Robin Getz4d091612009-07-01 21:08:37 -04002618void register_console(struct console *newcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619{
Jesper Juhl40dc5652005-10-30 15:02:46 -08002620 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 unsigned long flags;
Robin Getz4d091612009-07-01 21:08:37 -04002622 struct console *bcon = NULL;
Joe Perches23475402013-07-31 13:53:46 -07002623 struct console_cmdline *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
Andreas Bießmann16cf48a2013-08-02 12:23:34 +02002625 if (console_drivers)
2626 for_each_console(bcon)
2627 if (WARN(bcon == newcon,
2628 "console '%s%d' already registered\n",
2629 bcon->name, bcon->index))
2630 return;
2631
Robin Getz4d091612009-07-01 21:08:37 -04002632 /*
2633 * before we register a new CON_BOOT console, make sure we don't
2634 * already have a valid console
2635 */
2636 if (console_drivers && newcon->flags & CON_BOOT) {
2637 /* find the last or real console */
2638 for_each_console(bcon) {
2639 if (!(bcon->flags & CON_BOOT)) {
Andrew Morton27083ba2013-11-12 15:08:50 -08002640 pr_info("Too late to register bootconsole %s%d\n",
Robin Getz4d091612009-07-01 21:08:37 -04002641 newcon->name, newcon->index);
2642 return;
2643 }
2644 }
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002645 }
2646
Robin Getz4d091612009-07-01 21:08:37 -04002647 if (console_drivers && console_drivers->flags & CON_BOOT)
2648 bcon = console_drivers;
2649
2650 if (preferred_console < 0 || bcon || !console_drivers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 preferred_console = selected_console;
2652
2653 /*
2654 * See if we want to use this console driver. If we
2655 * didn't select a console we take the first one
2656 * that registers here.
2657 */
Hans de Goedec6c7d832016-11-10 10:46:26 -08002658 if (preferred_console < 0) {
Robin Getz4d091612009-07-01 21:08:37 -04002659 if (newcon->index < 0)
2660 newcon->index = 0;
2661 if (newcon->setup == NULL ||
2662 newcon->setup(newcon, NULL) == 0) {
2663 newcon->flags |= CON_ENABLED;
2664 if (newcon->device) {
2665 newcon->flags |= CON_CONSDEV;
Jan Kiszkacd3a1b82008-05-12 21:21:04 +02002666 preferred_console = 0;
2667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 }
2669 }
2670
2671 /*
2672 * See if this console matches one we selected on
2673 * the command line.
2674 */
Joe Perches23475402013-07-31 13:53:46 -07002675 for (i = 0, c = console_cmdline;
2676 i < MAX_CMDLINECONSOLES && c->name[0];
2677 i++, c++) {
Peter Hurleyc7cef0a2015-03-09 16:27:12 -04002678 if (!newcon->match ||
2679 newcon->match(newcon, c->name, c->index, c->options) != 0) {
2680 /* default matching */
2681 BUILD_BUG_ON(sizeof(c->name) != sizeof(newcon->name));
2682 if (strcmp(c->name, newcon->name) != 0)
2683 continue;
2684 if (newcon->index >= 0 &&
2685 newcon->index != c->index)
2686 continue;
2687 if (newcon->index < 0)
2688 newcon->index = c->index;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002689
Peter Hurleyc7cef0a2015-03-09 16:27:12 -04002690 if (_braille_register_console(newcon, c))
2691 return;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002692
Peter Hurleyc7cef0a2015-03-09 16:27:12 -04002693 if (newcon->setup &&
2694 newcon->setup(newcon, c->options) != 0)
2695 break;
2696 }
2697
Robin Getz4d091612009-07-01 21:08:37 -04002698 newcon->flags |= CON_ENABLED;
Greg Edwardsab4af032005-06-23 00:09:05 -07002699 if (i == selected_console) {
Robin Getz4d091612009-07-01 21:08:37 -04002700 newcon->flags |= CON_CONSDEV;
Greg Edwardsab4af032005-06-23 00:09:05 -07002701 preferred_console = selected_console;
2702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 break;
2704 }
2705
Robin Getz4d091612009-07-01 21:08:37 -04002706 if (!(newcon->flags & CON_ENABLED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 return;
2708
Robin Getz8259cf42009-07-09 13:08:37 -04002709 /*
2710 * If we have a bootconsole, and are switching to a real console,
2711 * don't print everything out again, since when the boot console, and
2712 * the real console are the same physical device, it's annoying to
2713 * see the beginning boot messages twice
2714 */
2715 if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
Robin Getz4d091612009-07-01 21:08:37 -04002716 newcon->flags &= ~CON_PRINTBUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
2718 /*
2719 * Put this console in the list - keep the
2720 * preferred driver at the head of the list.
2721 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002722 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04002723 if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) {
2724 newcon->next = console_drivers;
2725 console_drivers = newcon;
2726 if (newcon->next)
2727 newcon->next->flags &= ~CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 } else {
Robin Getz4d091612009-07-01 21:08:37 -04002729 newcon->next = console_drivers->next;
2730 console_drivers->next = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 }
Tejun Heo6fe29352015-06-25 15:01:30 -07002732
2733 if (newcon->flags & CON_EXTENDED)
2734 if (!nr_ext_console_drivers++)
2735 pr_info("printk: continuation disabled due to ext consoles, expect more fragments in /dev/kmsg\n");
2736
Robin Getz4d091612009-07-01 21:08:37 -04002737 if (newcon->flags & CON_PRINTBUFFER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 /*
Torben Hohnac751ef2011-01-25 15:07:35 -08002739 * console_unlock(); will print out the buffered messages
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 * for us.
2741 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002742 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02002743 console_seq = syslog_seq;
2744 console_idx = syslog_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002745 console_prev = syslog_prev;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002746 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Feng Tangfe3d8ad2011-03-22 16:34:21 -07002747 /*
2748 * We're about to replay the log buffer. Only do this to the
2749 * just-registered console to avoid excessive message spam to
2750 * the already-registered consoles.
2751 */
2752 exclusive_console = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 }
Torben Hohnac751ef2011-01-25 15:07:35 -08002754 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002755 console_sysfs_notify();
Robin Getz8259cf42009-07-09 13:08:37 -04002756
2757 /*
2758 * By unregistering the bootconsoles after we enable the real console
2759 * we get the "console xxx enabled" message on all the consoles -
2760 * boot consoles, real consoles, etc - this is to ensure that end
2761 * users know there might be something in the kernel's log buffer that
2762 * went to the bootconsole (that they do not see on the real console)
2763 */
Andrew Morton27083ba2013-11-12 15:08:50 -08002764 pr_info("%sconsole [%s%d] enabled\n",
Kees Cook6b802392013-11-12 15:08:49 -08002765 (newcon->flags & CON_BOOT) ? "boot" : "" ,
2766 newcon->name, newcon->index);
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002767 if (bcon &&
2768 ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) &&
2769 !keep_bootcon) {
Kees Cook6b802392013-11-12 15:08:49 -08002770 /* We need to iterate through all boot consoles, to make
2771 * sure we print everything out, before we unregister them.
Robin Getz8259cf42009-07-09 13:08:37 -04002772 */
Robin Getz8259cf42009-07-09 13:08:37 -04002773 for_each_console(bcon)
2774 if (bcon->flags & CON_BOOT)
2775 unregister_console(bcon);
Robin Getz8259cf42009-07-09 13:08:37 -04002776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777}
2778EXPORT_SYMBOL(register_console);
2779
Jesper Juhl40dc5652005-10-30 15:02:46 -08002780int unregister_console(struct console *console)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781{
Jesper Juhl40dc5652005-10-30 15:02:46 -08002782 struct console *a, *b;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002783 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Andrew Morton27083ba2013-11-12 15:08:50 -08002785 pr_info("%sconsole [%s%d] disabled\n",
Kees Cook6b802392013-11-12 15:08:49 -08002786 (console->flags & CON_BOOT) ? "boot" : "" ,
2787 console->name, console->index);
2788
Joe Perchesbbeddf52013-07-31 13:53:45 -07002789 res = _braille_unregister_console(console);
2790 if (res)
2791 return res;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002792
Joe Perchesbbeddf52013-07-31 13:53:45 -07002793 res = 1;
Torben Hohnac751ef2011-01-25 15:07:35 -08002794 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 if (console_drivers == console) {
2796 console_drivers=console->next;
2797 res = 0;
Benjamin Herrenschmidte9b15b52005-11-23 13:37:44 -08002798 } else if (console_drivers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 for (a=console_drivers->next, b=console_drivers ;
2800 a; b=a, a=b->next) {
2801 if (a == console) {
2802 b->next = a->next;
2803 res = 0;
2804 break;
Jesper Juhl40dc5652005-10-30 15:02:46 -08002805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 }
2807 }
Jesper Juhl40dc5652005-10-30 15:02:46 -08002808
Tejun Heo6fe29352015-06-25 15:01:30 -07002809 if (!res && (console->flags & CON_EXTENDED))
2810 nr_ext_console_drivers--;
2811
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002812 /*
Greg Edwardsab4af032005-06-23 00:09:05 -07002813 * If this isn't the last console and it has CON_CONSDEV set, we
2814 * need to set it on the next preferred console.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 */
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002816 if (console_drivers != NULL && console->flags & CON_CONSDEV)
Greg Edwardsab4af032005-06-23 00:09:05 -07002817 console_drivers->flags |= CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
Stephen Chivers7fa21dd2014-05-14 08:04:39 +10002819 console->flags &= ~CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002820 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002821 console_sysfs_notify();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 return res;
2823}
2824EXPORT_SYMBOL(unregister_console);
Matt Mackalld59745c2005-05-01 08:59:02 -07002825
Thierry Reding81cc26f2016-01-15 16:58:21 -08002826/*
2827 * Some boot consoles access data that is in the init section and which will
2828 * be discarded after the initcalls have been run. To make sure that no code
2829 * will access this data, unregister the boot consoles in a late initcall.
2830 *
2831 * If for some reason, such as deferred probe or the driver being a loadable
2832 * module, the real console hasn't registered yet at this point, there will
2833 * be a brief interval in which no messages are logged to the console, which
2834 * makes it difficult to diagnose problems that occur during this time.
2835 *
2836 * To mitigate this problem somewhat, only unregister consoles whose memory
2837 * intersects with the init section. Note that code exists elsewhere to get
2838 * rid of the boot console as soon as the proper console shows up, so there
2839 * won't be side-effects from postponing the removal.
2840 */
Kevin Cernekee034260d2010-06-03 22:11:25 -07002841static int __init printk_late_init(void)
Robin Getz0c5564b2007-08-20 15:22:47 -04002842{
Robin Getz4d091612009-07-01 21:08:37 -04002843 struct console *con;
2844
2845 for_each_console(con) {
Nishanth Aravamudan4c30c6f2011-08-25 15:59:11 -07002846 if (!keep_bootcon && con->flags & CON_BOOT) {
Thierry Reding81cc26f2016-01-15 16:58:21 -08002847 /*
2848 * Make sure to unregister boot consoles whose data
2849 * resides in the init section before the init section
2850 * is discarded. Boot consoles whose data will stick
2851 * around will automatically be unregistered when the
2852 * proper console replaces them.
2853 */
2854 if (init_section_intersects(con, sizeof(*con)))
2855 unregister_console(con);
Robin Getzcb00e992007-08-21 23:14:58 -04002856 }
Robin Getz0c5564b2007-08-20 15:22:47 -04002857 }
Kevin Cernekee034260d2010-06-03 22:11:25 -07002858 hotcpu_notifier(console_cpu_notify, 0);
Robin Getz0c5564b2007-08-20 15:22:47 -04002859 return 0;
2860}
Kevin Cernekee034260d2010-06-03 22:11:25 -07002861late_initcall(printk_late_init);
Robin Getz0c5564b2007-08-20 15:22:47 -04002862
Joe Perches7ef3d2f2008-02-08 04:21:25 -08002863#if defined CONFIG_PRINTK
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002864/*
2865 * Delayed printk version, for scheduler-internal messages:
2866 */
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002867#define PRINTK_PENDING_WAKEUP 0x01
Steven Rostedt458df9f2014-06-04 16:11:38 -07002868#define PRINTK_PENDING_OUTPUT 0x02
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002869
2870static DEFINE_PER_CPU(int, printk_pending);
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002871
2872static void wake_up_klogd_work_func(struct irq_work *irq_work)
2873{
2874 int pending = __this_cpu_xchg(printk_pending, 0);
2875
Steven Rostedt458df9f2014-06-04 16:11:38 -07002876 if (pending & PRINTK_PENDING_OUTPUT) {
2877 /* If trylock fails, someone else is doing the printing */
2878 if (console_trylock())
2879 console_unlock();
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002880 }
2881
2882 if (pending & PRINTK_PENDING_WAKEUP)
2883 wake_up_interruptible(&log_wait);
2884}
2885
2886static DEFINE_PER_CPU(struct irq_work, wake_up_klogd_work) = {
2887 .func = wake_up_klogd_work_func,
2888 .flags = IRQ_WORK_LAZY,
2889};
2890
2891void wake_up_klogd(void)
2892{
2893 preempt_disable();
2894 if (waitqueue_active(&log_wait)) {
2895 this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP);
Christoph Lameterbb964a92014-08-17 12:30:24 -05002896 irq_work_queue(this_cpu_ptr(&wake_up_klogd_work));
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002897 }
2898 preempt_enable();
2899}
Dave Young717115e2008-07-25 01:45:58 -07002900
John Stultzaac74dc2014-06-04 16:11:40 -07002901int printk_deferred(const char *fmt, ...)
Peter Zijlstra600e1452012-03-15 12:35:37 +01002902{
Peter Zijlstra600e1452012-03-15 12:35:37 +01002903 va_list args;
Peter Zijlstra600e1452012-03-15 12:35:37 +01002904 int r;
2905
John Stultz81954602014-06-04 16:11:39 -07002906 preempt_disable();
Peter Zijlstra600e1452012-03-15 12:35:37 +01002907 va_start(args, fmt);
Joe Perchesa39d4a82014-12-10 15:50:15 -08002908 r = vprintk_emit(0, LOGLEVEL_SCHED, NULL, 0, fmt, args);
Peter Zijlstra600e1452012-03-15 12:35:37 +01002909 va_end(args);
2910
Steven Rostedt458df9f2014-06-04 16:11:38 -07002911 __this_cpu_or(printk_pending, PRINTK_PENDING_OUTPUT);
Christoph Lameterbb964a92014-08-17 12:30:24 -05002912 irq_work_queue(this_cpu_ptr(&wake_up_klogd_work));
John Stultz81954602014-06-04 16:11:39 -07002913 preempt_enable();
Peter Zijlstra600e1452012-03-15 12:35:37 +01002914
2915 return r;
2916}
2917
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918/*
2919 * printk rate limiting, lifted from the networking subsystem.
2920 *
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002921 * This enforces a rate limit: not more than 10 kernel messages
2922 * every 5s to make a denial-of-service attack impossible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 */
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002924DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10);
2925
Christian Borntraeger5c828712009-10-23 14:58:11 +02002926int __printk_ratelimit(const char *func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927{
Christian Borntraeger5c828712009-10-23 14:58:11 +02002928 return ___ratelimit(&printk_ratelimit_state, func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929}
Christian Borntraeger5c828712009-10-23 14:58:11 +02002930EXPORT_SYMBOL(__printk_ratelimit);
Andrew Mortonf46c4832006-11-02 22:07:16 -08002931
2932/**
2933 * printk_timed_ratelimit - caller-controlled printk ratelimiting
2934 * @caller_jiffies: pointer to caller's state
2935 * @interval_msecs: minimum interval between prints
2936 *
2937 * printk_timed_ratelimit() returns true if more than @interval_msecs
2938 * milliseconds have elapsed since the last time printk_timed_ratelimit()
2939 * returned true.
2940 */
2941bool printk_timed_ratelimit(unsigned long *caller_jiffies,
2942 unsigned int interval_msecs)
2943{
Alex Elder249771b2014-08-06 16:09:08 -07002944 unsigned long elapsed = jiffies - *caller_jiffies;
2945
2946 if (*caller_jiffies && elapsed <= msecs_to_jiffies(interval_msecs))
2947 return false;
2948
2949 *caller_jiffies = jiffies;
2950 return true;
Andrew Mortonf46c4832006-11-02 22:07:16 -08002951}
2952EXPORT_SYMBOL(printk_timed_ratelimit);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002953
2954static DEFINE_SPINLOCK(dump_list_lock);
2955static LIST_HEAD(dump_list);
2956
2957/**
2958 * kmsg_dump_register - register a kernel log dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002959 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002960 *
2961 * Adds a kernel log dumper to the system. The dump callback in the
2962 * structure will be called when the kernel oopses or panics and must be
2963 * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise.
2964 */
2965int kmsg_dump_register(struct kmsg_dumper *dumper)
2966{
2967 unsigned long flags;
2968 int err = -EBUSY;
2969
2970 /* The dump callback needs to be set */
2971 if (!dumper->dump)
2972 return -EINVAL;
2973
2974 spin_lock_irqsave(&dump_list_lock, flags);
2975 /* Don't allow registering multiple times */
2976 if (!dumper->registered) {
2977 dumper->registered = 1;
Huang Yingfb842b02011-01-12 16:59:43 -08002978 list_add_tail_rcu(&dumper->list, &dump_list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002979 err = 0;
2980 }
2981 spin_unlock_irqrestore(&dump_list_lock, flags);
2982
2983 return err;
2984}
2985EXPORT_SYMBOL_GPL(kmsg_dump_register);
2986
2987/**
2988 * kmsg_dump_unregister - unregister a kmsg dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002989 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002990 *
2991 * Removes a dump device from the system. Returns zero on success and
2992 * %-EINVAL otherwise.
2993 */
2994int kmsg_dump_unregister(struct kmsg_dumper *dumper)
2995{
2996 unsigned long flags;
2997 int err = -EINVAL;
2998
2999 spin_lock_irqsave(&dump_list_lock, flags);
3000 if (dumper->registered) {
3001 dumper->registered = 0;
Huang Yingfb842b02011-01-12 16:59:43 -08003002 list_del_rcu(&dumper->list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02003003 err = 0;
3004 }
3005 spin_unlock_irqrestore(&dump_list_lock, flags);
Huang Yingfb842b02011-01-12 16:59:43 -08003006 synchronize_rcu();
Simon Kagstrom456b5652009-10-16 14:09:18 +02003007
3008 return err;
3009}
3010EXPORT_SYMBOL_GPL(kmsg_dump_unregister);
3011
Kay Sievers7ff95542012-05-03 02:29:13 +02003012static bool always_kmsg_dump;
3013module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR);
3014
Simon Kagstrom456b5652009-10-16 14:09:18 +02003015/**
3016 * kmsg_dump - dump kernel log to kernel message dumpers.
3017 * @reason: the reason (oops, panic etc) for dumping
3018 *
Kay Sieverse2ae7152012-06-15 14:07:51 +02003019 * Call each of the registered dumper's dump() callback, which can
3020 * retrieve the kmsg records with kmsg_dump_get_line() or
3021 * kmsg_dump_get_buffer().
Simon Kagstrom456b5652009-10-16 14:09:18 +02003022 */
3023void kmsg_dump(enum kmsg_dump_reason reason)
3024{
Simon Kagstrom456b5652009-10-16 14:09:18 +02003025 struct kmsg_dumper *dumper;
Simon Kagstrom456b5652009-10-16 14:09:18 +02003026 unsigned long flags;
3027
Matthew Garrettc22ab332012-03-05 14:59:10 -08003028 if ((reason > KMSG_DUMP_OOPS) && !always_kmsg_dump)
3029 return;
3030
Huang Yingfb842b02011-01-12 16:59:43 -08003031 rcu_read_lock();
Kay Sieverse2ae7152012-06-15 14:07:51 +02003032 list_for_each_entry_rcu(dumper, &dump_list, list) {
3033 if (dumper->max_reason && reason > dumper->max_reason)
3034 continue;
3035
3036 /* initialize iterator with data about the stored records */
3037 dumper->active = true;
3038
3039 raw_spin_lock_irqsave(&logbuf_lock, flags);
3040 dumper->cur_seq = clear_seq;
3041 dumper->cur_idx = clear_idx;
3042 dumper->next_seq = log_next_seq;
3043 dumper->next_idx = log_next_idx;
3044 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
3045
3046 /* invoke dumper which will iterate over records */
3047 dumper->dump(dumper, reason);
3048
3049 /* reset iterator */
3050 dumper->active = false;
3051 }
Huang Yingfb842b02011-01-12 16:59:43 -08003052 rcu_read_unlock();
Simon Kagstrom456b5652009-10-16 14:09:18 +02003053}
Kay Sieverse2ae7152012-06-15 14:07:51 +02003054
3055/**
Anton Vorontsov533827c2012-07-20 17:28:07 -07003056 * kmsg_dump_get_line_nolock - retrieve one kmsg log line (unlocked version)
3057 * @dumper: registered kmsg dumper
3058 * @syslog: include the "<4>" prefixes
3059 * @line: buffer to copy the line to
3060 * @size: maximum size of the buffer
3061 * @len: length of line placed into buffer
3062 *
3063 * Start at the beginning of the kmsg buffer, with the oldest kmsg
3064 * record, and copy one record into the provided buffer.
3065 *
3066 * Consecutive calls will return the next available record moving
3067 * towards the end of the buffer with the youngest messages.
3068 *
3069 * A return value of FALSE indicates that there are no more records to
3070 * read.
3071 *
3072 * The function is similar to kmsg_dump_get_line(), but grabs no locks.
3073 */
3074bool kmsg_dump_get_line_nolock(struct kmsg_dumper *dumper, bool syslog,
3075 char *line, size_t size, size_t *len)
3076{
Joe Perches62e32ac2013-07-31 13:53:47 -07003077 struct printk_log *msg;
Anton Vorontsov533827c2012-07-20 17:28:07 -07003078 size_t l = 0;
3079 bool ret = false;
3080
3081 if (!dumper->active)
3082 goto out;
3083
3084 if (dumper->cur_seq < log_first_seq) {
3085 /* messages are gone, move to first available one */
3086 dumper->cur_seq = log_first_seq;
3087 dumper->cur_idx = log_first_idx;
3088 }
3089
3090 /* last entry */
3091 if (dumper->cur_seq >= log_next_seq)
3092 goto out;
3093
3094 msg = log_from_idx(dumper->cur_idx);
3095 l = msg_print_text(msg, 0, syslog, line, size);
3096
3097 dumper->cur_idx = log_next(dumper->cur_idx);
3098 dumper->cur_seq++;
3099 ret = true;
3100out:
3101 if (len)
3102 *len = l;
3103 return ret;
3104}
3105
3106/**
Kay Sieverse2ae7152012-06-15 14:07:51 +02003107 * kmsg_dump_get_line - retrieve one kmsg log line
3108 * @dumper: registered kmsg dumper
3109 * @syslog: include the "<4>" prefixes
3110 * @line: buffer to copy the line to
3111 * @size: maximum size of the buffer
3112 * @len: length of line placed into buffer
3113 *
3114 * Start at the beginning of the kmsg buffer, with the oldest kmsg
3115 * record, and copy one record into the provided buffer.
3116 *
3117 * Consecutive calls will return the next available record moving
3118 * towards the end of the buffer with the youngest messages.
3119 *
3120 * A return value of FALSE indicates that there are no more records to
3121 * read.
3122 */
3123bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog,
3124 char *line, size_t size, size_t *len)
3125{
3126 unsigned long flags;
Anton Vorontsov533827c2012-07-20 17:28:07 -07003127 bool ret;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003128
3129 raw_spin_lock_irqsave(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07003130 ret = kmsg_dump_get_line_nolock(dumper, syslog, line, size, len);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003131 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07003132
Kay Sieverse2ae7152012-06-15 14:07:51 +02003133 return ret;
3134}
3135EXPORT_SYMBOL_GPL(kmsg_dump_get_line);
3136
3137/**
3138 * kmsg_dump_get_buffer - copy kmsg log lines
3139 * @dumper: registered kmsg dumper
3140 * @syslog: include the "<4>" prefixes
Randy Dunlap4f0f4af2012-06-30 15:37:24 -07003141 * @buf: buffer to copy the line to
Kay Sieverse2ae7152012-06-15 14:07:51 +02003142 * @size: maximum size of the buffer
3143 * @len: length of line placed into buffer
3144 *
3145 * Start at the end of the kmsg buffer and fill the provided buffer
3146 * with as many of the the *youngest* kmsg records that fit into it.
3147 * If the buffer is large enough, all available kmsg records will be
3148 * copied with a single call.
3149 *
3150 * Consecutive calls will fill the buffer with the next block of
3151 * available older records, not including the earlier retrieved ones.
3152 *
3153 * A return value of FALSE indicates that there are no more records to
3154 * read.
3155 */
3156bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog,
3157 char *buf, size_t size, size_t *len)
3158{
3159 unsigned long flags;
3160 u64 seq;
3161 u32 idx;
3162 u64 next_seq;
3163 u32 next_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07003164 enum log_flags prev;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003165 size_t l = 0;
3166 bool ret = false;
3167
3168 if (!dumper->active)
3169 goto out;
3170
3171 raw_spin_lock_irqsave(&logbuf_lock, flags);
3172 if (dumper->cur_seq < log_first_seq) {
3173 /* messages are gone, move to first available one */
3174 dumper->cur_seq = log_first_seq;
3175 dumper->cur_idx = log_first_idx;
3176 }
3177
3178 /* last entry */
3179 if (dumper->cur_seq >= dumper->next_seq) {
3180 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
3181 goto out;
3182 }
3183
3184 /* calculate length of entire buffer */
3185 seq = dumper->cur_seq;
3186 idx = dumper->cur_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07003187 prev = 0;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003188 while (seq < dumper->next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07003189 struct printk_log *msg = log_from_idx(idx);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003190
Kay Sievers5becfb12012-07-09 12:15:42 -07003191 l += msg_print_text(msg, prev, true, NULL, 0);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003192 idx = log_next(idx);
3193 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07003194 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003195 }
3196
3197 /* move first record forward until length fits into the buffer */
3198 seq = dumper->cur_seq;
3199 idx = dumper->cur_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07003200 prev = 0;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003201 while (l > size && seq < dumper->next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07003202 struct printk_log *msg = log_from_idx(idx);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003203
Kay Sievers5becfb12012-07-09 12:15:42 -07003204 l -= msg_print_text(msg, prev, true, NULL, 0);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003205 idx = log_next(idx);
3206 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07003207 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003208 }
3209
3210 /* last message in next interation */
3211 next_seq = seq;
3212 next_idx = idx;
3213
3214 l = 0;
3215 while (seq < dumper->next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07003216 struct printk_log *msg = log_from_idx(idx);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003217
Kay Sievers5becfb12012-07-09 12:15:42 -07003218 l += msg_print_text(msg, prev, syslog, buf + l, size - l);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003219 idx = log_next(idx);
3220 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07003221 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003222 }
3223
3224 dumper->next_seq = next_seq;
3225 dumper->next_idx = next_idx;
3226 ret = true;
3227 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
3228out:
3229 if (len)
3230 *len = l;
3231 return ret;
3232}
3233EXPORT_SYMBOL_GPL(kmsg_dump_get_buffer);
3234
3235/**
Anton Vorontsov533827c2012-07-20 17:28:07 -07003236 * kmsg_dump_rewind_nolock - reset the interator (unlocked version)
3237 * @dumper: registered kmsg dumper
3238 *
3239 * Reset the dumper's iterator so that kmsg_dump_get_line() and
3240 * kmsg_dump_get_buffer() can be called again and used multiple
3241 * times within the same dumper.dump() callback.
3242 *
3243 * The function is similar to kmsg_dump_rewind(), but grabs no locks.
3244 */
3245void kmsg_dump_rewind_nolock(struct kmsg_dumper *dumper)
3246{
3247 dumper->cur_seq = clear_seq;
3248 dumper->cur_idx = clear_idx;
3249 dumper->next_seq = log_next_seq;
3250 dumper->next_idx = log_next_idx;
3251}
3252
3253/**
Kay Sieverse2ae7152012-06-15 14:07:51 +02003254 * kmsg_dump_rewind - reset the interator
3255 * @dumper: registered kmsg dumper
3256 *
3257 * Reset the dumper's iterator so that kmsg_dump_get_line() and
3258 * kmsg_dump_get_buffer() can be called again and used multiple
3259 * times within the same dumper.dump() callback.
3260 */
3261void kmsg_dump_rewind(struct kmsg_dumper *dumper)
3262{
3263 unsigned long flags;
3264
3265 raw_spin_lock_irqsave(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07003266 kmsg_dump_rewind_nolock(dumper);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003267 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
3268}
3269EXPORT_SYMBOL_GPL(kmsg_dump_rewind);
Tejun Heo196779b2013-04-30 15:27:12 -07003270
Tejun Heo98e5e1b2013-04-30 15:27:15 -07003271static char dump_stack_arch_desc_str[128];
3272
3273/**
3274 * dump_stack_set_arch_desc - set arch-specific str to show with task dumps
3275 * @fmt: printf-style format string
3276 * @...: arguments for the format string
3277 *
3278 * The configured string will be printed right after utsname during task
3279 * dumps. Usually used to add arch-specific system identifiers. If an
3280 * arch wants to make use of such an ID string, it should initialize this
3281 * as soon as possible during boot.
3282 */
3283void __init dump_stack_set_arch_desc(const char *fmt, ...)
3284{
3285 va_list args;
3286
3287 va_start(args, fmt);
3288 vsnprintf(dump_stack_arch_desc_str, sizeof(dump_stack_arch_desc_str),
3289 fmt, args);
3290 va_end(args);
3291}
3292
Tejun Heo196779b2013-04-30 15:27:12 -07003293/**
3294 * dump_stack_print_info - print generic debug info for dump_stack()
3295 * @log_lvl: log level
3296 *
3297 * Arch-specific dump_stack() implementations can use this function to
3298 * print out the same debug information as the generic dump_stack().
3299 */
3300void dump_stack_print_info(const char *log_lvl)
3301{
3302 printk("%sCPU: %d PID: %d Comm: %.20s %s %s %.*s\n",
3303 log_lvl, raw_smp_processor_id(), current->pid, current->comm,
3304 print_tainted(), init_utsname()->release,
3305 (int)strcspn(init_utsname()->version, " "),
3306 init_utsname()->version);
Tejun Heo98e5e1b2013-04-30 15:27:15 -07003307
3308 if (dump_stack_arch_desc_str[0] != '\0')
3309 printk("%sHardware name: %s\n",
3310 log_lvl, dump_stack_arch_desc_str);
Tejun Heo3d1cb202013-04-30 15:27:22 -07003311
3312 print_worker_info(log_lvl, current);
Tejun Heo196779b2013-04-30 15:27:12 -07003313}
3314
Tejun Heoa43cb952013-04-30 15:27:17 -07003315/**
3316 * show_regs_print_info - print generic debug info for show_regs()
3317 * @log_lvl: log level
3318 *
3319 * show_regs() implementations can use this function to print out generic
3320 * debug information.
3321 */
3322void show_regs_print_info(const char *log_lvl)
3323{
3324 dump_stack_print_info(log_lvl);
3325
Andy Lutomirski8b70ca62016-07-28 15:48:23 -07003326 printk("%stask: %p task.stack: %p\n",
3327 log_lvl, current, task_stack_page(current));
Tejun Heoa43cb952013-04-30 15:27:17 -07003328}
3329
Joe Perches7ef3d2f2008-02-08 04:21:25 -08003330#endif