blob: eea6dbc2d8cf6ffc4d71729eb270a659b0a8c77d [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070059int console_printk[4] = {
Borislav Petkova8fe19e2014-06-04 16:11:46 -070060 CONSOLE_LOGLEVEL_DEFAULT, /* console_loglevel */
Alex Elder42a9dc02014-08-06 16:09:01 -070061 MESSAGE_LOGLEVEL_DEFAULT, /* default_message_loglevel */
Borislav Petkova8fe19e2014-06-04 16:11:46 -070062 CONSOLE_LOGLEVEL_MIN, /* minimum_console_loglevel */
63 CONSOLE_LOGLEVEL_DEFAULT, /* default_console_loglevel */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
Patrick Pletscher0bbfb7c2007-02-17 20:10:16 +010067 * Low level drivers may need that to know if they can schedule in
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * their unblank() callback or not. So let's export it.
69 */
70int oops_in_progress;
71EXPORT_SYMBOL(oops_in_progress);
72
73/*
74 * console_sem protects the console_drivers list, and also
75 * provides serialisation for access to the entire console
76 * driver system.
77 */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +000078static DEFINE_SEMAPHORE(console_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079struct console *console_drivers;
Ingo Molnara29d1cf2008-06-02 13:19:08 +020080EXPORT_SYMBOL_GPL(console_drivers);
81
Daniel Vetterdaee7792012-09-22 19:52:11 +020082#ifdef CONFIG_LOCKDEP
83static struct lockdep_map console_lock_dep_map = {
84 .name = "console_lock"
85};
86#endif
87
Borislav Petkov750afe72016-08-02 14:04:07 -070088enum devkmsg_log_bits {
89 __DEVKMSG_LOG_BIT_ON = 0,
90 __DEVKMSG_LOG_BIT_OFF,
91 __DEVKMSG_LOG_BIT_LOCK,
92};
93
94enum devkmsg_log_masks {
95 DEVKMSG_LOG_MASK_ON = BIT(__DEVKMSG_LOG_BIT_ON),
96 DEVKMSG_LOG_MASK_OFF = BIT(__DEVKMSG_LOG_BIT_OFF),
97 DEVKMSG_LOG_MASK_LOCK = BIT(__DEVKMSG_LOG_BIT_LOCK),
98};
99
100/* Keep both the 'on' and 'off' bits clear, i.e. ratelimit by default: */
101#define DEVKMSG_LOG_MASK_DEFAULT 0
102
103static unsigned int __read_mostly devkmsg_log = DEVKMSG_LOG_MASK_DEFAULT;
104
105static int __control_devkmsg(char *str)
106{
107 if (!str)
108 return -EINVAL;
109
110 if (!strncmp(str, "on", 2)) {
111 devkmsg_log = DEVKMSG_LOG_MASK_ON;
112 return 2;
113 } else if (!strncmp(str, "off", 3)) {
114 devkmsg_log = DEVKMSG_LOG_MASK_OFF;
115 return 3;
116 } else if (!strncmp(str, "ratelimit", 9)) {
117 devkmsg_log = DEVKMSG_LOG_MASK_DEFAULT;
118 return 9;
119 }
120 return -EINVAL;
121}
122
123static int __init control_devkmsg(char *str)
124{
125 if (__control_devkmsg(str) < 0)
126 return 1;
127
128 /*
129 * Set sysctl string accordingly:
130 */
131 if (devkmsg_log == DEVKMSG_LOG_MASK_ON) {
132 memset(devkmsg_log_str, 0, DEVKMSG_STR_MAX_SIZE);
133 strncpy(devkmsg_log_str, "on", 2);
134 } else if (devkmsg_log == DEVKMSG_LOG_MASK_OFF) {
135 memset(devkmsg_log_str, 0, DEVKMSG_STR_MAX_SIZE);
136 strncpy(devkmsg_log_str, "off", 3);
137 }
138 /* else "ratelimit" which is set by default. */
139
140 /*
141 * Sysctl cannot change it anymore. The kernel command line setting of
142 * this parameter is to force the setting to be permanent throughout the
143 * runtime of the system. This is a precation measure against userspace
144 * trying to be a smarta** and attempting to change it up on us.
145 */
146 devkmsg_log |= DEVKMSG_LOG_MASK_LOCK;
147
148 return 0;
149}
150__setup("printk.devkmsg=", control_devkmsg);
151
152char devkmsg_log_str[DEVKMSG_STR_MAX_SIZE] = "ratelimit";
153
154int devkmsg_sysctl_set_loglvl(struct ctl_table *table, int write,
155 void __user *buffer, size_t *lenp, loff_t *ppos)
156{
157 char old_str[DEVKMSG_STR_MAX_SIZE];
158 unsigned int old;
159 int err;
160
161 if (write) {
162 if (devkmsg_log & DEVKMSG_LOG_MASK_LOCK)
163 return -EINVAL;
164
165 old = devkmsg_log;
166 strncpy(old_str, devkmsg_log_str, DEVKMSG_STR_MAX_SIZE);
167 }
168
169 err = proc_dostring(table, write, buffer, lenp, ppos);
170 if (err)
171 return err;
172
173 if (write) {
174 err = __control_devkmsg(devkmsg_log_str);
175
176 /*
177 * Do not accept an unknown string OR a known string with
178 * trailing crap...
179 */
180 if (err < 0 || (err + 1 != *lenp)) {
181
182 /* ... and restore old setting. */
183 devkmsg_log = old;
184 strncpy(devkmsg_log_str, old_str, DEVKMSG_STR_MAX_SIZE);
185
186 return -EINVAL;
187 }
188 }
189
190 return 0;
191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/*
Tejun Heo6fe29352015-06-25 15:01:30 -0700194 * Number of registered extended console drivers.
195 *
196 * If extended consoles are present, in-kernel cont reassembly is disabled
197 * and each fragment is stored as a separate log entry with proper
198 * continuation flag so that every emitted message has full metadata. This
199 * doesn't change the result for regular consoles or /proc/kmsg. For
200 * /dev/kmsg, as long as the reader concatenates messages according to
201 * consecutive continuation flags, the end result should be the same too.
202 */
203static int nr_ext_console_drivers;
204
205/*
Jan Karabd8d7cf2014-06-04 16:11:36 -0700206 * Helper macros to handle lockdep when locking/unlocking console_sem. We use
207 * macros instead of functions so that _RET_IP_ contains useful information.
208 */
209#define down_console_sem() do { \
210 down(&console_sem);\
211 mutex_acquire(&console_lock_dep_map, 0, 0, _RET_IP_);\
212} while (0)
213
214static int __down_trylock_console_sem(unsigned long ip)
215{
216 if (down_trylock(&console_sem))
217 return 1;
218 mutex_acquire(&console_lock_dep_map, 0, 1, ip);
219 return 0;
220}
221#define down_trylock_console_sem() __down_trylock_console_sem(_RET_IP_)
222
223#define up_console_sem() do { \
224 mutex_release(&console_lock_dep_map, 1, _RET_IP_);\
225 up(&console_sem);\
226} while (0)
227
228/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 * This is used for debugging the mess that is the VT code by
230 * keeping track if we have the console semaphore held. It's
231 * definitely not the perfect debug tool (we don't know if _WE_
Alex Elder0b90fec2014-08-06 16:09:03 -0700232 * hold it and are racing, but it helps tracking those weird code
233 * paths in the console code where we end up in places I want
234 * locked without the console sempahore held).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 */
Linus Torvalds557240b2006-06-19 18:16:01 -0700236static int console_locked, console_suspended;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238/*
Feng Tangfe3d8ad2011-03-22 16:34:21 -0700239 * If exclusive_console is non-NULL then only this console is to be printed to.
240 */
241static struct console *exclusive_console;
242
243/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 * Array of consoles built from command line options (console=)
245 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247#define MAX_CMDLINECONSOLES 8
248
249static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
Joe Perchesd197c432013-07-31 13:53:44 -0700250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251static int selected_console = -1;
252static int preferred_console = -1;
Markus Armbruster9e124fe2008-05-26 23:31:07 +0100253int console_set_on_cmdline;
254EXPORT_SYMBOL(console_set_on_cmdline);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256/* Flag: console code may call schedule() */
257static int console_may_schedule;
258
Kay Sievers7ff95542012-05-03 02:29:13 +0200259/*
260 * The printk log buffer consists of a chain of concatenated variable
261 * length records. Every record starts with a record header, containing
262 * the overall length of the record.
263 *
264 * The heads to the first and last entry in the buffer, as well as the
Alex Elder0b90fec2014-08-06 16:09:03 -0700265 * sequence numbers of these entries are maintained when messages are
266 * stored.
Kay Sievers7ff95542012-05-03 02:29:13 +0200267 *
268 * If the heads indicate available messages, the length in the header
269 * tells the start next message. A length == 0 for the next message
270 * indicates a wrap-around to the beginning of the buffer.
271 *
272 * Every record carries the monotonic timestamp in microseconds, as well as
273 * the standard userspace syslog level and syslog facility. The usual
274 * kernel messages use LOG_KERN; userspace-injected messages always carry
275 * a matching syslog facility, by default LOG_USER. The origin of every
276 * message can be reliably determined that way.
277 *
278 * The human readable log message directly follows the message header. The
279 * length of the message text is stored in the header, the stored message
280 * is not terminated.
281 *
Kay Sieverse11fea92012-05-03 02:29:41 +0200282 * Optionally, a message can carry a dictionary of properties (key/value pairs),
283 * to provide userspace with a machine-readable message context.
284 *
285 * Examples for well-defined, commonly used property names are:
286 * DEVICE=b12:8 device identifier
287 * b12:8 block dev_t
288 * c127:3 char dev_t
289 * n8 netdev ifindex
290 * +sound:card0 subsystem:devname
291 * SUBSYSTEM=pci driver-core subsystem name
292 *
293 * Valid characters in property names are [a-zA-Z0-9.-_]. The plain text value
294 * follows directly after a '=' character. Every property is terminated by
295 * a '\0' character. The last property is not terminated.
296 *
297 * Example of a message structure:
298 * 0000 ff 8f 00 00 00 00 00 00 monotonic time in nsec
299 * 0008 34 00 record is 52 bytes long
300 * 000a 0b 00 text is 11 bytes long
301 * 000c 1f 00 dictionary is 23 bytes long
302 * 000e 03 00 LOG_KERN (facility) LOG_ERR (level)
303 * 0010 69 74 27 73 20 61 20 6c "it's a l"
304 * 69 6e 65 "ine"
305 * 001b 44 45 56 49 43 "DEVIC"
306 * 45 3d 62 38 3a 32 00 44 "E=b8:2\0D"
307 * 52 49 56 45 52 3d 62 75 "RIVER=bu"
308 * 67 "g"
309 * 0032 00 00 00 padding to next message header
310 *
Joe Perches62e32ac2013-07-31 13:53:47 -0700311 * The 'struct printk_log' buffer header must never be directly exported to
Kay Sieverse11fea92012-05-03 02:29:41 +0200312 * userspace, it is a kernel-private implementation detail that might
313 * need to be changed in the future, when the requirements change.
314 *
315 * /dev/kmsg exports the structured data in the following line format:
Antonio Ospiteb3896452015-06-30 14:59:03 -0700316 * "<level>,<sequnum>,<timestamp>,<contflag>[,additional_values, ... ];<message text>\n"
317 *
318 * Users of the export format should ignore possible additional values
319 * separated by ',', and find the message after the ';' character.
Kay Sieverse11fea92012-05-03 02:29:41 +0200320 *
321 * The optional key/value pairs are attached as continuation lines starting
322 * with a space character and terminated by a newline. All possible
323 * non-prinatable characters are escaped in the "\xff" notation.
Kay Sievers7ff95542012-05-03 02:29:13 +0200324 */
Matt Mackalld59745c2005-05-01 08:59:02 -0700325
Kay Sievers084681d2012-06-28 09:38:53 +0200326enum log_flags {
Kay Sievers5becfb12012-07-09 12:15:42 -0700327 LOG_NOCONS = 1, /* already flushed, do not print to console */
328 LOG_NEWLINE = 2, /* text ended with a newline */
329 LOG_PREFIX = 4, /* text started with a prefix */
330 LOG_CONT = 8, /* text is a fragment of a continuation line */
Kay Sievers084681d2012-06-28 09:38:53 +0200331};
332
Joe Perches62e32ac2013-07-31 13:53:47 -0700333struct printk_log {
Kay Sievers7ff95542012-05-03 02:29:13 +0200334 u64 ts_nsec; /* timestamp in nanoseconds */
335 u16 len; /* length of entire record */
336 u16 text_len; /* length of text buffer */
337 u16 dict_len; /* length of dictionary buffer */
Kay Sievers084681d2012-06-28 09:38:53 +0200338 u8 facility; /* syslog facility */
339 u8 flags:5; /* internal record flags */
340 u8 level:3; /* syslog level */
Andrey Ryabinin5c9cf8a2016-01-20 15:00:48 -0800341}
342#ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
343__packed __aligned(4)
344#endif
345;
Kay Sievers7ff95542012-05-03 02:29:13 +0200346
347/*
Steven Rostedt458df9f2014-06-04 16:11:38 -0700348 * The logbuf_lock protects kmsg buffer, indices, counters. This can be taken
349 * within the scheduler's rq lock. It must be released before calling
350 * console_unlock() or anything else that might wake up a process.
Kay Sievers7ff95542012-05-03 02:29:13 +0200351 */
Petr Mladekcf9b1102016-05-20 17:00:42 -0700352DEFINE_RAW_SPINLOCK(logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +0200353
Kay Sievers96efedf2012-07-16 18:35:29 -0700354#ifdef CONFIG_PRINTK
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -0700355DECLARE_WAIT_QUEUE_HEAD(log_wait);
Kay Sievers7f3a7812012-05-09 01:37:51 +0200356/* the next printk record to read by syslog(READ) or /proc/kmsg */
357static u64 syslog_seq;
358static u32 syslog_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -0700359static enum log_flags syslog_prev;
Kay Sieverseb02dac2012-07-09 10:05:10 -0700360static size_t syslog_partial;
Kay Sievers7f3a7812012-05-09 01:37:51 +0200361
362/* index and sequence number of the first record stored in the buffer */
363static u64 log_first_seq;
364static u32 log_first_idx;
365
366/* index and sequence number of the next record to store in the buffer */
367static u64 log_next_seq;
Kay Sievers7f3a7812012-05-09 01:37:51 +0200368static u32 log_next_idx;
369
Kay Sieverseab07262012-07-16 18:35:30 -0700370/* the next printk record to write to the console */
371static u64 console_seq;
372static u32 console_idx;
373static enum log_flags console_prev;
374
Kay Sievers7f3a7812012-05-09 01:37:51 +0200375/* the next printk record to read after the last 'clear' command */
376static u64 clear_seq;
377static u32 clear_idx;
Kay Sievers7ff95542012-05-03 02:29:13 +0200378
Kay Sievers70498252012-07-16 18:35:29 -0700379#define PREFIX_MAX 32
Alex Elder249771b2014-08-06 16:09:08 -0700380#define LOG_LINE_MAX (1024 - PREFIX_MAX)
Kay Sievers7ff95542012-05-03 02:29:13 +0200381
Mathias Krause38246572015-11-06 16:30:38 -0800382#define LOG_LEVEL(v) ((v) & 0x07)
383#define LOG_FACILITY(v) ((v) >> 3 & 0xff)
384
Kay Sievers7ff95542012-05-03 02:29:13 +0200385/* record buffer */
Joe Perches62e32ac2013-07-31 13:53:47 -0700386#define LOG_ALIGN __alignof__(struct printk_log)
Kay Sievers7ff95542012-05-03 02:29:13 +0200387#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
Stephen Warrenf8450fc2012-05-10 16:14:33 -0600388static char __log_buf[__LOG_BUF_LEN] __aligned(LOG_ALIGN);
Matt Mackalld59745c2005-05-01 08:59:02 -0700389static char *log_buf = __log_buf;
Kay Sievers7ff95542012-05-03 02:29:13 +0200390static u32 log_buf_len = __LOG_BUF_LEN;
391
Vasant Hegde14c40002014-08-09 11:15:30 +0530392/* Return log buffer address */
393char *log_buf_addr_get(void)
394{
395 return log_buf;
396}
397
398/* Return log buffer size */
399u32 log_buf_len_get(void)
400{
401 return log_buf_len;
402}
403
Kay Sievers7ff95542012-05-03 02:29:13 +0200404/* human readable text of the record */
Joe Perches62e32ac2013-07-31 13:53:47 -0700405static char *log_text(const struct printk_log *msg)
Kay Sievers7ff95542012-05-03 02:29:13 +0200406{
Joe Perches62e32ac2013-07-31 13:53:47 -0700407 return (char *)msg + sizeof(struct printk_log);
Kay Sievers7ff95542012-05-03 02:29:13 +0200408}
409
410/* optional key/value pair dictionary attached to the record */
Joe Perches62e32ac2013-07-31 13:53:47 -0700411static char *log_dict(const struct printk_log *msg)
Kay Sievers7ff95542012-05-03 02:29:13 +0200412{
Joe Perches62e32ac2013-07-31 13:53:47 -0700413 return (char *)msg + sizeof(struct printk_log) + msg->text_len;
Kay Sievers7ff95542012-05-03 02:29:13 +0200414}
415
416/* get record by index; idx must point to valid msg */
Joe Perches62e32ac2013-07-31 13:53:47 -0700417static struct printk_log *log_from_idx(u32 idx)
Kay Sievers7ff95542012-05-03 02:29:13 +0200418{
Joe Perches62e32ac2013-07-31 13:53:47 -0700419 struct printk_log *msg = (struct printk_log *)(log_buf + idx);
Kay Sievers7ff95542012-05-03 02:29:13 +0200420
421 /*
422 * A length == 0 record is the end of buffer marker. Wrap around and
423 * read the message at the start of the buffer.
424 */
425 if (!msg->len)
Joe Perches62e32ac2013-07-31 13:53:47 -0700426 return (struct printk_log *)log_buf;
Kay Sievers7ff95542012-05-03 02:29:13 +0200427 return msg;
428}
429
430/* get next record; idx must point to valid msg */
431static u32 log_next(u32 idx)
432{
Joe Perches62e32ac2013-07-31 13:53:47 -0700433 struct printk_log *msg = (struct printk_log *)(log_buf + idx);
Kay Sievers7ff95542012-05-03 02:29:13 +0200434
435 /* length == 0 indicates the end of the buffer; wrap */
436 /*
437 * A length == 0 record is the end of buffer marker. Wrap around and
438 * read the message at the start of the buffer as *this* one, and
439 * return the one after that.
440 */
441 if (!msg->len) {
Joe Perches62e32ac2013-07-31 13:53:47 -0700442 msg = (struct printk_log *)log_buf;
Kay Sievers7ff95542012-05-03 02:29:13 +0200443 return msg->len;
444 }
445 return idx + msg->len;
446}
447
Petr Mladekf40e4b92014-06-04 16:11:30 -0700448/*
449 * Check whether there is enough free space for the given message.
450 *
451 * The same values of first_idx and next_idx mean that the buffer
452 * is either empty or full.
453 *
454 * If the buffer is empty, we must respect the position of the indexes.
455 * They cannot be reset to the beginning of the buffer.
456 */
457static int logbuf_has_space(u32 msg_size, bool empty)
Petr Mladek0a581692014-06-04 16:11:28 -0700458{
459 u32 free;
460
Petr Mladekf40e4b92014-06-04 16:11:30 -0700461 if (log_next_idx > log_first_idx || empty)
Petr Mladek0a581692014-06-04 16:11:28 -0700462 free = max(log_buf_len - log_next_idx, log_first_idx);
463 else
464 free = log_first_idx - log_next_idx;
465
466 /*
467 * We need space also for an empty header that signalizes wrapping
468 * of the buffer.
469 */
470 return free >= msg_size + sizeof(struct printk_log);
471}
472
Petr Mladekf40e4b92014-06-04 16:11:30 -0700473static int log_make_free_space(u32 msg_size)
Petr Mladek0a581692014-06-04 16:11:28 -0700474{
Ivan Delalandef4689082016-03-17 14:21:30 -0700475 while (log_first_seq < log_next_seq &&
476 !logbuf_has_space(msg_size, false)) {
Alex Elder0b90fec2014-08-06 16:09:03 -0700477 /* drop old messages until we have enough contiguous space */
Petr Mladek0a581692014-06-04 16:11:28 -0700478 log_first_idx = log_next(log_first_idx);
479 log_first_seq++;
480 }
Petr Mladekf40e4b92014-06-04 16:11:30 -0700481
Ivan Delalandef4689082016-03-17 14:21:30 -0700482 if (clear_seq < log_first_seq) {
483 clear_seq = log_first_seq;
484 clear_idx = log_first_idx;
485 }
486
Petr Mladekf40e4b92014-06-04 16:11:30 -0700487 /* sequence numbers are equal, so the log buffer is empty */
Ivan Delalandef4689082016-03-17 14:21:30 -0700488 if (logbuf_has_space(msg_size, log_first_seq == log_next_seq))
Petr Mladekf40e4b92014-06-04 16:11:30 -0700489 return 0;
490
491 return -ENOMEM;
Petr Mladek0a581692014-06-04 16:11:28 -0700492}
493
Petr Mladek85c870432014-06-04 16:11:31 -0700494/* compute the message size including the padding bytes */
495static u32 msg_used_size(u16 text_len, u16 dict_len, u32 *pad_len)
496{
497 u32 size;
498
499 size = sizeof(struct printk_log) + text_len + dict_len;
500 *pad_len = (-size) & (LOG_ALIGN - 1);
501 size += *pad_len;
502
503 return size;
504}
505
Petr Mladek55bd53a2014-06-04 16:11:32 -0700506/*
507 * Define how much of the log buffer we could take at maximum. The value
508 * must be greater than two. Note that only half of the buffer is available
509 * when the index points to the middle.
510 */
511#define MAX_LOG_TAKE_PART 4
512static const char trunc_msg[] = "<truncated>";
513
514static u32 truncate_msg(u16 *text_len, u16 *trunc_msg_len,
515 u16 *dict_len, u32 *pad_len)
516{
517 /*
518 * The message should not take the whole buffer. Otherwise, it might
519 * get removed too soon.
520 */
521 u32 max_text_len = log_buf_len / MAX_LOG_TAKE_PART;
522 if (*text_len > max_text_len)
523 *text_len = max_text_len;
524 /* enable the warning message */
525 *trunc_msg_len = strlen(trunc_msg);
526 /* disable the "dict" completely */
527 *dict_len = 0;
528 /* compute the size again, count also the warning message */
529 return msg_used_size(*text_len + *trunc_msg_len, 0, pad_len);
530}
531
Kay Sievers7ff95542012-05-03 02:29:13 +0200532/* insert record into the buffer, discard old ones, update heads */
Petr Mladek034633c2014-06-04 16:11:33 -0700533static int log_store(int facility, int level,
534 enum log_flags flags, u64 ts_nsec,
535 const char *dict, u16 dict_len,
536 const char *text, u16 text_len)
Kay Sievers7ff95542012-05-03 02:29:13 +0200537{
Joe Perches62e32ac2013-07-31 13:53:47 -0700538 struct printk_log *msg;
Kay Sievers7ff95542012-05-03 02:29:13 +0200539 u32 size, pad_len;
Petr Mladek55bd53a2014-06-04 16:11:32 -0700540 u16 trunc_msg_len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +0200541
542 /* number of '\0' padding bytes to next message */
Petr Mladek85c870432014-06-04 16:11:31 -0700543 size = msg_used_size(text_len, dict_len, &pad_len);
Kay Sievers7ff95542012-05-03 02:29:13 +0200544
Petr Mladek55bd53a2014-06-04 16:11:32 -0700545 if (log_make_free_space(size)) {
546 /* truncate the message if it is too long for empty buffer */
547 size = truncate_msg(&text_len, &trunc_msg_len,
548 &dict_len, &pad_len);
549 /* survive when the log buffer is too small for trunc_msg */
550 if (log_make_free_space(size))
Petr Mladek034633c2014-06-04 16:11:33 -0700551 return 0;
Petr Mladek55bd53a2014-06-04 16:11:32 -0700552 }
Kay Sievers7ff95542012-05-03 02:29:13 +0200553
Petr Mladek39b25102014-04-03 14:48:42 -0700554 if (log_next_idx + size + sizeof(struct printk_log) > log_buf_len) {
Kay Sievers7ff95542012-05-03 02:29:13 +0200555 /*
556 * This message + an additional empty header does not fit
557 * at the end of the buffer. Add an empty header with len == 0
558 * to signify a wrap around.
559 */
Joe Perches62e32ac2013-07-31 13:53:47 -0700560 memset(log_buf + log_next_idx, 0, sizeof(struct printk_log));
Kay Sievers7ff95542012-05-03 02:29:13 +0200561 log_next_idx = 0;
562 }
563
564 /* fill message */
Joe Perches62e32ac2013-07-31 13:53:47 -0700565 msg = (struct printk_log *)(log_buf + log_next_idx);
Kay Sievers7ff95542012-05-03 02:29:13 +0200566 memcpy(log_text(msg), text, text_len);
567 msg->text_len = text_len;
Petr Mladek55bd53a2014-06-04 16:11:32 -0700568 if (trunc_msg_len) {
569 memcpy(log_text(msg) + text_len, trunc_msg, trunc_msg_len);
570 msg->text_len += trunc_msg_len;
571 }
Kay Sievers7ff95542012-05-03 02:29:13 +0200572 memcpy(log_dict(msg), dict, dict_len);
573 msg->dict_len = dict_len;
Kay Sievers084681d2012-06-28 09:38:53 +0200574 msg->facility = facility;
575 msg->level = level & 7;
576 msg->flags = flags & 0x1f;
577 if (ts_nsec > 0)
578 msg->ts_nsec = ts_nsec;
579 else
580 msg->ts_nsec = local_clock();
Kay Sievers7ff95542012-05-03 02:29:13 +0200581 memset(log_dict(msg) + dict_len, 0, pad_len);
Petr Mladekfce6e032014-04-03 14:48:43 -0700582 msg->len = size;
Kay Sievers7ff95542012-05-03 02:29:13 +0200583
584 /* insert message */
585 log_next_idx += msg->len;
586 log_next_seq++;
Petr Mladek034633c2014-06-04 16:11:33 -0700587
588 return msg->text_len;
Kay Sievers7ff95542012-05-03 02:29:13 +0200589}
Matt Mackalld59745c2005-05-01 08:59:02 -0700590
Alex Eldere99aa462014-08-06 16:09:05 -0700591int dmesg_restrict = IS_ENABLED(CONFIG_SECURITY_DMESG_RESTRICT);
Kees Cook637241a2013-06-12 14:04:39 -0700592
593static int syslog_action_restricted(int type)
594{
595 if (dmesg_restrict)
596 return 1;
597 /*
598 * Unless restricted, we allow "read all" and "get buffer size"
599 * for everybody.
600 */
601 return type != SYSLOG_ACTION_READ_ALL &&
602 type != SYSLOG_ACTION_SIZE_BUFFER;
603}
604
Vasily Averin3ea43312015-06-25 15:01:47 -0700605int check_syslog_permissions(int type, int source)
Kees Cook637241a2013-06-12 14:04:39 -0700606{
607 /*
608 * If this is from /proc/kmsg and we've already opened it, then we've
609 * already done the capabilities checks at open time.
610 */
Vasily Averin3ea43312015-06-25 15:01:47 -0700611 if (source == SYSLOG_FROM_PROC && type != SYSLOG_ACTION_OPEN)
Vasily Averind194e5d2015-06-25 15:01:44 -0700612 goto ok;
Kees Cook637241a2013-06-12 14:04:39 -0700613
614 if (syslog_action_restricted(type)) {
615 if (capable(CAP_SYSLOG))
Vasily Averind194e5d2015-06-25 15:01:44 -0700616 goto ok;
Kees Cook637241a2013-06-12 14:04:39 -0700617 /*
618 * For historical reasons, accept CAP_SYS_ADMIN too, with
619 * a warning.
620 */
621 if (capable(CAP_SYS_ADMIN)) {
622 pr_warn_once("%s (%d): Attempt to access syslog with "
623 "CAP_SYS_ADMIN but no CAP_SYSLOG "
624 "(deprecated).\n",
625 current->comm, task_pid_nr(current));
Vasily Averind194e5d2015-06-25 15:01:44 -0700626 goto ok;
Kees Cook637241a2013-06-12 14:04:39 -0700627 }
628 return -EPERM;
629 }
Vasily Averind194e5d2015-06-25 15:01:44 -0700630ok:
Kees Cook637241a2013-06-12 14:04:39 -0700631 return security_syslog(type);
632}
Geliang Tangee1d2672015-10-20 00:39:03 -0700633EXPORT_SYMBOL_GPL(check_syslog_permissions);
Kees Cook637241a2013-06-12 14:04:39 -0700634
Tejun Heod43ff432015-06-25 15:01:24 -0700635static void append_char(char **pp, char *e, char c)
636{
637 if (*pp < e)
638 *(*pp)++ = c;
639}
Kees Cook637241a2013-06-12 14:04:39 -0700640
Tejun Heo0a295e672015-06-25 15:01:27 -0700641static ssize_t msg_print_ext_header(char *buf, size_t size,
642 struct printk_log *msg, u64 seq,
643 enum log_flags prev_flags)
644{
645 u64 ts_usec = msg->ts_nsec;
646 char cont = '-';
647
648 do_div(ts_usec, 1000);
649
650 /*
651 * If we couldn't merge continuation line fragments during the print,
652 * export the stored flags to allow an optional external merge of the
653 * records. Merging the records isn't always neccessarily correct, like
654 * when we hit a race during printing. In most cases though, it produces
655 * better readable output. 'c' in the record flags mark the first
656 * fragment of a line, '+' the following.
657 */
658 if (msg->flags & LOG_CONT && !(prev_flags & LOG_CONT))
659 cont = 'c';
660 else if ((msg->flags & LOG_CONT) ||
661 ((prev_flags & LOG_CONT) && !(msg->flags & LOG_PREFIX)))
662 cont = '+';
663
664 return scnprintf(buf, size, "%u,%llu,%llu,%c;",
665 (msg->facility << 3) | msg->level, seq, ts_usec, cont);
666}
667
668static ssize_t msg_print_ext_body(char *buf, size_t size,
669 char *dict, size_t dict_len,
670 char *text, size_t text_len)
671{
672 char *p = buf, *e = buf + size;
673 size_t i;
674
675 /* escape non-printable characters */
676 for (i = 0; i < text_len; i++) {
677 unsigned char c = text[i];
678
679 if (c < ' ' || c >= 127 || c == '\\')
680 p += scnprintf(p, e - p, "\\x%02x", c);
681 else
682 append_char(&p, e, c);
683 }
684 append_char(&p, e, '\n');
685
686 if (dict_len) {
687 bool line = true;
688
689 for (i = 0; i < dict_len; i++) {
690 unsigned char c = dict[i];
691
692 if (line) {
693 append_char(&p, e, ' ');
694 line = false;
695 }
696
697 if (c == '\0') {
698 append_char(&p, e, '\n');
699 line = true;
700 continue;
701 }
702
703 if (c < ' ' || c >= 127 || c == '\\') {
704 p += scnprintf(p, e - p, "\\x%02x", c);
705 continue;
706 }
707
708 append_char(&p, e, c);
709 }
710 append_char(&p, e, '\n');
711 }
712
713 return p - buf;
714}
715
Kay Sieverse11fea92012-05-03 02:29:41 +0200716/* /dev/kmsg - userspace message inject/listen interface */
717struct devkmsg_user {
718 u64 seq;
719 u32 idx;
Kay Sieversd39f3d72012-07-16 18:35:30 -0700720 enum log_flags prev;
Borislav Petkov750afe72016-08-02 14:04:07 -0700721 struct ratelimit_state rs;
Kay Sieverse11fea92012-05-03 02:29:41 +0200722 struct mutex lock;
Tejun Heod43ff432015-06-25 15:01:24 -0700723 char buf[CONSOLE_EXT_LOG_MAX];
Kay Sieverse11fea92012-05-03 02:29:41 +0200724};
725
Al Viro849f3122014-08-23 12:23:53 -0400726static ssize_t devkmsg_write(struct kiocb *iocb, struct iov_iter *from)
Kay Sieverse11fea92012-05-03 02:29:41 +0200727{
728 char *buf, *line;
Kay Sieverse11fea92012-05-03 02:29:41 +0200729 int level = default_message_loglevel;
730 int facility = 1; /* LOG_USER */
Borislav Petkov750afe72016-08-02 14:04:07 -0700731 struct file *file = iocb->ki_filp;
732 struct devkmsg_user *user = file->private_data;
Christoph Hellwig66ee59a2015-02-11 19:56:46 +0100733 size_t len = iov_iter_count(from);
Kay Sieverse11fea92012-05-03 02:29:41 +0200734 ssize_t ret = len;
735
Borislav Petkov750afe72016-08-02 14:04:07 -0700736 if (!user || len > LOG_LINE_MAX)
Kay Sieverse11fea92012-05-03 02:29:41 +0200737 return -EINVAL;
Borislav Petkov750afe72016-08-02 14:04:07 -0700738
739 /* Ignore when user logging is disabled. */
740 if (devkmsg_log & DEVKMSG_LOG_MASK_OFF)
741 return len;
742
743 /* Ratelimit when not explicitly enabled. */
744 if (!(devkmsg_log & DEVKMSG_LOG_MASK_ON)) {
745 if (!___ratelimit(&user->rs, current->comm))
746 return ret;
747 }
748
Kay Sieverse11fea92012-05-03 02:29:41 +0200749 buf = kmalloc(len+1, GFP_KERNEL);
750 if (buf == NULL)
751 return -ENOMEM;
752
Al Viro849f3122014-08-23 12:23:53 -0400753 buf[len] = '\0';
754 if (copy_from_iter(buf, len, from) != len) {
755 kfree(buf);
756 return -EFAULT;
Kay Sieverse11fea92012-05-03 02:29:41 +0200757 }
758
759 /*
760 * Extract and skip the syslog prefix <[0-9]*>. Coming from userspace
761 * the decimal value represents 32bit, the lower 3 bit are the log
762 * level, the rest are the log facility.
763 *
764 * If no prefix or no userspace facility is specified, we
765 * enforce LOG_USER, to be able to reliably distinguish
766 * kernel-generated messages from userspace-injected ones.
767 */
768 line = buf;
769 if (line[0] == '<') {
770 char *endp = NULL;
Mathias Krause38246572015-11-06 16:30:38 -0800771 unsigned int u;
Kay Sieverse11fea92012-05-03 02:29:41 +0200772
Mathias Krause38246572015-11-06 16:30:38 -0800773 u = simple_strtoul(line + 1, &endp, 10);
Kay Sieverse11fea92012-05-03 02:29:41 +0200774 if (endp && endp[0] == '>') {
Mathias Krause38246572015-11-06 16:30:38 -0800775 level = LOG_LEVEL(u);
776 if (LOG_FACILITY(u) != 0)
777 facility = LOG_FACILITY(u);
Kay Sieverse11fea92012-05-03 02:29:41 +0200778 endp++;
779 len -= endp - line;
780 line = endp;
781 }
782 }
Kay Sieverse11fea92012-05-03 02:29:41 +0200783
784 printk_emit(facility, level, NULL, 0, "%s", line);
Kay Sieverse11fea92012-05-03 02:29:41 +0200785 kfree(buf);
786 return ret;
787}
788
789static ssize_t devkmsg_read(struct file *file, char __user *buf,
790 size_t count, loff_t *ppos)
791{
792 struct devkmsg_user *user = file->private_data;
Joe Perches62e32ac2013-07-31 13:53:47 -0700793 struct printk_log *msg;
Kay Sieverse11fea92012-05-03 02:29:41 +0200794 size_t len;
795 ssize_t ret;
796
797 if (!user)
798 return -EBADF;
799
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +0800800 ret = mutex_lock_interruptible(&user->lock);
801 if (ret)
802 return ret;
liu chuansheng5c53d812012-07-06 09:50:08 -0700803 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200804 while (user->seq == log_next_seq) {
805 if (file->f_flags & O_NONBLOCK) {
806 ret = -EAGAIN;
liu chuansheng5c53d812012-07-06 09:50:08 -0700807 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200808 goto out;
809 }
810
liu chuansheng5c53d812012-07-06 09:50:08 -0700811 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200812 ret = wait_event_interruptible(log_wait,
813 user->seq != log_next_seq);
814 if (ret)
815 goto out;
liu chuansheng5c53d812012-07-06 09:50:08 -0700816 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200817 }
818
819 if (user->seq < log_first_seq) {
820 /* our last seen message is gone, return error and reset */
821 user->idx = log_first_idx;
822 user->seq = log_first_seq;
823 ret = -EPIPE;
liu chuansheng5c53d812012-07-06 09:50:08 -0700824 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200825 goto out;
826 }
827
828 msg = log_from_idx(user->idx);
Tejun Heo0a295e672015-06-25 15:01:27 -0700829 len = msg_print_ext_header(user->buf, sizeof(user->buf),
830 msg, user->seq, user->prev);
831 len += msg_print_ext_body(user->buf + len, sizeof(user->buf) - len,
832 log_dict(msg), msg->dict_len,
833 log_text(msg), msg->text_len);
Kay Sieversd39f3d72012-07-16 18:35:30 -0700834
Kay Sieversd39f3d72012-07-16 18:35:30 -0700835 user->prev = msg->flags;
Kay Sieverse11fea92012-05-03 02:29:41 +0200836 user->idx = log_next(user->idx);
837 user->seq++;
liu chuansheng5c53d812012-07-06 09:50:08 -0700838 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200839
840 if (len > count) {
841 ret = -EINVAL;
842 goto out;
843 }
844
845 if (copy_to_user(buf, user->buf, len)) {
846 ret = -EFAULT;
847 goto out;
848 }
849 ret = len;
850out:
851 mutex_unlock(&user->lock);
852 return ret;
853}
854
855static loff_t devkmsg_llseek(struct file *file, loff_t offset, int whence)
856{
857 struct devkmsg_user *user = file->private_data;
858 loff_t ret = 0;
859
860 if (!user)
861 return -EBADF;
862 if (offset)
863 return -ESPIPE;
864
liu chuansheng5c53d812012-07-06 09:50:08 -0700865 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200866 switch (whence) {
867 case SEEK_SET:
868 /* the first record */
869 user->idx = log_first_idx;
870 user->seq = log_first_seq;
871 break;
872 case SEEK_DATA:
873 /*
874 * The first record after the last SYSLOG_ACTION_CLEAR,
875 * like issued by 'dmesg -c'. Reading /dev/kmsg itself
876 * changes no global state, and does not clear anything.
877 */
878 user->idx = clear_idx;
879 user->seq = clear_seq;
880 break;
881 case SEEK_END:
882 /* after the last record */
883 user->idx = log_next_idx;
884 user->seq = log_next_seq;
885 break;
886 default:
887 ret = -EINVAL;
888 }
liu chuansheng5c53d812012-07-06 09:50:08 -0700889 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200890 return ret;
891}
892
893static unsigned int devkmsg_poll(struct file *file, poll_table *wait)
894{
895 struct devkmsg_user *user = file->private_data;
896 int ret = 0;
897
898 if (!user)
899 return POLLERR|POLLNVAL;
900
901 poll_wait(file, &log_wait, wait);
902
liu chuansheng5c53d812012-07-06 09:50:08 -0700903 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200904 if (user->seq < log_next_seq) {
905 /* return error when data has vanished underneath us */
906 if (user->seq < log_first_seq)
907 ret = POLLIN|POLLRDNORM|POLLERR|POLLPRI;
Nicolas Kaiser0a285312013-04-29 16:17:20 -0700908 else
909 ret = POLLIN|POLLRDNORM;
Kay Sieverse11fea92012-05-03 02:29:41 +0200910 }
liu chuansheng5c53d812012-07-06 09:50:08 -0700911 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200912
913 return ret;
914}
915
916static int devkmsg_open(struct inode *inode, struct file *file)
917{
918 struct devkmsg_user *user;
919 int err;
920
Borislav Petkov750afe72016-08-02 14:04:07 -0700921 if (devkmsg_log & DEVKMSG_LOG_MASK_OFF)
922 return -EPERM;
Kay Sieverse11fea92012-05-03 02:29:41 +0200923
Borislav Petkov750afe72016-08-02 14:04:07 -0700924 /* write-only does not need any file context */
925 if ((file->f_flags & O_ACCMODE) != O_WRONLY) {
926 err = check_syslog_permissions(SYSLOG_ACTION_READ_ALL,
927 SYSLOG_FROM_READER);
928 if (err)
929 return err;
930 }
Kay Sieverse11fea92012-05-03 02:29:41 +0200931
932 user = kmalloc(sizeof(struct devkmsg_user), GFP_KERNEL);
933 if (!user)
934 return -ENOMEM;
935
Borislav Petkov750afe72016-08-02 14:04:07 -0700936 ratelimit_default_init(&user->rs);
937 ratelimit_set_flags(&user->rs, RATELIMIT_MSG_ON_RELEASE);
938
Kay Sieverse11fea92012-05-03 02:29:41 +0200939 mutex_init(&user->lock);
940
liu chuansheng5c53d812012-07-06 09:50:08 -0700941 raw_spin_lock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200942 user->idx = log_first_idx;
943 user->seq = log_first_seq;
liu chuansheng5c53d812012-07-06 09:50:08 -0700944 raw_spin_unlock_irq(&logbuf_lock);
Kay Sieverse11fea92012-05-03 02:29:41 +0200945
946 file->private_data = user;
947 return 0;
948}
949
950static int devkmsg_release(struct inode *inode, struct file *file)
951{
952 struct devkmsg_user *user = file->private_data;
953
954 if (!user)
955 return 0;
956
Borislav Petkov750afe72016-08-02 14:04:07 -0700957 ratelimit_state_exit(&user->rs);
958
Kay Sieverse11fea92012-05-03 02:29:41 +0200959 mutex_destroy(&user->lock);
960 kfree(user);
961 return 0;
962}
963
964const struct file_operations kmsg_fops = {
965 .open = devkmsg_open,
966 .read = devkmsg_read,
Al Viro849f3122014-08-23 12:23:53 -0400967 .write_iter = devkmsg_write,
Kay Sieverse11fea92012-05-03 02:29:41 +0200968 .llseek = devkmsg_llseek,
969 .poll = devkmsg_poll,
970 .release = devkmsg_release,
971};
972
Dave Young2965faa2015-09-09 15:38:55 -0700973#ifdef CONFIG_KEXEC_CORE
Neil Horman04d491a2009-04-02 16:58:57 -0700974/*
Dirk Gouders4c1ace62013-11-12 15:08:54 -0800975 * This appends the listed symbols to /proc/vmcore
Neil Horman04d491a2009-04-02 16:58:57 -0700976 *
Dirk Gouders4c1ace62013-11-12 15:08:54 -0800977 * /proc/vmcore is used by various utilities, like crash and makedumpfile to
Neil Horman04d491a2009-04-02 16:58:57 -0700978 * obtain access to symbols that are otherwise very difficult to locate. These
979 * symbols are specifically used so that utilities can access and extract the
980 * dmesg log from a vmcore file after a crash.
981 */
982void log_buf_kexec_setup(void)
983{
984 VMCOREINFO_SYMBOL(log_buf);
Neil Horman04d491a2009-04-02 16:58:57 -0700985 VMCOREINFO_SYMBOL(log_buf_len);
Kay Sievers7ff95542012-05-03 02:29:13 +0200986 VMCOREINFO_SYMBOL(log_first_idx);
Ivan Delalandef4689082016-03-17 14:21:30 -0700987 VMCOREINFO_SYMBOL(clear_idx);
Kay Sievers7ff95542012-05-03 02:29:13 +0200988 VMCOREINFO_SYMBOL(log_next_idx);
Vivek Goyal67914572012-07-18 13:18:12 -0400989 /*
Joe Perches62e32ac2013-07-31 13:53:47 -0700990 * Export struct printk_log size and field offsets. User space tools can
Vivek Goyal67914572012-07-18 13:18:12 -0400991 * parse it and detect any changes to structure down the line.
992 */
Joe Perches62e32ac2013-07-31 13:53:47 -0700993 VMCOREINFO_STRUCT_SIZE(printk_log);
994 VMCOREINFO_OFFSET(printk_log, ts_nsec);
995 VMCOREINFO_OFFSET(printk_log, len);
996 VMCOREINFO_OFFSET(printk_log, text_len);
997 VMCOREINFO_OFFSET(printk_log, dict_len);
Neil Horman04d491a2009-04-02 16:58:57 -0700998}
999#endif
1000
Mike Travis162a7e72011-05-24 17:13:20 -07001001/* requested log_buf_len from kernel cmdline */
1002static unsigned long __initdata new_log_buf_len;
1003
Luis R. Rodriguezc0a318a2014-08-06 16:08:52 -07001004/* we practice scaling the ring buffer by powers of 2 */
1005static void __init log_buf_len_update(unsigned size)
1006{
1007 if (size)
1008 size = roundup_pow_of_two(size);
1009 if (size > log_buf_len)
1010 new_log_buf_len = size;
1011}
1012
Mike Travis162a7e72011-05-24 17:13:20 -07001013/* save requested log_buf_len since it's too early to process it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014static int __init log_buf_len_setup(char *str)
1015{
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -08001016 unsigned size = memparse(str, &str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Luis R. Rodriguezc0a318a2014-08-06 16:08:52 -07001018 log_buf_len_update(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Mike Travis162a7e72011-05-24 17:13:20 -07001020 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
Mike Travis162a7e72011-05-24 17:13:20 -07001022early_param("log_buf_len", log_buf_len_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Geert Uytterhoeven2240a312014-10-13 15:51:11 -07001024#ifdef CONFIG_SMP
1025#define __LOG_CPU_MAX_BUF_LEN (1 << CONFIG_LOG_CPU_MAX_BUF_SHIFT)
1026
Luis R. Rodriguez23b28992014-08-06 16:08:56 -07001027static void __init log_buf_add_cpu(void)
1028{
1029 unsigned int cpu_extra;
1030
1031 /*
1032 * archs should set up cpu_possible_bits properly with
1033 * set_cpu_possible() after setup_arch() but just in
1034 * case lets ensure this is valid.
1035 */
1036 if (num_possible_cpus() == 1)
1037 return;
1038
1039 cpu_extra = (num_possible_cpus() - 1) * __LOG_CPU_MAX_BUF_LEN;
1040
1041 /* by default this will only continue through for large > 64 CPUs */
1042 if (cpu_extra <= __LOG_BUF_LEN / 2)
1043 return;
1044
1045 pr_info("log_buf_len individual max cpu contribution: %d bytes\n",
1046 __LOG_CPU_MAX_BUF_LEN);
1047 pr_info("log_buf_len total cpu_extra contributions: %d bytes\n",
1048 cpu_extra);
1049 pr_info("log_buf_len min size: %d bytes\n", __LOG_BUF_LEN);
1050
1051 log_buf_len_update(cpu_extra + __LOG_BUF_LEN);
1052}
Geert Uytterhoeven2240a312014-10-13 15:51:11 -07001053#else /* !CONFIG_SMP */
1054static inline void log_buf_add_cpu(void) {}
1055#endif /* CONFIG_SMP */
Luis R. Rodriguez23b28992014-08-06 16:08:56 -07001056
Mike Travis162a7e72011-05-24 17:13:20 -07001057void __init setup_log_buf(int early)
1058{
1059 unsigned long flags;
Mike Travis162a7e72011-05-24 17:13:20 -07001060 char *new_log_buf;
1061 int free;
1062
Luis R. Rodriguez23b28992014-08-06 16:08:56 -07001063 if (log_buf != __log_buf)
1064 return;
1065
1066 if (!early && !new_log_buf_len)
1067 log_buf_add_cpu();
1068
Mike Travis162a7e72011-05-24 17:13:20 -07001069 if (!new_log_buf_len)
1070 return;
1071
1072 if (early) {
Santosh Shilimkar9da791d2014-01-21 15:50:23 -08001073 new_log_buf =
Luis R. Rodriguez70300172014-08-06 16:08:49 -07001074 memblock_virt_alloc(new_log_buf_len, LOG_ALIGN);
Mike Travis162a7e72011-05-24 17:13:20 -07001075 } else {
Luis R. Rodriguez70300172014-08-06 16:08:49 -07001076 new_log_buf = memblock_virt_alloc_nopanic(new_log_buf_len,
1077 LOG_ALIGN);
Mike Travis162a7e72011-05-24 17:13:20 -07001078 }
1079
1080 if (unlikely(!new_log_buf)) {
1081 pr_err("log_buf_len: %ld bytes not available\n",
1082 new_log_buf_len);
1083 return;
1084 }
1085
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001086 raw_spin_lock_irqsave(&logbuf_lock, flags);
Mike Travis162a7e72011-05-24 17:13:20 -07001087 log_buf_len = new_log_buf_len;
1088 log_buf = new_log_buf;
1089 new_log_buf_len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001090 free = __LOG_BUF_LEN - log_next_idx;
1091 memcpy(log_buf, __log_buf, __LOG_BUF_LEN);
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001092 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Mike Travis162a7e72011-05-24 17:13:20 -07001093
Luis R. Rodriguezf5405172014-08-06 16:08:54 -07001094 pr_info("log_buf_len: %d bytes\n", log_buf_len);
Mike Travis162a7e72011-05-24 17:13:20 -07001095 pr_info("early log buf free: %d(%d%%)\n",
1096 free, (free * 100) / __LOG_BUF_LEN);
1097}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001099static bool __read_mostly ignore_loglevel;
1100
1101static int __init ignore_loglevel_setup(char *str)
1102{
Neil Zhangd25d9fe2014-08-06 16:09:12 -07001103 ignore_loglevel = true;
Andrew Morton27083ba2013-11-12 15:08:50 -08001104 pr_info("debug: ignoring loglevel setting.\n");
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001105
1106 return 0;
1107}
1108
1109early_param("ignore_loglevel", ignore_loglevel_setup);
1110module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR);
Joe Perches205bd3d2015-02-12 15:01:34 -08001111MODULE_PARM_DESC(ignore_loglevel,
1112 "ignore loglevel setting (prints all kernel messages to the console)");
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001113
Sergey Senozhatskycf775442016-08-02 14:03:56 -07001114static bool suppress_message_printing(int level)
1115{
1116 return (level >= console_loglevel && !ignore_loglevel);
1117}
1118
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001119#ifdef CONFIG_BOOT_PRINTK_DELAY
1120
Namhyung Kim674dff62010-10-26 14:22:48 -07001121static int boot_delay; /* msecs delay after each printk during bootup */
Dave Young3a3b6ed2009-09-22 16:43:31 -07001122static unsigned long long loops_per_msec; /* based on boot_delay */
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001123
1124static int __init boot_delay_setup(char *str)
1125{
1126 unsigned long lpj;
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001127
1128 lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */
1129 loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
1130
1131 get_option(&str, &boot_delay);
1132 if (boot_delay > 10 * 1000)
1133 boot_delay = 0;
1134
Dave Young3a3b6ed2009-09-22 16:43:31 -07001135 pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
1136 "HZ: %d, loops_per_msec: %llu\n",
1137 boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
Dave Young29e9d222013-11-12 15:08:53 -08001138 return 0;
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001139}
Dave Young29e9d222013-11-12 15:08:53 -08001140early_param("boot_delay", boot_delay_setup);
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001141
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001142static void boot_delay_msec(int level)
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001143{
1144 unsigned long long k;
1145 unsigned long timeout;
1146
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001147 if ((boot_delay == 0 || system_state != SYSTEM_BOOTING)
Sergey Senozhatskycf775442016-08-02 14:03:56 -07001148 || suppress_message_printing(level)) {
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001149 return;
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001150 }
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001151
Dave Young3a3b6ed2009-09-22 16:43:31 -07001152 k = (unsigned long long)loops_per_msec * boot_delay;
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001153
1154 timeout = jiffies + msecs_to_jiffies(boot_delay);
1155 while (k) {
1156 k--;
1157 cpu_relax();
1158 /*
1159 * use (volatile) jiffies to prevent
1160 * compiler reduction; loop termination via jiffies
1161 * is secondary and may or may not happen.
1162 */
1163 if (time_after(jiffies, timeout))
1164 break;
1165 touch_nmi_watchdog();
1166 }
1167}
1168#else
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001169static inline void boot_delay_msec(int level)
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001170{
1171}
1172#endif
1173
Alex Eldere99aa462014-08-06 16:09:05 -07001174static bool printk_time = IS_ENABLED(CONFIG_PRINTK_TIME);
Kay Sievers7ff95542012-05-03 02:29:13 +02001175module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
1176
Kay Sievers084681d2012-06-28 09:38:53 +02001177static size_t print_time(u64 ts, char *buf)
1178{
1179 unsigned long rem_nsec;
1180
1181 if (!printk_time)
1182 return 0;
1183
Kay Sievers084681d2012-06-28 09:38:53 +02001184 rem_nsec = do_div(ts, 1000000000);
Roland Dreier35dac272013-01-04 15:35:50 -08001185
1186 if (!buf)
1187 return snprintf(NULL, 0, "[%5lu.000000] ", (unsigned long)ts);
1188
Kay Sievers084681d2012-06-28 09:38:53 +02001189 return sprintf(buf, "[%5lu.%06lu] ",
1190 (unsigned long)ts, rem_nsec / 1000);
1191}
1192
Joe Perches62e32ac2013-07-31 13:53:47 -07001193static size_t print_prefix(const struct printk_log *msg, bool syslog, char *buf)
Kay Sievers649e6ee2012-05-10 04:30:45 +02001194{
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001195 size_t len = 0;
Kay Sievers43a73a52012-07-06 09:50:09 -07001196 unsigned int prefix = (msg->facility << 3) | msg->level;
Kay Sievers649e6ee2012-05-10 04:30:45 +02001197
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001198 if (syslog) {
1199 if (buf) {
Kay Sievers43a73a52012-07-06 09:50:09 -07001200 len += sprintf(buf, "<%u>", prefix);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001201 } else {
1202 len += 3;
Kay Sievers43a73a52012-07-06 09:50:09 -07001203 if (prefix > 999)
1204 len += 3;
1205 else if (prefix > 99)
1206 len += 2;
1207 else if (prefix > 9)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001208 len++;
1209 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001210 }
1211
Kay Sievers084681d2012-06-28 09:38:53 +02001212 len += print_time(msg->ts_nsec, buf ? buf + len : NULL);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001213 return len;
1214}
1215
Joe Perches62e32ac2013-07-31 13:53:47 -07001216static size_t msg_print_text(const struct printk_log *msg, enum log_flags prev,
Kay Sievers5becfb12012-07-09 12:15:42 -07001217 bool syslog, char *buf, size_t size)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001218{
1219 const char *text = log_text(msg);
1220 size_t text_size = msg->text_len;
Kay Sievers5becfb12012-07-09 12:15:42 -07001221 bool prefix = true;
1222 bool newline = true;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001223 size_t len = 0;
1224
Kay Sievers5becfb12012-07-09 12:15:42 -07001225 if ((prev & LOG_CONT) && !(msg->flags & LOG_PREFIX))
1226 prefix = false;
1227
1228 if (msg->flags & LOG_CONT) {
1229 if ((prev & LOG_CONT) && !(prev & LOG_NEWLINE))
1230 prefix = false;
1231
1232 if (!(msg->flags & LOG_NEWLINE))
1233 newline = false;
1234 }
1235
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001236 do {
1237 const char *next = memchr(text, '\n', text_size);
1238 size_t text_len;
1239
1240 if (next) {
1241 text_len = next - text;
1242 next++;
1243 text_size -= next - text;
1244 } else {
1245 text_len = text_size;
1246 }
1247
1248 if (buf) {
1249 if (print_prefix(msg, syslog, NULL) +
Kay Sievers70498252012-07-16 18:35:29 -07001250 text_len + 1 >= size - len)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001251 break;
1252
Kay Sievers5becfb12012-07-09 12:15:42 -07001253 if (prefix)
1254 len += print_prefix(msg, syslog, buf + len);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001255 memcpy(buf + len, text, text_len);
1256 len += text_len;
Kay Sievers5becfb12012-07-09 12:15:42 -07001257 if (next || newline)
1258 buf[len++] = '\n';
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001259 } else {
1260 /* SYSLOG_ACTION_* buffer size only calculation */
Kay Sievers5becfb12012-07-09 12:15:42 -07001261 if (prefix)
1262 len += print_prefix(msg, syslog, NULL);
1263 len += text_len;
1264 if (next || newline)
1265 len++;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001266 }
1267
Kay Sievers5becfb12012-07-09 12:15:42 -07001268 prefix = true;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001269 text = next;
1270 } while (text);
1271
Kay Sievers7ff95542012-05-03 02:29:13 +02001272 return len;
1273}
1274
1275static int syslog_print(char __user *buf, int size)
1276{
1277 char *text;
Joe Perches62e32ac2013-07-31 13:53:47 -07001278 struct printk_log *msg;
Jan Beulich116e90b2012-06-22 16:36:09 +01001279 int len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001280
Kay Sievers70498252012-07-16 18:35:29 -07001281 text = kmalloc(LOG_LINE_MAX + PREFIX_MAX, GFP_KERNEL);
Kay Sievers7ff95542012-05-03 02:29:13 +02001282 if (!text)
1283 return -ENOMEM;
1284
Jan Beulich116e90b2012-06-22 16:36:09 +01001285 while (size > 0) {
1286 size_t n;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001287 size_t skip;
Kay Sievers7ff95542012-05-03 02:29:13 +02001288
Jan Beulich116e90b2012-06-22 16:36:09 +01001289 raw_spin_lock_irq(&logbuf_lock);
1290 if (syslog_seq < log_first_seq) {
1291 /* messages are gone, move to first one */
1292 syslog_seq = log_first_seq;
1293 syslog_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001294 syslog_prev = 0;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001295 syslog_partial = 0;
Jan Beulich116e90b2012-06-22 16:36:09 +01001296 }
1297 if (syslog_seq == log_next_seq) {
1298 raw_spin_unlock_irq(&logbuf_lock);
1299 break;
1300 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001301
1302 skip = syslog_partial;
Jan Beulich116e90b2012-06-22 16:36:09 +01001303 msg = log_from_idx(syslog_idx);
Kay Sievers70498252012-07-16 18:35:29 -07001304 n = msg_print_text(msg, syslog_prev, true, text,
1305 LOG_LINE_MAX + PREFIX_MAX);
Kay Sieverseb02dac2012-07-09 10:05:10 -07001306 if (n - syslog_partial <= size) {
1307 /* message fits into buffer, move forward */
Jan Beulich116e90b2012-06-22 16:36:09 +01001308 syslog_idx = log_next(syslog_idx);
1309 syslog_seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07001310 syslog_prev = msg->flags;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001311 n -= syslog_partial;
1312 syslog_partial = 0;
1313 } else if (!len){
1314 /* partial read(), remember position */
1315 n = size;
1316 syslog_partial += n;
Jan Beulich116e90b2012-06-22 16:36:09 +01001317 } else
1318 n = 0;
1319 raw_spin_unlock_irq(&logbuf_lock);
1320
1321 if (!n)
1322 break;
1323
Kay Sieverseb02dac2012-07-09 10:05:10 -07001324 if (copy_to_user(buf, text + skip, n)) {
Jan Beulich116e90b2012-06-22 16:36:09 +01001325 if (!len)
1326 len = -EFAULT;
1327 break;
1328 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001329
1330 len += n;
1331 size -= n;
1332 buf += n;
Jan Beulich116e90b2012-06-22 16:36:09 +01001333 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001334
1335 kfree(text);
1336 return len;
1337}
1338
1339static int syslog_print_all(char __user *buf, int size, bool clear)
1340{
1341 char *text;
1342 int len = 0;
1343
Kay Sievers70498252012-07-16 18:35:29 -07001344 text = kmalloc(LOG_LINE_MAX + PREFIX_MAX, GFP_KERNEL);
Kay Sievers7ff95542012-05-03 02:29:13 +02001345 if (!text)
1346 return -ENOMEM;
1347
1348 raw_spin_lock_irq(&logbuf_lock);
1349 if (buf) {
1350 u64 next_seq;
1351 u64 seq;
1352 u32 idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001353 enum log_flags prev;
Kay Sievers7ff95542012-05-03 02:29:13 +02001354
Kay Sievers7ff95542012-05-03 02:29:13 +02001355 /*
1356 * Find first record that fits, including all following records,
1357 * into the user-provided buffer for this dump.
Kay Sieverse2ae7152012-06-15 14:07:51 +02001358 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001359 seq = clear_seq;
1360 idx = clear_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001361 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001362 while (seq < log_next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001363 struct printk_log *msg = log_from_idx(idx);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001364
Kay Sievers5becfb12012-07-09 12:15:42 -07001365 len += msg_print_text(msg, prev, true, NULL, 0);
Jeff Mahoneye3756472012-08-10 15:07:09 -04001366 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001367 idx = log_next(idx);
1368 seq++;
1369 }
Kay Sieverse2ae7152012-06-15 14:07:51 +02001370
1371 /* move first record forward until length fits into the buffer */
Kay Sievers7ff95542012-05-03 02:29:13 +02001372 seq = clear_seq;
1373 idx = clear_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001374 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001375 while (len > size && seq < log_next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001376 struct printk_log *msg = log_from_idx(idx);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001377
Kay Sievers5becfb12012-07-09 12:15:42 -07001378 len -= msg_print_text(msg, prev, true, NULL, 0);
Jeff Mahoneye3756472012-08-10 15:07:09 -04001379 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001380 idx = log_next(idx);
1381 seq++;
1382 }
1383
Kay Sieverse2ae7152012-06-15 14:07:51 +02001384 /* last message fitting into this dump */
Kay Sievers7ff95542012-05-03 02:29:13 +02001385 next_seq = log_next_seq;
1386
1387 len = 0;
1388 while (len >= 0 && seq < next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001389 struct printk_log *msg = log_from_idx(idx);
Kay Sievers7ff95542012-05-03 02:29:13 +02001390 int textlen;
1391
Kay Sievers70498252012-07-16 18:35:29 -07001392 textlen = msg_print_text(msg, prev, true, text,
1393 LOG_LINE_MAX + PREFIX_MAX);
Kay Sievers7ff95542012-05-03 02:29:13 +02001394 if (textlen < 0) {
1395 len = textlen;
1396 break;
1397 }
1398 idx = log_next(idx);
1399 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07001400 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001401
1402 raw_spin_unlock_irq(&logbuf_lock);
1403 if (copy_to_user(buf + len, text, textlen))
1404 len = -EFAULT;
1405 else
1406 len += textlen;
1407 raw_spin_lock_irq(&logbuf_lock);
1408
1409 if (seq < log_first_seq) {
1410 /* messages are gone, move to next one */
1411 seq = log_first_seq;
1412 idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001413 prev = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001414 }
1415 }
1416 }
1417
1418 if (clear) {
1419 clear_seq = log_next_seq;
1420 clear_idx = log_next_idx;
1421 }
1422 raw_spin_unlock_irq(&logbuf_lock);
1423
1424 kfree(text);
1425 return len;
1426}
1427
Vasily Averin3ea43312015-06-25 15:01:47 -07001428int do_syslog(int type, char __user *buf, int len, int source)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
Kay Sievers7ff95542012-05-03 02:29:13 +02001430 bool clear = false;
Joe Perchesa39d4a82014-12-10 15:50:15 -08001431 static int saved_console_loglevel = LOGLEVEL_DEFAULT;
Linus Torvaldsee24aeb2011-02-10 17:53:55 -08001432 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Vasily Averin3ea43312015-06-25 15:01:47 -07001434 error = check_syslog_permissions(type, source);
Linus Torvaldsee24aeb2011-02-10 17:53:55 -08001435 if (error)
1436 goto out;
Eric Paris12b30522010-11-15 18:36:29 -05001437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 switch (type) {
Kees Cookd78ca3c2010-02-03 15:37:13 -08001439 case SYSLOG_ACTION_CLOSE: /* Close log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001441 case SYSLOG_ACTION_OPEN: /* Open log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001443 case SYSLOG_ACTION_READ: /* Read from log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 error = -EINVAL;
1445 if (!buf || len < 0)
1446 goto out;
1447 error = 0;
1448 if (!len)
1449 goto out;
1450 if (!access_ok(VERIFY_WRITE, buf, len)) {
1451 error = -EFAULT;
1452 goto out;
1453 }
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +08001454 error = wait_event_interruptible(log_wait,
1455 syslog_seq != log_next_seq);
Kay Sieverscb424ff2012-07-06 09:50:09 -07001456 if (error)
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +08001457 goto out;
Kay Sievers7ff95542012-05-03 02:29:13 +02001458 error = syslog_print(buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001460 /* Read/clear last kernel messages */
1461 case SYSLOG_ACTION_READ_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +02001462 clear = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 /* FALL THRU */
Kees Cookd78ca3c2010-02-03 15:37:13 -08001464 /* Read last kernel messages */
1465 case SYSLOG_ACTION_READ_ALL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 error = -EINVAL;
1467 if (!buf || len < 0)
1468 goto out;
1469 error = 0;
1470 if (!len)
1471 goto out;
1472 if (!access_ok(VERIFY_WRITE, buf, len)) {
1473 error = -EFAULT;
1474 goto out;
1475 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001476 error = syslog_print_all(buf, len, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001478 /* Clear ring buffer */
1479 case SYSLOG_ACTION_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +02001480 syslog_print_all(NULL, 0, true);
Alan Stern4661e352012-06-22 17:12:19 -04001481 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001482 /* Disable logging to console */
1483 case SYSLOG_ACTION_CONSOLE_OFF:
Joe Perchesa39d4a82014-12-10 15:50:15 -08001484 if (saved_console_loglevel == LOGLEVEL_DEFAULT)
Frans Pop1aaad492009-07-06 13:31:48 +02001485 saved_console_loglevel = console_loglevel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 console_loglevel = minimum_console_loglevel;
1487 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001488 /* Enable logging to console */
1489 case SYSLOG_ACTION_CONSOLE_ON:
Joe Perchesa39d4a82014-12-10 15:50:15 -08001490 if (saved_console_loglevel != LOGLEVEL_DEFAULT) {
Frans Pop1aaad492009-07-06 13:31:48 +02001491 console_loglevel = saved_console_loglevel;
Joe Perchesa39d4a82014-12-10 15:50:15 -08001492 saved_console_loglevel = LOGLEVEL_DEFAULT;
Frans Pop1aaad492009-07-06 13:31:48 +02001493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001495 /* Set level of messages printed to console */
1496 case SYSLOG_ACTION_CONSOLE_LEVEL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 error = -EINVAL;
1498 if (len < 1 || len > 8)
1499 goto out;
1500 if (len < minimum_console_loglevel)
1501 len = minimum_console_loglevel;
1502 console_loglevel = len;
Frans Pop1aaad492009-07-06 13:31:48 +02001503 /* Implicitly re-enable logging to console */
Joe Perchesa39d4a82014-12-10 15:50:15 -08001504 saved_console_loglevel = LOGLEVEL_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 error = 0;
1506 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001507 /* Number of chars in the log buffer */
1508 case SYSLOG_ACTION_SIZE_UNREAD:
Kay Sievers7ff95542012-05-03 02:29:13 +02001509 raw_spin_lock_irq(&logbuf_lock);
1510 if (syslog_seq < log_first_seq) {
1511 /* messages are gone, move to first one */
1512 syslog_seq = log_first_seq;
1513 syslog_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07001514 syslog_prev = 0;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001515 syslog_partial = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001516 }
Vasily Averin3ea43312015-06-25 15:01:47 -07001517 if (source == SYSLOG_FROM_PROC) {
Kay Sievers7ff95542012-05-03 02:29:13 +02001518 /*
1519 * Short-cut for poll(/"proc/kmsg") which simply checks
1520 * for pending data, not the size; return the count of
1521 * records, not the length.
1522 */
Alex Eldere97e1262014-08-06 16:08:59 -07001523 error = log_next_seq - syslog_seq;
Kay Sievers7ff95542012-05-03 02:29:13 +02001524 } else {
Kay Sievers5becfb12012-07-09 12:15:42 -07001525 u64 seq = syslog_seq;
1526 u32 idx = syslog_idx;
1527 enum log_flags prev = syslog_prev;
Kay Sievers7ff95542012-05-03 02:29:13 +02001528
1529 error = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001530 while (seq < log_next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001531 struct printk_log *msg = log_from_idx(idx);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001532
Kay Sievers5becfb12012-07-09 12:15:42 -07001533 error += msg_print_text(msg, prev, true, NULL, 0);
Kay Sievers7ff95542012-05-03 02:29:13 +02001534 idx = log_next(idx);
1535 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07001536 prev = msg->flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02001537 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001538 error -= syslog_partial;
Kay Sievers7ff95542012-05-03 02:29:13 +02001539 }
1540 raw_spin_unlock_irq(&logbuf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001542 /* Size of the log buffer */
1543 case SYSLOG_ACTION_SIZE_BUFFER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 error = log_buf_len;
1545 break;
1546 default:
1547 error = -EINVAL;
1548 break;
1549 }
1550out:
1551 return error;
1552}
1553
Heiko Carstens1e7bfb22009-01-14 14:14:29 +01001554SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
Kees Cook637241a2013-06-12 14:04:39 -07001556 return do_syslog(type, buf, len, SYSLOG_FROM_READER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557}
1558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 * Call the console drivers, asking them to write out
1561 * log_buf[start] to log_buf[end - 1].
Torben Hohnac751ef2011-01-25 15:07:35 -08001562 * The console_lock must be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 */
Tejun Heo6fe29352015-06-25 15:01:30 -07001564static void call_console_drivers(int level,
1565 const char *ext_text, size_t ext_len,
1566 const char *text, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567{
Kay Sievers7ff95542012-05-03 02:29:13 +02001568 struct console *con;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
zhangwei(Jovi)07c65f42013-04-29 16:17:16 -07001570 trace_console(text, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Kay Sievers7ff95542012-05-03 02:29:13 +02001572 if (!console_drivers)
1573 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Kay Sievers7ff95542012-05-03 02:29:13 +02001575 for_each_console(con) {
1576 if (exclusive_console && con != exclusive_console)
1577 continue;
1578 if (!(con->flags & CON_ENABLED))
1579 continue;
1580 if (!con->write)
1581 continue;
1582 if (!cpu_online(smp_processor_id()) &&
1583 !(con->flags & CON_ANYTIME))
1584 continue;
Tejun Heo6fe29352015-06-25 15:01:30 -07001585 if (con->flags & CON_EXTENDED)
1586 con->write(con, ext_text, ext_len);
1587 else
1588 con->write(con, text, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}
1591
1592/*
Joe Perches205bd3d2015-02-12 15:01:34 -08001593 * Zap console related locks when oopsing.
1594 * To leave time for slow consoles to print a full oops,
1595 * only zap at most once every 30 seconds.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 */
1597static void zap_locks(void)
1598{
1599 static unsigned long oops_timestamp;
1600
1601 if (time_after_eq(jiffies, oops_timestamp) &&
Joe Perches205bd3d2015-02-12 15:01:34 -08001602 !time_after(jiffies, oops_timestamp + 30 * HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 return;
1604
1605 oops_timestamp = jiffies;
1606
Peter Zijlstra94d24fc2011-06-07 11:17:30 +02001607 debug_locks_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 /* If a crash is occurring, make sure we can't deadlock */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001609 raw_spin_lock_init(&logbuf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 /* And make sure that we print immediately */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +00001611 sema_init(&console_sem, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612}
1613
Dave Youngaf913222009-09-22 16:43:33 -07001614int printk_delay_msec __read_mostly;
1615
1616static inline void printk_delay(void)
1617{
1618 if (unlikely(printk_delay_msec)) {
1619 int m = printk_delay_msec;
1620
1621 while (m--) {
1622 mdelay(1);
1623 touch_nmi_watchdog();
1624 }
1625 }
1626}
1627
Kay Sievers084681d2012-06-28 09:38:53 +02001628/*
1629 * Continuation lines are buffered, and not committed to the record buffer
1630 * until the line is complete, or a race forces it. The line fragments
1631 * though, are printed immediately to the consoles to ensure everything has
1632 * reached the console in case of a kernel crash.
1633 */
1634static struct cont {
1635 char buf[LOG_LINE_MAX];
1636 size_t len; /* length == 0 means unused buffer */
1637 size_t cons; /* bytes written to console */
1638 struct task_struct *owner; /* task of first print*/
1639 u64 ts_nsec; /* time of first print */
1640 u8 level; /* log level of first message */
Alex Elder0b90fec2014-08-06 16:09:03 -07001641 u8 facility; /* log facility of first message */
Kay Sieverseab07262012-07-16 18:35:30 -07001642 enum log_flags flags; /* prefix, newline flags */
Kay Sievers084681d2012-06-28 09:38:53 +02001643 bool flushed:1; /* buffer sealed and committed */
1644} cont;
1645
Kay Sievers70498252012-07-16 18:35:29 -07001646static void cont_flush(enum log_flags flags)
Kay Sievers084681d2012-06-28 09:38:53 +02001647{
1648 if (cont.flushed)
1649 return;
1650 if (cont.len == 0)
1651 return;
1652
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 */
1659 log_store(cont.facility, cont.level, flags | LOG_NOCONS,
1660 cont.ts_nsec, NULL, 0, cont.buf, cont.len);
1661 cont.flags = flags;
1662 cont.flushed = true;
1663 } else {
1664 /*
1665 * If no fragment of this line ever reached the console,
1666 * just submit it to the store and free the buffer.
1667 */
1668 log_store(cont.facility, cont.level, flags, 0,
1669 NULL, 0, cont.buf, cont.len);
1670 cont.len = 0;
1671 }
Kay Sievers084681d2012-06-28 09:38:53 +02001672}
1673
1674static bool cont_add(int facility, int level, const char *text, size_t len)
1675{
1676 if (cont.len && cont.flushed)
1677 return false;
1678
Tejun Heo6fe29352015-06-25 15:01:30 -07001679 /*
1680 * If ext consoles are present, flush and skip in-kernel
1681 * continuation. See nr_ext_console_drivers definition. Also, if
1682 * the line gets too long, split it up in separate records.
1683 */
1684 if (nr_ext_console_drivers || cont.len + len > sizeof(cont.buf)) {
Kay Sievers70498252012-07-16 18:35:29 -07001685 cont_flush(LOG_CONT);
Kay Sievers084681d2012-06-28 09:38:53 +02001686 return false;
1687 }
1688
1689 if (!cont.len) {
1690 cont.facility = facility;
1691 cont.level = level;
1692 cont.owner = current;
1693 cont.ts_nsec = local_clock();
Kay Sieverseab07262012-07-16 18:35:30 -07001694 cont.flags = 0;
Kay Sievers084681d2012-06-28 09:38:53 +02001695 cont.cons = 0;
1696 cont.flushed = false;
1697 }
1698
1699 memcpy(cont.buf + cont.len, text, len);
1700 cont.len += len;
Kay Sieverseab07262012-07-16 18:35:30 -07001701
1702 if (cont.len > (sizeof(cont.buf) * 80) / 100)
1703 cont_flush(LOG_CONT);
1704
Kay Sievers084681d2012-06-28 09:38:53 +02001705 return true;
1706}
1707
1708static size_t cont_print_text(char *text, size_t size)
1709{
1710 size_t textlen = 0;
1711 size_t len;
1712
Kay Sieverseab07262012-07-16 18:35:30 -07001713 if (cont.cons == 0 && (console_prev & LOG_NEWLINE)) {
Kay Sievers084681d2012-06-28 09:38:53 +02001714 textlen += print_time(cont.ts_nsec, text);
1715 size -= textlen;
1716 }
1717
1718 len = cont.len - cont.cons;
1719 if (len > 0) {
1720 if (len+1 > size)
1721 len = size-1;
1722 memcpy(text + textlen, cont.buf + cont.cons, len);
1723 textlen += len;
1724 cont.cons = cont.len;
1725 }
1726
1727 if (cont.flushed) {
Kay Sieverseab07262012-07-16 18:35:30 -07001728 if (cont.flags & LOG_NEWLINE)
1729 text[textlen++] = '\n';
Kay Sievers084681d2012-06-28 09:38:53 +02001730 /* got everything, release buffer */
1731 cont.len = 0;
1732 }
1733 return textlen;
1734}
1735
Kay Sievers7ff95542012-05-03 02:29:13 +02001736asmlinkage int vprintk_emit(int facility, int level,
1737 const char *dict, size_t dictlen,
1738 const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
Sergey Senozhatsky06b031d2016-01-15 16:59:23 -08001740 static bool recursion_bug;
Kay Sievers7ff95542012-05-03 02:29:13 +02001741 static char textbuf[LOG_LINE_MAX];
1742 char *text = textbuf;
Steven Rostedt458df9f2014-06-04 16:11:38 -07001743 size_t text_len = 0;
Kay Sievers5becfb12012-07-09 12:15:42 -07001744 enum log_flags lflags = 0;
Nick Andrewac60ad72008-05-12 21:21:04 +02001745 unsigned long flags;
Ingo Molnar32a76002008-01-25 21:07:58 +01001746 int this_cpu;
Kay Sievers7ff95542012-05-03 02:29:13 +02001747 int printed_len = 0;
Petr Mladekb522dea2016-05-20 17:00:36 -07001748 int nmi_message_lost;
Steven Rostedt458df9f2014-06-04 16:11:38 -07001749 bool in_sched = false;
Jan Kara608873c2014-06-04 16:11:35 -07001750 /* cpu currently holding logbuf_lock in this function */
Alex Elderf0997552014-12-10 15:51:21 -08001751 static unsigned int logbuf_cpu = UINT_MAX;
Jan Kara608873c2014-06-04 16:11:35 -07001752
Joe Perchesa39d4a82014-12-10 15:50:15 -08001753 if (level == LOGLEVEL_SCHED) {
1754 level = LOGLEVEL_DEFAULT;
Steven Rostedt458df9f2014-06-04 16:11:38 -07001755 in_sched = true;
1756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001758 boot_delay_msec(level);
Dave Youngaf913222009-09-22 16:43:33 -07001759 printk_delay();
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001760
Peter Zijlstra1a9a8ae2011-06-07 11:17:30 +02001761 local_irq_save(flags);
Ingo Molnar32a76002008-01-25 21:07:58 +01001762 this_cpu = smp_processor_id();
1763
1764 /*
1765 * Ouch, printk recursed into itself!
1766 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001767 if (unlikely(logbuf_cpu == this_cpu)) {
Ingo Molnar32a76002008-01-25 21:07:58 +01001768 /*
1769 * If a crash is occurring during printk() on this CPU,
1770 * then try to get the crash message out but make sure
1771 * we can't deadlock. Otherwise just return to avoid the
1772 * recursion and return - but flag the recursion so that
1773 * it can be printed at the next appropriate moment:
1774 */
Peter Zijlstra94d24fc2011-06-07 11:17:30 +02001775 if (!oops_in_progress && !lockdep_recursing(current)) {
Sergey Senozhatsky06b031d2016-01-15 16:59:23 -08001776 recursion_bug = true;
Jan Kara5874af22014-08-06 16:09:10 -07001777 local_irq_restore(flags);
1778 return 0;
Ingo Molnar32a76002008-01-25 21:07:58 +01001779 }
1780 zap_locks();
1781 }
1782
Ingo Molnara0f1ccf2006-07-03 00:24:58 -07001783 lockdep_off();
Sergey Senozhatskya8199372016-03-17 14:21:20 -07001784 /* This stops the holder of console_sem just where we want him */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02001785 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02001786 logbuf_cpu = this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Patrick Palka000a7d62014-09-09 14:50:48 -07001788 if (unlikely(recursion_bug)) {
Kay Sievers7ff95542012-05-03 02:29:13 +02001789 static const char recursion_msg[] =
1790 "BUG: recent printk recursion!";
1791
Sergey Senozhatsky06b031d2016-01-15 16:59:23 -08001792 recursion_bug = false;
Kay Sievers7ff95542012-05-03 02:29:13 +02001793 /* emit KERN_CRIT message */
Petr Mladek034633c2014-06-04 16:11:33 -07001794 printed_len += log_store(0, 2, LOG_PREFIX|LOG_NEWLINE, 0,
Patrick Palka000a7d62014-09-09 14:50:48 -07001795 NULL, 0, recursion_msg,
1796 strlen(recursion_msg));
Linus Torvalds5fd29d62009-06-16 10:57:02 -07001797 }
1798
Petr Mladekb522dea2016-05-20 17:00:36 -07001799 nmi_message_lost = get_nmi_message_lost();
1800 if (unlikely(nmi_message_lost)) {
1801 text_len = scnprintf(textbuf, sizeof(textbuf),
1802 "BAD LUCK: lost %d message(s) from NMI context!",
1803 nmi_message_lost);
1804 printed_len += log_store(0, 2, LOG_PREFIX|LOG_NEWLINE, 0,
1805 NULL, 0, textbuf, text_len);
1806 }
1807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 /*
Kay Sievers7ff95542012-05-03 02:29:13 +02001809 * The printf needs to come first; we need the syslog
1810 * prefix which might be passed-in as a parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 */
Markus Trippelsdorf98e35f52014-10-13 15:51:13 -07001812 text_len = vscnprintf(text, sizeof(textbuf), fmt, args);
Nick Andrewac60ad72008-05-12 21:21:04 +02001813
Kay Sievers7ff95542012-05-03 02:29:13 +02001814 /* mark and strip a trailing newline */
Kay Sieversc313af12012-05-14 20:46:27 +02001815 if (text_len && text[text_len-1] == '\n') {
1816 text_len--;
Kay Sievers5becfb12012-07-09 12:15:42 -07001817 lflags |= LOG_NEWLINE;
Kay Sievers7ff95542012-05-03 02:29:13 +02001818 }
Kay Sievers9d90c8d2011-03-13 03:19:51 +01001819
Joe Perches088a52a2012-07-30 14:40:19 -07001820 /* strip kernel syslog prefix and extract log level or control flags */
1821 if (facility == 0) {
1822 int kern_level = printk_get_level(text);
1823
1824 if (kern_level) {
1825 const char *end_of_header = printk_skip_level(text);
1826 switch (kern_level) {
1827 case '0' ... '7':
Joe Perchesa39d4a82014-12-10 15:50:15 -08001828 if (level == LOGLEVEL_DEFAULT)
Joe Perches088a52a2012-07-30 14:40:19 -07001829 level = kern_level - '0';
Joe Perchesa39d4a82014-12-10 15:50:15 -08001830 /* fallthrough */
Joe Perches088a52a2012-07-30 14:40:19 -07001831 case 'd': /* KERN_DEFAULT */
1832 lflags |= LOG_PREFIX;
Joe Perches088a52a2012-07-30 14:40:19 -07001833 }
Petr Mladeke8c42d32014-04-03 14:48:41 -07001834 /*
1835 * No need to check length here because vscnprintf
1836 * put '\0' at the end of the string. Only valid and
1837 * newly printed level is detected.
1838 */
Joe Perches088a52a2012-07-30 14:40:19 -07001839 text_len -= end_of_header - text;
1840 text = (char *)end_of_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001842 }
Nick Andrewac60ad72008-05-12 21:21:04 +02001843
Joe Perchesa39d4a82014-12-10 15:50:15 -08001844 if (level == LOGLEVEL_DEFAULT)
Kay Sieversc313af12012-05-14 20:46:27 +02001845 level = default_message_loglevel;
1846
Kay Sievers5becfb12012-07-09 12:15:42 -07001847 if (dict)
1848 lflags |= LOG_PREFIX|LOG_NEWLINE;
Kay Sievers7ff95542012-05-03 02:29:13 +02001849
Kay Sievers5becfb12012-07-09 12:15:42 -07001850 if (!(lflags & LOG_NEWLINE)) {
Kay Sievers084681d2012-06-28 09:38:53 +02001851 /*
1852 * Flush the conflicting buffer. An earlier newline was missing,
1853 * or another task also prints continuation lines.
1854 */
Kay Sievers5becfb12012-07-09 12:15:42 -07001855 if (cont.len && (lflags & LOG_PREFIX || cont.owner != current))
Kay Sieverseab07262012-07-16 18:35:30 -07001856 cont_flush(LOG_NEWLINE);
Kay Sieversc313af12012-05-14 20:46:27 +02001857
Kay Sievers084681d2012-06-28 09:38:53 +02001858 /* buffer line if possible, otherwise store it right away */
Petr Mladek034633c2014-06-04 16:11:33 -07001859 if (cont_add(facility, level, text, text_len))
1860 printed_len += text_len;
1861 else
1862 printed_len += log_store(facility, level,
1863 lflags | LOG_CONT, 0,
1864 dict, dictlen, text, text_len);
Kay Sievers084681d2012-06-28 09:38:53 +02001865 } else {
1866 bool stored = false;
1867
1868 /*
Steven Rostedtd3620822012-06-29 11:40:11 -04001869 * If an earlier newline was missing and it was the same task,
1870 * either merge it with the current buffer and flush, or if
1871 * there was a race with interrupts (prefix == true) then just
1872 * flush it out and store this line separately.
Arun KS1d3fa372014-01-23 15:54:19 -08001873 * If the preceding printk was from a different task and missed
1874 * a newline, flush and append the newline.
Kay Sievers084681d2012-06-28 09:38:53 +02001875 */
Arun KS1d3fa372014-01-23 15:54:19 -08001876 if (cont.len) {
1877 if (cont.owner == current && !(lflags & LOG_PREFIX))
1878 stored = cont_add(facility, level, text,
1879 text_len);
Kay Sieverseab07262012-07-16 18:35:30 -07001880 cont_flush(LOG_NEWLINE);
Kay Sieversc313af12012-05-14 20:46:27 +02001881 }
Kay Sievers084681d2012-06-28 09:38:53 +02001882
Petr Mladek034633c2014-06-04 16:11:33 -07001883 if (stored)
1884 printed_len += text_len;
1885 else
1886 printed_len += log_store(facility, level, lflags, 0,
1887 dict, dictlen, text, text_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 }
1889
Jan Kara608873c2014-06-04 16:11:35 -07001890 logbuf_cpu = UINT_MAX;
1891 raw_spin_unlock(&logbuf_lock);
Jan Kara5874af22014-08-06 16:09:10 -07001892 lockdep_on();
1893 local_irq_restore(flags);
Jan Kara939f04b2014-06-04 16:11:37 -07001894
Steven Rostedt458df9f2014-06-04 16:11:38 -07001895 /* If called from the scheduler, we can not call up(). */
Andrew Mortond18bbc22014-07-02 15:22:38 -07001896 if (!in_sched) {
Jan Kara5874af22014-08-06 16:09:10 -07001897 lockdep_off();
1898 /*
Andrew Mortond18bbc22014-07-02 15:22:38 -07001899 * Try to acquire and then immediately release the console
1900 * semaphore. The release will print out buffers and wake up
1901 * /dev/kmsg and syslog() users.
1902 */
Sergey Senozhatskya8199372016-03-17 14:21:20 -07001903 if (console_trylock())
Andrew Mortond18bbc22014-07-02 15:22:38 -07001904 console_unlock();
Jan Kara5874af22014-08-06 16:09:10 -07001905 lockdep_on();
Andrew Mortond18bbc22014-07-02 15:22:38 -07001906 }
Steven Rostedt458df9f2014-06-04 16:11:38 -07001907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return printed_len;
1909}
Kay Sievers7ff95542012-05-03 02:29:13 +02001910EXPORT_SYMBOL(vprintk_emit);
1911
1912asmlinkage int vprintk(const char *fmt, va_list args)
1913{
Joe Perchesa39d4a82014-12-10 15:50:15 -08001914 return vprintk_emit(0, LOGLEVEL_DEFAULT, NULL, 0, fmt, args);
Kay Sievers7ff95542012-05-03 02:29:13 +02001915}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916EXPORT_SYMBOL(vprintk);
1917
Kay Sievers7ff95542012-05-03 02:29:13 +02001918asmlinkage int printk_emit(int facility, int level,
1919 const char *dict, size_t dictlen,
1920 const char *fmt, ...)
1921{
1922 va_list args;
1923 int r;
1924
1925 va_start(args, fmt);
1926 r = vprintk_emit(facility, level, dict, dictlen, fmt, args);
1927 va_end(args);
1928
1929 return r;
1930}
1931EXPORT_SYMBOL(printk_emit);
1932
Linus Torvaldsa0cba212016-08-09 10:48:18 -07001933int vprintk_default(const char *fmt, va_list args)
Steven Rostedt (Red Hat)afdc34a2014-06-19 17:33:31 -04001934{
1935 int r;
1936
1937#ifdef CONFIG_KGDB_KDB
1938 if (unlikely(kdb_trap_printk)) {
Daniel Thompsonf7d4ca82014-11-07 18:37:57 +00001939 r = vkdb_printf(KDB_MSGSRC_PRINTK, fmt, args);
Steven Rostedt (Red Hat)afdc34a2014-06-19 17:33:31 -04001940 return r;
1941 }
1942#endif
Linus Torvaldsa0cba212016-08-09 10:48:18 -07001943 r = vprintk_emit(0, LOGLEVEL_DEFAULT, NULL, 0, fmt, args);
Steven Rostedt (Red Hat)afdc34a2014-06-19 17:33:31 -04001944
1945 return r;
1946}
1947EXPORT_SYMBOL_GPL(vprintk_default);
1948
Kay Sievers7ff95542012-05-03 02:29:13 +02001949/**
1950 * printk - print a kernel message
1951 * @fmt: format string
1952 *
1953 * This is printk(). It can be called from any context. We want it to work.
1954 *
1955 * We try to grab the console_lock. If we succeed, it's easy - we log the
1956 * output and call the console drivers. If we fail to get the semaphore, we
1957 * place the output into the log buffer and return. The current holder of
1958 * the console_sem will notice the new output in console_unlock(); and will
1959 * send it to the consoles before releasing the lock.
1960 *
1961 * One effect of this deferred printing is that code which calls printk() and
1962 * then changes console_loglevel may break. This is because console_loglevel
1963 * is inspected when the actual printing occurs.
1964 *
1965 * See also:
1966 * printf(3)
1967 *
1968 * See the vsnprintf() documentation for format string extensions over C99.
1969 */
Andi Kleen722a9f92014-05-02 00:44:38 +02001970asmlinkage __visible int printk(const char *fmt, ...)
Kay Sievers7ff95542012-05-03 02:29:13 +02001971{
1972 va_list args;
1973 int r;
1974
Kay Sievers7ff95542012-05-03 02:29:13 +02001975 va_start(args, fmt);
Linus Torvaldsa0cba212016-08-09 10:48:18 -07001976 r = vprintk_func(fmt, args);
Kay Sievers7ff95542012-05-03 02:29:13 +02001977 va_end(args);
1978
1979 return r;
1980}
1981EXPORT_SYMBOL(printk);
Kay Sievers7f3a7812012-05-09 01:37:51 +02001982
Kay Sievers96efedf2012-07-16 18:35:29 -07001983#else /* CONFIG_PRINTK */
Matt Mackalld59745c2005-05-01 08:59:02 -07001984
Kay Sievers70498252012-07-16 18:35:29 -07001985#define LOG_LINE_MAX 0
1986#define PREFIX_MAX 0
Alex Elder249771b2014-08-06 16:09:08 -07001987
Kay Sievers96efedf2012-07-16 18:35:29 -07001988static u64 syslog_seq;
1989static u32 syslog_idx;
Kay Sieverseab07262012-07-16 18:35:30 -07001990static u64 console_seq;
1991static u32 console_idx;
Kay Sievers96efedf2012-07-16 18:35:29 -07001992static enum log_flags syslog_prev;
1993static u64 log_first_seq;
1994static u32 log_first_idx;
1995static u64 log_next_seq;
Kay Sieverseab07262012-07-16 18:35:30 -07001996static enum log_flags console_prev;
Kay Sievers084681d2012-06-28 09:38:53 +02001997static struct cont {
1998 size_t len;
1999 size_t cons;
2000 u8 level;
2001 bool flushed:1;
2002} cont;
Tejun Heo6fe29352015-06-25 15:01:30 -07002003static char *log_text(const struct printk_log *msg) { return NULL; }
2004static char *log_dict(const struct printk_log *msg) { return NULL; }
Joe Perches62e32ac2013-07-31 13:53:47 -07002005static struct printk_log *log_from_idx(u32 idx) { return NULL; }
Kay Sievers7f3a7812012-05-09 01:37:51 +02002006static u32 log_next(u32 idx) { return 0; }
Tejun Heo6fe29352015-06-25 15:01:30 -07002007static ssize_t msg_print_ext_header(char *buf, size_t size,
2008 struct printk_log *msg, u64 seq,
2009 enum log_flags prev_flags) { return 0; }
2010static ssize_t msg_print_ext_body(char *buf, size_t size,
2011 char *dict, size_t dict_len,
2012 char *text, size_t text_len) { return 0; }
2013static void call_console_drivers(int level,
2014 const char *ext_text, size_t ext_len,
2015 const char *text, size_t len) {}
Joe Perches62e32ac2013-07-31 13:53:47 -07002016static size_t msg_print_text(const struct printk_log *msg, enum log_flags prev,
Kay Sievers5becfb12012-07-09 12:15:42 -07002017 bool syslog, char *buf, size_t size) { return 0; }
Kay Sievers084681d2012-06-28 09:38:53 +02002018static size_t cont_print_text(char *text, size_t size) { return 0; }
Sergey Senozhatskycf775442016-08-02 14:03:56 -07002019static bool suppress_message_printing(int level) { return false; }
Matt Mackalld59745c2005-05-01 08:59:02 -07002020
Steven Rostedt (Red Hat)04b74b22014-11-21 09:16:58 -05002021/* Still needs to be defined for users */
2022DEFINE_PER_CPU(printk_func_t, printk_func);
2023
Kay Sievers7f3a7812012-05-09 01:37:51 +02002024#endif /* CONFIG_PRINTK */
Matt Mackalld59745c2005-05-01 08:59:02 -07002025
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002026#ifdef CONFIG_EARLY_PRINTK
2027struct console *early_console;
2028
Andi Kleen722a9f92014-05-02 00:44:38 +02002029asmlinkage __visible void early_printk(const char *fmt, ...)
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002030{
2031 va_list ap;
Joe Perches1dc62442014-12-10 15:45:53 -08002032 char buf[512];
2033 int n;
2034
2035 if (!early_console)
2036 return;
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002037
2038 va_start(ap, fmt);
Joe Perches1dc62442014-12-10 15:45:53 -08002039 n = vscnprintf(buf, sizeof(buf), fmt, ap);
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002040 va_end(ap);
Joe Perches1dc62442014-12-10 15:45:53 -08002041
2042 early_console->write(early_console, buf, n);
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07002043}
2044#endif
2045
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002046static int __add_preferred_console(char *name, int idx, char *options,
2047 char *brl_options)
2048{
2049 struct console_cmdline *c;
2050 int i;
2051
2052 /*
2053 * See if this tty is not yet registered, and
2054 * if we have a slot free.
2055 */
Joe Perches23475402013-07-31 13:53:46 -07002056 for (i = 0, c = console_cmdline;
2057 i < MAX_CMDLINECONSOLES && c->name[0];
2058 i++, c++) {
2059 if (strcmp(c->name, name) == 0 && c->index == idx) {
2060 if (!brl_options)
2061 selected_console = i;
2062 return 0;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002063 }
Joe Perches23475402013-07-31 13:53:46 -07002064 }
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002065 if (i == MAX_CMDLINECONSOLES)
2066 return -E2BIG;
2067 if (!brl_options)
2068 selected_console = i;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002069 strlcpy(c->name, name, sizeof(c->name));
2070 c->options = options;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002071 braille_set_options(c, brl_options);
2072
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002073 c->index = idx;
2074 return 0;
2075}
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002076/*
Alex Elder0b90fec2014-08-06 16:09:03 -07002077 * Set up a console. Called via do_early_param() in init/main.c
2078 * for each "console=" parameter in the boot command line.
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002079 */
2080static int __init console_setup(char *str)
2081{
Alex Elder0b90fec2014-08-06 16:09:03 -07002082 char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for "ttyS" */
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002083 char *s, *options, *brl_options = NULL;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002084 int idx;
2085
Joe Perchesbbeddf52013-07-31 13:53:45 -07002086 if (_braille_console_setup(&str, &brl_options))
2087 return 1;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002088
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002089 /*
2090 * Decode str into name, index, options.
2091 */
2092 if (str[0] >= '0' && str[0] <= '9') {
Yinghai Lueaa944a2007-07-15 23:37:27 -07002093 strcpy(buf, "ttyS");
2094 strncpy(buf + 4, str, sizeof(buf) - 5);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002095 } else {
Yinghai Lueaa944a2007-07-15 23:37:27 -07002096 strncpy(buf, str, sizeof(buf) - 1);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002097 }
Yinghai Lueaa944a2007-07-15 23:37:27 -07002098 buf[sizeof(buf) - 1] = 0;
Alex Elder249771b2014-08-06 16:09:08 -07002099 options = strchr(str, ',');
2100 if (options)
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002101 *(options++) = 0;
2102#ifdef __sparc__
2103 if (!strcmp(str, "ttya"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07002104 strcpy(buf, "ttyS0");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002105 if (!strcmp(str, "ttyb"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07002106 strcpy(buf, "ttyS1");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002107#endif
Yinghai Lueaa944a2007-07-15 23:37:27 -07002108 for (s = buf; *s; s++)
Alex Elder249771b2014-08-06 16:09:08 -07002109 if (isdigit(*s) || *s == ',')
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002110 break;
2111 idx = simple_strtoul(s, NULL, 10);
2112 *s = 0;
2113
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002114 __add_preferred_console(buf, idx, options, brl_options);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01002115 console_set_on_cmdline = 1;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08002116 return 1;
2117}
2118__setup("console=", console_setup);
2119
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120/**
Matt Mackall3c0547b2005-05-16 21:53:47 -07002121 * add_preferred_console - add a device to the list of preferred consoles.
Martin Waitzddad86c2005-11-13 16:08:14 -08002122 * @name: device name
2123 * @idx: device index
2124 * @options: options for this console
Matt Mackall3c0547b2005-05-16 21:53:47 -07002125 *
2126 * The last preferred console added will be used for kernel messages
2127 * and stdin/out/err for init. Normally this is used by console_setup
2128 * above to handle user-supplied console arguments; however it can also
2129 * be used by arch-specific code either to override the user or more
2130 * commonly to provide a default console (ie from PROM variables) when
2131 * the user has not supplied one.
2132 */
David S. Millerfb445ee2007-12-29 01:19:49 -08002133int add_preferred_console(char *name, int idx, char *options)
Matt Mackall3c0547b2005-05-16 21:53:47 -07002134{
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002135 return __add_preferred_console(name, idx, options, NULL);
Matt Mackall3c0547b2005-05-16 21:53:47 -07002136}
2137
Neil Zhangd25d9fe2014-08-06 16:09:12 -07002138bool console_suspend_enabled = true;
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002139EXPORT_SYMBOL(console_suspend_enabled);
2140
2141static int __init console_suspend_disable(char *str)
2142{
Neil Zhangd25d9fe2014-08-06 16:09:12 -07002143 console_suspend_enabled = false;
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002144 return 1;
2145}
2146__setup("no_console_suspend", console_suspend_disable);
Yanmin Zhang134620f2011-10-31 17:11:27 -07002147module_param_named(console_suspend, console_suspend_enabled,
2148 bool, S_IRUGO | S_IWUSR);
2149MODULE_PARM_DESC(console_suspend, "suspend console during suspend"
2150 " and hibernate operations");
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002151
Matt Mackall3c0547b2005-05-16 21:53:47 -07002152/**
Linus Torvalds557240b2006-06-19 18:16:01 -07002153 * suspend_console - suspend the console subsystem
2154 *
2155 * This disables printk() while we go into suspend states
2156 */
2157void suspend_console(void)
2158{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002159 if (!console_suspend_enabled)
2160 return;
Pavel Machek0d630812008-07-23 21:28:32 -07002161 printk("Suspending console(s) (use no_console_suspend to debug)\n");
Torben Hohnac751ef2011-01-25 15:07:35 -08002162 console_lock();
Linus Torvalds557240b2006-06-19 18:16:01 -07002163 console_suspended = 1;
Jan Karabd8d7cf2014-06-04 16:11:36 -07002164 up_console_sem();
Linus Torvalds557240b2006-06-19 18:16:01 -07002165}
2166
2167void resume_console(void)
2168{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002169 if (!console_suspend_enabled)
2170 return;
Jan Karabd8d7cf2014-06-04 16:11:36 -07002171 down_console_sem();
Linus Torvalds557240b2006-06-19 18:16:01 -07002172 console_suspended = 0;
Torben Hohnac751ef2011-01-25 15:07:35 -08002173 console_unlock();
Linus Torvalds557240b2006-06-19 18:16:01 -07002174}
2175
2176/**
Kevin Cernekee034260d2010-06-03 22:11:25 -07002177 * console_cpu_notify - print deferred console messages after CPU hotplug
2178 * @self: notifier struct
2179 * @action: CPU hotplug event
2180 * @hcpu: unused
2181 *
2182 * If printk() is called from a CPU that is not online yet, the messages
2183 * will be spooled but will not show up on the console. This function is
2184 * called when a new CPU comes online (or fails to come up), and ensures
2185 * that any such output gets printed.
2186 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04002187static int console_cpu_notify(struct notifier_block *self,
Kevin Cernekee034260d2010-06-03 22:11:25 -07002188 unsigned long action, void *hcpu)
2189{
2190 switch (action) {
2191 case CPU_ONLINE:
2192 case CPU_DEAD:
Kevin Cernekee034260d2010-06-03 22:11:25 -07002193 case CPU_DOWN_FAILED:
2194 case CPU_UP_CANCELED:
Torben Hohnac751ef2011-01-25 15:07:35 -08002195 console_lock();
2196 console_unlock();
Kevin Cernekee034260d2010-06-03 22:11:25 -07002197 }
2198 return NOTIFY_OK;
2199}
2200
2201/**
Torben Hohnac751ef2011-01-25 15:07:35 -08002202 * console_lock - lock the console system for exclusive use.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002204 * Acquires a lock which guarantees that the caller has
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 * exclusive access to the console system and the console_drivers list.
2206 *
2207 * Can sleep, returns nothing.
2208 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002209void console_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210{
Daniel Vetter6b898c02012-09-17 23:03:31 +00002211 might_sleep();
2212
Jan Karabd8d7cf2014-06-04 16:11:36 -07002213 down_console_sem();
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01002214 if (console_suspended)
2215 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 console_locked = 1;
2217 console_may_schedule = 1;
2218}
Torben Hohnac751ef2011-01-25 15:07:35 -08002219EXPORT_SYMBOL(console_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Torben Hohnac751ef2011-01-25 15:07:35 -08002221/**
2222 * console_trylock - try to lock the console system for exclusive use.
2223 *
Alex Elder0b90fec2014-08-06 16:09:03 -07002224 * Try to acquire a lock which guarantees that the caller has exclusive
2225 * access to the console system and the console_drivers list.
Torben Hohnac751ef2011-01-25 15:07:35 -08002226 *
2227 * returns 1 on success, and 0 on failure to acquire the lock.
2228 */
2229int console_trylock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230{
Jan Karabd8d7cf2014-06-04 16:11:36 -07002231 if (down_trylock_console_sem())
Torben Hohnac751ef2011-01-25 15:07:35 -08002232 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01002233 if (console_suspended) {
Jan Karabd8d7cf2014-06-04 16:11:36 -07002234 up_console_sem();
Torben Hohnac751ef2011-01-25 15:07:35 -08002235 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01002236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 console_locked = 1;
Sergey Senozhatsky6b97a202016-03-17 14:21:23 -07002238 /*
2239 * When PREEMPT_COUNT disabled we can't reliably detect if it's
2240 * safe to schedule (e.g. calling printk while holding a spin_lock),
2241 * because preempt_disable()/preempt_enable() are just barriers there
2242 * and preempt_count() is always 0.
2243 *
2244 * RCU read sections have a separate preemption counter when
2245 * PREEMPT_RCU enabled thus we must take extra care and check
2246 * rcu_preempt_depth(), otherwise RCU read sections modify
2247 * preempt_count().
2248 */
2249 console_may_schedule = !oops_in_progress &&
2250 preemptible() &&
2251 !rcu_preempt_depth();
Torben Hohnac751ef2011-01-25 15:07:35 -08002252 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253}
Torben Hohnac751ef2011-01-25 15:07:35 -08002254EXPORT_SYMBOL(console_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
2256int is_console_locked(void)
2257{
2258 return console_locked;
2259}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002261/*
2262 * Check if we have any console that is capable of printing while cpu is
2263 * booting or shutting down. Requires console_sem.
2264 */
2265static int have_callable_console(void)
2266{
2267 struct console *con;
2268
2269 for_each_console(con)
Sergey Senozhatskyadaf6592016-03-17 14:21:27 -07002270 if ((con->flags & CON_ENABLED) &&
2271 (con->flags & CON_ANYTIME))
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002272 return 1;
2273
2274 return 0;
2275}
2276
2277/*
2278 * Can we actually use the console at this time on this cpu?
2279 *
2280 * Console drivers may assume that per-cpu resources have been allocated. So
2281 * unless they're explicitly marked as being able to cope (CON_ANYTIME) don't
2282 * call them until this CPU is officially up.
2283 */
2284static inline int can_use_console(void)
2285{
2286 return cpu_online(raw_smp_processor_id()) || have_callable_console();
2287}
2288
Kay Sieverseab07262012-07-16 18:35:30 -07002289static void console_cont_flush(char *text, size_t size)
2290{
2291 unsigned long flags;
2292 size_t len;
2293
2294 raw_spin_lock_irqsave(&logbuf_lock, flags);
2295
2296 if (!cont.len)
2297 goto out;
2298
Sergey Senozhatskycf775442016-08-02 14:03:56 -07002299 if (suppress_message_printing(cont.level)) {
2300 cont.cons = cont.len;
2301 if (cont.flushed)
2302 cont.len = 0;
2303 goto out;
2304 }
2305
Kay Sieverseab07262012-07-16 18:35:30 -07002306 /*
2307 * We still queue earlier records, likely because the console was
2308 * busy. The earlier ones need to be printed before this one, we
2309 * did not flush any fragment so far, so just let it queue up.
2310 */
2311 if (console_seq < log_next_seq && !cont.cons)
2312 goto out;
2313
2314 len = cont_print_text(text, size);
2315 raw_spin_unlock(&logbuf_lock);
2316 stop_critical_timings();
Tejun Heo6fe29352015-06-25 15:01:30 -07002317 call_console_drivers(cont.level, NULL, 0, text, len);
Kay Sieverseab07262012-07-16 18:35:30 -07002318 start_critical_timings();
2319 local_irq_restore(flags);
2320 return;
2321out:
2322 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2323}
Kay Sievers7ff95542012-05-03 02:29:13 +02002324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325/**
Torben Hohnac751ef2011-01-25 15:07:35 -08002326 * console_unlock - unlock the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002328 * Releases the console_lock which the caller holds on the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 * and the console driver list.
2330 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002331 * While the console_lock was held, console output may have been buffered
2332 * by printk(). If this is the case, console_unlock(); emits
2333 * the output prior to releasing the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 *
Kay Sievers7f3a7812012-05-09 01:37:51 +02002335 * If there is output waiting, we wake /dev/kmsg and syslog() users.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002337 * console_unlock(); may be called from any context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002339void console_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340{
Tejun Heo6fe29352015-06-25 15:01:30 -07002341 static char ext_text[CONSOLE_EXT_LOG_MAX];
Kay Sievers70498252012-07-16 18:35:29 -07002342 static char text[LOG_LINE_MAX + PREFIX_MAX];
Kay Sievers7ff95542012-05-03 02:29:13 +02002343 static u64 seen_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 unsigned long flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02002345 bool wake_klogd = false;
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002346 bool do_cond_resched, retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
Linus Torvalds557240b2006-06-19 18:16:01 -07002348 if (console_suspended) {
Jan Karabd8d7cf2014-06-04 16:11:36 -07002349 up_console_sem();
Linus Torvalds557240b2006-06-19 18:16:01 -07002350 return;
2351 }
Antonino A. Daplas78944e52006-08-05 12:14:16 -07002352
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002353 /*
2354 * Console drivers are called under logbuf_lock, so
2355 * @console_may_schedule should be cleared before; however, we may
2356 * end up dumping a lot of lines, for example, if called from
2357 * console registration path, and should invoke cond_resched()
2358 * between lines if allowable. Not doing so can cause a very long
2359 * scheduling stall on a slow console leading to RCU stall and
2360 * softlockup warnings which exacerbate the issue with more
2361 * messages practically incapacitating the system.
2362 */
2363 do_cond_resched = console_may_schedule;
Antonino A. Daplas78944e52006-08-05 12:14:16 -07002364 console_may_schedule = 0;
2365
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002366again:
2367 /*
2368 * We released the console_sem lock, so we need to recheck if
2369 * cpu is online and (if not) is there at least one CON_ANYTIME
2370 * console.
2371 */
2372 if (!can_use_console()) {
2373 console_locked = 0;
2374 up_console_sem();
2375 return;
2376 }
2377
Kay Sievers084681d2012-06-28 09:38:53 +02002378 /* flush buffered message fragment immediately to console */
Kay Sieverseab07262012-07-16 18:35:30 -07002379 console_cont_flush(text, sizeof(text));
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002380
Kay Sievers7ff95542012-05-03 02:29:13 +02002381 for (;;) {
Joe Perches62e32ac2013-07-31 13:53:47 -07002382 struct printk_log *msg;
Tejun Heo6fe29352015-06-25 15:01:30 -07002383 size_t ext_len = 0;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02002384 size_t len;
Kay Sievers7ff95542012-05-03 02:29:13 +02002385 int level;
2386
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002387 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02002388 if (seen_seq != log_next_seq) {
2389 wake_klogd = true;
2390 seen_seq = log_next_seq;
2391 }
2392
2393 if (console_seq < log_first_seq) {
Will Deacon84b5ec82014-06-04 16:11:45 -07002394 len = sprintf(text, "** %u printk messages dropped ** ",
2395 (unsigned)(log_first_seq - console_seq));
2396
Kay Sievers7ff95542012-05-03 02:29:13 +02002397 /* messages are gone, move to first one */
2398 console_seq = log_first_seq;
2399 console_idx = log_first_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002400 console_prev = 0;
Will Deacon84b5ec82014-06-04 16:11:45 -07002401 } else {
2402 len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02002403 }
Kay Sievers084681d2012-06-28 09:38:53 +02002404skip:
Kay Sievers7ff95542012-05-03 02:29:13 +02002405 if (console_seq == log_next_seq)
2406 break;
2407
2408 msg = log_from_idx(console_idx);
Sergey Senozhatskycf775442016-08-02 14:03:56 -07002409 level = msg->level;
2410 if ((msg->flags & LOG_NOCONS) ||
2411 suppress_message_printing(level)) {
Kay Sievers084681d2012-06-28 09:38:53 +02002412 /*
2413 * Skip record we have buffered and already printed
Sergey Senozhatskycf775442016-08-02 14:03:56 -07002414 * directly to the console when we received it, and
2415 * record that has level above the console loglevel.
Kay Sievers084681d2012-06-28 09:38:53 +02002416 */
2417 console_idx = log_next(console_idx);
2418 console_seq++;
Kay Sievers68b65072012-07-06 09:50:09 -07002419 /*
2420 * We will get here again when we register a new
2421 * CON_PRINTBUFFER console. Clear the flag so we
2422 * will properly dump everything later.
2423 */
2424 msg->flags &= ~LOG_NOCONS;
Kay Sieverseab07262012-07-16 18:35:30 -07002425 console_prev = msg->flags;
Kay Sievers084681d2012-06-28 09:38:53 +02002426 goto skip;
2427 }
Kay Sievers649e6ee2012-05-10 04:30:45 +02002428
Will Deacon84b5ec82014-06-04 16:11:45 -07002429 len += msg_print_text(msg, console_prev, false,
2430 text + len, sizeof(text) - len);
Tejun Heo6fe29352015-06-25 15:01:30 -07002431 if (nr_ext_console_drivers) {
2432 ext_len = msg_print_ext_header(ext_text,
2433 sizeof(ext_text),
2434 msg, console_seq, console_prev);
2435 ext_len += msg_print_ext_body(ext_text + ext_len,
2436 sizeof(ext_text) - ext_len,
2437 log_dict(msg), msg->dict_len,
2438 log_text(msg), msg->text_len);
2439 }
Kay Sievers7ff95542012-05-03 02:29:13 +02002440 console_idx = log_next(console_idx);
2441 console_seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07002442 console_prev = msg->flags;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002443 raw_spin_unlock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02002444
Steven Rostedt81d68a92008-05-12 21:20:42 +02002445 stop_critical_timings(); /* don't trace print latency */
Tejun Heo6fe29352015-06-25 15:01:30 -07002446 call_console_drivers(level, ext_text, ext_len, text, len);
Steven Rostedt81d68a92008-05-12 21:20:42 +02002447 start_critical_timings();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 local_irq_restore(flags);
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002449
2450 if (do_cond_resched)
2451 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 }
2453 console_locked = 0;
Feng Tangfe3d8ad2011-03-22 16:34:21 -07002454
2455 /* Release the exclusive_console once it is used */
2456 if (unlikely(exclusive_console))
2457 exclusive_console = NULL;
2458
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002459 raw_spin_unlock(&logbuf_lock);
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002460
Jan Karabd8d7cf2014-06-04 16:11:36 -07002461 up_console_sem();
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002462
2463 /*
2464 * Someone could have filled up the buffer again, so re-check if there's
2465 * something to flush. In case we cannot trylock the console_sem again,
2466 * there's a new owner and the console_unlock() from them will do the
2467 * flush, no worries.
2468 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002469 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02002470 retry = console_seq != log_next_seq;
Peter Zijlstra09dc3cf2011-12-08 14:34:13 -08002471 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2472
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002473 if (retry && console_trylock())
2474 goto again;
2475
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08002476 if (wake_klogd)
2477 wake_up_klogd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478}
Torben Hohnac751ef2011-01-25 15:07:35 -08002479EXPORT_SYMBOL(console_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
Martin Waitzddad86c2005-11-13 16:08:14 -08002481/**
2482 * console_conditional_schedule - yield the CPU if required
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 *
2484 * If the console code is currently allowed to sleep, and
2485 * if this CPU should yield the CPU to another task, do
2486 * so here.
2487 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002488 * Must be called within console_lock();.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 */
2490void __sched console_conditional_schedule(void)
2491{
2492 if (console_may_schedule)
2493 cond_resched();
2494}
2495EXPORT_SYMBOL(console_conditional_schedule);
2496
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497void console_unblank(void)
2498{
2499 struct console *c;
2500
2501 /*
2502 * console_unblank can no longer be called in interrupt context unless
2503 * oops_in_progress is set to 1..
2504 */
2505 if (oops_in_progress) {
Jan Karabd8d7cf2014-06-04 16:11:36 -07002506 if (down_trylock_console_sem() != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 return;
2508 } else
Torben Hohnac751ef2011-01-25 15:07:35 -08002509 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
2511 console_locked = 1;
2512 console_may_schedule = 0;
Robin Getz4d091612009-07-01 21:08:37 -04002513 for_each_console(c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 if ((c->flags & CON_ENABLED) && c->unblank)
2515 c->unblank();
Torben Hohnac751ef2011-01-25 15:07:35 -08002516 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002519/**
2520 * console_flush_on_panic - flush console content on panic
2521 *
2522 * Immediately output all pending messages no matter what.
2523 */
2524void console_flush_on_panic(void)
2525{
2526 /*
2527 * If someone else is holding the console lock, trylock will fail
2528 * and may_schedule may be set. Ignore and proceed to unlock so
2529 * that messages are flushed out. As this can be called from any
2530 * context and we don't want to get preempted while flushing,
2531 * ensure may_schedule is cleared.
2532 */
2533 console_trylock();
2534 console_may_schedule = 0;
2535 console_unlock();
2536}
2537
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538/*
2539 * Return the console tty driver structure and its associated index
2540 */
2541struct tty_driver *console_device(int *index)
2542{
2543 struct console *c;
2544 struct tty_driver *driver = NULL;
2545
Torben Hohnac751ef2011-01-25 15:07:35 -08002546 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04002547 for_each_console(c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 if (!c->device)
2549 continue;
2550 driver = c->device(c, index);
2551 if (driver)
2552 break;
2553 }
Torben Hohnac751ef2011-01-25 15:07:35 -08002554 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 return driver;
2556}
2557
2558/*
2559 * Prevent further output on the passed console device so that (for example)
2560 * serial drivers can disable console output before suspending a port, and can
2561 * re-enable output afterwards.
2562 */
2563void console_stop(struct console *console)
2564{
Torben Hohnac751ef2011-01-25 15:07:35 -08002565 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 console->flags &= ~CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002567 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568}
2569EXPORT_SYMBOL(console_stop);
2570
2571void console_start(struct console *console)
2572{
Torben Hohnac751ef2011-01-25 15:07:35 -08002573 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 console->flags |= CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002575 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576}
2577EXPORT_SYMBOL(console_start);
2578
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002579static int __read_mostly keep_bootcon;
2580
2581static int __init keep_bootcon_setup(char *str)
2582{
2583 keep_bootcon = 1;
Andrew Morton27083ba2013-11-12 15:08:50 -08002584 pr_info("debug: skip boot console de-registration.\n");
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002585
2586 return 0;
2587}
2588
2589early_param("keep_bootcon", keep_bootcon_setup);
2590
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591/*
2592 * The console driver calls this routine during kernel initialization
2593 * to register the console printing procedure with printk() and to
2594 * print any messages that were printed by the kernel before the
2595 * console driver was initialized.
Robin Getz4d091612009-07-01 21:08:37 -04002596 *
2597 * This can happen pretty early during the boot process (because of
2598 * early_printk) - sometimes before setup_arch() completes - be careful
2599 * of what kernel features are used - they may not be initialised yet.
2600 *
2601 * There are two types of consoles - bootconsoles (early_printk) and
2602 * "real" consoles (everything which is not a bootconsole) which are
2603 * handled differently.
2604 * - Any number of bootconsoles can be registered at any time.
2605 * - As soon as a "real" console is registered, all bootconsoles
2606 * will be unregistered automatically.
2607 * - Once a "real" console is registered, any attempt to register a
2608 * bootconsoles will be rejected
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 */
Robin Getz4d091612009-07-01 21:08:37 -04002610void register_console(struct console *newcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611{
Jesper Juhl40dc5652005-10-30 15:02:46 -08002612 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 unsigned long flags;
Robin Getz4d091612009-07-01 21:08:37 -04002614 struct console *bcon = NULL;
Joe Perches23475402013-07-31 13:53:46 -07002615 struct console_cmdline *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Andreas Bießmann16cf48a2013-08-02 12:23:34 +02002617 if (console_drivers)
2618 for_each_console(bcon)
2619 if (WARN(bcon == newcon,
2620 "console '%s%d' already registered\n",
2621 bcon->name, bcon->index))
2622 return;
2623
Robin Getz4d091612009-07-01 21:08:37 -04002624 /*
2625 * before we register a new CON_BOOT console, make sure we don't
2626 * already have a valid console
2627 */
2628 if (console_drivers && newcon->flags & CON_BOOT) {
2629 /* find the last or real console */
2630 for_each_console(bcon) {
2631 if (!(bcon->flags & CON_BOOT)) {
Andrew Morton27083ba2013-11-12 15:08:50 -08002632 pr_info("Too late to register bootconsole %s%d\n",
Robin Getz4d091612009-07-01 21:08:37 -04002633 newcon->name, newcon->index);
2634 return;
2635 }
2636 }
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002637 }
2638
Robin Getz4d091612009-07-01 21:08:37 -04002639 if (console_drivers && console_drivers->flags & CON_BOOT)
2640 bcon = console_drivers;
2641
2642 if (preferred_console < 0 || bcon || !console_drivers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 preferred_console = selected_console;
2644
2645 /*
2646 * See if we want to use this console driver. If we
2647 * didn't select a console we take the first one
2648 * that registers here.
2649 */
2650 if (preferred_console < 0) {
Robin Getz4d091612009-07-01 21:08:37 -04002651 if (newcon->index < 0)
2652 newcon->index = 0;
2653 if (newcon->setup == NULL ||
2654 newcon->setup(newcon, NULL) == 0) {
2655 newcon->flags |= CON_ENABLED;
2656 if (newcon->device) {
2657 newcon->flags |= CON_CONSDEV;
Jan Kiszkacd3a1b82008-05-12 21:21:04 +02002658 preferred_console = 0;
2659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 }
2661 }
2662
2663 /*
2664 * See if this console matches one we selected on
2665 * the command line.
2666 */
Joe Perches23475402013-07-31 13:53:46 -07002667 for (i = 0, c = console_cmdline;
2668 i < MAX_CMDLINECONSOLES && c->name[0];
2669 i++, c++) {
Peter Hurleyc7cef0a2015-03-09 16:27:12 -04002670 if (!newcon->match ||
2671 newcon->match(newcon, c->name, c->index, c->options) != 0) {
2672 /* default matching */
2673 BUILD_BUG_ON(sizeof(c->name) != sizeof(newcon->name));
2674 if (strcmp(c->name, newcon->name) != 0)
2675 continue;
2676 if (newcon->index >= 0 &&
2677 newcon->index != c->index)
2678 continue;
2679 if (newcon->index < 0)
2680 newcon->index = c->index;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002681
Peter Hurleyc7cef0a2015-03-09 16:27:12 -04002682 if (_braille_register_console(newcon, c))
2683 return;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002684
Peter Hurleyc7cef0a2015-03-09 16:27:12 -04002685 if (newcon->setup &&
2686 newcon->setup(newcon, c->options) != 0)
2687 break;
2688 }
2689
Robin Getz4d091612009-07-01 21:08:37 -04002690 newcon->flags |= CON_ENABLED;
Greg Edwardsab4af032005-06-23 00:09:05 -07002691 if (i == selected_console) {
Robin Getz4d091612009-07-01 21:08:37 -04002692 newcon->flags |= CON_CONSDEV;
Greg Edwardsab4af032005-06-23 00:09:05 -07002693 preferred_console = selected_console;
2694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 break;
2696 }
2697
Robin Getz4d091612009-07-01 21:08:37 -04002698 if (!(newcon->flags & CON_ENABLED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 return;
2700
Robin Getz8259cf42009-07-09 13:08:37 -04002701 /*
2702 * If we have a bootconsole, and are switching to a real console,
2703 * don't print everything out again, since when the boot console, and
2704 * the real console are the same physical device, it's annoying to
2705 * see the beginning boot messages twice
2706 */
2707 if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
Robin Getz4d091612009-07-01 21:08:37 -04002708 newcon->flags &= ~CON_PRINTBUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
2710 /*
2711 * Put this console in the list - keep the
2712 * preferred driver at the head of the list.
2713 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002714 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04002715 if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) {
2716 newcon->next = console_drivers;
2717 console_drivers = newcon;
2718 if (newcon->next)
2719 newcon->next->flags &= ~CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 } else {
Robin Getz4d091612009-07-01 21:08:37 -04002721 newcon->next = console_drivers->next;
2722 console_drivers->next = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 }
Tejun Heo6fe29352015-06-25 15:01:30 -07002724
2725 if (newcon->flags & CON_EXTENDED)
2726 if (!nr_ext_console_drivers++)
2727 pr_info("printk: continuation disabled due to ext consoles, expect more fragments in /dev/kmsg\n");
2728
Robin Getz4d091612009-07-01 21:08:37 -04002729 if (newcon->flags & CON_PRINTBUFFER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 /*
Torben Hohnac751ef2011-01-25 15:07:35 -08002731 * console_unlock(); will print out the buffered messages
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 * for us.
2733 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002734 raw_spin_lock_irqsave(&logbuf_lock, flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02002735 console_seq = syslog_seq;
2736 console_idx = syslog_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07002737 console_prev = syslog_prev;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002738 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Feng Tangfe3d8ad2011-03-22 16:34:21 -07002739 /*
2740 * We're about to replay the log buffer. Only do this to the
2741 * just-registered console to avoid excessive message spam to
2742 * the already-registered consoles.
2743 */
2744 exclusive_console = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 }
Torben Hohnac751ef2011-01-25 15:07:35 -08002746 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002747 console_sysfs_notify();
Robin Getz8259cf42009-07-09 13:08:37 -04002748
2749 /*
2750 * By unregistering the bootconsoles after we enable the real console
2751 * we get the "console xxx enabled" message on all the consoles -
2752 * boot consoles, real consoles, etc - this is to ensure that end
2753 * users know there might be something in the kernel's log buffer that
2754 * went to the bootconsole (that they do not see on the real console)
2755 */
Andrew Morton27083ba2013-11-12 15:08:50 -08002756 pr_info("%sconsole [%s%d] enabled\n",
Kees Cook6b802392013-11-12 15:08:49 -08002757 (newcon->flags & CON_BOOT) ? "boot" : "" ,
2758 newcon->name, newcon->index);
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002759 if (bcon &&
2760 ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) &&
2761 !keep_bootcon) {
Kees Cook6b802392013-11-12 15:08:49 -08002762 /* We need to iterate through all boot consoles, to make
2763 * sure we print everything out, before we unregister them.
Robin Getz8259cf42009-07-09 13:08:37 -04002764 */
Robin Getz8259cf42009-07-09 13:08:37 -04002765 for_each_console(bcon)
2766 if (bcon->flags & CON_BOOT)
2767 unregister_console(bcon);
Robin Getz8259cf42009-07-09 13:08:37 -04002768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769}
2770EXPORT_SYMBOL(register_console);
2771
Jesper Juhl40dc5652005-10-30 15:02:46 -08002772int unregister_console(struct console *console)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773{
Jesper Juhl40dc5652005-10-30 15:02:46 -08002774 struct console *a, *b;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002775 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
Andrew Morton27083ba2013-11-12 15:08:50 -08002777 pr_info("%sconsole [%s%d] disabled\n",
Kees Cook6b802392013-11-12 15:08:49 -08002778 (console->flags & CON_BOOT) ? "boot" : "" ,
2779 console->name, console->index);
2780
Joe Perchesbbeddf52013-07-31 13:53:45 -07002781 res = _braille_unregister_console(console);
2782 if (res)
2783 return res;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002784
Joe Perchesbbeddf52013-07-31 13:53:45 -07002785 res = 1;
Torben Hohnac751ef2011-01-25 15:07:35 -08002786 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 if (console_drivers == console) {
2788 console_drivers=console->next;
2789 res = 0;
Benjamin Herrenschmidte9b15b52005-11-23 13:37:44 -08002790 } else if (console_drivers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 for (a=console_drivers->next, b=console_drivers ;
2792 a; b=a, a=b->next) {
2793 if (a == console) {
2794 b->next = a->next;
2795 res = 0;
2796 break;
Jesper Juhl40dc5652005-10-30 15:02:46 -08002797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 }
2799 }
Jesper Juhl40dc5652005-10-30 15:02:46 -08002800
Tejun Heo6fe29352015-06-25 15:01:30 -07002801 if (!res && (console->flags & CON_EXTENDED))
2802 nr_ext_console_drivers--;
2803
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002804 /*
Greg Edwardsab4af032005-06-23 00:09:05 -07002805 * If this isn't the last console and it has CON_CONSDEV set, we
2806 * need to set it on the next preferred console.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 */
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002808 if (console_drivers != NULL && console->flags & CON_CONSDEV)
Greg Edwardsab4af032005-06-23 00:09:05 -07002809 console_drivers->flags |= CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Stephen Chivers7fa21dd2014-05-14 08:04:39 +10002811 console->flags &= ~CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002812 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002813 console_sysfs_notify();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 return res;
2815}
2816EXPORT_SYMBOL(unregister_console);
Matt Mackalld59745c2005-05-01 08:59:02 -07002817
Thierry Reding81cc26f2016-01-15 16:58:21 -08002818/*
2819 * Some boot consoles access data that is in the init section and which will
2820 * be discarded after the initcalls have been run. To make sure that no code
2821 * will access this data, unregister the boot consoles in a late initcall.
2822 *
2823 * If for some reason, such as deferred probe or the driver being a loadable
2824 * module, the real console hasn't registered yet at this point, there will
2825 * be a brief interval in which no messages are logged to the console, which
2826 * makes it difficult to diagnose problems that occur during this time.
2827 *
2828 * To mitigate this problem somewhat, only unregister consoles whose memory
2829 * intersects with the init section. Note that code exists elsewhere to get
2830 * rid of the boot console as soon as the proper console shows up, so there
2831 * won't be side-effects from postponing the removal.
2832 */
Kevin Cernekee034260d2010-06-03 22:11:25 -07002833static int __init printk_late_init(void)
Robin Getz0c5564b2007-08-20 15:22:47 -04002834{
Robin Getz4d091612009-07-01 21:08:37 -04002835 struct console *con;
2836
2837 for_each_console(con) {
Nishanth Aravamudan4c30c6f2011-08-25 15:59:11 -07002838 if (!keep_bootcon && con->flags & CON_BOOT) {
Thierry Reding81cc26f2016-01-15 16:58:21 -08002839 /*
2840 * Make sure to unregister boot consoles whose data
2841 * resides in the init section before the init section
2842 * is discarded. Boot consoles whose data will stick
2843 * around will automatically be unregistered when the
2844 * proper console replaces them.
2845 */
2846 if (init_section_intersects(con, sizeof(*con)))
2847 unregister_console(con);
Robin Getzcb00e992007-08-21 23:14:58 -04002848 }
Robin Getz0c5564b2007-08-20 15:22:47 -04002849 }
Kevin Cernekee034260d2010-06-03 22:11:25 -07002850 hotcpu_notifier(console_cpu_notify, 0);
Robin Getz0c5564b2007-08-20 15:22:47 -04002851 return 0;
2852}
Kevin Cernekee034260d2010-06-03 22:11:25 -07002853late_initcall(printk_late_init);
Robin Getz0c5564b2007-08-20 15:22:47 -04002854
Joe Perches7ef3d2f2008-02-08 04:21:25 -08002855#if defined CONFIG_PRINTK
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002856/*
2857 * Delayed printk version, for scheduler-internal messages:
2858 */
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002859#define PRINTK_PENDING_WAKEUP 0x01
Steven Rostedt458df9f2014-06-04 16:11:38 -07002860#define PRINTK_PENDING_OUTPUT 0x02
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002861
2862static DEFINE_PER_CPU(int, printk_pending);
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002863
2864static void wake_up_klogd_work_func(struct irq_work *irq_work)
2865{
2866 int pending = __this_cpu_xchg(printk_pending, 0);
2867
Steven Rostedt458df9f2014-06-04 16:11:38 -07002868 if (pending & PRINTK_PENDING_OUTPUT) {
2869 /* If trylock fails, someone else is doing the printing */
2870 if (console_trylock())
2871 console_unlock();
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002872 }
2873
2874 if (pending & PRINTK_PENDING_WAKEUP)
2875 wake_up_interruptible(&log_wait);
2876}
2877
2878static DEFINE_PER_CPU(struct irq_work, wake_up_klogd_work) = {
2879 .func = wake_up_klogd_work_func,
2880 .flags = IRQ_WORK_LAZY,
2881};
2882
2883void wake_up_klogd(void)
2884{
2885 preempt_disable();
2886 if (waitqueue_active(&log_wait)) {
2887 this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP);
Christoph Lameterbb964a92014-08-17 12:30:24 -05002888 irq_work_queue(this_cpu_ptr(&wake_up_klogd_work));
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002889 }
2890 preempt_enable();
2891}
Dave Young717115e2008-07-25 01:45:58 -07002892
John Stultzaac74dc2014-06-04 16:11:40 -07002893int printk_deferred(const char *fmt, ...)
Peter Zijlstra600e1452012-03-15 12:35:37 +01002894{
Peter Zijlstra600e1452012-03-15 12:35:37 +01002895 va_list args;
Peter Zijlstra600e1452012-03-15 12:35:37 +01002896 int r;
2897
John Stultz81954602014-06-04 16:11:39 -07002898 preempt_disable();
Peter Zijlstra600e1452012-03-15 12:35:37 +01002899 va_start(args, fmt);
Joe Perchesa39d4a82014-12-10 15:50:15 -08002900 r = vprintk_emit(0, LOGLEVEL_SCHED, NULL, 0, fmt, args);
Peter Zijlstra600e1452012-03-15 12:35:37 +01002901 va_end(args);
2902
Steven Rostedt458df9f2014-06-04 16:11:38 -07002903 __this_cpu_or(printk_pending, PRINTK_PENDING_OUTPUT);
Christoph Lameterbb964a92014-08-17 12:30:24 -05002904 irq_work_queue(this_cpu_ptr(&wake_up_klogd_work));
John Stultz81954602014-06-04 16:11:39 -07002905 preempt_enable();
Peter Zijlstra600e1452012-03-15 12:35:37 +01002906
2907 return r;
2908}
2909
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910/*
2911 * printk rate limiting, lifted from the networking subsystem.
2912 *
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002913 * This enforces a rate limit: not more than 10 kernel messages
2914 * every 5s to make a denial-of-service attack impossible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 */
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002916DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10);
2917
Christian Borntraeger5c828712009-10-23 14:58:11 +02002918int __printk_ratelimit(const char *func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919{
Christian Borntraeger5c828712009-10-23 14:58:11 +02002920 return ___ratelimit(&printk_ratelimit_state, func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921}
Christian Borntraeger5c828712009-10-23 14:58:11 +02002922EXPORT_SYMBOL(__printk_ratelimit);
Andrew Mortonf46c4832006-11-02 22:07:16 -08002923
2924/**
2925 * printk_timed_ratelimit - caller-controlled printk ratelimiting
2926 * @caller_jiffies: pointer to caller's state
2927 * @interval_msecs: minimum interval between prints
2928 *
2929 * printk_timed_ratelimit() returns true if more than @interval_msecs
2930 * milliseconds have elapsed since the last time printk_timed_ratelimit()
2931 * returned true.
2932 */
2933bool printk_timed_ratelimit(unsigned long *caller_jiffies,
2934 unsigned int interval_msecs)
2935{
Alex Elder249771b2014-08-06 16:09:08 -07002936 unsigned long elapsed = jiffies - *caller_jiffies;
2937
2938 if (*caller_jiffies && elapsed <= msecs_to_jiffies(interval_msecs))
2939 return false;
2940
2941 *caller_jiffies = jiffies;
2942 return true;
Andrew Mortonf46c4832006-11-02 22:07:16 -08002943}
2944EXPORT_SYMBOL(printk_timed_ratelimit);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002945
2946static DEFINE_SPINLOCK(dump_list_lock);
2947static LIST_HEAD(dump_list);
2948
2949/**
2950 * kmsg_dump_register - register a kernel log dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002951 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002952 *
2953 * Adds a kernel log dumper to the system. The dump callback in the
2954 * structure will be called when the kernel oopses or panics and must be
2955 * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise.
2956 */
2957int kmsg_dump_register(struct kmsg_dumper *dumper)
2958{
2959 unsigned long flags;
2960 int err = -EBUSY;
2961
2962 /* The dump callback needs to be set */
2963 if (!dumper->dump)
2964 return -EINVAL;
2965
2966 spin_lock_irqsave(&dump_list_lock, flags);
2967 /* Don't allow registering multiple times */
2968 if (!dumper->registered) {
2969 dumper->registered = 1;
Huang Yingfb842b02011-01-12 16:59:43 -08002970 list_add_tail_rcu(&dumper->list, &dump_list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002971 err = 0;
2972 }
2973 spin_unlock_irqrestore(&dump_list_lock, flags);
2974
2975 return err;
2976}
2977EXPORT_SYMBOL_GPL(kmsg_dump_register);
2978
2979/**
2980 * kmsg_dump_unregister - unregister a kmsg dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002981 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002982 *
2983 * Removes a dump device from the system. Returns zero on success and
2984 * %-EINVAL otherwise.
2985 */
2986int kmsg_dump_unregister(struct kmsg_dumper *dumper)
2987{
2988 unsigned long flags;
2989 int err = -EINVAL;
2990
2991 spin_lock_irqsave(&dump_list_lock, flags);
2992 if (dumper->registered) {
2993 dumper->registered = 0;
Huang Yingfb842b02011-01-12 16:59:43 -08002994 list_del_rcu(&dumper->list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002995 err = 0;
2996 }
2997 spin_unlock_irqrestore(&dump_list_lock, flags);
Huang Yingfb842b02011-01-12 16:59:43 -08002998 synchronize_rcu();
Simon Kagstrom456b5652009-10-16 14:09:18 +02002999
3000 return err;
3001}
3002EXPORT_SYMBOL_GPL(kmsg_dump_unregister);
3003
Kay Sievers7ff95542012-05-03 02:29:13 +02003004static bool always_kmsg_dump;
3005module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR);
3006
Simon Kagstrom456b5652009-10-16 14:09:18 +02003007/**
3008 * kmsg_dump - dump kernel log to kernel message dumpers.
3009 * @reason: the reason (oops, panic etc) for dumping
3010 *
Kay Sieverse2ae7152012-06-15 14:07:51 +02003011 * Call each of the registered dumper's dump() callback, which can
3012 * retrieve the kmsg records with kmsg_dump_get_line() or
3013 * kmsg_dump_get_buffer().
Simon Kagstrom456b5652009-10-16 14:09:18 +02003014 */
3015void kmsg_dump(enum kmsg_dump_reason reason)
3016{
Simon Kagstrom456b5652009-10-16 14:09:18 +02003017 struct kmsg_dumper *dumper;
Simon Kagstrom456b5652009-10-16 14:09:18 +02003018 unsigned long flags;
3019
Matthew Garrettc22ab332012-03-05 14:59:10 -08003020 if ((reason > KMSG_DUMP_OOPS) && !always_kmsg_dump)
3021 return;
3022
Huang Yingfb842b02011-01-12 16:59:43 -08003023 rcu_read_lock();
Kay Sieverse2ae7152012-06-15 14:07:51 +02003024 list_for_each_entry_rcu(dumper, &dump_list, list) {
3025 if (dumper->max_reason && reason > dumper->max_reason)
3026 continue;
3027
3028 /* initialize iterator with data about the stored records */
3029 dumper->active = true;
3030
3031 raw_spin_lock_irqsave(&logbuf_lock, flags);
3032 dumper->cur_seq = clear_seq;
3033 dumper->cur_idx = clear_idx;
3034 dumper->next_seq = log_next_seq;
3035 dumper->next_idx = log_next_idx;
3036 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
3037
3038 /* invoke dumper which will iterate over records */
3039 dumper->dump(dumper, reason);
3040
3041 /* reset iterator */
3042 dumper->active = false;
3043 }
Huang Yingfb842b02011-01-12 16:59:43 -08003044 rcu_read_unlock();
Simon Kagstrom456b5652009-10-16 14:09:18 +02003045}
Kay Sieverse2ae7152012-06-15 14:07:51 +02003046
3047/**
Anton Vorontsov533827c2012-07-20 17:28:07 -07003048 * kmsg_dump_get_line_nolock - retrieve one kmsg log line (unlocked version)
3049 * @dumper: registered kmsg dumper
3050 * @syslog: include the "<4>" prefixes
3051 * @line: buffer to copy the line to
3052 * @size: maximum size of the buffer
3053 * @len: length of line placed into buffer
3054 *
3055 * Start at the beginning of the kmsg buffer, with the oldest kmsg
3056 * record, and copy one record into the provided buffer.
3057 *
3058 * Consecutive calls will return the next available record moving
3059 * towards the end of the buffer with the youngest messages.
3060 *
3061 * A return value of FALSE indicates that there are no more records to
3062 * read.
3063 *
3064 * The function is similar to kmsg_dump_get_line(), but grabs no locks.
3065 */
3066bool kmsg_dump_get_line_nolock(struct kmsg_dumper *dumper, bool syslog,
3067 char *line, size_t size, size_t *len)
3068{
Joe Perches62e32ac2013-07-31 13:53:47 -07003069 struct printk_log *msg;
Anton Vorontsov533827c2012-07-20 17:28:07 -07003070 size_t l = 0;
3071 bool ret = false;
3072
3073 if (!dumper->active)
3074 goto out;
3075
3076 if (dumper->cur_seq < log_first_seq) {
3077 /* messages are gone, move to first available one */
3078 dumper->cur_seq = log_first_seq;
3079 dumper->cur_idx = log_first_idx;
3080 }
3081
3082 /* last entry */
3083 if (dumper->cur_seq >= log_next_seq)
3084 goto out;
3085
3086 msg = log_from_idx(dumper->cur_idx);
3087 l = msg_print_text(msg, 0, syslog, line, size);
3088
3089 dumper->cur_idx = log_next(dumper->cur_idx);
3090 dumper->cur_seq++;
3091 ret = true;
3092out:
3093 if (len)
3094 *len = l;
3095 return ret;
3096}
3097
3098/**
Kay Sieverse2ae7152012-06-15 14:07:51 +02003099 * kmsg_dump_get_line - retrieve one kmsg log line
3100 * @dumper: registered kmsg dumper
3101 * @syslog: include the "<4>" prefixes
3102 * @line: buffer to copy the line to
3103 * @size: maximum size of the buffer
3104 * @len: length of line placed into buffer
3105 *
3106 * Start at the beginning of the kmsg buffer, with the oldest kmsg
3107 * record, and copy one record into the provided buffer.
3108 *
3109 * Consecutive calls will return the next available record moving
3110 * towards the end of the buffer with the youngest messages.
3111 *
3112 * A return value of FALSE indicates that there are no more records to
3113 * read.
3114 */
3115bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog,
3116 char *line, size_t size, size_t *len)
3117{
3118 unsigned long flags;
Anton Vorontsov533827c2012-07-20 17:28:07 -07003119 bool ret;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003120
3121 raw_spin_lock_irqsave(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07003122 ret = kmsg_dump_get_line_nolock(dumper, syslog, line, size, len);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003123 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07003124
Kay Sieverse2ae7152012-06-15 14:07:51 +02003125 return ret;
3126}
3127EXPORT_SYMBOL_GPL(kmsg_dump_get_line);
3128
3129/**
3130 * kmsg_dump_get_buffer - copy kmsg log lines
3131 * @dumper: registered kmsg dumper
3132 * @syslog: include the "<4>" prefixes
Randy Dunlap4f0f4af2012-06-30 15:37:24 -07003133 * @buf: buffer to copy the line to
Kay Sieverse2ae7152012-06-15 14:07:51 +02003134 * @size: maximum size of the buffer
3135 * @len: length of line placed into buffer
3136 *
3137 * Start at the end of the kmsg buffer and fill the provided buffer
3138 * with as many of the the *youngest* kmsg records that fit into it.
3139 * If the buffer is large enough, all available kmsg records will be
3140 * copied with a single call.
3141 *
3142 * Consecutive calls will fill the buffer with the next block of
3143 * available older records, not including the earlier retrieved ones.
3144 *
3145 * A return value of FALSE indicates that there are no more records to
3146 * read.
3147 */
3148bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog,
3149 char *buf, size_t size, size_t *len)
3150{
3151 unsigned long flags;
3152 u64 seq;
3153 u32 idx;
3154 u64 next_seq;
3155 u32 next_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07003156 enum log_flags prev;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003157 size_t l = 0;
3158 bool ret = false;
3159
3160 if (!dumper->active)
3161 goto out;
3162
3163 raw_spin_lock_irqsave(&logbuf_lock, flags);
3164 if (dumper->cur_seq < log_first_seq) {
3165 /* messages are gone, move to first available one */
3166 dumper->cur_seq = log_first_seq;
3167 dumper->cur_idx = log_first_idx;
3168 }
3169
3170 /* last entry */
3171 if (dumper->cur_seq >= dumper->next_seq) {
3172 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
3173 goto out;
3174 }
3175
3176 /* calculate length of entire buffer */
3177 seq = dumper->cur_seq;
3178 idx = dumper->cur_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07003179 prev = 0;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003180 while (seq < dumper->next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07003181 struct printk_log *msg = log_from_idx(idx);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003182
Kay Sievers5becfb12012-07-09 12:15:42 -07003183 l += msg_print_text(msg, prev, true, NULL, 0);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003184 idx = log_next(idx);
3185 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07003186 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003187 }
3188
3189 /* move first record forward until length fits into the buffer */
3190 seq = dumper->cur_seq;
3191 idx = dumper->cur_idx;
Kay Sievers5becfb12012-07-09 12:15:42 -07003192 prev = 0;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003193 while (l > size && seq < dumper->next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07003194 struct printk_log *msg = log_from_idx(idx);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003195
Kay Sievers5becfb12012-07-09 12:15:42 -07003196 l -= msg_print_text(msg, prev, true, NULL, 0);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003197 idx = log_next(idx);
3198 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07003199 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003200 }
3201
3202 /* last message in next interation */
3203 next_seq = seq;
3204 next_idx = idx;
3205
3206 l = 0;
3207 while (seq < dumper->next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07003208 struct printk_log *msg = log_from_idx(idx);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003209
Kay Sievers5becfb12012-07-09 12:15:42 -07003210 l += msg_print_text(msg, prev, syslog, buf + l, size - l);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003211 idx = log_next(idx);
3212 seq++;
Kay Sievers5becfb12012-07-09 12:15:42 -07003213 prev = msg->flags;
Kay Sieverse2ae7152012-06-15 14:07:51 +02003214 }
3215
3216 dumper->next_seq = next_seq;
3217 dumper->next_idx = next_idx;
3218 ret = true;
3219 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
3220out:
3221 if (len)
3222 *len = l;
3223 return ret;
3224}
3225EXPORT_SYMBOL_GPL(kmsg_dump_get_buffer);
3226
3227/**
Anton Vorontsov533827c2012-07-20 17:28:07 -07003228 * kmsg_dump_rewind_nolock - reset the interator (unlocked version)
3229 * @dumper: registered kmsg dumper
3230 *
3231 * Reset the dumper's iterator so that kmsg_dump_get_line() and
3232 * kmsg_dump_get_buffer() can be called again and used multiple
3233 * times within the same dumper.dump() callback.
3234 *
3235 * The function is similar to kmsg_dump_rewind(), but grabs no locks.
3236 */
3237void kmsg_dump_rewind_nolock(struct kmsg_dumper *dumper)
3238{
3239 dumper->cur_seq = clear_seq;
3240 dumper->cur_idx = clear_idx;
3241 dumper->next_seq = log_next_seq;
3242 dumper->next_idx = log_next_idx;
3243}
3244
3245/**
Kay Sieverse2ae7152012-06-15 14:07:51 +02003246 * kmsg_dump_rewind - reset the interator
3247 * @dumper: registered kmsg dumper
3248 *
3249 * Reset the dumper's iterator so that kmsg_dump_get_line() and
3250 * kmsg_dump_get_buffer() can be called again and used multiple
3251 * times within the same dumper.dump() callback.
3252 */
3253void kmsg_dump_rewind(struct kmsg_dumper *dumper)
3254{
3255 unsigned long flags;
3256
3257 raw_spin_lock_irqsave(&logbuf_lock, flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07003258 kmsg_dump_rewind_nolock(dumper);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003259 raw_spin_unlock_irqrestore(&logbuf_lock, flags);
3260}
3261EXPORT_SYMBOL_GPL(kmsg_dump_rewind);
Tejun Heo196779b2013-04-30 15:27:12 -07003262
Tejun Heo98e5e1b2013-04-30 15:27:15 -07003263static char dump_stack_arch_desc_str[128];
3264
3265/**
3266 * dump_stack_set_arch_desc - set arch-specific str to show with task dumps
3267 * @fmt: printf-style format string
3268 * @...: arguments for the format string
3269 *
3270 * The configured string will be printed right after utsname during task
3271 * dumps. Usually used to add arch-specific system identifiers. If an
3272 * arch wants to make use of such an ID string, it should initialize this
3273 * as soon as possible during boot.
3274 */
3275void __init dump_stack_set_arch_desc(const char *fmt, ...)
3276{
3277 va_list args;
3278
3279 va_start(args, fmt);
3280 vsnprintf(dump_stack_arch_desc_str, sizeof(dump_stack_arch_desc_str),
3281 fmt, args);
3282 va_end(args);
3283}
3284
Tejun Heo196779b2013-04-30 15:27:12 -07003285/**
3286 * dump_stack_print_info - print generic debug info for dump_stack()
3287 * @log_lvl: log level
3288 *
3289 * Arch-specific dump_stack() implementations can use this function to
3290 * print out the same debug information as the generic dump_stack().
3291 */
3292void dump_stack_print_info(const char *log_lvl)
3293{
3294 printk("%sCPU: %d PID: %d Comm: %.20s %s %s %.*s\n",
3295 log_lvl, raw_smp_processor_id(), current->pid, current->comm,
3296 print_tainted(), init_utsname()->release,
3297 (int)strcspn(init_utsname()->version, " "),
3298 init_utsname()->version);
Tejun Heo98e5e1b2013-04-30 15:27:15 -07003299
3300 if (dump_stack_arch_desc_str[0] != '\0')
3301 printk("%sHardware name: %s\n",
3302 log_lvl, dump_stack_arch_desc_str);
Tejun Heo3d1cb202013-04-30 15:27:22 -07003303
3304 print_worker_info(log_lvl, current);
Tejun Heo196779b2013-04-30 15:27:12 -07003305}
3306
Tejun Heoa43cb952013-04-30 15:27:17 -07003307/**
3308 * show_regs_print_info - print generic debug info for show_regs()
3309 * @log_lvl: log level
3310 *
3311 * show_regs() implementations can use this function to print out generic
3312 * debug information.
3313 */
3314void show_regs_print_info(const char *log_lvl)
3315{
3316 dump_stack_print_info(log_lvl);
3317
Andy Lutomirski8b70ca62016-07-28 15:48:23 -07003318 printk("%stask: %p task.stack: %p\n",
3319 log_lvl, current, task_stack_page(current));
Tejun Heoa43cb952013-04-30 15:27:17 -07003320}
3321
Joe Perches7ef3d2f2008-02-08 04:21:25 -08003322#endif