blob: b9006617710f591bc659e8f522c6d73baa2a04d5 [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>
Hari Bathini692f66f2017-05-08 15:56:18 -070035#include <linux/crash_core.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 Yingfb842b002011-01-12 16:59:43 -080042#include <linux/rculist.h>
Kay Sieverse11fea922012-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>
Ingo Molnare6017572017-02-01 16:36:40 +010048#include <linux/sched/clock.h>
Ingo Molnarb17b0152017-02-08 18:51:35 +010049#include <linux/sched/debug.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010050#include <linux/sched/task_stack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080052#include <linux/uaccess.h>
Christoph Hellwig40a7d9f2016-08-02 14:03:59 -070053#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Johannes Berg95100352011-11-24 20:03:08 +010055#define CREATE_TRACE_POINTS
56#include <trace/events/printk.h>
57
Joe Perchesd197c432013-07-31 13:53:44 -070058#include "console_cmdline.h"
Joe Perchesbbeddf52013-07-31 13:53:45 -070059#include "braille.h"
Petr Mladek42a0bb32016-05-20 17:00:33 -070060#include "internal.h"
Joe Perchesd197c432013-07-31 13:53:44 -070061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062int console_printk[4] = {
Borislav Petkova8fe19e2014-06-04 16:11:46 -070063 CONSOLE_LOGLEVEL_DEFAULT, /* console_loglevel */
Alex Elder42a9dc02014-08-06 16:09:01 -070064 MESSAGE_LOGLEVEL_DEFAULT, /* default_message_loglevel */
Borislav Petkova8fe19e2014-06-04 16:11:46 -070065 CONSOLE_LOGLEVEL_MIN, /* minimum_console_loglevel */
66 CONSOLE_LOGLEVEL_DEFAULT, /* default_console_loglevel */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
Patrick Pletscher0bbfb7c2007-02-17 20:10:16 +010070 * Low level drivers may need that to know if they can schedule in
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * their unblank() callback or not. So let's export it.
72 */
73int oops_in_progress;
74EXPORT_SYMBOL(oops_in_progress);
75
76/*
77 * console_sem protects the console_drivers list, and also
78 * provides serialisation for access to the entire console
79 * driver system.
80 */
Thomas Gleixner5b8c4f22010-09-07 14:33:43 +000081static DEFINE_SEMAPHORE(console_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082struct console *console_drivers;
Ingo Molnara29d1cf2008-06-02 13:19:08 +020083EXPORT_SYMBOL_GPL(console_drivers);
84
Daniel Vetterdaee7792012-09-22 19:52:11 +020085#ifdef CONFIG_LOCKDEP
86static struct lockdep_map console_lock_dep_map = {
87 .name = "console_lock"
88};
89#endif
90
Borislav Petkov750afe72016-08-02 14:04:07 -070091enum devkmsg_log_bits {
92 __DEVKMSG_LOG_BIT_ON = 0,
93 __DEVKMSG_LOG_BIT_OFF,
94 __DEVKMSG_LOG_BIT_LOCK,
95};
96
97enum devkmsg_log_masks {
98 DEVKMSG_LOG_MASK_ON = BIT(__DEVKMSG_LOG_BIT_ON),
99 DEVKMSG_LOG_MASK_OFF = BIT(__DEVKMSG_LOG_BIT_OFF),
100 DEVKMSG_LOG_MASK_LOCK = BIT(__DEVKMSG_LOG_BIT_LOCK),
101};
102
103/* Keep both the 'on' and 'off' bits clear, i.e. ratelimit by default: */
104#define DEVKMSG_LOG_MASK_DEFAULT 0
105
106static unsigned int __read_mostly devkmsg_log = DEVKMSG_LOG_MASK_DEFAULT;
107
108static int __control_devkmsg(char *str)
109{
110 if (!str)
111 return -EINVAL;
112
113 if (!strncmp(str, "on", 2)) {
114 devkmsg_log = DEVKMSG_LOG_MASK_ON;
115 return 2;
116 } else if (!strncmp(str, "off", 3)) {
117 devkmsg_log = DEVKMSG_LOG_MASK_OFF;
118 return 3;
119 } else if (!strncmp(str, "ratelimit", 9)) {
120 devkmsg_log = DEVKMSG_LOG_MASK_DEFAULT;
121 return 9;
122 }
123 return -EINVAL;
124}
125
126static int __init control_devkmsg(char *str)
127{
128 if (__control_devkmsg(str) < 0)
129 return 1;
130
131 /*
132 * Set sysctl string accordingly:
133 */
134 if (devkmsg_log == DEVKMSG_LOG_MASK_ON) {
135 memset(devkmsg_log_str, 0, DEVKMSG_STR_MAX_SIZE);
136 strncpy(devkmsg_log_str, "on", 2);
137 } else if (devkmsg_log == DEVKMSG_LOG_MASK_OFF) {
138 memset(devkmsg_log_str, 0, DEVKMSG_STR_MAX_SIZE);
139 strncpy(devkmsg_log_str, "off", 3);
140 }
141 /* else "ratelimit" which is set by default. */
142
143 /*
144 * Sysctl cannot change it anymore. The kernel command line setting of
145 * this parameter is to force the setting to be permanent throughout the
146 * runtime of the system. This is a precation measure against userspace
147 * trying to be a smarta** and attempting to change it up on us.
148 */
149 devkmsg_log |= DEVKMSG_LOG_MASK_LOCK;
150
151 return 0;
152}
153__setup("printk.devkmsg=", control_devkmsg);
154
155char devkmsg_log_str[DEVKMSG_STR_MAX_SIZE] = "ratelimit";
156
157int devkmsg_sysctl_set_loglvl(struct ctl_table *table, int write,
158 void __user *buffer, size_t *lenp, loff_t *ppos)
159{
160 char old_str[DEVKMSG_STR_MAX_SIZE];
161 unsigned int old;
162 int err;
163
164 if (write) {
165 if (devkmsg_log & DEVKMSG_LOG_MASK_LOCK)
166 return -EINVAL;
167
168 old = devkmsg_log;
169 strncpy(old_str, devkmsg_log_str, DEVKMSG_STR_MAX_SIZE);
170 }
171
172 err = proc_dostring(table, write, buffer, lenp, ppos);
173 if (err)
174 return err;
175
176 if (write) {
177 err = __control_devkmsg(devkmsg_log_str);
178
179 /*
180 * Do not accept an unknown string OR a known string with
181 * trailing crap...
182 */
183 if (err < 0 || (err + 1 != *lenp)) {
184
185 /* ... and restore old setting. */
186 devkmsg_log = old;
187 strncpy(devkmsg_log_str, old_str, DEVKMSG_STR_MAX_SIZE);
188
189 return -EINVAL;
190 }
191 }
192
193 return 0;
194}
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/*
Tejun Heo6fe29352015-06-25 15:01:30 -0700197 * Number of registered extended console drivers.
198 *
199 * If extended consoles are present, in-kernel cont reassembly is disabled
200 * and each fragment is stored as a separate log entry with proper
201 * continuation flag so that every emitted message has full metadata. This
202 * doesn't change the result for regular consoles or /proc/kmsg. For
203 * /dev/kmsg, as long as the reader concatenates messages according to
204 * consecutive continuation flags, the end result should be the same too.
205 */
206static int nr_ext_console_drivers;
207
208/*
Jan Karabd8d7cf2014-06-04 16:11:36 -0700209 * Helper macros to handle lockdep when locking/unlocking console_sem. We use
210 * macros instead of functions so that _RET_IP_ contains useful information.
211 */
212#define down_console_sem() do { \
213 down(&console_sem);\
214 mutex_acquire(&console_lock_dep_map, 0, 0, _RET_IP_);\
215} while (0)
216
217static int __down_trylock_console_sem(unsigned long ip)
218{
Sergey Senozhatskyf9752372016-12-27 23:16:09 +0900219 int lock_failed;
220 unsigned long flags;
221
222 /*
223 * Here and in __up_console_sem() we need to be in safe mode,
224 * because spindump/WARN/etc from under console ->lock will
225 * deadlock in printk()->down_trylock_console_sem() otherwise.
226 */
227 printk_safe_enter_irqsave(flags);
228 lock_failed = down_trylock(&console_sem);
229 printk_safe_exit_irqrestore(flags);
230
231 if (lock_failed)
Jan Karabd8d7cf2014-06-04 16:11:36 -0700232 return 1;
233 mutex_acquire(&console_lock_dep_map, 0, 1, ip);
234 return 0;
235}
236#define down_trylock_console_sem() __down_trylock_console_sem(_RET_IP_)
237
Sergey Senozhatskyf9752372016-12-27 23:16:09 +0900238static void __up_console_sem(unsigned long ip)
239{
240 unsigned long flags;
241
242 mutex_release(&console_lock_dep_map, 1, ip);
243
244 printk_safe_enter_irqsave(flags);
245 up(&console_sem);
246 printk_safe_exit_irqrestore(flags);
247}
248#define up_console_sem() __up_console_sem(_RET_IP_)
Jan Karabd8d7cf2014-06-04 16:11:36 -0700249
250/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 * This is used for debugging the mess that is the VT code by
252 * keeping track if we have the console semaphore held. It's
253 * definitely not the perfect debug tool (we don't know if _WE_
Alex Elder0b90fec2014-08-06 16:09:03 -0700254 * hold it and are racing, but it helps tracking those weird code
255 * paths in the console code where we end up in places I want
256 * locked without the console sempahore held).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 */
Linus Torvalds557240b2006-06-19 18:16:01 -0700258static int console_locked, console_suspended;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260/*
Feng Tangfe3d8ad2011-03-22 16:34:21 -0700261 * If exclusive_console is non-NULL then only this console is to be printed to.
262 */
263static struct console *exclusive_console;
264
265/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 * Array of consoles built from command line options (console=)
267 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269#define MAX_CMDLINECONSOLES 8
270
271static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES];
Joe Perchesd197c432013-07-31 13:53:44 -0700272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273static int preferred_console = -1;
Markus Armbruster9e124fe2008-05-26 23:31:07 +0100274int console_set_on_cmdline;
275EXPORT_SYMBOL(console_set_on_cmdline);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277/* Flag: console code may call schedule() */
278static int console_may_schedule;
279
Kay Sievers7ff95542012-05-03 02:29:13 +0200280/*
281 * The printk log buffer consists of a chain of concatenated variable
282 * length records. Every record starts with a record header, containing
283 * the overall length of the record.
284 *
285 * The heads to the first and last entry in the buffer, as well as the
Alex Elder0b90fec2014-08-06 16:09:03 -0700286 * sequence numbers of these entries are maintained when messages are
287 * stored.
Kay Sievers7ff95542012-05-03 02:29:13 +0200288 *
289 * If the heads indicate available messages, the length in the header
290 * tells the start next message. A length == 0 for the next message
291 * indicates a wrap-around to the beginning of the buffer.
292 *
293 * Every record carries the monotonic timestamp in microseconds, as well as
294 * the standard userspace syslog level and syslog facility. The usual
295 * kernel messages use LOG_KERN; userspace-injected messages always carry
296 * a matching syslog facility, by default LOG_USER. The origin of every
297 * message can be reliably determined that way.
298 *
299 * The human readable log message directly follows the message header. The
300 * length of the message text is stored in the header, the stored message
301 * is not terminated.
302 *
Kay Sieverse11fea922012-05-03 02:29:41 +0200303 * Optionally, a message can carry a dictionary of properties (key/value pairs),
304 * to provide userspace with a machine-readable message context.
305 *
306 * Examples for well-defined, commonly used property names are:
307 * DEVICE=b12:8 device identifier
308 * b12:8 block dev_t
309 * c127:3 char dev_t
310 * n8 netdev ifindex
311 * +sound:card0 subsystem:devname
312 * SUBSYSTEM=pci driver-core subsystem name
313 *
314 * Valid characters in property names are [a-zA-Z0-9.-_]. The plain text value
315 * follows directly after a '=' character. Every property is terminated by
316 * a '\0' character. The last property is not terminated.
317 *
318 * Example of a message structure:
319 * 0000 ff 8f 00 00 00 00 00 00 monotonic time in nsec
320 * 0008 34 00 record is 52 bytes long
321 * 000a 0b 00 text is 11 bytes long
322 * 000c 1f 00 dictionary is 23 bytes long
323 * 000e 03 00 LOG_KERN (facility) LOG_ERR (level)
324 * 0010 69 74 27 73 20 61 20 6c "it's a l"
325 * 69 6e 65 "ine"
326 * 001b 44 45 56 49 43 "DEVIC"
327 * 45 3d 62 38 3a 32 00 44 "E=b8:2\0D"
328 * 52 49 56 45 52 3d 62 75 "RIVER=bu"
329 * 67 "g"
330 * 0032 00 00 00 padding to next message header
331 *
Joe Perches62e32ac2013-07-31 13:53:47 -0700332 * The 'struct printk_log' buffer header must never be directly exported to
Kay Sieverse11fea922012-05-03 02:29:41 +0200333 * userspace, it is a kernel-private implementation detail that might
334 * need to be changed in the future, when the requirements change.
335 *
336 * /dev/kmsg exports the structured data in the following line format:
Antonio Ospiteb3896452015-06-30 14:59:03 -0700337 * "<level>,<sequnum>,<timestamp>,<contflag>[,additional_values, ... ];<message text>\n"
338 *
339 * Users of the export format should ignore possible additional values
340 * separated by ',', and find the message after the ';' character.
Kay Sieverse11fea922012-05-03 02:29:41 +0200341 *
342 * The optional key/value pairs are attached as continuation lines starting
343 * with a space character and terminated by a newline. All possible
344 * non-prinatable characters are escaped in the "\xff" notation.
Kay Sievers7ff95542012-05-03 02:29:13 +0200345 */
Matt Mackalld59745c2005-05-01 08:59:02 -0700346
Kay Sievers084681d2012-06-28 09:38:53 +0200347enum log_flags {
Kay Sievers5becfb12012-07-09 12:15:42 -0700348 LOG_NOCONS = 1, /* already flushed, do not print to console */
349 LOG_NEWLINE = 2, /* text ended with a newline */
350 LOG_PREFIX = 4, /* text started with a prefix */
351 LOG_CONT = 8, /* text is a fragment of a continuation line */
Kay Sievers084681d2012-06-28 09:38:53 +0200352};
353
Joe Perches62e32ac2013-07-31 13:53:47 -0700354struct printk_log {
Kay Sievers7ff95542012-05-03 02:29:13 +0200355 u64 ts_nsec; /* timestamp in nanoseconds */
356 u16 len; /* length of entire record */
357 u16 text_len; /* length of text buffer */
358 u16 dict_len; /* length of dictionary buffer */
Kay Sievers084681d2012-06-28 09:38:53 +0200359 u8 facility; /* syslog facility */
360 u8 flags:5; /* internal record flags */
361 u8 level:3; /* syslog level */
Andrey Ryabinin5c9cf8a2016-01-20 15:00:48 -0800362}
363#ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
364__packed __aligned(4)
365#endif
366;
Kay Sievers7ff95542012-05-03 02:29:13 +0200367
368/*
Steven Rostedt458df9f2014-06-04 16:11:38 -0700369 * The logbuf_lock protects kmsg buffer, indices, counters. This can be taken
370 * within the scheduler's rq lock. It must be released before calling
371 * console_unlock() or anything else that might wake up a process.
Kay Sievers7ff95542012-05-03 02:29:13 +0200372 */
Petr Mladekcf9b1102016-05-20 17:00:42 -0700373DEFINE_RAW_SPINLOCK(logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +0200374
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +0900375/*
376 * Helper macros to lock/unlock logbuf_lock and switch between
377 * printk-safe/unsafe modes.
378 */
379#define logbuf_lock_irq() \
380 do { \
381 printk_safe_enter_irq(); \
382 raw_spin_lock(&logbuf_lock); \
383 } while (0)
384
385#define logbuf_unlock_irq() \
386 do { \
387 raw_spin_unlock(&logbuf_lock); \
388 printk_safe_exit_irq(); \
389 } while (0)
390
391#define logbuf_lock_irqsave(flags) \
392 do { \
393 printk_safe_enter_irqsave(flags); \
394 raw_spin_lock(&logbuf_lock); \
395 } while (0)
396
397#define logbuf_unlock_irqrestore(flags) \
398 do { \
399 raw_spin_unlock(&logbuf_lock); \
400 printk_safe_exit_irqrestore(flags); \
401 } while (0)
402
Kay Sievers96efedf2012-07-16 18:35:29 -0700403#ifdef CONFIG_PRINTK
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -0700404DECLARE_WAIT_QUEUE_HEAD(log_wait);
Kay Sievers7f3a7812012-05-09 01:37:51 +0200405/* the next printk record to read by syslog(READ) or /proc/kmsg */
406static u64 syslog_seq;
407static u32 syslog_idx;
Kay Sieverseb02dac2012-07-09 10:05:10 -0700408static size_t syslog_partial;
Kay Sievers7f3a7812012-05-09 01:37:51 +0200409
410/* index and sequence number of the first record stored in the buffer */
411static u64 log_first_seq;
412static u32 log_first_idx;
413
414/* index and sequence number of the next record to store in the buffer */
415static u64 log_next_seq;
Kay Sievers7f3a7812012-05-09 01:37:51 +0200416static u32 log_next_idx;
417
Kay Sieverseab07262012-07-16 18:35:30 -0700418/* the next printk record to write to the console */
419static u64 console_seq;
420static u32 console_idx;
Kay Sieverseab07262012-07-16 18:35:30 -0700421
Kay Sievers7f3a7812012-05-09 01:37:51 +0200422/* the next printk record to read after the last 'clear' command */
423static u64 clear_seq;
424static u32 clear_idx;
Kay Sievers7ff95542012-05-03 02:29:13 +0200425
Kay Sievers70498252012-07-16 18:35:29 -0700426#define PREFIX_MAX 32
Alex Elder249771b2014-08-06 16:09:08 -0700427#define LOG_LINE_MAX (1024 - PREFIX_MAX)
Kay Sievers7ff95542012-05-03 02:29:13 +0200428
Mathias Krause38246572015-11-06 16:30:38 -0800429#define LOG_LEVEL(v) ((v) & 0x07)
430#define LOG_FACILITY(v) ((v) >> 3 & 0xff)
431
Kay Sievers7ff95542012-05-03 02:29:13 +0200432/* record buffer */
Joe Perches62e32ac2013-07-31 13:53:47 -0700433#define LOG_ALIGN __alignof__(struct printk_log)
Kay Sievers7ff95542012-05-03 02:29:13 +0200434#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
Stephen Warrenf8450fc2012-05-10 16:14:33 -0600435static char __log_buf[__LOG_BUF_LEN] __aligned(LOG_ALIGN);
Matt Mackalld59745c2005-05-01 08:59:02 -0700436static char *log_buf = __log_buf;
Kay Sievers7ff95542012-05-03 02:29:13 +0200437static u32 log_buf_len = __LOG_BUF_LEN;
438
Vasant Hegde14c40002014-08-09 11:15:30 +0530439/* Return log buffer address */
440char *log_buf_addr_get(void)
441{
442 return log_buf;
443}
444
445/* Return log buffer size */
446u32 log_buf_len_get(void)
447{
448 return log_buf_len;
449}
450
Kay Sievers7ff95542012-05-03 02:29:13 +0200451/* human readable text of the record */
Joe Perches62e32ac2013-07-31 13:53:47 -0700452static char *log_text(const struct printk_log *msg)
Kay Sievers7ff95542012-05-03 02:29:13 +0200453{
Joe Perches62e32ac2013-07-31 13:53:47 -0700454 return (char *)msg + sizeof(struct printk_log);
Kay Sievers7ff95542012-05-03 02:29:13 +0200455}
456
457/* optional key/value pair dictionary attached to the record */
Joe Perches62e32ac2013-07-31 13:53:47 -0700458static char *log_dict(const struct printk_log *msg)
Kay Sievers7ff95542012-05-03 02:29:13 +0200459{
Joe Perches62e32ac2013-07-31 13:53:47 -0700460 return (char *)msg + sizeof(struct printk_log) + msg->text_len;
Kay Sievers7ff95542012-05-03 02:29:13 +0200461}
462
463/* get record by index; idx must point to valid msg */
Joe Perches62e32ac2013-07-31 13:53:47 -0700464static struct printk_log *log_from_idx(u32 idx)
Kay Sievers7ff95542012-05-03 02:29:13 +0200465{
Joe Perches62e32ac2013-07-31 13:53:47 -0700466 struct printk_log *msg = (struct printk_log *)(log_buf + idx);
Kay Sievers7ff95542012-05-03 02:29:13 +0200467
468 /*
469 * A length == 0 record is the end of buffer marker. Wrap around and
470 * read the message at the start of the buffer.
471 */
472 if (!msg->len)
Joe Perches62e32ac2013-07-31 13:53:47 -0700473 return (struct printk_log *)log_buf;
Kay Sievers7ff95542012-05-03 02:29:13 +0200474 return msg;
475}
476
477/* get next record; idx must point to valid msg */
478static u32 log_next(u32 idx)
479{
Joe Perches62e32ac2013-07-31 13:53:47 -0700480 struct printk_log *msg = (struct printk_log *)(log_buf + idx);
Kay Sievers7ff95542012-05-03 02:29:13 +0200481
482 /* length == 0 indicates the end of the buffer; wrap */
483 /*
484 * A length == 0 record is the end of buffer marker. Wrap around and
485 * read the message at the start of the buffer as *this* one, and
486 * return the one after that.
487 */
488 if (!msg->len) {
Joe Perches62e32ac2013-07-31 13:53:47 -0700489 msg = (struct printk_log *)log_buf;
Kay Sievers7ff95542012-05-03 02:29:13 +0200490 return msg->len;
491 }
492 return idx + msg->len;
493}
494
Petr Mladekf40e4b9f2014-06-04 16:11:30 -0700495/*
496 * Check whether there is enough free space for the given message.
497 *
498 * The same values of first_idx and next_idx mean that the buffer
499 * is either empty or full.
500 *
501 * If the buffer is empty, we must respect the position of the indexes.
502 * They cannot be reset to the beginning of the buffer.
503 */
504static int logbuf_has_space(u32 msg_size, bool empty)
Petr Mladek0a581692014-06-04 16:11:28 -0700505{
506 u32 free;
507
Petr Mladekf40e4b9f2014-06-04 16:11:30 -0700508 if (log_next_idx > log_first_idx || empty)
Petr Mladek0a581692014-06-04 16:11:28 -0700509 free = max(log_buf_len - log_next_idx, log_first_idx);
510 else
511 free = log_first_idx - log_next_idx;
512
513 /*
514 * We need space also for an empty header that signalizes wrapping
515 * of the buffer.
516 */
517 return free >= msg_size + sizeof(struct printk_log);
518}
519
Petr Mladekf40e4b9f2014-06-04 16:11:30 -0700520static int log_make_free_space(u32 msg_size)
Petr Mladek0a581692014-06-04 16:11:28 -0700521{
Ivan Delalandef4689082016-03-17 14:21:30 -0700522 while (log_first_seq < log_next_seq &&
523 !logbuf_has_space(msg_size, false)) {
Alex Elder0b90fec2014-08-06 16:09:03 -0700524 /* drop old messages until we have enough contiguous space */
Petr Mladek0a581692014-06-04 16:11:28 -0700525 log_first_idx = log_next(log_first_idx);
526 log_first_seq++;
527 }
Petr Mladekf40e4b9f2014-06-04 16:11:30 -0700528
Ivan Delalandef4689082016-03-17 14:21:30 -0700529 if (clear_seq < log_first_seq) {
530 clear_seq = log_first_seq;
531 clear_idx = log_first_idx;
532 }
533
Petr Mladekf40e4b9f2014-06-04 16:11:30 -0700534 /* sequence numbers are equal, so the log buffer is empty */
Ivan Delalandef4689082016-03-17 14:21:30 -0700535 if (logbuf_has_space(msg_size, log_first_seq == log_next_seq))
Petr Mladekf40e4b9f2014-06-04 16:11:30 -0700536 return 0;
537
538 return -ENOMEM;
Petr Mladek0a581692014-06-04 16:11:28 -0700539}
540
Petr Mladek85c870432014-06-04 16:11:31 -0700541/* compute the message size including the padding bytes */
542static u32 msg_used_size(u16 text_len, u16 dict_len, u32 *pad_len)
543{
544 u32 size;
545
546 size = sizeof(struct printk_log) + text_len + dict_len;
547 *pad_len = (-size) & (LOG_ALIGN - 1);
548 size += *pad_len;
549
550 return size;
551}
552
Petr Mladek55bd53a2014-06-04 16:11:32 -0700553/*
554 * Define how much of the log buffer we could take at maximum. The value
555 * must be greater than two. Note that only half of the buffer is available
556 * when the index points to the middle.
557 */
558#define MAX_LOG_TAKE_PART 4
559static const char trunc_msg[] = "<truncated>";
560
561static u32 truncate_msg(u16 *text_len, u16 *trunc_msg_len,
562 u16 *dict_len, u32 *pad_len)
563{
564 /*
565 * The message should not take the whole buffer. Otherwise, it might
566 * get removed too soon.
567 */
568 u32 max_text_len = log_buf_len / MAX_LOG_TAKE_PART;
569 if (*text_len > max_text_len)
570 *text_len = max_text_len;
571 /* enable the warning message */
572 *trunc_msg_len = strlen(trunc_msg);
573 /* disable the "dict" completely */
574 *dict_len = 0;
575 /* compute the size again, count also the warning message */
576 return msg_used_size(*text_len + *trunc_msg_len, 0, pad_len);
577}
578
Kay Sievers7ff95542012-05-03 02:29:13 +0200579/* insert record into the buffer, discard old ones, update heads */
Petr Mladek034633c2014-06-04 16:11:33 -0700580static int log_store(int facility, int level,
581 enum log_flags flags, u64 ts_nsec,
582 const char *dict, u16 dict_len,
583 const char *text, u16 text_len)
Kay Sievers7ff95542012-05-03 02:29:13 +0200584{
Joe Perches62e32ac2013-07-31 13:53:47 -0700585 struct printk_log *msg;
Kay Sievers7ff95542012-05-03 02:29:13 +0200586 u32 size, pad_len;
Petr Mladek55bd53a2014-06-04 16:11:32 -0700587 u16 trunc_msg_len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +0200588
589 /* number of '\0' padding bytes to next message */
Petr Mladek85c870432014-06-04 16:11:31 -0700590 size = msg_used_size(text_len, dict_len, &pad_len);
Kay Sievers7ff95542012-05-03 02:29:13 +0200591
Petr Mladek55bd53a2014-06-04 16:11:32 -0700592 if (log_make_free_space(size)) {
593 /* truncate the message if it is too long for empty buffer */
594 size = truncate_msg(&text_len, &trunc_msg_len,
595 &dict_len, &pad_len);
596 /* survive when the log buffer is too small for trunc_msg */
597 if (log_make_free_space(size))
Petr Mladek034633c2014-06-04 16:11:33 -0700598 return 0;
Petr Mladek55bd53a2014-06-04 16:11:32 -0700599 }
Kay Sievers7ff95542012-05-03 02:29:13 +0200600
Petr Mladek39b25102014-04-03 14:48:42 -0700601 if (log_next_idx + size + sizeof(struct printk_log) > log_buf_len) {
Kay Sievers7ff95542012-05-03 02:29:13 +0200602 /*
603 * This message + an additional empty header does not fit
604 * at the end of the buffer. Add an empty header with len == 0
605 * to signify a wrap around.
606 */
Joe Perches62e32ac2013-07-31 13:53:47 -0700607 memset(log_buf + log_next_idx, 0, sizeof(struct printk_log));
Kay Sievers7ff95542012-05-03 02:29:13 +0200608 log_next_idx = 0;
609 }
610
611 /* fill message */
Joe Perches62e32ac2013-07-31 13:53:47 -0700612 msg = (struct printk_log *)(log_buf + log_next_idx);
Kay Sievers7ff95542012-05-03 02:29:13 +0200613 memcpy(log_text(msg), text, text_len);
614 msg->text_len = text_len;
Petr Mladek55bd53a2014-06-04 16:11:32 -0700615 if (trunc_msg_len) {
616 memcpy(log_text(msg) + text_len, trunc_msg, trunc_msg_len);
617 msg->text_len += trunc_msg_len;
618 }
Kay Sievers7ff95542012-05-03 02:29:13 +0200619 memcpy(log_dict(msg), dict, dict_len);
620 msg->dict_len = dict_len;
Kay Sievers084681d2012-06-28 09:38:53 +0200621 msg->facility = facility;
622 msg->level = level & 7;
623 msg->flags = flags & 0x1f;
624 if (ts_nsec > 0)
625 msg->ts_nsec = ts_nsec;
626 else
627 msg->ts_nsec = local_clock();
Kay Sievers7ff95542012-05-03 02:29:13 +0200628 memset(log_dict(msg) + dict_len, 0, pad_len);
Petr Mladekfce6e032014-04-03 14:48:43 -0700629 msg->len = size;
Kay Sievers7ff95542012-05-03 02:29:13 +0200630
631 /* insert message */
632 log_next_idx += msg->len;
633 log_next_seq++;
Petr Mladek034633c2014-06-04 16:11:33 -0700634
635 return msg->text_len;
Kay Sievers7ff95542012-05-03 02:29:13 +0200636}
Matt Mackalld59745c2005-05-01 08:59:02 -0700637
Alex Eldere99aa462014-08-06 16:09:05 -0700638int dmesg_restrict = IS_ENABLED(CONFIG_SECURITY_DMESG_RESTRICT);
Kees Cook637241a2013-06-12 14:04:39 -0700639
640static int syslog_action_restricted(int type)
641{
642 if (dmesg_restrict)
643 return 1;
644 /*
645 * Unless restricted, we allow "read all" and "get buffer size"
646 * for everybody.
647 */
648 return type != SYSLOG_ACTION_READ_ALL &&
649 type != SYSLOG_ACTION_SIZE_BUFFER;
650}
651
Kees Cookc71b02e2017-08-09 21:11:00 -0700652static int check_syslog_permissions(int type, int source)
Kees Cook637241a2013-06-12 14:04:39 -0700653{
654 /*
655 * If this is from /proc/kmsg and we've already opened it, then we've
656 * already done the capabilities checks at open time.
657 */
Vasily Averin3ea43312015-06-25 15:01:47 -0700658 if (source == SYSLOG_FROM_PROC && type != SYSLOG_ACTION_OPEN)
Vasily Averind194e5d2015-06-25 15:01:44 -0700659 goto ok;
Kees Cook637241a2013-06-12 14:04:39 -0700660
661 if (syslog_action_restricted(type)) {
662 if (capable(CAP_SYSLOG))
Vasily Averind194e5d2015-06-25 15:01:44 -0700663 goto ok;
Kees Cook637241a2013-06-12 14:04:39 -0700664 /*
665 * For historical reasons, accept CAP_SYS_ADMIN too, with
666 * a warning.
667 */
668 if (capable(CAP_SYS_ADMIN)) {
669 pr_warn_once("%s (%d): Attempt to access syslog with "
670 "CAP_SYS_ADMIN but no CAP_SYSLOG "
671 "(deprecated).\n",
672 current->comm, task_pid_nr(current));
Vasily Averind194e5d2015-06-25 15:01:44 -0700673 goto ok;
Kees Cook637241a2013-06-12 14:04:39 -0700674 }
675 return -EPERM;
676 }
Vasily Averind194e5d2015-06-25 15:01:44 -0700677ok:
Kees Cook637241a2013-06-12 14:04:39 -0700678 return security_syslog(type);
679}
680
Tejun Heod43ff432015-06-25 15:01:24 -0700681static void append_char(char **pp, char *e, char c)
682{
683 if (*pp < e)
684 *(*pp)++ = c;
685}
Kees Cook637241a2013-06-12 14:04:39 -0700686
Tejun Heo0a295e672015-06-25 15:01:27 -0700687static ssize_t msg_print_ext_header(char *buf, size_t size,
Linus Torvalds5aa068e2016-10-25 11:27:31 -0700688 struct printk_log *msg, u64 seq)
Tejun Heo0a295e672015-06-25 15:01:27 -0700689{
690 u64 ts_usec = msg->ts_nsec;
Tejun Heo0a295e672015-06-25 15:01:27 -0700691
692 do_div(ts_usec, 1000);
693
Tejun Heo0a295e672015-06-25 15:01:27 -0700694 return scnprintf(buf, size, "%u,%llu,%llu,%c;",
Linus Torvalds5aa068e2016-10-25 11:27:31 -0700695 (msg->facility << 3) | msg->level, seq, ts_usec,
696 msg->flags & LOG_CONT ? 'c' : '-');
Tejun Heo0a295e672015-06-25 15:01:27 -0700697}
698
699static ssize_t msg_print_ext_body(char *buf, size_t size,
700 char *dict, size_t dict_len,
701 char *text, size_t text_len)
702{
703 char *p = buf, *e = buf + size;
704 size_t i;
705
706 /* escape non-printable characters */
707 for (i = 0; i < text_len; i++) {
708 unsigned char c = text[i];
709
710 if (c < ' ' || c >= 127 || c == '\\')
711 p += scnprintf(p, e - p, "\\x%02x", c);
712 else
713 append_char(&p, e, c);
714 }
715 append_char(&p, e, '\n');
716
717 if (dict_len) {
718 bool line = true;
719
720 for (i = 0; i < dict_len; i++) {
721 unsigned char c = dict[i];
722
723 if (line) {
724 append_char(&p, e, ' ');
725 line = false;
726 }
727
728 if (c == '\0') {
729 append_char(&p, e, '\n');
730 line = true;
731 continue;
732 }
733
734 if (c < ' ' || c >= 127 || c == '\\') {
735 p += scnprintf(p, e - p, "\\x%02x", c);
736 continue;
737 }
738
739 append_char(&p, e, c);
740 }
741 append_char(&p, e, '\n');
742 }
743
744 return p - buf;
745}
746
Kay Sieverse11fea922012-05-03 02:29:41 +0200747/* /dev/kmsg - userspace message inject/listen interface */
748struct devkmsg_user {
749 u64 seq;
750 u32 idx;
Borislav Petkov750afe72016-08-02 14:04:07 -0700751 struct ratelimit_state rs;
Kay Sieverse11fea922012-05-03 02:29:41 +0200752 struct mutex lock;
Tejun Heod43ff432015-06-25 15:01:24 -0700753 char buf[CONSOLE_EXT_LOG_MAX];
Kay Sieverse11fea922012-05-03 02:29:41 +0200754};
755
Al Viro849f3122014-08-23 12:23:53 -0400756static ssize_t devkmsg_write(struct kiocb *iocb, struct iov_iter *from)
Kay Sieverse11fea922012-05-03 02:29:41 +0200757{
758 char *buf, *line;
Kay Sieverse11fea922012-05-03 02:29:41 +0200759 int level = default_message_loglevel;
760 int facility = 1; /* LOG_USER */
Borislav Petkov750afe72016-08-02 14:04:07 -0700761 struct file *file = iocb->ki_filp;
762 struct devkmsg_user *user = file->private_data;
Christoph Hellwig66ee59a2015-02-11 19:56:46 +0100763 size_t len = iov_iter_count(from);
Kay Sieverse11fea922012-05-03 02:29:41 +0200764 ssize_t ret = len;
765
Borislav Petkov750afe72016-08-02 14:04:07 -0700766 if (!user || len > LOG_LINE_MAX)
Kay Sieverse11fea922012-05-03 02:29:41 +0200767 return -EINVAL;
Borislav Petkov750afe72016-08-02 14:04:07 -0700768
769 /* Ignore when user logging is disabled. */
770 if (devkmsg_log & DEVKMSG_LOG_MASK_OFF)
771 return len;
772
773 /* Ratelimit when not explicitly enabled. */
774 if (!(devkmsg_log & DEVKMSG_LOG_MASK_ON)) {
775 if (!___ratelimit(&user->rs, current->comm))
776 return ret;
777 }
778
Kay Sieverse11fea922012-05-03 02:29:41 +0200779 buf = kmalloc(len+1, GFP_KERNEL);
780 if (buf == NULL)
781 return -ENOMEM;
782
Al Viro849f3122014-08-23 12:23:53 -0400783 buf[len] = '\0';
Al Virocbbd26b2016-11-01 22:09:04 -0400784 if (!copy_from_iter_full(buf, len, from)) {
Al Viro849f3122014-08-23 12:23:53 -0400785 kfree(buf);
786 return -EFAULT;
Kay Sieverse11fea922012-05-03 02:29:41 +0200787 }
788
789 /*
790 * Extract and skip the syslog prefix <[0-9]*>. Coming from userspace
791 * the decimal value represents 32bit, the lower 3 bit are the log
792 * level, the rest are the log facility.
793 *
794 * If no prefix or no userspace facility is specified, we
795 * enforce LOG_USER, to be able to reliably distinguish
796 * kernel-generated messages from userspace-injected ones.
797 */
798 line = buf;
799 if (line[0] == '<') {
800 char *endp = NULL;
Mathias Krause38246572015-11-06 16:30:38 -0800801 unsigned int u;
Kay Sieverse11fea922012-05-03 02:29:41 +0200802
Mathias Krause38246572015-11-06 16:30:38 -0800803 u = simple_strtoul(line + 1, &endp, 10);
Kay Sieverse11fea922012-05-03 02:29:41 +0200804 if (endp && endp[0] == '>') {
Mathias Krause38246572015-11-06 16:30:38 -0800805 level = LOG_LEVEL(u);
806 if (LOG_FACILITY(u) != 0)
807 facility = LOG_FACILITY(u);
Kay Sieverse11fea922012-05-03 02:29:41 +0200808 endp++;
809 len -= endp - line;
810 line = endp;
811 }
812 }
Kay Sieverse11fea922012-05-03 02:29:41 +0200813
814 printk_emit(facility, level, NULL, 0, "%s", line);
Kay Sieverse11fea922012-05-03 02:29:41 +0200815 kfree(buf);
816 return ret;
817}
818
819static ssize_t devkmsg_read(struct file *file, char __user *buf,
820 size_t count, loff_t *ppos)
821{
822 struct devkmsg_user *user = file->private_data;
Joe Perches62e32ac2013-07-31 13:53:47 -0700823 struct printk_log *msg;
Kay Sieverse11fea922012-05-03 02:29:41 +0200824 size_t len;
825 ssize_t ret;
826
827 if (!user)
828 return -EBADF;
829
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +0800830 ret = mutex_lock_interruptible(&user->lock);
831 if (ret)
832 return ret;
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +0900833
834 logbuf_lock_irq();
Kay Sieverse11fea922012-05-03 02:29:41 +0200835 while (user->seq == log_next_seq) {
836 if (file->f_flags & O_NONBLOCK) {
837 ret = -EAGAIN;
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +0900838 logbuf_unlock_irq();
Kay Sieverse11fea922012-05-03 02:29:41 +0200839 goto out;
840 }
841
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +0900842 logbuf_unlock_irq();
Kay Sieverse11fea922012-05-03 02:29:41 +0200843 ret = wait_event_interruptible(log_wait,
844 user->seq != log_next_seq);
845 if (ret)
846 goto out;
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +0900847 logbuf_lock_irq();
Kay Sieverse11fea922012-05-03 02:29:41 +0200848 }
849
850 if (user->seq < log_first_seq) {
851 /* our last seen message is gone, return error and reset */
852 user->idx = log_first_idx;
853 user->seq = log_first_seq;
854 ret = -EPIPE;
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +0900855 logbuf_unlock_irq();
Kay Sieverse11fea922012-05-03 02:29:41 +0200856 goto out;
857 }
858
859 msg = log_from_idx(user->idx);
Tejun Heo0a295e672015-06-25 15:01:27 -0700860 len = msg_print_ext_header(user->buf, sizeof(user->buf),
Linus Torvalds5aa068e2016-10-25 11:27:31 -0700861 msg, user->seq);
Tejun Heo0a295e672015-06-25 15:01:27 -0700862 len += msg_print_ext_body(user->buf + len, sizeof(user->buf) - len,
863 log_dict(msg), msg->dict_len,
864 log_text(msg), msg->text_len);
Kay Sieversd39f3d72012-07-16 18:35:30 -0700865
Kay Sieverse11fea922012-05-03 02:29:41 +0200866 user->idx = log_next(user->idx);
867 user->seq++;
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +0900868 logbuf_unlock_irq();
Kay Sieverse11fea922012-05-03 02:29:41 +0200869
870 if (len > count) {
871 ret = -EINVAL;
872 goto out;
873 }
874
875 if (copy_to_user(buf, user->buf, len)) {
876 ret = -EFAULT;
877 goto out;
878 }
879 ret = len;
880out:
881 mutex_unlock(&user->lock);
882 return ret;
883}
884
885static loff_t devkmsg_llseek(struct file *file, loff_t offset, int whence)
886{
887 struct devkmsg_user *user = file->private_data;
888 loff_t ret = 0;
889
890 if (!user)
891 return -EBADF;
892 if (offset)
893 return -ESPIPE;
894
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +0900895 logbuf_lock_irq();
Kay Sieverse11fea922012-05-03 02:29:41 +0200896 switch (whence) {
897 case SEEK_SET:
898 /* the first record */
899 user->idx = log_first_idx;
900 user->seq = log_first_seq;
901 break;
902 case SEEK_DATA:
903 /*
904 * The first record after the last SYSLOG_ACTION_CLEAR,
905 * like issued by 'dmesg -c'. Reading /dev/kmsg itself
906 * changes no global state, and does not clear anything.
907 */
908 user->idx = clear_idx;
909 user->seq = clear_seq;
910 break;
911 case SEEK_END:
912 /* after the last record */
913 user->idx = log_next_idx;
914 user->seq = log_next_seq;
915 break;
916 default:
917 ret = -EINVAL;
918 }
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +0900919 logbuf_unlock_irq();
Kay Sieverse11fea922012-05-03 02:29:41 +0200920 return ret;
921}
922
923static unsigned int devkmsg_poll(struct file *file, poll_table *wait)
924{
925 struct devkmsg_user *user = file->private_data;
926 int ret = 0;
927
928 if (!user)
929 return POLLERR|POLLNVAL;
930
931 poll_wait(file, &log_wait, wait);
932
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +0900933 logbuf_lock_irq();
Kay Sieverse11fea922012-05-03 02:29:41 +0200934 if (user->seq < log_next_seq) {
935 /* return error when data has vanished underneath us */
936 if (user->seq < log_first_seq)
937 ret = POLLIN|POLLRDNORM|POLLERR|POLLPRI;
Nicolas Kaiser0a285312013-04-29 16:17:20 -0700938 else
939 ret = POLLIN|POLLRDNORM;
Kay Sieverse11fea922012-05-03 02:29:41 +0200940 }
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +0900941 logbuf_unlock_irq();
Kay Sieverse11fea922012-05-03 02:29:41 +0200942
943 return ret;
944}
945
946static int devkmsg_open(struct inode *inode, struct file *file)
947{
948 struct devkmsg_user *user;
949 int err;
950
Borislav Petkov750afe72016-08-02 14:04:07 -0700951 if (devkmsg_log & DEVKMSG_LOG_MASK_OFF)
952 return -EPERM;
Kay Sieverse11fea922012-05-03 02:29:41 +0200953
Borislav Petkov750afe72016-08-02 14:04:07 -0700954 /* write-only does not need any file context */
955 if ((file->f_flags & O_ACCMODE) != O_WRONLY) {
956 err = check_syslog_permissions(SYSLOG_ACTION_READ_ALL,
957 SYSLOG_FROM_READER);
958 if (err)
959 return err;
960 }
Kay Sieverse11fea922012-05-03 02:29:41 +0200961
962 user = kmalloc(sizeof(struct devkmsg_user), GFP_KERNEL);
963 if (!user)
964 return -ENOMEM;
965
Borislav Petkov750afe72016-08-02 14:04:07 -0700966 ratelimit_default_init(&user->rs);
967 ratelimit_set_flags(&user->rs, RATELIMIT_MSG_ON_RELEASE);
968
Kay Sieverse11fea922012-05-03 02:29:41 +0200969 mutex_init(&user->lock);
970
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +0900971 logbuf_lock_irq();
Kay Sieverse11fea922012-05-03 02:29:41 +0200972 user->idx = log_first_idx;
973 user->seq = log_first_seq;
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +0900974 logbuf_unlock_irq();
Kay Sieverse11fea922012-05-03 02:29:41 +0200975
976 file->private_data = user;
977 return 0;
978}
979
980static int devkmsg_release(struct inode *inode, struct file *file)
981{
982 struct devkmsg_user *user = file->private_data;
983
984 if (!user)
985 return 0;
986
Borislav Petkov750afe72016-08-02 14:04:07 -0700987 ratelimit_state_exit(&user->rs);
988
Kay Sieverse11fea922012-05-03 02:29:41 +0200989 mutex_destroy(&user->lock);
990 kfree(user);
991 return 0;
992}
993
994const struct file_operations kmsg_fops = {
995 .open = devkmsg_open,
996 .read = devkmsg_read,
Al Viro849f3122014-08-23 12:23:53 -0400997 .write_iter = devkmsg_write,
Kay Sieverse11fea922012-05-03 02:29:41 +0200998 .llseek = devkmsg_llseek,
999 .poll = devkmsg_poll,
1000 .release = devkmsg_release,
1001};
1002
Hari Bathini692f66f2017-05-08 15:56:18 -07001003#ifdef CONFIG_CRASH_CORE
Neil Horman04d491a2009-04-02 16:58:57 -07001004/*
Dirk Gouders4c1ace62013-11-12 15:08:54 -08001005 * This appends the listed symbols to /proc/vmcore
Neil Horman04d491a2009-04-02 16:58:57 -07001006 *
Dirk Gouders4c1ace62013-11-12 15:08:54 -08001007 * /proc/vmcore is used by various utilities, like crash and makedumpfile to
Neil Horman04d491a2009-04-02 16:58:57 -07001008 * obtain access to symbols that are otherwise very difficult to locate. These
1009 * symbols are specifically used so that utilities can access and extract the
1010 * dmesg log from a vmcore file after a crash.
1011 */
Hari Bathini692f66f2017-05-08 15:56:18 -07001012void log_buf_vmcoreinfo_setup(void)
Neil Horman04d491a2009-04-02 16:58:57 -07001013{
1014 VMCOREINFO_SYMBOL(log_buf);
Neil Horman04d491a2009-04-02 16:58:57 -07001015 VMCOREINFO_SYMBOL(log_buf_len);
Kay Sievers7ff95542012-05-03 02:29:13 +02001016 VMCOREINFO_SYMBOL(log_first_idx);
Ivan Delalandef4689082016-03-17 14:21:30 -07001017 VMCOREINFO_SYMBOL(clear_idx);
Kay Sievers7ff95542012-05-03 02:29:13 +02001018 VMCOREINFO_SYMBOL(log_next_idx);
Vivek Goyal67914572012-07-18 13:18:12 -04001019 /*
Joe Perches62e32ac2013-07-31 13:53:47 -07001020 * Export struct printk_log size and field offsets. User space tools can
Vivek Goyal67914572012-07-18 13:18:12 -04001021 * parse it and detect any changes to structure down the line.
1022 */
Joe Perches62e32ac2013-07-31 13:53:47 -07001023 VMCOREINFO_STRUCT_SIZE(printk_log);
1024 VMCOREINFO_OFFSET(printk_log, ts_nsec);
1025 VMCOREINFO_OFFSET(printk_log, len);
1026 VMCOREINFO_OFFSET(printk_log, text_len);
1027 VMCOREINFO_OFFSET(printk_log, dict_len);
Neil Horman04d491a2009-04-02 16:58:57 -07001028}
1029#endif
1030
Mike Travis162a7e72011-05-24 17:13:20 -07001031/* requested log_buf_len from kernel cmdline */
1032static unsigned long __initdata new_log_buf_len;
1033
Luis R. Rodriguezc0a318a2014-08-06 16:08:52 -07001034/* we practice scaling the ring buffer by powers of 2 */
1035static void __init log_buf_len_update(unsigned size)
1036{
1037 if (size)
1038 size = roundup_pow_of_two(size);
1039 if (size > log_buf_len)
1040 new_log_buf_len = size;
1041}
1042
Mike Travis162a7e72011-05-24 17:13:20 -07001043/* save requested log_buf_len since it's too early to process it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044static int __init log_buf_len_setup(char *str)
1045{
Denys Vlasenkoeed4a2a2008-02-06 01:37:02 -08001046 unsigned size = memparse(str, &str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Luis R. Rodriguezc0a318a2014-08-06 16:08:52 -07001048 log_buf_len_update(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Mike Travis162a7e72011-05-24 17:13:20 -07001050 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
Mike Travis162a7e72011-05-24 17:13:20 -07001052early_param("log_buf_len", log_buf_len_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Geert Uytterhoeven2240a312014-10-13 15:51:11 -07001054#ifdef CONFIG_SMP
1055#define __LOG_CPU_MAX_BUF_LEN (1 << CONFIG_LOG_CPU_MAX_BUF_SHIFT)
1056
Luis R. Rodriguez23b28992014-08-06 16:08:56 -07001057static void __init log_buf_add_cpu(void)
1058{
1059 unsigned int cpu_extra;
1060
1061 /*
1062 * archs should set up cpu_possible_bits properly with
1063 * set_cpu_possible() after setup_arch() but just in
1064 * case lets ensure this is valid.
1065 */
1066 if (num_possible_cpus() == 1)
1067 return;
1068
1069 cpu_extra = (num_possible_cpus() - 1) * __LOG_CPU_MAX_BUF_LEN;
1070
1071 /* by default this will only continue through for large > 64 CPUs */
1072 if (cpu_extra <= __LOG_BUF_LEN / 2)
1073 return;
1074
1075 pr_info("log_buf_len individual max cpu contribution: %d bytes\n",
1076 __LOG_CPU_MAX_BUF_LEN);
1077 pr_info("log_buf_len total cpu_extra contributions: %d bytes\n",
1078 cpu_extra);
1079 pr_info("log_buf_len min size: %d bytes\n", __LOG_BUF_LEN);
1080
1081 log_buf_len_update(cpu_extra + __LOG_BUF_LEN);
1082}
Geert Uytterhoeven2240a312014-10-13 15:51:11 -07001083#else /* !CONFIG_SMP */
1084static inline void log_buf_add_cpu(void) {}
1085#endif /* CONFIG_SMP */
Luis R. Rodriguez23b28992014-08-06 16:08:56 -07001086
Mike Travis162a7e72011-05-24 17:13:20 -07001087void __init setup_log_buf(int early)
1088{
1089 unsigned long flags;
Mike Travis162a7e72011-05-24 17:13:20 -07001090 char *new_log_buf;
1091 int free;
1092
Luis R. Rodriguez23b28992014-08-06 16:08:56 -07001093 if (log_buf != __log_buf)
1094 return;
1095
1096 if (!early && !new_log_buf_len)
1097 log_buf_add_cpu();
1098
Mike Travis162a7e72011-05-24 17:13:20 -07001099 if (!new_log_buf_len)
1100 return;
1101
1102 if (early) {
Santosh Shilimkar9da791d2014-01-21 15:50:23 -08001103 new_log_buf =
Luis R. Rodriguez70300172014-08-06 16:08:49 -07001104 memblock_virt_alloc(new_log_buf_len, LOG_ALIGN);
Mike Travis162a7e72011-05-24 17:13:20 -07001105 } else {
Luis R. Rodriguez70300172014-08-06 16:08:49 -07001106 new_log_buf = memblock_virt_alloc_nopanic(new_log_buf_len,
1107 LOG_ALIGN);
Mike Travis162a7e72011-05-24 17:13:20 -07001108 }
1109
1110 if (unlikely(!new_log_buf)) {
1111 pr_err("log_buf_len: %ld bytes not available\n",
1112 new_log_buf_len);
1113 return;
1114 }
1115
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09001116 logbuf_lock_irqsave(flags);
Mike Travis162a7e72011-05-24 17:13:20 -07001117 log_buf_len = new_log_buf_len;
1118 log_buf = new_log_buf;
1119 new_log_buf_len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001120 free = __LOG_BUF_LEN - log_next_idx;
1121 memcpy(log_buf, __log_buf, __LOG_BUF_LEN);
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09001122 logbuf_unlock_irqrestore(flags);
Mike Travis162a7e72011-05-24 17:13:20 -07001123
Luis R. Rodriguezf5405172014-08-06 16:08:54 -07001124 pr_info("log_buf_len: %d bytes\n", log_buf_len);
Mike Travis162a7e72011-05-24 17:13:20 -07001125 pr_info("early log buf free: %d(%d%%)\n",
1126 free, (free * 100) / __LOG_BUF_LEN);
1127}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001129static bool __read_mostly ignore_loglevel;
1130
1131static int __init ignore_loglevel_setup(char *str)
1132{
Neil Zhangd25d9fe2014-08-06 16:09:12 -07001133 ignore_loglevel = true;
Andrew Morton27083ba2013-11-12 15:08:50 -08001134 pr_info("debug: ignoring loglevel setting.\n");
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001135
1136 return 0;
1137}
1138
1139early_param("ignore_loglevel", ignore_loglevel_setup);
1140module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR);
Joe Perches205bd3d2015-02-12 15:01:34 -08001141MODULE_PARM_DESC(ignore_loglevel,
1142 "ignore loglevel setting (prints all kernel messages to the console)");
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001143
Sergey Senozhatskycf775442016-08-02 14:03:56 -07001144static bool suppress_message_printing(int level)
1145{
1146 return (level >= console_loglevel && !ignore_loglevel);
1147}
1148
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001149#ifdef CONFIG_BOOT_PRINTK_DELAY
1150
Namhyung Kim674dff62010-10-26 14:22:48 -07001151static int boot_delay; /* msecs delay after each printk during bootup */
Dave Young3a3b6ed2009-09-22 16:43:31 -07001152static unsigned long long loops_per_msec; /* based on boot_delay */
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001153
1154static int __init boot_delay_setup(char *str)
1155{
1156 unsigned long lpj;
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001157
1158 lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */
1159 loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
1160
1161 get_option(&str, &boot_delay);
1162 if (boot_delay > 10 * 1000)
1163 boot_delay = 0;
1164
Dave Young3a3b6ed2009-09-22 16:43:31 -07001165 pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
1166 "HZ: %d, loops_per_msec: %llu\n",
1167 boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
Dave Young29e9d222013-11-12 15:08:53 -08001168 return 0;
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001169}
Dave Young29e9d222013-11-12 15:08:53 -08001170early_param("boot_delay", boot_delay_setup);
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001171
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001172static void boot_delay_msec(int level)
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001173{
1174 unsigned long long k;
1175 unsigned long timeout;
1176
Thomas Gleixnerff48cd22017-05-16 20:42:45 +02001177 if ((boot_delay == 0 || system_state >= SYSTEM_RUNNING)
Sergey Senozhatskycf775442016-08-02 14:03:56 -07001178 || suppress_message_printing(level)) {
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001179 return;
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001180 }
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001181
Dave Young3a3b6ed2009-09-22 16:43:31 -07001182 k = (unsigned long long)loops_per_msec * boot_delay;
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001183
1184 timeout = jiffies + msecs_to_jiffies(boot_delay);
1185 while (k) {
1186 k--;
1187 cpu_relax();
1188 /*
1189 * use (volatile) jiffies to prevent
1190 * compiler reduction; loop termination via jiffies
1191 * is secondary and may or may not happen.
1192 */
1193 if (time_after(jiffies, timeout))
1194 break;
1195 touch_nmi_watchdog();
1196 }
1197}
1198#else
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001199static inline void boot_delay_msec(int level)
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001200{
1201}
1202#endif
1203
Alex Eldere99aa462014-08-06 16:09:05 -07001204static bool printk_time = IS_ENABLED(CONFIG_PRINTK_TIME);
Kay Sievers7ff95542012-05-03 02:29:13 +02001205module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
1206
Kay Sievers084681d2012-06-28 09:38:53 +02001207static size_t print_time(u64 ts, char *buf)
1208{
1209 unsigned long rem_nsec;
1210
1211 if (!printk_time)
1212 return 0;
1213
Kay Sievers084681d2012-06-28 09:38:53 +02001214 rem_nsec = do_div(ts, 1000000000);
Roland Dreier35dac272013-01-04 15:35:50 -08001215
1216 if (!buf)
1217 return snprintf(NULL, 0, "[%5lu.000000] ", (unsigned long)ts);
1218
Kay Sievers084681d2012-06-28 09:38:53 +02001219 return sprintf(buf, "[%5lu.%06lu] ",
1220 (unsigned long)ts, rem_nsec / 1000);
1221}
1222
Joe Perches62e32ac2013-07-31 13:53:47 -07001223static size_t print_prefix(const struct printk_log *msg, bool syslog, char *buf)
Kay Sievers649e6ee2012-05-10 04:30:45 +02001224{
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001225 size_t len = 0;
Kay Sievers43a73a52012-07-06 09:50:09 -07001226 unsigned int prefix = (msg->facility << 3) | msg->level;
Kay Sievers649e6ee2012-05-10 04:30:45 +02001227
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001228 if (syslog) {
1229 if (buf) {
Kay Sievers43a73a52012-07-06 09:50:09 -07001230 len += sprintf(buf, "<%u>", prefix);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001231 } else {
1232 len += 3;
Kay Sievers43a73a52012-07-06 09:50:09 -07001233 if (prefix > 999)
1234 len += 3;
1235 else if (prefix > 99)
1236 len += 2;
1237 else if (prefix > 9)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001238 len++;
1239 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001240 }
1241
Kay Sievers084681d2012-06-28 09:38:53 +02001242 len += print_time(msg->ts_nsec, buf ? buf + len : NULL);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001243 return len;
1244}
1245
Linus Torvalds5aa068e2016-10-25 11:27:31 -07001246static size_t msg_print_text(const struct printk_log *msg, bool syslog, char *buf, size_t size)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001247{
1248 const char *text = log_text(msg);
1249 size_t text_size = msg->text_len;
1250 size_t len = 0;
1251
1252 do {
1253 const char *next = memchr(text, '\n', text_size);
1254 size_t text_len;
1255
1256 if (next) {
1257 text_len = next - text;
1258 next++;
1259 text_size -= next - text;
1260 } else {
1261 text_len = text_size;
1262 }
1263
1264 if (buf) {
1265 if (print_prefix(msg, syslog, NULL) +
Kay Sievers70498252012-07-16 18:35:29 -07001266 text_len + 1 >= size - len)
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001267 break;
1268
Linus Torvalds5aa068e2016-10-25 11:27:31 -07001269 len += print_prefix(msg, syslog, buf + len);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001270 memcpy(buf + len, text, text_len);
1271 len += text_len;
Linus Torvalds5aa068e2016-10-25 11:27:31 -07001272 buf[len++] = '\n';
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001273 } else {
1274 /* SYSLOG_ACTION_* buffer size only calculation */
Linus Torvalds5aa068e2016-10-25 11:27:31 -07001275 len += print_prefix(msg, syslog, NULL);
Kay Sievers5becfb12012-07-09 12:15:42 -07001276 len += text_len;
Linus Torvalds5aa068e2016-10-25 11:27:31 -07001277 len++;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001278 }
1279
1280 text = next;
1281 } while (text);
1282
Kay Sievers7ff95542012-05-03 02:29:13 +02001283 return len;
1284}
1285
1286static int syslog_print(char __user *buf, int size)
1287{
1288 char *text;
Joe Perches62e32ac2013-07-31 13:53:47 -07001289 struct printk_log *msg;
Jan Beulich116e90b2012-06-22 16:36:09 +01001290 int len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001291
Kay Sievers70498252012-07-16 18:35:29 -07001292 text = kmalloc(LOG_LINE_MAX + PREFIX_MAX, GFP_KERNEL);
Kay Sievers7ff95542012-05-03 02:29:13 +02001293 if (!text)
1294 return -ENOMEM;
1295
Jan Beulich116e90b2012-06-22 16:36:09 +01001296 while (size > 0) {
1297 size_t n;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001298 size_t skip;
Kay Sievers7ff95542012-05-03 02:29:13 +02001299
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09001300 logbuf_lock_irq();
Jan Beulich116e90b2012-06-22 16:36:09 +01001301 if (syslog_seq < log_first_seq) {
1302 /* messages are gone, move to first one */
1303 syslog_seq = log_first_seq;
1304 syslog_idx = log_first_idx;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001305 syslog_partial = 0;
Jan Beulich116e90b2012-06-22 16:36:09 +01001306 }
1307 if (syslog_seq == log_next_seq) {
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09001308 logbuf_unlock_irq();
Jan Beulich116e90b2012-06-22 16:36:09 +01001309 break;
1310 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001311
1312 skip = syslog_partial;
Jan Beulich116e90b2012-06-22 16:36:09 +01001313 msg = log_from_idx(syslog_idx);
Linus Torvalds5aa068e2016-10-25 11:27:31 -07001314 n = msg_print_text(msg, true, text, LOG_LINE_MAX + PREFIX_MAX);
Kay Sieverseb02dac2012-07-09 10:05:10 -07001315 if (n - syslog_partial <= size) {
1316 /* message fits into buffer, move forward */
Jan Beulich116e90b2012-06-22 16:36:09 +01001317 syslog_idx = log_next(syslog_idx);
1318 syslog_seq++;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001319 n -= syslog_partial;
1320 syslog_partial = 0;
1321 } else if (!len){
1322 /* partial read(), remember position */
1323 n = size;
1324 syslog_partial += n;
Jan Beulich116e90b2012-06-22 16:36:09 +01001325 } else
1326 n = 0;
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09001327 logbuf_unlock_irq();
Jan Beulich116e90b2012-06-22 16:36:09 +01001328
1329 if (!n)
1330 break;
1331
Kay Sieverseb02dac2012-07-09 10:05:10 -07001332 if (copy_to_user(buf, text + skip, n)) {
Jan Beulich116e90b2012-06-22 16:36:09 +01001333 if (!len)
1334 len = -EFAULT;
1335 break;
1336 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001337
1338 len += n;
1339 size -= n;
1340 buf += n;
Jan Beulich116e90b2012-06-22 16:36:09 +01001341 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001342
1343 kfree(text);
1344 return len;
1345}
1346
1347static int syslog_print_all(char __user *buf, int size, bool clear)
1348{
1349 char *text;
1350 int len = 0;
1351
Kay Sievers70498252012-07-16 18:35:29 -07001352 text = kmalloc(LOG_LINE_MAX + PREFIX_MAX, GFP_KERNEL);
Kay Sievers7ff95542012-05-03 02:29:13 +02001353 if (!text)
1354 return -ENOMEM;
1355
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09001356 logbuf_lock_irq();
Kay Sievers7ff95542012-05-03 02:29:13 +02001357 if (buf) {
1358 u64 next_seq;
1359 u64 seq;
1360 u32 idx;
1361
Kay Sievers7ff95542012-05-03 02:29:13 +02001362 /*
1363 * Find first record that fits, including all following records,
1364 * into the user-provided buffer for this dump.
Kay Sieverse2ae7152012-06-15 14:07:51 +02001365 */
Kay Sievers7ff95542012-05-03 02:29:13 +02001366 seq = clear_seq;
1367 idx = clear_idx;
1368 while (seq < log_next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001369 struct printk_log *msg = log_from_idx(idx);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001370
Linus Torvalds5aa068e2016-10-25 11:27:31 -07001371 len += msg_print_text(msg, true, NULL, 0);
Kay Sievers7ff95542012-05-03 02:29:13 +02001372 idx = log_next(idx);
1373 seq++;
1374 }
Kay Sieverse2ae7152012-06-15 14:07:51 +02001375
1376 /* move first record forward until length fits into the buffer */
Kay Sievers7ff95542012-05-03 02:29:13 +02001377 seq = clear_seq;
1378 idx = clear_idx;
1379 while (len > size && seq < log_next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001380 struct printk_log *msg = log_from_idx(idx);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001381
Linus Torvalds5aa068e2016-10-25 11:27:31 -07001382 len -= msg_print_text(msg, true, NULL, 0);
Kay Sievers7ff95542012-05-03 02:29:13 +02001383 idx = log_next(idx);
1384 seq++;
1385 }
1386
Kay Sieverse2ae7152012-06-15 14:07:51 +02001387 /* last message fitting into this dump */
Kay Sievers7ff95542012-05-03 02:29:13 +02001388 next_seq = log_next_seq;
1389
1390 len = 0;
1391 while (len >= 0 && seq < next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001392 struct printk_log *msg = log_from_idx(idx);
Kay Sievers7ff95542012-05-03 02:29:13 +02001393 int textlen;
1394
Linus Torvalds5aa068e2016-10-25 11:27:31 -07001395 textlen = msg_print_text(msg, true, text,
Kay Sievers70498252012-07-16 18:35:29 -07001396 LOG_LINE_MAX + PREFIX_MAX);
Kay Sievers7ff95542012-05-03 02:29:13 +02001397 if (textlen < 0) {
1398 len = textlen;
1399 break;
1400 }
1401 idx = log_next(idx);
1402 seq++;
1403
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09001404 logbuf_unlock_irq();
Kay Sievers7ff95542012-05-03 02:29:13 +02001405 if (copy_to_user(buf + len, text, textlen))
1406 len = -EFAULT;
1407 else
1408 len += textlen;
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09001409 logbuf_lock_irq();
Kay Sievers7ff95542012-05-03 02:29:13 +02001410
1411 if (seq < log_first_seq) {
1412 /* messages are gone, move to next one */
1413 seq = log_first_seq;
1414 idx = log_first_idx;
1415 }
1416 }
1417 }
1418
1419 if (clear) {
1420 clear_seq = log_next_seq;
1421 clear_idx = log_next_idx;
1422 }
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09001423 logbuf_unlock_irq();
Kay Sievers7ff95542012-05-03 02:29:13 +02001424
1425 kfree(text);
1426 return len;
1427}
1428
Vasily Averin3ea43312015-06-25 15:01:47 -07001429int do_syslog(int type, char __user *buf, int len, int source)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430{
Kay Sievers7ff95542012-05-03 02:29:13 +02001431 bool clear = false;
Joe Perchesa39d4a82014-12-10 15:50:15 -08001432 static int saved_console_loglevel = LOGLEVEL_DEFAULT;
Linus Torvaldsee24aeb2011-02-10 17:53:55 -08001433 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Vasily Averin3ea43312015-06-25 15:01:47 -07001435 error = check_syslog_permissions(type, source);
Linus Torvaldsee24aeb2011-02-10 17:53:55 -08001436 if (error)
Nikitas Angelinas077a1cc2017-07-29 20:36:36 -07001437 return error;
Eric Paris12b30522010-11-15 18:36:29 -05001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 switch (type) {
Kees Cookd78ca3c2010-02-03 15:37:13 -08001440 case SYSLOG_ACTION_CLOSE: /* Close log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001442 case SYSLOG_ACTION_OPEN: /* Open log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001444 case SYSLOG_ACTION_READ: /* Read from log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 if (!buf || len < 0)
Nikitas Angelinas077a1cc2017-07-29 20:36:36 -07001446 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 if (!len)
Nikitas Angelinas077a1cc2017-07-29 20:36:36 -07001448 return 0;
1449 if (!access_ok(VERIFY_WRITE, buf, len))
1450 return -EFAULT;
Yuanhan Liu4a77a5a2012-06-16 21:21:51 +08001451 error = wait_event_interruptible(log_wait,
1452 syslog_seq != log_next_seq);
Kay Sieverscb424ff2012-07-06 09:50:09 -07001453 if (error)
Nikitas Angelinas077a1cc2017-07-29 20:36:36 -07001454 return error;
Kay Sievers7ff95542012-05-03 02:29:13 +02001455 error = syslog_print(buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001457 /* Read/clear last kernel messages */
1458 case SYSLOG_ACTION_READ_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +02001459 clear = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 /* FALL THRU */
Kees Cookd78ca3c2010-02-03 15:37:13 -08001461 /* Read last kernel messages */
1462 case SYSLOG_ACTION_READ_ALL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 if (!buf || len < 0)
Nikitas Angelinas077a1cc2017-07-29 20:36:36 -07001464 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 if (!len)
Nikitas Angelinas077a1cc2017-07-29 20:36:36 -07001466 return 0;
1467 if (!access_ok(VERIFY_WRITE, buf, len))
1468 return -EFAULT;
Kay Sievers7ff95542012-05-03 02:29:13 +02001469 error = syslog_print_all(buf, len, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001471 /* Clear ring buffer */
1472 case SYSLOG_ACTION_CLEAR:
Kay Sievers7ff95542012-05-03 02:29:13 +02001473 syslog_print_all(NULL, 0, true);
Alan Stern4661e352012-06-22 17:12:19 -04001474 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001475 /* Disable logging to console */
1476 case SYSLOG_ACTION_CONSOLE_OFF:
Joe Perchesa39d4a82014-12-10 15:50:15 -08001477 if (saved_console_loglevel == LOGLEVEL_DEFAULT)
Frans Pop1aaad492009-07-06 13:31:48 +02001478 saved_console_loglevel = console_loglevel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 console_loglevel = minimum_console_loglevel;
1480 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001481 /* Enable logging to console */
1482 case SYSLOG_ACTION_CONSOLE_ON:
Joe Perchesa39d4a82014-12-10 15:50:15 -08001483 if (saved_console_loglevel != LOGLEVEL_DEFAULT) {
Frans Pop1aaad492009-07-06 13:31:48 +02001484 console_loglevel = saved_console_loglevel;
Joe Perchesa39d4a82014-12-10 15:50:15 -08001485 saved_console_loglevel = LOGLEVEL_DEFAULT;
Frans Pop1aaad492009-07-06 13:31:48 +02001486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001488 /* Set level of messages printed to console */
1489 case SYSLOG_ACTION_CONSOLE_LEVEL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 if (len < 1 || len > 8)
Nikitas Angelinas077a1cc2017-07-29 20:36:36 -07001491 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (len < minimum_console_loglevel)
1493 len = minimum_console_loglevel;
1494 console_loglevel = len;
Frans Pop1aaad492009-07-06 13:31:48 +02001495 /* Implicitly re-enable logging to console */
Joe Perchesa39d4a82014-12-10 15:50:15 -08001496 saved_console_loglevel = LOGLEVEL_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001498 /* Number of chars in the log buffer */
1499 case SYSLOG_ACTION_SIZE_UNREAD:
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09001500 logbuf_lock_irq();
Kay Sievers7ff95542012-05-03 02:29:13 +02001501 if (syslog_seq < log_first_seq) {
1502 /* messages are gone, move to first one */
1503 syslog_seq = log_first_seq;
1504 syslog_idx = log_first_idx;
Kay Sieverseb02dac2012-07-09 10:05:10 -07001505 syslog_partial = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02001506 }
Vasily Averin3ea43312015-06-25 15:01:47 -07001507 if (source == SYSLOG_FROM_PROC) {
Kay Sievers7ff95542012-05-03 02:29:13 +02001508 /*
1509 * Short-cut for poll(/"proc/kmsg") which simply checks
1510 * for pending data, not the size; return the count of
1511 * records, not the length.
1512 */
Alex Eldere97e1262014-08-06 16:08:59 -07001513 error = log_next_seq - syslog_seq;
Kay Sievers7ff95542012-05-03 02:29:13 +02001514 } else {
Kay Sievers5becfb12012-07-09 12:15:42 -07001515 u64 seq = syslog_seq;
1516 u32 idx = syslog_idx;
Kay Sievers7ff95542012-05-03 02:29:13 +02001517
Kay Sievers7ff95542012-05-03 02:29:13 +02001518 while (seq < log_next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07001519 struct printk_log *msg = log_from_idx(idx);
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02001520
Linus Torvalds5aa068e2016-10-25 11:27:31 -07001521 error += msg_print_text(msg, true, NULL, 0);
Kay Sievers7ff95542012-05-03 02:29:13 +02001522 idx = log_next(idx);
1523 seq++;
1524 }
Kay Sieverseb02dac2012-07-09 10:05:10 -07001525 error -= syslog_partial;
Kay Sievers7ff95542012-05-03 02:29:13 +02001526 }
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09001527 logbuf_unlock_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 break;
Kees Cookd78ca3c2010-02-03 15:37:13 -08001529 /* Size of the log buffer */
1530 case SYSLOG_ACTION_SIZE_BUFFER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 error = log_buf_len;
1532 break;
1533 default:
1534 error = -EINVAL;
1535 break;
1536 }
Nikitas Angelinas077a1cc2017-07-29 20:36:36 -07001537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 return error;
1539}
1540
Heiko Carstens1e7bfb22009-01-14 14:14:29 +01001541SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
Kees Cook637241a2013-06-12 14:04:39 -07001543 return do_syslog(type, buf, len, SYSLOG_FROM_READER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544}
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 * Call the console drivers, asking them to write out
1548 * log_buf[start] to log_buf[end - 1].
Torben Hohnac751ef2011-01-25 15:07:35 -08001549 * The console_lock must be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 */
Sergey Senozhatskyd9c23522016-12-24 23:09:01 +09001551static void call_console_drivers(const char *ext_text, size_t ext_len,
Tejun Heo6fe29352015-06-25 15:01:30 -07001552 const char *text, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
Kay Sievers7ff95542012-05-03 02:29:13 +02001554 struct console *con;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Sergey Senozhatskyfc98c3c2017-02-18 03:42:54 -08001556 trace_console_rcuidle(text, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Kay Sievers7ff95542012-05-03 02:29:13 +02001558 if (!console_drivers)
1559 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Kay Sievers7ff95542012-05-03 02:29:13 +02001561 for_each_console(con) {
1562 if (exclusive_console && con != exclusive_console)
1563 continue;
1564 if (!(con->flags & CON_ENABLED))
1565 continue;
1566 if (!con->write)
1567 continue;
1568 if (!cpu_online(smp_processor_id()) &&
1569 !(con->flags & CON_ANYTIME))
1570 continue;
Tejun Heo6fe29352015-06-25 15:01:30 -07001571 if (con->flags & CON_EXTENDED)
1572 con->write(con, ext_text, ext_len);
1573 else
1574 con->write(con, text, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
1577
Dave Youngaf913222009-09-22 16:43:33 -07001578int printk_delay_msec __read_mostly;
1579
1580static inline void printk_delay(void)
1581{
1582 if (unlikely(printk_delay_msec)) {
1583 int m = printk_delay_msec;
1584
1585 while (m--) {
1586 mdelay(1);
1587 touch_nmi_watchdog();
1588 }
1589 }
1590}
1591
Kay Sievers084681d2012-06-28 09:38:53 +02001592/*
1593 * Continuation lines are buffered, and not committed to the record buffer
1594 * until the line is complete, or a race forces it. The line fragments
1595 * though, are printed immediately to the consoles to ensure everything has
1596 * reached the console in case of a kernel crash.
1597 */
1598static struct cont {
1599 char buf[LOG_LINE_MAX];
1600 size_t len; /* length == 0 means unused buffer */
Kay Sievers084681d2012-06-28 09:38:53 +02001601 struct task_struct *owner; /* task of first print*/
1602 u64 ts_nsec; /* time of first print */
1603 u8 level; /* log level of first message */
Alex Elder0b90fec2014-08-06 16:09:03 -07001604 u8 facility; /* log facility of first message */
Kay Sieverseab07262012-07-16 18:35:30 -07001605 enum log_flags flags; /* prefix, newline flags */
Kay Sievers084681d2012-06-28 09:38:53 +02001606} cont;
1607
Linus Torvalds5e467652016-10-09 11:53:00 -07001608static void cont_flush(void)
Kay Sievers084681d2012-06-28 09:38:53 +02001609{
Kay Sievers084681d2012-06-28 09:38:53 +02001610 if (cont.len == 0)
1611 return;
Linus Torvalds5c2992e2016-10-25 11:27:31 -07001612
1613 log_store(cont.facility, cont.level, cont.flags, cont.ts_nsec,
1614 NULL, 0, cont.buf, cont.len);
1615 cont.len = 0;
Kay Sievers084681d2012-06-28 09:38:53 +02001616}
1617
Linus Torvalds5e467652016-10-09 11:53:00 -07001618static bool cont_add(int facility, int level, enum log_flags flags, const char *text, size_t len)
Kay Sievers084681d2012-06-28 09:38:53 +02001619{
Tejun Heo6fe29352015-06-25 15:01:30 -07001620 /*
1621 * If ext consoles are present, flush and skip in-kernel
1622 * continuation. See nr_ext_console_drivers definition. Also, if
1623 * the line gets too long, split it up in separate records.
1624 */
1625 if (nr_ext_console_drivers || cont.len + len > sizeof(cont.buf)) {
Linus Torvalds5e467652016-10-09 11:53:00 -07001626 cont_flush();
Kay Sievers084681d2012-06-28 09:38:53 +02001627 return false;
1628 }
1629
1630 if (!cont.len) {
1631 cont.facility = facility;
1632 cont.level = level;
1633 cont.owner = current;
1634 cont.ts_nsec = local_clock();
Linus Torvalds5e467652016-10-09 11:53:00 -07001635 cont.flags = flags;
Kay Sievers084681d2012-06-28 09:38:53 +02001636 }
1637
1638 memcpy(cont.buf + cont.len, text, len);
1639 cont.len += len;
Kay Sieverseab07262012-07-16 18:35:30 -07001640
Linus Torvalds5e467652016-10-09 11:53:00 -07001641 // The original flags come from the first line,
1642 // but later continuations can add a newline.
1643 if (flags & LOG_NEWLINE) {
1644 cont.flags |= LOG_NEWLINE;
1645 cont_flush();
1646 }
1647
Kay Sieverseab07262012-07-16 18:35:30 -07001648 if (cont.len > (sizeof(cont.buf) * 80) / 100)
Linus Torvalds5e467652016-10-09 11:53:00 -07001649 cont_flush();
Kay Sieverseab07262012-07-16 18:35:30 -07001650
Kay Sievers084681d2012-06-28 09:38:53 +02001651 return true;
1652}
1653
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001654static size_t log_output(int facility, int level, enum log_flags lflags, const char *dict, size_t dictlen, char *text, size_t text_len)
1655{
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001656 /*
Linus Torvalds5e467652016-10-09 11:53:00 -07001657 * If an earlier line was buffered, and we're a continuation
1658 * write from the same process, try to add it to the buffer.
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001659 */
1660 if (cont.len) {
Linus Torvalds5e467652016-10-09 11:53:00 -07001661 if (cont.owner == current && (lflags & LOG_CONT)) {
1662 if (cont_add(facility, level, lflags, text, text_len))
1663 return text_len;
1664 }
1665 /* Otherwise, make sure it's flushed */
1666 cont_flush();
1667 }
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001668
Linus Torvalds8835ca52016-10-19 09:11:24 -07001669 /* Skip empty continuation lines that couldn't be added - they just flush */
1670 if (!text_len && (lflags & LOG_CONT))
1671 return 0;
1672
Linus Torvalds5e467652016-10-09 11:53:00 -07001673 /* If it doesn't end in a newline, try to buffer the current line */
1674 if (!(lflags & LOG_NEWLINE)) {
1675 if (cont_add(facility, level, lflags, text, text_len))
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001676 return text_len;
1677 }
1678
Linus Torvalds5e467652016-10-09 11:53:00 -07001679 /* Store it in the record log */
Linus Torvaldsc362c7f2016-10-08 22:02:09 -07001680 return log_store(facility, level, lflags, 0, dict, dictlen, text, text_len);
1681}
1682
Kay Sievers7ff95542012-05-03 02:29:13 +02001683asmlinkage int vprintk_emit(int facility, int level,
1684 const char *dict, size_t dictlen,
1685 const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686{
Kay Sievers7ff95542012-05-03 02:29:13 +02001687 static char textbuf[LOG_LINE_MAX];
1688 char *text = textbuf;
Pierre Kuoaec47ca2017-07-11 14:40:55 +08001689 size_t text_len;
Kay Sievers5becfb12012-07-09 12:15:42 -07001690 enum log_flags lflags = 0;
Nick Andrewac60ad72008-05-12 21:21:04 +02001691 unsigned long flags;
Pierre Kuoaec47ca2017-07-11 14:40:55 +08001692 int printed_len;
Steven Rostedt458df9f2014-06-04 16:11:38 -07001693 bool in_sched = false;
Jan Kara608873c2014-06-04 16:11:35 -07001694
Joe Perchesa39d4a82014-12-10 15:50:15 -08001695 if (level == LOGLEVEL_SCHED) {
1696 level = LOGLEVEL_DEFAULT;
Steven Rostedt458df9f2014-06-04 16:11:38 -07001697 in_sched = true;
1698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Andrew Cooks2fa72c82012-12-17 15:59:56 -08001700 boot_delay_msec(level);
Dave Youngaf913222009-09-22 16:43:33 -07001701 printk_delay();
Randy Dunlapbfe8df32007-10-16 01:23:46 -07001702
Sergey Senozhatskya8199372016-03-17 14:21:20 -07001703 /* This stops the holder of console_sem just where we want him */
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09001704 logbuf_lock_irqsave(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 /*
Kay Sievers7ff95542012-05-03 02:29:13 +02001706 * The printf needs to come first; we need the syslog
1707 * prefix which might be passed-in as a parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 */
Markus Trippelsdorf98e35f52014-10-13 15:51:13 -07001709 text_len = vscnprintf(text, sizeof(textbuf), fmt, args);
Nick Andrewac60ad72008-05-12 21:21:04 +02001710
Kay Sievers7ff95542012-05-03 02:29:13 +02001711 /* mark and strip a trailing newline */
Kay Sieversc313af12012-05-14 20:46:27 +02001712 if (text_len && text[text_len-1] == '\n') {
1713 text_len--;
Kay Sievers5becfb12012-07-09 12:15:42 -07001714 lflags |= LOG_NEWLINE;
Kay Sievers7ff95542012-05-03 02:29:13 +02001715 }
Kay Sievers9d90c8d2011-03-13 03:19:51 +01001716
Joe Perches088a52a2012-07-30 14:40:19 -07001717 /* strip kernel syslog prefix and extract log level or control flags */
1718 if (facility == 0) {
Linus Torvalds4bcc5952016-10-08 20:32:40 -07001719 int kern_level;
Joe Perches088a52a2012-07-30 14:40:19 -07001720
Linus Torvalds4bcc5952016-10-08 20:32:40 -07001721 while ((kern_level = printk_get_level(text)) != 0) {
Joe Perches088a52a2012-07-30 14:40:19 -07001722 switch (kern_level) {
1723 case '0' ... '7':
Joe Perchesa39d4a82014-12-10 15:50:15 -08001724 if (level == LOGLEVEL_DEFAULT)
Joe Perches088a52a2012-07-30 14:40:19 -07001725 level = kern_level - '0';
Joe Perchesa39d4a82014-12-10 15:50:15 -08001726 /* fallthrough */
Joe Perches088a52a2012-07-30 14:40:19 -07001727 case 'd': /* KERN_DEFAULT */
1728 lflags |= LOG_PREFIX;
Linus Torvalds4bcc5952016-10-08 20:32:40 -07001729 break;
1730 case 'c': /* KERN_CONT */
1731 lflags |= LOG_CONT;
Joe Perches088a52a2012-07-30 14:40:19 -07001732 }
Linus Torvalds4bcc5952016-10-08 20:32:40 -07001733
1734 text_len -= 2;
1735 text += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
Kay Sievers7ff95542012-05-03 02:29:13 +02001737 }
Nick Andrewac60ad72008-05-12 21:21:04 +02001738
Joe Perchesa39d4a82014-12-10 15:50:15 -08001739 if (level == LOGLEVEL_DEFAULT)
Kay Sieversc313af12012-05-14 20:46:27 +02001740 level = default_message_loglevel;
1741
Kay Sievers5becfb12012-07-09 12:15:42 -07001742 if (dict)
1743 lflags |= LOG_PREFIX|LOG_NEWLINE;
Kay Sievers7ff95542012-05-03 02:29:13 +02001744
Pierre Kuoaec47ca2017-07-11 14:40:55 +08001745 printed_len = log_output(facility, level, lflags, dict, dictlen, text, text_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09001747 logbuf_unlock_irqrestore(flags);
Jan Kara939f04b2014-06-04 16:11:37 -07001748
Steven Rostedt458df9f2014-06-04 16:11:38 -07001749 /* If called from the scheduler, we can not call up(). */
Andrew Mortond18bbc22014-07-02 15:22:38 -07001750 if (!in_sched) {
Jan Kara5874af22014-08-06 16:09:10 -07001751 /*
Andrew Mortond18bbc22014-07-02 15:22:38 -07001752 * Try to acquire and then immediately release the console
1753 * semaphore. The release will print out buffers and wake up
1754 * /dev/kmsg and syslog() users.
1755 */
Sergey Senozhatskya8199372016-03-17 14:21:20 -07001756 if (console_trylock())
Andrew Mortond18bbc22014-07-02 15:22:38 -07001757 console_unlock();
1758 }
Steven Rostedt458df9f2014-06-04 16:11:38 -07001759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 return printed_len;
1761}
Kay Sievers7ff95542012-05-03 02:29:13 +02001762EXPORT_SYMBOL(vprintk_emit);
1763
1764asmlinkage int vprintk(const char *fmt, va_list args)
1765{
Sergey Senozhatskybd66a892016-12-27 23:16:04 +09001766 return vprintk_func(fmt, args);
Kay Sievers7ff95542012-05-03 02:29:13 +02001767}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768EXPORT_SYMBOL(vprintk);
1769
Kay Sievers7ff95542012-05-03 02:29:13 +02001770asmlinkage int printk_emit(int facility, int level,
1771 const char *dict, size_t dictlen,
1772 const char *fmt, ...)
1773{
1774 va_list args;
1775 int r;
1776
1777 va_start(args, fmt);
1778 r = vprintk_emit(facility, level, dict, dictlen, fmt, args);
1779 va_end(args);
1780
1781 return r;
1782}
1783EXPORT_SYMBOL(printk_emit);
1784
Linus Torvaldsa0cba212016-08-09 10:48:18 -07001785int vprintk_default(const char *fmt, va_list args)
Steven Rostedt (Red Hat)afdc34a2014-06-19 17:33:31 -04001786{
1787 int r;
1788
1789#ifdef CONFIG_KGDB_KDB
Petr Mladek34aaff42016-12-14 15:05:58 -08001790 /* Allow to pass printk() to kdb but avoid a recursion. */
1791 if (unlikely(kdb_trap_printk && kdb_printf_cpu < 0)) {
Daniel Thompsonf7d4ca82014-11-07 18:37:57 +00001792 r = vkdb_printf(KDB_MSGSRC_PRINTK, fmt, args);
Steven Rostedt (Red Hat)afdc34a2014-06-19 17:33:31 -04001793 return r;
1794 }
1795#endif
Linus Torvaldsa0cba212016-08-09 10:48:18 -07001796 r = vprintk_emit(0, LOGLEVEL_DEFAULT, NULL, 0, fmt, args);
Steven Rostedt (Red Hat)afdc34a2014-06-19 17:33:31 -04001797
1798 return r;
1799}
1800EXPORT_SYMBOL_GPL(vprintk_default);
1801
Kay Sievers7ff95542012-05-03 02:29:13 +02001802/**
1803 * printk - print a kernel message
1804 * @fmt: format string
1805 *
1806 * This is printk(). It can be called from any context. We want it to work.
1807 *
1808 * We try to grab the console_lock. If we succeed, it's easy - we log the
1809 * output and call the console drivers. If we fail to get the semaphore, we
1810 * place the output into the log buffer and return. The current holder of
1811 * the console_sem will notice the new output in console_unlock(); and will
1812 * send it to the consoles before releasing the lock.
1813 *
1814 * One effect of this deferred printing is that code which calls printk() and
1815 * then changes console_loglevel may break. This is because console_loglevel
1816 * is inspected when the actual printing occurs.
1817 *
1818 * See also:
1819 * printf(3)
1820 *
1821 * See the vsnprintf() documentation for format string extensions over C99.
1822 */
Andi Kleen722a9f92014-05-02 00:44:38 +02001823asmlinkage __visible int printk(const char *fmt, ...)
Kay Sievers7ff95542012-05-03 02:29:13 +02001824{
1825 va_list args;
1826 int r;
1827
Kay Sievers7ff95542012-05-03 02:29:13 +02001828 va_start(args, fmt);
Linus Torvaldsa0cba212016-08-09 10:48:18 -07001829 r = vprintk_func(fmt, args);
Kay Sievers7ff95542012-05-03 02:29:13 +02001830 va_end(args);
1831
1832 return r;
1833}
1834EXPORT_SYMBOL(printk);
Kay Sievers7f3a7812012-05-09 01:37:51 +02001835
Kay Sievers96efedf2012-07-16 18:35:29 -07001836#else /* CONFIG_PRINTK */
Matt Mackalld59745c2005-05-01 08:59:02 -07001837
Kay Sievers70498252012-07-16 18:35:29 -07001838#define LOG_LINE_MAX 0
1839#define PREFIX_MAX 0
Alex Elder249771b2014-08-06 16:09:08 -07001840
Kay Sievers96efedf2012-07-16 18:35:29 -07001841static u64 syslog_seq;
1842static u32 syslog_idx;
Kay Sieverseab07262012-07-16 18:35:30 -07001843static u64 console_seq;
1844static u32 console_idx;
Kay Sievers96efedf2012-07-16 18:35:29 -07001845static u64 log_first_seq;
1846static u32 log_first_idx;
1847static u64 log_next_seq;
Tejun Heo6fe29352015-06-25 15:01:30 -07001848static char *log_text(const struct printk_log *msg) { return NULL; }
1849static char *log_dict(const struct printk_log *msg) { return NULL; }
Joe Perches62e32ac2013-07-31 13:53:47 -07001850static struct printk_log *log_from_idx(u32 idx) { return NULL; }
Kay Sievers7f3a7812012-05-09 01:37:51 +02001851static u32 log_next(u32 idx) { return 0; }
Tejun Heo6fe29352015-06-25 15:01:30 -07001852static ssize_t msg_print_ext_header(char *buf, size_t size,
Linus Torvalds5aa068e2016-10-25 11:27:31 -07001853 struct printk_log *msg,
1854 u64 seq) { return 0; }
Tejun Heo6fe29352015-06-25 15:01:30 -07001855static ssize_t msg_print_ext_body(char *buf, size_t size,
1856 char *dict, size_t dict_len,
1857 char *text, size_t text_len) { return 0; }
Sergey Senozhatskyd9c23522016-12-24 23:09:01 +09001858static void call_console_drivers(const char *ext_text, size_t ext_len,
Tejun Heo6fe29352015-06-25 15:01:30 -07001859 const char *text, size_t len) {}
Linus Torvalds5aa068e2016-10-25 11:27:31 -07001860static size_t msg_print_text(const struct printk_log *msg,
Kay Sievers5becfb12012-07-09 12:15:42 -07001861 bool syslog, char *buf, size_t size) { return 0; }
Sergey Senozhatskycf775442016-08-02 14:03:56 -07001862static bool suppress_message_printing(int level) { return false; }
Matt Mackalld59745c2005-05-01 08:59:02 -07001863
Kay Sievers7f3a7812012-05-09 01:37:51 +02001864#endif /* CONFIG_PRINTK */
Matt Mackalld59745c2005-05-01 08:59:02 -07001865
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07001866#ifdef CONFIG_EARLY_PRINTK
1867struct console *early_console;
1868
Andi Kleen722a9f92014-05-02 00:44:38 +02001869asmlinkage __visible void early_printk(const char *fmt, ...)
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07001870{
1871 va_list ap;
Joe Perches1dc62442014-12-10 15:45:53 -08001872 char buf[512];
1873 int n;
1874
1875 if (!early_console)
1876 return;
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07001877
1878 va_start(ap, fmt);
Joe Perches1dc62442014-12-10 15:45:53 -08001879 n = vscnprintf(buf, sizeof(buf), fmt, ap);
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07001880 va_end(ap);
Joe Perches1dc62442014-12-10 15:45:53 -08001881
1882 early_console->write(early_console, buf, n);
Thomas Gleixnerd0380e62013-04-29 16:17:18 -07001883}
1884#endif
1885
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001886static int __add_preferred_console(char *name, int idx, char *options,
1887 char *brl_options)
1888{
1889 struct console_cmdline *c;
1890 int i;
1891
1892 /*
1893 * See if this tty is not yet registered, and
1894 * if we have a slot free.
1895 */
Petr Mladekdac8bbb2017-06-08 12:01:30 +02001896 for (i = 0, c = console_cmdline;
1897 i < MAX_CMDLINECONSOLES && c->name[0];
1898 i++, c++) {
Joe Perches23475402013-07-31 13:53:46 -07001899 if (strcmp(c->name, name) == 0 && c->index == idx) {
Petr Mladekdac8bbb2017-06-08 12:01:30 +02001900 if (!brl_options)
1901 preferred_console = i;
Joe Perches23475402013-07-31 13:53:46 -07001902 return 0;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001903 }
Joe Perches23475402013-07-31 13:53:46 -07001904 }
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001905 if (i == MAX_CMDLINECONSOLES)
1906 return -E2BIG;
1907 if (!brl_options)
Aleksey Makarovad86ee22017-03-15 13:28:51 +03001908 preferred_console = i;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001909 strlcpy(c->name, name, sizeof(c->name));
1910 c->options = options;
Joe Perchesbbeddf52013-07-31 13:53:45 -07001911 braille_set_options(c, brl_options);
1912
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001913 c->index = idx;
1914 return 0;
1915}
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001916/*
Alex Elder0b90fec2014-08-06 16:09:03 -07001917 * Set up a console. Called via do_early_param() in init/main.c
1918 * for each "console=" parameter in the boot command line.
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001919 */
1920static int __init console_setup(char *str)
1921{
Alex Elder0b90fec2014-08-06 16:09:03 -07001922 char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for "ttyS" */
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001923 char *s, *options, *brl_options = NULL;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001924 int idx;
1925
Joe Perchesbbeddf52013-07-31 13:53:45 -07001926 if (_braille_console_setup(&str, &brl_options))
1927 return 1;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001928
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001929 /*
1930 * Decode str into name, index, options.
1931 */
1932 if (str[0] >= '0' && str[0] <= '9') {
Yinghai Lueaa944a2007-07-15 23:37:27 -07001933 strcpy(buf, "ttyS");
1934 strncpy(buf + 4, str, sizeof(buf) - 5);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001935 } else {
Yinghai Lueaa944a2007-07-15 23:37:27 -07001936 strncpy(buf, str, sizeof(buf) - 1);
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001937 }
Yinghai Lueaa944a2007-07-15 23:37:27 -07001938 buf[sizeof(buf) - 1] = 0;
Alex Elder249771b2014-08-06 16:09:08 -07001939 options = strchr(str, ',');
1940 if (options)
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001941 *(options++) = 0;
1942#ifdef __sparc__
1943 if (!strcmp(str, "ttya"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07001944 strcpy(buf, "ttyS0");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001945 if (!strcmp(str, "ttyb"))
Yinghai Lueaa944a2007-07-15 23:37:27 -07001946 strcpy(buf, "ttyS1");
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001947#endif
Yinghai Lueaa944a2007-07-15 23:37:27 -07001948 for (s = buf; *s; s++)
Alex Elder249771b2014-08-06 16:09:08 -07001949 if (isdigit(*s) || *s == ',')
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001950 break;
1951 idx = simple_strtoul(s, NULL, 10);
1952 *s = 0;
1953
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001954 __add_preferred_console(buf, idx, options, brl_options);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001955 console_set_on_cmdline = 1;
John Z. Bohach2ea1c532006-03-24 03:18:19 -08001956 return 1;
1957}
1958__setup("console=", console_setup);
1959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960/**
Matt Mackall3c0547b2005-05-16 21:53:47 -07001961 * add_preferred_console - add a device to the list of preferred consoles.
Martin Waitzddad86c2005-11-13 16:08:14 -08001962 * @name: device name
1963 * @idx: device index
1964 * @options: options for this console
Matt Mackall3c0547b2005-05-16 21:53:47 -07001965 *
1966 * The last preferred console added will be used for kernel messages
1967 * and stdin/out/err for init. Normally this is used by console_setup
1968 * above to handle user-supplied console arguments; however it can also
1969 * be used by arch-specific code either to override the user or more
1970 * commonly to provide a default console (ie from PROM variables) when
1971 * the user has not supplied one.
1972 */
David S. Millerfb445ee2007-12-29 01:19:49 -08001973int add_preferred_console(char *name, int idx, char *options)
Matt Mackall3c0547b2005-05-16 21:53:47 -07001974{
Samuel Thibaultf7511d52008-04-30 00:54:51 -07001975 return __add_preferred_console(name, idx, options, NULL);
Matt Mackall3c0547b2005-05-16 21:53:47 -07001976}
1977
Neil Zhangd25d9fe2014-08-06 16:09:12 -07001978bool console_suspend_enabled = true;
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001979EXPORT_SYMBOL(console_suspend_enabled);
1980
1981static int __init console_suspend_disable(char *str)
1982{
Neil Zhangd25d9fe2014-08-06 16:09:12 -07001983 console_suspend_enabled = false;
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001984 return 1;
1985}
1986__setup("no_console_suspend", console_suspend_disable);
Yanmin Zhang134620f2011-10-31 17:11:27 -07001987module_param_named(console_suspend, console_suspend_enabled,
1988 bool, S_IRUGO | S_IWUSR);
1989MODULE_PARM_DESC(console_suspend, "suspend console during suspend"
1990 " and hibernate operations");
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001991
Matt Mackall3c0547b2005-05-16 21:53:47 -07001992/**
Linus Torvalds557240b2006-06-19 18:16:01 -07001993 * suspend_console - suspend the console subsystem
1994 *
1995 * This disables printk() while we go into suspend states
1996 */
1997void suspend_console(void)
1998{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001999 if (!console_suspend_enabled)
2000 return;
Pavel Machek0d630812008-07-23 21:28:32 -07002001 printk("Suspending console(s) (use no_console_suspend to debug)\n");
Torben Hohnac751ef2011-01-25 15:07:35 -08002002 console_lock();
Linus Torvalds557240b2006-06-19 18:16:01 -07002003 console_suspended = 1;
Jan Karabd8d7cf2014-06-04 16:11:36 -07002004 up_console_sem();
Linus Torvalds557240b2006-06-19 18:16:01 -07002005}
2006
2007void resume_console(void)
2008{
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002009 if (!console_suspend_enabled)
2010 return;
Jan Karabd8d7cf2014-06-04 16:11:36 -07002011 down_console_sem();
Linus Torvalds557240b2006-06-19 18:16:01 -07002012 console_suspended = 0;
Torben Hohnac751ef2011-01-25 15:07:35 -08002013 console_unlock();
Linus Torvalds557240b2006-06-19 18:16:01 -07002014}
2015
2016/**
Kevin Cernekee034260d2010-06-03 22:11:25 -07002017 * console_cpu_notify - print deferred console messages after CPU hotplug
Sebastian Andrzej Siewior90b14882016-11-03 15:49:58 +01002018 * @cpu: unused
Kevin Cernekee034260d2010-06-03 22:11:25 -07002019 *
2020 * If printk() is called from a CPU that is not online yet, the messages
Sergey Senozhatsky64ca7522017-01-21 19:47:29 +09002021 * will be printed on the console only if there are CON_ANYTIME consoles.
2022 * This function is called when a new CPU comes online (or fails to come
2023 * up) or goes offline.
Kevin Cernekee034260d2010-06-03 22:11:25 -07002024 */
Sebastian Andrzej Siewior90b14882016-11-03 15:49:58 +01002025static int console_cpu_notify(unsigned int cpu)
Kevin Cernekee034260d2010-06-03 22:11:25 -07002026{
Thomas Gleixnerf97960f2016-11-17 17:31:55 +01002027 if (!cpuhp_tasks_frozen) {
Sergey Senozhatsky64ca7522017-01-21 19:47:29 +09002028 /* If trylock fails, someone else is doing the printing */
2029 if (console_trylock())
2030 console_unlock();
Kevin Cernekee034260d2010-06-03 22:11:25 -07002031 }
Sebastian Andrzej Siewior90b14882016-11-03 15:49:58 +01002032 return 0;
Kevin Cernekee034260d2010-06-03 22:11:25 -07002033}
2034
2035/**
Torben Hohnac751ef2011-01-25 15:07:35 -08002036 * console_lock - lock the console system for exclusive use.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002038 * Acquires a lock which guarantees that the caller has
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 * exclusive access to the console system and the console_drivers list.
2040 *
2041 * Can sleep, returns nothing.
2042 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002043void console_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
Daniel Vetter6b898c02012-09-17 23:03:31 +00002045 might_sleep();
2046
Jan Karabd8d7cf2014-06-04 16:11:36 -07002047 down_console_sem();
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01002048 if (console_suspended)
2049 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 console_locked = 1;
2051 console_may_schedule = 1;
2052}
Torben Hohnac751ef2011-01-25 15:07:35 -08002053EXPORT_SYMBOL(console_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Torben Hohnac751ef2011-01-25 15:07:35 -08002055/**
2056 * console_trylock - try to lock the console system for exclusive use.
2057 *
Alex Elder0b90fec2014-08-06 16:09:03 -07002058 * Try to acquire a lock which guarantees that the caller has exclusive
2059 * access to the console system and the console_drivers list.
Torben Hohnac751ef2011-01-25 15:07:35 -08002060 *
2061 * returns 1 on success, and 0 on failure to acquire the lock.
2062 */
2063int console_trylock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064{
Jan Karabd8d7cf2014-06-04 16:11:36 -07002065 if (down_trylock_console_sem())
Torben Hohnac751ef2011-01-25 15:07:35 -08002066 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01002067 if (console_suspended) {
Jan Karabd8d7cf2014-06-04 16:11:36 -07002068 up_console_sem();
Torben Hohnac751ef2011-01-25 15:07:35 -08002069 return 0;
Arve Hjønnevåg403f3072009-02-14 02:07:24 +01002070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 console_locked = 1;
Sergey Senozhatsky6b97a202016-03-17 14:21:23 -07002072 /*
2073 * When PREEMPT_COUNT disabled we can't reliably detect if it's
2074 * safe to schedule (e.g. calling printk while holding a spin_lock),
2075 * because preempt_disable()/preempt_enable() are just barriers there
2076 * and preempt_count() is always 0.
2077 *
2078 * RCU read sections have a separate preemption counter when
2079 * PREEMPT_RCU enabled thus we must take extra care and check
2080 * rcu_preempt_depth(), otherwise RCU read sections modify
2081 * preempt_count().
2082 */
2083 console_may_schedule = !oops_in_progress &&
2084 preemptible() &&
2085 !rcu_preempt_depth();
Torben Hohnac751ef2011-01-25 15:07:35 -08002086 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087}
Torben Hohnac751ef2011-01-25 15:07:35 -08002088EXPORT_SYMBOL(console_trylock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090int is_console_locked(void)
2091{
2092 return console_locked;
2093}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002095/*
2096 * Check if we have any console that is capable of printing while cpu is
2097 * booting or shutting down. Requires console_sem.
2098 */
2099static int have_callable_console(void)
2100{
2101 struct console *con;
2102
2103 for_each_console(con)
Sergey Senozhatskyadaf6592016-03-17 14:21:27 -07002104 if ((con->flags & CON_ENABLED) &&
2105 (con->flags & CON_ANYTIME))
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002106 return 1;
2107
2108 return 0;
2109}
2110
2111/*
2112 * Can we actually use the console at this time on this cpu?
2113 *
2114 * Console drivers may assume that per-cpu resources have been allocated. So
2115 * unless they're explicitly marked as being able to cope (CON_ANYTIME) don't
2116 * call them until this CPU is officially up.
2117 */
2118static inline int can_use_console(void)
2119{
2120 return cpu_online(raw_smp_processor_id()) || have_callable_console();
2121}
2122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123/**
Torben Hohnac751ef2011-01-25 15:07:35 -08002124 * console_unlock - unlock the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002126 * Releases the console_lock which the caller holds on the console system
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 * and the console driver list.
2128 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002129 * While the console_lock was held, console output may have been buffered
2130 * by printk(). If this is the case, console_unlock(); emits
2131 * the output prior to releasing the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 *
Kay Sievers7f3a7812012-05-09 01:37:51 +02002133 * If there is output waiting, we wake /dev/kmsg and syslog() users.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002135 * console_unlock(); may be called from any context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002137void console_unlock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138{
Tejun Heo6fe29352015-06-25 15:01:30 -07002139 static char ext_text[CONSOLE_EXT_LOG_MAX];
Kay Sievers70498252012-07-16 18:35:29 -07002140 static char text[LOG_LINE_MAX + PREFIX_MAX];
Kay Sievers7ff95542012-05-03 02:29:13 +02002141 static u64 seen_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 unsigned long flags;
Kay Sievers7ff95542012-05-03 02:29:13 +02002143 bool wake_klogd = false;
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002144 bool do_cond_resched, retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
Linus Torvalds557240b2006-06-19 18:16:01 -07002146 if (console_suspended) {
Jan Karabd8d7cf2014-06-04 16:11:36 -07002147 up_console_sem();
Linus Torvalds557240b2006-06-19 18:16:01 -07002148 return;
2149 }
Antonino A. Daplas78944e542006-08-05 12:14:16 -07002150
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002151 /*
Petr Mladek257ab442017-03-24 17:14:05 +01002152 * Console drivers are called with interrupts disabled, so
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002153 * @console_may_schedule should be cleared before; however, we may
2154 * end up dumping a lot of lines, for example, if called from
2155 * console registration path, and should invoke cond_resched()
2156 * between lines if allowable. Not doing so can cause a very long
2157 * scheduling stall on a slow console leading to RCU stall and
2158 * softlockup warnings which exacerbate the issue with more
2159 * messages practically incapacitating the system.
Petr Mladek257ab442017-03-24 17:14:05 +01002160 *
2161 * console_trylock() is not able to detect the preemptive
2162 * context reliably. Therefore the value must be stored before
2163 * and cleared after the the "again" goto label.
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002164 */
2165 do_cond_resched = console_may_schedule;
Petr Mladek257ab442017-03-24 17:14:05 +01002166again:
Antonino A. Daplas78944e542006-08-05 12:14:16 -07002167 console_may_schedule = 0;
2168
Sergey Senozhatskya8199372016-03-17 14:21:20 -07002169 /*
2170 * We released the console_sem lock, so we need to recheck if
2171 * cpu is online and (if not) is there at least one CON_ANYTIME
2172 * console.
2173 */
2174 if (!can_use_console()) {
2175 console_locked = 0;
2176 up_console_sem();
2177 return;
2178 }
2179
Kay Sievers7ff95542012-05-03 02:29:13 +02002180 for (;;) {
Joe Perches62e32ac2013-07-31 13:53:47 -07002181 struct printk_log *msg;
Tejun Heo6fe29352015-06-25 15:01:30 -07002182 size_t ext_len = 0;
Kay Sievers3ce9a7c2012-05-13 23:30:46 +02002183 size_t len;
Kay Sievers7ff95542012-05-03 02:29:13 +02002184
Sergey Senozhatskyf9752372016-12-27 23:16:09 +09002185 printk_safe_enter_irqsave(flags);
2186 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02002187 if (seen_seq != log_next_seq) {
2188 wake_klogd = true;
2189 seen_seq = log_next_seq;
2190 }
2191
2192 if (console_seq < log_first_seq) {
Maxim Akristiniy9afe77e2017-10-23 19:51:48 +03002193 len = sprintf(text, "** %u printk messages dropped **\n",
Will Deacon84b5ec82014-06-04 16:11:45 -07002194 (unsigned)(log_first_seq - console_seq));
2195
Kay Sievers7ff95542012-05-03 02:29:13 +02002196 /* messages are gone, move to first one */
2197 console_seq = log_first_seq;
2198 console_idx = log_first_idx;
Will Deacon84b5ec82014-06-04 16:11:45 -07002199 } else {
2200 len = 0;
Kay Sievers7ff95542012-05-03 02:29:13 +02002201 }
Kay Sievers084681d2012-06-28 09:38:53 +02002202skip:
Kay Sievers7ff95542012-05-03 02:29:13 +02002203 if (console_seq == log_next_seq)
2204 break;
2205
2206 msg = log_from_idx(console_idx);
Sergey Senozhatskyd9c23522016-12-24 23:09:01 +09002207 if (suppress_message_printing(msg->level)) {
Kay Sievers084681d2012-06-28 09:38:53 +02002208 /*
2209 * Skip record we have buffered and already printed
Sergey Senozhatskycf775442016-08-02 14:03:56 -07002210 * directly to the console when we received it, and
2211 * record that has level above the console loglevel.
Kay Sievers084681d2012-06-28 09:38:53 +02002212 */
2213 console_idx = log_next(console_idx);
2214 console_seq++;
2215 goto skip;
2216 }
Kay Sievers649e6ee2012-05-10 04:30:45 +02002217
Linus Torvalds5aa068e2016-10-25 11:27:31 -07002218 len += msg_print_text(msg, false, text + len, sizeof(text) - len);
Tejun Heo6fe29352015-06-25 15:01:30 -07002219 if (nr_ext_console_drivers) {
2220 ext_len = msg_print_ext_header(ext_text,
2221 sizeof(ext_text),
Linus Torvalds5aa068e2016-10-25 11:27:31 -07002222 msg, console_seq);
Tejun Heo6fe29352015-06-25 15:01:30 -07002223 ext_len += msg_print_ext_body(ext_text + ext_len,
2224 sizeof(ext_text) - ext_len,
2225 log_dict(msg), msg->dict_len,
2226 log_text(msg), msg->text_len);
2227 }
Kay Sievers7ff95542012-05-03 02:29:13 +02002228 console_idx = log_next(console_idx);
2229 console_seq++;
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002230 raw_spin_unlock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02002231
Steven Rostedt81d68a92008-05-12 21:20:42 +02002232 stop_critical_timings(); /* don't trace print latency */
Sergey Senozhatskyd9c23522016-12-24 23:09:01 +09002233 call_console_drivers(ext_text, ext_len, text, len);
Steven Rostedt81d68a92008-05-12 21:20:42 +02002234 start_critical_timings();
Sergey Senozhatskyf9752372016-12-27 23:16:09 +09002235 printk_safe_exit_irqrestore(flags);
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002236
2237 if (do_cond_resched)
2238 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 }
2240 console_locked = 0;
Feng Tangfe3d8ad2011-03-22 16:34:21 -07002241
2242 /* Release the exclusive_console once it is used */
2243 if (unlikely(exclusive_console))
2244 exclusive_console = NULL;
2245
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002246 raw_spin_unlock(&logbuf_lock);
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002247
Jan Karabd8d7cf2014-06-04 16:11:36 -07002248 up_console_sem();
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002249
2250 /*
2251 * Someone could have filled up the buffer again, so re-check if there's
2252 * something to flush. In case we cannot trylock the console_sem again,
2253 * there's a new owner and the console_unlock() from them will do the
2254 * flush, no worries.
2255 */
Thomas Gleixner07354eb2009-07-25 17:50:36 +02002256 raw_spin_lock(&logbuf_lock);
Kay Sievers7ff95542012-05-03 02:29:13 +02002257 retry = console_seq != log_next_seq;
Sergey Senozhatskyf9752372016-12-27 23:16:09 +09002258 raw_spin_unlock(&logbuf_lock);
2259 printk_safe_exit_irqrestore(flags);
Peter Zijlstra09dc3cf2011-12-08 14:34:13 -08002260
Peter Zijlstra4f2a8d32011-06-22 11:20:09 +02002261 if (retry && console_trylock())
2262 goto again;
2263
Kirill Korotaeve3e8a752007-02-10 01:46:19 -08002264 if (wake_klogd)
2265 wake_up_klogd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266}
Torben Hohnac751ef2011-01-25 15:07:35 -08002267EXPORT_SYMBOL(console_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
Martin Waitzddad86c2005-11-13 16:08:14 -08002269/**
2270 * console_conditional_schedule - yield the CPU if required
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 *
2272 * If the console code is currently allowed to sleep, and
2273 * if this CPU should yield the CPU to another task, do
2274 * so here.
2275 *
Torben Hohnac751ef2011-01-25 15:07:35 -08002276 * Must be called within console_lock();.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 */
2278void __sched console_conditional_schedule(void)
2279{
2280 if (console_may_schedule)
2281 cond_resched();
2282}
2283EXPORT_SYMBOL(console_conditional_schedule);
2284
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285void console_unblank(void)
2286{
2287 struct console *c;
2288
2289 /*
2290 * console_unblank can no longer be called in interrupt context unless
2291 * oops_in_progress is set to 1..
2292 */
2293 if (oops_in_progress) {
Jan Karabd8d7cf2014-06-04 16:11:36 -07002294 if (down_trylock_console_sem() != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 return;
2296 } else
Torben Hohnac751ef2011-01-25 15:07:35 -08002297 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299 console_locked = 1;
2300 console_may_schedule = 0;
Robin Getz4d091612009-07-01 21:08:37 -04002301 for_each_console(c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 if ((c->flags & CON_ENABLED) && c->unblank)
2303 c->unblank();
Torben Hohnac751ef2011-01-25 15:07:35 -08002304 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
Tejun Heo8d91f8b2016-01-15 16:58:24 -08002307/**
2308 * console_flush_on_panic - flush console content on panic
2309 *
2310 * Immediately output all pending messages no matter what.
2311 */
2312void console_flush_on_panic(void)
2313{
2314 /*
2315 * If someone else is holding the console lock, trylock will fail
2316 * and may_schedule may be set. Ignore and proceed to unlock so
2317 * that messages are flushed out. As this can be called from any
2318 * context and we don't want to get preempted while flushing,
2319 * ensure may_schedule is cleared.
2320 */
2321 console_trylock();
2322 console_may_schedule = 0;
2323 console_unlock();
2324}
2325
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326/*
2327 * Return the console tty driver structure and its associated index
2328 */
2329struct tty_driver *console_device(int *index)
2330{
2331 struct console *c;
2332 struct tty_driver *driver = NULL;
2333
Torben Hohnac751ef2011-01-25 15:07:35 -08002334 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04002335 for_each_console(c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 if (!c->device)
2337 continue;
2338 driver = c->device(c, index);
2339 if (driver)
2340 break;
2341 }
Torben Hohnac751ef2011-01-25 15:07:35 -08002342 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 return driver;
2344}
2345
2346/*
2347 * Prevent further output on the passed console device so that (for example)
2348 * serial drivers can disable console output before suspending a port, and can
2349 * re-enable output afterwards.
2350 */
2351void console_stop(struct console *console)
2352{
Torben Hohnac751ef2011-01-25 15:07:35 -08002353 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 console->flags &= ~CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002355 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356}
2357EXPORT_SYMBOL(console_stop);
2358
2359void console_start(struct console *console)
2360{
Torben Hohnac751ef2011-01-25 15:07:35 -08002361 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 console->flags |= CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002363 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364}
2365EXPORT_SYMBOL(console_start);
2366
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002367static int __read_mostly keep_bootcon;
2368
2369static int __init keep_bootcon_setup(char *str)
2370{
2371 keep_bootcon = 1;
Andrew Morton27083ba2013-11-12 15:08:50 -08002372 pr_info("debug: skip boot console de-registration.\n");
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002373
2374 return 0;
2375}
2376
2377early_param("keep_bootcon", keep_bootcon_setup);
2378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379/*
2380 * The console driver calls this routine during kernel initialization
2381 * to register the console printing procedure with printk() and to
2382 * print any messages that were printed by the kernel before the
2383 * console driver was initialized.
Robin Getz4d091612009-07-01 21:08:37 -04002384 *
2385 * This can happen pretty early during the boot process (because of
2386 * early_printk) - sometimes before setup_arch() completes - be careful
2387 * of what kernel features are used - they may not be initialised yet.
2388 *
2389 * There are two types of consoles - bootconsoles (early_printk) and
2390 * "real" consoles (everything which is not a bootconsole) which are
2391 * handled differently.
2392 * - Any number of bootconsoles can be registered at any time.
2393 * - As soon as a "real" console is registered, all bootconsoles
2394 * will be unregistered automatically.
2395 * - Once a "real" console is registered, any attempt to register a
2396 * bootconsoles will be rejected
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 */
Robin Getz4d091612009-07-01 21:08:37 -04002398void register_console(struct console *newcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399{
Jesper Juhl40dc5652005-10-30 15:02:46 -08002400 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 unsigned long flags;
Robin Getz4d091612009-07-01 21:08:37 -04002402 struct console *bcon = NULL;
Joe Perches23475402013-07-31 13:53:46 -07002403 struct console_cmdline *c;
Aleksey Makarovb077baf2017-03-15 13:28:50 +03002404 static bool has_preferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Andreas Bießmann16cf48a2013-08-02 12:23:34 +02002406 if (console_drivers)
2407 for_each_console(bcon)
2408 if (WARN(bcon == newcon,
2409 "console '%s%d' already registered\n",
2410 bcon->name, bcon->index))
2411 return;
2412
Robin Getz4d091612009-07-01 21:08:37 -04002413 /*
2414 * before we register a new CON_BOOT console, make sure we don't
2415 * already have a valid console
2416 */
2417 if (console_drivers && newcon->flags & CON_BOOT) {
2418 /* find the last or real console */
2419 for_each_console(bcon) {
2420 if (!(bcon->flags & CON_BOOT)) {
Andrew Morton27083ba2013-11-12 15:08:50 -08002421 pr_info("Too late to register bootconsole %s%d\n",
Robin Getz4d091612009-07-01 21:08:37 -04002422 newcon->name, newcon->index);
2423 return;
2424 }
2425 }
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002426 }
2427
Robin Getz4d091612009-07-01 21:08:37 -04002428 if (console_drivers && console_drivers->flags & CON_BOOT)
2429 bcon = console_drivers;
2430
Aleksey Makarovb077baf2017-03-15 13:28:50 +03002431 if (!has_preferred || bcon || !console_drivers)
Aleksey Makarovad86ee22017-03-15 13:28:51 +03002432 has_preferred = preferred_console >= 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
2434 /*
2435 * See if we want to use this console driver. If we
2436 * didn't select a console we take the first one
2437 * that registers here.
2438 */
Aleksey Makarovb077baf2017-03-15 13:28:50 +03002439 if (!has_preferred) {
Robin Getz4d091612009-07-01 21:08:37 -04002440 if (newcon->index < 0)
2441 newcon->index = 0;
2442 if (newcon->setup == NULL ||
2443 newcon->setup(newcon, NULL) == 0) {
2444 newcon->flags |= CON_ENABLED;
2445 if (newcon->device) {
2446 newcon->flags |= CON_CONSDEV;
Aleksey Makarovb077baf2017-03-15 13:28:50 +03002447 has_preferred = true;
Jan Kiszkacd3a1b82008-05-12 21:21:04 +02002448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 }
2450 }
2451
2452 /*
Petr Mladekdac8bbb2017-06-08 12:01:30 +02002453 * See if this console matches one we selected on
2454 * the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 */
Petr Mladekdac8bbb2017-06-08 12:01:30 +02002456 for (i = 0, c = console_cmdline;
2457 i < MAX_CMDLINECONSOLES && c->name[0];
2458 i++, c++) {
Peter Hurleyc7cef0a2015-03-09 16:27:12 -04002459 if (!newcon->match ||
2460 newcon->match(newcon, c->name, c->index, c->options) != 0) {
2461 /* default matching */
2462 BUILD_BUG_ON(sizeof(c->name) != sizeof(newcon->name));
2463 if (strcmp(c->name, newcon->name) != 0)
2464 continue;
2465 if (newcon->index >= 0 &&
2466 newcon->index != c->index)
2467 continue;
2468 if (newcon->index < 0)
2469 newcon->index = c->index;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002470
Peter Hurleyc7cef0a2015-03-09 16:27:12 -04002471 if (_braille_register_console(newcon, c))
2472 return;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002473
Peter Hurleyc7cef0a2015-03-09 16:27:12 -04002474 if (newcon->setup &&
2475 newcon->setup(newcon, c->options) != 0)
2476 break;
2477 }
2478
Robin Getz4d091612009-07-01 21:08:37 -04002479 newcon->flags |= CON_ENABLED;
Aleksey Makarovad86ee22017-03-15 13:28:51 +03002480 if (i == preferred_console) {
Robin Getz4d091612009-07-01 21:08:37 -04002481 newcon->flags |= CON_CONSDEV;
Aleksey Makarovb077baf2017-03-15 13:28:50 +03002482 has_preferred = true;
Greg Edwardsab4af032005-06-23 00:09:05 -07002483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 break;
2485 }
2486
Robin Getz4d091612009-07-01 21:08:37 -04002487 if (!(newcon->flags & CON_ENABLED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 return;
2489
Robin Getz8259cf42009-07-09 13:08:37 -04002490 /*
2491 * If we have a bootconsole, and are switching to a real console,
2492 * don't print everything out again, since when the boot console, and
2493 * the real console are the same physical device, it's annoying to
2494 * see the beginning boot messages twice
2495 */
2496 if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
Robin Getz4d091612009-07-01 21:08:37 -04002497 newcon->flags &= ~CON_PRINTBUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
2499 /*
2500 * Put this console in the list - keep the
2501 * preferred driver at the head of the list.
2502 */
Torben Hohnac751ef2011-01-25 15:07:35 -08002503 console_lock();
Robin Getz4d091612009-07-01 21:08:37 -04002504 if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) {
2505 newcon->next = console_drivers;
2506 console_drivers = newcon;
2507 if (newcon->next)
2508 newcon->next->flags &= ~CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 } else {
Robin Getz4d091612009-07-01 21:08:37 -04002510 newcon->next = console_drivers->next;
2511 console_drivers->next = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 }
Tejun Heo6fe29352015-06-25 15:01:30 -07002513
2514 if (newcon->flags & CON_EXTENDED)
2515 if (!nr_ext_console_drivers++)
2516 pr_info("printk: continuation disabled due to ext consoles, expect more fragments in /dev/kmsg\n");
2517
Robin Getz4d091612009-07-01 21:08:37 -04002518 if (newcon->flags & CON_PRINTBUFFER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 /*
Torben Hohnac751ef2011-01-25 15:07:35 -08002520 * console_unlock(); will print out the buffered messages
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 * for us.
2522 */
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09002523 logbuf_lock_irqsave(flags);
Kay Sievers7ff95542012-05-03 02:29:13 +02002524 console_seq = syslog_seq;
2525 console_idx = syslog_idx;
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09002526 logbuf_unlock_irqrestore(flags);
Feng Tangfe3d8ad2011-03-22 16:34:21 -07002527 /*
2528 * We're about to replay the log buffer. Only do this to the
2529 * just-registered console to avoid excessive message spam to
2530 * the already-registered consoles.
2531 */
2532 exclusive_console = newcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 }
Torben Hohnac751ef2011-01-25 15:07:35 -08002534 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002535 console_sysfs_notify();
Robin Getz8259cf42009-07-09 13:08:37 -04002536
2537 /*
2538 * By unregistering the bootconsoles after we enable the real console
2539 * we get the "console xxx enabled" message on all the consoles -
2540 * boot consoles, real consoles, etc - this is to ensure that end
2541 * users know there might be something in the kernel's log buffer that
2542 * went to the bootconsole (that they do not see on the real console)
2543 */
Andrew Morton27083ba2013-11-12 15:08:50 -08002544 pr_info("%sconsole [%s%d] enabled\n",
Kees Cook6b802392013-11-12 15:08:49 -08002545 (newcon->flags & CON_BOOT) ? "boot" : "" ,
2546 newcon->name, newcon->index);
Fabio M. Di Nitto7bf69392011-03-22 16:34:20 -07002547 if (bcon &&
2548 ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) &&
2549 !keep_bootcon) {
Kees Cook6b802392013-11-12 15:08:49 -08002550 /* We need to iterate through all boot consoles, to make
2551 * sure we print everything out, before we unregister them.
Robin Getz8259cf42009-07-09 13:08:37 -04002552 */
Robin Getz8259cf42009-07-09 13:08:37 -04002553 for_each_console(bcon)
2554 if (bcon->flags & CON_BOOT)
2555 unregister_console(bcon);
Robin Getz8259cf42009-07-09 13:08:37 -04002556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557}
2558EXPORT_SYMBOL(register_console);
2559
Jesper Juhl40dc5652005-10-30 15:02:46 -08002560int unregister_console(struct console *console)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561{
Jesper Juhl40dc5652005-10-30 15:02:46 -08002562 struct console *a, *b;
Joe Perchesbbeddf52013-07-31 13:53:45 -07002563 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Andrew Morton27083ba2013-11-12 15:08:50 -08002565 pr_info("%sconsole [%s%d] disabled\n",
Kees Cook6b802392013-11-12 15:08:49 -08002566 (console->flags & CON_BOOT) ? "boot" : "" ,
2567 console->name, console->index);
2568
Joe Perchesbbeddf52013-07-31 13:53:45 -07002569 res = _braille_unregister_console(console);
2570 if (res)
2571 return res;
Samuel Thibaultf7511d52008-04-30 00:54:51 -07002572
Joe Perchesbbeddf52013-07-31 13:53:45 -07002573 res = 1;
Torben Hohnac751ef2011-01-25 15:07:35 -08002574 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 if (console_drivers == console) {
2576 console_drivers=console->next;
2577 res = 0;
Benjamin Herrenschmidte9b15b52005-11-23 13:37:44 -08002578 } else if (console_drivers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 for (a=console_drivers->next, b=console_drivers ;
2580 a; b=a, a=b->next) {
2581 if (a == console) {
2582 b->next = a->next;
2583 res = 0;
2584 break;
Jesper Juhl40dc5652005-10-30 15:02:46 -08002585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 }
2587 }
Jesper Juhl40dc5652005-10-30 15:02:46 -08002588
Tejun Heo6fe29352015-06-25 15:01:30 -07002589 if (!res && (console->flags & CON_EXTENDED))
2590 nr_ext_console_drivers--;
2591
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002592 /*
Greg Edwardsab4af032005-06-23 00:09:05 -07002593 * If this isn't the last console and it has CON_CONSDEV set, we
2594 * need to set it on the next preferred console.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 */
Gerd Hoffmann69331af2007-05-08 00:26:49 -07002596 if (console_drivers != NULL && console->flags & CON_CONSDEV)
Greg Edwardsab4af032005-06-23 00:09:05 -07002597 console_drivers->flags |= CON_CONSDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Stephen Chivers7fa21dd2014-05-14 08:04:39 +10002599 console->flags &= ~CON_ENABLED;
Torben Hohnac751ef2011-01-25 15:07:35 -08002600 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01002601 console_sysfs_notify();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 return res;
2603}
2604EXPORT_SYMBOL(unregister_console);
Matt Mackalld59745c2005-05-01 08:59:02 -07002605
Thierry Reding81cc26f2016-01-15 16:58:21 -08002606/*
Nicolas Pitre0c688612017-04-12 18:37:14 -04002607 * Initialize the console device. This is called *early*, so
2608 * we can't necessarily depend on lots of kernel help here.
2609 * Just do some early initializations, and do the complex setup
2610 * later.
2611 */
2612void __init console_init(void)
2613{
2614 initcall_t *call;
2615
2616 /* Setup the default TTY line discipline. */
2617 n_tty_init();
2618
2619 /*
2620 * set up the console device so that later boot sequences can
2621 * inform about problems etc..
2622 */
2623 call = __con_initcall_start;
2624 while (call < __con_initcall_end) {
2625 (*call)();
2626 call++;
2627 }
2628}
2629
2630/*
Thierry Reding81cc26f2016-01-15 16:58:21 -08002631 * Some boot consoles access data that is in the init section and which will
2632 * be discarded after the initcalls have been run. To make sure that no code
2633 * will access this data, unregister the boot consoles in a late initcall.
2634 *
2635 * If for some reason, such as deferred probe or the driver being a loadable
2636 * module, the real console hasn't registered yet at this point, there will
2637 * be a brief interval in which no messages are logged to the console, which
2638 * makes it difficult to diagnose problems that occur during this time.
2639 *
2640 * To mitigate this problem somewhat, only unregister consoles whose memory
Matt Redfearn2b1be682017-07-14 14:51:12 +02002641 * intersects with the init section. Note that all other boot consoles will
2642 * get unregistred when the real preferred console is registered.
Thierry Reding81cc26f2016-01-15 16:58:21 -08002643 */
Kevin Cernekee034260d2010-06-03 22:11:25 -07002644static int __init printk_late_init(void)
Robin Getz0c5564b2007-08-20 15:22:47 -04002645{
Robin Getz4d091612009-07-01 21:08:37 -04002646 struct console *con;
Sebastian Andrzej Siewior90b14882016-11-03 15:49:58 +01002647 int ret;
Robin Getz4d091612009-07-01 21:08:37 -04002648
2649 for_each_console(con) {
Petr Mladek5a814232017-07-14 14:51:13 +02002650 if (!(con->flags & CON_BOOT))
2651 continue;
2652
2653 /* Check addresses that might be used for enabled consoles. */
2654 if (init_section_intersects(con, sizeof(*con)) ||
2655 init_section_contains(con->write, 0) ||
2656 init_section_contains(con->read, 0) ||
2657 init_section_contains(con->device, 0) ||
2658 init_section_contains(con->unblank, 0) ||
2659 init_section_contains(con->data, 0)) {
Thierry Reding81cc26f2016-01-15 16:58:21 -08002660 /*
Matt Redfearn2b1be682017-07-14 14:51:12 +02002661 * Please, consider moving the reported consoles out
2662 * of the init section.
Thierry Reding81cc26f2016-01-15 16:58:21 -08002663 */
Matt Redfearn2b1be682017-07-14 14:51:12 +02002664 pr_warn("bootconsole [%s%d] uses init memory and must be disabled even before the real one is ready\n",
2665 con->name, con->index);
2666 unregister_console(con);
Robin Getzcb00e992007-08-21 23:14:58 -04002667 }
Robin Getz0c5564b2007-08-20 15:22:47 -04002668 }
Sebastian Andrzej Siewior90b14882016-11-03 15:49:58 +01002669 ret = cpuhp_setup_state_nocalls(CPUHP_PRINTK_DEAD, "printk:dead", NULL,
2670 console_cpu_notify);
2671 WARN_ON(ret < 0);
2672 ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, "printk:online",
2673 console_cpu_notify, NULL);
2674 WARN_ON(ret < 0);
Robin Getz0c5564b2007-08-20 15:22:47 -04002675 return 0;
2676}
Kevin Cernekee034260d2010-06-03 22:11:25 -07002677late_initcall(printk_late_init);
Robin Getz0c5564b2007-08-20 15:22:47 -04002678
Joe Perches7ef3d2f2008-02-08 04:21:25 -08002679#if defined CONFIG_PRINTK
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002680/*
2681 * Delayed printk version, for scheduler-internal messages:
2682 */
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002683#define PRINTK_PENDING_WAKEUP 0x01
Steven Rostedt458df9f2014-06-04 16:11:38 -07002684#define PRINTK_PENDING_OUTPUT 0x02
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002685
2686static DEFINE_PER_CPU(int, printk_pending);
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002687
2688static void wake_up_klogd_work_func(struct irq_work *irq_work)
2689{
2690 int pending = __this_cpu_xchg(printk_pending, 0);
2691
Steven Rostedt458df9f2014-06-04 16:11:38 -07002692 if (pending & PRINTK_PENDING_OUTPUT) {
2693 /* If trylock fails, someone else is doing the printing */
2694 if (console_trylock())
2695 console_unlock();
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002696 }
2697
2698 if (pending & PRINTK_PENDING_WAKEUP)
2699 wake_up_interruptible(&log_wait);
2700}
2701
2702static DEFINE_PER_CPU(struct irq_work, wake_up_klogd_work) = {
2703 .func = wake_up_klogd_work_func,
2704 .flags = IRQ_WORK_LAZY,
2705};
2706
2707void wake_up_klogd(void)
2708{
2709 preempt_disable();
2710 if (waitqueue_active(&log_wait)) {
2711 this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP);
Christoph Lameterbb964a92014-08-17 12:30:24 -05002712 irq_work_queue(this_cpu_ptr(&wake_up_klogd_work));
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -07002713 }
2714 preempt_enable();
2715}
Dave Young717115e2008-07-25 01:45:58 -07002716
Petr Mladek719f6a72017-04-20 10:52:31 +02002717int vprintk_deferred(const char *fmt, va_list args)
2718{
2719 int r;
2720
2721 r = vprintk_emit(0, LOGLEVEL_SCHED, NULL, 0, fmt, args);
2722
2723 preempt_disable();
2724 __this_cpu_or(printk_pending, PRINTK_PENDING_OUTPUT);
2725 irq_work_queue(this_cpu_ptr(&wake_up_klogd_work));
2726 preempt_enable();
2727
2728 return r;
2729}
2730
John Stultzaac74dc2014-06-04 16:11:40 -07002731int printk_deferred(const char *fmt, ...)
Peter Zijlstra600e1452012-03-15 12:35:37 +01002732{
Peter Zijlstra600e1452012-03-15 12:35:37 +01002733 va_list args;
Peter Zijlstra600e1452012-03-15 12:35:37 +01002734 int r;
2735
Peter Zijlstra600e1452012-03-15 12:35:37 +01002736 va_start(args, fmt);
Petr Mladek719f6a72017-04-20 10:52:31 +02002737 r = vprintk_deferred(fmt, args);
Peter Zijlstra600e1452012-03-15 12:35:37 +01002738 va_end(args);
2739
Peter Zijlstra600e1452012-03-15 12:35:37 +01002740 return r;
2741}
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743/*
2744 * printk rate limiting, lifted from the networking subsystem.
2745 *
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002746 * This enforces a rate limit: not more than 10 kernel messages
2747 * every 5s to make a denial-of-service attack impossible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 */
Uwe Kleine-König641de9d2008-07-29 22:33:38 -07002749DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10);
2750
Christian Borntraeger5c828712009-10-23 14:58:11 +02002751int __printk_ratelimit(const char *func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752{
Christian Borntraeger5c828712009-10-23 14:58:11 +02002753 return ___ratelimit(&printk_ratelimit_state, func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754}
Christian Borntraeger5c828712009-10-23 14:58:11 +02002755EXPORT_SYMBOL(__printk_ratelimit);
Andrew Mortonf46c4832006-11-02 22:07:16 -08002756
2757/**
2758 * printk_timed_ratelimit - caller-controlled printk ratelimiting
2759 * @caller_jiffies: pointer to caller's state
2760 * @interval_msecs: minimum interval between prints
2761 *
2762 * printk_timed_ratelimit() returns true if more than @interval_msecs
2763 * milliseconds have elapsed since the last time printk_timed_ratelimit()
2764 * returned true.
2765 */
2766bool printk_timed_ratelimit(unsigned long *caller_jiffies,
2767 unsigned int interval_msecs)
2768{
Alex Elder249771b2014-08-06 16:09:08 -07002769 unsigned long elapsed = jiffies - *caller_jiffies;
2770
2771 if (*caller_jiffies && elapsed <= msecs_to_jiffies(interval_msecs))
2772 return false;
2773
2774 *caller_jiffies = jiffies;
2775 return true;
Andrew Mortonf46c4832006-11-02 22:07:16 -08002776}
2777EXPORT_SYMBOL(printk_timed_ratelimit);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002778
2779static DEFINE_SPINLOCK(dump_list_lock);
2780static LIST_HEAD(dump_list);
2781
2782/**
2783 * kmsg_dump_register - register a kernel log dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002784 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002785 *
2786 * Adds a kernel log dumper to the system. The dump callback in the
2787 * structure will be called when the kernel oopses or panics and must be
2788 * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise.
2789 */
2790int kmsg_dump_register(struct kmsg_dumper *dumper)
2791{
2792 unsigned long flags;
2793 int err = -EBUSY;
2794
2795 /* The dump callback needs to be set */
2796 if (!dumper->dump)
2797 return -EINVAL;
2798
2799 spin_lock_irqsave(&dump_list_lock, flags);
2800 /* Don't allow registering multiple times */
2801 if (!dumper->registered) {
2802 dumper->registered = 1;
Huang Yingfb842b002011-01-12 16:59:43 -08002803 list_add_tail_rcu(&dumper->list, &dump_list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002804 err = 0;
2805 }
2806 spin_unlock_irqrestore(&dump_list_lock, flags);
2807
2808 return err;
2809}
2810EXPORT_SYMBOL_GPL(kmsg_dump_register);
2811
2812/**
2813 * kmsg_dump_unregister - unregister a kmsg dumper.
Randy Dunlap64855362009-12-17 15:27:27 -08002814 * @dumper: pointer to the kmsg_dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +02002815 *
2816 * Removes a dump device from the system. Returns zero on success and
2817 * %-EINVAL otherwise.
2818 */
2819int kmsg_dump_unregister(struct kmsg_dumper *dumper)
2820{
2821 unsigned long flags;
2822 int err = -EINVAL;
2823
2824 spin_lock_irqsave(&dump_list_lock, flags);
2825 if (dumper->registered) {
2826 dumper->registered = 0;
Huang Yingfb842b002011-01-12 16:59:43 -08002827 list_del_rcu(&dumper->list);
Simon Kagstrom456b5652009-10-16 14:09:18 +02002828 err = 0;
2829 }
2830 spin_unlock_irqrestore(&dump_list_lock, flags);
Huang Yingfb842b002011-01-12 16:59:43 -08002831 synchronize_rcu();
Simon Kagstrom456b5652009-10-16 14:09:18 +02002832
2833 return err;
2834}
2835EXPORT_SYMBOL_GPL(kmsg_dump_unregister);
2836
Kay Sievers7ff95542012-05-03 02:29:13 +02002837static bool always_kmsg_dump;
2838module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR);
2839
Simon Kagstrom456b5652009-10-16 14:09:18 +02002840/**
2841 * kmsg_dump - dump kernel log to kernel message dumpers.
2842 * @reason: the reason (oops, panic etc) for dumping
2843 *
Kay Sieverse2ae7152012-06-15 14:07:51 +02002844 * Call each of the registered dumper's dump() callback, which can
2845 * retrieve the kmsg records with kmsg_dump_get_line() or
2846 * kmsg_dump_get_buffer().
Simon Kagstrom456b5652009-10-16 14:09:18 +02002847 */
2848void kmsg_dump(enum kmsg_dump_reason reason)
2849{
Simon Kagstrom456b5652009-10-16 14:09:18 +02002850 struct kmsg_dumper *dumper;
Simon Kagstrom456b5652009-10-16 14:09:18 +02002851 unsigned long flags;
2852
Matthew Garrettc22ab3322012-03-05 14:59:10 -08002853 if ((reason > KMSG_DUMP_OOPS) && !always_kmsg_dump)
2854 return;
2855
Huang Yingfb842b002011-01-12 16:59:43 -08002856 rcu_read_lock();
Kay Sieverse2ae7152012-06-15 14:07:51 +02002857 list_for_each_entry_rcu(dumper, &dump_list, list) {
2858 if (dumper->max_reason && reason > dumper->max_reason)
2859 continue;
2860
2861 /* initialize iterator with data about the stored records */
2862 dumper->active = true;
2863
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09002864 logbuf_lock_irqsave(flags);
Kay Sieverse2ae7152012-06-15 14:07:51 +02002865 dumper->cur_seq = clear_seq;
2866 dumper->cur_idx = clear_idx;
2867 dumper->next_seq = log_next_seq;
2868 dumper->next_idx = log_next_idx;
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09002869 logbuf_unlock_irqrestore(flags);
Kay Sieverse2ae7152012-06-15 14:07:51 +02002870
2871 /* invoke dumper which will iterate over records */
2872 dumper->dump(dumper, reason);
2873
2874 /* reset iterator */
2875 dumper->active = false;
2876 }
Huang Yingfb842b002011-01-12 16:59:43 -08002877 rcu_read_unlock();
Simon Kagstrom456b5652009-10-16 14:09:18 +02002878}
Kay Sieverse2ae7152012-06-15 14:07:51 +02002879
2880/**
Anton Vorontsov533827c2012-07-20 17:28:07 -07002881 * kmsg_dump_get_line_nolock - retrieve one kmsg log line (unlocked version)
2882 * @dumper: registered kmsg dumper
2883 * @syslog: include the "<4>" prefixes
2884 * @line: buffer to copy the line to
2885 * @size: maximum size of the buffer
2886 * @len: length of line placed into buffer
2887 *
2888 * Start at the beginning of the kmsg buffer, with the oldest kmsg
2889 * record, and copy one record into the provided buffer.
2890 *
2891 * Consecutive calls will return the next available record moving
2892 * towards the end of the buffer with the youngest messages.
2893 *
2894 * A return value of FALSE indicates that there are no more records to
2895 * read.
2896 *
2897 * The function is similar to kmsg_dump_get_line(), but grabs no locks.
2898 */
2899bool kmsg_dump_get_line_nolock(struct kmsg_dumper *dumper, bool syslog,
2900 char *line, size_t size, size_t *len)
2901{
Joe Perches62e32ac2013-07-31 13:53:47 -07002902 struct printk_log *msg;
Anton Vorontsov533827c2012-07-20 17:28:07 -07002903 size_t l = 0;
2904 bool ret = false;
2905
2906 if (!dumper->active)
2907 goto out;
2908
2909 if (dumper->cur_seq < log_first_seq) {
2910 /* messages are gone, move to first available one */
2911 dumper->cur_seq = log_first_seq;
2912 dumper->cur_idx = log_first_idx;
2913 }
2914
2915 /* last entry */
2916 if (dumper->cur_seq >= log_next_seq)
2917 goto out;
2918
2919 msg = log_from_idx(dumper->cur_idx);
Linus Torvalds5aa068e2016-10-25 11:27:31 -07002920 l = msg_print_text(msg, syslog, line, size);
Anton Vorontsov533827c2012-07-20 17:28:07 -07002921
2922 dumper->cur_idx = log_next(dumper->cur_idx);
2923 dumper->cur_seq++;
2924 ret = true;
2925out:
2926 if (len)
2927 *len = l;
2928 return ret;
2929}
2930
2931/**
Kay Sieverse2ae7152012-06-15 14:07:51 +02002932 * kmsg_dump_get_line - retrieve one kmsg log line
2933 * @dumper: registered kmsg dumper
2934 * @syslog: include the "<4>" prefixes
2935 * @line: buffer to copy the line to
2936 * @size: maximum size of the buffer
2937 * @len: length of line placed into buffer
2938 *
2939 * Start at the beginning of the kmsg buffer, with the oldest kmsg
2940 * record, and copy one record into the provided buffer.
2941 *
2942 * Consecutive calls will return the next available record moving
2943 * towards the end of the buffer with the youngest messages.
2944 *
2945 * A return value of FALSE indicates that there are no more records to
2946 * read.
2947 */
2948bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog,
2949 char *line, size_t size, size_t *len)
2950{
2951 unsigned long flags;
Anton Vorontsov533827c2012-07-20 17:28:07 -07002952 bool ret;
Kay Sieverse2ae7152012-06-15 14:07:51 +02002953
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09002954 logbuf_lock_irqsave(flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07002955 ret = kmsg_dump_get_line_nolock(dumper, syslog, line, size, len);
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09002956 logbuf_unlock_irqrestore(flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07002957
Kay Sieverse2ae7152012-06-15 14:07:51 +02002958 return ret;
2959}
2960EXPORT_SYMBOL_GPL(kmsg_dump_get_line);
2961
2962/**
2963 * kmsg_dump_get_buffer - copy kmsg log lines
2964 * @dumper: registered kmsg dumper
2965 * @syslog: include the "<4>" prefixes
Randy Dunlap4f0f4af2012-06-30 15:37:24 -07002966 * @buf: buffer to copy the line to
Kay Sieverse2ae7152012-06-15 14:07:51 +02002967 * @size: maximum size of the buffer
2968 * @len: length of line placed into buffer
2969 *
2970 * Start at the end of the kmsg buffer and fill the provided buffer
2971 * with as many of the the *youngest* kmsg records that fit into it.
2972 * If the buffer is large enough, all available kmsg records will be
2973 * copied with a single call.
2974 *
2975 * Consecutive calls will fill the buffer with the next block of
2976 * available older records, not including the earlier retrieved ones.
2977 *
2978 * A return value of FALSE indicates that there are no more records to
2979 * read.
2980 */
2981bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog,
2982 char *buf, size_t size, size_t *len)
2983{
2984 unsigned long flags;
2985 u64 seq;
2986 u32 idx;
2987 u64 next_seq;
2988 u32 next_idx;
2989 size_t l = 0;
2990 bool ret = false;
2991
2992 if (!dumper->active)
2993 goto out;
2994
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09002995 logbuf_lock_irqsave(flags);
Kay Sieverse2ae7152012-06-15 14:07:51 +02002996 if (dumper->cur_seq < log_first_seq) {
2997 /* messages are gone, move to first available one */
2998 dumper->cur_seq = log_first_seq;
2999 dumper->cur_idx = log_first_idx;
3000 }
3001
3002 /* last entry */
3003 if (dumper->cur_seq >= dumper->next_seq) {
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09003004 logbuf_unlock_irqrestore(flags);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003005 goto out;
3006 }
3007
3008 /* calculate length of entire buffer */
3009 seq = dumper->cur_seq;
3010 idx = dumper->cur_idx;
3011 while (seq < dumper->next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07003012 struct printk_log *msg = log_from_idx(idx);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003013
Linus Torvalds5aa068e2016-10-25 11:27:31 -07003014 l += msg_print_text(msg, true, NULL, 0);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003015 idx = log_next(idx);
3016 seq++;
3017 }
3018
3019 /* move first record forward until length fits into the buffer */
3020 seq = dumper->cur_seq;
3021 idx = dumper->cur_idx;
3022 while (l > size && seq < dumper->next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07003023 struct printk_log *msg = log_from_idx(idx);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003024
Linus Torvalds5aa068e2016-10-25 11:27:31 -07003025 l -= msg_print_text(msg, true, NULL, 0);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003026 idx = log_next(idx);
3027 seq++;
3028 }
3029
3030 /* last message in next interation */
3031 next_seq = seq;
3032 next_idx = idx;
3033
3034 l = 0;
3035 while (seq < dumper->next_seq) {
Joe Perches62e32ac2013-07-31 13:53:47 -07003036 struct printk_log *msg = log_from_idx(idx);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003037
Linus Torvalds5aa068e2016-10-25 11:27:31 -07003038 l += msg_print_text(msg, syslog, buf + l, size - l);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003039 idx = log_next(idx);
3040 seq++;
3041 }
3042
3043 dumper->next_seq = next_seq;
3044 dumper->next_idx = next_idx;
3045 ret = true;
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09003046 logbuf_unlock_irqrestore(flags);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003047out:
3048 if (len)
3049 *len = l;
3050 return ret;
3051}
3052EXPORT_SYMBOL_GPL(kmsg_dump_get_buffer);
3053
3054/**
Anton Vorontsov533827c2012-07-20 17:28:07 -07003055 * kmsg_dump_rewind_nolock - reset the interator (unlocked version)
3056 * @dumper: registered kmsg dumper
3057 *
3058 * Reset the dumper's iterator so that kmsg_dump_get_line() and
3059 * kmsg_dump_get_buffer() can be called again and used multiple
3060 * times within the same dumper.dump() callback.
3061 *
3062 * The function is similar to kmsg_dump_rewind(), but grabs no locks.
3063 */
3064void kmsg_dump_rewind_nolock(struct kmsg_dumper *dumper)
3065{
3066 dumper->cur_seq = clear_seq;
3067 dumper->cur_idx = clear_idx;
3068 dumper->next_seq = log_next_seq;
3069 dumper->next_idx = log_next_idx;
3070}
3071
3072/**
Kay Sieverse2ae7152012-06-15 14:07:51 +02003073 * kmsg_dump_rewind - reset the interator
3074 * @dumper: registered kmsg dumper
3075 *
3076 * Reset the dumper's iterator so that kmsg_dump_get_line() and
3077 * kmsg_dump_get_buffer() can be called again and used multiple
3078 * times within the same dumper.dump() callback.
3079 */
3080void kmsg_dump_rewind(struct kmsg_dumper *dumper)
3081{
3082 unsigned long flags;
3083
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09003084 logbuf_lock_irqsave(flags);
Anton Vorontsov533827c2012-07-20 17:28:07 -07003085 kmsg_dump_rewind_nolock(dumper);
Sergey Senozhatskyde6fcbd2016-12-27 23:16:11 +09003086 logbuf_unlock_irqrestore(flags);
Kay Sieverse2ae7152012-06-15 14:07:51 +02003087}
3088EXPORT_SYMBOL_GPL(kmsg_dump_rewind);
Tejun Heo196779b2013-04-30 15:27:12 -07003089
Tejun Heo98e5e1b2013-04-30 15:27:15 -07003090static char dump_stack_arch_desc_str[128];
3091
3092/**
3093 * dump_stack_set_arch_desc - set arch-specific str to show with task dumps
3094 * @fmt: printf-style format string
3095 * @...: arguments for the format string
3096 *
3097 * The configured string will be printed right after utsname during task
3098 * dumps. Usually used to add arch-specific system identifiers. If an
3099 * arch wants to make use of such an ID string, it should initialize this
3100 * as soon as possible during boot.
3101 */
3102void __init dump_stack_set_arch_desc(const char *fmt, ...)
3103{
3104 va_list args;
3105
3106 va_start(args, fmt);
3107 vsnprintf(dump_stack_arch_desc_str, sizeof(dump_stack_arch_desc_str),
3108 fmt, args);
3109 va_end(args);
3110}
3111
Tejun Heo196779b2013-04-30 15:27:12 -07003112/**
3113 * dump_stack_print_info - print generic debug info for dump_stack()
3114 * @log_lvl: log level
3115 *
3116 * Arch-specific dump_stack() implementations can use this function to
3117 * print out the same debug information as the generic dump_stack().
3118 */
3119void dump_stack_print_info(const char *log_lvl)
3120{
3121 printk("%sCPU: %d PID: %d Comm: %.20s %s %s %.*s\n",
3122 log_lvl, raw_smp_processor_id(), current->pid, current->comm,
3123 print_tainted(), init_utsname()->release,
3124 (int)strcspn(init_utsname()->version, " "),
3125 init_utsname()->version);
Tejun Heo98e5e1b2013-04-30 15:27:15 -07003126
3127 if (dump_stack_arch_desc_str[0] != '\0')
3128 printk("%sHardware name: %s\n",
3129 log_lvl, dump_stack_arch_desc_str);
Tejun Heo3d1cb202013-04-30 15:27:22 -07003130
3131 print_worker_info(log_lvl, current);
Tejun Heo196779b2013-04-30 15:27:12 -07003132}
3133
Tejun Heoa43cb952013-04-30 15:27:17 -07003134/**
3135 * show_regs_print_info - print generic debug info for show_regs()
3136 * @log_lvl: log level
3137 *
3138 * show_regs() implementations can use this function to print out generic
3139 * debug information.
3140 */
3141void show_regs_print_info(const char *log_lvl)
3142{
3143 dump_stack_print_info(log_lvl);
Tejun Heoa43cb952013-04-30 15:27:17 -07003144}
3145
Joe Perches7ef3d2f2008-02-08 04:21:25 -08003146#endif