blob: 3012f951dcf4d2e7d25271da5f1df06d838a869f [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{
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -08001017 unsigned size = memparse(str, &str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Luis R. Rodriguezc0a318a2014-08-06 16:08:52 -07001019 log_buf_len_update(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Mike Travis162a7e72011-05-24 17:13:20 -07001021 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022}
Mike Travis162a7e72011-05-24 17:13:20 -07001023early_param("log_buf_len", log_buf_len_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Geert Uytterhoeven2240a312014-10-13 15:51:11 -07001025#ifdef CONFIG_SMP
1026#define __LOG_CPU_MAX_BUF_LEN (1 << CONFIG_LOG_CPU_MAX_BUF_SHIFT)
1027
Luis R. Rodriguez23b28992014-08-06 16:08:56 -07001028static void __init log_buf_add_cpu(void)
1029{
1030 unsigned int cpu_extra;
1031
1032 /*
1033 * archs should set up cpu_possible_bits properly with
1034 * set_cpu_possible() after setup_arch() but just in
1035 * case lets ensure this is valid.
1036 */
1037 if (num_possible_cpus() == 1)
1038 return;
1039
1040 cpu_extra = (num_possible_cpus() - 1) * __LOG_CPU_MAX_BUF_LEN;
1041
1042 /* by default this will only continue through for large > 64 CPUs */
1043 if (cpu_extra <= __LOG_BUF_LEN / 2)
1044 return;
1045
1046 pr_info("log_buf_len individual max cpu contribution: %d bytes\n",
1047 __LOG_CPU_MAX_BUF_LEN);
1048 pr_info("log_buf_len total cpu_extra contributions: %d bytes\n",
1049 cpu_extra);
1050 pr_info("log_buf_len min size: %d bytes\n", __LOG_BUF_LEN);
1051
1052 log_buf_len_update(cpu_extra + __LOG_BUF_LEN);
1053}
Geert Uytterhoeven2240a312014-10-13 15:51:11 -07001054#else /* !CONFIG_SMP */
1055static inline void log_buf_add_cpu(void) {}
1056#endif /* CONFIG_SMP */
Luis R. Rodriguez23b28992014-08-06 16:08:56 -07001057
Mike Travis162a7e72011-05-24 17:13:20 -07001058void __init setup_log_buf(int early)
1059{
1060 unsigned long flags;
Mike Travis162a7e72011-05-24 17:13:20 -07001061 char *new_log_buf;
1062 int free;
1063
Luis R. Rodriguez23b28992014-08-06 16:08:56 -07001064 if (log_buf != __log_buf)
1065 return;
1066
1067 if (!early && !new_log_buf_len)
1068 log_buf_add_cpu();
1069
Mike Travis162a7e72011-05-24 17:13:20 -07001070 if (!new_log_buf_len)
1071 return;
1072
1073 if (early) {
Santosh Shilimkar9da791d2014-01-21 15:50:23 -08001074 new_log_buf =
Luis R. Rodriguez70300172014-08-06 16:08:49 -07001075 memblock_virt_alloc(new_log_buf_len, LOG_ALIGN);
Mike Travis162a7e72011-05-24 17:13:20 -07001076 } else {
Luis R. Rodriguez70300172014-08-06 16:08:49 -07001077 new_log_buf = memblock_virt_alloc_nopanic(new_log_buf_len,
1078 LOG_ALIGN);
Mike Travis162a7e72011-05-24 17:13:20 -07001079 }
1080
1081 if (unlikely(!new_log_buf)) {
1082 pr_err("log_buf_len: %ld bytes not available\n",
1083 new_log_buf_len);
1084 return;
1085 }
1086
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001087 raw_spin_lock_irqsave(&logbuf_lock, flags);
Mike Travis162a7e72011-05-24 17:13:20 -07001088 log_buf_len = new_log_buf_len;
1089 log_buf = new_log_buf;
1090 new_log_buf_len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001091 free = __LOG_BUF_LEN - log_next_idx;
1092 memcpy(log_buf, __log_buf, __LOG_BUF_LEN);
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001093 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Mike Travis162a7e72011-05-24 17:13:20 -07001094
Luis R. Rodriguezf5405172014-08-06 16:08:54 -07001095 pr_info("log_buf_len: %d bytes\n", log_buf_len);
Mike Travis162a7e72011-05-24 17:13:20 -07001096 pr_info("early log buf free: %d(%d%%)\n",
1097 free, (free * 100) / __LOG_BUF_LEN);
1098}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001100static bool __read_mostly ignore_loglevel;
1101
1102static int __init ignore_loglevel_setup(char *str)
1103{
Neil Zhangd25d9fe2014-08-06 16:09:12 -07001104 ignore_loglevel = true;
Andrew Morton27083ba2013-11-12 15:08:50 -08001105 pr_info("debug: ignoring loglevel setting.\n");
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001106
1107 return 0;
1108}
1109
1110early_param("ignore_loglevel", ignore_loglevel_setup);
1111module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR);
Joe Perches205bd3d2015-02-12 15:01:34 -08001112MODULE_PARM_DESC(ignore_loglevel,
1113 "ignore loglevel setting (prints all kernel messages to the console)");
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001114
Sergey Senozhatskycf775442016-08-02 14:03:56 -07001115static bool suppress_message_printing(int level)
1116{
1117 return (level >= console_loglevel && !ignore_loglevel);
1118}
1119
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001120#ifdef CONFIG_BOOT_PRINTK_DELAY
1121
Namhyung Kim674dff62010-10-26 14:22:48 -07001122static int boot_delay; /* msecs delay after each printk during bootup */
Dave Young3a3b6ed2009-09-22 16:43:31 -07001123static unsigned long long loops_per_msec; /* based on boot_delay */
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001124
1125static int __init boot_delay_setup(char *str)
1126{
1127 unsigned long lpj;
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001128
1129 lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */
1130 loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
1131
1132 get_option(&str, &boot_delay);
1133 if (boot_delay > 10 * 1000)
1134 boot_delay = 0;
1135
Dave Young3a3b6ed2009-09-22 16:43:31 -07001136 pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
1137 "HZ: %d, loops_per_msec: %llu\n",
1138 boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
Dave Young29e9d222013-11-12 15:08:53 -08001139 return 0;
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001140}
Dave Young29e9d222013-11-12 15:08:53 -08001141early_param("boot_delay", boot_delay_setup);
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001142
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001143static void boot_delay_msec(int level)
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001144{
1145 unsigned long long k;
1146 unsigned long timeout;
1147
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001148 if ((boot_delay == 0 || system_state != SYSTEM_BOOTING)
Sergey Senozhatskycf775442016-08-02 14:03:56 -07001149 || suppress_message_printing(level)) {
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001150 return;
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001151 }
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001152
Dave Young3a3b6ed2009-09-22 16:43:31 -07001153 k = (unsigned long long)loops_per_msec * boot_delay;
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001154
1155 timeout = jiffies + msecs_to_jiffies(boot_delay);
1156 while (k) {
1157 k--;
1158 cpu_relax();
1159 /*
1160 * use (volatile) jiffies to prevent
1161 * compiler reduction; loop termination via jiffies
1162 * is secondary and may or may not happen.
1163 */
1164 if (time_after(jiffies, timeout))
1165 break;
1166 touch_nmi_watchdog();
1167 }
1168}
1169#else
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001170static inline void boot_delay_msec(int level)
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001171{
1172}
1173#endif
1174
Alex Eldere99aa462014-08-06 16:09:05 -07001175static bool printk_time = IS_ENABLED(CONFIG_PRINTK_TIME);
Kay Sievers7ff95542012-05-03 02:29:13 +02001176module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
1177
Kay Sievers084681d2012-06-28 09:38:53 +02001178static size_t print_time(u64 ts, char *buf)
1179{
1180 unsigned long rem_nsec;
1181
1182 if (!printk_time)
1183 return 0;
1184
Kay Sievers084681d2012-06-28 09:38:53 +02001185 rem_nsec = do_div(ts, 1000000000);
Roland Dreier35dac272013-01-04 15:35:50 -08001186
1187 if (!buf)
1188 return snprintf(NULL, 0, "[%5lu.000000] ", (unsigned long)ts);
1189
Kay Sievers084681d2012-06-28 09:38:53 +02001190 return sprintf(buf, "[%5lu.%06lu] ",
1191 (unsigned long)ts, rem_nsec / 1000);
1192}
1193
Joe Perches62e32ac2013-07-31 13:53:47 -07001194static size_t print_prefix(const struct printk_log *msg, bool syslog, char *buf)
Kay Sievers649e6ee2012-05-10 04:30:45 +02001195{
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001196 size_t len = 0;
Kay Sievers43a73a52012-07-06 09:50:09 -07001197 unsigned int prefix = (msg->facility << 3) | msg->level;
Kay Sievers649e6ee2012-05-10 04:30:45 +02001198
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001199 if (syslog) {
1200 if (buf) {
Kay Sievers43a73a52012-07-06 09:50:09 -07001201 len += sprintf(buf, "<%u>", prefix);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001202 } else {
1203 len += 3;
Kay Sievers43a73a52012-07-06 09:50:09 -07001204 if (prefix > 999)
1205 len += 3;
1206 else if (prefix > 99)
1207 len += 2;
1208 else if (prefix > 9)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001209 len++;
1210 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001211 }
1212
Kay Sievers084681d2012-06-28 09:38:53 +02001213 len += print_time(msg->ts_nsec, buf ? buf + len : NULL);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001214 return len;
1215}
1216
Joe Perches62e32ac2013-07-31 13:53:47 -07001217static size_t msg_print_text(const struct printk_log *msg, enum log_flags prev,
Kay Sievers5becfb12012-07-09 12:15:42 -07001218 bool syslog, char *buf, size_t size)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001219{
1220 const char *text = log_text(msg);
1221 size_t text_size = msg->text_len;
Kay Sievers5becfb12012-07-09 12:15:42 -07001222 bool prefix = true;
1223 bool newline = true;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001224 size_t len = 0;
1225
Kay Sievers5becfb12012-07-09 12:15:42 -07001226 if ((prev & LOG_CONT) && !(msg->flags & LOG_PREFIX))
1227 prefix = false;
1228
1229 if (msg->flags & LOG_CONT) {
1230 if ((prev & LOG_CONT) && !(prev & LOG_NEWLINE))
1231 prefix = false;
1232
1233 if (!(msg->flags & LOG_NEWLINE))
1234 newline = false;
1235 }
1236
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001237 do {
1238 const char *next = memchr(text, '\n', text_size);
1239 size_t text_len;
1240
1241 if (next) {
1242 text_len = next - text;
1243 next++;
1244 text_size -= next - text;
1245 } else {
1246 text_len = text_size;
1247 }
1248
1249 if (buf) {
1250 if (print_prefix(msg, syslog, NULL) +
Kay Sievers70498252012-07-16 18:35:29 -07001251 text_len + 1 >= size - len)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001252 break;
1253
Kay Sievers5becfb12012-07-09 12:15:42 -07001254 if (prefix)
1255 len += print_prefix(msg, syslog, buf + len);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001256 memcpy(buf + len, text, text_len);
1257 len += text_len;
Kay Sievers5becfb12012-07-09 12:15:42 -07001258 if (next || newline)
1259 buf[len++] = '\n';
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001260 } else {
1261 /* SYSLOG_ACTION_* buffer size only calculation */
Kay Sievers5becfb12012-07-09 12:15:42 -07001262 if (prefix)
1263 len += print_prefix(msg, syslog, NULL);
1264 len += text_len;
1265 if (next || newline)
1266 len++;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001267 }
1268
Kay Sievers5becfb12012-07-09 12:15:42 -07001269 prefix = true;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001270 text = next;
1271 } while (text);
1272
Kay Sievers7ff95542012-05-03 02:29:13 +02001273 return len;
1274}
1275
1276static int syslog_print(char __user *buf, int size)
1277{
1278 char *text;
Joe Perches62e32ac2013-07-31 13:53:47 -07001279 struct printk_log *msg;
Jan Beulich116e90b2012-06-22 16:36:09 +01001280 int len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001281
Kay Sievers70498252012-07-16 18:35:29 -07001282 text = kmalloc(LOG_LINE_MAX + PREFIX_MAX, GFP_KERNEL);
Kay Sievers7ff95542012-05-03 02:29:13 +02001283 if (!text)
1284 return -ENOMEM;
1285
Jan Beulich116e90b2012-06-22 16:36:09 +01001286 while (size > 0) {
1287 size_t n;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001288 size_t skip;
Kay Sievers7ff95542012-05-03 02:29:13 +02001289
Jan Beulich116e90b2012-06-22 16:36:09 +01001290 raw_spin_lock_irq(&logbuf_lock);
1291 if (syslog_seq < log_first_seq) {
1292 /* messages are gone, move to first one */
1293 syslog_seq = log_first_seq;
1294 syslog_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001295 syslog_prev = 0;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001296 syslog_partial = 0;
Jan Beulich116e90b2012-06-22 16:36:09 +01001297 }
1298 if (syslog_seq == log_next_seq) {
1299 raw_spin_unlock_irq(&logbuf_lock);
1300 break;
1301 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001302
1303 skip = syslog_partial;
Jan Beulich116e90b2012-06-22 16:36:09 +01001304 msg = log_from_idx(syslog_idx);
Kay Sievers70498252012-07-16 18:35:29 -07001305 n = msg_print_text(msg, syslog_prev, true, text,
1306 LOG_LINE_MAX + PREFIX_MAX);
Kay Sieverseb02dac2012-07-09 10:05:10 -07001307 if (n - syslog_partial <= size) {
1308 /* message fits into buffer, move forward */
Jan Beulich116e90b2012-06-22 16:36:09 +01001309 syslog_idx = log_next(syslog_idx);
1310 syslog_seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07001311 syslog_prev = msg->flags;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001312 n -= syslog_partial;
1313 syslog_partial = 0;
1314 } else if (!len){
1315 /* partial read(), remember position */
1316 n = size;
1317 syslog_partial += n;
Jan Beulich116e90b2012-06-22 16:36:09 +01001318 } else
1319 n = 0;
1320 raw_spin_unlock_irq(&logbuf_lock);
1321
1322 if (!n)
1323 break;
1324
Kay Sieverseb02dac2012-07-09 10:05:10 -07001325 if (copy_to_user(buf, text + skip, n)) {
Jan Beulich116e90b2012-06-22 16:36:09 +01001326 if (!len)
1327 len = -EFAULT;
1328 break;
1329 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001330
1331 len += n;
1332 size -= n;
1333 buf += n;
Jan Beulich116e90b2012-06-22 16:36:09 +01001334 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001335
1336 kfree(text);
1337 return len;
1338}
1339
1340static int syslog_print_all(char __user *buf, int size, bool clear)
1341{
1342 char *text;
1343 int len = 0;
1344
Kay Sievers70498252012-07-16 18:35:29 -07001345 text = kmalloc(LOG_LINE_MAX + PREFIX_MAX, GFP_KERNEL);
Kay Sievers7ff95542012-05-03 02:29:13 +02001346 if (!text)
1347 return -ENOMEM;
1348
1349 raw_spin_lock_irq(&logbuf_lock);
1350 if (buf) {
1351 u64 next_seq;
1352 u64 seq;
1353 u32 idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001354 enum log_flags prev;
Kay Sievers7ff95542012-05-03 02:29:13 +02001355
Kay Sievers7ff95542012-05-03 02:29:13 +02001356 /*
1357 * Find first record that fits, including all following records,
1358 * into the user-provided buffer for this dump.
Kay Sieverse2ae7152012-06-15 14:07:51 +02001359 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001360 seq = clear_seq;
1361 idx = clear_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001362 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001363 while (seq < log_next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001364 struct printk_log *msg = log_from_idx(idx);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001365
Kay Sievers5becfb12012-07-09 12:15:42 -07001366 len += msg_print_text(msg, prev, true, NULL, 0);
Jeff Mahoneye3756472012-08-10 15:07:09 -04001367 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001368 idx = log_next(idx);
1369 seq++;
1370 }
Kay Sieverse2ae7152012-06-15 14:07:51 +02001371
1372 /* move first record forward until length fits into the buffer */
Kay Sievers7ff95542012-05-03 02:29:13 +02001373 seq = clear_seq;
1374 idx = clear_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001375 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001376 while (len > size && seq < log_next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001377 struct printk_log *msg = log_from_idx(idx);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001378
Kay Sievers5becfb12012-07-09 12:15:42 -07001379 len -= msg_print_text(msg, prev, true, NULL, 0);
Jeff Mahoneye3756472012-08-10 15:07:09 -04001380 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001381 idx = log_next(idx);
1382 seq++;
1383 }
1384
Kay Sieverse2ae7152012-06-15 14:07:51 +02001385 /* last message fitting into this dump */
Kay Sievers7ff95542012-05-03 02:29:13 +02001386 next_seq = log_next_seq;
1387
1388 len = 0;
1389 while (len >= 0 && seq < next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001390 struct printk_log *msg = log_from_idx(idx);
Kay Sievers7ff95542012-05-03 02:29:13 +02001391 int textlen;
1392
Kay Sievers70498252012-07-16 18:35:29 -07001393 textlen = msg_print_text(msg, prev, true, text,
1394 LOG_LINE_MAX + PREFIX_MAX);
Kay Sievers7ff95542012-05-03 02:29:13 +02001395 if (textlen < 0) {
1396 len = textlen;
1397 break;
1398 }
1399 idx = log_next(idx);
1400 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07001401 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001402
1403 raw_spin_unlock_irq(&logbuf_lock);
1404 if (copy_to_user(buf + len, text, textlen))
1405 len = -EFAULT;
1406 else
1407 len += textlen;
1408 raw_spin_lock_irq(&logbuf_lock);
1409
1410 if (seq < log_first_seq) {
1411 /* messages are gone, move to next one */
1412 seq = log_first_seq;
1413 idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001414 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001415 }
1416 }
1417 }
1418
1419 if (clear) {
1420 clear_seq = log_next_seq;
1421 clear_idx = log_next_idx;
1422 }
1423 raw_spin_unlock_irq(&logbuf_lock);
1424
1425 kfree(text);
1426 return len;
1427}
1428
Vasily Averin3ea43312015-06-25 15:01:47 -07001429int do_syslog(int type, char __user *buf, int len, int source)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430{
Kay Sievers7ff95542012-05-03 02:29:13 +02001431 bool clear = false;
Joe Perchesa39d4a82014-12-10 15:50:15 -08001432 static int saved_console_loglevel = LOGLEVEL_DEFAULT;
Linus Torvaldsee24aeb2011-02-10 17:53:55 -08001433 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Vasily Averin3ea43312015-06-25 15:01:47 -07001435 error = check_syslog_permissions(type, source);
Linus Torvaldsee24aeb2011-02-10 17:53:55 -08001436 if (error)
1437 goto out;
Eric Paris12b30522010-11-15 18:36:29 -05001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 switch (type) {
Kees Cookd78ca3c2010-02-03 15:37:13 -08001440 case SYSLOG_ACTION_CLOSE: /* Close log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001442 case SYSLOG_ACTION_OPEN: /* Open log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001444 case SYSLOG_ACTION_READ: /* Read from log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 error = -EINVAL;
1446 if (!buf || len < 0)
1447 goto out;
1448 error = 0;
1449 if (!len)
1450 goto out;
1451 if (!access_ok(VERIFY_WRITE, buf, len)) {
1452 error = -EFAULT;
1453 goto out;
1454 }
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +08001455 error = wait_event_interruptible(log_wait,
1456 syslog_seq != log_next_seq);
Kay Sieverscb424ff2012-07-06 09:50:09 -07001457 if (error)
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +08001458 goto out;
Kay Sievers7ff95542012-05-03 02:29:13 +02001459 error = syslog_print(buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001461 /* Read/clear last kernel messages */
1462 case SYSLOG_ACTION_READ_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +02001463 clear = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 /* FALL THRU */
Kees Cookd78ca3c2010-02-03 15:37:13 -08001465 /* Read last kernel messages */
1466 case SYSLOG_ACTION_READ_ALL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 error = -EINVAL;
1468 if (!buf || len < 0)
1469 goto out;
1470 error = 0;
1471 if (!len)
1472 goto out;
1473 if (!access_ok(VERIFY_WRITE, buf, len)) {
1474 error = -EFAULT;
1475 goto out;
1476 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001477 error = syslog_print_all(buf, len, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001479 /* Clear ring buffer */
1480 case SYSLOG_ACTION_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +02001481 syslog_print_all(NULL, 0, true);
Alan Stern4661e352012-06-22 17:12:19 -04001482 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001483 /* Disable logging to console */
1484 case SYSLOG_ACTION_CONSOLE_OFF:
Joe Perchesa39d4a82014-12-10 15:50:15 -08001485 if (saved_console_loglevel == LOGLEVEL_DEFAULT)
Frans Pop1aaad492009-07-06 13:31:48 +02001486 saved_console_loglevel = console_loglevel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 console_loglevel = minimum_console_loglevel;
1488 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001489 /* Enable logging to console */
1490 case SYSLOG_ACTION_CONSOLE_ON:
Joe Perchesa39d4a82014-12-10 15:50:15 -08001491 if (saved_console_loglevel != LOGLEVEL_DEFAULT) {
Frans Pop1aaad492009-07-06 13:31:48 +02001492 console_loglevel = saved_console_loglevel;
Joe Perchesa39d4a82014-12-10 15:50:15 -08001493 saved_console_loglevel = LOGLEVEL_DEFAULT;
Frans Pop1aaad492009-07-06 13:31:48 +02001494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001496 /* Set level of messages printed to console */
1497 case SYSLOG_ACTION_CONSOLE_LEVEL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 error = -EINVAL;
1499 if (len < 1 || len > 8)
1500 goto out;
1501 if (len < minimum_console_loglevel)
1502 len = minimum_console_loglevel;
1503 console_loglevel = len;
Frans Pop1aaad492009-07-06 13:31:48 +02001504 /* Implicitly re-enable logging to console */
Joe Perchesa39d4a82014-12-10 15:50:15 -08001505 saved_console_loglevel = LOGLEVEL_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 error = 0;
1507 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001508 /* Number of chars in the log buffer */
1509 case SYSLOG_ACTION_SIZE_UNREAD:
Kay Sievers7ff95542012-05-03 02:29:13 +02001510 raw_spin_lock_irq(&logbuf_lock);
1511 if (syslog_seq < log_first_seq) {
1512 /* messages are gone, move to first one */
1513 syslog_seq = log_first_seq;
1514 syslog_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001515 syslog_prev = 0;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001516 syslog_partial = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001517 }
Vasily Averin3ea43312015-06-25 15:01:47 -07001518 if (source == SYSLOG_FROM_PROC) {
Kay Sievers7ff95542012-05-03 02:29:13 +02001519 /*
1520 * Short-cut for poll(/"proc/kmsg") which simply checks
1521 * for pending data, not the size; return the count of
1522 * records, not the length.
1523 */
Alex Eldere97e1262014-08-06 16:08:59 -07001524 error = log_next_seq - syslog_seq;
Kay Sievers7ff95542012-05-03 02:29:13 +02001525 } else {
Kay Sievers5becfb12012-07-09 12:15:42 -07001526 u64 seq = syslog_seq;
1527 u32 idx = syslog_idx;
1528 enum log_flags prev = syslog_prev;
Kay Sievers7ff95542012-05-03 02:29:13 +02001529
1530 error = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001531 while (seq < log_next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001532 struct printk_log *msg = log_from_idx(idx);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001533
Kay Sievers5becfb12012-07-09 12:15:42 -07001534 error += msg_print_text(msg, prev, true, NULL, 0);
Kay Sievers7ff95542012-05-03 02:29:13 +02001535 idx = log_next(idx);
1536 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07001537 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001538 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001539 error -= syslog_partial;
Kay Sievers7ff95542012-05-03 02:29:13 +02001540 }
1541 raw_spin_unlock_irq(&logbuf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001543 /* Size of the log buffer */
1544 case SYSLOG_ACTION_SIZE_BUFFER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 error = log_buf_len;
1546 break;
1547 default:
1548 error = -EINVAL;
1549 break;
1550 }
1551out:
1552 return error;
1553}
1554
Heiko Carstens1e7bfb22009-01-14 14:14:29 +01001555SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Kees Cook637241a2013-06-12 14:04:39 -07001557 return do_syslog(type, buf, len, SYSLOG_FROM_READER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
1559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 * Call the console drivers, asking them to write out
1562 * log_buf[start] to log_buf[end - 1].
Torben Hohnac751ef2011-01-25 15:07:35 -08001563 * The console_lock must be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 */
Tejun Heo6fe29352015-06-25 15:01:30 -07001565static void call_console_drivers(int level,
1566 const char *ext_text, size_t ext_len,
1567 const char *text, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
Kay Sievers7ff95542012-05-03 02:29:13 +02001569 struct console *con;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Sergey Senozhatsky7ee21032017-02-18 03:42:54 -08001571 trace_console_rcuidle(text, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Kay Sievers7ff95542012-05-03 02:29:13 +02001573 if (!console_drivers)
1574 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Kay Sievers7ff95542012-05-03 02:29:13 +02001576 for_each_console(con) {
1577 if (exclusive_console && con != exclusive_console)
1578 continue;
1579 if (!(con->flags & CON_ENABLED))
1580 continue;
1581 if (!con->write)
1582 continue;
1583 if (!cpu_online(smp_processor_id()) &&
1584 !(con->flags & CON_ANYTIME))
1585 continue;
Tejun Heo6fe29352015-06-25 15:01:30 -07001586 if (con->flags & CON_EXTENDED)
1587 con->write(con, ext_text, ext_len);
1588 else
1589 con->write(con, text, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
1593/*
Joe Perches205bd3d2015-02-12 15:01:34 -08001594 * Zap console related locks when oopsing.
1595 * To leave time for slow consoles to print a full oops,
1596 * only zap at most once every 30 seconds.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 */
1598static void zap_locks(void)
1599{
1600 static unsigned long oops_timestamp;
1601
1602 if (time_after_eq(jiffies, oops_timestamp) &&
Joe Perches205bd3d2015-02-12 15:01:34 -08001603 !time_after(jiffies, oops_timestamp + 30 * HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 return;
1605
1606 oops_timestamp = jiffies;
1607
Peter Zijlstra94d24fc2011-06-07 11:17:30 +02001608 debug_locks_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 /* If a crash is occurring, make sure we can't deadlock */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001610 raw_spin_lock_init(&logbuf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 /* And make sure that we print immediately */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +00001612 sema_init(&console_sem, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
1614
Dave Youngaf913222009-09-22 16:43:33 -07001615int printk_delay_msec __read_mostly;
1616
1617static inline void printk_delay(void)
1618{
1619 if (unlikely(printk_delay_msec)) {
1620 int m = printk_delay_msec;
1621
1622 while (m--) {
1623 mdelay(1);
1624 touch_nmi_watchdog();
1625 }
1626 }
1627}
1628
Kay Sievers084681d2012-06-28 09:38:53 +02001629/*
1630 * Continuation lines are buffered, and not committed to the record buffer
1631 * until the line is complete, or a race forces it. The line fragments
1632 * though, are printed immediately to the consoles to ensure everything has
1633 * reached the console in case of a kernel crash.
1634 */
1635static struct cont {
1636 char buf[LOG_LINE_MAX];
1637 size_t len; /* length == 0 means unused buffer */
1638 size_t cons; /* bytes written to console */
1639 struct task_struct *owner; /* task of first print*/
1640 u64 ts_nsec; /* time of first print */
1641 u8 level; /* log level of first message */
Alex Elder0b90fec2014-08-06 16:09:03 -07001642 u8 facility; /* log facility of first message */
Kay Sieverseab07262012-07-16 18:35:30 -07001643 enum log_flags flags; /* prefix, newline flags */
Kay Sievers084681d2012-06-28 09:38:53 +02001644 bool flushed:1; /* buffer sealed and committed */
1645} cont;
1646
Linus Torvalds5e467652016-10-09 11:53:00 -07001647static void cont_flush(void)
Kay Sievers084681d2012-06-28 09:38:53 +02001648{
1649 if (cont.flushed)
1650 return;
1651 if (cont.len == 0)
1652 return;
Kay Sieverseab07262012-07-16 18:35:30 -07001653 if (cont.cons) {
1654 /*
1655 * If a fragment of this line was directly flushed to the
1656 * console; wait for the console to pick up the rest of the
1657 * line. LOG_NOCONS suppresses a duplicated output.
1658 */
Linus Torvalds5e467652016-10-09 11:53:00 -07001659 log_store(cont.facility, cont.level, cont.flags | LOG_NOCONS,
Kay Sieverseab07262012-07-16 18:35:30 -07001660 cont.ts_nsec, NULL, 0, cont.buf, cont.len);
Kay Sieverseab07262012-07-16 18:35:30 -07001661 cont.flushed = true;
1662 } else {
1663 /*
1664 * If no fragment of this line ever reached the console,
1665 * just submit it to the store and free the buffer.
1666 */
Linus Torvalds5e467652016-10-09 11:53:00 -07001667 log_store(cont.facility, cont.level, cont.flags, 0,
Kay Sieverseab07262012-07-16 18:35:30 -07001668 NULL, 0, cont.buf, cont.len);
1669 cont.len = 0;
1670 }
Kay Sievers084681d2012-06-28 09:38:53 +02001671}
1672
Linus Torvalds5e467652016-10-09 11:53:00 -07001673static bool cont_add(int facility, int level, enum log_flags flags, const char *text, size_t len)
Kay Sievers084681d2012-06-28 09:38:53 +02001674{
1675 if (cont.len && cont.flushed)
1676 return false;
1677
Tejun Heo6fe29352015-06-25 15:01:30 -07001678 /*
1679 * If ext consoles are present, flush and skip in-kernel
1680 * continuation. See nr_ext_console_drivers definition. Also, if
1681 * the line gets too long, split it up in separate records.
1682 */
1683 if (nr_ext_console_drivers || cont.len + len > sizeof(cont.buf)) {
Linus Torvalds5e467652016-10-09 11:53:00 -07001684 cont_flush();
Kay Sievers084681d2012-06-28 09:38:53 +02001685 return false;
1686 }
1687
1688 if (!cont.len) {
1689 cont.facility = facility;
1690 cont.level = level;
1691 cont.owner = current;
1692 cont.ts_nsec = local_clock();
Linus Torvalds5e467652016-10-09 11:53:00 -07001693 cont.flags = flags;
Kay Sievers084681d2012-06-28 09:38:53 +02001694 cont.cons = 0;
1695 cont.flushed = false;
1696 }
1697
1698 memcpy(cont.buf + cont.len, text, len);
1699 cont.len += len;
Kay Sieverseab07262012-07-16 18:35:30 -07001700
Linus Torvalds5e467652016-10-09 11:53:00 -07001701 // The original flags come from the first line,
1702 // but later continuations can add a newline.
1703 if (flags & LOG_NEWLINE) {
1704 cont.flags |= LOG_NEWLINE;
1705 cont_flush();
1706 }
1707
Kay Sieverseab07262012-07-16 18:35:30 -07001708 if (cont.len > (sizeof(cont.buf) * 80) / 100)
Linus Torvalds5e467652016-10-09 11:53:00 -07001709 cont_flush();
Kay Sieverseab07262012-07-16 18:35:30 -07001710
Kay Sievers084681d2012-06-28 09:38:53 +02001711 return true;
1712}
1713
1714static size_t cont_print_text(char *text, size_t size)
1715{
1716 size_t textlen = 0;
1717 size_t len;
1718
Kay Sieverseab07262012-07-16 18:35:30 -07001719 if (cont.cons == 0 && (console_prev & LOG_NEWLINE)) {
Kay Sievers084681d2012-06-28 09:38:53 +02001720 textlen += print_time(cont.ts_nsec, text);
1721 size -= textlen;
1722 }
1723
1724 len = cont.len - cont.cons;
1725 if (len > 0) {
1726 if (len+1 > size)
1727 len = size-1;
1728 memcpy(text + textlen, cont.buf + cont.cons, len);
1729 textlen += len;
1730 cont.cons = cont.len;
1731 }
1732
1733 if (cont.flushed) {
Kay Sieverseab07262012-07-16 18:35:30 -07001734 if (cont.flags & LOG_NEWLINE)
1735 text[textlen++] = '\n';
Kay Sievers084681d2012-06-28 09:38:53 +02001736 /* got everything, release buffer */
1737 cont.len = 0;
1738 }
1739 return textlen;
1740}
1741
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001742static size_t log_output(int facility, int level, enum log_flags lflags, const char *dict, size_t dictlen, char *text, size_t text_len)
1743{
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001744 /*
Linus Torvalds5e467652016-10-09 11:53:00 -07001745 * If an earlier line was buffered, and we're a continuation
1746 * write from the same process, try to add it to the buffer.
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001747 */
1748 if (cont.len) {
Linus Torvalds5e467652016-10-09 11:53:00 -07001749 if (cont.owner == current && (lflags & LOG_CONT)) {
1750 if (cont_add(facility, level, lflags, text, text_len))
1751 return text_len;
1752 }
1753 /* Otherwise, make sure it's flushed */
1754 cont_flush();
1755 }
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001756
Linus Torvalds8835ca52016-10-19 09:11:24 -07001757 /* Skip empty continuation lines that couldn't be added - they just flush */
1758 if (!text_len && (lflags & LOG_CONT))
1759 return 0;
1760
Linus Torvalds5e467652016-10-09 11:53:00 -07001761 /* If it doesn't end in a newline, try to buffer the current line */
1762 if (!(lflags & LOG_NEWLINE)) {
1763 if (cont_add(facility, level, lflags, text, text_len))
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001764 return text_len;
1765 }
1766
Linus Torvalds5e467652016-10-09 11:53:00 -07001767 /* Store it in the record log */
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001768 return log_store(facility, level, lflags, 0, dict, dictlen, text, text_len);
1769}
1770
Kay Sievers7ff95542012-05-03 02:29:13 +02001771asmlinkage int vprintk_emit(int facility, int level,
1772 const char *dict, size_t dictlen,
1773 const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
Sergey Senozhatsky06b031d2016-01-15 16:59:23 -08001775 static bool recursion_bug;
Kay Sievers7ff95542012-05-03 02:29:13 +02001776 static char textbuf[LOG_LINE_MAX];
1777 char *text = textbuf;
Steven Rostedt458df9f2014-06-04 16:11:38 -07001778 size_t text_len = 0;
Kay Sievers5becfb12012-07-09 12:15:42 -07001779 enum log_flags lflags = 0;
Nick Andrewac60ad72008-05-12 21:21:04 +02001780 unsigned long flags;
Ingo Molnar32a76002008-01-25 21:07:58 +01001781 int this_cpu;
Kay Sievers7ff95542012-05-03 02:29:13 +02001782 int printed_len = 0;
Petr Mladekb522dea2016-05-20 17:00:36 -07001783 int nmi_message_lost;
Steven Rostedt458df9f2014-06-04 16:11:38 -07001784 bool in_sched = false;
Jan Kara608873c2014-06-04 16:11:35 -07001785 /* cpu currently holding logbuf_lock in this function */
Alex Elderf0997552014-12-10 15:51:21 -08001786 static unsigned int logbuf_cpu = UINT_MAX;
Jan Kara608873c2014-06-04 16:11:35 -07001787
Joe Perchesa39d4a82014-12-10 15:50:15 -08001788 if (level == LOGLEVEL_SCHED) {
1789 level = LOGLEVEL_DEFAULT;
Steven Rostedt458df9f2014-06-04 16:11:38 -07001790 in_sched = true;
1791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001793 boot_delay_msec(level);
Dave Youngaf913222009-09-22 16:43:33 -07001794 printk_delay();
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001795
Peter Zijlstra1a9a8ae2011-06-07 11:17:30 +02001796 local_irq_save(flags);
Ingo Molnar32a76002008-01-25 21:07:58 +01001797 this_cpu = smp_processor_id();
1798
1799 /*
1800 * Ouch, printk recursed into itself!
1801 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001802 if (unlikely(logbuf_cpu == this_cpu)) {
Ingo Molnar32a76002008-01-25 21:07:58 +01001803 /*
1804 * If a crash is occurring during printk() on this CPU,
1805 * then try to get the crash message out but make sure
1806 * we can't deadlock. Otherwise just return to avoid the
1807 * recursion and return - but flag the recursion so that
1808 * it can be printed at the next appropriate moment:
1809 */
Peter Zijlstra94d24fc2011-06-07 11:17:30 +02001810 if (!oops_in_progress && !lockdep_recursing(current)) {
Sergey Senozhatsky06b031d2016-01-15 16:59:23 -08001811 recursion_bug = true;
Jan Kara5874af22014-08-06 16:09:10 -07001812 local_irq_restore(flags);
1813 return 0;
Ingo Molnar32a76002008-01-25 21:07:58 +01001814 }
1815 zap_locks();
1816 }
1817
Ingo Molnara0f1ccf2006-07-03 00:24:58 -07001818 lockdep_off();
Sergey Senozhatskya8199372016-03-17 14:21:20 -07001819 /* This stops the holder of console_sem just where we want him */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001820 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02001821 logbuf_cpu = this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Patrick Palka000a7d62014-09-09 14:50:48 -07001823 if (unlikely(recursion_bug)) {
Kay Sievers7ff95542012-05-03 02:29:13 +02001824 static const char recursion_msg[] =
1825 "BUG: recent printk recursion!";
1826
Sergey Senozhatsky06b031d2016-01-15 16:59:23 -08001827 recursion_bug = false;
Kay Sievers7ff95542012-05-03 02:29:13 +02001828 /* emit KERN_CRIT message */
Petr Mladek034633c2014-06-04 16:11:33 -07001829 printed_len += log_store(0, 2, LOG_PREFIX|LOG_NEWLINE, 0,
Patrick Palka000a7d62014-09-09 14:50:48 -07001830 NULL, 0, recursion_msg,
1831 strlen(recursion_msg));
Linus Torvalds5fd29d62009-06-16 10:57:02 -07001832 }
1833
Petr Mladekb522dea2016-05-20 17:00:36 -07001834 nmi_message_lost = get_nmi_message_lost();
1835 if (unlikely(nmi_message_lost)) {
1836 text_len = scnprintf(textbuf, sizeof(textbuf),
1837 "BAD LUCK: lost %d message(s) from NMI context!",
1838 nmi_message_lost);
1839 printed_len += log_store(0, 2, LOG_PREFIX|LOG_NEWLINE, 0,
1840 NULL, 0, textbuf, text_len);
1841 }
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 /*
Kay Sievers7ff95542012-05-03 02:29:13 +02001844 * The printf needs to come first; we need the syslog
1845 * prefix which might be passed-in as a parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 */
Markus Trippelsdorf98e35f52014-10-13 15:51:13 -07001847 text_len = vscnprintf(text, sizeof(textbuf), fmt, args);
Nick Andrewac60ad72008-05-12 21:21:04 +02001848
Kay Sievers7ff95542012-05-03 02:29:13 +02001849 /* mark and strip a trailing newline */
Kay Sieversc313af12012-05-14 20:46:27 +02001850 if (text_len && text[text_len-1] == '\n') {
1851 text_len--;
Kay Sievers5becfb12012-07-09 12:15:42 -07001852 lflags |= LOG_NEWLINE;
Kay Sievers7ff95542012-05-03 02:29:13 +02001853 }
Kay Sievers9d90c8d2011-03-13 03:19:51 +01001854
Joe Perches088a52a2012-07-30 14:40:19 -07001855 /* strip kernel syslog prefix and extract log level or control flags */
1856 if (facility == 0) {
Linus Torvalds4bcc5952016-10-08 20:32:40 -07001857 int kern_level;
Joe Perches088a52a2012-07-30 14:40:19 -07001858
Linus Torvalds4bcc5952016-10-08 20:32:40 -07001859 while ((kern_level = printk_get_level(text)) != 0) {
Joe Perches088a52a2012-07-30 14:40:19 -07001860 switch (kern_level) {
1861 case '0' ... '7':
Joe Perchesa39d4a82014-12-10 15:50:15 -08001862 if (level == LOGLEVEL_DEFAULT)
Joe Perches088a52a2012-07-30 14:40:19 -07001863 level = kern_level - '0';
Joe Perchesa39d4a82014-12-10 15:50:15 -08001864 /* fallthrough */
Joe Perches088a52a2012-07-30 14:40:19 -07001865 case 'd': /* KERN_DEFAULT */
1866 lflags |= LOG_PREFIX;
Linus Torvalds4bcc5952016-10-08 20:32:40 -07001867 break;
1868 case 'c': /* KERN_CONT */
1869 lflags |= LOG_CONT;
Joe Perches088a52a2012-07-30 14:40:19 -07001870 }
Linus Torvalds4bcc5952016-10-08 20:32:40 -07001871
1872 text_len -= 2;
1873 text += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001875 }
Nick Andrewac60ad72008-05-12 21:21:04 +02001876
Arve Hjønnevåg813f2672013-06-14 19:54:40 -07001877#ifdef CONFIG_EARLY_PRINTK_DIRECT
1878 printascii(text);
1879#endif
1880
Joe Perchesa39d4a82014-12-10 15:50:15 -08001881 if (level == LOGLEVEL_DEFAULT)
Kay Sieversc313af12012-05-14 20:46:27 +02001882 level = default_message_loglevel;
1883
Kay Sievers5becfb12012-07-09 12:15:42 -07001884 if (dict)
1885 lflags |= LOG_PREFIX|LOG_NEWLINE;
Kay Sievers7ff95542012-05-03 02:29:13 +02001886
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001887 printed_len += log_output(facility, level, lflags, dict, dictlen, text, text_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Jan Kara608873c2014-06-04 16:11:35 -07001889 logbuf_cpu = UINT_MAX;
1890 raw_spin_unlock(&logbuf_lock);
Jan Kara5874af22014-08-06 16:09:10 -07001891 lockdep_on();
1892 local_irq_restore(flags);
Jan Kara939f04b2014-06-04 16:11:37 -07001893
Steven Rostedt458df9f2014-06-04 16:11:38 -07001894 /* If called from the scheduler, we can not call up(). */
Andrew Mortond18bbc22014-07-02 15:22:38 -07001895 if (!in_sched) {
Jan Kara5874af22014-08-06 16:09:10 -07001896 lockdep_off();
1897 /*
Andrew Mortond18bbc22014-07-02 15:22:38 -07001898 * Try to acquire and then immediately release the console
1899 * semaphore. The release will print out buffers and wake up
1900 * /dev/kmsg and syslog() users.
1901 */
Sergey Senozhatskya8199372016-03-17 14:21:20 -07001902 if (console_trylock())
Andrew Mortond18bbc22014-07-02 15:22:38 -07001903 console_unlock();
Jan Kara5874af22014-08-06 16:09:10 -07001904 lockdep_on();
Andrew Mortond18bbc22014-07-02 15:22:38 -07001905 }
Steven Rostedt458df9f2014-06-04 16:11:38 -07001906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 return printed_len;
1908}
Kay Sievers7ff95542012-05-03 02:29:13 +02001909EXPORT_SYMBOL(vprintk_emit);
1910
1911asmlinkage int vprintk(const char *fmt, va_list args)
1912{
Joe Perchesa39d4a82014-12-10 15:50:15 -08001913 return vprintk_emit(0, LOGLEVEL_DEFAULT, NULL, 0, fmt, args);
Kay Sievers7ff95542012-05-03 02:29:13 +02001914}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915EXPORT_SYMBOL(vprintk);
1916
Kay Sievers7ff95542012-05-03 02:29:13 +02001917asmlinkage int printk_emit(int facility, int level,
1918 const char *dict, size_t dictlen,
1919 const char *fmt, ...)
1920{
1921 va_list args;
1922 int r;
1923
1924 va_start(args, fmt);
1925 r = vprintk_emit(facility, level, dict, dictlen, fmt, args);
1926 va_end(args);
1927
1928 return r;
1929}
1930EXPORT_SYMBOL(printk_emit);
1931
Linus Torvaldsa0cba212016-08-09 10:48:18 -07001932int vprintk_default(const char *fmt, va_list args)
Steven Rostedt (Red Hat)afdc34a2014-06-19 17:33:31 -04001933{
1934 int r;
1935
1936#ifdef CONFIG_KGDB_KDB
1937 if (unlikely(kdb_trap_printk)) {
Daniel Thompsonf7d4ca82014-11-07 18:37:57 +00001938 r = vkdb_printf(KDB_MSGSRC_PRINTK, fmt, args);
Steven Rostedt (Red Hat)afdc34a2014-06-19 17:33:31 -04001939 return r;
1940 }
1941#endif
Linus Torvaldsa0cba212016-08-09 10:48:18 -07001942 r = vprintk_emit(0, LOGLEVEL_DEFAULT, NULL, 0, fmt, args);
Steven Rostedt (Red Hat)afdc34a2014-06-19 17:33:31 -04001943
1944 return r;
1945}
1946EXPORT_SYMBOL_GPL(vprintk_default);
1947
Kay Sievers7ff95542012-05-03 02:29:13 +02001948/**
1949 * printk - print a kernel message
1950 * @fmt: format string
1951 *
1952 * This is printk(). It can be called from any context. We want it to work.
1953 *
1954 * We try to grab the console_lock. If we succeed, it's easy - we log the
1955 * output and call the console drivers. If we fail to get the semaphore, we
1956 * place the output into the log buffer and return. The current holder of
1957 * the console_sem will notice the new output in console_unlock(); and will
1958 * send it to the consoles before releasing the lock.
1959 *
1960 * One effect of this deferred printing is that code which calls printk() and
1961 * then changes console_loglevel may break. This is because console_loglevel
1962 * is inspected when the actual printing occurs.
1963 *
1964 * See also:
1965 * printf(3)
1966 *
1967 * See the vsnprintf() documentation for format string extensions over C99.
1968 */
Andi Kleen722a9f92014-05-02 00:44:38 +02001969asmlinkage __visible int printk(const char *fmt, ...)
Kay Sievers7ff95542012-05-03 02:29:13 +02001970{
1971 va_list args;
1972 int r;
1973
Kay Sievers7ff95542012-05-03 02:29:13 +02001974 va_start(args, fmt);
Linus Torvaldsa0cba212016-08-09 10:48:18 -07001975 r = vprintk_func(fmt, args);
Kay Sievers7ff95542012-05-03 02:29:13 +02001976 va_end(args);
1977
1978 return r;
1979}
1980EXPORT_SYMBOL(printk);
Kay Sievers7f3a7812012-05-09 01:37:51 +02001981
Kay Sievers96efedf2012-07-16 18:35:29 -07001982#else /* CONFIG_PRINTK */
Matt Mackalld59745c2005-05-01 08:59:02 -07001983
Kay Sievers70498252012-07-16 18:35:29 -07001984#define LOG_LINE_MAX 0
1985#define PREFIX_MAX 0
Alex Elder249771b2014-08-06 16:09:08 -07001986
Kay Sievers96efedf2012-07-16 18:35:29 -07001987static u64 syslog_seq;
1988static u32 syslog_idx;
Kay Sieverseab07262012-07-16 18:35:30 -07001989static u64 console_seq;
1990static u32 console_idx;
Kay Sievers96efedf2012-07-16 18:35:29 -07001991static enum log_flags syslog_prev;
1992static u64 log_first_seq;
1993static u32 log_first_idx;
1994static u64 log_next_seq;
Kay Sieverseab07262012-07-16 18:35:30 -07001995static enum log_flags console_prev;
Kay Sievers084681d2012-06-28 09:38:53 +02001996static struct cont {
1997 size_t len;
1998 size_t cons;
1999 u8 level;
2000 bool flushed:1;
2001} cont;
Tejun Heo6fe29352015-06-25 15:01:30 -07002002static char *log_text(const struct printk_log *msg) { return NULL; }
2003static char *log_dict(const struct printk_log *msg) { return NULL; }
Joe Perches62e32ac2013-07-31 13:53:47 -07002004static struct printk_log *log_from_idx(u32 idx) { return NULL; }
Kay Sievers7f3a7812012-05-09 01:37:51 +02002005static u32 log_next(u32 idx) { return 0; }
Tejun Heo6fe29352015-06-25 15:01:30 -07002006static ssize_t msg_print_ext_header(char *buf, size_t size,
2007 struct printk_log *msg, u64 seq,
2008 enum log_flags prev_flags) { return 0; }
2009static ssize_t msg_print_ext_body(char *buf, size_t size,
2010 char *dict, size_t dict_len,
2011 char *text, size_t text_len) { return 0; }
2012static void call_console_drivers(int level,
2013 const char *ext_text, size_t ext_len,
2014 const char *text, size_t len) {}
Joe Perches62e32ac2013-07-31 13:53:47 -07002015static size_t msg_print_text(const struct printk_log *msg, enum log_flags prev,
Kay Sievers5becfb12012-07-09 12:15:42 -07002016 bool syslog, char *buf, size_t size) { return 0; }
Kay Sievers084681d2012-06-28 09:38:53 +02002017static size_t cont_print_text(char *text, size_t size) { return 0; }
Sergey Senozhatskycf775442016-08-02 14:03:56 -07002018static bool suppress_message_printing(int level) { return false; }
Matt Mackalld59745c2005-05-01 08:59:02 -07002019
Steven Rostedt (Red Hat)04b74b22014-11-21 09:16:58 -05002020/* Still needs to be defined for users */
2021DEFINE_PER_CPU(printk_func_t, printk_func);
2022
Kay Sievers7f3a7812012-05-09 01:37:51 +02002023#endif /* CONFIG_PRINTK */
Matt Mackalld59745c2005-05-01 08:59:02 -07002024
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002025#ifdef CONFIG_EARLY_PRINTK
2026struct console *early_console;
2027
Andi Kleen722a9f92014-05-02 00:44:38 +02002028asmlinkage __visible void early_printk(const char *fmt, ...)
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002029{
2030 va_list ap;
Joe Perches1dc62442014-12-10 15:45:53 -08002031 char buf[512];
2032 int n;
2033
2034 if (!early_console)
2035 return;
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002036
2037 va_start(ap, fmt);
Joe Perches1dc62442014-12-10 15:45:53 -08002038 n = vscnprintf(buf, sizeof(buf), fmt, ap);
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002039 va_end(ap);
Joe Perches1dc62442014-12-10 15:45:53 -08002040
2041 early_console->write(early_console, buf, n);
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002042}
2043#endif
2044
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002045static int __add_preferred_console(char *name, int idx, char *options,
2046 char *brl_options)
2047{
2048 struct console_cmdline *c;
2049 int i;
2050
2051 /*
2052 * See if this tty is not yet registered, and
2053 * if we have a slot free.
2054 */
Joe Perches23475402013-07-31 13:53:46 -07002055 for (i = 0, c = console_cmdline;
2056 i < MAX_CMDLINECONSOLES && c->name[0];
2057 i++, c++) {
2058 if (strcmp(c->name, name) == 0 && c->index == idx) {
2059 if (!brl_options)
2060 selected_console = i;
2061 return 0;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002062 }
Joe Perches23475402013-07-31 13:53:46 -07002063 }
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002064 if (i == MAX_CMDLINECONSOLES)
2065 return -E2BIG;
2066 if (!brl_options)
2067 selected_console = i;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002068 strlcpy(c->name, name, sizeof(c->name));
2069 c->options = options;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002070 braille_set_options(c, brl_options);
2071
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002072 c->index = idx;
2073 return 0;
2074}
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002075/*
Alex Elder0b90fec2014-08-06 16:09:03 -07002076 * Set up a console. Called via do_early_param() in init/main.c
2077 * for each "console=" parameter in the boot command line.
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002078 */
2079static int __init console_setup(char *str)
2080{
Alex Elder0b90fec2014-08-06 16:09:03 -07002081 char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for "ttyS" */
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002082 char *s, *options, *brl_options = NULL;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002083 int idx;
2084
Joe Perchesbbeddf52013-07-31 13:53:45 -07002085 if (_braille_console_setup(&str, &brl_options))
2086 return 1;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002087
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002088 /*
2089 * Decode str into name, index, options.
2090 */
2091 if (str[0] >= '0' && str[0] <= '9') {
Yinghai Lueaa944a2007-07-15 23:37:27 -07002092 strcpy(buf, "ttyS");
2093 strncpy(buf + 4, str, sizeof(buf) - 5);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002094 } else {
Yinghai Lueaa944a2007-07-15 23:37:27 -07002095 strncpy(buf, str, sizeof(buf) - 1);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002096 }
Yinghai Lueaa944a2007-07-15 23:37:27 -07002097 buf[sizeof(buf) - 1] = 0;
Alex Elder249771b2014-08-06 16:09:08 -07002098 options = strchr(str, ',');
2099 if (options)
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002100 *(options++) = 0;
2101#ifdef __sparc__
2102 if (!strcmp(str, "ttya"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07002103 strcpy(buf, "ttyS0");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002104 if (!strcmp(str, "ttyb"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07002105 strcpy(buf, "ttyS1");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002106#endif
Yinghai Lueaa944a2007-07-15 23:37:27 -07002107 for (s = buf; *s; s++)
Alex Elder249771b2014-08-06 16:09:08 -07002108 if (isdigit(*s) || *s == ',')
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002109 break;
2110 idx = simple_strtoul(s, NULL, 10);
2111 *s = 0;
2112
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002113 __add_preferred_console(buf, idx, options, brl_options);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01002114 console_set_on_cmdline = 1;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002115 return 1;
2116}
2117__setup("console=", console_setup);
2118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119/**
Matt Mackall3c0547b2005-05-16 21:53:47 -07002120 * add_preferred_console - add a device to the list of preferred consoles.
Martin Waitzddad86c2005-11-13 16:08:14 -08002121 * @name: device name
2122 * @idx: device index
2123 * @options: options for this console
Matt Mackall3c0547b2005-05-16 21:53:47 -07002124 *
2125 * The last preferred console added will be used for kernel messages
2126 * and stdin/out/err for init. Normally this is used by console_setup
2127 * above to handle user-supplied console arguments; however it can also
2128 * be used by arch-specific code either to override the user or more
2129 * commonly to provide a default console (ie from PROM variables) when
2130 * the user has not supplied one.
2131 */
David S. Millerfb445ee2007-12-29 01:19:49 -08002132int add_preferred_console(char *name, int idx, char *options)
Matt Mackall3c0547b2005-05-16 21:53:47 -07002133{
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002134 return __add_preferred_console(name, idx, options, NULL);
Matt Mackall3c0547b2005-05-16 21:53:47 -07002135}
2136
Neil Zhangd25d9fe2014-08-06 16:09:12 -07002137bool console_suspend_enabled = true;
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002138EXPORT_SYMBOL(console_suspend_enabled);
2139
2140static int __init console_suspend_disable(char *str)
2141{
Neil Zhangd25d9fe2014-08-06 16:09:12 -07002142 console_suspend_enabled = false;
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002143 return 1;
2144}
2145__setup("no_console_suspend", console_suspend_disable);
Yanmin Zhang134620f2011-10-31 17:11:27 -07002146module_param_named(console_suspend, console_suspend_enabled,
2147 bool, S_IRUGO | S_IWUSR);
2148MODULE_PARM_DESC(console_suspend, "suspend console during suspend"
2149 " and hibernate operations");
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002150
Matt Mackall3c0547b2005-05-16 21:53:47 -07002151/**
Linus Torvalds557240b2006-06-19 18:16:01 -07002152 * suspend_console - suspend the console subsystem
2153 *
2154 * This disables printk() while we go into suspend states
2155 */
2156void suspend_console(void)
2157{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002158 if (!console_suspend_enabled)
2159 return;
Pavel Machek0d630812008-07-23 21:28:32 -07002160 printk("Suspending console(s) (use no_console_suspend to debug)\n");
Torben Hohnac751ef2011-01-25 15:07:35 -08002161 console_lock();
Linus Torvalds557240b2006-06-19 18:16:01 -07002162 console_suspended = 1;
Jan Karabd8d7cf2014-06-04 16:11:36 -07002163 up_console_sem();
Linus Torvalds557240b2006-06-19 18:16:01 -07002164}
2165
2166void resume_console(void)
2167{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002168 if (!console_suspend_enabled)
2169 return;
Jan Karabd8d7cf2014-06-04 16:11:36 -07002170 down_console_sem();
Linus Torvalds557240b2006-06-19 18:16:01 -07002171 console_suspended = 0;
Torben Hohnac751ef2011-01-25 15:07:35 -08002172 console_unlock();
Linus Torvalds557240b2006-06-19 18:16:01 -07002173}
2174
2175/**
Kevin Cernekee034260d2010-06-03 22:11:25 -07002176 * console_cpu_notify - print deferred console messages after CPU hotplug
2177 * @self: notifier struct
2178 * @action: CPU hotplug event
2179 * @hcpu: unused
2180 *
2181 * If printk() is called from a CPU that is not online yet, the messages
2182 * will be spooled but will not show up on the console. This function is
2183 * called when a new CPU comes online (or fails to come up), and ensures
2184 * that any such output gets printed.
2185 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04002186static int console_cpu_notify(struct notifier_block *self,
Kevin Cernekee034260d2010-06-03 22:11:25 -07002187 unsigned long action, void *hcpu)
2188{
2189 switch (action) {
2190 case CPU_ONLINE:
2191 case CPU_DEAD:
Kevin Cernekee034260d2010-06-03 22:11:25 -07002192 case CPU_DOWN_FAILED:
2193 case CPU_UP_CANCELED:
Torben Hohnac751ef2011-01-25 15:07:35 -08002194 console_lock();
2195 console_unlock();
Kevin Cernekee034260d2010-06-03 22:11:25 -07002196 }
2197 return NOTIFY_OK;
2198}
2199
2200/**
Torben Hohnac751ef2011-01-25 15:07:35 -08002201 * console_lock - lock the console system for exclusive use.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002203 * Acquires a lock which guarantees that the caller has
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 * exclusive access to the console system and the console_drivers list.
2205 *
2206 * Can sleep, returns nothing.
2207 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002208void console_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
Daniel Vetter6b898c02012-09-17 23:03:31 +00002210 might_sleep();
2211
Jan Karabd8d7cf2014-06-04 16:11:36 -07002212 down_console_sem();
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01002213 if (console_suspended)
2214 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 console_locked = 1;
2216 console_may_schedule = 1;
2217}
Torben Hohnac751ef2011-01-25 15:07:35 -08002218EXPORT_SYMBOL(console_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Torben Hohnac751ef2011-01-25 15:07:35 -08002220/**
2221 * console_trylock - try to lock the console system for exclusive use.
2222 *
Alex Elder0b90fec2014-08-06 16:09:03 -07002223 * Try to acquire a lock which guarantees that the caller has exclusive
2224 * access to the console system and the console_drivers list.
Torben Hohnac751ef2011-01-25 15:07:35 -08002225 *
2226 * returns 1 on success, and 0 on failure to acquire the lock.
2227 */
2228int console_trylock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229{
Jan Karabd8d7cf2014-06-04 16:11:36 -07002230 if (down_trylock_console_sem())
Torben Hohnac751ef2011-01-25 15:07:35 -08002231 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01002232 if (console_suspended) {
Jan Karabd8d7cf2014-06-04 16:11:36 -07002233 up_console_sem();
Torben Hohnac751ef2011-01-25 15:07:35 -08002234 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01002235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 console_locked = 1;
Sergey Senozhatsky6b97a202016-03-17 14:21:23 -07002237 /*
2238 * When PREEMPT_COUNT disabled we can't reliably detect if it's
2239 * safe to schedule (e.g. calling printk while holding a spin_lock),
2240 * because preempt_disable()/preempt_enable() are just barriers there
2241 * and preempt_count() is always 0.
2242 *
2243 * RCU read sections have a separate preemption counter when
2244 * PREEMPT_RCU enabled thus we must take extra care and check
2245 * rcu_preempt_depth(), otherwise RCU read sections modify
2246 * preempt_count().
2247 */
2248 console_may_schedule = !oops_in_progress &&
2249 preemptible() &&
2250 !rcu_preempt_depth();
Torben Hohnac751ef2011-01-25 15:07:35 -08002251 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252}
Torben Hohnac751ef2011-01-25 15:07:35 -08002253EXPORT_SYMBOL(console_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255int is_console_locked(void)
2256{
2257 return console_locked;
2258}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002260/*
2261 * Check if we have any console that is capable of printing while cpu is
2262 * booting or shutting down. Requires console_sem.
2263 */
2264static int have_callable_console(void)
2265{
2266 struct console *con;
2267
2268 for_each_console(con)
Sergey Senozhatskyadaf6592016-03-17 14:21:27 -07002269 if ((con->flags & CON_ENABLED) &&
2270 (con->flags & CON_ANYTIME))
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002271 return 1;
2272
2273 return 0;
2274}
2275
2276/*
2277 * Can we actually use the console at this time on this cpu?
2278 *
2279 * Console drivers may assume that per-cpu resources have been allocated. So
2280 * unless they're explicitly marked as being able to cope (CON_ANYTIME) don't
2281 * call them until this CPU is officially up.
2282 */
2283static inline int can_use_console(void)
2284{
2285 return cpu_online(raw_smp_processor_id()) || have_callable_console();
2286}
2287
Kay Sieverseab07262012-07-16 18:35:30 -07002288static void console_cont_flush(char *text, size_t size)
2289{
2290 unsigned long flags;
2291 size_t len;
2292
2293 raw_spin_lock_irqsave(&logbuf_lock, flags);
2294
2295 if (!cont.len)
2296 goto out;
2297
Sergey Senozhatskycf775442016-08-02 14:03:56 -07002298 if (suppress_message_printing(cont.level)) {
2299 cont.cons = cont.len;
2300 if (cont.flushed)
2301 cont.len = 0;
2302 goto out;
2303 }
2304
Kay Sieverseab07262012-07-16 18:35:30 -07002305 /*
2306 * We still queue earlier records, likely because the console was
2307 * busy. The earlier ones need to be printed before this one, we
2308 * did not flush any fragment so far, so just let it queue up.
2309 */
2310 if (console_seq < log_next_seq && !cont.cons)
2311 goto out;
2312
2313 len = cont_print_text(text, size);
2314 raw_spin_unlock(&logbuf_lock);
2315 stop_critical_timings();
Tejun Heo6fe29352015-06-25 15:01:30 -07002316 call_console_drivers(cont.level, NULL, 0, text, len);
Kay Sieverseab07262012-07-16 18:35:30 -07002317 start_critical_timings();
2318 local_irq_restore(flags);
2319 return;
2320out:
2321 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2322}
Kay Sievers7ff95542012-05-03 02:29:13 +02002323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324/**
Torben Hohnac751ef2011-01-25 15:07:35 -08002325 * console_unlock - unlock the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002327 * Releases the console_lock which the caller holds on the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 * and the console driver list.
2329 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002330 * While the console_lock was held, console output may have been buffered
2331 * by printk(). If this is the case, console_unlock(); emits
2332 * the output prior to releasing the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 *
Kay Sievers7f3a7812012-05-09 01:37:51 +02002334 * If there is output waiting, we wake /dev/kmsg and syslog() users.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002336 * console_unlock(); may be called from any context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002338void console_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339{
Tejun Heo6fe29352015-06-25 15:01:30 -07002340 static char ext_text[CONSOLE_EXT_LOG_MAX];
Kay Sievers70498252012-07-16 18:35:29 -07002341 static char text[LOG_LINE_MAX + PREFIX_MAX];
Kay Sievers7ff95542012-05-03 02:29:13 +02002342 static u64 seen_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 unsigned long flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02002344 bool wake_klogd = false;
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002345 bool do_cond_resched, retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
Linus Torvalds557240b2006-06-19 18:16:01 -07002347 if (console_suspended) {
Jan Karabd8d7cf2014-06-04 16:11:36 -07002348 up_console_sem();
Linus Torvalds557240b2006-06-19 18:16:01 -07002349 return;
2350 }
Antonino A. Daplas78944e52006-08-05 12:14:16 -07002351
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002352 /*
Petr Mladekb5fa6d92017-03-24 17:14:05 +01002353 * Console drivers are called with interrupts disabled, so
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002354 * @console_may_schedule should be cleared before; however, we may
2355 * end up dumping a lot of lines, for example, if called from
2356 * console registration path, and should invoke cond_resched()
2357 * between lines if allowable. Not doing so can cause a very long
2358 * scheduling stall on a slow console leading to RCU stall and
2359 * softlockup warnings which exacerbate the issue with more
2360 * messages practically incapacitating the system.
Petr Mladekb5fa6d92017-03-24 17:14:05 +01002361 *
2362 * console_trylock() is not able to detect the preemptive
2363 * context reliably. Therefore the value must be stored before
2364 * and cleared after the the "again" goto label.
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002365 */
2366 do_cond_resched = console_may_schedule;
Petr Mladekb5fa6d92017-03-24 17:14:05 +01002367again:
Antonino A. Daplas78944e52006-08-05 12:14:16 -07002368 console_may_schedule = 0;
2369
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002370 /*
2371 * We released the console_sem lock, so we need to recheck if
2372 * cpu is online and (if not) is there at least one CON_ANYTIME
2373 * console.
2374 */
2375 if (!can_use_console()) {
2376 console_locked = 0;
2377 up_console_sem();
2378 return;
2379 }
2380
Kay Sievers084681d2012-06-28 09:38:53 +02002381 /* flush buffered message fragment immediately to console */
Kay Sieverseab07262012-07-16 18:35:30 -07002382 console_cont_flush(text, sizeof(text));
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002383
Kay Sievers7ff95542012-05-03 02:29:13 +02002384 for (;;) {
Joe Perches62e32ac2013-07-31 13:53:47 -07002385 struct printk_log *msg;
Tejun Heo6fe29352015-06-25 15:01:30 -07002386 size_t ext_len = 0;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02002387 size_t len;
Kay Sievers7ff95542012-05-03 02:29:13 +02002388 int level;
2389
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002390 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02002391 if (seen_seq != log_next_seq) {
2392 wake_klogd = true;
2393 seen_seq = log_next_seq;
2394 }
2395
2396 if (console_seq < log_first_seq) {
Will Deacon84b5ec82014-06-04 16:11:45 -07002397 len = sprintf(text, "** %u printk messages dropped ** ",
2398 (unsigned)(log_first_seq - console_seq));
2399
Kay Sievers7ff95542012-05-03 02:29:13 +02002400 /* messages are gone, move to first one */
2401 console_seq = log_first_seq;
2402 console_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002403 console_prev = 0;
Will Deacon84b5ec82014-06-04 16:11:45 -07002404 } else {
2405 len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02002406 }
Kay Sievers084681d2012-06-28 09:38:53 +02002407skip:
Kay Sievers7ff95542012-05-03 02:29:13 +02002408 if (console_seq == log_next_seq)
2409 break;
2410
2411 msg = log_from_idx(console_idx);
Sergey Senozhatskycf775442016-08-02 14:03:56 -07002412 level = msg->level;
2413 if ((msg->flags & LOG_NOCONS) ||
2414 suppress_message_printing(level)) {
Kay Sievers084681d2012-06-28 09:38:53 +02002415 /*
2416 * Skip record we have buffered and already printed
Sergey Senozhatskycf775442016-08-02 14:03:56 -07002417 * directly to the console when we received it, and
2418 * record that has level above the console loglevel.
Kay Sievers084681d2012-06-28 09:38:53 +02002419 */
2420 console_idx = log_next(console_idx);
2421 console_seq++;
Kay Sievers68b65072012-07-06 09:50:09 -07002422 /*
2423 * We will get here again when we register a new
2424 * CON_PRINTBUFFER console. Clear the flag so we
2425 * will properly dump everything later.
2426 */
2427 msg->flags &= ~LOG_NOCONS;
Kay Sieverseab07262012-07-16 18:35:30 -07002428 console_prev = msg->flags;
Kay Sievers084681d2012-06-28 09:38:53 +02002429 goto skip;
2430 }
Kay Sievers649e6ee2012-05-10 04:30:45 +02002431
Will Deacon84b5ec82014-06-04 16:11:45 -07002432 len += msg_print_text(msg, console_prev, false,
2433 text + len, sizeof(text) - len);
Tejun Heo6fe29352015-06-25 15:01:30 -07002434 if (nr_ext_console_drivers) {
2435 ext_len = msg_print_ext_header(ext_text,
2436 sizeof(ext_text),
2437 msg, console_seq, console_prev);
2438 ext_len += msg_print_ext_body(ext_text + ext_len,
2439 sizeof(ext_text) - ext_len,
2440 log_dict(msg), msg->dict_len,
2441 log_text(msg), msg->text_len);
2442 }
Kay Sievers7ff95542012-05-03 02:29:13 +02002443 console_idx = log_next(console_idx);
2444 console_seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07002445 console_prev = msg->flags;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002446 raw_spin_unlock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02002447
Steven Rostedt81d68a92008-05-12 21:20:42 +02002448 stop_critical_timings(); /* don't trace print latency */
Tejun Heo6fe29352015-06-25 15:01:30 -07002449 call_console_drivers(level, ext_text, ext_len, text, len);
Steven Rostedt81d68a92008-05-12 21:20:42 +02002450 start_critical_timings();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 local_irq_restore(flags);
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002452
2453 if (do_cond_resched)
2454 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 }
2456 console_locked = 0;
Feng Tangfe3d8ad2011-03-22 16:34:21 -07002457
2458 /* Release the exclusive_console once it is used */
2459 if (unlikely(exclusive_console))
2460 exclusive_console = NULL;
2461
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002462 raw_spin_unlock(&logbuf_lock);
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002463
Jan Karabd8d7cf2014-06-04 16:11:36 -07002464 up_console_sem();
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002465
2466 /*
2467 * Someone could have filled up the buffer again, so re-check if there's
2468 * something to flush. In case we cannot trylock the console_sem again,
2469 * there's a new owner and the console_unlock() from them will do the
2470 * flush, no worries.
2471 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002472 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02002473 retry = console_seq != log_next_seq;
Peter Zijlstra09dc3cf2011-12-08 14:34:13 -08002474 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2475
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002476 if (retry && console_trylock())
2477 goto again;
2478
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08002479 if (wake_klogd)
2480 wake_up_klogd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481}
Torben Hohnac751ef2011-01-25 15:07:35 -08002482EXPORT_SYMBOL(console_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Martin Waitzddad86c2005-11-13 16:08:14 -08002484/**
2485 * console_conditional_schedule - yield the CPU if required
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 *
2487 * If the console code is currently allowed to sleep, and
2488 * if this CPU should yield the CPU to another task, do
2489 * so here.
2490 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002491 * Must be called within console_lock();.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 */
2493void __sched console_conditional_schedule(void)
2494{
2495 if (console_may_schedule)
2496 cond_resched();
2497}
2498EXPORT_SYMBOL(console_conditional_schedule);
2499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500void console_unblank(void)
2501{
2502 struct console *c;
2503
2504 /*
2505 * console_unblank can no longer be called in interrupt context unless
2506 * oops_in_progress is set to 1..
2507 */
2508 if (oops_in_progress) {
Jan Karabd8d7cf2014-06-04 16:11:36 -07002509 if (down_trylock_console_sem() != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 return;
2511 } else
Torben Hohnac751ef2011-01-25 15:07:35 -08002512 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
2514 console_locked = 1;
2515 console_may_schedule = 0;
Robin Getz4d091612009-07-01 21:08:37 -04002516 for_each_console(c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 if ((c->flags & CON_ENABLED) && c->unblank)
2518 c->unblank();
Torben Hohnac751ef2011-01-25 15:07:35 -08002519 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002522/**
2523 * console_flush_on_panic - flush console content on panic
2524 *
2525 * Immediately output all pending messages no matter what.
2526 */
2527void console_flush_on_panic(void)
2528{
2529 /*
2530 * If someone else is holding the console lock, trylock will fail
2531 * and may_schedule may be set. Ignore and proceed to unlock so
2532 * that messages are flushed out. As this can be called from any
2533 * context and we don't want to get preempted while flushing,
2534 * ensure may_schedule is cleared.
2535 */
2536 console_trylock();
2537 console_may_schedule = 0;
2538 console_unlock();
2539}
2540
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541/*
2542 * Return the console tty driver structure and its associated index
2543 */
2544struct tty_driver *console_device(int *index)
2545{
2546 struct console *c;
2547 struct tty_driver *driver = NULL;
2548
Torben Hohnac751ef2011-01-25 15:07:35 -08002549 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04002550 for_each_console(c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 if (!c->device)
2552 continue;
2553 driver = c->device(c, index);
2554 if (driver)
2555 break;
2556 }
Torben Hohnac751ef2011-01-25 15:07:35 -08002557 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 return driver;
2559}
2560
2561/*
2562 * Prevent further output on the passed console device so that (for example)
2563 * serial drivers can disable console output before suspending a port, and can
2564 * re-enable output afterwards.
2565 */
2566void console_stop(struct console *console)
2567{
Torben Hohnac751ef2011-01-25 15:07:35 -08002568 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 console->flags &= ~CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002570 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571}
2572EXPORT_SYMBOL(console_stop);
2573
2574void console_start(struct console *console)
2575{
Torben Hohnac751ef2011-01-25 15:07:35 -08002576 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 console->flags |= CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002578 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579}
2580EXPORT_SYMBOL(console_start);
2581
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002582static int __read_mostly keep_bootcon;
2583
2584static int __init keep_bootcon_setup(char *str)
2585{
2586 keep_bootcon = 1;
Andrew Morton27083ba2013-11-12 15:08:50 -08002587 pr_info("debug: skip boot console de-registration.\n");
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002588
2589 return 0;
2590}
2591
2592early_param("keep_bootcon", keep_bootcon_setup);
2593
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594/*
2595 * The console driver calls this routine during kernel initialization
2596 * to register the console printing procedure with printk() and to
2597 * print any messages that were printed by the kernel before the
2598 * console driver was initialized.
Robin Getz4d091612009-07-01 21:08:37 -04002599 *
2600 * This can happen pretty early during the boot process (because of
2601 * early_printk) - sometimes before setup_arch() completes - be careful
2602 * of what kernel features are used - they may not be initialised yet.
2603 *
2604 * There are two types of consoles - bootconsoles (early_printk) and
2605 * "real" consoles (everything which is not a bootconsole) which are
2606 * handled differently.
2607 * - Any number of bootconsoles can be registered at any time.
2608 * - As soon as a "real" console is registered, all bootconsoles
2609 * will be unregistered automatically.
2610 * - Once a "real" console is registered, any attempt to register a
2611 * bootconsoles will be rejected
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 */
Robin Getz4d091612009-07-01 21:08:37 -04002613void register_console(struct console *newcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614{
Jesper Juhl40dc5652005-10-30 15:02:46 -08002615 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 unsigned long flags;
Robin Getz4d091612009-07-01 21:08:37 -04002617 struct console *bcon = NULL;
Joe Perches23475402013-07-31 13:53:46 -07002618 struct console_cmdline *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
Andreas Bießmann16cf48a2013-08-02 12:23:34 +02002620 if (console_drivers)
2621 for_each_console(bcon)
2622 if (WARN(bcon == newcon,
2623 "console '%s%d' already registered\n",
2624 bcon->name, bcon->index))
2625 return;
2626
Robin Getz4d091612009-07-01 21:08:37 -04002627 /*
2628 * before we register a new CON_BOOT console, make sure we don't
2629 * already have a valid console
2630 */
2631 if (console_drivers && newcon->flags & CON_BOOT) {
2632 /* find the last or real console */
2633 for_each_console(bcon) {
2634 if (!(bcon->flags & CON_BOOT)) {
Andrew Morton27083ba2013-11-12 15:08:50 -08002635 pr_info("Too late to register bootconsole %s%d\n",
Robin Getz4d091612009-07-01 21:08:37 -04002636 newcon->name, newcon->index);
2637 return;
2638 }
2639 }
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002640 }
2641
Robin Getz4d091612009-07-01 21:08:37 -04002642 if (console_drivers && console_drivers->flags & CON_BOOT)
2643 bcon = console_drivers;
2644
2645 if (preferred_console < 0 || bcon || !console_drivers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 preferred_console = selected_console;
2647
2648 /*
2649 * See if we want to use this console driver. If we
2650 * didn't select a console we take the first one
2651 * that registers here.
2652 */
Hans de Goedec6c7d832016-11-10 10:46:26 -08002653 if (preferred_console < 0) {
Robin Getz4d091612009-07-01 21:08:37 -04002654 if (newcon->index < 0)
2655 newcon->index = 0;
2656 if (newcon->setup == NULL ||
2657 newcon->setup(newcon, NULL) == 0) {
2658 newcon->flags |= CON_ENABLED;
2659 if (newcon->device) {
2660 newcon->flags |= CON_CONSDEV;
Jan Kiszkacd3a1b82008-05-12 21:21:04 +02002661 preferred_console = 0;
2662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 }
2664 }
2665
2666 /*
2667 * See if this console matches one we selected on
2668 * the command line.
2669 */
Joe Perches23475402013-07-31 13:53:46 -07002670 for (i = 0, c = console_cmdline;
2671 i < MAX_CMDLINECONSOLES && c->name[0];
2672 i++, c++) {
Peter Hurleyc7cef0a2015-03-09 16:27:12 -04002673 if (!newcon->match ||
2674 newcon->match(newcon, c->name, c->index, c->options) != 0) {
2675 /* default matching */
2676 BUILD_BUG_ON(sizeof(c->name) != sizeof(newcon->name));
2677 if (strcmp(c->name, newcon->name) != 0)
2678 continue;
2679 if (newcon->index >= 0 &&
2680 newcon->index != c->index)
2681 continue;
2682 if (newcon->index < 0)
2683 newcon->index = c->index;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002684
Peter Hurleyc7cef0a2015-03-09 16:27:12 -04002685 if (_braille_register_console(newcon, c))
2686 return;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002687
Peter Hurleyc7cef0a2015-03-09 16:27:12 -04002688 if (newcon->setup &&
2689 newcon->setup(newcon, c->options) != 0)
2690 break;
2691 }
2692
Robin Getz4d091612009-07-01 21:08:37 -04002693 newcon->flags |= CON_ENABLED;
Greg Edwardsab4af032005-06-23 00:09:05 -07002694 if (i == selected_console) {
Robin Getz4d091612009-07-01 21:08:37 -04002695 newcon->flags |= CON_CONSDEV;
Greg Edwardsab4af032005-06-23 00:09:05 -07002696 preferred_console = selected_console;
2697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 break;
2699 }
2700
Robin Getz4d091612009-07-01 21:08:37 -04002701 if (!(newcon->flags & CON_ENABLED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 return;
2703
Robin Getz8259cf42009-07-09 13:08:37 -04002704 /*
2705 * If we have a bootconsole, and are switching to a real console,
2706 * don't print everything out again, since when the boot console, and
2707 * the real console are the same physical device, it's annoying to
2708 * see the beginning boot messages twice
2709 */
2710 if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
Robin Getz4d091612009-07-01 21:08:37 -04002711 newcon->flags &= ~CON_PRINTBUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
2713 /*
2714 * Put this console in the list - keep the
2715 * preferred driver at the head of the list.
2716 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002717 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04002718 if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) {
2719 newcon->next = console_drivers;
2720 console_drivers = newcon;
2721 if (newcon->next)
2722 newcon->next->flags &= ~CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 } else {
Robin Getz4d091612009-07-01 21:08:37 -04002724 newcon->next = console_drivers->next;
2725 console_drivers->next = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 }
Tejun Heo6fe29352015-06-25 15:01:30 -07002727
2728 if (newcon->flags & CON_EXTENDED)
2729 if (!nr_ext_console_drivers++)
2730 pr_info("printk: continuation disabled due to ext consoles, expect more fragments in /dev/kmsg\n");
2731
Robin Getz4d091612009-07-01 21:08:37 -04002732 if (newcon->flags & CON_PRINTBUFFER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 /*
Torben Hohnac751ef2011-01-25 15:07:35 -08002734 * console_unlock(); will print out the buffered messages
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 * for us.
2736 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002737 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02002738 console_seq = syslog_seq;
2739 console_idx = syslog_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002740 console_prev = syslog_prev;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002741 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Feng Tangfe3d8ad2011-03-22 16:34:21 -07002742 /*
2743 * We're about to replay the log buffer. Only do this to the
2744 * just-registered console to avoid excessive message spam to
2745 * the already-registered consoles.
2746 */
2747 exclusive_console = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 }
Torben Hohnac751ef2011-01-25 15:07:35 -08002749 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002750 console_sysfs_notify();
Robin Getz8259cf42009-07-09 13:08:37 -04002751
2752 /*
2753 * By unregistering the bootconsoles after we enable the real console
2754 * we get the "console xxx enabled" message on all the consoles -
2755 * boot consoles, real consoles, etc - this is to ensure that end
2756 * users know there might be something in the kernel's log buffer that
2757 * went to the bootconsole (that they do not see on the real console)
2758 */
Andrew Morton27083ba2013-11-12 15:08:50 -08002759 pr_info("%sconsole [%s%d] enabled\n",
Kees Cook6b802392013-11-12 15:08:49 -08002760 (newcon->flags & CON_BOOT) ? "boot" : "" ,
2761 newcon->name, newcon->index);
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002762 if (bcon &&
2763 ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) &&
2764 !keep_bootcon) {
Kees Cook6b802392013-11-12 15:08:49 -08002765 /* We need to iterate through all boot consoles, to make
2766 * sure we print everything out, before we unregister them.
Robin Getz8259cf42009-07-09 13:08:37 -04002767 */
Robin Getz8259cf42009-07-09 13:08:37 -04002768 for_each_console(bcon)
2769 if (bcon->flags & CON_BOOT)
2770 unregister_console(bcon);
Robin Getz8259cf42009-07-09 13:08:37 -04002771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772}
2773EXPORT_SYMBOL(register_console);
2774
Jesper Juhl40dc5652005-10-30 15:02:46 -08002775int unregister_console(struct console *console)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776{
Jesper Juhl40dc5652005-10-30 15:02:46 -08002777 struct console *a, *b;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002778 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
Andrew Morton27083ba2013-11-12 15:08:50 -08002780 pr_info("%sconsole [%s%d] disabled\n",
Kees Cook6b802392013-11-12 15:08:49 -08002781 (console->flags & CON_BOOT) ? "boot" : "" ,
2782 console->name, console->index);
2783
Joe Perchesbbeddf52013-07-31 13:53:45 -07002784 res = _braille_unregister_console(console);
2785 if (res)
2786 return res;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002787
Joe Perchesbbeddf52013-07-31 13:53:45 -07002788 res = 1;
Torben Hohnac751ef2011-01-25 15:07:35 -08002789 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 if (console_drivers == console) {
2791 console_drivers=console->next;
2792 res = 0;
Benjamin Herrenschmidte9b15b52005-11-23 13:37:44 -08002793 } else if (console_drivers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 for (a=console_drivers->next, b=console_drivers ;
2795 a; b=a, a=b->next) {
2796 if (a == console) {
2797 b->next = a->next;
2798 res = 0;
2799 break;
Jesper Juhl40dc5652005-10-30 15:02:46 -08002800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 }
2802 }
Jesper Juhl40dc5652005-10-30 15:02:46 -08002803
Tejun Heo6fe29352015-06-25 15:01:30 -07002804 if (!res && (console->flags & CON_EXTENDED))
2805 nr_ext_console_drivers--;
2806
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002807 /*
Greg Edwardsab4af032005-06-23 00:09:05 -07002808 * If this isn't the last console and it has CON_CONSDEV set, we
2809 * need to set it on the next preferred console.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 */
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002811 if (console_drivers != NULL && console->flags & CON_CONSDEV)
Greg Edwardsab4af032005-06-23 00:09:05 -07002812 console_drivers->flags |= CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
Stephen Chivers7fa21dd2014-05-14 08:04:39 +10002814 console->flags &= ~CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002815 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002816 console_sysfs_notify();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 return res;
2818}
2819EXPORT_SYMBOL(unregister_console);
Matt Mackalld59745c2005-05-01 08:59:02 -07002820
Thierry Reding81cc26f2016-01-15 16:58:21 -08002821/*
2822 * Some boot consoles access data that is in the init section and which will
2823 * be discarded after the initcalls have been run. To make sure that no code
2824 * will access this data, unregister the boot consoles in a late initcall.
2825 *
2826 * If for some reason, such as deferred probe or the driver being a loadable
2827 * module, the real console hasn't registered yet at this point, there will
2828 * be a brief interval in which no messages are logged to the console, which
2829 * makes it difficult to diagnose problems that occur during this time.
2830 *
2831 * To mitigate this problem somewhat, only unregister consoles whose memory
2832 * intersects with the init section. Note that code exists elsewhere to get
2833 * rid of the boot console as soon as the proper console shows up, so there
2834 * won't be side-effects from postponing the removal.
2835 */
Kevin Cernekee034260d2010-06-03 22:11:25 -07002836static int __init printk_late_init(void)
Robin Getz0c5564b2007-08-20 15:22:47 -04002837{
Robin Getz4d091612009-07-01 21:08:37 -04002838 struct console *con;
2839
2840 for_each_console(con) {
Nishanth Aravamudan4c30c6f2011-08-25 15:59:11 -07002841 if (!keep_bootcon && con->flags & CON_BOOT) {
Thierry Reding81cc26f2016-01-15 16:58:21 -08002842 /*
2843 * Make sure to unregister boot consoles whose data
2844 * resides in the init section before the init section
2845 * is discarded. Boot consoles whose data will stick
2846 * around will automatically be unregistered when the
2847 * proper console replaces them.
2848 */
2849 if (init_section_intersects(con, sizeof(*con)))
2850 unregister_console(con);
Robin Getzcb00e992007-08-21 23:14:58 -04002851 }
Robin Getz0c5564b2007-08-20 15:22:47 -04002852 }
Kevin Cernekee034260d2010-06-03 22:11:25 -07002853 hotcpu_notifier(console_cpu_notify, 0);
Robin Getz0c5564b2007-08-20 15:22:47 -04002854 return 0;
2855}
Kevin Cernekee034260d2010-06-03 22:11:25 -07002856late_initcall(printk_late_init);
Robin Getz0c5564b2007-08-20 15:22:47 -04002857
Joe Perches7ef3d2f2008-02-08 04:21:25 -08002858#if defined CONFIG_PRINTK
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002859/*
2860 * Delayed printk version, for scheduler-internal messages:
2861 */
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002862#define PRINTK_PENDING_WAKEUP 0x01
Steven Rostedt458df9f2014-06-04 16:11:38 -07002863#define PRINTK_PENDING_OUTPUT 0x02
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002864
2865static DEFINE_PER_CPU(int, printk_pending);
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002866
2867static void wake_up_klogd_work_func(struct irq_work *irq_work)
2868{
2869 int pending = __this_cpu_xchg(printk_pending, 0);
2870
Steven Rostedt458df9f2014-06-04 16:11:38 -07002871 if (pending & PRINTK_PENDING_OUTPUT) {
2872 /* If trylock fails, someone else is doing the printing */
2873 if (console_trylock())
2874 console_unlock();
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002875 }
2876
2877 if (pending & PRINTK_PENDING_WAKEUP)
2878 wake_up_interruptible(&log_wait);
2879}
2880
2881static DEFINE_PER_CPU(struct irq_work, wake_up_klogd_work) = {
2882 .func = wake_up_klogd_work_func,
2883 .flags = IRQ_WORK_LAZY,
2884};
2885
2886void wake_up_klogd(void)
2887{
2888 preempt_disable();
2889 if (waitqueue_active(&log_wait)) {
2890 this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP);
Christoph Lameterbb964a92014-08-17 12:30:24 -05002891 irq_work_queue(this_cpu_ptr(&wake_up_klogd_work));
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002892 }
2893 preempt_enable();
2894}
Dave Young717115e2008-07-25 01:45:58 -07002895
John Stultzaac74dc2014-06-04 16:11:40 -07002896int printk_deferred(const char *fmt, ...)
Peter Zijlstra600e1452012-03-15 12:35:37 +01002897{
Peter Zijlstra600e1452012-03-15 12:35:37 +01002898 va_list args;
Peter Zijlstra600e1452012-03-15 12:35:37 +01002899 int r;
2900
John Stultz81954602014-06-04 16:11:39 -07002901 preempt_disable();
Peter Zijlstra600e1452012-03-15 12:35:37 +01002902 va_start(args, fmt);
Joe Perchesa39d4a82014-12-10 15:50:15 -08002903 r = vprintk_emit(0, LOGLEVEL_SCHED, NULL, 0, fmt, args);
Peter Zijlstra600e1452012-03-15 12:35:37 +01002904 va_end(args);
2905
Steven Rostedt458df9f2014-06-04 16:11:38 -07002906 __this_cpu_or(printk_pending, PRINTK_PENDING_OUTPUT);
Christoph Lameterbb964a92014-08-17 12:30:24 -05002907 irq_work_queue(this_cpu_ptr(&wake_up_klogd_work));
John Stultz81954602014-06-04 16:11:39 -07002908 preempt_enable();
Peter Zijlstra600e1452012-03-15 12:35:37 +01002909
2910 return r;
2911}
2912
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913/*
2914 * printk rate limiting, lifted from the networking subsystem.
2915 *
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002916 * This enforces a rate limit: not more than 10 kernel messages
2917 * every 5s to make a denial-of-service attack impossible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 */
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002919DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10);
2920
Christian Borntraeger5c828712009-10-23 14:58:11 +02002921int __printk_ratelimit(const char *func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922{
Christian Borntraeger5c828712009-10-23 14:58:11 +02002923 return ___ratelimit(&printk_ratelimit_state, func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924}
Christian Borntraeger5c828712009-10-23 14:58:11 +02002925EXPORT_SYMBOL(__printk_ratelimit);
Andrew Mortonf46c4832006-11-02 22:07:16 -08002926
2927/**
2928 * printk_timed_ratelimit - caller-controlled printk ratelimiting
2929 * @caller_jiffies: pointer to caller's state
2930 * @interval_msecs: minimum interval between prints
2931 *
2932 * printk_timed_ratelimit() returns true if more than @interval_msecs
2933 * milliseconds have elapsed since the last time printk_timed_ratelimit()
2934 * returned true.
2935 */
2936bool printk_timed_ratelimit(unsigned long *caller_jiffies,
2937 unsigned int interval_msecs)
2938{
Alex Elder249771b2014-08-06 16:09:08 -07002939 unsigned long elapsed = jiffies - *caller_jiffies;
2940
2941 if (*caller_jiffies && elapsed <= msecs_to_jiffies(interval_msecs))
2942 return false;
2943
2944 *caller_jiffies = jiffies;
2945 return true;
Andrew Mortonf46c4832006-11-02 22:07:16 -08002946}
2947EXPORT_SYMBOL(printk_timed_ratelimit);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002948
2949static DEFINE_SPINLOCK(dump_list_lock);
2950static LIST_HEAD(dump_list);
2951
2952/**
2953 * kmsg_dump_register - register a kernel log dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002954 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002955 *
2956 * Adds a kernel log dumper to the system. The dump callback in the
2957 * structure will be called when the kernel oopses or panics and must be
2958 * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise.
2959 */
2960int kmsg_dump_register(struct kmsg_dumper *dumper)
2961{
2962 unsigned long flags;
2963 int err = -EBUSY;
2964
2965 /* The dump callback needs to be set */
2966 if (!dumper->dump)
2967 return -EINVAL;
2968
2969 spin_lock_irqsave(&dump_list_lock, flags);
2970 /* Don't allow registering multiple times */
2971 if (!dumper->registered) {
2972 dumper->registered = 1;
Huang Yingfb842b02011-01-12 16:59:43 -08002973 list_add_tail_rcu(&dumper->list, &dump_list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002974 err = 0;
2975 }
2976 spin_unlock_irqrestore(&dump_list_lock, flags);
2977
2978 return err;
2979}
2980EXPORT_SYMBOL_GPL(kmsg_dump_register);
2981
2982/**
2983 * kmsg_dump_unregister - unregister a kmsg dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002984 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002985 *
2986 * Removes a dump device from the system. Returns zero on success and
2987 * %-EINVAL otherwise.
2988 */
2989int kmsg_dump_unregister(struct kmsg_dumper *dumper)
2990{
2991 unsigned long flags;
2992 int err = -EINVAL;
2993
2994 spin_lock_irqsave(&dump_list_lock, flags);
2995 if (dumper->registered) {
2996 dumper->registered = 0;
Huang Yingfb842b02011-01-12 16:59:43 -08002997 list_del_rcu(&dumper->list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002998 err = 0;
2999 }
3000 spin_unlock_irqrestore(&dump_list_lock, flags);
Huang Yingfb842b02011-01-12 16:59:43 -08003001 synchronize_rcu();
Simon Kagstrom456b5652009-10-16 14:09:18 +02003002
3003 return err;
3004}
3005EXPORT_SYMBOL_GPL(kmsg_dump_unregister);
3006
Kay Sievers7ff95542012-05-03 02:29:13 +02003007static bool always_kmsg_dump;
3008module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR);
3009
Simon Kagstrom456b5652009-10-16 14:09:18 +02003010/**
3011 * kmsg_dump - dump kernel log to kernel message dumpers.
3012 * @reason: the reason (oops, panic etc) for dumping
3013 *
Kay Sieverse2ae7152012-06-15 14:07:51 +02003014 * Call each of the registered dumper's dump() callback, which can
3015 * retrieve the kmsg records with kmsg_dump_get_line() or
3016 * kmsg_dump_get_buffer().
Simon Kagstrom456b5652009-10-16 14:09:18 +02003017 */
3018void kmsg_dump(enum kmsg_dump_reason reason)
3019{
Simon Kagstrom456b5652009-10-16 14:09:18 +02003020 struct kmsg_dumper *dumper;
Simon Kagstrom456b5652009-10-16 14:09:18 +02003021 unsigned long flags;
3022
Matthew Garrettc22ab332012-03-05 14:59:10 -08003023 if ((reason > KMSG_DUMP_OOPS) && !always_kmsg_dump)
3024 return;
3025
Huang Yingfb842b02011-01-12 16:59:43 -08003026 rcu_read_lock();
Kay Sieverse2ae7152012-06-15 14:07:51 +02003027 list_for_each_entry_rcu(dumper, &dump_list, list) {
3028 if (dumper->max_reason && reason > dumper->max_reason)
3029 continue;
3030
3031 /* initialize iterator with data about the stored records */
3032 dumper->active = true;
3033
3034 raw_spin_lock_irqsave(&logbuf_lock, flags);
3035 dumper->cur_seq = clear_seq;
3036 dumper->cur_idx = clear_idx;
3037 dumper->next_seq = log_next_seq;
3038 dumper->next_idx = log_next_idx;
3039 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
3040
3041 /* invoke dumper which will iterate over records */
3042 dumper->dump(dumper, reason);
3043
3044 /* reset iterator */
3045 dumper->active = false;
3046 }
Huang Yingfb842b02011-01-12 16:59:43 -08003047 rcu_read_unlock();
Simon Kagstrom456b5652009-10-16 14:09:18 +02003048}
Kay Sieverse2ae7152012-06-15 14:07:51 +02003049
3050/**
Anton Vorontsov533827c2012-07-20 17:28:07 -07003051 * kmsg_dump_get_line_nolock - retrieve one kmsg log line (unlocked version)
3052 * @dumper: registered kmsg dumper
3053 * @syslog: include the "<4>" prefixes
3054 * @line: buffer to copy the line to
3055 * @size: maximum size of the buffer
3056 * @len: length of line placed into buffer
3057 *
3058 * Start at the beginning of the kmsg buffer, with the oldest kmsg
3059 * record, and copy one record into the provided buffer.
3060 *
3061 * Consecutive calls will return the next available record moving
3062 * towards the end of the buffer with the youngest messages.
3063 *
3064 * A return value of FALSE indicates that there are no more records to
3065 * read.
3066 *
3067 * The function is similar to kmsg_dump_get_line(), but grabs no locks.
3068 */
3069bool kmsg_dump_get_line_nolock(struct kmsg_dumper *dumper, bool syslog,
3070 char *line, size_t size, size_t *len)
3071{
Joe Perches62e32ac2013-07-31 13:53:47 -07003072 struct printk_log *msg;
Anton Vorontsov533827c2012-07-20 17:28:07 -07003073 size_t l = 0;
3074 bool ret = false;
3075
3076 if (!dumper->active)
3077 goto out;
3078
3079 if (dumper->cur_seq < log_first_seq) {
3080 /* messages are gone, move to first available one */
3081 dumper->cur_seq = log_first_seq;
3082 dumper->cur_idx = log_first_idx;
3083 }
3084
3085 /* last entry */
3086 if (dumper->cur_seq >= log_next_seq)
3087 goto out;
3088
3089 msg = log_from_idx(dumper->cur_idx);
3090 l = msg_print_text(msg, 0, syslog, line, size);
3091
3092 dumper->cur_idx = log_next(dumper->cur_idx);
3093 dumper->cur_seq++;
3094 ret = true;
3095out:
3096 if (len)
3097 *len = l;
3098 return ret;
3099}
3100
3101/**
Kay Sieverse2ae7152012-06-15 14:07:51 +02003102 * kmsg_dump_get_line - retrieve one kmsg log line
3103 * @dumper: registered kmsg dumper
3104 * @syslog: include the "<4>" prefixes
3105 * @line: buffer to copy the line to
3106 * @size: maximum size of the buffer
3107 * @len: length of line placed into buffer
3108 *
3109 * Start at the beginning of the kmsg buffer, with the oldest kmsg
3110 * record, and copy one record into the provided buffer.
3111 *
3112 * Consecutive calls will return the next available record moving
3113 * towards the end of the buffer with the youngest messages.
3114 *
3115 * A return value of FALSE indicates that there are no more records to
3116 * read.
3117 */
3118bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog,
3119 char *line, size_t size, size_t *len)
3120{
3121 unsigned long flags;
Anton Vorontsov533827c2012-07-20 17:28:07 -07003122 bool ret;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003123
3124 raw_spin_lock_irqsave(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07003125 ret = kmsg_dump_get_line_nolock(dumper, syslog, line, size, len);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003126 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07003127
Kay Sieverse2ae7152012-06-15 14:07:51 +02003128 return ret;
3129}
3130EXPORT_SYMBOL_GPL(kmsg_dump_get_line);
3131
3132/**
3133 * kmsg_dump_get_buffer - copy kmsg log lines
3134 * @dumper: registered kmsg dumper
3135 * @syslog: include the "<4>" prefixes
Randy Dunlap4f0f4af2012-06-30 15:37:24 -07003136 * @buf: buffer to copy the line to
Kay Sieverse2ae7152012-06-15 14:07:51 +02003137 * @size: maximum size of the buffer
3138 * @len: length of line placed into buffer
3139 *
3140 * Start at the end of the kmsg buffer and fill the provided buffer
3141 * with as many of the the *youngest* kmsg records that fit into it.
3142 * If the buffer is large enough, all available kmsg records will be
3143 * copied with a single call.
3144 *
3145 * Consecutive calls will fill the buffer with the next block of
3146 * available older records, not including the earlier retrieved ones.
3147 *
3148 * A return value of FALSE indicates that there are no more records to
3149 * read.
3150 */
3151bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog,
3152 char *buf, size_t size, size_t *len)
3153{
3154 unsigned long flags;
3155 u64 seq;
3156 u32 idx;
3157 u64 next_seq;
3158 u32 next_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07003159 enum log_flags prev;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003160 size_t l = 0;
3161 bool ret = false;
3162
3163 if (!dumper->active)
3164 goto out;
3165
3166 raw_spin_lock_irqsave(&logbuf_lock, flags);
3167 if (dumper->cur_seq < log_first_seq) {
3168 /* messages are gone, move to first available one */
3169 dumper->cur_seq = log_first_seq;
3170 dumper->cur_idx = log_first_idx;
3171 }
3172
3173 /* last entry */
3174 if (dumper->cur_seq >= dumper->next_seq) {
3175 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
3176 goto out;
3177 }
3178
3179 /* calculate length of entire buffer */
3180 seq = dumper->cur_seq;
3181 idx = dumper->cur_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07003182 prev = 0;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003183 while (seq < dumper->next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07003184 struct printk_log *msg = log_from_idx(idx);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003185
Kay Sievers5becfb12012-07-09 12:15:42 -07003186 l += msg_print_text(msg, prev, true, NULL, 0);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003187 idx = log_next(idx);
3188 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07003189 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003190 }
3191
3192 /* move first record forward until length fits into the buffer */
3193 seq = dumper->cur_seq;
3194 idx = dumper->cur_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07003195 prev = 0;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003196 while (l > size && seq < dumper->next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07003197 struct printk_log *msg = log_from_idx(idx);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003198
Kay Sievers5becfb12012-07-09 12:15:42 -07003199 l -= msg_print_text(msg, prev, true, NULL, 0);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003200 idx = log_next(idx);
3201 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07003202 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003203 }
3204
3205 /* last message in next interation */
3206 next_seq = seq;
3207 next_idx = idx;
3208
3209 l = 0;
3210 while (seq < dumper->next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07003211 struct printk_log *msg = log_from_idx(idx);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003212
Kay Sievers5becfb12012-07-09 12:15:42 -07003213 l += msg_print_text(msg, prev, syslog, buf + l, size - l);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003214 idx = log_next(idx);
3215 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07003216 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003217 }
3218
3219 dumper->next_seq = next_seq;
3220 dumper->next_idx = next_idx;
3221 ret = true;
3222 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
3223out:
3224 if (len)
3225 *len = l;
3226 return ret;
3227}
3228EXPORT_SYMBOL_GPL(kmsg_dump_get_buffer);
3229
3230/**
Anton Vorontsov533827c2012-07-20 17:28:07 -07003231 * kmsg_dump_rewind_nolock - reset the interator (unlocked version)
3232 * @dumper: registered kmsg dumper
3233 *
3234 * Reset the dumper's iterator so that kmsg_dump_get_line() and
3235 * kmsg_dump_get_buffer() can be called again and used multiple
3236 * times within the same dumper.dump() callback.
3237 *
3238 * The function is similar to kmsg_dump_rewind(), but grabs no locks.
3239 */
3240void kmsg_dump_rewind_nolock(struct kmsg_dumper *dumper)
3241{
3242 dumper->cur_seq = clear_seq;
3243 dumper->cur_idx = clear_idx;
3244 dumper->next_seq = log_next_seq;
3245 dumper->next_idx = log_next_idx;
3246}
3247
3248/**
Kay Sieverse2ae7152012-06-15 14:07:51 +02003249 * kmsg_dump_rewind - reset the interator
3250 * @dumper: registered kmsg dumper
3251 *
3252 * Reset the dumper's iterator so that kmsg_dump_get_line() and
3253 * kmsg_dump_get_buffer() can be called again and used multiple
3254 * times within the same dumper.dump() callback.
3255 */
3256void kmsg_dump_rewind(struct kmsg_dumper *dumper)
3257{
3258 unsigned long flags;
3259
3260 raw_spin_lock_irqsave(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07003261 kmsg_dump_rewind_nolock(dumper);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003262 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
3263}
3264EXPORT_SYMBOL_GPL(kmsg_dump_rewind);
Tejun Heo196779b2013-04-30 15:27:12 -07003265
Tejun Heo98e5e1b2013-04-30 15:27:15 -07003266static char dump_stack_arch_desc_str[128];
3267
3268/**
3269 * dump_stack_set_arch_desc - set arch-specific str to show with task dumps
3270 * @fmt: printf-style format string
3271 * @...: arguments for the format string
3272 *
3273 * The configured string will be printed right after utsname during task
3274 * dumps. Usually used to add arch-specific system identifiers. If an
3275 * arch wants to make use of such an ID string, it should initialize this
3276 * as soon as possible during boot.
3277 */
3278void __init dump_stack_set_arch_desc(const char *fmt, ...)
3279{
3280 va_list args;
3281
3282 va_start(args, fmt);
3283 vsnprintf(dump_stack_arch_desc_str, sizeof(dump_stack_arch_desc_str),
3284 fmt, args);
3285 va_end(args);
3286}
3287
Tejun Heo196779b2013-04-30 15:27:12 -07003288/**
3289 * dump_stack_print_info - print generic debug info for dump_stack()
3290 * @log_lvl: log level
3291 *
3292 * Arch-specific dump_stack() implementations can use this function to
3293 * print out the same debug information as the generic dump_stack().
3294 */
3295void dump_stack_print_info(const char *log_lvl)
3296{
3297 printk("%sCPU: %d PID: %d Comm: %.20s %s %s %.*s\n",
3298 log_lvl, raw_smp_processor_id(), current->pid, current->comm,
3299 print_tainted(), init_utsname()->release,
3300 (int)strcspn(init_utsname()->version, " "),
3301 init_utsname()->version);
Tejun Heo98e5e1b2013-04-30 15:27:15 -07003302
3303 if (dump_stack_arch_desc_str[0] != '\0')
3304 printk("%sHardware name: %s\n",
3305 log_lvl, dump_stack_arch_desc_str);
Tejun Heo3d1cb202013-04-30 15:27:22 -07003306
3307 print_worker_info(log_lvl, current);
Tejun Heo196779b2013-04-30 15:27:12 -07003308}
3309
Tejun Heoa43cb952013-04-30 15:27:17 -07003310/**
3311 * show_regs_print_info - print generic debug info for show_regs()
3312 * @log_lvl: log level
3313 *
3314 * show_regs() implementations can use this function to print out generic
3315 * debug information.
3316 */
3317void show_regs_print_info(const char *log_lvl)
3318{
3319 dump_stack_print_info(log_lvl);
3320
Andy Lutomirski8b70ca62016-07-28 15:48:23 -07003321 printk("%stask: %p task.stack: %p\n",
3322 log_lvl, current, task_stack_page(current));
Tejun Heoa43cb952013-04-30 15:27:17 -07003323}
3324
Joe Perches7ef3d2f2008-02-08 04:21:25 -08003325#endif