Thomas Gleixner | 457c899 | 2019-05-19 13:08:55 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/kernel/printk.c |
| 4 | * |
| 5 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 6 | * |
| 7 | * Modified to make sys_syslog() more flexible: added commands to |
| 8 | * return the last 4k of kernel messages, regardless of whether |
| 9 | * they've been read or not. Added option to suppress kernel printk's |
| 10 | * to the console. Added hook for sending the console messages |
| 11 | * elsewhere, in preparation for a serial line console (someday). |
| 12 | * Ted Ts'o, 2/11/93. |
| 13 | * Modified for sysctl support, 1/8/97, Chris Horn. |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 14 | * Fixed SMP synchronization, 08/08/99, Manfred Spraul |
Christian Kujau | 624dffc | 2006-01-15 02:43:54 +0100 | [diff] [blame] | 15 | * manfred@colorfullife.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | * Rewrote bits to get rid of console_lock |
Francois Cami | e1f8e87 | 2008-10-15 22:01:59 -0700 | [diff] [blame] | 17 | * 01Mar01 Andrew Morton |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | */ |
| 19 | |
He Zhe | dd5adbf | 2018-09-30 00:45:52 +0800 | [diff] [blame] | 20 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/kernel.h> |
| 23 | #include <linux/mm.h> |
| 24 | #include <linux/tty.h> |
| 25 | #include <linux/tty_driver.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/console.h> |
| 27 | #include <linux/init.h> |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 28 | #include <linux/jiffies.h> |
| 29 | #include <linux/nmi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/module.h> |
Jan Engelhardt | 3b9c041 | 2006-06-25 05:48:15 -0700 | [diff] [blame] | 31 | #include <linux/moduleparam.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/delay.h> |
| 33 | #include <linux/smp.h> |
| 34 | #include <linux/security.h> |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 35 | #include <linux/memblock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/syscalls.h> |
Hari Bathini | 692f66f | 2017-05-08 15:56:18 -0700 | [diff] [blame] | 37 | #include <linux/crash_core.h> |
Ingo Molnar | 3fff4c4 | 2009-09-22 16:18:09 +0200 | [diff] [blame] | 38 | #include <linux/ratelimit.h> |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 39 | #include <linux/kmsg_dump.h> |
Kees Cook | 0023459 | 2010-02-03 15:36:43 -0800 | [diff] [blame] | 40 | #include <linux/syslog.h> |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 41 | #include <linux/cpu.h> |
Huang Ying | fb842b00 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 42 | #include <linux/rculist.h> |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 43 | #include <linux/poll.h> |
Frederic Weisbecker | 74876a9 | 2012-10-12 18:00:23 +0200 | [diff] [blame] | 44 | #include <linux/irq_work.h> |
Alex Elder | 249771b | 2014-08-06 16:09:08 -0700 | [diff] [blame] | 45 | #include <linux/ctype.h> |
Christoph Hellwig | e2e40f2 | 2015-02-22 08:58:50 -0800 | [diff] [blame] | 46 | #include <linux/uio.h> |
Ingo Molnar | e601757 | 2017-02-01 16:36:40 +0100 | [diff] [blame] | 47 | #include <linux/sched/clock.h> |
Ingo Molnar | b17b015 | 2017-02-08 18:51:35 +0100 | [diff] [blame] | 48 | #include <linux/sched/debug.h> |
Ingo Molnar | 68db0cf | 2017-02-08 18:51:37 +0100 | [diff] [blame] | 49 | #include <linux/sched/task_stack.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 51 | #include <linux/uaccess.h> |
Christoph Hellwig | 40a7d9f | 2016-08-02 14:03:59 -0700 | [diff] [blame] | 52 | #include <asm/sections.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Abderrahmane Benbachir | 58eacff | 2018-03-22 20:33:28 -0400 | [diff] [blame] | 54 | #include <trace/events/initcall.h> |
Johannes Berg | 9510035 | 2011-11-24 20:03:08 +0100 | [diff] [blame] | 55 | #define CREATE_TRACE_POINTS |
| 56 | #include <trace/events/printk.h> |
| 57 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 58 | #include "printk_ringbuffer.h" |
Joe Perches | d197c43 | 2013-07-31 13:53:44 -0700 | [diff] [blame] | 59 | #include "console_cmdline.h" |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 60 | #include "braille.h" |
Petr Mladek | 42a0bb3 | 2016-05-20 17:00:33 -0700 | [diff] [blame] | 61 | #include "internal.h" |
Joe Perches | d197c43 | 2013-07-31 13:53:44 -0700 | [diff] [blame] | 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | int console_printk[4] = { |
Borislav Petkov | a8fe19e | 2014-06-04 16:11:46 -0700 | [diff] [blame] | 64 | CONSOLE_LOGLEVEL_DEFAULT, /* console_loglevel */ |
Alex Elder | 42a9dc0 | 2014-08-06 16:09:01 -0700 | [diff] [blame] | 65 | MESSAGE_LOGLEVEL_DEFAULT, /* default_message_loglevel */ |
Borislav Petkov | a8fe19e | 2014-06-04 16:11:46 -0700 | [diff] [blame] | 66 | CONSOLE_LOGLEVEL_MIN, /* minimum_console_loglevel */ |
| 67 | CONSOLE_LOGLEVEL_DEFAULT, /* default_console_loglevel */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | }; |
Prarit Bhargava | a193918 | 2019-02-08 19:24:49 +0100 | [diff] [blame] | 69 | EXPORT_SYMBOL_GPL(console_printk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Thomas Zimmermann | 56e6c10 | 2018-07-31 13:06:57 +0200 | [diff] [blame] | 71 | atomic_t ignore_console_lock_warning __read_mostly = ATOMIC_INIT(0); |
| 72 | EXPORT_SYMBOL(ignore_console_lock_warning); |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | /* |
Patrick Pletscher | 0bbfb7c | 2007-02-17 20:10:16 +0100 | [diff] [blame] | 75 | * Low level drivers may need that to know if they can schedule in |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | * their unblank() callback or not. So let's export it. |
| 77 | */ |
| 78 | int oops_in_progress; |
| 79 | EXPORT_SYMBOL(oops_in_progress); |
| 80 | |
| 81 | /* |
| 82 | * console_sem protects the console_drivers list, and also |
| 83 | * provides serialisation for access to the entire console |
| 84 | * driver system. |
| 85 | */ |
Thomas Gleixner | 5b8c4f2 | 2010-09-07 14:33:43 +0000 | [diff] [blame] | 86 | static DEFINE_SEMAPHORE(console_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | struct console *console_drivers; |
Ingo Molnar | a29d1cf | 2008-06-02 13:19:08 +0200 | [diff] [blame] | 88 | EXPORT_SYMBOL_GPL(console_drivers); |
| 89 | |
Feng Tang | c39ea0b | 2019-05-14 15:45:34 -0700 | [diff] [blame] | 90 | /* |
| 91 | * System may need to suppress printk message under certain |
| 92 | * circumstances, like after kernel panic happens. |
| 93 | */ |
| 94 | int __read_mostly suppress_printk; |
| 95 | |
Daniel Vetter | daee779 | 2012-09-22 19:52:11 +0200 | [diff] [blame] | 96 | #ifdef CONFIG_LOCKDEP |
| 97 | static struct lockdep_map console_lock_dep_map = { |
| 98 | .name = "console_lock" |
| 99 | }; |
| 100 | #endif |
| 101 | |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 102 | enum devkmsg_log_bits { |
| 103 | __DEVKMSG_LOG_BIT_ON = 0, |
| 104 | __DEVKMSG_LOG_BIT_OFF, |
| 105 | __DEVKMSG_LOG_BIT_LOCK, |
| 106 | }; |
| 107 | |
| 108 | enum devkmsg_log_masks { |
| 109 | DEVKMSG_LOG_MASK_ON = BIT(__DEVKMSG_LOG_BIT_ON), |
| 110 | DEVKMSG_LOG_MASK_OFF = BIT(__DEVKMSG_LOG_BIT_OFF), |
| 111 | DEVKMSG_LOG_MASK_LOCK = BIT(__DEVKMSG_LOG_BIT_LOCK), |
| 112 | }; |
| 113 | |
| 114 | /* Keep both the 'on' and 'off' bits clear, i.e. ratelimit by default: */ |
| 115 | #define DEVKMSG_LOG_MASK_DEFAULT 0 |
| 116 | |
| 117 | static unsigned int __read_mostly devkmsg_log = DEVKMSG_LOG_MASK_DEFAULT; |
| 118 | |
| 119 | static int __control_devkmsg(char *str) |
| 120 | { |
Chuhong Yuan | 35c3549 | 2019-08-09 15:10:34 +0800 | [diff] [blame] | 121 | size_t len; |
| 122 | |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 123 | if (!str) |
| 124 | return -EINVAL; |
| 125 | |
Chuhong Yuan | 35c3549 | 2019-08-09 15:10:34 +0800 | [diff] [blame] | 126 | len = str_has_prefix(str, "on"); |
| 127 | if (len) { |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 128 | devkmsg_log = DEVKMSG_LOG_MASK_ON; |
Chuhong Yuan | 35c3549 | 2019-08-09 15:10:34 +0800 | [diff] [blame] | 129 | return len; |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 130 | } |
Chuhong Yuan | 35c3549 | 2019-08-09 15:10:34 +0800 | [diff] [blame] | 131 | |
| 132 | len = str_has_prefix(str, "off"); |
| 133 | if (len) { |
| 134 | devkmsg_log = DEVKMSG_LOG_MASK_OFF; |
| 135 | return len; |
| 136 | } |
| 137 | |
| 138 | len = str_has_prefix(str, "ratelimit"); |
| 139 | if (len) { |
| 140 | devkmsg_log = DEVKMSG_LOG_MASK_DEFAULT; |
| 141 | return len; |
| 142 | } |
| 143 | |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 144 | return -EINVAL; |
| 145 | } |
| 146 | |
| 147 | static int __init control_devkmsg(char *str) |
| 148 | { |
| 149 | if (__control_devkmsg(str) < 0) |
| 150 | return 1; |
| 151 | |
| 152 | /* |
| 153 | * Set sysctl string accordingly: |
| 154 | */ |
Sergey Senozhatsky | 6fd78a1 | 2018-01-19 13:39:01 +0900 | [diff] [blame] | 155 | if (devkmsg_log == DEVKMSG_LOG_MASK_ON) |
| 156 | strcpy(devkmsg_log_str, "on"); |
| 157 | else if (devkmsg_log == DEVKMSG_LOG_MASK_OFF) |
| 158 | strcpy(devkmsg_log_str, "off"); |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 159 | /* else "ratelimit" which is set by default. */ |
| 160 | |
| 161 | /* |
| 162 | * Sysctl cannot change it anymore. The kernel command line setting of |
| 163 | * this parameter is to force the setting to be permanent throughout the |
| 164 | * runtime of the system. This is a precation measure against userspace |
| 165 | * trying to be a smarta** and attempting to change it up on us. |
| 166 | */ |
| 167 | devkmsg_log |= DEVKMSG_LOG_MASK_LOCK; |
| 168 | |
| 169 | return 0; |
| 170 | } |
| 171 | __setup("printk.devkmsg=", control_devkmsg); |
| 172 | |
| 173 | char devkmsg_log_str[DEVKMSG_STR_MAX_SIZE] = "ratelimit"; |
Xiaoming Ni | fdcd407 | 2022-01-21 22:13:34 -0800 | [diff] [blame] | 174 | #if defined(CONFIG_PRINTK) && defined(CONFIG_SYSCTL) |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 175 | int devkmsg_sysctl_set_loglvl(struct ctl_table *table, int write, |
Christoph Hellwig | 3292739 | 2020-04-24 08:43:38 +0200 | [diff] [blame] | 176 | void *buffer, size_t *lenp, loff_t *ppos) |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 177 | { |
| 178 | char old_str[DEVKMSG_STR_MAX_SIZE]; |
| 179 | unsigned int old; |
| 180 | int err; |
| 181 | |
| 182 | if (write) { |
| 183 | if (devkmsg_log & DEVKMSG_LOG_MASK_LOCK) |
| 184 | return -EINVAL; |
| 185 | |
| 186 | old = devkmsg_log; |
| 187 | strncpy(old_str, devkmsg_log_str, DEVKMSG_STR_MAX_SIZE); |
| 188 | } |
| 189 | |
| 190 | err = proc_dostring(table, write, buffer, lenp, ppos); |
| 191 | if (err) |
| 192 | return err; |
| 193 | |
| 194 | if (write) { |
| 195 | err = __control_devkmsg(devkmsg_log_str); |
| 196 | |
| 197 | /* |
| 198 | * Do not accept an unknown string OR a known string with |
| 199 | * trailing crap... |
| 200 | */ |
| 201 | if (err < 0 || (err + 1 != *lenp)) { |
| 202 | |
| 203 | /* ... and restore old setting. */ |
| 204 | devkmsg_log = old; |
| 205 | strncpy(devkmsg_log_str, old_str, DEVKMSG_STR_MAX_SIZE); |
| 206 | |
| 207 | return -EINVAL; |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | return 0; |
| 212 | } |
Xiaoming Ni | fdcd407 | 2022-01-21 22:13:34 -0800 | [diff] [blame] | 213 | #endif /* CONFIG_PRINTK && CONFIG_SYSCTL */ |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 214 | |
Sergey Senozhatsky | 9627808 | 2018-10-02 11:38:34 +0900 | [diff] [blame] | 215 | /* Number of registered extended console drivers. */ |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 216 | static int nr_ext_console_drivers; |
| 217 | |
| 218 | /* |
Jan Kara | bd8d7cf | 2014-06-04 16:11:36 -0700 | [diff] [blame] | 219 | * Helper macros to handle lockdep when locking/unlocking console_sem. We use |
| 220 | * macros instead of functions so that _RET_IP_ contains useful information. |
| 221 | */ |
| 222 | #define down_console_sem() do { \ |
| 223 | down(&console_sem);\ |
| 224 | mutex_acquire(&console_lock_dep_map, 0, 0, _RET_IP_);\ |
| 225 | } while (0) |
| 226 | |
| 227 | static int __down_trylock_console_sem(unsigned long ip) |
| 228 | { |
Sergey Senozhatsky | f975237 | 2016-12-27 23:16:09 +0900 | [diff] [blame] | 229 | int lock_failed; |
| 230 | unsigned long flags; |
| 231 | |
| 232 | /* |
| 233 | * Here and in __up_console_sem() we need to be in safe mode, |
| 234 | * because spindump/WARN/etc from under console ->lock will |
| 235 | * deadlock in printk()->down_trylock_console_sem() otherwise. |
| 236 | */ |
| 237 | printk_safe_enter_irqsave(flags); |
| 238 | lock_failed = down_trylock(&console_sem); |
| 239 | printk_safe_exit_irqrestore(flags); |
| 240 | |
| 241 | if (lock_failed) |
Jan Kara | bd8d7cf | 2014-06-04 16:11:36 -0700 | [diff] [blame] | 242 | return 1; |
| 243 | mutex_acquire(&console_lock_dep_map, 0, 1, ip); |
| 244 | return 0; |
| 245 | } |
| 246 | #define down_trylock_console_sem() __down_trylock_console_sem(_RET_IP_) |
| 247 | |
Sergey Senozhatsky | f975237 | 2016-12-27 23:16:09 +0900 | [diff] [blame] | 248 | static void __up_console_sem(unsigned long ip) |
| 249 | { |
| 250 | unsigned long flags; |
| 251 | |
Qian Cai | 5facae4 | 2019-09-19 12:09:40 -0400 | [diff] [blame] | 252 | mutex_release(&console_lock_dep_map, ip); |
Sergey Senozhatsky | f975237 | 2016-12-27 23:16:09 +0900 | [diff] [blame] | 253 | |
| 254 | printk_safe_enter_irqsave(flags); |
| 255 | up(&console_sem); |
| 256 | printk_safe_exit_irqrestore(flags); |
| 257 | } |
| 258 | #define up_console_sem() __up_console_sem(_RET_IP_) |
Jan Kara | bd8d7cf | 2014-06-04 16:11:36 -0700 | [diff] [blame] | 259 | |
| 260 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | * This is used for debugging the mess that is the VT code by |
| 262 | * keeping track if we have the console semaphore held. It's |
| 263 | * definitely not the perfect debug tool (we don't know if _WE_ |
Alex Elder | 0b90fec | 2014-08-06 16:09:03 -0700 | [diff] [blame] | 264 | * hold it and are racing, but it helps tracking those weird code |
| 265 | * paths in the console code where we end up in places I want |
Bhaskar Chowdhury | acebb55 | 2021-03-28 10:09:32 +0530 | [diff] [blame] | 266 | * locked without the console semaphore held). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | */ |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 268 | static int console_locked, console_suspended; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | |
| 270 | /* |
Feng Tang | fe3d8ad | 2011-03-22 16:34:21 -0700 | [diff] [blame] | 271 | * If exclusive_console is non-NULL then only this console is to be printed to. |
| 272 | */ |
| 273 | static struct console *exclusive_console; |
| 274 | |
| 275 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | * Array of consoles built from command line options (console=) |
| 277 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
| 279 | #define MAX_CMDLINECONSOLES 8 |
| 280 | |
| 281 | static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES]; |
Joe Perches | d197c43 | 2013-07-31 13:53:44 -0700 | [diff] [blame] | 282 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | static int preferred_console = -1; |
Markus Armbruster | 9e124fe | 2008-05-26 23:31:07 +0100 | [diff] [blame] | 284 | int console_set_on_cmdline; |
| 285 | EXPORT_SYMBOL(console_set_on_cmdline); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
| 287 | /* Flag: console code may call schedule() */ |
| 288 | static int console_may_schedule; |
| 289 | |
Sergey Senozhatsky | cca10d5 | 2017-12-21 14:41:49 +0900 | [diff] [blame] | 290 | enum con_msg_format_flags { |
| 291 | MSG_FORMAT_DEFAULT = 0, |
| 292 | MSG_FORMAT_SYSLOG = (1 << 0), |
| 293 | }; |
| 294 | |
| 295 | static int console_msg_format = MSG_FORMAT_DEFAULT; |
| 296 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 297 | /* |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 298 | * The printk log buffer consists of a sequenced collection of records, each |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 299 | * containing variable length message text. Every record also contains its |
| 300 | * own meta-data (@info). |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 301 | * |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 302 | * Every record meta-data carries the timestamp in microseconds, as well as |
| 303 | * the standard userspace syslog level and syslog facility. The usual kernel |
| 304 | * messages use LOG_KERN; userspace-injected messages always carry a matching |
| 305 | * syslog facility, by default LOG_USER. The origin of every message can be |
| 306 | * reliably determined that way. |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 307 | * |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 308 | * The human readable log message of a record is available in @text, the |
| 309 | * length of the message text in @text_len. The stored message is not |
| 310 | * terminated. |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 311 | * |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 312 | * Optionally, a record can carry a dictionary of properties (key/value |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 313 | * pairs), to provide userspace with a machine-readable message context. |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 314 | * |
| 315 | * Examples for well-defined, commonly used property names are: |
| 316 | * DEVICE=b12:8 device identifier |
| 317 | * b12:8 block dev_t |
| 318 | * c127:3 char dev_t |
| 319 | * n8 netdev ifindex |
| 320 | * +sound:card0 subsystem:devname |
| 321 | * SUBSYSTEM=pci driver-core subsystem name |
| 322 | * |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 323 | * Valid characters in property names are [a-zA-Z0-9.-_]. Property names |
| 324 | * and values are terminated by a '\0' character. |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 325 | * |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 326 | * Example of record values: |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 327 | * record.text_buf = "it's a line" (unterminated) |
| 328 | * record.info.seq = 56 |
| 329 | * record.info.ts_nsec = 36863 |
| 330 | * record.info.text_len = 11 |
| 331 | * record.info.facility = 0 (LOG_KERN) |
| 332 | * record.info.flags = 0 |
| 333 | * record.info.level = 3 (LOG_ERR) |
| 334 | * record.info.caller_id = 299 (task 299) |
| 335 | * record.info.dev_info.subsystem = "pci" (terminated) |
| 336 | * record.info.dev_info.device = "+pci:0000:00:01.0" (terminated) |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 337 | * |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 338 | * The 'struct printk_info' buffer must never be directly exported to |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 339 | * userspace, it is a kernel-private implementation detail that might |
| 340 | * need to be changed in the future, when the requirements change. |
| 341 | * |
| 342 | * /dev/kmsg exports the structured data in the following line format: |
Antonio Ospite | b389645 | 2015-06-30 14:59:03 -0700 | [diff] [blame] | 343 | * "<level>,<sequnum>,<timestamp>,<contflag>[,additional_values, ... ];<message text>\n" |
| 344 | * |
| 345 | * Users of the export format should ignore possible additional values |
| 346 | * separated by ',', and find the message after the ';' character. |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 347 | * |
| 348 | * The optional key/value pairs are attached as continuation lines starting |
| 349 | * with a space character and terminated by a newline. All possible |
| 350 | * non-prinatable characters are escaped in the "\xff" notation. |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 351 | */ |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 352 | |
John Ogness | 636babd | 2021-03-03 11:15:23 +0100 | [diff] [blame] | 353 | /* syslog_lock protects syslog_* variables and write access to clear_seq. */ |
John Ogness | b371cbb | 2021-07-15 21:39:58 +0206 | [diff] [blame] | 354 | static DEFINE_MUTEX(syslog_lock); |
John Ogness | 636babd | 2021-03-03 11:15:23 +0100 | [diff] [blame] | 355 | |
Kay Sievers | 96efedf | 2012-07-16 18:35:29 -0700 | [diff] [blame] | 356 | #ifdef CONFIG_PRINTK |
Frederic Weisbecker | dc72c32 | 2013-03-22 15:04:39 -0700 | [diff] [blame] | 357 | DECLARE_WAIT_QUEUE_HEAD(log_wait); |
John Ogness | 636babd | 2021-03-03 11:15:23 +0100 | [diff] [blame] | 358 | /* All 3 protected by @syslog_lock. */ |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 359 | /* the next printk record to read by syslog(READ) or /proc/kmsg */ |
| 360 | static u64 syslog_seq; |
Kay Sievers | eb02dac | 2012-07-09 10:05:10 -0700 | [diff] [blame] | 361 | static size_t syslog_partial; |
Tetsuo Handa | e80c1a9 | 2018-12-04 19:00:01 +0900 | [diff] [blame] | 362 | static bool syslog_time; |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 363 | |
John Ogness | 996e966 | 2021-03-03 11:15:26 +0100 | [diff] [blame] | 364 | /* All 3 protected by @console_sem. */ |
Kay Sievers | eab0726 | 2012-07-16 18:35:30 -0700 | [diff] [blame] | 365 | /* the next printk record to write to the console */ |
| 366 | static u64 console_seq; |
Petr Mladek | f92b070 | 2018-09-13 14:34:06 +0200 | [diff] [blame] | 367 | static u64 exclusive_console_stop_seq; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 368 | static unsigned long console_dropped; |
Kay Sievers | eab0726 | 2012-07-16 18:35:30 -0700 | [diff] [blame] | 369 | |
John Ogness | 7d7a23a | 2021-03-03 11:15:21 +0100 | [diff] [blame] | 370 | struct latched_seq { |
| 371 | seqcount_latch_t latch; |
| 372 | u64 val[2]; |
| 373 | }; |
| 374 | |
| 375 | /* |
| 376 | * The next printk record to read after the last 'clear' command. There are |
| 377 | * two copies (updated with seqcount_latch) so that reads can locklessly |
John Ogness | 636babd | 2021-03-03 11:15:23 +0100 | [diff] [blame] | 378 | * access a valid value. Writers are synchronized by @syslog_lock. |
John Ogness | 7d7a23a | 2021-03-03 11:15:21 +0100 | [diff] [blame] | 379 | */ |
| 380 | static struct latched_seq clear_seq = { |
| 381 | .latch = SEQCNT_LATCH_ZERO(clear_seq.latch), |
| 382 | .val[0] = 0, |
| 383 | .val[1] = 0, |
| 384 | }; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 385 | |
Tetsuo Handa | 15ff206 | 2018-12-18 06:05:04 +0900 | [diff] [blame] | 386 | #ifdef CONFIG_PRINTK_CALLER |
| 387 | #define PREFIX_MAX 48 |
| 388 | #else |
Kay Sievers | 7049825 | 2012-07-16 18:35:29 -0700 | [diff] [blame] | 389 | #define PREFIX_MAX 32 |
Tetsuo Handa | 15ff206 | 2018-12-18 06:05:04 +0900 | [diff] [blame] | 390 | #endif |
John Ogness | cf5b020 | 2021-03-03 11:15:20 +0100 | [diff] [blame] | 391 | |
| 392 | /* the maximum size of a formatted record (i.e. with prefix added per line) */ |
| 393 | #define CONSOLE_LOG_MAX 1024 |
| 394 | |
| 395 | /* the maximum size allowed to be reserved for a record */ |
| 396 | #define LOG_LINE_MAX (CONSOLE_LOG_MAX - PREFIX_MAX) |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 397 | |
Mathias Krause | 3824657 | 2015-11-06 16:30:38 -0800 | [diff] [blame] | 398 | #define LOG_LEVEL(v) ((v) & 0x07) |
| 399 | #define LOG_FACILITY(v) ((v) >> 3 & 0xff) |
| 400 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 401 | /* record buffer */ |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 402 | #define LOG_ALIGN __alignof__(unsigned long) |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 403 | #define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT) |
He Zhe | e6fe3e5 | 2018-09-30 00:45:53 +0800 | [diff] [blame] | 404 | #define LOG_BUF_LEN_MAX (u32)(1 << 31) |
Stephen Warren | f8450fc | 2012-05-10 16:14:33 -0600 | [diff] [blame] | 405 | static char __log_buf[__LOG_BUF_LEN] __aligned(LOG_ALIGN); |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 406 | static char *log_buf = __log_buf; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 407 | static u32 log_buf_len = __LOG_BUF_LEN; |
| 408 | |
Sergey Senozhatsky | ab6f762 | 2020-03-03 20:30:02 +0900 | [diff] [blame] | 409 | /* |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 410 | * Define the average message size. This only affects the number of |
| 411 | * descriptors that will be available. Underestimating is better than |
| 412 | * overestimating (too many available descriptors is better than not enough). |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 413 | */ |
| 414 | #define PRB_AVGBITS 5 /* 32 character average length */ |
| 415 | |
| 416 | #if CONFIG_LOG_BUF_SHIFT <= PRB_AVGBITS |
| 417 | #error CONFIG_LOG_BUF_SHIFT value too small. |
| 418 | #endif |
| 419 | _DEFINE_PRINTKRB(printk_rb_static, CONFIG_LOG_BUF_SHIFT - PRB_AVGBITS, |
John Ogness | f35efc7 | 2020-09-19 00:40:21 +0206 | [diff] [blame] | 420 | PRB_AVGBITS, &__log_buf[0]); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 421 | |
| 422 | static struct printk_ringbuffer printk_rb_dynamic; |
| 423 | |
| 424 | static struct printk_ringbuffer *prb = &printk_rb_static; |
| 425 | |
| 426 | /* |
Sergey Senozhatsky | ab6f762 | 2020-03-03 20:30:02 +0900 | [diff] [blame] | 427 | * We cannot access per-CPU data (e.g. per-CPU flush irq_work) before |
| 428 | * per_cpu_areas are initialised. This variable is set to true when |
| 429 | * it's safe to access per-CPU data. |
| 430 | */ |
| 431 | static bool __printk_percpu_data_ready __read_mostly; |
| 432 | |
| 433 | bool printk_percpu_data_ready(void) |
| 434 | { |
| 435 | return __printk_percpu_data_ready; |
| 436 | } |
| 437 | |
John Ogness | 636babd | 2021-03-03 11:15:23 +0100 | [diff] [blame] | 438 | /* Must be called under syslog_lock. */ |
John Ogness | 7d7a23a | 2021-03-03 11:15:21 +0100 | [diff] [blame] | 439 | static void latched_seq_write(struct latched_seq *ls, u64 val) |
| 440 | { |
| 441 | raw_write_seqcount_latch(&ls->latch); |
| 442 | ls->val[0] = val; |
| 443 | raw_write_seqcount_latch(&ls->latch); |
| 444 | ls->val[1] = val; |
| 445 | } |
| 446 | |
| 447 | /* Can be called from any context. */ |
| 448 | static u64 latched_seq_read_nolock(struct latched_seq *ls) |
| 449 | { |
| 450 | unsigned int seq; |
| 451 | unsigned int idx; |
| 452 | u64 val; |
| 453 | |
| 454 | do { |
| 455 | seq = raw_read_seqcount_latch(&ls->latch); |
| 456 | idx = seq & 0x1; |
| 457 | val = ls->val[idx]; |
| 458 | } while (read_seqcount_latch_retry(&ls->latch, seq)); |
| 459 | |
| 460 | return val; |
| 461 | } |
| 462 | |
Vasant Hegde | 14c4000 | 2014-08-09 11:15:30 +0530 | [diff] [blame] | 463 | /* Return log buffer address */ |
| 464 | char *log_buf_addr_get(void) |
| 465 | { |
| 466 | return log_buf; |
| 467 | } |
| 468 | |
| 469 | /* Return log buffer size */ |
| 470 | u32 log_buf_len_get(void) |
| 471 | { |
| 472 | return log_buf_len; |
| 473 | } |
| 474 | |
Petr Mladek | 55bd53a | 2014-06-04 16:11:32 -0700 | [diff] [blame] | 475 | /* |
| 476 | * Define how much of the log buffer we could take at maximum. The value |
| 477 | * must be greater than two. Note that only half of the buffer is available |
| 478 | * when the index points to the middle. |
| 479 | */ |
| 480 | #define MAX_LOG_TAKE_PART 4 |
| 481 | static const char trunc_msg[] = "<truncated>"; |
| 482 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 483 | static void truncate_msg(u16 *text_len, u16 *trunc_msg_len) |
Petr Mladek | 55bd53a | 2014-06-04 16:11:32 -0700 | [diff] [blame] | 484 | { |
| 485 | /* |
| 486 | * The message should not take the whole buffer. Otherwise, it might |
| 487 | * get removed too soon. |
| 488 | */ |
| 489 | u32 max_text_len = log_buf_len / MAX_LOG_TAKE_PART; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 490 | |
Petr Mladek | 55bd53a | 2014-06-04 16:11:32 -0700 | [diff] [blame] | 491 | if (*text_len > max_text_len) |
| 492 | *text_len = max_text_len; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 493 | |
| 494 | /* enable the warning message (if there is room) */ |
Petr Mladek | 55bd53a | 2014-06-04 16:11:32 -0700 | [diff] [blame] | 495 | *trunc_msg_len = strlen(trunc_msg); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 496 | if (*text_len >= *trunc_msg_len) |
| 497 | *text_len -= *trunc_msg_len; |
| 498 | else |
| 499 | *trunc_msg_len = 0; |
Petr Mladek | 55bd53a | 2014-06-04 16:11:32 -0700 | [diff] [blame] | 500 | } |
| 501 | |
Alex Elder | e99aa46 | 2014-08-06 16:09:05 -0700 | [diff] [blame] | 502 | int dmesg_restrict = IS_ENABLED(CONFIG_SECURITY_DMESG_RESTRICT); |
Kees Cook | 637241a | 2013-06-12 14:04:39 -0700 | [diff] [blame] | 503 | |
| 504 | static int syslog_action_restricted(int type) |
| 505 | { |
| 506 | if (dmesg_restrict) |
| 507 | return 1; |
| 508 | /* |
| 509 | * Unless restricted, we allow "read all" and "get buffer size" |
| 510 | * for everybody. |
| 511 | */ |
| 512 | return type != SYSLOG_ACTION_READ_ALL && |
| 513 | type != SYSLOG_ACTION_SIZE_BUFFER; |
| 514 | } |
| 515 | |
Kees Cook | c71b02e | 2017-08-09 21:11:00 -0700 | [diff] [blame] | 516 | static int check_syslog_permissions(int type, int source) |
Kees Cook | 637241a | 2013-06-12 14:04:39 -0700 | [diff] [blame] | 517 | { |
| 518 | /* |
| 519 | * If this is from /proc/kmsg and we've already opened it, then we've |
| 520 | * already done the capabilities checks at open time. |
| 521 | */ |
Vasily Averin | 3ea4331 | 2015-06-25 15:01:47 -0700 | [diff] [blame] | 522 | if (source == SYSLOG_FROM_PROC && type != SYSLOG_ACTION_OPEN) |
Vasily Averin | d194e5d | 2015-06-25 15:01:44 -0700 | [diff] [blame] | 523 | goto ok; |
Kees Cook | 637241a | 2013-06-12 14:04:39 -0700 | [diff] [blame] | 524 | |
| 525 | if (syslog_action_restricted(type)) { |
| 526 | if (capable(CAP_SYSLOG)) |
Vasily Averin | d194e5d | 2015-06-25 15:01:44 -0700 | [diff] [blame] | 527 | goto ok; |
Kees Cook | 637241a | 2013-06-12 14:04:39 -0700 | [diff] [blame] | 528 | /* |
| 529 | * For historical reasons, accept CAP_SYS_ADMIN too, with |
| 530 | * a warning. |
| 531 | */ |
| 532 | if (capable(CAP_SYS_ADMIN)) { |
| 533 | pr_warn_once("%s (%d): Attempt to access syslog with " |
| 534 | "CAP_SYS_ADMIN but no CAP_SYSLOG " |
| 535 | "(deprecated).\n", |
| 536 | current->comm, task_pid_nr(current)); |
Vasily Averin | d194e5d | 2015-06-25 15:01:44 -0700 | [diff] [blame] | 537 | goto ok; |
Kees Cook | 637241a | 2013-06-12 14:04:39 -0700 | [diff] [blame] | 538 | } |
| 539 | return -EPERM; |
| 540 | } |
Vasily Averin | d194e5d | 2015-06-25 15:01:44 -0700 | [diff] [blame] | 541 | ok: |
Kees Cook | 637241a | 2013-06-12 14:04:39 -0700 | [diff] [blame] | 542 | return security_syslog(type); |
| 543 | } |
| 544 | |
Tejun Heo | d43ff43 | 2015-06-25 15:01:24 -0700 | [diff] [blame] | 545 | static void append_char(char **pp, char *e, char c) |
| 546 | { |
| 547 | if (*pp < e) |
| 548 | *(*pp)++ = c; |
| 549 | } |
Kees Cook | 637241a | 2013-06-12 14:04:39 -0700 | [diff] [blame] | 550 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 551 | static ssize_t info_print_ext_header(char *buf, size_t size, |
| 552 | struct printk_info *info) |
Tejun Heo | 0a295e67 | 2015-06-25 15:01:27 -0700 | [diff] [blame] | 553 | { |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 554 | u64 ts_usec = info->ts_nsec; |
Tetsuo Handa | 15ff206 | 2018-12-18 06:05:04 +0900 | [diff] [blame] | 555 | char caller[20]; |
| 556 | #ifdef CONFIG_PRINTK_CALLER |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 557 | u32 id = info->caller_id; |
Tetsuo Handa | 15ff206 | 2018-12-18 06:05:04 +0900 | [diff] [blame] | 558 | |
| 559 | snprintf(caller, sizeof(caller), ",caller=%c%u", |
| 560 | id & 0x80000000 ? 'C' : 'T', id & ~0x80000000); |
| 561 | #else |
| 562 | caller[0] = '\0'; |
| 563 | #endif |
Tejun Heo | 0a295e67 | 2015-06-25 15:01:27 -0700 | [diff] [blame] | 564 | |
| 565 | do_div(ts_usec, 1000); |
| 566 | |
Tetsuo Handa | 15ff206 | 2018-12-18 06:05:04 +0900 | [diff] [blame] | 567 | return scnprintf(buf, size, "%u,%llu,%llu,%c%s;", |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 568 | (info->facility << 3) | info->level, info->seq, |
| 569 | ts_usec, info->flags & LOG_CONT ? 'c' : '-', caller); |
Tejun Heo | 0a295e67 | 2015-06-25 15:01:27 -0700 | [diff] [blame] | 570 | } |
| 571 | |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 572 | static ssize_t msg_add_ext_text(char *buf, size_t size, |
| 573 | const char *text, size_t text_len, |
| 574 | unsigned char endc) |
Tejun Heo | 0a295e67 | 2015-06-25 15:01:27 -0700 | [diff] [blame] | 575 | { |
| 576 | char *p = buf, *e = buf + size; |
| 577 | size_t i; |
| 578 | |
| 579 | /* escape non-printable characters */ |
| 580 | for (i = 0; i < text_len; i++) { |
| 581 | unsigned char c = text[i]; |
| 582 | |
| 583 | if (c < ' ' || c >= 127 || c == '\\') |
| 584 | p += scnprintf(p, e - p, "\\x%02x", c); |
| 585 | else |
| 586 | append_char(&p, e, c); |
| 587 | } |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 588 | append_char(&p, e, endc); |
Tejun Heo | 0a295e67 | 2015-06-25 15:01:27 -0700 | [diff] [blame] | 589 | |
| 590 | return p - buf; |
| 591 | } |
| 592 | |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 593 | static ssize_t msg_add_dict_text(char *buf, size_t size, |
| 594 | const char *key, const char *val) |
| 595 | { |
| 596 | size_t val_len = strlen(val); |
| 597 | ssize_t len; |
| 598 | |
| 599 | if (!val_len) |
| 600 | return 0; |
| 601 | |
| 602 | len = msg_add_ext_text(buf, size, "", 0, ' '); /* dict prefix */ |
| 603 | len += msg_add_ext_text(buf + len, size - len, key, strlen(key), '='); |
| 604 | len += msg_add_ext_text(buf + len, size - len, val, val_len, '\n'); |
| 605 | |
| 606 | return len; |
| 607 | } |
| 608 | |
| 609 | static ssize_t msg_print_ext_body(char *buf, size_t size, |
| 610 | char *text, size_t text_len, |
| 611 | struct dev_printk_info *dev_info) |
| 612 | { |
| 613 | ssize_t len; |
| 614 | |
| 615 | len = msg_add_ext_text(buf, size, text, text_len, '\n'); |
| 616 | |
| 617 | if (!dev_info) |
| 618 | goto out; |
| 619 | |
| 620 | len += msg_add_dict_text(buf + len, size - len, "SUBSYSTEM", |
| 621 | dev_info->subsystem); |
| 622 | len += msg_add_dict_text(buf + len, size - len, "DEVICE", |
| 623 | dev_info->device); |
| 624 | out: |
| 625 | return len; |
| 626 | } |
| 627 | |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 628 | /* /dev/kmsg - userspace message inject/listen interface */ |
| 629 | struct devkmsg_user { |
John Ogness | 35b2b16 | 2021-03-03 11:15:22 +0100 | [diff] [blame] | 630 | atomic64_t seq; |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 631 | struct ratelimit_state rs; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 632 | struct mutex lock; |
Tejun Heo | d43ff43 | 2015-06-25 15:01:24 -0700 | [diff] [blame] | 633 | char buf[CONSOLE_EXT_LOG_MAX]; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 634 | |
| 635 | struct printk_info info; |
| 636 | char text_buf[CONSOLE_EXT_LOG_MAX]; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 637 | struct printk_record record; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 638 | }; |
| 639 | |
Tetsuo Handa | 9adcfaf | 2018-11-24 13:10:25 +0900 | [diff] [blame] | 640 | static __printf(3, 4) __cold |
| 641 | int devkmsg_emit(int facility, int level, const char *fmt, ...) |
| 642 | { |
| 643 | va_list args; |
| 644 | int r; |
| 645 | |
| 646 | va_start(args, fmt); |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 647 | r = vprintk_emit(facility, level, NULL, fmt, args); |
Tetsuo Handa | 9adcfaf | 2018-11-24 13:10:25 +0900 | [diff] [blame] | 648 | va_end(args); |
| 649 | |
| 650 | return r; |
| 651 | } |
| 652 | |
Al Viro | 849f312 | 2014-08-23 12:23:53 -0400 | [diff] [blame] | 653 | static ssize_t devkmsg_write(struct kiocb *iocb, struct iov_iter *from) |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 654 | { |
| 655 | char *buf, *line; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 656 | int level = default_message_loglevel; |
| 657 | int facility = 1; /* LOG_USER */ |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 658 | struct file *file = iocb->ki_filp; |
| 659 | struct devkmsg_user *user = file->private_data; |
Christoph Hellwig | 66ee59a | 2015-02-11 19:56:46 +0100 | [diff] [blame] | 660 | size_t len = iov_iter_count(from); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 661 | ssize_t ret = len; |
| 662 | |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 663 | if (!user || len > LOG_LINE_MAX) |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 664 | return -EINVAL; |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 665 | |
| 666 | /* Ignore when user logging is disabled. */ |
| 667 | if (devkmsg_log & DEVKMSG_LOG_MASK_OFF) |
| 668 | return len; |
| 669 | |
| 670 | /* Ratelimit when not explicitly enabled. */ |
| 671 | if (!(devkmsg_log & DEVKMSG_LOG_MASK_ON)) { |
| 672 | if (!___ratelimit(&user->rs, current->comm)) |
| 673 | return ret; |
| 674 | } |
| 675 | |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 676 | buf = kmalloc(len+1, GFP_KERNEL); |
| 677 | if (buf == NULL) |
| 678 | return -ENOMEM; |
| 679 | |
Al Viro | 849f312 | 2014-08-23 12:23:53 -0400 | [diff] [blame] | 680 | buf[len] = '\0'; |
Al Viro | cbbd26b | 2016-11-01 22:09:04 -0400 | [diff] [blame] | 681 | if (!copy_from_iter_full(buf, len, from)) { |
Al Viro | 849f312 | 2014-08-23 12:23:53 -0400 | [diff] [blame] | 682 | kfree(buf); |
| 683 | return -EFAULT; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 684 | } |
| 685 | |
| 686 | /* |
| 687 | * Extract and skip the syslog prefix <[0-9]*>. Coming from userspace |
| 688 | * the decimal value represents 32bit, the lower 3 bit are the log |
| 689 | * level, the rest are the log facility. |
| 690 | * |
| 691 | * If no prefix or no userspace facility is specified, we |
| 692 | * enforce LOG_USER, to be able to reliably distinguish |
| 693 | * kernel-generated messages from userspace-injected ones. |
| 694 | */ |
| 695 | line = buf; |
| 696 | if (line[0] == '<') { |
| 697 | char *endp = NULL; |
Mathias Krause | 3824657 | 2015-11-06 16:30:38 -0800 | [diff] [blame] | 698 | unsigned int u; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 699 | |
Mathias Krause | 3824657 | 2015-11-06 16:30:38 -0800 | [diff] [blame] | 700 | u = simple_strtoul(line + 1, &endp, 10); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 701 | if (endp && endp[0] == '>') { |
Mathias Krause | 3824657 | 2015-11-06 16:30:38 -0800 | [diff] [blame] | 702 | level = LOG_LEVEL(u); |
| 703 | if (LOG_FACILITY(u) != 0) |
| 704 | facility = LOG_FACILITY(u); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 705 | endp++; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 706 | line = endp; |
| 707 | } |
| 708 | } |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 709 | |
Tetsuo Handa | 9adcfaf | 2018-11-24 13:10:25 +0900 | [diff] [blame] | 710 | devkmsg_emit(facility, level, "%s", line); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 711 | kfree(buf); |
| 712 | return ret; |
| 713 | } |
| 714 | |
| 715 | static ssize_t devkmsg_read(struct file *file, char __user *buf, |
| 716 | size_t count, loff_t *ppos) |
| 717 | { |
| 718 | struct devkmsg_user *user = file->private_data; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 719 | struct printk_record *r = &user->record; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 720 | size_t len; |
| 721 | ssize_t ret; |
| 722 | |
| 723 | if (!user) |
| 724 | return -EBADF; |
| 725 | |
Yuanhan Liu | 4a77a5a | 2012-06-16 21:21:51 +0800 | [diff] [blame] | 726 | ret = mutex_lock_interruptible(&user->lock); |
| 727 | if (ret) |
| 728 | return ret; |
Sergey Senozhatsky | de6fcbd | 2016-12-27 23:16:11 +0900 | [diff] [blame] | 729 | |
John Ogness | 35b2b16 | 2021-03-03 11:15:22 +0100 | [diff] [blame] | 730 | if (!prb_read_valid(prb, atomic64_read(&user->seq), r)) { |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 731 | if (file->f_flags & O_NONBLOCK) { |
| 732 | ret = -EAGAIN; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 733 | goto out; |
| 734 | } |
| 735 | |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 736 | ret = wait_event_interruptible(log_wait, |
John Ogness | 35b2b16 | 2021-03-03 11:15:22 +0100 | [diff] [blame] | 737 | prb_read_valid(prb, atomic64_read(&user->seq), r)); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 738 | if (ret) |
| 739 | goto out; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 740 | } |
| 741 | |
John Ogness | 35b2b16 | 2021-03-03 11:15:22 +0100 | [diff] [blame] | 742 | if (r->info->seq != atomic64_read(&user->seq)) { |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 743 | /* our last seen message is gone, return error and reset */ |
John Ogness | 35b2b16 | 2021-03-03 11:15:22 +0100 | [diff] [blame] | 744 | atomic64_set(&user->seq, r->info->seq); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 745 | ret = -EPIPE; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 746 | goto out; |
| 747 | } |
| 748 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 749 | len = info_print_ext_header(user->buf, sizeof(user->buf), r->info); |
Tejun Heo | 0a295e67 | 2015-06-25 15:01:27 -0700 | [diff] [blame] | 750 | len += msg_print_ext_body(user->buf + len, sizeof(user->buf) - len, |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 751 | &r->text_buf[0], r->info->text_len, |
| 752 | &r->info->dev_info); |
Kay Sievers | d39f3d7 | 2012-07-16 18:35:30 -0700 | [diff] [blame] | 753 | |
John Ogness | 35b2b16 | 2021-03-03 11:15:22 +0100 | [diff] [blame] | 754 | atomic64_set(&user->seq, r->info->seq + 1); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 755 | |
| 756 | if (len > count) { |
| 757 | ret = -EINVAL; |
| 758 | goto out; |
| 759 | } |
| 760 | |
| 761 | if (copy_to_user(buf, user->buf, len)) { |
| 762 | ret = -EFAULT; |
| 763 | goto out; |
| 764 | } |
| 765 | ret = len; |
| 766 | out: |
| 767 | mutex_unlock(&user->lock); |
| 768 | return ret; |
| 769 | } |
| 770 | |
Bruno Meneguele | bc885f1 | 2020-07-10 14:44:23 -0300 | [diff] [blame] | 771 | /* |
| 772 | * Be careful when modifying this function!!! |
| 773 | * |
| 774 | * Only few operations are supported because the device works only with the |
| 775 | * entire variable length messages (records). Non-standard values are |
| 776 | * returned in the other cases and has been this way for quite some time. |
| 777 | * User space applications might depend on this behavior. |
| 778 | */ |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 779 | static loff_t devkmsg_llseek(struct file *file, loff_t offset, int whence) |
| 780 | { |
| 781 | struct devkmsg_user *user = file->private_data; |
| 782 | loff_t ret = 0; |
| 783 | |
| 784 | if (!user) |
| 785 | return -EBADF; |
| 786 | if (offset) |
| 787 | return -ESPIPE; |
| 788 | |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 789 | switch (whence) { |
| 790 | case SEEK_SET: |
| 791 | /* the first record */ |
John Ogness | 35b2b16 | 2021-03-03 11:15:22 +0100 | [diff] [blame] | 792 | atomic64_set(&user->seq, prb_first_valid_seq(prb)); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 793 | break; |
| 794 | case SEEK_DATA: |
| 795 | /* |
| 796 | * The first record after the last SYSLOG_ACTION_CLEAR, |
| 797 | * like issued by 'dmesg -c'. Reading /dev/kmsg itself |
| 798 | * changes no global state, and does not clear anything. |
| 799 | */ |
John Ogness | 35b2b16 | 2021-03-03 11:15:22 +0100 | [diff] [blame] | 800 | atomic64_set(&user->seq, latched_seq_read_nolock(&clear_seq)); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 801 | break; |
| 802 | case SEEK_END: |
| 803 | /* after the last record */ |
John Ogness | 35b2b16 | 2021-03-03 11:15:22 +0100 | [diff] [blame] | 804 | atomic64_set(&user->seq, prb_next_seq(prb)); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 805 | break; |
| 806 | default: |
| 807 | ret = -EINVAL; |
| 808 | } |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 809 | return ret; |
| 810 | } |
| 811 | |
Al Viro | 9dd9574 | 2017-07-03 00:42:43 -0400 | [diff] [blame] | 812 | static __poll_t devkmsg_poll(struct file *file, poll_table *wait) |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 813 | { |
| 814 | struct devkmsg_user *user = file->private_data; |
John Ogness | 13791c8 | 2021-02-11 18:37:52 +0106 | [diff] [blame] | 815 | struct printk_info info; |
Al Viro | 9dd9574 | 2017-07-03 00:42:43 -0400 | [diff] [blame] | 816 | __poll_t ret = 0; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 817 | |
| 818 | if (!user) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 819 | return EPOLLERR|EPOLLNVAL; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 820 | |
| 821 | poll_wait(file, &log_wait, wait); |
| 822 | |
John Ogness | 35b2b16 | 2021-03-03 11:15:22 +0100 | [diff] [blame] | 823 | if (prb_read_valid_info(prb, atomic64_read(&user->seq), &info, NULL)) { |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 824 | /* return error when data has vanished underneath us */ |
John Ogness | 35b2b16 | 2021-03-03 11:15:22 +0100 | [diff] [blame] | 825 | if (info.seq != atomic64_read(&user->seq)) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 826 | ret = EPOLLIN|EPOLLRDNORM|EPOLLERR|EPOLLPRI; |
Nicolas Kaiser | 0a28531 | 2013-04-29 16:17:20 -0700 | [diff] [blame] | 827 | else |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 828 | ret = EPOLLIN|EPOLLRDNORM; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 829 | } |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 830 | |
| 831 | return ret; |
| 832 | } |
| 833 | |
| 834 | static int devkmsg_open(struct inode *inode, struct file *file) |
| 835 | { |
| 836 | struct devkmsg_user *user; |
| 837 | int err; |
| 838 | |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 839 | if (devkmsg_log & DEVKMSG_LOG_MASK_OFF) |
| 840 | return -EPERM; |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 841 | |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 842 | /* write-only does not need any file context */ |
| 843 | if ((file->f_flags & O_ACCMODE) != O_WRONLY) { |
| 844 | err = check_syslog_permissions(SYSLOG_ACTION_READ_ALL, |
| 845 | SYSLOG_FROM_READER); |
| 846 | if (err) |
| 847 | return err; |
| 848 | } |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 849 | |
Yong-Taek Lee | 9980c42 | 2021-08-30 16:17:01 +0900 | [diff] [blame] | 850 | user = kvmalloc(sizeof(struct devkmsg_user), GFP_KERNEL); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 851 | if (!user) |
| 852 | return -ENOMEM; |
| 853 | |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 854 | ratelimit_default_init(&user->rs); |
| 855 | ratelimit_set_flags(&user->rs, RATELIMIT_MSG_ON_RELEASE); |
| 856 | |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 857 | mutex_init(&user->lock); |
| 858 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 859 | prb_rec_init_rd(&user->record, &user->info, |
John Ogness | f35efc7 | 2020-09-19 00:40:21 +0206 | [diff] [blame] | 860 | &user->text_buf[0], sizeof(user->text_buf)); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 861 | |
John Ogness | 35b2b16 | 2021-03-03 11:15:22 +0100 | [diff] [blame] | 862 | atomic64_set(&user->seq, prb_first_valid_seq(prb)); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 863 | |
| 864 | file->private_data = user; |
| 865 | return 0; |
| 866 | } |
| 867 | |
| 868 | static int devkmsg_release(struct inode *inode, struct file *file) |
| 869 | { |
| 870 | struct devkmsg_user *user = file->private_data; |
| 871 | |
| 872 | if (!user) |
| 873 | return 0; |
| 874 | |
Borislav Petkov | 750afe7 | 2016-08-02 14:04:07 -0700 | [diff] [blame] | 875 | ratelimit_state_exit(&user->rs); |
| 876 | |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 877 | mutex_destroy(&user->lock); |
Yong-Taek Lee | 9980c42 | 2021-08-30 16:17:01 +0900 | [diff] [blame] | 878 | kvfree(user); |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 879 | return 0; |
| 880 | } |
| 881 | |
| 882 | const struct file_operations kmsg_fops = { |
| 883 | .open = devkmsg_open, |
| 884 | .read = devkmsg_read, |
Al Viro | 849f312 | 2014-08-23 12:23:53 -0400 | [diff] [blame] | 885 | .write_iter = devkmsg_write, |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 886 | .llseek = devkmsg_llseek, |
| 887 | .poll = devkmsg_poll, |
| 888 | .release = devkmsg_release, |
| 889 | }; |
| 890 | |
Hari Bathini | 692f66f | 2017-05-08 15:56:18 -0700 | [diff] [blame] | 891 | #ifdef CONFIG_CRASH_CORE |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 892 | /* |
Dirk Gouders | 4c1ace6 | 2013-11-12 15:08:54 -0800 | [diff] [blame] | 893 | * This appends the listed symbols to /proc/vmcore |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 894 | * |
Dirk Gouders | 4c1ace6 | 2013-11-12 15:08:54 -0800 | [diff] [blame] | 895 | * /proc/vmcore is used by various utilities, like crash and makedumpfile to |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 896 | * obtain access to symbols that are otherwise very difficult to locate. These |
| 897 | * symbols are specifically used so that utilities can access and extract the |
| 898 | * dmesg log from a vmcore file after a crash. |
| 899 | */ |
Hari Bathini | 692f66f | 2017-05-08 15:56:18 -0700 | [diff] [blame] | 900 | void log_buf_vmcoreinfo_setup(void) |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 901 | { |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 902 | struct dev_printk_info *dev_info = NULL; |
| 903 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 904 | VMCOREINFO_SYMBOL(prb); |
| 905 | VMCOREINFO_SYMBOL(printk_rb_static); |
| 906 | VMCOREINFO_SYMBOL(clear_seq); |
| 907 | |
Vivek Goyal | 6791457 | 2012-07-18 13:18:12 -0400 | [diff] [blame] | 908 | /* |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 909 | * Export struct size and field offsets. User space tools can |
Vivek Goyal | 6791457 | 2012-07-18 13:18:12 -0400 | [diff] [blame] | 910 | * parse it and detect any changes to structure down the line. |
| 911 | */ |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 912 | |
| 913 | VMCOREINFO_STRUCT_SIZE(printk_ringbuffer); |
| 914 | VMCOREINFO_OFFSET(printk_ringbuffer, desc_ring); |
| 915 | VMCOREINFO_OFFSET(printk_ringbuffer, text_data_ring); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 916 | VMCOREINFO_OFFSET(printk_ringbuffer, fail); |
| 917 | |
| 918 | VMCOREINFO_STRUCT_SIZE(prb_desc_ring); |
| 919 | VMCOREINFO_OFFSET(prb_desc_ring, count_bits); |
| 920 | VMCOREINFO_OFFSET(prb_desc_ring, descs); |
John Ogness | cfe2790 | 2020-09-19 00:40:19 +0206 | [diff] [blame] | 921 | VMCOREINFO_OFFSET(prb_desc_ring, infos); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 922 | VMCOREINFO_OFFSET(prb_desc_ring, head_id); |
| 923 | VMCOREINFO_OFFSET(prb_desc_ring, tail_id); |
| 924 | |
| 925 | VMCOREINFO_STRUCT_SIZE(prb_desc); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 926 | VMCOREINFO_OFFSET(prb_desc, state_var); |
| 927 | VMCOREINFO_OFFSET(prb_desc, text_blk_lpos); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 928 | |
| 929 | VMCOREINFO_STRUCT_SIZE(prb_data_blk_lpos); |
| 930 | VMCOREINFO_OFFSET(prb_data_blk_lpos, begin); |
| 931 | VMCOREINFO_OFFSET(prb_data_blk_lpos, next); |
| 932 | |
| 933 | VMCOREINFO_STRUCT_SIZE(printk_info); |
| 934 | VMCOREINFO_OFFSET(printk_info, seq); |
| 935 | VMCOREINFO_OFFSET(printk_info, ts_nsec); |
| 936 | VMCOREINFO_OFFSET(printk_info, text_len); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 937 | VMCOREINFO_OFFSET(printk_info, caller_id); |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 938 | VMCOREINFO_OFFSET(printk_info, dev_info); |
| 939 | |
| 940 | VMCOREINFO_STRUCT_SIZE(dev_printk_info); |
| 941 | VMCOREINFO_OFFSET(dev_printk_info, subsystem); |
| 942 | VMCOREINFO_LENGTH(printk_info_subsystem, sizeof(dev_info->subsystem)); |
| 943 | VMCOREINFO_OFFSET(dev_printk_info, device); |
| 944 | VMCOREINFO_LENGTH(printk_info_device, sizeof(dev_info->device)); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 945 | |
| 946 | VMCOREINFO_STRUCT_SIZE(prb_data_ring); |
| 947 | VMCOREINFO_OFFSET(prb_data_ring, size_bits); |
| 948 | VMCOREINFO_OFFSET(prb_data_ring, data); |
| 949 | VMCOREINFO_OFFSET(prb_data_ring, head_lpos); |
| 950 | VMCOREINFO_OFFSET(prb_data_ring, tail_lpos); |
| 951 | |
| 952 | VMCOREINFO_SIZE(atomic_long_t); |
| 953 | VMCOREINFO_TYPE_OFFSET(atomic_long_t, counter); |
John Ogness | 7d7a23a | 2021-03-03 11:15:21 +0100 | [diff] [blame] | 954 | |
| 955 | VMCOREINFO_STRUCT_SIZE(latched_seq); |
| 956 | VMCOREINFO_OFFSET(latched_seq, val); |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 957 | } |
| 958 | #endif |
| 959 | |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 960 | /* requested log_buf_len from kernel cmdline */ |
| 961 | static unsigned long __initdata new_log_buf_len; |
| 962 | |
Luis R. Rodriguez | c0a318a | 2014-08-06 16:08:52 -0700 | [diff] [blame] | 963 | /* we practice scaling the ring buffer by powers of 2 */ |
He Zhe | e6fe3e5 | 2018-09-30 00:45:53 +0800 | [diff] [blame] | 964 | static void __init log_buf_len_update(u64 size) |
Luis R. Rodriguez | c0a318a | 2014-08-06 16:08:52 -0700 | [diff] [blame] | 965 | { |
He Zhe | e6fe3e5 | 2018-09-30 00:45:53 +0800 | [diff] [blame] | 966 | if (size > (u64)LOG_BUF_LEN_MAX) { |
| 967 | size = (u64)LOG_BUF_LEN_MAX; |
| 968 | pr_err("log_buf over 2G is not supported.\n"); |
| 969 | } |
| 970 | |
Luis R. Rodriguez | c0a318a | 2014-08-06 16:08:52 -0700 | [diff] [blame] | 971 | if (size) |
| 972 | size = roundup_pow_of_two(size); |
| 973 | if (size > log_buf_len) |
He Zhe | e6fe3e5 | 2018-09-30 00:45:53 +0800 | [diff] [blame] | 974 | new_log_buf_len = (unsigned long)size; |
Luis R. Rodriguez | c0a318a | 2014-08-06 16:08:52 -0700 | [diff] [blame] | 975 | } |
| 976 | |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 977 | /* save requested log_buf_len since it's too early to process it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | static int __init log_buf_len_setup(char *str) |
| 979 | { |
He Zhe | e6fe3e5 | 2018-09-30 00:45:53 +0800 | [diff] [blame] | 980 | u64 size; |
He Zhe | 277fcdb | 2018-09-30 00:45:50 +0800 | [diff] [blame] | 981 | |
| 982 | if (!str) |
| 983 | return -EINVAL; |
| 984 | |
| 985 | size = memparse(str, &str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | |
Luis R. Rodriguez | c0a318a | 2014-08-06 16:08:52 -0700 | [diff] [blame] | 987 | log_buf_len_update(size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 989 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | } |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 991 | early_param("log_buf_len", log_buf_len_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | |
Geert Uytterhoeven | 2240a31 | 2014-10-13 15:51:11 -0700 | [diff] [blame] | 993 | #ifdef CONFIG_SMP |
| 994 | #define __LOG_CPU_MAX_BUF_LEN (1 << CONFIG_LOG_CPU_MAX_BUF_SHIFT) |
| 995 | |
Luis R. Rodriguez | 23b2899 | 2014-08-06 16:08:56 -0700 | [diff] [blame] | 996 | static void __init log_buf_add_cpu(void) |
| 997 | { |
| 998 | unsigned int cpu_extra; |
| 999 | |
| 1000 | /* |
| 1001 | * archs should set up cpu_possible_bits properly with |
| 1002 | * set_cpu_possible() after setup_arch() but just in |
| 1003 | * case lets ensure this is valid. |
| 1004 | */ |
| 1005 | if (num_possible_cpus() == 1) |
| 1006 | return; |
| 1007 | |
| 1008 | cpu_extra = (num_possible_cpus() - 1) * __LOG_CPU_MAX_BUF_LEN; |
| 1009 | |
| 1010 | /* by default this will only continue through for large > 64 CPUs */ |
| 1011 | if (cpu_extra <= __LOG_BUF_LEN / 2) |
| 1012 | return; |
| 1013 | |
| 1014 | pr_info("log_buf_len individual max cpu contribution: %d bytes\n", |
| 1015 | __LOG_CPU_MAX_BUF_LEN); |
| 1016 | pr_info("log_buf_len total cpu_extra contributions: %d bytes\n", |
| 1017 | cpu_extra); |
| 1018 | pr_info("log_buf_len min size: %d bytes\n", __LOG_BUF_LEN); |
| 1019 | |
| 1020 | log_buf_len_update(cpu_extra + __LOG_BUF_LEN); |
| 1021 | } |
Geert Uytterhoeven | 2240a31 | 2014-10-13 15:51:11 -0700 | [diff] [blame] | 1022 | #else /* !CONFIG_SMP */ |
| 1023 | static inline void log_buf_add_cpu(void) {} |
| 1024 | #endif /* CONFIG_SMP */ |
Luis R. Rodriguez | 23b2899 | 2014-08-06 16:08:56 -0700 | [diff] [blame] | 1025 | |
Sergey Senozhatsky | ab6f762 | 2020-03-03 20:30:02 +0900 | [diff] [blame] | 1026 | static void __init set_percpu_data_ready(void) |
| 1027 | { |
Sergey Senozhatsky | ab6f762 | 2020-03-03 20:30:02 +0900 | [diff] [blame] | 1028 | __printk_percpu_data_ready = true; |
| 1029 | } |
| 1030 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1031 | static unsigned int __init add_to_rb(struct printk_ringbuffer *rb, |
| 1032 | struct printk_record *r) |
| 1033 | { |
| 1034 | struct prb_reserved_entry e; |
| 1035 | struct printk_record dest_r; |
| 1036 | |
John Ogness | f35efc7 | 2020-09-19 00:40:21 +0206 | [diff] [blame] | 1037 | prb_rec_init_wr(&dest_r, r->info->text_len); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1038 | |
| 1039 | if (!prb_reserve(&e, rb, &dest_r)) |
| 1040 | return 0; |
| 1041 | |
John Ogness | cc5c704 | 2020-09-14 14:39:51 +0206 | [diff] [blame] | 1042 | memcpy(&dest_r.text_buf[0], &r->text_buf[0], r->info->text_len); |
| 1043 | dest_r.info->text_len = r->info->text_len; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1044 | dest_r.info->facility = r->info->facility; |
| 1045 | dest_r.info->level = r->info->level; |
| 1046 | dest_r.info->flags = r->info->flags; |
| 1047 | dest_r.info->ts_nsec = r->info->ts_nsec; |
| 1048 | dest_r.info->caller_id = r->info->caller_id; |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 1049 | memcpy(&dest_r.info->dev_info, &r->info->dev_info, sizeof(dest_r.info->dev_info)); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1050 | |
John Ogness | f5f022e | 2020-09-14 14:39:54 +0206 | [diff] [blame] | 1051 | prb_final_commit(&e); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1052 | |
| 1053 | return prb_record_text_space(&e); |
| 1054 | } |
| 1055 | |
John Ogness | 0463d04 | 2020-09-30 11:07:34 +0206 | [diff] [blame] | 1056 | static char setup_text_buf[LOG_LINE_MAX] __initdata; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1057 | |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 1058 | void __init setup_log_buf(int early) |
| 1059 | { |
John Ogness | cfe2790 | 2020-09-19 00:40:19 +0206 | [diff] [blame] | 1060 | struct printk_info *new_infos; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1061 | unsigned int new_descs_count; |
| 1062 | struct prb_desc *new_descs; |
| 1063 | struct printk_info info; |
| 1064 | struct printk_record r; |
John Ogness | 93d102f | 2021-07-15 21:39:56 +0206 | [diff] [blame] | 1065 | unsigned int text_size; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1066 | size_t new_descs_size; |
John Ogness | cfe2790 | 2020-09-19 00:40:19 +0206 | [diff] [blame] | 1067 | size_t new_infos_size; |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 1068 | unsigned long flags; |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 1069 | char *new_log_buf; |
Sergey Senozhatsky | d2130e8 | 2018-10-10 20:33:08 +0900 | [diff] [blame] | 1070 | unsigned int free; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1071 | u64 seq; |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 1072 | |
Sergey Senozhatsky | ab6f762 | 2020-03-03 20:30:02 +0900 | [diff] [blame] | 1073 | /* |
| 1074 | * Some archs call setup_log_buf() multiple times - first is very |
| 1075 | * early, e.g. from setup_arch(), and second - when percpu_areas |
| 1076 | * are initialised. |
| 1077 | */ |
| 1078 | if (!early) |
| 1079 | set_percpu_data_ready(); |
| 1080 | |
Luis R. Rodriguez | 23b2899 | 2014-08-06 16:08:56 -0700 | [diff] [blame] | 1081 | if (log_buf != __log_buf) |
| 1082 | return; |
| 1083 | |
| 1084 | if (!early && !new_log_buf_len) |
| 1085 | log_buf_add_cpu(); |
| 1086 | |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 1087 | if (!new_log_buf_len) |
| 1088 | return; |
| 1089 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1090 | new_descs_count = new_log_buf_len >> PRB_AVGBITS; |
| 1091 | if (new_descs_count == 0) { |
| 1092 | pr_err("new_log_buf_len: %lu too small\n", new_log_buf_len); |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 1093 | return; |
| 1094 | } |
| 1095 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1096 | new_log_buf = memblock_alloc(new_log_buf_len, LOG_ALIGN); |
| 1097 | if (unlikely(!new_log_buf)) { |
| 1098 | pr_err("log_buf_len: %lu text bytes not available\n", |
| 1099 | new_log_buf_len); |
| 1100 | return; |
| 1101 | } |
| 1102 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1103 | new_descs_size = new_descs_count * sizeof(struct prb_desc); |
| 1104 | new_descs = memblock_alloc(new_descs_size, LOG_ALIGN); |
| 1105 | if (unlikely(!new_descs)) { |
| 1106 | pr_err("log_buf_len: %zu desc bytes not available\n", |
| 1107 | new_descs_size); |
John Ogness | f35efc7 | 2020-09-19 00:40:21 +0206 | [diff] [blame] | 1108 | goto err_free_log_buf; |
John Ogness | cfe2790 | 2020-09-19 00:40:19 +0206 | [diff] [blame] | 1109 | } |
| 1110 | |
| 1111 | new_infos_size = new_descs_count * sizeof(struct printk_info); |
| 1112 | new_infos = memblock_alloc(new_infos_size, LOG_ALIGN); |
| 1113 | if (unlikely(!new_infos)) { |
| 1114 | pr_err("log_buf_len: %zu info bytes not available\n", |
| 1115 | new_infos_size); |
| 1116 | goto err_free_descs; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1117 | } |
| 1118 | |
John Ogness | f35efc7 | 2020-09-19 00:40:21 +0206 | [diff] [blame] | 1119 | prb_rec_init_rd(&r, &info, &setup_text_buf[0], sizeof(setup_text_buf)); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1120 | |
| 1121 | prb_init(&printk_rb_dynamic, |
| 1122 | new_log_buf, ilog2(new_log_buf_len), |
John Ogness | cfe2790 | 2020-09-19 00:40:19 +0206 | [diff] [blame] | 1123 | new_descs, ilog2(new_descs_count), |
| 1124 | new_infos); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1125 | |
John Ogness | 93d102f | 2021-07-15 21:39:56 +0206 | [diff] [blame] | 1126 | local_irq_save(flags); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1127 | |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 1128 | log_buf_len = new_log_buf_len; |
| 1129 | log_buf = new_log_buf; |
| 1130 | new_log_buf_len = 0; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1131 | |
| 1132 | free = __LOG_BUF_LEN; |
John Ogness | 93d102f | 2021-07-15 21:39:56 +0206 | [diff] [blame] | 1133 | prb_for_each_record(0, &printk_rb_static, seq, &r) { |
| 1134 | text_size = add_to_rb(&printk_rb_dynamic, &r); |
| 1135 | if (text_size > free) |
| 1136 | free = 0; |
| 1137 | else |
| 1138 | free -= text_size; |
| 1139 | } |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1140 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1141 | prb = &printk_rb_dynamic; |
| 1142 | |
John Ogness | 93d102f | 2021-07-15 21:39:56 +0206 | [diff] [blame] | 1143 | local_irq_restore(flags); |
| 1144 | |
| 1145 | /* |
| 1146 | * Copy any remaining messages that might have appeared from |
| 1147 | * NMI context after copying but before switching to the |
| 1148 | * dynamic buffer. |
| 1149 | */ |
| 1150 | prb_for_each_record(seq, &printk_rb_static, seq, &r) { |
| 1151 | text_size = add_to_rb(&printk_rb_dynamic, &r); |
| 1152 | if (text_size > free) |
| 1153 | free = 0; |
| 1154 | else |
| 1155 | free -= text_size; |
| 1156 | } |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 1157 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1158 | if (seq != prb_next_seq(&printk_rb_static)) { |
| 1159 | pr_err("dropped %llu messages\n", |
| 1160 | prb_next_seq(&printk_rb_static) - seq); |
| 1161 | } |
| 1162 | |
He Zhe | e6fe3e5 | 2018-09-30 00:45:53 +0800 | [diff] [blame] | 1163 | pr_info("log_buf_len: %u bytes\n", log_buf_len); |
| 1164 | pr_info("early log buf free: %u(%u%%)\n", |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 1165 | free, (free * 100) / __LOG_BUF_LEN); |
John Ogness | cfe2790 | 2020-09-19 00:40:19 +0206 | [diff] [blame] | 1166 | return; |
| 1167 | |
| 1168 | err_free_descs: |
Mike Rapoport | 4421cca | 2021-11-05 13:43:22 -0700 | [diff] [blame] | 1169 | memblock_free(new_descs, new_descs_size); |
John Ogness | cfe2790 | 2020-09-19 00:40:19 +0206 | [diff] [blame] | 1170 | err_free_log_buf: |
Mike Rapoport | 4421cca | 2021-11-05 13:43:22 -0700 | [diff] [blame] | 1171 | memblock_free(new_log_buf, new_log_buf_len); |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 1172 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | |
Andrew Cooks | 2fa72c8 | 2012-12-17 15:59:56 -0800 | [diff] [blame] | 1174 | static bool __read_mostly ignore_loglevel; |
| 1175 | |
| 1176 | static int __init ignore_loglevel_setup(char *str) |
| 1177 | { |
Neil Zhang | d25d9fe | 2014-08-06 16:09:12 -0700 | [diff] [blame] | 1178 | ignore_loglevel = true; |
Andrew Morton | 27083ba | 2013-11-12 15:08:50 -0800 | [diff] [blame] | 1179 | pr_info("debug: ignoring loglevel setting.\n"); |
Andrew Cooks | 2fa72c8 | 2012-12-17 15:59:56 -0800 | [diff] [blame] | 1180 | |
| 1181 | return 0; |
| 1182 | } |
| 1183 | |
| 1184 | early_param("ignore_loglevel", ignore_loglevel_setup); |
| 1185 | module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR); |
Joe Perches | 205bd3d | 2015-02-12 15:01:34 -0800 | [diff] [blame] | 1186 | MODULE_PARM_DESC(ignore_loglevel, |
| 1187 | "ignore loglevel setting (prints all kernel messages to the console)"); |
Andrew Cooks | 2fa72c8 | 2012-12-17 15:59:56 -0800 | [diff] [blame] | 1188 | |
Sergey Senozhatsky | cf77544 | 2016-08-02 14:03:56 -0700 | [diff] [blame] | 1189 | static bool suppress_message_printing(int level) |
| 1190 | { |
| 1191 | return (level >= console_loglevel && !ignore_loglevel); |
| 1192 | } |
| 1193 | |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 1194 | #ifdef CONFIG_BOOT_PRINTK_DELAY |
| 1195 | |
Namhyung Kim | 674dff6 | 2010-10-26 14:22:48 -0700 | [diff] [blame] | 1196 | static int boot_delay; /* msecs delay after each printk during bootup */ |
Dave Young | 3a3b6ed | 2009-09-22 16:43:31 -0700 | [diff] [blame] | 1197 | static unsigned long long loops_per_msec; /* based on boot_delay */ |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 1198 | |
| 1199 | static int __init boot_delay_setup(char *str) |
| 1200 | { |
| 1201 | unsigned long lpj; |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 1202 | |
| 1203 | lpj = preset_lpj ? preset_lpj : 1000000; /* some guess */ |
| 1204 | loops_per_msec = (unsigned long long)lpj / 1000 * HZ; |
| 1205 | |
| 1206 | get_option(&str, &boot_delay); |
| 1207 | if (boot_delay > 10 * 1000) |
| 1208 | boot_delay = 0; |
| 1209 | |
Dave Young | 3a3b6ed | 2009-09-22 16:43:31 -0700 | [diff] [blame] | 1210 | pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, " |
| 1211 | "HZ: %d, loops_per_msec: %llu\n", |
| 1212 | boot_delay, preset_lpj, lpj, HZ, loops_per_msec); |
Dave Young | 29e9d22 | 2013-11-12 15:08:53 -0800 | [diff] [blame] | 1213 | return 0; |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 1214 | } |
Dave Young | 29e9d22 | 2013-11-12 15:08:53 -0800 | [diff] [blame] | 1215 | early_param("boot_delay", boot_delay_setup); |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 1216 | |
Andrew Cooks | 2fa72c8 | 2012-12-17 15:59:56 -0800 | [diff] [blame] | 1217 | static void boot_delay_msec(int level) |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 1218 | { |
| 1219 | unsigned long long k; |
| 1220 | unsigned long timeout; |
| 1221 | |
Thomas Gleixner | ff48cd2 | 2017-05-16 20:42:45 +0200 | [diff] [blame] | 1222 | if ((boot_delay == 0 || system_state >= SYSTEM_RUNNING) |
Sergey Senozhatsky | cf77544 | 2016-08-02 14:03:56 -0700 | [diff] [blame] | 1223 | || suppress_message_printing(level)) { |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 1224 | return; |
Andrew Cooks | 2fa72c8 | 2012-12-17 15:59:56 -0800 | [diff] [blame] | 1225 | } |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 1226 | |
Dave Young | 3a3b6ed | 2009-09-22 16:43:31 -0700 | [diff] [blame] | 1227 | k = (unsigned long long)loops_per_msec * boot_delay; |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 1228 | |
| 1229 | timeout = jiffies + msecs_to_jiffies(boot_delay); |
| 1230 | while (k) { |
| 1231 | k--; |
| 1232 | cpu_relax(); |
| 1233 | /* |
| 1234 | * use (volatile) jiffies to prevent |
| 1235 | * compiler reduction; loop termination via jiffies |
| 1236 | * is secondary and may or may not happen. |
| 1237 | */ |
| 1238 | if (time_after(jiffies, timeout)) |
| 1239 | break; |
| 1240 | touch_nmi_watchdog(); |
| 1241 | } |
| 1242 | } |
| 1243 | #else |
Andrew Cooks | 2fa72c8 | 2012-12-17 15:59:56 -0800 | [diff] [blame] | 1244 | static inline void boot_delay_msec(int level) |
Randy Dunlap | bfe8df3 | 2007-10-16 01:23:46 -0700 | [diff] [blame] | 1245 | { |
| 1246 | } |
| 1247 | #endif |
| 1248 | |
Alex Elder | e99aa46 | 2014-08-06 16:09:05 -0700 | [diff] [blame] | 1249 | static bool printk_time = IS_ENABLED(CONFIG_PRINTK_TIME); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1250 | module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR); |
| 1251 | |
Tetsuo Handa | 07c1773 | 2018-12-11 18:49:05 +0900 | [diff] [blame] | 1252 | static size_t print_syslog(unsigned int level, char *buf) |
| 1253 | { |
| 1254 | return sprintf(buf, "<%u>", level); |
| 1255 | } |
| 1256 | |
Kay Sievers | 084681d | 2012-06-28 09:38:53 +0200 | [diff] [blame] | 1257 | static size_t print_time(u64 ts, char *buf) |
| 1258 | { |
Tetsuo Handa | e80c1a9 | 2018-12-04 19:00:01 +0900 | [diff] [blame] | 1259 | unsigned long rem_nsec = do_div(ts, 1000000000); |
Roland Dreier | 35dac27 | 2013-01-04 15:35:50 -0800 | [diff] [blame] | 1260 | |
Tetsuo Handa | 15ff206 | 2018-12-18 06:05:04 +0900 | [diff] [blame] | 1261 | return sprintf(buf, "[%5lu.%06lu]", |
Kay Sievers | 084681d | 2012-06-28 09:38:53 +0200 | [diff] [blame] | 1262 | (unsigned long)ts, rem_nsec / 1000); |
| 1263 | } |
| 1264 | |
Tetsuo Handa | 15ff206 | 2018-12-18 06:05:04 +0900 | [diff] [blame] | 1265 | #ifdef CONFIG_PRINTK_CALLER |
| 1266 | static size_t print_caller(u32 id, char *buf) |
| 1267 | { |
| 1268 | char caller[12]; |
| 1269 | |
| 1270 | snprintf(caller, sizeof(caller), "%c%u", |
| 1271 | id & 0x80000000 ? 'C' : 'T', id & ~0x80000000); |
| 1272 | return sprintf(buf, "[%6s]", caller); |
| 1273 | } |
| 1274 | #else |
| 1275 | #define print_caller(id, buf) 0 |
| 1276 | #endif |
| 1277 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1278 | static size_t info_print_prefix(const struct printk_info *info, bool syslog, |
| 1279 | bool time, char *buf) |
Kay Sievers | 649e6ee | 2012-05-10 04:30:45 +0200 | [diff] [blame] | 1280 | { |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1281 | size_t len = 0; |
Kay Sievers | 649e6ee | 2012-05-10 04:30:45 +0200 | [diff] [blame] | 1282 | |
Tetsuo Handa | 07c1773 | 2018-12-11 18:49:05 +0900 | [diff] [blame] | 1283 | if (syslog) |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1284 | len = print_syslog((info->facility << 3) | info->level, buf); |
Tetsuo Handa | 15ff206 | 2018-12-18 06:05:04 +0900 | [diff] [blame] | 1285 | |
Tetsuo Handa | e80c1a9 | 2018-12-04 19:00:01 +0900 | [diff] [blame] | 1286 | if (time) |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1287 | len += print_time(info->ts_nsec, buf + len); |
Tetsuo Handa | 15ff206 | 2018-12-18 06:05:04 +0900 | [diff] [blame] | 1288 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1289 | len += print_caller(info->caller_id, buf + len); |
Tetsuo Handa | 15ff206 | 2018-12-18 06:05:04 +0900 | [diff] [blame] | 1290 | |
| 1291 | if (IS_ENABLED(CONFIG_PRINTK_CALLER) || time) { |
| 1292 | buf[len++] = ' '; |
| 1293 | buf[len] = '\0'; |
| 1294 | } |
| 1295 | |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1296 | return len; |
| 1297 | } |
| 1298 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1299 | /* |
| 1300 | * Prepare the record for printing. The text is shifted within the given |
| 1301 | * buffer to avoid a need for another one. The following operations are |
| 1302 | * done: |
| 1303 | * |
| 1304 | * - Add prefix for each line. |
John Ogness | f0e386e | 2021-01-14 18:10:12 +0106 | [diff] [blame] | 1305 | * - Drop truncated lines that no longer fit into the buffer. |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1306 | * - Add the trailing newline that has been removed in vprintk_store(). |
John Ogness | f0e386e | 2021-01-14 18:10:12 +0106 | [diff] [blame] | 1307 | * - Add a string terminator. |
| 1308 | * |
| 1309 | * Since the produced string is always terminated, the maximum possible |
| 1310 | * return value is @r->text_buf_size - 1; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1311 | * |
| 1312 | * Return: The length of the updated/prepared text, including the added |
John Ogness | f0e386e | 2021-01-14 18:10:12 +0106 | [diff] [blame] | 1313 | * prefixes and the newline. The terminator is not counted. The dropped |
| 1314 | * line(s) are not counted. |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1315 | */ |
| 1316 | static size_t record_print_text(struct printk_record *r, bool syslog, |
| 1317 | bool time) |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1318 | { |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1319 | size_t text_len = r->info->text_len; |
| 1320 | size_t buf_size = r->text_buf_size; |
| 1321 | char *text = r->text_buf; |
Tetsuo Handa | 07c1773 | 2018-12-11 18:49:05 +0900 | [diff] [blame] | 1322 | char prefix[PREFIX_MAX]; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1323 | bool truncated = false; |
| 1324 | size_t prefix_len; |
| 1325 | size_t line_len; |
| 1326 | size_t len = 0; |
| 1327 | char *next; |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1328 | |
John Ogness | 59f8bcc | 2020-09-30 11:07:33 +0206 | [diff] [blame] | 1329 | /* |
| 1330 | * If the message was truncated because the buffer was not large |
| 1331 | * enough, treat the available text as if it were the full text. |
| 1332 | */ |
| 1333 | if (text_len > buf_size) |
| 1334 | text_len = buf_size; |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1335 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1336 | prefix_len = info_print_prefix(r->info, syslog, time, prefix); |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1337 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1338 | /* |
| 1339 | * @text_len: bytes of unprocessed text |
| 1340 | * @line_len: bytes of current line _without_ newline |
| 1341 | * @text: pointer to beginning of current line |
| 1342 | * @len: number of bytes prepared in r->text_buf |
| 1343 | */ |
| 1344 | for (;;) { |
| 1345 | next = memchr(text, '\n', text_len); |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1346 | if (next) { |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1347 | line_len = next - text; |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1348 | } else { |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1349 | /* Drop truncated line(s). */ |
| 1350 | if (truncated) |
| 1351 | break; |
| 1352 | line_len = text_len; |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1353 | } |
| 1354 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1355 | /* |
| 1356 | * Truncate the text if there is not enough space to add the |
John Ogness | f0e386e | 2021-01-14 18:10:12 +0106 | [diff] [blame] | 1357 | * prefix and a trailing newline and a terminator. |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1358 | */ |
John Ogness | f0e386e | 2021-01-14 18:10:12 +0106 | [diff] [blame] | 1359 | if (len + prefix_len + text_len + 1 + 1 > buf_size) { |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1360 | /* Drop even the current line if no space. */ |
John Ogness | f0e386e | 2021-01-14 18:10:12 +0106 | [diff] [blame] | 1361 | if (len + prefix_len + line_len + 1 + 1 > buf_size) |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1362 | break; |
| 1363 | |
John Ogness | f0e386e | 2021-01-14 18:10:12 +0106 | [diff] [blame] | 1364 | text_len = buf_size - len - prefix_len - 1 - 1; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1365 | truncated = true; |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1366 | } |
| 1367 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1368 | memmove(text + prefix_len, text, text_len); |
| 1369 | memcpy(text, prefix, prefix_len); |
| 1370 | |
John Ogness | f0e386e | 2021-01-14 18:10:12 +0106 | [diff] [blame] | 1371 | /* |
| 1372 | * Increment the prepared length to include the text and |
| 1373 | * prefix that were just moved+copied. Also increment for the |
| 1374 | * newline at the end of this line. If this is the last line, |
| 1375 | * there is no newline, but it will be added immediately below. |
| 1376 | */ |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1377 | len += prefix_len + line_len + 1; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1378 | if (text_len == line_len) { |
| 1379 | /* |
John Ogness | f0e386e | 2021-01-14 18:10:12 +0106 | [diff] [blame] | 1380 | * This is the last line. Add the trailing newline |
| 1381 | * removed in vprintk_store(). |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1382 | */ |
| 1383 | text[prefix_len + line_len] = '\n'; |
| 1384 | break; |
| 1385 | } |
| 1386 | |
| 1387 | /* |
| 1388 | * Advance beyond the added prefix and the related line with |
| 1389 | * its newline. |
| 1390 | */ |
| 1391 | text += prefix_len + line_len + 1; |
| 1392 | |
| 1393 | /* |
| 1394 | * The remaining text has only decreased by the line with its |
| 1395 | * newline. |
| 1396 | * |
| 1397 | * Note that @text_len can become zero. It happens when @text |
| 1398 | * ended with a newline (either due to truncation or the |
| 1399 | * original string ending with "\n\n"). The loop is correctly |
| 1400 | * repeated and (if not truncated) an empty line with a prefix |
| 1401 | * will be prepared. |
| 1402 | */ |
| 1403 | text_len -= line_len + 1; |
| 1404 | } |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1405 | |
John Ogness | f0e386e | 2021-01-14 18:10:12 +0106 | [diff] [blame] | 1406 | /* |
| 1407 | * If a buffer was provided, it will be terminated. Space for the |
| 1408 | * string terminator is guaranteed to be available. The terminator is |
| 1409 | * not counted in the return value. |
| 1410 | */ |
| 1411 | if (buf_size > 0) |
John Ogness | 08d60e5 | 2021-01-24 21:33:28 +0106 | [diff] [blame] | 1412 | r->text_buf[len] = 0; |
John Ogness | f0e386e | 2021-01-14 18:10:12 +0106 | [diff] [blame] | 1413 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1414 | return len; |
| 1415 | } |
| 1416 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1417 | static size_t get_record_print_text_size(struct printk_info *info, |
| 1418 | unsigned int line_count, |
| 1419 | bool syslog, bool time) |
| 1420 | { |
| 1421 | char prefix[PREFIX_MAX]; |
| 1422 | size_t prefix_len; |
| 1423 | |
| 1424 | prefix_len = info_print_prefix(info, syslog, time, prefix); |
| 1425 | |
| 1426 | /* |
| 1427 | * Each line will be preceded with a prefix. The intermediate |
| 1428 | * newlines are already within the text, but a final trailing |
| 1429 | * newline will be added. |
| 1430 | */ |
| 1431 | return ((prefix_len * line_count) + info->text_len + 1); |
| 1432 | } |
| 1433 | |
John Ogness | 4260e0e55 | 2021-03-03 11:15:19 +0100 | [diff] [blame] | 1434 | /* |
| 1435 | * Beginning with @start_seq, find the first record where it and all following |
| 1436 | * records up to (but not including) @max_seq fit into @size. |
| 1437 | * |
| 1438 | * @max_seq is simply an upper bound and does not need to exist. If the caller |
| 1439 | * does not require an upper bound, -1 can be used for @max_seq. |
| 1440 | */ |
| 1441 | static u64 find_first_fitting_seq(u64 start_seq, u64 max_seq, size_t size, |
| 1442 | bool syslog, bool time) |
| 1443 | { |
| 1444 | struct printk_info info; |
| 1445 | unsigned int line_count; |
| 1446 | size_t len = 0; |
| 1447 | u64 seq; |
| 1448 | |
| 1449 | /* Determine the size of the records up to @max_seq. */ |
| 1450 | prb_for_each_info(start_seq, prb, seq, &info, &line_count) { |
| 1451 | if (info.seq >= max_seq) |
| 1452 | break; |
| 1453 | len += get_record_print_text_size(&info, line_count, syslog, time); |
| 1454 | } |
| 1455 | |
| 1456 | /* |
| 1457 | * Adjust the upper bound for the next loop to avoid subtracting |
| 1458 | * lengths that were never added. |
| 1459 | */ |
| 1460 | if (seq < max_seq) |
| 1461 | max_seq = seq; |
| 1462 | |
| 1463 | /* |
| 1464 | * Move first record forward until length fits into the buffer. Ignore |
| 1465 | * newest messages that were not counted in the above cycle. Messages |
| 1466 | * might appear and get lost in the meantime. This is a best effort |
| 1467 | * that prevents an infinite loop that could occur with a retry. |
| 1468 | */ |
| 1469 | prb_for_each_info(start_seq, prb, seq, &info, &line_count) { |
| 1470 | if (len <= size || info.seq >= max_seq) |
| 1471 | break; |
| 1472 | len -= get_record_print_text_size(&info, line_count, syslog, time); |
| 1473 | } |
| 1474 | |
| 1475 | return seq; |
| 1476 | } |
| 1477 | |
John Ogness | 8d909b2 | 2021-07-15 21:39:59 +0206 | [diff] [blame] | 1478 | /* The caller is responsible for making sure @size is greater than 0. */ |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1479 | static int syslog_print(char __user *buf, int size) |
| 1480 | { |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1481 | struct printk_info info; |
| 1482 | struct printk_record r; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1483 | char *text; |
Jan Beulich | 116e90b | 2012-06-22 16:36:09 +0100 | [diff] [blame] | 1484 | int len = 0; |
John Ogness | 8d909b2 | 2021-07-15 21:39:59 +0206 | [diff] [blame] | 1485 | u64 seq; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1486 | |
John Ogness | cf5b020 | 2021-03-03 11:15:20 +0100 | [diff] [blame] | 1487 | text = kmalloc(CONSOLE_LOG_MAX, GFP_KERNEL); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1488 | if (!text) |
| 1489 | return -ENOMEM; |
| 1490 | |
John Ogness | cf5b020 | 2021-03-03 11:15:20 +0100 | [diff] [blame] | 1491 | prb_rec_init_rd(&r, &info, text, CONSOLE_LOG_MAX); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1492 | |
John Ogness | 8d909b2 | 2021-07-15 21:39:59 +0206 | [diff] [blame] | 1493 | mutex_lock(&syslog_lock); |
| 1494 | |
| 1495 | /* |
| 1496 | * Wait for the @syslog_seq record to be available. @syslog_seq may |
| 1497 | * change while waiting. |
| 1498 | */ |
| 1499 | do { |
| 1500 | seq = syslog_seq; |
| 1501 | |
| 1502 | mutex_unlock(&syslog_lock); |
| 1503 | len = wait_event_interruptible(log_wait, prb_read_valid(prb, seq, NULL)); |
| 1504 | mutex_lock(&syslog_lock); |
| 1505 | |
| 1506 | if (len) |
| 1507 | goto out; |
| 1508 | } while (syslog_seq != seq); |
| 1509 | |
| 1510 | /* |
| 1511 | * Copy records that fit into the buffer. The above cycle makes sure |
| 1512 | * that the first record is always available. |
| 1513 | */ |
| 1514 | do { |
Jan Beulich | 116e90b | 2012-06-22 16:36:09 +0100 | [diff] [blame] | 1515 | size_t n; |
Kay Sievers | eb02dac | 2012-07-09 10:05:10 -0700 | [diff] [blame] | 1516 | size_t skip; |
John Ogness | 8d909b2 | 2021-07-15 21:39:59 +0206 | [diff] [blame] | 1517 | int err; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1518 | |
John Ogness | 8d909b2 | 2021-07-15 21:39:59 +0206 | [diff] [blame] | 1519 | if (!prb_read_valid(prb, syslog_seq, &r)) |
Jan Beulich | 116e90b | 2012-06-22 16:36:09 +0100 | [diff] [blame] | 1520 | break; |
John Ogness | 8d909b2 | 2021-07-15 21:39:59 +0206 | [diff] [blame] | 1521 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1522 | if (r.info->seq != syslog_seq) { |
| 1523 | /* message is gone, move to next valid one */ |
| 1524 | syslog_seq = r.info->seq; |
| 1525 | syslog_partial = 0; |
| 1526 | } |
Kay Sievers | eb02dac | 2012-07-09 10:05:10 -0700 | [diff] [blame] | 1527 | |
Tetsuo Handa | e80c1a9 | 2018-12-04 19:00:01 +0900 | [diff] [blame] | 1528 | /* |
| 1529 | * To keep reading/counting partial line consistent, |
| 1530 | * use printk_time value as of the beginning of a line. |
| 1531 | */ |
| 1532 | if (!syslog_partial) |
| 1533 | syslog_time = printk_time; |
| 1534 | |
Kay Sievers | eb02dac | 2012-07-09 10:05:10 -0700 | [diff] [blame] | 1535 | skip = syslog_partial; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1536 | n = record_print_text(&r, true, syslog_time); |
Kay Sievers | eb02dac | 2012-07-09 10:05:10 -0700 | [diff] [blame] | 1537 | if (n - syslog_partial <= size) { |
| 1538 | /* message fits into buffer, move forward */ |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1539 | syslog_seq = r.info->seq + 1; |
Kay Sievers | eb02dac | 2012-07-09 10:05:10 -0700 | [diff] [blame] | 1540 | n -= syslog_partial; |
| 1541 | syslog_partial = 0; |
| 1542 | } else if (!len){ |
| 1543 | /* partial read(), remember position */ |
| 1544 | n = size; |
| 1545 | syslog_partial += n; |
Jan Beulich | 116e90b | 2012-06-22 16:36:09 +0100 | [diff] [blame] | 1546 | } else |
| 1547 | n = 0; |
Jan Beulich | 116e90b | 2012-06-22 16:36:09 +0100 | [diff] [blame] | 1548 | |
| 1549 | if (!n) |
| 1550 | break; |
| 1551 | |
John Ogness | 8d909b2 | 2021-07-15 21:39:59 +0206 | [diff] [blame] | 1552 | mutex_unlock(&syslog_lock); |
| 1553 | err = copy_to_user(buf, text + skip, n); |
| 1554 | mutex_lock(&syslog_lock); |
| 1555 | |
| 1556 | if (err) { |
Jan Beulich | 116e90b | 2012-06-22 16:36:09 +0100 | [diff] [blame] | 1557 | if (!len) |
| 1558 | len = -EFAULT; |
| 1559 | break; |
| 1560 | } |
Kay Sievers | eb02dac | 2012-07-09 10:05:10 -0700 | [diff] [blame] | 1561 | |
| 1562 | len += n; |
| 1563 | size -= n; |
| 1564 | buf += n; |
John Ogness | 8d909b2 | 2021-07-15 21:39:59 +0206 | [diff] [blame] | 1565 | } while (size); |
| 1566 | out: |
| 1567 | mutex_unlock(&syslog_lock); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1568 | kfree(text); |
| 1569 | return len; |
| 1570 | } |
| 1571 | |
| 1572 | static int syslog_print_all(char __user *buf, int size, bool clear) |
| 1573 | { |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1574 | struct printk_info info; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1575 | struct printk_record r; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1576 | char *text; |
| 1577 | int len = 0; |
Namit Gupta | 63842c2 | 2018-06-20 19:26:19 +0530 | [diff] [blame] | 1578 | u64 seq; |
Tetsuo Handa | e80c1a9 | 2018-12-04 19:00:01 +0900 | [diff] [blame] | 1579 | bool time; |
Namit Gupta | 63842c2 | 2018-06-20 19:26:19 +0530 | [diff] [blame] | 1580 | |
John Ogness | cf5b020 | 2021-03-03 11:15:20 +0100 | [diff] [blame] | 1581 | text = kmalloc(CONSOLE_LOG_MAX, GFP_KERNEL); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1582 | if (!text) |
| 1583 | return -ENOMEM; |
| 1584 | |
Tetsuo Handa | e80c1a9 | 2018-12-04 19:00:01 +0900 | [diff] [blame] | 1585 | time = printk_time; |
Namit Gupta | 63842c2 | 2018-06-20 19:26:19 +0530 | [diff] [blame] | 1586 | /* |
| 1587 | * Find first record that fits, including all following records, |
| 1588 | * into the user-provided buffer for this dump. |
| 1589 | */ |
John Ogness | 7d7a23a | 2021-03-03 11:15:21 +0100 | [diff] [blame] | 1590 | seq = find_first_fitting_seq(latched_seq_read_nolock(&clear_seq), -1, |
| 1591 | size, true, time); |
Namit Gupta | 63842c2 | 2018-06-20 19:26:19 +0530 | [diff] [blame] | 1592 | |
John Ogness | cf5b020 | 2021-03-03 11:15:20 +0100 | [diff] [blame] | 1593 | prb_rec_init_rd(&r, &info, text, CONSOLE_LOG_MAX); |
Namit Gupta | 63842c2 | 2018-06-20 19:26:19 +0530 | [diff] [blame] | 1594 | |
| 1595 | len = 0; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1596 | prb_for_each_record(seq, prb, seq, &r) { |
| 1597 | int textlen; |
Namit Gupta | 63842c2 | 2018-06-20 19:26:19 +0530 | [diff] [blame] | 1598 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1599 | textlen = record_print_text(&r, true, time); |
| 1600 | |
| 1601 | if (len + textlen > size) { |
| 1602 | seq--; |
| 1603 | break; |
| 1604 | } |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 1605 | |
Namit Gupta | 63842c2 | 2018-06-20 19:26:19 +0530 | [diff] [blame] | 1606 | if (copy_to_user(buf + len, text, textlen)) |
| 1607 | len = -EFAULT; |
| 1608 | else |
| 1609 | len += textlen; |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 1610 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1611 | if (len < 0) |
| 1612 | break; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1613 | } |
| 1614 | |
John Ogness | 636babd | 2021-03-03 11:15:23 +0100 | [diff] [blame] | 1615 | if (clear) { |
John Ogness | b371cbb | 2021-07-15 21:39:58 +0206 | [diff] [blame] | 1616 | mutex_lock(&syslog_lock); |
John Ogness | 7d7a23a | 2021-03-03 11:15:21 +0100 | [diff] [blame] | 1617 | latched_seq_write(&clear_seq, seq); |
John Ogness | b371cbb | 2021-07-15 21:39:58 +0206 | [diff] [blame] | 1618 | mutex_unlock(&syslog_lock); |
John Ogness | 636babd | 2021-03-03 11:15:23 +0100 | [diff] [blame] | 1619 | } |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1620 | |
| 1621 | kfree(text); |
| 1622 | return len; |
| 1623 | } |
| 1624 | |
Petr Mladek | 8599dc7 | 2018-06-27 17:06:41 +0200 | [diff] [blame] | 1625 | static void syslog_clear(void) |
| 1626 | { |
John Ogness | b371cbb | 2021-07-15 21:39:58 +0206 | [diff] [blame] | 1627 | mutex_lock(&syslog_lock); |
John Ogness | 7d7a23a | 2021-03-03 11:15:21 +0100 | [diff] [blame] | 1628 | latched_seq_write(&clear_seq, prb_next_seq(prb)); |
John Ogness | b371cbb | 2021-07-15 21:39:58 +0206 | [diff] [blame] | 1629 | mutex_unlock(&syslog_lock); |
John Ogness | 636babd | 2021-03-03 11:15:23 +0100 | [diff] [blame] | 1630 | } |
| 1631 | |
Vasily Averin | 3ea4331 | 2015-06-25 15:01:47 -0700 | [diff] [blame] | 1632 | int do_syslog(int type, char __user *buf, int len, int source) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | { |
John Ogness | 13791c8 | 2021-02-11 18:37:52 +0106 | [diff] [blame] | 1634 | struct printk_info info; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1635 | bool clear = false; |
Joe Perches | a39d4a8 | 2014-12-10 15:50:15 -0800 | [diff] [blame] | 1636 | static int saved_console_loglevel = LOGLEVEL_DEFAULT; |
Linus Torvalds | ee24aeb | 2011-02-10 17:53:55 -0800 | [diff] [blame] | 1637 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | |
Vasily Averin | 3ea4331 | 2015-06-25 15:01:47 -0700 | [diff] [blame] | 1639 | error = check_syslog_permissions(type, source); |
Linus Torvalds | ee24aeb | 2011-02-10 17:53:55 -0800 | [diff] [blame] | 1640 | if (error) |
Nikitas Angelinas | 077a1cc | 2017-07-29 20:36:36 -0700 | [diff] [blame] | 1641 | return error; |
Eric Paris | 12b3052 | 2010-11-15 18:36:29 -0500 | [diff] [blame] | 1642 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | switch (type) { |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1644 | case SYSLOG_ACTION_CLOSE: /* Close log */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1646 | case SYSLOG_ACTION_OPEN: /* Open log */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1648 | case SYSLOG_ACTION_READ: /* Read from log */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | if (!buf || len < 0) |
Nikitas Angelinas | 077a1cc | 2017-07-29 20:36:36 -0700 | [diff] [blame] | 1650 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | if (!len) |
Nikitas Angelinas | 077a1cc | 2017-07-29 20:36:36 -0700 | [diff] [blame] | 1652 | return 0; |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 1653 | if (!access_ok(buf, len)) |
Nikitas Angelinas | 077a1cc | 2017-07-29 20:36:36 -0700 | [diff] [blame] | 1654 | return -EFAULT; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1655 | error = syslog_print(buf, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1657 | /* Read/clear last kernel messages */ |
| 1658 | case SYSLOG_ACTION_READ_CLEAR: |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1659 | clear = true; |
Gustavo A. R. Silva | 4e797e6 | 2020-10-02 17:46:27 -0500 | [diff] [blame] | 1660 | fallthrough; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1661 | /* Read last kernel messages */ |
| 1662 | case SYSLOG_ACTION_READ_ALL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1663 | if (!buf || len < 0) |
Nikitas Angelinas | 077a1cc | 2017-07-29 20:36:36 -0700 | [diff] [blame] | 1664 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | if (!len) |
Nikitas Angelinas | 077a1cc | 2017-07-29 20:36:36 -0700 | [diff] [blame] | 1666 | return 0; |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 1667 | if (!access_ok(buf, len)) |
Nikitas Angelinas | 077a1cc | 2017-07-29 20:36:36 -0700 | [diff] [blame] | 1668 | return -EFAULT; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1669 | error = syslog_print_all(buf, len, clear); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1671 | /* Clear ring buffer */ |
| 1672 | case SYSLOG_ACTION_CLEAR: |
Petr Mladek | 8599dc7 | 2018-06-27 17:06:41 +0200 | [diff] [blame] | 1673 | syslog_clear(); |
Alan Stern | 4661e35 | 2012-06-22 17:12:19 -0400 | [diff] [blame] | 1674 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1675 | /* Disable logging to console */ |
| 1676 | case SYSLOG_ACTION_CONSOLE_OFF: |
Joe Perches | a39d4a8 | 2014-12-10 15:50:15 -0800 | [diff] [blame] | 1677 | if (saved_console_loglevel == LOGLEVEL_DEFAULT) |
Frans Pop | 1aaad49 | 2009-07-06 13:31:48 +0200 | [diff] [blame] | 1678 | saved_console_loglevel = console_loglevel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1679 | console_loglevel = minimum_console_loglevel; |
| 1680 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1681 | /* Enable logging to console */ |
| 1682 | case SYSLOG_ACTION_CONSOLE_ON: |
Joe Perches | a39d4a8 | 2014-12-10 15:50:15 -0800 | [diff] [blame] | 1683 | if (saved_console_loglevel != LOGLEVEL_DEFAULT) { |
Frans Pop | 1aaad49 | 2009-07-06 13:31:48 +0200 | [diff] [blame] | 1684 | console_loglevel = saved_console_loglevel; |
Joe Perches | a39d4a8 | 2014-12-10 15:50:15 -0800 | [diff] [blame] | 1685 | saved_console_loglevel = LOGLEVEL_DEFAULT; |
Frans Pop | 1aaad49 | 2009-07-06 13:31:48 +0200 | [diff] [blame] | 1686 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1688 | /* Set level of messages printed to console */ |
| 1689 | case SYSLOG_ACTION_CONSOLE_LEVEL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | if (len < 1 || len > 8) |
Nikitas Angelinas | 077a1cc | 2017-07-29 20:36:36 -0700 | [diff] [blame] | 1691 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | if (len < minimum_console_loglevel) |
| 1693 | len = minimum_console_loglevel; |
| 1694 | console_loglevel = len; |
Frans Pop | 1aaad49 | 2009-07-06 13:31:48 +0200 | [diff] [blame] | 1695 | /* Implicitly re-enable logging to console */ |
Joe Perches | a39d4a8 | 2014-12-10 15:50:15 -0800 | [diff] [blame] | 1696 | saved_console_loglevel = LOGLEVEL_DEFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1698 | /* Number of chars in the log buffer */ |
| 1699 | case SYSLOG_ACTION_SIZE_UNREAD: |
John Ogness | b371cbb | 2021-07-15 21:39:58 +0206 | [diff] [blame] | 1700 | mutex_lock(&syslog_lock); |
John Ogness | 13791c8 | 2021-02-11 18:37:52 +0106 | [diff] [blame] | 1701 | if (!prb_read_valid_info(prb, syslog_seq, &info, NULL)) { |
| 1702 | /* No unread messages. */ |
John Ogness | b371cbb | 2021-07-15 21:39:58 +0206 | [diff] [blame] | 1703 | mutex_unlock(&syslog_lock); |
John Ogness | 13791c8 | 2021-02-11 18:37:52 +0106 | [diff] [blame] | 1704 | return 0; |
| 1705 | } |
| 1706 | if (info.seq != syslog_seq) { |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1707 | /* messages are gone, move to first one */ |
John Ogness | 13791c8 | 2021-02-11 18:37:52 +0106 | [diff] [blame] | 1708 | syslog_seq = info.seq; |
Kay Sievers | eb02dac | 2012-07-09 10:05:10 -0700 | [diff] [blame] | 1709 | syslog_partial = 0; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1710 | } |
Vasily Averin | 3ea4331 | 2015-06-25 15:01:47 -0700 | [diff] [blame] | 1711 | if (source == SYSLOG_FROM_PROC) { |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1712 | /* |
| 1713 | * Short-cut for poll(/"proc/kmsg") which simply checks |
| 1714 | * for pending data, not the size; return the count of |
| 1715 | * records, not the length. |
| 1716 | */ |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1717 | error = prb_next_seq(prb) - syslog_seq; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1718 | } else { |
Tetsuo Handa | e80c1a9 | 2018-12-04 19:00:01 +0900 | [diff] [blame] | 1719 | bool time = syslog_partial ? syslog_time : printk_time; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1720 | unsigned int line_count; |
| 1721 | u64 seq; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1722 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1723 | prb_for_each_info(syslog_seq, prb, seq, &info, |
| 1724 | &line_count) { |
| 1725 | error += get_record_print_text_size(&info, line_count, |
| 1726 | true, time); |
Tetsuo Handa | e80c1a9 | 2018-12-04 19:00:01 +0900 | [diff] [blame] | 1727 | time = printk_time; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1728 | } |
Kay Sievers | eb02dac | 2012-07-09 10:05:10 -0700 | [diff] [blame] | 1729 | error -= syslog_partial; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1730 | } |
John Ogness | b371cbb | 2021-07-15 21:39:58 +0206 | [diff] [blame] | 1731 | mutex_unlock(&syslog_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | break; |
Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 1733 | /* Size of the log buffer */ |
| 1734 | case SYSLOG_ACTION_SIZE_BUFFER: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | error = log_buf_len; |
| 1736 | break; |
| 1737 | default: |
| 1738 | error = -EINVAL; |
| 1739 | break; |
| 1740 | } |
Nikitas Angelinas | 077a1cc | 2017-07-29 20:36:36 -0700 | [diff] [blame] | 1741 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | return error; |
| 1743 | } |
| 1744 | |
Heiko Carstens | 1e7bfb2 | 2009-01-14 14:14:29 +0100 | [diff] [blame] | 1745 | SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | { |
Kees Cook | 637241a | 2013-06-12 14:04:39 -0700 | [diff] [blame] | 1747 | return do_syslog(type, buf, len, SYSLOG_FROM_READER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1748 | } |
| 1749 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | /* |
Petr Mladek | c162d5b | 2018-01-12 17:08:37 +0100 | [diff] [blame] | 1751 | * Special console_lock variants that help to reduce the risk of soft-lockups. |
| 1752 | * They allow to pass console_lock to another printk() call using a busy wait. |
| 1753 | */ |
| 1754 | |
| 1755 | #ifdef CONFIG_LOCKDEP |
| 1756 | static struct lockdep_map console_owner_dep_map = { |
| 1757 | .name = "console_owner" |
| 1758 | }; |
| 1759 | #endif |
| 1760 | |
| 1761 | static DEFINE_RAW_SPINLOCK(console_owner_lock); |
| 1762 | static struct task_struct *console_owner; |
| 1763 | static bool console_waiter; |
| 1764 | |
| 1765 | /** |
| 1766 | * console_lock_spinning_enable - mark beginning of code where another |
| 1767 | * thread might safely busy wait |
| 1768 | * |
| 1769 | * This basically converts console_lock into a spinlock. This marks |
| 1770 | * the section where the console_lock owner can not sleep, because |
| 1771 | * there may be a waiter spinning (like a spinlock). Also it must be |
| 1772 | * ready to hand over the lock at the end of the section. |
| 1773 | */ |
| 1774 | static void console_lock_spinning_enable(void) |
| 1775 | { |
| 1776 | raw_spin_lock(&console_owner_lock); |
| 1777 | console_owner = current; |
| 1778 | raw_spin_unlock(&console_owner_lock); |
| 1779 | |
| 1780 | /* The waiter may spin on us after setting console_owner */ |
| 1781 | spin_acquire(&console_owner_dep_map, 0, 0, _THIS_IP_); |
| 1782 | } |
| 1783 | |
| 1784 | /** |
| 1785 | * console_lock_spinning_disable_and_check - mark end of code where another |
| 1786 | * thread was able to busy wait and check if there is a waiter |
| 1787 | * |
| 1788 | * This is called at the end of the section where spinning is allowed. |
| 1789 | * It has two functions. First, it is a signal that it is no longer |
| 1790 | * safe to start busy waiting for the lock. Second, it checks if |
| 1791 | * there is a busy waiter and passes the lock rights to her. |
| 1792 | * |
| 1793 | * Important: Callers lose the lock if there was a busy waiter. |
| 1794 | * They must not touch items synchronized by console_lock |
| 1795 | * in this case. |
| 1796 | * |
| 1797 | * Return: 1 if the lock rights were passed, 0 otherwise. |
| 1798 | */ |
| 1799 | static int console_lock_spinning_disable_and_check(void) |
| 1800 | { |
| 1801 | int waiter; |
| 1802 | |
| 1803 | raw_spin_lock(&console_owner_lock); |
| 1804 | waiter = READ_ONCE(console_waiter); |
| 1805 | console_owner = NULL; |
| 1806 | raw_spin_unlock(&console_owner_lock); |
| 1807 | |
| 1808 | if (!waiter) { |
Qian Cai | 5facae4 | 2019-09-19 12:09:40 -0400 | [diff] [blame] | 1809 | spin_release(&console_owner_dep_map, _THIS_IP_); |
Petr Mladek | c162d5b | 2018-01-12 17:08:37 +0100 | [diff] [blame] | 1810 | return 0; |
| 1811 | } |
| 1812 | |
| 1813 | /* The waiter is now free to continue */ |
| 1814 | WRITE_ONCE(console_waiter, false); |
| 1815 | |
Qian Cai | 5facae4 | 2019-09-19 12:09:40 -0400 | [diff] [blame] | 1816 | spin_release(&console_owner_dep_map, _THIS_IP_); |
Petr Mladek | c162d5b | 2018-01-12 17:08:37 +0100 | [diff] [blame] | 1817 | |
| 1818 | /* |
| 1819 | * Hand off console_lock to waiter. The waiter will perform |
| 1820 | * the up(). After this, the waiter is the console_lock owner. |
| 1821 | */ |
Qian Cai | 5facae4 | 2019-09-19 12:09:40 -0400 | [diff] [blame] | 1822 | mutex_release(&console_lock_dep_map, _THIS_IP_); |
Petr Mladek | c162d5b | 2018-01-12 17:08:37 +0100 | [diff] [blame] | 1823 | return 1; |
| 1824 | } |
| 1825 | |
| 1826 | /** |
| 1827 | * console_trylock_spinning - try to get console_lock by busy waiting |
| 1828 | * |
| 1829 | * This allows to busy wait for the console_lock when the current |
| 1830 | * owner is running in specially marked sections. It means that |
| 1831 | * the current owner is running and cannot reschedule until it |
| 1832 | * is ready to lose the lock. |
| 1833 | * |
| 1834 | * Return: 1 if we got the lock, 0 othrewise |
| 1835 | */ |
| 1836 | static int console_trylock_spinning(void) |
| 1837 | { |
| 1838 | struct task_struct *owner = NULL; |
| 1839 | bool waiter; |
| 1840 | bool spin = false; |
| 1841 | unsigned long flags; |
| 1842 | |
| 1843 | if (console_trylock()) |
| 1844 | return 1; |
| 1845 | |
| 1846 | printk_safe_enter_irqsave(flags); |
| 1847 | |
| 1848 | raw_spin_lock(&console_owner_lock); |
| 1849 | owner = READ_ONCE(console_owner); |
| 1850 | waiter = READ_ONCE(console_waiter); |
| 1851 | if (!waiter && owner && owner != current) { |
| 1852 | WRITE_ONCE(console_waiter, true); |
| 1853 | spin = true; |
| 1854 | } |
| 1855 | raw_spin_unlock(&console_owner_lock); |
| 1856 | |
| 1857 | /* |
| 1858 | * If there is an active printk() writing to the |
| 1859 | * consoles, instead of having it write our data too, |
| 1860 | * see if we can offload that load from the active |
| 1861 | * printer, and do some printing ourselves. |
| 1862 | * Go into a spin only if there isn't already a waiter |
| 1863 | * spinning, and there is an active printer, and |
| 1864 | * that active printer isn't us (recursive printk?). |
| 1865 | */ |
| 1866 | if (!spin) { |
| 1867 | printk_safe_exit_irqrestore(flags); |
| 1868 | return 0; |
| 1869 | } |
| 1870 | |
| 1871 | /* We spin waiting for the owner to release us */ |
| 1872 | spin_acquire(&console_owner_dep_map, 0, 0, _THIS_IP_); |
| 1873 | /* Owner will clear console_waiter on hand off */ |
| 1874 | while (READ_ONCE(console_waiter)) |
| 1875 | cpu_relax(); |
Qian Cai | 5facae4 | 2019-09-19 12:09:40 -0400 | [diff] [blame] | 1876 | spin_release(&console_owner_dep_map, _THIS_IP_); |
Petr Mladek | c162d5b | 2018-01-12 17:08:37 +0100 | [diff] [blame] | 1877 | |
| 1878 | printk_safe_exit_irqrestore(flags); |
| 1879 | /* |
| 1880 | * The owner passed the console lock to us. |
| 1881 | * Since we did not spin on console lock, annotate |
| 1882 | * this as a trylock. Otherwise lockdep will |
| 1883 | * complain. |
| 1884 | */ |
| 1885 | mutex_acquire(&console_lock_dep_map, 0, 1, _THIS_IP_); |
| 1886 | |
| 1887 | return 1; |
| 1888 | } |
| 1889 | |
| 1890 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1891 | * Call the console drivers, asking them to write out |
| 1892 | * log_buf[start] to log_buf[end - 1]. |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1893 | * The console_lock must be held. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | */ |
Sergey Senozhatsky | d9c2352 | 2016-12-24 23:09:01 +0900 | [diff] [blame] | 1895 | static void call_console_drivers(const char *ext_text, size_t ext_len, |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 1896 | const char *text, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1897 | { |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1898 | static char dropped_text[64]; |
| 1899 | size_t dropped_len = 0; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1900 | struct console *con; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1901 | |
Sergey Senozhatsky | fc98c3c | 2017-02-18 03:42:54 -0800 | [diff] [blame] | 1902 | trace_console_rcuidle(text, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1903 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1904 | if (!console_drivers) |
| 1905 | return; |
| 1906 | |
| 1907 | if (console_dropped) { |
| 1908 | dropped_len = snprintf(dropped_text, sizeof(dropped_text), |
| 1909 | "** %lu printk messages dropped **\n", |
| 1910 | console_dropped); |
| 1911 | console_dropped = 0; |
| 1912 | } |
| 1913 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 1914 | for_each_console(con) { |
| 1915 | if (exclusive_console && con != exclusive_console) |
| 1916 | continue; |
| 1917 | if (!(con->flags & CON_ENABLED)) |
| 1918 | continue; |
| 1919 | if (!con->write) |
| 1920 | continue; |
| 1921 | if (!cpu_online(smp_processor_id()) && |
| 1922 | !(con->flags & CON_ANYTIME)) |
| 1923 | continue; |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 1924 | if (con->flags & CON_EXTENDED) |
| 1925 | con->write(con, ext_text, ext_len); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1926 | else { |
| 1927 | if (dropped_len) |
| 1928 | con->write(con, dropped_text, dropped_len); |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 1929 | con->write(con, text, len); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 1930 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1931 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | } |
| 1933 | |
John Ogness | 002eb6a | 2021-07-15 21:39:55 +0206 | [diff] [blame] | 1934 | /* |
| 1935 | * Recursion is tracked separately on each CPU. If NMIs are supported, an |
| 1936 | * additional NMI context per CPU is also separately tracked. Until per-CPU |
| 1937 | * is available, a separate "early tracking" is performed. |
| 1938 | */ |
| 1939 | static DEFINE_PER_CPU(u8, printk_count); |
| 1940 | static u8 printk_count_early; |
| 1941 | #ifdef CONFIG_HAVE_NMI |
| 1942 | static DEFINE_PER_CPU(u8, printk_count_nmi); |
| 1943 | static u8 printk_count_nmi_early; |
| 1944 | #endif |
| 1945 | |
| 1946 | /* |
| 1947 | * Recursion is limited to keep the output sane. printk() should not require |
| 1948 | * more than 1 level of recursion (allowing, for example, printk() to trigger |
| 1949 | * a WARN), but a higher value is used in case some printk-internal errors |
| 1950 | * exist, such as the ringbuffer validation checks failing. |
| 1951 | */ |
| 1952 | #define PRINTK_MAX_RECURSION 3 |
| 1953 | |
| 1954 | /* |
| 1955 | * Return a pointer to the dedicated counter for the CPU+context of the |
| 1956 | * caller. |
| 1957 | */ |
| 1958 | static u8 *__printk_recursion_counter(void) |
| 1959 | { |
| 1960 | #ifdef CONFIG_HAVE_NMI |
| 1961 | if (in_nmi()) { |
| 1962 | if (printk_percpu_data_ready()) |
| 1963 | return this_cpu_ptr(&printk_count_nmi); |
| 1964 | return &printk_count_nmi_early; |
| 1965 | } |
| 1966 | #endif |
| 1967 | if (printk_percpu_data_ready()) |
| 1968 | return this_cpu_ptr(&printk_count); |
| 1969 | return &printk_count_early; |
| 1970 | } |
| 1971 | |
| 1972 | /* |
| 1973 | * Enter recursion tracking. Interrupts are disabled to simplify tracking. |
| 1974 | * The caller must check the boolean return value to see if the recursion is |
| 1975 | * allowed. On failure, interrupts are not disabled. |
| 1976 | * |
| 1977 | * @recursion_ptr must be a variable of type (u8 *) and is the same variable |
| 1978 | * that is passed to printk_exit_irqrestore(). |
| 1979 | */ |
| 1980 | #define printk_enter_irqsave(recursion_ptr, flags) \ |
| 1981 | ({ \ |
| 1982 | bool success = true; \ |
| 1983 | \ |
| 1984 | typecheck(u8 *, recursion_ptr); \ |
| 1985 | local_irq_save(flags); \ |
| 1986 | (recursion_ptr) = __printk_recursion_counter(); \ |
| 1987 | if (*(recursion_ptr) > PRINTK_MAX_RECURSION) { \ |
| 1988 | local_irq_restore(flags); \ |
| 1989 | success = false; \ |
| 1990 | } else { \ |
| 1991 | (*(recursion_ptr))++; \ |
| 1992 | } \ |
| 1993 | success; \ |
| 1994 | }) |
| 1995 | |
| 1996 | /* Exit recursion tracking, restoring interrupts. */ |
| 1997 | #define printk_exit_irqrestore(recursion_ptr, flags) \ |
| 1998 | do { \ |
| 1999 | typecheck(u8 *, recursion_ptr); \ |
| 2000 | (*(recursion_ptr))--; \ |
| 2001 | local_irq_restore(flags); \ |
| 2002 | } while (0) |
| 2003 | |
Dave Young | af91322 | 2009-09-22 16:43:33 -0700 | [diff] [blame] | 2004 | int printk_delay_msec __read_mostly; |
| 2005 | |
| 2006 | static inline void printk_delay(void) |
| 2007 | { |
| 2008 | if (unlikely(printk_delay_msec)) { |
| 2009 | int m = printk_delay_msec; |
| 2010 | |
| 2011 | while (m--) { |
| 2012 | mdelay(1); |
| 2013 | touch_nmi_watchdog(); |
| 2014 | } |
| 2015 | } |
| 2016 | } |
| 2017 | |
Tetsuo Handa | cbae05d | 2019-02-16 19:59:33 +0900 | [diff] [blame] | 2018 | static inline u32 printk_caller_id(void) |
| 2019 | { |
| 2020 | return in_task() ? task_pid_nr(current) : |
| 2021 | 0x80000000 + raw_smp_processor_id(); |
| 2022 | } |
| 2023 | |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2024 | /** |
Chris Down | f3d75cf | 2021-06-15 17:52:51 +0100 | [diff] [blame] | 2025 | * printk_parse_prefix - Parse level and control flags. |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2026 | * |
| 2027 | * @text: The terminated text message. |
| 2028 | * @level: A pointer to the current level value, will be updated. |
Chris Down | a1ad4b8 | 2021-06-15 17:52:48 +0100 | [diff] [blame] | 2029 | * @flags: A pointer to the current printk_info flags, will be updated. |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2030 | * |
| 2031 | * @level may be NULL if the caller is not interested in the parsed value. |
| 2032 | * Otherwise the variable pointed to by @level must be set to |
| 2033 | * LOGLEVEL_DEFAULT in order to be updated with the parsed value. |
| 2034 | * |
Chris Down | a1ad4b8 | 2021-06-15 17:52:48 +0100 | [diff] [blame] | 2035 | * @flags may be NULL if the caller is not interested in the parsed value. |
| 2036 | * Otherwise the variable pointed to by @flags will be OR'd with the parsed |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2037 | * value. |
| 2038 | * |
| 2039 | * Return: The length of the parsed level and control flags. |
| 2040 | */ |
Chris Down | f3d75cf | 2021-06-15 17:52:51 +0100 | [diff] [blame] | 2041 | u16 printk_parse_prefix(const char *text, int *level, |
Chris Down | a1ad4b8 | 2021-06-15 17:52:48 +0100 | [diff] [blame] | 2042 | enum printk_info_flags *flags) |
Linus Torvalds | c362c7f | 2016-10-08 22:02:09 -0700 | [diff] [blame] | 2043 | { |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2044 | u16 prefix_len = 0; |
| 2045 | int kern_level; |
Tetsuo Handa | cbae05d | 2019-02-16 19:59:33 +0900 | [diff] [blame] | 2046 | |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2047 | while (*text) { |
| 2048 | kern_level = printk_get_level(text); |
| 2049 | if (!kern_level) |
| 2050 | break; |
Linus Torvalds | c362c7f | 2016-10-08 22:02:09 -0700 | [diff] [blame] | 2051 | |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2052 | switch (kern_level) { |
| 2053 | case '0' ... '7': |
| 2054 | if (level && *level == LOGLEVEL_DEFAULT) |
| 2055 | *level = kern_level - '0'; |
| 2056 | break; |
| 2057 | case 'c': /* KERN_CONT */ |
Chris Down | a1ad4b8 | 2021-06-15 17:52:48 +0100 | [diff] [blame] | 2058 | if (flags) |
| 2059 | *flags |= LOG_CONT; |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2060 | } |
| 2061 | |
| 2062 | prefix_len += 2; |
| 2063 | text += 2; |
| 2064 | } |
| 2065 | |
| 2066 | return prefix_len; |
| 2067 | } |
| 2068 | |
John Ogness | 264a750 | 2021-09-27 16:28:03 +0206 | [diff] [blame] | 2069 | __printf(5, 0) |
Chris Down | a1ad4b8 | 2021-06-15 17:52:48 +0100 | [diff] [blame] | 2070 | static u16 printk_sprint(char *text, u16 size, int facility, |
| 2071 | enum printk_info_flags *flags, const char *fmt, |
| 2072 | va_list args) |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2073 | { |
| 2074 | u16 text_len; |
| 2075 | |
| 2076 | text_len = vscnprintf(text, size, fmt, args); |
| 2077 | |
| 2078 | /* Mark and strip a trailing newline. */ |
| 2079 | if (text_len && text[text_len - 1] == '\n') { |
| 2080 | text_len--; |
Chris Down | a1ad4b8 | 2021-06-15 17:52:48 +0100 | [diff] [blame] | 2081 | *flags |= LOG_NEWLINE; |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2082 | } |
| 2083 | |
| 2084 | /* Strip log level and control flags. */ |
| 2085 | if (facility == 0) { |
| 2086 | u16 prefix_len; |
| 2087 | |
Chris Down | f3d75cf | 2021-06-15 17:52:51 +0100 | [diff] [blame] | 2088 | prefix_len = printk_parse_prefix(text, NULL, NULL); |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2089 | if (prefix_len) { |
| 2090 | text_len -= prefix_len; |
| 2091 | memmove(text, text + prefix_len, text_len); |
John Ogness | f5f022e | 2020-09-14 14:39:54 +0206 | [diff] [blame] | 2092 | } |
Linus Torvalds | c362c7f | 2016-10-08 22:02:09 -0700 | [diff] [blame] | 2093 | } |
| 2094 | |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2095 | return text_len; |
Linus Torvalds | c362c7f | 2016-10-08 22:02:09 -0700 | [diff] [blame] | 2096 | } |
| 2097 | |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2098 | __printf(4, 0) |
Petr Mladek | ba55239 | 2018-06-27 16:08:15 +0200 | [diff] [blame] | 2099 | int vprintk_store(int facility, int level, |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 2100 | const struct dev_printk_info *dev_info, |
Petr Mladek | ba55239 | 2018-06-27 16:08:15 +0200 | [diff] [blame] | 2101 | const char *fmt, va_list args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | { |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2103 | const u32 caller_id = printk_caller_id(); |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2104 | struct prb_reserved_entry e; |
Chris Down | a1ad4b8 | 2021-06-15 17:52:48 +0100 | [diff] [blame] | 2105 | enum printk_info_flags flags = 0; |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2106 | struct printk_record r; |
John Ogness | 002eb6a | 2021-07-15 21:39:55 +0206 | [diff] [blame] | 2107 | unsigned long irqflags; |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2108 | u16 trunc_msg_len = 0; |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2109 | char prefix_buf[8]; |
John Ogness | 002eb6a | 2021-07-15 21:39:55 +0206 | [diff] [blame] | 2110 | u8 *recursion_ptr; |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2111 | u16 reserve_size; |
| 2112 | va_list args2; |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2113 | u16 text_len; |
John Ogness | 002eb6a | 2021-07-15 21:39:55 +0206 | [diff] [blame] | 2114 | int ret = 0; |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2115 | u64 ts_nsec; |
Jan Kara | 608873c | 2014-06-04 16:11:35 -0700 | [diff] [blame] | 2116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | /* |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2118 | * Since the duration of printk() can vary depending on the message |
| 2119 | * and state of the ringbuffer, grab the timestamp now so that it is |
| 2120 | * close to the call of printk(). This provides a more deterministic |
| 2121 | * timestamp with respect to the caller. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2122 | */ |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2123 | ts_nsec = local_clock(); |
Nick Andrew | ac60ad7 | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 2124 | |
John Ogness | 002eb6a | 2021-07-15 21:39:55 +0206 | [diff] [blame] | 2125 | if (!printk_enter_irqsave(recursion_ptr, irqflags)) |
| 2126 | return 0; |
| 2127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | /* |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2129 | * The sprintf needs to come first since the syslog prefix might be |
| 2130 | * passed in as a parameter. An extra byte must be reserved so that |
| 2131 | * later the vscnprintf() into the reserved buffer has room for the |
| 2132 | * terminating '\0', which is not counted by vsnprintf(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2133 | */ |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2134 | va_copy(args2, args); |
| 2135 | reserve_size = vsnprintf(&prefix_buf[0], sizeof(prefix_buf), fmt, args2) + 1; |
| 2136 | va_end(args2); |
Kay Sievers | 9d90c8d | 2011-03-13 03:19:51 +0100 | [diff] [blame] | 2137 | |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2138 | if (reserve_size > LOG_LINE_MAX) |
| 2139 | reserve_size = LOG_LINE_MAX; |
Joe Perches | 088a52a | 2012-07-30 14:40:19 -0700 | [diff] [blame] | 2140 | |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2141 | /* Extract log level or control flags. */ |
| 2142 | if (facility == 0) |
Chris Down | f3d75cf | 2021-06-15 17:52:51 +0100 | [diff] [blame] | 2143 | printk_parse_prefix(&prefix_buf[0], &level, &flags); |
Nick Andrew | ac60ad7 | 2008-05-12 21:21:04 +0200 | [diff] [blame] | 2144 | |
Joe Perches | a39d4a8 | 2014-12-10 15:50:15 -0800 | [diff] [blame] | 2145 | if (level == LOGLEVEL_DEFAULT) |
Kay Sievers | c313af1 | 2012-05-14 20:46:27 +0200 | [diff] [blame] | 2146 | level = default_message_loglevel; |
| 2147 | |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 2148 | if (dev_info) |
Chris Down | a1ad4b8 | 2021-06-15 17:52:48 +0100 | [diff] [blame] | 2149 | flags |= LOG_NEWLINE; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2150 | |
Chris Down | a1ad4b8 | 2021-06-15 17:52:48 +0100 | [diff] [blame] | 2151 | if (flags & LOG_CONT) { |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2152 | prb_rec_init_wr(&r, reserve_size); |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2153 | if (prb_reserve_in_last(&e, prb, &r, caller_id, LOG_LINE_MAX)) { |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2154 | text_len = printk_sprint(&r.text_buf[r.info->text_len], reserve_size, |
Chris Down | a1ad4b8 | 2021-06-15 17:52:48 +0100 | [diff] [blame] | 2155 | facility, &flags, fmt, args); |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2156 | r.info->text_len += text_len; |
| 2157 | |
Chris Down | a1ad4b8 | 2021-06-15 17:52:48 +0100 | [diff] [blame] | 2158 | if (flags & LOG_NEWLINE) { |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2159 | r.info->flags |= LOG_NEWLINE; |
| 2160 | prb_final_commit(&e); |
| 2161 | } else { |
| 2162 | prb_commit(&e); |
| 2163 | } |
| 2164 | |
John Ogness | 002eb6a | 2021-07-15 21:39:55 +0206 | [diff] [blame] | 2165 | ret = text_len; |
| 2166 | goto out; |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2167 | } |
| 2168 | } |
| 2169 | |
| 2170 | /* |
| 2171 | * Explicitly initialize the record before every prb_reserve() call. |
| 2172 | * prb_reserve_in_last() and prb_reserve() purposely invalidate the |
| 2173 | * structure when they fail. |
| 2174 | */ |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2175 | prb_rec_init_wr(&r, reserve_size); |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2176 | if (!prb_reserve(&e, prb, &r)) { |
| 2177 | /* truncate the message if it is too long for empty buffer */ |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2178 | truncate_msg(&reserve_size, &trunc_msg_len); |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2179 | |
John Ogness | b031a68 | 2020-12-09 01:50:53 +0106 | [diff] [blame] | 2180 | prb_rec_init_wr(&r, reserve_size + trunc_msg_len); |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2181 | if (!prb_reserve(&e, prb, &r)) |
John Ogness | 002eb6a | 2021-07-15 21:39:55 +0206 | [diff] [blame] | 2182 | goto out; |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2183 | } |
| 2184 | |
| 2185 | /* fill message */ |
Chris Down | a1ad4b8 | 2021-06-15 17:52:48 +0100 | [diff] [blame] | 2186 | text_len = printk_sprint(&r.text_buf[0], reserve_size, facility, &flags, fmt, args); |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2187 | if (trunc_msg_len) |
| 2188 | memcpy(&r.text_buf[text_len], trunc_msg, trunc_msg_len); |
| 2189 | r.info->text_len = text_len + trunc_msg_len; |
| 2190 | r.info->facility = facility; |
| 2191 | r.info->level = level & 7; |
Chris Down | a1ad4b8 | 2021-06-15 17:52:48 +0100 | [diff] [blame] | 2192 | r.info->flags = flags & 0x1f; |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2193 | r.info->ts_nsec = ts_nsec; |
| 2194 | r.info->caller_id = caller_id; |
| 2195 | if (dev_info) |
| 2196 | memcpy(&r.info->dev_info, dev_info, sizeof(r.info->dev_info)); |
| 2197 | |
| 2198 | /* A message without a trailing newline can be continued. */ |
Chris Down | a1ad4b8 | 2021-06-15 17:52:48 +0100 | [diff] [blame] | 2199 | if (!(flags & LOG_NEWLINE)) |
John Ogness | 6b91670 | 2020-12-09 01:50:52 +0106 | [diff] [blame] | 2200 | prb_commit(&e); |
| 2201 | else |
| 2202 | prb_final_commit(&e); |
| 2203 | |
John Ogness | 002eb6a | 2021-07-15 21:39:55 +0206 | [diff] [blame] | 2204 | ret = text_len + trunc_msg_len; |
| 2205 | out: |
| 2206 | printk_exit_irqrestore(recursion_ptr, irqflags); |
| 2207 | return ret; |
Petr Mladek | ba55239 | 2018-06-27 16:08:15 +0200 | [diff] [blame] | 2208 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2209 | |
Petr Mladek | ba55239 | 2018-06-27 16:08:15 +0200 | [diff] [blame] | 2210 | asmlinkage int vprintk_emit(int facility, int level, |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 2211 | const struct dev_printk_info *dev_info, |
Petr Mladek | ba55239 | 2018-06-27 16:08:15 +0200 | [diff] [blame] | 2212 | const char *fmt, va_list args) |
| 2213 | { |
| 2214 | int printed_len; |
John Ogness | 8749efc | 2020-07-09 15:29:43 +0206 | [diff] [blame] | 2215 | bool in_sched = false; |
Petr Mladek | ba55239 | 2018-06-27 16:08:15 +0200 | [diff] [blame] | 2216 | |
Feng Tang | c39ea0b | 2019-05-14 15:45:34 -0700 | [diff] [blame] | 2217 | /* Suppress unimportant messages after panic happens */ |
| 2218 | if (unlikely(suppress_printk)) |
| 2219 | return 0; |
| 2220 | |
Petr Mladek | ba55239 | 2018-06-27 16:08:15 +0200 | [diff] [blame] | 2221 | if (level == LOGLEVEL_SCHED) { |
| 2222 | level = LOGLEVEL_DEFAULT; |
| 2223 | in_sched = true; |
| 2224 | } |
| 2225 | |
| 2226 | boot_delay_msec(level); |
| 2227 | printk_delay(); |
| 2228 | |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 2229 | printed_len = vprintk_store(facility, level, dev_info, fmt, args); |
Jan Kara | 939f04b | 2014-06-04 16:11:37 -0700 | [diff] [blame] | 2230 | |
Steven Rostedt | 458df9f | 2014-06-04 16:11:38 -0700 | [diff] [blame] | 2231 | /* If called from the scheduler, we can not call up(). */ |
John Ogness | 8749efc | 2020-07-09 15:29:43 +0206 | [diff] [blame] | 2232 | if (!in_sched) { |
Jan Kara | 5874af2 | 2014-08-06 16:09:10 -0700 | [diff] [blame] | 2233 | /* |
Sergey Senozhatsky | fd5f7cd | 2018-01-16 13:47:16 +0900 | [diff] [blame] | 2234 | * Disable preemption to avoid being preempted while holding |
| 2235 | * console_sem which would prevent anyone from printing to |
| 2236 | * console |
| 2237 | */ |
| 2238 | preempt_disable(); |
| 2239 | /* |
Andrew Morton | d18bbc2 | 2014-07-02 15:22:38 -0700 | [diff] [blame] | 2240 | * Try to acquire and then immediately release the console |
| 2241 | * semaphore. The release will print out buffers and wake up |
| 2242 | * /dev/kmsg and syslog() users. |
| 2243 | */ |
Petr Mladek | c162d5b | 2018-01-12 17:08:37 +0100 | [diff] [blame] | 2244 | if (console_trylock_spinning()) |
Andrew Morton | d18bbc2 | 2014-07-02 15:22:38 -0700 | [diff] [blame] | 2245 | console_unlock(); |
Sergey Senozhatsky | fd5f7cd | 2018-01-16 13:47:16 +0900 | [diff] [blame] | 2246 | preempt_enable(); |
Andrew Morton | d18bbc2 | 2014-07-02 15:22:38 -0700 | [diff] [blame] | 2247 | } |
Steven Rostedt | 458df9f | 2014-06-04 16:11:38 -0700 | [diff] [blame] | 2248 | |
John Ogness | 8749efc | 2020-07-09 15:29:43 +0206 | [diff] [blame] | 2249 | wake_up_klogd(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2250 | return printed_len; |
| 2251 | } |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2252 | EXPORT_SYMBOL(vprintk_emit); |
| 2253 | |
Linus Torvalds | a0cba21 | 2016-08-09 10:48:18 -0700 | [diff] [blame] | 2254 | int vprintk_default(const char *fmt, va_list args) |
Steven Rostedt (Red Hat) | afdc34a | 2014-06-19 17:33:31 -0400 | [diff] [blame] | 2255 | { |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 2256 | return vprintk_emit(0, LOGLEVEL_DEFAULT, NULL, fmt, args); |
Steven Rostedt (Red Hat) | afdc34a | 2014-06-19 17:33:31 -0400 | [diff] [blame] | 2257 | } |
| 2258 | EXPORT_SYMBOL_GPL(vprintk_default); |
| 2259 | |
Chris Down | 3370155 | 2021-06-15 17:52:53 +0100 | [diff] [blame] | 2260 | asmlinkage __visible int _printk(const char *fmt, ...) |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2261 | { |
| 2262 | va_list args; |
| 2263 | int r; |
| 2264 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2265 | va_start(args, fmt); |
Rasmus Villemoes | 28e1745 | 2021-03-23 15:42:01 +0100 | [diff] [blame] | 2266 | r = vprintk(fmt, args); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2267 | va_end(args); |
| 2268 | |
| 2269 | return r; |
| 2270 | } |
Chris Down | 3370155 | 2021-06-15 17:52:53 +0100 | [diff] [blame] | 2271 | EXPORT_SYMBOL(_printk); |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 2272 | |
Kay Sievers | 96efedf | 2012-07-16 18:35:29 -0700 | [diff] [blame] | 2273 | #else /* CONFIG_PRINTK */ |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 2274 | |
John Ogness | cf5b020 | 2021-03-03 11:15:20 +0100 | [diff] [blame] | 2275 | #define CONSOLE_LOG_MAX 0 |
Tetsuo Handa | e80c1a9 | 2018-12-04 19:00:01 +0900 | [diff] [blame] | 2276 | #define printk_time false |
Alex Elder | 249771b | 2014-08-06 16:09:08 -0700 | [diff] [blame] | 2277 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 2278 | #define prb_read_valid(rb, seq, r) false |
| 2279 | #define prb_first_valid_seq(rb) 0 |
| 2280 | |
Kay Sievers | 96efedf | 2012-07-16 18:35:29 -0700 | [diff] [blame] | 2281 | static u64 syslog_seq; |
Kay Sievers | eab0726 | 2012-07-16 18:35:30 -0700 | [diff] [blame] | 2282 | static u64 console_seq; |
Petr Mladek | f92b070 | 2018-09-13 14:34:06 +0200 | [diff] [blame] | 2283 | static u64 exclusive_console_stop_seq; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 2284 | static unsigned long console_dropped; |
| 2285 | |
| 2286 | static size_t record_print_text(const struct printk_record *r, |
| 2287 | bool syslog, bool time) |
| 2288 | { |
| 2289 | return 0; |
| 2290 | } |
| 2291 | static ssize_t info_print_ext_header(char *buf, size_t size, |
| 2292 | struct printk_info *info) |
| 2293 | { |
| 2294 | return 0; |
| 2295 | } |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 2296 | static ssize_t msg_print_ext_body(char *buf, size_t size, |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 2297 | char *text, size_t text_len, |
| 2298 | struct dev_printk_info *dev_info) { return 0; } |
Petr Mladek | c162d5b | 2018-01-12 17:08:37 +0100 | [diff] [blame] | 2299 | static void console_lock_spinning_enable(void) { } |
| 2300 | static int console_lock_spinning_disable_and_check(void) { return 0; } |
Sergey Senozhatsky | d9c2352 | 2016-12-24 23:09:01 +0900 | [diff] [blame] | 2301 | static void call_console_drivers(const char *ext_text, size_t ext_len, |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 2302 | const char *text, size_t len) {} |
Petr Mladek | a6ae928 | 2018-09-10 15:52:06 +0200 | [diff] [blame] | 2303 | static bool suppress_message_printing(int level) { return false; } |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 2304 | |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 2305 | #endif /* CONFIG_PRINTK */ |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 2306 | |
Thomas Gleixner | d0380e6 | 2013-04-29 16:17:18 -0700 | [diff] [blame] | 2307 | #ifdef CONFIG_EARLY_PRINTK |
| 2308 | struct console *early_console; |
| 2309 | |
Andi Kleen | 722a9f9 | 2014-05-02 00:44:38 +0200 | [diff] [blame] | 2310 | asmlinkage __visible void early_printk(const char *fmt, ...) |
Thomas Gleixner | d0380e6 | 2013-04-29 16:17:18 -0700 | [diff] [blame] | 2311 | { |
| 2312 | va_list ap; |
Joe Perches | 1dc6244 | 2014-12-10 15:45:53 -0800 | [diff] [blame] | 2313 | char buf[512]; |
| 2314 | int n; |
| 2315 | |
| 2316 | if (!early_console) |
| 2317 | return; |
Thomas Gleixner | d0380e6 | 2013-04-29 16:17:18 -0700 | [diff] [blame] | 2318 | |
| 2319 | va_start(ap, fmt); |
Joe Perches | 1dc6244 | 2014-12-10 15:45:53 -0800 | [diff] [blame] | 2320 | n = vscnprintf(buf, sizeof(buf), fmt, ap); |
Thomas Gleixner | d0380e6 | 2013-04-29 16:17:18 -0700 | [diff] [blame] | 2321 | va_end(ap); |
Joe Perches | 1dc6244 | 2014-12-10 15:45:53 -0800 | [diff] [blame] | 2322 | |
| 2323 | early_console->write(early_console, buf, n); |
Thomas Gleixner | d0380e6 | 2013-04-29 16:17:18 -0700 | [diff] [blame] | 2324 | } |
| 2325 | #endif |
| 2326 | |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 2327 | static int __add_preferred_console(char *name, int idx, char *options, |
Benjamin Herrenschmidt | e369d82 | 2020-02-13 10:51:32 +0100 | [diff] [blame] | 2328 | char *brl_options, bool user_specified) |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 2329 | { |
| 2330 | struct console_cmdline *c; |
| 2331 | int i; |
| 2332 | |
| 2333 | /* |
| 2334 | * See if this tty is not yet registered, and |
| 2335 | * if we have a slot free. |
| 2336 | */ |
Petr Mladek | dac8bbb | 2017-06-08 12:01:30 +0200 | [diff] [blame] | 2337 | for (i = 0, c = console_cmdline; |
| 2338 | i < MAX_CMDLINECONSOLES && c->name[0]; |
| 2339 | i++, c++) { |
Joe Perches | 2347540 | 2013-07-31 13:53:46 -0700 | [diff] [blame] | 2340 | if (strcmp(c->name, name) == 0 && c->index == idx) { |
Petr Mladek | dac8bbb | 2017-06-08 12:01:30 +0200 | [diff] [blame] | 2341 | if (!brl_options) |
| 2342 | preferred_console = i; |
Benjamin Herrenschmidt | e369d82 | 2020-02-13 10:51:32 +0100 | [diff] [blame] | 2343 | if (user_specified) |
| 2344 | c->user_specified = true; |
Joe Perches | 2347540 | 2013-07-31 13:53:46 -0700 | [diff] [blame] | 2345 | return 0; |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 2346 | } |
Joe Perches | 2347540 | 2013-07-31 13:53:46 -0700 | [diff] [blame] | 2347 | } |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 2348 | if (i == MAX_CMDLINECONSOLES) |
| 2349 | return -E2BIG; |
| 2350 | if (!brl_options) |
Aleksey Makarov | ad86ee2 | 2017-03-15 13:28:51 +0300 | [diff] [blame] | 2351 | preferred_console = i; |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 2352 | strlcpy(c->name, name, sizeof(c->name)); |
| 2353 | c->options = options; |
Benjamin Herrenschmidt | e369d82 | 2020-02-13 10:51:32 +0100 | [diff] [blame] | 2354 | c->user_specified = user_specified; |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 2355 | braille_set_options(c, brl_options); |
| 2356 | |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 2357 | c->index = idx; |
| 2358 | return 0; |
| 2359 | } |
Sergey Senozhatsky | cca10d5 | 2017-12-21 14:41:49 +0900 | [diff] [blame] | 2360 | |
| 2361 | static int __init console_msg_format_setup(char *str) |
| 2362 | { |
| 2363 | if (!strcmp(str, "syslog")) |
| 2364 | console_msg_format = MSG_FORMAT_SYSLOG; |
| 2365 | if (!strcmp(str, "default")) |
| 2366 | console_msg_format = MSG_FORMAT_DEFAULT; |
| 2367 | return 1; |
| 2368 | } |
| 2369 | __setup("console_msg_format=", console_msg_format_setup); |
| 2370 | |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 2371 | /* |
Alex Elder | 0b90fec | 2014-08-06 16:09:03 -0700 | [diff] [blame] | 2372 | * Set up a console. Called via do_early_param() in init/main.c |
| 2373 | * for each "console=" parameter in the boot command line. |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 2374 | */ |
| 2375 | static int __init console_setup(char *str) |
| 2376 | { |
Alex Elder | 0b90fec | 2014-08-06 16:09:03 -0700 | [diff] [blame] | 2377 | char buf[sizeof(console_cmdline[0].name) + 4]; /* 4 for "ttyS" */ |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 2378 | char *s, *options, *brl_options = NULL; |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 2379 | int idx; |
| 2380 | |
Petr Mladek | 3cffa06 | 2020-11-11 14:54:50 +0100 | [diff] [blame] | 2381 | /* |
| 2382 | * console="" or console=null have been suggested as a way to |
| 2383 | * disable console output. Use ttynull that has been created |
Bhaskar Chowdhury | acebb55 | 2021-03-28 10:09:32 +0530 | [diff] [blame] | 2384 | * for exactly this purpose. |
Petr Mladek | 3cffa06 | 2020-11-11 14:54:50 +0100 | [diff] [blame] | 2385 | */ |
| 2386 | if (str[0] == 0 || strcmp(str, "null") == 0) { |
| 2387 | __add_preferred_console("ttynull", 0, NULL, NULL, true); |
Shreyas Joshi | 48021f9 | 2020-05-22 16:53:06 +1000 | [diff] [blame] | 2388 | return 1; |
Petr Mladek | 3cffa06 | 2020-11-11 14:54:50 +0100 | [diff] [blame] | 2389 | } |
Shreyas Joshi | 48021f9 | 2020-05-22 16:53:06 +1000 | [diff] [blame] | 2390 | |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 2391 | if (_braille_console_setup(&str, &brl_options)) |
| 2392 | return 1; |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 2393 | |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 2394 | /* |
| 2395 | * Decode str into name, index, options. |
| 2396 | */ |
| 2397 | if (str[0] >= '0' && str[0] <= '9') { |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 2398 | strcpy(buf, "ttyS"); |
| 2399 | strncpy(buf + 4, str, sizeof(buf) - 5); |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 2400 | } else { |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 2401 | strncpy(buf, str, sizeof(buf) - 1); |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 2402 | } |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 2403 | buf[sizeof(buf) - 1] = 0; |
Alex Elder | 249771b | 2014-08-06 16:09:08 -0700 | [diff] [blame] | 2404 | options = strchr(str, ','); |
| 2405 | if (options) |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 2406 | *(options++) = 0; |
| 2407 | #ifdef __sparc__ |
| 2408 | if (!strcmp(str, "ttya")) |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 2409 | strcpy(buf, "ttyS0"); |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 2410 | if (!strcmp(str, "ttyb")) |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 2411 | strcpy(buf, "ttyS1"); |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 2412 | #endif |
Yinghai Lu | eaa944a | 2007-07-15 23:37:27 -0700 | [diff] [blame] | 2413 | for (s = buf; *s; s++) |
Alex Elder | 249771b | 2014-08-06 16:09:08 -0700 | [diff] [blame] | 2414 | if (isdigit(*s) || *s == ',') |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 2415 | break; |
| 2416 | idx = simple_strtoul(s, NULL, 10); |
| 2417 | *s = 0; |
| 2418 | |
Benjamin Herrenschmidt | e369d82 | 2020-02-13 10:51:32 +0100 | [diff] [blame] | 2419 | __add_preferred_console(buf, idx, options, brl_options, true); |
Markus Armbruster | 9e124fe | 2008-05-26 23:31:07 +0100 | [diff] [blame] | 2420 | console_set_on_cmdline = 1; |
John Z. Bohach | 2ea1c53 | 2006-03-24 03:18:19 -0800 | [diff] [blame] | 2421 | return 1; |
| 2422 | } |
| 2423 | __setup("console=", console_setup); |
| 2424 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | /** |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 2426 | * add_preferred_console - add a device to the list of preferred consoles. |
Martin Waitz | ddad86c | 2005-11-13 16:08:14 -0800 | [diff] [blame] | 2427 | * @name: device name |
| 2428 | * @idx: device index |
| 2429 | * @options: options for this console |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 2430 | * |
| 2431 | * The last preferred console added will be used for kernel messages |
| 2432 | * and stdin/out/err for init. Normally this is used by console_setup |
| 2433 | * above to handle user-supplied console arguments; however it can also |
| 2434 | * be used by arch-specific code either to override the user or more |
| 2435 | * commonly to provide a default console (ie from PROM variables) when |
| 2436 | * the user has not supplied one. |
| 2437 | */ |
David S. Miller | fb445ee | 2007-12-29 01:19:49 -0800 | [diff] [blame] | 2438 | int add_preferred_console(char *name, int idx, char *options) |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 2439 | { |
Benjamin Herrenschmidt | e369d82 | 2020-02-13 10:51:32 +0100 | [diff] [blame] | 2440 | return __add_preferred_console(name, idx, options, NULL, false); |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 2441 | } |
| 2442 | |
Neil Zhang | d25d9fe | 2014-08-06 16:09:12 -0700 | [diff] [blame] | 2443 | bool console_suspend_enabled = true; |
Andres Salomon | 8f4ce8c | 2007-10-18 03:04:50 -0700 | [diff] [blame] | 2444 | EXPORT_SYMBOL(console_suspend_enabled); |
| 2445 | |
| 2446 | static int __init console_suspend_disable(char *str) |
| 2447 | { |
Neil Zhang | d25d9fe | 2014-08-06 16:09:12 -0700 | [diff] [blame] | 2448 | console_suspend_enabled = false; |
Andres Salomon | 8f4ce8c | 2007-10-18 03:04:50 -0700 | [diff] [blame] | 2449 | return 1; |
| 2450 | } |
| 2451 | __setup("no_console_suspend", console_suspend_disable); |
Yanmin Zhang | 134620f | 2011-10-31 17:11:27 -0700 | [diff] [blame] | 2452 | module_param_named(console_suspend, console_suspend_enabled, |
| 2453 | bool, S_IRUGO | S_IWUSR); |
| 2454 | MODULE_PARM_DESC(console_suspend, "suspend console during suspend" |
| 2455 | " and hibernate operations"); |
Andres Salomon | 8f4ce8c | 2007-10-18 03:04:50 -0700 | [diff] [blame] | 2456 | |
Dmitry Safonov | 10102a8 | 2021-07-27 14:06:35 +0100 | [diff] [blame] | 2457 | static bool printk_console_no_auto_verbose; |
| 2458 | |
| 2459 | void console_verbose(void) |
| 2460 | { |
| 2461 | if (console_loglevel && !printk_console_no_auto_verbose) |
| 2462 | console_loglevel = CONSOLE_LOGLEVEL_MOTORMOUTH; |
| 2463 | } |
| 2464 | EXPORT_SYMBOL_GPL(console_verbose); |
| 2465 | |
| 2466 | module_param_named(console_no_auto_verbose, printk_console_no_auto_verbose, bool, 0644); |
| 2467 | MODULE_PARM_DESC(console_no_auto_verbose, "Disable console loglevel raise to highest on oops/panic/etc"); |
| 2468 | |
Matt Mackall | 3c0547b | 2005-05-16 21:53:47 -0700 | [diff] [blame] | 2469 | /** |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 2470 | * suspend_console - suspend the console subsystem |
| 2471 | * |
| 2472 | * This disables printk() while we go into suspend states |
| 2473 | */ |
| 2474 | void suspend_console(void) |
| 2475 | { |
Andres Salomon | 8f4ce8c | 2007-10-18 03:04:50 -0700 | [diff] [blame] | 2476 | if (!console_suspend_enabled) |
| 2477 | return; |
Tomeu Vizoso | 47319f7 | 2018-03-22 14:58:33 +0100 | [diff] [blame] | 2478 | pr_info("Suspending console(s) (use no_console_suspend to debug)\n"); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2479 | console_lock(); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 2480 | console_suspended = 1; |
Jan Kara | bd8d7cf | 2014-06-04 16:11:36 -0700 | [diff] [blame] | 2481 | up_console_sem(); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 2482 | } |
| 2483 | |
| 2484 | void resume_console(void) |
| 2485 | { |
Andres Salomon | 8f4ce8c | 2007-10-18 03:04:50 -0700 | [diff] [blame] | 2486 | if (!console_suspend_enabled) |
| 2487 | return; |
Jan Kara | bd8d7cf | 2014-06-04 16:11:36 -0700 | [diff] [blame] | 2488 | down_console_sem(); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 2489 | console_suspended = 0; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2490 | console_unlock(); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 2491 | } |
| 2492 | |
| 2493 | /** |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 2494 | * console_cpu_notify - print deferred console messages after CPU hotplug |
Sebastian Andrzej Siewior | 90b1488 | 2016-11-03 15:49:58 +0100 | [diff] [blame] | 2495 | * @cpu: unused |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 2496 | * |
| 2497 | * If printk() is called from a CPU that is not online yet, the messages |
Sergey Senozhatsky | 64ca752 | 2017-01-21 19:47:29 +0900 | [diff] [blame] | 2498 | * will be printed on the console only if there are CON_ANYTIME consoles. |
| 2499 | * This function is called when a new CPU comes online (or fails to come |
| 2500 | * up) or goes offline. |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 2501 | */ |
Sebastian Andrzej Siewior | 90b1488 | 2016-11-03 15:49:58 +0100 | [diff] [blame] | 2502 | static int console_cpu_notify(unsigned int cpu) |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 2503 | { |
Thomas Gleixner | f97960f | 2016-11-17 17:31:55 +0100 | [diff] [blame] | 2504 | if (!cpuhp_tasks_frozen) { |
Sergey Senozhatsky | 64ca752 | 2017-01-21 19:47:29 +0900 | [diff] [blame] | 2505 | /* If trylock fails, someone else is doing the printing */ |
| 2506 | if (console_trylock()) |
| 2507 | console_unlock(); |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 2508 | } |
Sebastian Andrzej Siewior | 90b1488 | 2016-11-03 15:49:58 +0100 | [diff] [blame] | 2509 | return 0; |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 2510 | } |
| 2511 | |
| 2512 | /** |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2513 | * console_lock - lock the console system for exclusive use. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2514 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2515 | * Acquires a lock which guarantees that the caller has |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2516 | * exclusive access to the console system and the console_drivers list. |
| 2517 | * |
| 2518 | * Can sleep, returns nothing. |
| 2519 | */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2520 | void console_lock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2521 | { |
Daniel Vetter | 6b898c0 | 2012-09-17 23:03:31 +0000 | [diff] [blame] | 2522 | might_sleep(); |
| 2523 | |
Jan Kara | bd8d7cf | 2014-06-04 16:11:36 -0700 | [diff] [blame] | 2524 | down_console_sem(); |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 2525 | if (console_suspended) |
| 2526 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2527 | console_locked = 1; |
| 2528 | console_may_schedule = 1; |
| 2529 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2530 | EXPORT_SYMBOL(console_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2531 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2532 | /** |
| 2533 | * console_trylock - try to lock the console system for exclusive use. |
| 2534 | * |
Alex Elder | 0b90fec | 2014-08-06 16:09:03 -0700 | [diff] [blame] | 2535 | * Try to acquire a lock which guarantees that the caller has exclusive |
| 2536 | * access to the console system and the console_drivers list. |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2537 | * |
| 2538 | * returns 1 on success, and 0 on failure to acquire the lock. |
| 2539 | */ |
| 2540 | int console_trylock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2541 | { |
Jan Kara | bd8d7cf | 2014-06-04 16:11:36 -0700 | [diff] [blame] | 2542 | if (down_trylock_console_sem()) |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2543 | return 0; |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 2544 | if (console_suspended) { |
Jan Kara | bd8d7cf | 2014-06-04 16:11:36 -0700 | [diff] [blame] | 2545 | up_console_sem(); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2546 | return 0; |
Arve Hjønnevåg | 403f307 | 2009-02-14 02:07:24 +0100 | [diff] [blame] | 2547 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2548 | console_locked = 1; |
Sergey Senozhatsky | fd5f7cd | 2018-01-16 13:47:16 +0900 | [diff] [blame] | 2549 | console_may_schedule = 0; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2550 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2551 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2552 | EXPORT_SYMBOL(console_trylock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2553 | |
| 2554 | int is_console_locked(void) |
| 2555 | { |
| 2556 | return console_locked; |
| 2557 | } |
Hans de Goede | d48de54 | 2018-06-28 15:20:27 +0200 | [diff] [blame] | 2558 | EXPORT_SYMBOL(is_console_locked); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2559 | |
Sergey Senozhatsky | a819937 | 2016-03-17 14:21:20 -0700 | [diff] [blame] | 2560 | /* |
| 2561 | * Check if we have any console that is capable of printing while cpu is |
| 2562 | * booting or shutting down. Requires console_sem. |
| 2563 | */ |
| 2564 | static int have_callable_console(void) |
| 2565 | { |
| 2566 | struct console *con; |
| 2567 | |
| 2568 | for_each_console(con) |
Sergey Senozhatsky | adaf659 | 2016-03-17 14:21:27 -0700 | [diff] [blame] | 2569 | if ((con->flags & CON_ENABLED) && |
| 2570 | (con->flags & CON_ANYTIME)) |
Sergey Senozhatsky | a819937 | 2016-03-17 14:21:20 -0700 | [diff] [blame] | 2571 | return 1; |
| 2572 | |
| 2573 | return 0; |
| 2574 | } |
| 2575 | |
| 2576 | /* |
| 2577 | * Can we actually use the console at this time on this cpu? |
| 2578 | * |
| 2579 | * Console drivers may assume that per-cpu resources have been allocated. So |
| 2580 | * unless they're explicitly marked as being able to cope (CON_ANYTIME) don't |
| 2581 | * call them until this CPU is officially up. |
| 2582 | */ |
| 2583 | static inline int can_use_console(void) |
| 2584 | { |
| 2585 | return cpu_online(raw_smp_processor_id()) || have_callable_console(); |
| 2586 | } |
| 2587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2588 | /** |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2589 | * console_unlock - unlock the console system |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2590 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2591 | * Releases the console_lock which the caller holds on the console system |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2592 | * and the console driver list. |
| 2593 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2594 | * While the console_lock was held, console output may have been buffered |
| 2595 | * by printk(). If this is the case, console_unlock(); emits |
| 2596 | * the output prior to releasing the lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2597 | * |
Kay Sievers | 7f3a781 | 2012-05-09 01:37:51 +0200 | [diff] [blame] | 2598 | * If there is output waiting, we wake /dev/kmsg and syslog() users. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2599 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2600 | * console_unlock(); may be called from any context. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2601 | */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2602 | void console_unlock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2603 | { |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 2604 | static char ext_text[CONSOLE_EXT_LOG_MAX]; |
John Ogness | cf5b020 | 2021-03-03 11:15:20 +0100 | [diff] [blame] | 2605 | static char text[CONSOLE_LOG_MAX]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2606 | unsigned long flags; |
Tejun Heo | 8d91f8b | 2016-01-15 16:58:24 -0800 | [diff] [blame] | 2607 | bool do_cond_resched, retry; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 2608 | struct printk_info info; |
| 2609 | struct printk_record r; |
Petr Mladek | 11e4b63 | 2021-07-02 17:06:57 +0200 | [diff] [blame] | 2610 | u64 __maybe_unused next_seq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2611 | |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 2612 | if (console_suspended) { |
Jan Kara | bd8d7cf | 2014-06-04 16:11:36 -0700 | [diff] [blame] | 2613 | up_console_sem(); |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 2614 | return; |
| 2615 | } |
Antonino A. Daplas | 78944e54 | 2006-08-05 12:14:16 -0700 | [diff] [blame] | 2616 | |
John Ogness | f35efc7 | 2020-09-19 00:40:21 +0206 | [diff] [blame] | 2617 | prb_rec_init_rd(&r, &info, text, sizeof(text)); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 2618 | |
Tejun Heo | 8d91f8b | 2016-01-15 16:58:24 -0800 | [diff] [blame] | 2619 | /* |
Petr Mladek | 257ab44 | 2017-03-24 17:14:05 +0100 | [diff] [blame] | 2620 | * Console drivers are called with interrupts disabled, so |
Tejun Heo | 8d91f8b | 2016-01-15 16:58:24 -0800 | [diff] [blame] | 2621 | * @console_may_schedule should be cleared before; however, we may |
| 2622 | * end up dumping a lot of lines, for example, if called from |
| 2623 | * console registration path, and should invoke cond_resched() |
| 2624 | * between lines if allowable. Not doing so can cause a very long |
| 2625 | * scheduling stall on a slow console leading to RCU stall and |
| 2626 | * softlockup warnings which exacerbate the issue with more |
| 2627 | * messages practically incapacitating the system. |
Petr Mladek | 257ab44 | 2017-03-24 17:14:05 +0100 | [diff] [blame] | 2628 | * |
| 2629 | * console_trylock() is not able to detect the preemptive |
| 2630 | * context reliably. Therefore the value must be stored before |
Randy Dunlap | 547bbf7 | 2020-08-06 20:32:27 -0700 | [diff] [blame] | 2631 | * and cleared after the "again" goto label. |
Tejun Heo | 8d91f8b | 2016-01-15 16:58:24 -0800 | [diff] [blame] | 2632 | */ |
| 2633 | do_cond_resched = console_may_schedule; |
Petr Mladek | 257ab44 | 2017-03-24 17:14:05 +0100 | [diff] [blame] | 2634 | again: |
Antonino A. Daplas | 78944e54 | 2006-08-05 12:14:16 -0700 | [diff] [blame] | 2635 | console_may_schedule = 0; |
| 2636 | |
Sergey Senozhatsky | a819937 | 2016-03-17 14:21:20 -0700 | [diff] [blame] | 2637 | /* |
| 2638 | * We released the console_sem lock, so we need to recheck if |
| 2639 | * cpu is online and (if not) is there at least one CON_ANYTIME |
| 2640 | * console. |
| 2641 | */ |
| 2642 | if (!can_use_console()) { |
| 2643 | console_locked = 0; |
| 2644 | up_console_sem(); |
| 2645 | return; |
| 2646 | } |
| 2647 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2648 | for (;;) { |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 2649 | size_t ext_len = 0; |
John Ogness | 93d102f | 2021-07-15 21:39:56 +0206 | [diff] [blame] | 2650 | int handover; |
Kay Sievers | 3ce9a7c | 2012-05-13 23:30:46 +0200 | [diff] [blame] | 2651 | size_t len; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2652 | |
Kay Sievers | 084681d | 2012-06-28 09:38:53 +0200 | [diff] [blame] | 2653 | skip: |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 2654 | if (!prb_read_valid(prb, console_seq, &r)) |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2655 | break; |
| 2656 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 2657 | if (console_seq != r.info->seq) { |
| 2658 | console_dropped += r.info->seq - console_seq; |
| 2659 | console_seq = r.info->seq; |
| 2660 | } |
| 2661 | |
| 2662 | if (suppress_message_printing(r.info->level)) { |
Kay Sievers | 084681d | 2012-06-28 09:38:53 +0200 | [diff] [blame] | 2663 | /* |
Petr Mladek | a6ae928 | 2018-09-10 15:52:06 +0200 | [diff] [blame] | 2664 | * Skip record we have buffered and already printed |
| 2665 | * directly to the console when we received it, and |
| 2666 | * record that has level above the console loglevel. |
Kay Sievers | 084681d | 2012-06-28 09:38:53 +0200 | [diff] [blame] | 2667 | */ |
Kay Sievers | 084681d | 2012-06-28 09:38:53 +0200 | [diff] [blame] | 2668 | console_seq++; |
| 2669 | goto skip; |
| 2670 | } |
Kay Sievers | 649e6ee | 2012-05-10 04:30:45 +0200 | [diff] [blame] | 2671 | |
Petr Mladek | f92b070 | 2018-09-13 14:34:06 +0200 | [diff] [blame] | 2672 | /* Output to all consoles once old messages replayed. */ |
| 2673 | if (unlikely(exclusive_console && |
| 2674 | console_seq >= exclusive_console_stop_seq)) { |
| 2675 | exclusive_console = NULL; |
| 2676 | } |
| 2677 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 2678 | /* |
| 2679 | * Handle extended console text first because later |
| 2680 | * record_print_text() will modify the record buffer in-place. |
| 2681 | */ |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 2682 | if (nr_ext_console_drivers) { |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 2683 | ext_len = info_print_ext_header(ext_text, |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 2684 | sizeof(ext_text), |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 2685 | r.info); |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 2686 | ext_len += msg_print_ext_body(ext_text + ext_len, |
| 2687 | sizeof(ext_text) - ext_len, |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 2688 | &r.text_buf[0], |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 2689 | r.info->text_len, |
| 2690 | &r.info->dev_info); |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 2691 | } |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 2692 | len = record_print_text(&r, |
| 2693 | console_msg_format & MSG_FORMAT_SYSLOG, |
| 2694 | printk_time); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2695 | console_seq++; |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 2696 | |
Steven Rostedt (VMware) | dbdda84 | 2018-01-10 14:24:17 +0100 | [diff] [blame] | 2697 | /* |
| 2698 | * While actively printing out messages, if another printk() |
| 2699 | * were to occur on another CPU, it may wait for this one to |
| 2700 | * finish. This task can not be preempted if there is a |
| 2701 | * waiter waiting to take over. |
John Ogness | 93d102f | 2021-07-15 21:39:56 +0206 | [diff] [blame] | 2702 | * |
| 2703 | * Interrupts are disabled because the hand over to a waiter |
| 2704 | * must not be interrupted until the hand over is completed |
| 2705 | * (@console_waiter is cleared). |
Steven Rostedt (VMware) | dbdda84 | 2018-01-10 14:24:17 +0100 | [diff] [blame] | 2706 | */ |
John Ogness | 93d102f | 2021-07-15 21:39:56 +0206 | [diff] [blame] | 2707 | printk_safe_enter_irqsave(flags); |
Petr Mladek | c162d5b | 2018-01-12 17:08:37 +0100 | [diff] [blame] | 2708 | console_lock_spinning_enable(); |
Steven Rostedt (VMware) | dbdda84 | 2018-01-10 14:24:17 +0100 | [diff] [blame] | 2709 | |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 2710 | stop_critical_timings(); /* don't trace print latency */ |
Sergey Senozhatsky | d9c2352 | 2016-12-24 23:09:01 +0900 | [diff] [blame] | 2711 | call_console_drivers(ext_text, ext_len, text, len); |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 2712 | start_critical_timings(); |
Steven Rostedt (VMware) | dbdda84 | 2018-01-10 14:24:17 +0100 | [diff] [blame] | 2713 | |
John Ogness | 93d102f | 2021-07-15 21:39:56 +0206 | [diff] [blame] | 2714 | handover = console_lock_spinning_disable_and_check(); |
Sergey Senozhatsky | f975237 | 2016-12-27 23:16:09 +0900 | [diff] [blame] | 2715 | printk_safe_exit_irqrestore(flags); |
John Ogness | 93d102f | 2021-07-15 21:39:56 +0206 | [diff] [blame] | 2716 | if (handover) |
| 2717 | return; |
Tejun Heo | 8d91f8b | 2016-01-15 16:58:24 -0800 | [diff] [blame] | 2718 | |
| 2719 | if (do_cond_resched) |
| 2720 | cond_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2721 | } |
Steven Rostedt (VMware) | dbdda84 | 2018-01-10 14:24:17 +0100 | [diff] [blame] | 2722 | |
Petr Mladek | 11e4b63 | 2021-07-02 17:06:57 +0200 | [diff] [blame] | 2723 | /* Get consistent value of the next-to-be-used sequence number. */ |
| 2724 | next_seq = console_seq; |
Feng Tang | fe3d8ad | 2011-03-22 16:34:21 -0700 | [diff] [blame] | 2725 | |
Petr Mladek | 11e4b63 | 2021-07-02 17:06:57 +0200 | [diff] [blame] | 2726 | console_locked = 0; |
Jan Kara | bd8d7cf | 2014-06-04 16:11:36 -0700 | [diff] [blame] | 2727 | up_console_sem(); |
Peter Zijlstra | 4f2a8d3 | 2011-06-22 11:20:09 +0200 | [diff] [blame] | 2728 | |
| 2729 | /* |
| 2730 | * Someone could have filled up the buffer again, so re-check if there's |
| 2731 | * something to flush. In case we cannot trylock the console_sem again, |
| 2732 | * there's a new owner and the console_unlock() from them will do the |
| 2733 | * flush, no worries. |
| 2734 | */ |
Petr Mladek | 11e4b63 | 2021-07-02 17:06:57 +0200 | [diff] [blame] | 2735 | retry = prb_read_valid(prb, next_seq, NULL); |
Peter Zijlstra | 4f2a8d3 | 2011-06-22 11:20:09 +0200 | [diff] [blame] | 2736 | if (retry && console_trylock()) |
| 2737 | goto again; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2738 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2739 | EXPORT_SYMBOL(console_unlock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2740 | |
Martin Waitz | ddad86c | 2005-11-13 16:08:14 -0800 | [diff] [blame] | 2741 | /** |
| 2742 | * console_conditional_schedule - yield the CPU if required |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2743 | * |
| 2744 | * If the console code is currently allowed to sleep, and |
| 2745 | * if this CPU should yield the CPU to another task, do |
| 2746 | * so here. |
| 2747 | * |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2748 | * Must be called within console_lock();. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2749 | */ |
| 2750 | void __sched console_conditional_schedule(void) |
| 2751 | { |
| 2752 | if (console_may_schedule) |
| 2753 | cond_resched(); |
| 2754 | } |
| 2755 | EXPORT_SYMBOL(console_conditional_schedule); |
| 2756 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2757 | void console_unblank(void) |
| 2758 | { |
| 2759 | struct console *c; |
| 2760 | |
| 2761 | /* |
| 2762 | * console_unblank can no longer be called in interrupt context unless |
| 2763 | * oops_in_progress is set to 1.. |
| 2764 | */ |
| 2765 | if (oops_in_progress) { |
Jan Kara | bd8d7cf | 2014-06-04 16:11:36 -0700 | [diff] [blame] | 2766 | if (down_trylock_console_sem() != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2767 | return; |
| 2768 | } else |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2769 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2770 | |
| 2771 | console_locked = 1; |
| 2772 | console_may_schedule = 0; |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2773 | for_each_console(c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2774 | if ((c->flags & CON_ENABLED) && c->unblank) |
| 2775 | c->unblank(); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2776 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2778 | |
Tejun Heo | 8d91f8b | 2016-01-15 16:58:24 -0800 | [diff] [blame] | 2779 | /** |
| 2780 | * console_flush_on_panic - flush console content on panic |
Feng Tang | de6da1e | 2019-05-17 14:31:50 -0700 | [diff] [blame] | 2781 | * @mode: flush all messages in buffer or just the pending ones |
Tejun Heo | 8d91f8b | 2016-01-15 16:58:24 -0800 | [diff] [blame] | 2782 | * |
| 2783 | * Immediately output all pending messages no matter what. |
| 2784 | */ |
Feng Tang | de6da1e | 2019-05-17 14:31:50 -0700 | [diff] [blame] | 2785 | void console_flush_on_panic(enum con_flush_mode mode) |
Tejun Heo | 8d91f8b | 2016-01-15 16:58:24 -0800 | [diff] [blame] | 2786 | { |
| 2787 | /* |
| 2788 | * If someone else is holding the console lock, trylock will fail |
| 2789 | * and may_schedule may be set. Ignore and proceed to unlock so |
| 2790 | * that messages are flushed out. As this can be called from any |
| 2791 | * context and we don't want to get preempted while flushing, |
| 2792 | * ensure may_schedule is cleared. |
| 2793 | */ |
| 2794 | console_trylock(); |
| 2795 | console_may_schedule = 0; |
Feng Tang | de6da1e | 2019-05-17 14:31:50 -0700 | [diff] [blame] | 2796 | |
John Ogness | 93d102f | 2021-07-15 21:39:56 +0206 | [diff] [blame] | 2797 | if (mode == CONSOLE_REPLAY_ALL) |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 2798 | console_seq = prb_first_valid_seq(prb); |
Tejun Heo | 8d91f8b | 2016-01-15 16:58:24 -0800 | [diff] [blame] | 2799 | console_unlock(); |
| 2800 | } |
| 2801 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2802 | /* |
| 2803 | * Return the console tty driver structure and its associated index |
| 2804 | */ |
| 2805 | struct tty_driver *console_device(int *index) |
| 2806 | { |
| 2807 | struct console *c; |
| 2808 | struct tty_driver *driver = NULL; |
| 2809 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2810 | console_lock(); |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2811 | for_each_console(c) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2812 | if (!c->device) |
| 2813 | continue; |
| 2814 | driver = c->device(c, index); |
| 2815 | if (driver) |
| 2816 | break; |
| 2817 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2818 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2819 | return driver; |
| 2820 | } |
| 2821 | |
| 2822 | /* |
| 2823 | * Prevent further output on the passed console device so that (for example) |
| 2824 | * serial drivers can disable console output before suspending a port, and can |
| 2825 | * re-enable output afterwards. |
| 2826 | */ |
| 2827 | void console_stop(struct console *console) |
| 2828 | { |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2829 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | console->flags &= ~CON_ENABLED; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2831 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2832 | } |
| 2833 | EXPORT_SYMBOL(console_stop); |
| 2834 | |
| 2835 | void console_start(struct console *console) |
| 2836 | { |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2837 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2838 | console->flags |= CON_ENABLED; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2839 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2840 | } |
| 2841 | EXPORT_SYMBOL(console_start); |
| 2842 | |
Fabio M. Di Nitto | 7bf6939 | 2011-03-22 16:34:20 -0700 | [diff] [blame] | 2843 | static int __read_mostly keep_bootcon; |
| 2844 | |
| 2845 | static int __init keep_bootcon_setup(char *str) |
| 2846 | { |
| 2847 | keep_bootcon = 1; |
Andrew Morton | 27083ba | 2013-11-12 15:08:50 -0800 | [diff] [blame] | 2848 | pr_info("debug: skip boot console de-registration.\n"); |
Fabio M. Di Nitto | 7bf6939 | 2011-03-22 16:34:20 -0700 | [diff] [blame] | 2849 | |
| 2850 | return 0; |
| 2851 | } |
| 2852 | |
| 2853 | early_param("keep_bootcon", keep_bootcon_setup); |
| 2854 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2855 | /* |
Benjamin Herrenschmidt | ad8cd1d | 2020-02-13 10:51:31 +0100 | [diff] [blame] | 2856 | * This is called by register_console() to try to match |
| 2857 | * the newly registered console with any of the ones selected |
| 2858 | * by either the command line or add_preferred_console() and |
| 2859 | * setup/enable it. |
| 2860 | * |
| 2861 | * Care need to be taken with consoles that are statically |
| 2862 | * enabled such as netconsole |
| 2863 | */ |
Petr Mladek | ed758b3 | 2021-11-22 14:26:45 +0100 | [diff] [blame] | 2864 | static int try_enable_preferred_console(struct console *newcon, |
| 2865 | bool user_specified) |
Benjamin Herrenschmidt | ad8cd1d | 2020-02-13 10:51:31 +0100 | [diff] [blame] | 2866 | { |
| 2867 | struct console_cmdline *c; |
Andy Shevchenko | bba18a1 | 2020-06-18 19:47:50 +0300 | [diff] [blame] | 2868 | int i, err; |
Benjamin Herrenschmidt | ad8cd1d | 2020-02-13 10:51:31 +0100 | [diff] [blame] | 2869 | |
| 2870 | for (i = 0, c = console_cmdline; |
| 2871 | i < MAX_CMDLINECONSOLES && c->name[0]; |
| 2872 | i++, c++) { |
Benjamin Herrenschmidt | e369d82 | 2020-02-13 10:51:32 +0100 | [diff] [blame] | 2873 | if (c->user_specified != user_specified) |
| 2874 | continue; |
Benjamin Herrenschmidt | ad8cd1d | 2020-02-13 10:51:31 +0100 | [diff] [blame] | 2875 | if (!newcon->match || |
| 2876 | newcon->match(newcon, c->name, c->index, c->options) != 0) { |
| 2877 | /* default matching */ |
| 2878 | BUILD_BUG_ON(sizeof(c->name) != sizeof(newcon->name)); |
| 2879 | if (strcmp(c->name, newcon->name) != 0) |
| 2880 | continue; |
| 2881 | if (newcon->index >= 0 && |
| 2882 | newcon->index != c->index) |
| 2883 | continue; |
| 2884 | if (newcon->index < 0) |
| 2885 | newcon->index = c->index; |
| 2886 | |
| 2887 | if (_braille_register_console(newcon, c)) |
| 2888 | return 0; |
| 2889 | |
| 2890 | if (newcon->setup && |
Andy Shevchenko | bba18a1 | 2020-06-18 19:47:50 +0300 | [diff] [blame] | 2891 | (err = newcon->setup(newcon, c->options)) != 0) |
| 2892 | return err; |
Benjamin Herrenschmidt | ad8cd1d | 2020-02-13 10:51:31 +0100 | [diff] [blame] | 2893 | } |
| 2894 | newcon->flags |= CON_ENABLED; |
Petr Mladek | f873efe | 2021-11-22 14:26:47 +0100 | [diff] [blame] | 2895 | if (i == preferred_console) |
Benjamin Herrenschmidt | ad8cd1d | 2020-02-13 10:51:31 +0100 | [diff] [blame] | 2896 | newcon->flags |= CON_CONSDEV; |
Benjamin Herrenschmidt | ad8cd1d | 2020-02-13 10:51:31 +0100 | [diff] [blame] | 2897 | return 0; |
| 2898 | } |
| 2899 | |
| 2900 | /* |
| 2901 | * Some consoles, such as pstore and netconsole, can be enabled even |
Benjamin Herrenschmidt | e369d82 | 2020-02-13 10:51:32 +0100 | [diff] [blame] | 2902 | * without matching. Accept the pre-enabled consoles only when match() |
Andy Shevchenko | 5046037 | 2020-06-18 19:47:51 +0300 | [diff] [blame] | 2903 | * and setup() had a chance to be called. |
Benjamin Herrenschmidt | ad8cd1d | 2020-02-13 10:51:31 +0100 | [diff] [blame] | 2904 | */ |
Benjamin Herrenschmidt | e369d82 | 2020-02-13 10:51:32 +0100 | [diff] [blame] | 2905 | if (newcon->flags & CON_ENABLED && c->user_specified == user_specified) |
Benjamin Herrenschmidt | ad8cd1d | 2020-02-13 10:51:31 +0100 | [diff] [blame] | 2906 | return 0; |
| 2907 | |
| 2908 | return -ENOENT; |
| 2909 | } |
| 2910 | |
Petr Mladek | ed758b3 | 2021-11-22 14:26:45 +0100 | [diff] [blame] | 2911 | /* Try to enable the console unconditionally */ |
| 2912 | static void try_enable_default_console(struct console *newcon) |
| 2913 | { |
| 2914 | if (newcon->index < 0) |
| 2915 | newcon->index = 0; |
| 2916 | |
| 2917 | if (newcon->setup && newcon->setup(newcon, NULL) != 0) |
| 2918 | return; |
| 2919 | |
| 2920 | newcon->flags |= CON_ENABLED; |
| 2921 | |
Petr Mladek | 4f54693 | 2021-11-22 14:26:48 +0100 | [diff] [blame] | 2922 | if (newcon->device) |
Petr Mladek | ed758b3 | 2021-11-22 14:26:45 +0100 | [diff] [blame] | 2923 | newcon->flags |= CON_CONSDEV; |
Petr Mladek | ed758b3 | 2021-11-22 14:26:45 +0100 | [diff] [blame] | 2924 | } |
| 2925 | |
Benjamin Herrenschmidt | ad8cd1d | 2020-02-13 10:51:31 +0100 | [diff] [blame] | 2926 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2927 | * The console driver calls this routine during kernel initialization |
| 2928 | * to register the console printing procedure with printk() and to |
| 2929 | * print any messages that were printed by the kernel before the |
| 2930 | * console driver was initialized. |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2931 | * |
| 2932 | * This can happen pretty early during the boot process (because of |
| 2933 | * early_printk) - sometimes before setup_arch() completes - be careful |
| 2934 | * of what kernel features are used - they may not be initialised yet. |
| 2935 | * |
| 2936 | * There are two types of consoles - bootconsoles (early_printk) and |
| 2937 | * "real" consoles (everything which is not a bootconsole) which are |
| 2938 | * handled differently. |
| 2939 | * - Any number of bootconsoles can be registered at any time. |
| 2940 | * - As soon as a "real" console is registered, all bootconsoles |
| 2941 | * will be unregistered automatically. |
| 2942 | * - Once a "real" console is registered, any attempt to register a |
| 2943 | * bootconsoles will be rejected |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2944 | */ |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2945 | void register_console(struct console *newcon) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2946 | { |
Petr Mladek | 5e8ba48 | 2021-11-22 14:26:49 +0100 | [diff] [blame] | 2947 | struct console *con; |
| 2948 | bool bootcon_enabled = false; |
| 2949 | bool realcon_enabled = false; |
Benjamin Herrenschmidt | ad8cd1d | 2020-02-13 10:51:31 +0100 | [diff] [blame] | 2950 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2951 | |
Petr Mladek | 5e8ba48 | 2021-11-22 14:26:49 +0100 | [diff] [blame] | 2952 | for_each_console(con) { |
| 2953 | if (WARN(con == newcon, "console '%s%d' already registered\n", |
| 2954 | con->name, con->index)) |
Andy Shevchenko | caa72c3 | 2020-02-03 15:31:25 +0200 | [diff] [blame] | 2955 | return; |
| 2956 | } |
Andreas Bießmann | 16cf48a | 2013-08-02 12:23:34 +0200 | [diff] [blame] | 2957 | |
Petr Mladek | 5e8ba48 | 2021-11-22 14:26:49 +0100 | [diff] [blame] | 2958 | for_each_console(con) { |
| 2959 | if (con->flags & CON_BOOT) |
| 2960 | bootcon_enabled = true; |
| 2961 | else |
| 2962 | realcon_enabled = true; |
Gerd Hoffmann | 69331af | 2007-05-08 00:26:49 -0700 | [diff] [blame] | 2963 | } |
| 2964 | |
Petr Mladek | 5e8ba48 | 2021-11-22 14:26:49 +0100 | [diff] [blame] | 2965 | /* Do not register boot consoles when there already is a real one. */ |
| 2966 | if (newcon->flags & CON_BOOT && realcon_enabled) { |
| 2967 | pr_info("Too late to register bootconsole %s%d\n", |
| 2968 | newcon->name, newcon->index); |
| 2969 | return; |
| 2970 | } |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 2971 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2972 | /* |
Petr Mladek | 4f54693 | 2021-11-22 14:26:48 +0100 | [diff] [blame] | 2973 | * See if we want to enable this console driver by default. |
| 2974 | * |
| 2975 | * Nope when a console is preferred by the command line, device |
| 2976 | * tree, or SPCR. |
| 2977 | * |
| 2978 | * The first real console with tty binding (driver) wins. More |
| 2979 | * consoles might get enabled before the right one is found. |
| 2980 | * |
| 2981 | * Note that a console with tty binding will have CON_CONSDEV |
| 2982 | * flag set and will be first in the list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | */ |
Petr Mladek | 4f54693 | 2021-11-22 14:26:48 +0100 | [diff] [blame] | 2984 | if (preferred_console < 0) { |
| 2985 | if (!console_drivers || !console_drivers->device || |
| 2986 | console_drivers->flags & CON_BOOT) { |
| 2987 | try_enable_default_console(newcon); |
| 2988 | } |
| 2989 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2990 | |
Benjamin Herrenschmidt | e369d82 | 2020-02-13 10:51:32 +0100 | [diff] [blame] | 2991 | /* See if this console matches one we selected on the command line */ |
Petr Mladek | ed758b3 | 2021-11-22 14:26:45 +0100 | [diff] [blame] | 2992 | err = try_enable_preferred_console(newcon, true); |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 2993 | |
Benjamin Herrenschmidt | e369d82 | 2020-02-13 10:51:32 +0100 | [diff] [blame] | 2994 | /* If not, try to match against the platform default(s) */ |
| 2995 | if (err == -ENOENT) |
Petr Mladek | ed758b3 | 2021-11-22 14:26:45 +0100 | [diff] [blame] | 2996 | err = try_enable_preferred_console(newcon, false); |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 2997 | |
Benjamin Herrenschmidt | ad8cd1d | 2020-02-13 10:51:31 +0100 | [diff] [blame] | 2998 | /* printk() messages are not printed to the Braille console. */ |
| 2999 | if (err || newcon->flags & CON_BRL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3000 | return; |
| 3001 | |
Robin Getz | 8259cf4 | 2009-07-09 13:08:37 -0400 | [diff] [blame] | 3002 | /* |
| 3003 | * If we have a bootconsole, and are switching to a real console, |
| 3004 | * don't print everything out again, since when the boot console, and |
| 3005 | * the real console are the same physical device, it's annoying to |
| 3006 | * see the beginning boot messages twice |
| 3007 | */ |
Petr Mladek | 5e8ba48 | 2021-11-22 14:26:49 +0100 | [diff] [blame] | 3008 | if (bootcon_enabled && |
| 3009 | ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV)) { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 3010 | newcon->flags &= ~CON_PRINTBUFFER; |
Petr Mladek | 5e8ba48 | 2021-11-22 14:26:49 +0100 | [diff] [blame] | 3011 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3012 | |
| 3013 | /* |
| 3014 | * Put this console in the list - keep the |
| 3015 | * preferred driver at the head of the list. |
| 3016 | */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 3017 | console_lock(); |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 3018 | if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) { |
| 3019 | newcon->next = console_drivers; |
| 3020 | console_drivers = newcon; |
| 3021 | if (newcon->next) |
| 3022 | newcon->next->flags &= ~CON_CONSDEV; |
Benjamin Herrenschmidt | 33225d7 | 2020-02-13 10:51:33 +0100 | [diff] [blame] | 3023 | /* Ensure this flag is always set for the head of the list */ |
| 3024 | newcon->flags |= CON_CONSDEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3025 | } else { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 3026 | newcon->next = console_drivers->next; |
| 3027 | console_drivers->next = newcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3028 | } |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 3029 | |
| 3030 | if (newcon->flags & CON_EXTENDED) |
Sergey Senozhatsky | 9627808 | 2018-10-02 11:38:34 +0900 | [diff] [blame] | 3031 | nr_ext_console_drivers++; |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 3032 | |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 3033 | if (newcon->flags & CON_PRINTBUFFER) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3034 | /* |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 3035 | * console_unlock(); will print out the buffered messages |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3036 | * for us. |
John Ogness | 505a27a | 2021-03-03 11:15:28 +0100 | [diff] [blame] | 3037 | * |
Feng Tang | fe3d8ad | 2011-03-22 16:34:21 -0700 | [diff] [blame] | 3038 | * We're about to replay the log buffer. Only do this to the |
| 3039 | * just-registered console to avoid excessive message spam to |
| 3040 | * the already-registered consoles. |
Sergey Senozhatsky | 884e370 | 2018-09-28 18:53:04 +0900 | [diff] [blame] | 3041 | * |
| 3042 | * Set exclusive_console with disabled interrupts to reduce |
| 3043 | * race window with eventual console_flush_on_panic() that |
| 3044 | * ignores console_lock. |
Feng Tang | fe3d8ad | 2011-03-22 16:34:21 -0700 | [diff] [blame] | 3045 | */ |
| 3046 | exclusive_console = newcon; |
Petr Mladek | f92b070 | 2018-09-13 14:34:06 +0200 | [diff] [blame] | 3047 | exclusive_console_stop_seq = console_seq; |
John Ogness | 636babd | 2021-03-03 11:15:23 +0100 | [diff] [blame] | 3048 | |
| 3049 | /* Get a consistent copy of @syslog_seq. */ |
John Ogness | b371cbb | 2021-07-15 21:39:58 +0206 | [diff] [blame] | 3050 | mutex_lock(&syslog_lock); |
John Ogness | def97da | 2019-12-19 12:59:22 +0106 | [diff] [blame] | 3051 | console_seq = syslog_seq; |
John Ogness | b371cbb | 2021-07-15 21:39:58 +0206 | [diff] [blame] | 3052 | mutex_unlock(&syslog_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3053 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 3054 | console_unlock(); |
Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 3055 | console_sysfs_notify(); |
Robin Getz | 8259cf4 | 2009-07-09 13:08:37 -0400 | [diff] [blame] | 3056 | |
| 3057 | /* |
| 3058 | * By unregistering the bootconsoles after we enable the real console |
| 3059 | * we get the "console xxx enabled" message on all the consoles - |
| 3060 | * boot consoles, real consoles, etc - this is to ensure that end |
| 3061 | * users know there might be something in the kernel's log buffer that |
| 3062 | * went to the bootconsole (that they do not see on the real console) |
| 3063 | */ |
Andrew Morton | 27083ba | 2013-11-12 15:08:50 -0800 | [diff] [blame] | 3064 | pr_info("%sconsole [%s%d] enabled\n", |
Kees Cook | 6b80239 | 2013-11-12 15:08:49 -0800 | [diff] [blame] | 3065 | (newcon->flags & CON_BOOT) ? "boot" : "" , |
| 3066 | newcon->name, newcon->index); |
Petr Mladek | 5e8ba48 | 2021-11-22 14:26:49 +0100 | [diff] [blame] | 3067 | if (bootcon_enabled && |
Fabio M. Di Nitto | 7bf6939 | 2011-03-22 16:34:20 -0700 | [diff] [blame] | 3068 | ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV) && |
| 3069 | !keep_bootcon) { |
Kees Cook | 6b80239 | 2013-11-12 15:08:49 -0800 | [diff] [blame] | 3070 | /* We need to iterate through all boot consoles, to make |
| 3071 | * sure we print everything out, before we unregister them. |
Robin Getz | 8259cf4 | 2009-07-09 13:08:37 -0400 | [diff] [blame] | 3072 | */ |
Petr Mladek | 5e8ba48 | 2021-11-22 14:26:49 +0100 | [diff] [blame] | 3073 | for_each_console(con) |
| 3074 | if (con->flags & CON_BOOT) |
| 3075 | unregister_console(con); |
Robin Getz | 8259cf4 | 2009-07-09 13:08:37 -0400 | [diff] [blame] | 3076 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3077 | } |
| 3078 | EXPORT_SYMBOL(register_console); |
| 3079 | |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 3080 | int unregister_console(struct console *console) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3081 | { |
Andy Shevchenko | 12825e6 | 2020-02-03 15:31:26 +0200 | [diff] [blame] | 3082 | struct console *con; |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 3083 | int res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3084 | |
Andrew Morton | 27083ba | 2013-11-12 15:08:50 -0800 | [diff] [blame] | 3085 | pr_info("%sconsole [%s%d] disabled\n", |
Kees Cook | 6b80239 | 2013-11-12 15:08:49 -0800 | [diff] [blame] | 3086 | (console->flags & CON_BOOT) ? "boot" : "" , |
| 3087 | console->name, console->index); |
| 3088 | |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 3089 | res = _braille_unregister_console(console); |
Andy Shevchenko | bb72e39 | 2020-02-03 15:31:28 +0200 | [diff] [blame] | 3090 | if (res < 0) |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 3091 | return res; |
Andy Shevchenko | bb72e39 | 2020-02-03 15:31:28 +0200 | [diff] [blame] | 3092 | if (res > 0) |
| 3093 | return 0; |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 3094 | |
Andy Shevchenko | bb72e39 | 2020-02-03 15:31:28 +0200 | [diff] [blame] | 3095 | res = -ENODEV; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 3096 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3097 | if (console_drivers == console) { |
| 3098 | console_drivers=console->next; |
| 3099 | res = 0; |
Andy Shevchenko | 12825e6 | 2020-02-03 15:31:26 +0200 | [diff] [blame] | 3100 | } else { |
| 3101 | for_each_console(con) { |
| 3102 | if (con->next == console) { |
| 3103 | con->next = console->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3104 | res = 0; |
| 3105 | break; |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 3106 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3107 | } |
| 3108 | } |
Jesper Juhl | 40dc565 | 2005-10-30 15:02:46 -0800 | [diff] [blame] | 3109 | |
Andy Shevchenko | e78bedb | 2020-02-03 15:31:29 +0200 | [diff] [blame] | 3110 | if (res) |
| 3111 | goto out_disable_unlock; |
| 3112 | |
| 3113 | if (console->flags & CON_EXTENDED) |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 3114 | nr_ext_console_drivers--; |
| 3115 | |
Gerd Hoffmann | 69331af | 2007-05-08 00:26:49 -0700 | [diff] [blame] | 3116 | /* |
Greg Edwards | ab4af03 | 2005-06-23 00:09:05 -0700 | [diff] [blame] | 3117 | * If this isn't the last console and it has CON_CONSDEV set, we |
| 3118 | * need to set it on the next preferred console. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3119 | */ |
Gerd Hoffmann | 69331af | 2007-05-08 00:26:49 -0700 | [diff] [blame] | 3120 | if (console_drivers != NULL && console->flags & CON_CONSDEV) |
Greg Edwards | ab4af03 | 2005-06-23 00:09:05 -0700 | [diff] [blame] | 3121 | console_drivers->flags |= CON_CONSDEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3122 | |
Stephen Chivers | 7fa21dd | 2014-05-14 08:04:39 +1000 | [diff] [blame] | 3123 | console->flags &= ~CON_ENABLED; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 3124 | console_unlock(); |
Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 3125 | console_sysfs_notify(); |
Andy Shevchenko | e78bedb | 2020-02-03 15:31:29 +0200 | [diff] [blame] | 3126 | |
Andy Shevchenko | ed31685 | 2020-02-03 15:31:30 +0200 | [diff] [blame] | 3127 | if (console->exit) |
| 3128 | res = console->exit(console); |
| 3129 | |
Andy Shevchenko | e78bedb | 2020-02-03 15:31:29 +0200 | [diff] [blame] | 3130 | return res; |
| 3131 | |
| 3132 | out_disable_unlock: |
| 3133 | console->flags &= ~CON_ENABLED; |
| 3134 | console_unlock(); |
| 3135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3136 | return res; |
| 3137 | } |
| 3138 | EXPORT_SYMBOL(unregister_console); |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 3139 | |
Thierry Reding | 81cc26f | 2016-01-15 16:58:21 -0800 | [diff] [blame] | 3140 | /* |
Nicolas Pitre | 0c68861 | 2017-04-12 18:37:14 -0400 | [diff] [blame] | 3141 | * Initialize the console device. This is called *early*, so |
| 3142 | * we can't necessarily depend on lots of kernel help here. |
| 3143 | * Just do some early initializations, and do the complex setup |
| 3144 | * later. |
| 3145 | */ |
| 3146 | void __init console_init(void) |
| 3147 | { |
Abderrahmane Benbachir | 58eacff | 2018-03-22 20:33:28 -0400 | [diff] [blame] | 3148 | int ret; |
Ard Biesheuvel | 1b1eeca | 2018-08-21 21:56:13 -0700 | [diff] [blame] | 3149 | initcall_t call; |
| 3150 | initcall_entry_t *ce; |
Nicolas Pitre | 0c68861 | 2017-04-12 18:37:14 -0400 | [diff] [blame] | 3151 | |
| 3152 | /* Setup the default TTY line discipline. */ |
| 3153 | n_tty_init(); |
| 3154 | |
| 3155 | /* |
| 3156 | * set up the console device so that later boot sequences can |
| 3157 | * inform about problems etc.. |
| 3158 | */ |
Ard Biesheuvel | 1b1eeca | 2018-08-21 21:56:13 -0700 | [diff] [blame] | 3159 | ce = __con_initcall_start; |
Abderrahmane Benbachir | 58eacff | 2018-03-22 20:33:28 -0400 | [diff] [blame] | 3160 | trace_initcall_level("console"); |
Ard Biesheuvel | 1b1eeca | 2018-08-21 21:56:13 -0700 | [diff] [blame] | 3161 | while (ce < __con_initcall_end) { |
| 3162 | call = initcall_from_entry(ce); |
| 3163 | trace_initcall_start(call); |
| 3164 | ret = call(); |
| 3165 | trace_initcall_finish(call, ret); |
| 3166 | ce++; |
Nicolas Pitre | 0c68861 | 2017-04-12 18:37:14 -0400 | [diff] [blame] | 3167 | } |
| 3168 | } |
| 3169 | |
| 3170 | /* |
Thierry Reding | 81cc26f | 2016-01-15 16:58:21 -0800 | [diff] [blame] | 3171 | * Some boot consoles access data that is in the init section and which will |
| 3172 | * be discarded after the initcalls have been run. To make sure that no code |
| 3173 | * will access this data, unregister the boot consoles in a late initcall. |
| 3174 | * |
| 3175 | * If for some reason, such as deferred probe or the driver being a loadable |
| 3176 | * module, the real console hasn't registered yet at this point, there will |
| 3177 | * be a brief interval in which no messages are logged to the console, which |
| 3178 | * makes it difficult to diagnose problems that occur during this time. |
| 3179 | * |
| 3180 | * To mitigate this problem somewhat, only unregister consoles whose memory |
Matt Redfearn | 2b1be68 | 2017-07-14 14:51:12 +0200 | [diff] [blame] | 3181 | * intersects with the init section. Note that all other boot consoles will |
Bhaskar Chowdhury | acebb55 | 2021-03-28 10:09:32 +0530 | [diff] [blame] | 3182 | * get unregistered when the real preferred console is registered. |
Thierry Reding | 81cc26f | 2016-01-15 16:58:21 -0800 | [diff] [blame] | 3183 | */ |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 3184 | static int __init printk_late_init(void) |
Robin Getz | 0c5564b | 2007-08-20 15:22:47 -0400 | [diff] [blame] | 3185 | { |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 3186 | struct console *con; |
Sebastian Andrzej Siewior | 90b1488 | 2016-11-03 15:49:58 +0100 | [diff] [blame] | 3187 | int ret; |
Robin Getz | 4d09161 | 2009-07-01 21:08:37 -0400 | [diff] [blame] | 3188 | |
| 3189 | for_each_console(con) { |
Petr Mladek | 5a81423 | 2017-07-14 14:51:13 +0200 | [diff] [blame] | 3190 | if (!(con->flags & CON_BOOT)) |
| 3191 | continue; |
| 3192 | |
| 3193 | /* Check addresses that might be used for enabled consoles. */ |
| 3194 | if (init_section_intersects(con, sizeof(*con)) || |
| 3195 | init_section_contains(con->write, 0) || |
| 3196 | init_section_contains(con->read, 0) || |
| 3197 | init_section_contains(con->device, 0) || |
| 3198 | init_section_contains(con->unblank, 0) || |
| 3199 | init_section_contains(con->data, 0)) { |
Thierry Reding | 81cc26f | 2016-01-15 16:58:21 -0800 | [diff] [blame] | 3200 | /* |
Matt Redfearn | 2b1be68 | 2017-07-14 14:51:12 +0200 | [diff] [blame] | 3201 | * Please, consider moving the reported consoles out |
| 3202 | * of the init section. |
Thierry Reding | 81cc26f | 2016-01-15 16:58:21 -0800 | [diff] [blame] | 3203 | */ |
Matt Redfearn | 2b1be68 | 2017-07-14 14:51:12 +0200 | [diff] [blame] | 3204 | pr_warn("bootconsole [%s%d] uses init memory and must be disabled even before the real one is ready\n", |
| 3205 | con->name, con->index); |
| 3206 | unregister_console(con); |
Robin Getz | cb00e99 | 2007-08-21 23:14:58 -0400 | [diff] [blame] | 3207 | } |
Robin Getz | 0c5564b | 2007-08-20 15:22:47 -0400 | [diff] [blame] | 3208 | } |
Sebastian Andrzej Siewior | 90b1488 | 2016-11-03 15:49:58 +0100 | [diff] [blame] | 3209 | ret = cpuhp_setup_state_nocalls(CPUHP_PRINTK_DEAD, "printk:dead", NULL, |
| 3210 | console_cpu_notify); |
| 3211 | WARN_ON(ret < 0); |
| 3212 | ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, "printk:online", |
| 3213 | console_cpu_notify, NULL); |
| 3214 | WARN_ON(ret < 0); |
Xiaoming Ni | faaa357 | 2022-01-21 22:12:33 -0800 | [diff] [blame] | 3215 | printk_sysctl_init(); |
Robin Getz | 0c5564b | 2007-08-20 15:22:47 -0400 | [diff] [blame] | 3216 | return 0; |
| 3217 | } |
Kevin Cernekee | 034260d | 2010-06-03 22:11:25 -0700 | [diff] [blame] | 3218 | late_initcall(printk_late_init); |
Robin Getz | 0c5564b | 2007-08-20 15:22:47 -0400 | [diff] [blame] | 3219 | |
Joe Perches | 7ef3d2f | 2008-02-08 04:21:25 -0800 | [diff] [blame] | 3220 | #if defined CONFIG_PRINTK |
Frederic Weisbecker | dc72c32 | 2013-03-22 15:04:39 -0700 | [diff] [blame] | 3221 | /* |
| 3222 | * Delayed printk version, for scheduler-internal messages: |
| 3223 | */ |
Frederic Weisbecker | dc72c32 | 2013-03-22 15:04:39 -0700 | [diff] [blame] | 3224 | #define PRINTK_PENDING_WAKEUP 0x01 |
Steven Rostedt | 458df9f | 2014-06-04 16:11:38 -0700 | [diff] [blame] | 3225 | #define PRINTK_PENDING_OUTPUT 0x02 |
Frederic Weisbecker | dc72c32 | 2013-03-22 15:04:39 -0700 | [diff] [blame] | 3226 | |
| 3227 | static DEFINE_PER_CPU(int, printk_pending); |
Frederic Weisbecker | dc72c32 | 2013-03-22 15:04:39 -0700 | [diff] [blame] | 3228 | |
| 3229 | static void wake_up_klogd_work_func(struct irq_work *irq_work) |
| 3230 | { |
| 3231 | int pending = __this_cpu_xchg(printk_pending, 0); |
| 3232 | |
Steven Rostedt | 458df9f | 2014-06-04 16:11:38 -0700 | [diff] [blame] | 3233 | if (pending & PRINTK_PENDING_OUTPUT) { |
| 3234 | /* If trylock fails, someone else is doing the printing */ |
| 3235 | if (console_trylock()) |
| 3236 | console_unlock(); |
Frederic Weisbecker | dc72c32 | 2013-03-22 15:04:39 -0700 | [diff] [blame] | 3237 | } |
| 3238 | |
| 3239 | if (pending & PRINTK_PENDING_WAKEUP) |
| 3240 | wake_up_interruptible(&log_wait); |
| 3241 | } |
| 3242 | |
Peter Zijlstra | 7a9f50a | 2020-06-15 11:51:29 +0200 | [diff] [blame] | 3243 | static DEFINE_PER_CPU(struct irq_work, wake_up_klogd_work) = |
| 3244 | IRQ_WORK_INIT_LAZY(wake_up_klogd_work_func); |
Frederic Weisbecker | dc72c32 | 2013-03-22 15:04:39 -0700 | [diff] [blame] | 3245 | |
| 3246 | void wake_up_klogd(void) |
| 3247 | { |
Sergey Senozhatsky | ab6f762 | 2020-03-03 20:30:02 +0900 | [diff] [blame] | 3248 | if (!printk_percpu_data_ready()) |
| 3249 | return; |
| 3250 | |
Frederic Weisbecker | dc72c32 | 2013-03-22 15:04:39 -0700 | [diff] [blame] | 3251 | preempt_disable(); |
| 3252 | if (waitqueue_active(&log_wait)) { |
| 3253 | this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP); |
Christoph Lameter | bb964a9 | 2014-08-17 12:30:24 -0500 | [diff] [blame] | 3254 | irq_work_queue(this_cpu_ptr(&wake_up_klogd_work)); |
Frederic Weisbecker | dc72c32 | 2013-03-22 15:04:39 -0700 | [diff] [blame] | 3255 | } |
| 3256 | preempt_enable(); |
| 3257 | } |
Dave Young | 717115e | 2008-07-25 01:45:58 -0700 | [diff] [blame] | 3258 | |
Petr Mladek | a338f84 | 2018-06-27 16:08:16 +0200 | [diff] [blame] | 3259 | void defer_console_output(void) |
| 3260 | { |
Sergey Senozhatsky | ab6f762 | 2020-03-03 20:30:02 +0900 | [diff] [blame] | 3261 | if (!printk_percpu_data_ready()) |
| 3262 | return; |
| 3263 | |
Petr Mladek | a338f84 | 2018-06-27 16:08:16 +0200 | [diff] [blame] | 3264 | preempt_disable(); |
| 3265 | __this_cpu_or(printk_pending, PRINTK_PENDING_OUTPUT); |
| 3266 | irq_work_queue(this_cpu_ptr(&wake_up_klogd_work)); |
| 3267 | preempt_enable(); |
| 3268 | } |
| 3269 | |
Nicholas Piggin | 5d5e452 | 2021-11-07 14:51:16 +1000 | [diff] [blame] | 3270 | void printk_trigger_flush(void) |
| 3271 | { |
| 3272 | defer_console_output(); |
| 3273 | } |
| 3274 | |
Petr Mladek | 719f6a7 | 2017-04-20 10:52:31 +0200 | [diff] [blame] | 3275 | int vprintk_deferred(const char *fmt, va_list args) |
| 3276 | { |
| 3277 | int r; |
| 3278 | |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 3279 | r = vprintk_emit(0, LOGLEVEL_SCHED, NULL, fmt, args); |
Petr Mladek | a338f84 | 2018-06-27 16:08:16 +0200 | [diff] [blame] | 3280 | defer_console_output(); |
Petr Mladek | 719f6a7 | 2017-04-20 10:52:31 +0200 | [diff] [blame] | 3281 | |
| 3282 | return r; |
| 3283 | } |
| 3284 | |
Chris Down | 3370155 | 2021-06-15 17:52:53 +0100 | [diff] [blame] | 3285 | int _printk_deferred(const char *fmt, ...) |
Peter Zijlstra | 600e145 | 2012-03-15 12:35:37 +0100 | [diff] [blame] | 3286 | { |
Peter Zijlstra | 600e145 | 2012-03-15 12:35:37 +0100 | [diff] [blame] | 3287 | va_list args; |
Peter Zijlstra | 600e145 | 2012-03-15 12:35:37 +0100 | [diff] [blame] | 3288 | int r; |
| 3289 | |
Peter Zijlstra | 600e145 | 2012-03-15 12:35:37 +0100 | [diff] [blame] | 3290 | va_start(args, fmt); |
Petr Mladek | 719f6a7 | 2017-04-20 10:52:31 +0200 | [diff] [blame] | 3291 | r = vprintk_deferred(fmt, args); |
Peter Zijlstra | 600e145 | 2012-03-15 12:35:37 +0100 | [diff] [blame] | 3292 | va_end(args); |
| 3293 | |
Peter Zijlstra | 600e145 | 2012-03-15 12:35:37 +0100 | [diff] [blame] | 3294 | return r; |
| 3295 | } |
| 3296 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3297 | /* |
| 3298 | * printk rate limiting, lifted from the networking subsystem. |
| 3299 | * |
Uwe Kleine-König | 641de9d | 2008-07-29 22:33:38 -0700 | [diff] [blame] | 3300 | * This enforces a rate limit: not more than 10 kernel messages |
| 3301 | * every 5s to make a denial-of-service attack impossible. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3302 | */ |
Uwe Kleine-König | 641de9d | 2008-07-29 22:33:38 -0700 | [diff] [blame] | 3303 | DEFINE_RATELIMIT_STATE(printk_ratelimit_state, 5 * HZ, 10); |
| 3304 | |
Christian Borntraeger | 5c82871 | 2009-10-23 14:58:11 +0200 | [diff] [blame] | 3305 | int __printk_ratelimit(const char *func) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3306 | { |
Christian Borntraeger | 5c82871 | 2009-10-23 14:58:11 +0200 | [diff] [blame] | 3307 | return ___ratelimit(&printk_ratelimit_state, func); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3308 | } |
Christian Borntraeger | 5c82871 | 2009-10-23 14:58:11 +0200 | [diff] [blame] | 3309 | EXPORT_SYMBOL(__printk_ratelimit); |
Andrew Morton | f46c483 | 2006-11-02 22:07:16 -0800 | [diff] [blame] | 3310 | |
| 3311 | /** |
| 3312 | * printk_timed_ratelimit - caller-controlled printk ratelimiting |
| 3313 | * @caller_jiffies: pointer to caller's state |
| 3314 | * @interval_msecs: minimum interval between prints |
| 3315 | * |
| 3316 | * printk_timed_ratelimit() returns true if more than @interval_msecs |
| 3317 | * milliseconds have elapsed since the last time printk_timed_ratelimit() |
| 3318 | * returned true. |
| 3319 | */ |
| 3320 | bool printk_timed_ratelimit(unsigned long *caller_jiffies, |
| 3321 | unsigned int interval_msecs) |
| 3322 | { |
Alex Elder | 249771b | 2014-08-06 16:09:08 -0700 | [diff] [blame] | 3323 | unsigned long elapsed = jiffies - *caller_jiffies; |
| 3324 | |
| 3325 | if (*caller_jiffies && elapsed <= msecs_to_jiffies(interval_msecs)) |
| 3326 | return false; |
| 3327 | |
| 3328 | *caller_jiffies = jiffies; |
| 3329 | return true; |
Andrew Morton | f46c483 | 2006-11-02 22:07:16 -0800 | [diff] [blame] | 3330 | } |
| 3331 | EXPORT_SYMBOL(printk_timed_ratelimit); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 3332 | |
| 3333 | static DEFINE_SPINLOCK(dump_list_lock); |
| 3334 | static LIST_HEAD(dump_list); |
| 3335 | |
| 3336 | /** |
| 3337 | * kmsg_dump_register - register a kernel log dumper. |
Randy Dunlap | 6485536 | 2009-12-17 15:27:27 -0800 | [diff] [blame] | 3338 | * @dumper: pointer to the kmsg_dumper structure |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 3339 | * |
| 3340 | * Adds a kernel log dumper to the system. The dump callback in the |
| 3341 | * structure will be called when the kernel oopses or panics and must be |
| 3342 | * set. Returns zero on success and %-EINVAL or %-EBUSY otherwise. |
| 3343 | */ |
| 3344 | int kmsg_dump_register(struct kmsg_dumper *dumper) |
| 3345 | { |
| 3346 | unsigned long flags; |
| 3347 | int err = -EBUSY; |
| 3348 | |
| 3349 | /* The dump callback needs to be set */ |
| 3350 | if (!dumper->dump) |
| 3351 | return -EINVAL; |
| 3352 | |
| 3353 | spin_lock_irqsave(&dump_list_lock, flags); |
| 3354 | /* Don't allow registering multiple times */ |
| 3355 | if (!dumper->registered) { |
| 3356 | dumper->registered = 1; |
Huang Ying | fb842b00 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 3357 | list_add_tail_rcu(&dumper->list, &dump_list); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 3358 | err = 0; |
| 3359 | } |
| 3360 | spin_unlock_irqrestore(&dump_list_lock, flags); |
| 3361 | |
| 3362 | return err; |
| 3363 | } |
| 3364 | EXPORT_SYMBOL_GPL(kmsg_dump_register); |
| 3365 | |
| 3366 | /** |
| 3367 | * kmsg_dump_unregister - unregister a kmsg dumper. |
Randy Dunlap | 6485536 | 2009-12-17 15:27:27 -0800 | [diff] [blame] | 3368 | * @dumper: pointer to the kmsg_dumper structure |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 3369 | * |
| 3370 | * Removes a dump device from the system. Returns zero on success and |
| 3371 | * %-EINVAL otherwise. |
| 3372 | */ |
| 3373 | int kmsg_dump_unregister(struct kmsg_dumper *dumper) |
| 3374 | { |
| 3375 | unsigned long flags; |
| 3376 | int err = -EINVAL; |
| 3377 | |
| 3378 | spin_lock_irqsave(&dump_list_lock, flags); |
| 3379 | if (dumper->registered) { |
| 3380 | dumper->registered = 0; |
Huang Ying | fb842b00 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 3381 | list_del_rcu(&dumper->list); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 3382 | err = 0; |
| 3383 | } |
| 3384 | spin_unlock_irqrestore(&dump_list_lock, flags); |
Huang Ying | fb842b00 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 3385 | synchronize_rcu(); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 3386 | |
| 3387 | return err; |
| 3388 | } |
| 3389 | EXPORT_SYMBOL_GPL(kmsg_dump_unregister); |
| 3390 | |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 3391 | static bool always_kmsg_dump; |
| 3392 | module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR); |
| 3393 | |
Kees Cook | fb13cb8 | 2020-05-07 19:36:22 -0700 | [diff] [blame] | 3394 | const char *kmsg_dump_reason_str(enum kmsg_dump_reason reason) |
| 3395 | { |
| 3396 | switch (reason) { |
| 3397 | case KMSG_DUMP_PANIC: |
| 3398 | return "Panic"; |
| 3399 | case KMSG_DUMP_OOPS: |
| 3400 | return "Oops"; |
| 3401 | case KMSG_DUMP_EMERG: |
| 3402 | return "Emergency"; |
| 3403 | case KMSG_DUMP_SHUTDOWN: |
| 3404 | return "Shutdown"; |
| 3405 | default: |
| 3406 | return "Unknown"; |
| 3407 | } |
| 3408 | } |
| 3409 | EXPORT_SYMBOL_GPL(kmsg_dump_reason_str); |
| 3410 | |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 3411 | /** |
| 3412 | * kmsg_dump - dump kernel log to kernel message dumpers. |
| 3413 | * @reason: the reason (oops, panic etc) for dumping |
| 3414 | * |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3415 | * Call each of the registered dumper's dump() callback, which can |
| 3416 | * retrieve the kmsg records with kmsg_dump_get_line() or |
| 3417 | * kmsg_dump_get_buffer(). |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 3418 | */ |
| 3419 | void kmsg_dump(enum kmsg_dump_reason reason) |
| 3420 | { |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 3421 | struct kmsg_dumper *dumper; |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 3422 | |
Huang Ying | fb842b00 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 3423 | rcu_read_lock(); |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3424 | list_for_each_entry_rcu(dumper, &dump_list, list) { |
Pavel Tatashin | b1f6f16 | 2020-05-05 11:45:06 -0400 | [diff] [blame] | 3425 | enum kmsg_dump_reason max_reason = dumper->max_reason; |
| 3426 | |
| 3427 | /* |
| 3428 | * If client has not provided a specific max_reason, default |
| 3429 | * to KMSG_DUMP_OOPS, unless always_kmsg_dump was set. |
| 3430 | */ |
| 3431 | if (max_reason == KMSG_DUMP_UNDEF) { |
| 3432 | max_reason = always_kmsg_dump ? KMSG_DUMP_MAX : |
| 3433 | KMSG_DUMP_OOPS; |
| 3434 | } |
| 3435 | if (reason > max_reason) |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3436 | continue; |
| 3437 | |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3438 | /* invoke dumper which will iterate over records */ |
| 3439 | dumper->dump(dumper, reason); |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3440 | } |
Huang Ying | fb842b00 | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 3441 | rcu_read_unlock(); |
Simon Kagstrom | 456b565 | 2009-10-16 14:09:18 +0200 | [diff] [blame] | 3442 | } |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3443 | |
| 3444 | /** |
John Ogness | a4f9876 | 2021-03-03 11:15:27 +0100 | [diff] [blame] | 3445 | * kmsg_dump_get_line - retrieve one kmsg log line |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3446 | * @iter: kmsg dump iterator |
Anton Vorontsov | 533827c | 2012-07-20 17:28:07 -0700 | [diff] [blame] | 3447 | * @syslog: include the "<4>" prefixes |
| 3448 | * @line: buffer to copy the line to |
| 3449 | * @size: maximum size of the buffer |
| 3450 | * @len: length of line placed into buffer |
| 3451 | * |
| 3452 | * Start at the beginning of the kmsg buffer, with the oldest kmsg |
| 3453 | * record, and copy one record into the provided buffer. |
| 3454 | * |
| 3455 | * Consecutive calls will return the next available record moving |
| 3456 | * towards the end of the buffer with the youngest messages. |
| 3457 | * |
| 3458 | * A return value of FALSE indicates that there are no more records to |
| 3459 | * read. |
Anton Vorontsov | 533827c | 2012-07-20 17:28:07 -0700 | [diff] [blame] | 3460 | */ |
John Ogness | a4f9876 | 2021-03-03 11:15:27 +0100 | [diff] [blame] | 3461 | bool kmsg_dump_get_line(struct kmsg_dump_iter *iter, bool syslog, |
| 3462 | char *line, size_t size, size_t *len) |
Anton Vorontsov | 533827c | 2012-07-20 17:28:07 -0700 | [diff] [blame] | 3463 | { |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3464 | u64 min_seq = latched_seq_read_nolock(&clear_seq); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 3465 | struct printk_info info; |
| 3466 | unsigned int line_count; |
| 3467 | struct printk_record r; |
Anton Vorontsov | 533827c | 2012-07-20 17:28:07 -0700 | [diff] [blame] | 3468 | size_t l = 0; |
| 3469 | bool ret = false; |
| 3470 | |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3471 | if (iter->cur_seq < min_seq) |
| 3472 | iter->cur_seq = min_seq; |
| 3473 | |
John Ogness | f35efc7 | 2020-09-19 00:40:21 +0206 | [diff] [blame] | 3474 | prb_rec_init_rd(&r, &info, line, size); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 3475 | |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 3476 | /* Read text or count text lines? */ |
| 3477 | if (line) { |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3478 | if (!prb_read_valid(prb, iter->cur_seq, &r)) |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 3479 | goto out; |
| 3480 | l = record_print_text(&r, syslog, printk_time); |
| 3481 | } else { |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3482 | if (!prb_read_valid_info(prb, iter->cur_seq, |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 3483 | &info, &line_count)) { |
| 3484 | goto out; |
| 3485 | } |
| 3486 | l = get_record_print_text_size(&info, line_count, syslog, |
| 3487 | printk_time); |
| 3488 | |
Anton Vorontsov | 533827c | 2012-07-20 17:28:07 -0700 | [diff] [blame] | 3489 | } |
| 3490 | |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3491 | iter->cur_seq = r.info->seq + 1; |
Anton Vorontsov | 533827c | 2012-07-20 17:28:07 -0700 | [diff] [blame] | 3492 | ret = true; |
| 3493 | out: |
| 3494 | if (len) |
| 3495 | *len = l; |
| 3496 | return ret; |
| 3497 | } |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3498 | EXPORT_SYMBOL_GPL(kmsg_dump_get_line); |
| 3499 | |
| 3500 | /** |
| 3501 | * kmsg_dump_get_buffer - copy kmsg log lines |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3502 | * @iter: kmsg dump iterator |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3503 | * @syslog: include the "<4>" prefixes |
Randy Dunlap | 4f0f4af | 2012-06-30 15:37:24 -0700 | [diff] [blame] | 3504 | * @buf: buffer to copy the line to |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3505 | * @size: maximum size of the buffer |
John Ogness | 726b509 | 2021-03-03 11:15:18 +0100 | [diff] [blame] | 3506 | * @len_out: length of line placed into buffer |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3507 | * |
| 3508 | * Start at the end of the kmsg buffer and fill the provided buffer |
Randy Dunlap | 547bbf7 | 2020-08-06 20:32:27 -0700 | [diff] [blame] | 3509 | * with as many of the *youngest* kmsg records that fit into it. |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3510 | * If the buffer is large enough, all available kmsg records will be |
| 3511 | * copied with a single call. |
| 3512 | * |
| 3513 | * Consecutive calls will fill the buffer with the next block of |
| 3514 | * available older records, not including the earlier retrieved ones. |
| 3515 | * |
| 3516 | * A return value of FALSE indicates that there are no more records to |
| 3517 | * read. |
| 3518 | */ |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3519 | bool kmsg_dump_get_buffer(struct kmsg_dump_iter *iter, bool syslog, |
John Ogness | 726b509 | 2021-03-03 11:15:18 +0100 | [diff] [blame] | 3520 | char *buf, size_t size, size_t *len_out) |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3521 | { |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3522 | u64 min_seq = latched_seq_read_nolock(&clear_seq); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 3523 | struct printk_info info; |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 3524 | struct printk_record r; |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3525 | u64 seq; |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3526 | u64 next_seq; |
John Ogness | 726b509 | 2021-03-03 11:15:18 +0100 | [diff] [blame] | 3527 | size_t len = 0; |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3528 | bool ret = false; |
Tetsuo Handa | e80c1a9 | 2018-12-04 19:00:01 +0900 | [diff] [blame] | 3529 | bool time = printk_time; |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3530 | |
John Ogness | 5f6c764 | 2021-03-03 11:15:24 +0100 | [diff] [blame] | 3531 | if (!buf || !size) |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3532 | goto out; |
| 3533 | |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3534 | if (iter->cur_seq < min_seq) |
| 3535 | iter->cur_seq = min_seq; |
| 3536 | |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3537 | if (prb_read_valid_info(prb, iter->cur_seq, &info, NULL)) { |
| 3538 | if (info.seq != iter->cur_seq) { |
John Ogness | 13791c8 | 2021-02-11 18:37:52 +0106 | [diff] [blame] | 3539 | /* messages are gone, move to first available one */ |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3540 | iter->cur_seq = info.seq; |
John Ogness | 13791c8 | 2021-02-11 18:37:52 +0106 | [diff] [blame] | 3541 | } |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3542 | } |
| 3543 | |
| 3544 | /* last entry */ |
John Ogness | 93d102f | 2021-07-15 21:39:56 +0206 | [diff] [blame] | 3545 | if (iter->cur_seq >= iter->next_seq) |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3546 | goto out; |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3547 | |
John Ogness | 726b509 | 2021-03-03 11:15:18 +0100 | [diff] [blame] | 3548 | /* |
| 3549 | * Find first record that fits, including all following records, |
John Ogness | 4260e0e55 | 2021-03-03 11:15:19 +0100 | [diff] [blame] | 3550 | * into the user-provided buffer for this dump. Pass in size-1 |
| 3551 | * because this function (by way of record_print_text()) will |
| 3552 | * not write more than size-1 bytes of text into @buf. |
John Ogness | 726b509 | 2021-03-03 11:15:18 +0100 | [diff] [blame] | 3553 | */ |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3554 | seq = find_first_fitting_seq(iter->cur_seq, iter->next_seq, |
John Ogness | 4260e0e55 | 2021-03-03 11:15:19 +0100 | [diff] [blame] | 3555 | size - 1, syslog, time); |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3556 | |
John Ogness | 726b509 | 2021-03-03 11:15:18 +0100 | [diff] [blame] | 3557 | /* |
| 3558 | * Next kmsg_dump_get_buffer() invocation will dump block of |
| 3559 | * older records stored right before this one. |
| 3560 | */ |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3561 | next_seq = seq; |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3562 | |
John Ogness | 726b509 | 2021-03-03 11:15:18 +0100 | [diff] [blame] | 3563 | prb_rec_init_rd(&r, &info, buf, size); |
| 3564 | |
| 3565 | len = 0; |
| 3566 | prb_for_each_record(seq, prb, seq, &r) { |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3567 | if (r.info->seq >= iter->next_seq) |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 3568 | break; |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3569 | |
John Ogness | 726b509 | 2021-03-03 11:15:18 +0100 | [diff] [blame] | 3570 | len += record_print_text(&r, syslog, time); |
John Ogness | 896fbe2 | 2020-07-09 15:29:44 +0206 | [diff] [blame] | 3571 | |
John Ogness | 726b509 | 2021-03-03 11:15:18 +0100 | [diff] [blame] | 3572 | /* Adjust record to store to remaining buffer space. */ |
| 3573 | prb_rec_init_rd(&r, &info, buf + len, size - len); |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3574 | } |
| 3575 | |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3576 | iter->next_seq = next_seq; |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3577 | ret = true; |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3578 | out: |
John Ogness | 726b509 | 2021-03-03 11:15:18 +0100 | [diff] [blame] | 3579 | if (len_out) |
| 3580 | *len_out = len; |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3581 | return ret; |
| 3582 | } |
| 3583 | EXPORT_SYMBOL_GPL(kmsg_dump_get_buffer); |
| 3584 | |
| 3585 | /** |
Ethon Paul | 325606a | 2020-04-18 19:35:36 +0800 | [diff] [blame] | 3586 | * kmsg_dump_rewind - reset the iterator |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3587 | * @iter: kmsg dump iterator |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3588 | * |
| 3589 | * Reset the dumper's iterator so that kmsg_dump_get_line() and |
| 3590 | * kmsg_dump_get_buffer() can be called again and used multiple |
| 3591 | * times within the same dumper.dump() callback. |
| 3592 | */ |
John Ogness | f9f3f02 | 2021-03-03 11:15:25 +0100 | [diff] [blame] | 3593 | void kmsg_dump_rewind(struct kmsg_dump_iter *iter) |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3594 | { |
John Ogness | a4f9876 | 2021-03-03 11:15:27 +0100 | [diff] [blame] | 3595 | iter->cur_seq = latched_seq_read_nolock(&clear_seq); |
| 3596 | iter->next_seq = prb_next_seq(prb); |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 3597 | } |
| 3598 | EXPORT_SYMBOL_GPL(kmsg_dump_rewind); |
Tejun Heo | 196779b | 2013-04-30 15:27:12 -0700 | [diff] [blame] | 3599 | |
Joe Perches | 7ef3d2f | 2008-02-08 04:21:25 -0800 | [diff] [blame] | 3600 | #endif |
John Ogness | 766c268 | 2021-06-17 11:56:50 +0206 | [diff] [blame] | 3601 | |
| 3602 | #ifdef CONFIG_SMP |
| 3603 | static atomic_t printk_cpulock_owner = ATOMIC_INIT(-1); |
| 3604 | static atomic_t printk_cpulock_nested = ATOMIC_INIT(0); |
| 3605 | |
| 3606 | /** |
| 3607 | * __printk_wait_on_cpu_lock() - Busy wait until the printk cpu-reentrant |
| 3608 | * spinning lock is not owned by any CPU. |
| 3609 | * |
| 3610 | * Context: Any context. |
| 3611 | */ |
| 3612 | void __printk_wait_on_cpu_lock(void) |
| 3613 | { |
| 3614 | do { |
| 3615 | cpu_relax(); |
| 3616 | } while (atomic_read(&printk_cpulock_owner) != -1); |
| 3617 | } |
| 3618 | EXPORT_SYMBOL(__printk_wait_on_cpu_lock); |
| 3619 | |
| 3620 | /** |
| 3621 | * __printk_cpu_trylock() - Try to acquire the printk cpu-reentrant |
| 3622 | * spinning lock. |
| 3623 | * |
| 3624 | * If no processor has the lock, the calling processor takes the lock and |
| 3625 | * becomes the owner. If the calling processor is already the owner of the |
| 3626 | * lock, this function succeeds immediately. |
| 3627 | * |
| 3628 | * Context: Any context. Expects interrupts to be disabled. |
| 3629 | * Return: 1 on success, otherwise 0. |
| 3630 | */ |
| 3631 | int __printk_cpu_trylock(void) |
| 3632 | { |
| 3633 | int cpu; |
| 3634 | int old; |
| 3635 | |
| 3636 | cpu = smp_processor_id(); |
| 3637 | |
John Ogness | 3342aa8 | 2021-06-17 11:56:51 +0206 | [diff] [blame] | 3638 | /* |
| 3639 | * Guarantee loads and stores from this CPU when it is the lock owner |
| 3640 | * are _not_ visible to the previous lock owner. This pairs with |
| 3641 | * __printk_cpu_unlock:B. |
| 3642 | * |
| 3643 | * Memory barrier involvement: |
| 3644 | * |
| 3645 | * If __printk_cpu_trylock:A reads from __printk_cpu_unlock:B, then |
| 3646 | * __printk_cpu_unlock:A can never read from __printk_cpu_trylock:B. |
| 3647 | * |
| 3648 | * Relies on: |
| 3649 | * |
| 3650 | * RELEASE from __printk_cpu_unlock:A to __printk_cpu_unlock:B |
| 3651 | * of the previous CPU |
| 3652 | * matching |
| 3653 | * ACQUIRE from __printk_cpu_trylock:A to __printk_cpu_trylock:B |
| 3654 | * of this CPU |
| 3655 | */ |
| 3656 | old = atomic_cmpxchg_acquire(&printk_cpulock_owner, -1, |
| 3657 | cpu); /* LMM(__printk_cpu_trylock:A) */ |
John Ogness | 766c268 | 2021-06-17 11:56:50 +0206 | [diff] [blame] | 3658 | if (old == -1) { |
John Ogness | 3342aa8 | 2021-06-17 11:56:51 +0206 | [diff] [blame] | 3659 | /* |
| 3660 | * This CPU is now the owner and begins loading/storing |
| 3661 | * data: LMM(__printk_cpu_trylock:B) |
| 3662 | */ |
John Ogness | 766c268 | 2021-06-17 11:56:50 +0206 | [diff] [blame] | 3663 | return 1; |
John Ogness | 3342aa8 | 2021-06-17 11:56:51 +0206 | [diff] [blame] | 3664 | |
John Ogness | 766c268 | 2021-06-17 11:56:50 +0206 | [diff] [blame] | 3665 | } else if (old == cpu) { |
| 3666 | /* This CPU is already the owner. */ |
| 3667 | atomic_inc(&printk_cpulock_nested); |
| 3668 | return 1; |
| 3669 | } |
| 3670 | |
| 3671 | return 0; |
| 3672 | } |
| 3673 | EXPORT_SYMBOL(__printk_cpu_trylock); |
| 3674 | |
| 3675 | /** |
| 3676 | * __printk_cpu_unlock() - Release the printk cpu-reentrant spinning lock. |
| 3677 | * |
| 3678 | * The calling processor must be the owner of the lock. |
| 3679 | * |
| 3680 | * Context: Any context. Expects interrupts to be disabled. |
| 3681 | */ |
| 3682 | void __printk_cpu_unlock(void) |
| 3683 | { |
| 3684 | if (atomic_read(&printk_cpulock_nested)) { |
| 3685 | atomic_dec(&printk_cpulock_nested); |
| 3686 | return; |
| 3687 | } |
| 3688 | |
John Ogness | 3342aa8 | 2021-06-17 11:56:51 +0206 | [diff] [blame] | 3689 | /* |
| 3690 | * This CPU is finished loading/storing data: |
| 3691 | * LMM(__printk_cpu_unlock:A) |
| 3692 | */ |
| 3693 | |
| 3694 | /* |
| 3695 | * Guarantee loads and stores from this CPU when it was the |
| 3696 | * lock owner are visible to the next lock owner. This pairs |
| 3697 | * with __printk_cpu_trylock:A. |
| 3698 | * |
| 3699 | * Memory barrier involvement: |
| 3700 | * |
| 3701 | * If __printk_cpu_trylock:A reads from __printk_cpu_unlock:B, |
| 3702 | * then __printk_cpu_trylock:B reads from __printk_cpu_unlock:A. |
| 3703 | * |
| 3704 | * Relies on: |
| 3705 | * |
| 3706 | * RELEASE from __printk_cpu_unlock:A to __printk_cpu_unlock:B |
| 3707 | * of this CPU |
| 3708 | * matching |
| 3709 | * ACQUIRE from __printk_cpu_trylock:A to __printk_cpu_trylock:B |
| 3710 | * of the next CPU |
| 3711 | */ |
| 3712 | atomic_set_release(&printk_cpulock_owner, |
| 3713 | -1); /* LMM(__printk_cpu_unlock:B) */ |
John Ogness | 766c268 | 2021-06-17 11:56:50 +0206 | [diff] [blame] | 3714 | } |
| 3715 | EXPORT_SYMBOL(__printk_cpu_unlock); |
| 3716 | #endif /* CONFIG_SMP */ |