blob: 6cfc5a00c67d69bfa76e0e4d4da524b28c1601f5 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-or-later
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * printk_safe.c - Safe printk for printk-deadlock-prone contexts
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004 */
5
6#include <linux/preempt.h>
7#include <linux/spinlock.h>
8#include <linux/debug_locks.h>
9#include <linux/smp.h>
10#include <linux/cpumask.h>
11#include <linux/irq_work.h>
12#include <linux/printk.h>
13
14#include "internal.h"
15
16/*
17 * printk() could not take logbuf_lock in NMI context. Instead,
18 * it uses an alternative implementation that temporary stores
19 * the strings into a per-CPU buffer. The content of the buffer
20 * is later flushed into the main ring buffer via IRQ work.
21 *
22 * The alternative implementation is chosen transparently
23 * by examinig current printk() context mask stored in @printk_context
24 * per-CPU variable.
25 *
26 * The implementation allows to flush the strings also from another CPU.
27 * There are situations when we want to make sure that all buffers
28 * were handled or when IRQs are blocked.
29 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000030
31#define SAFE_LOG_BUF_LEN ((1 << CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT) - \
32 sizeof(atomic_t) - \
33 sizeof(atomic_t) - \
34 sizeof(struct irq_work))
35
36struct printk_safe_seq_buf {
37 atomic_t len; /* length of written data */
38 atomic_t message_lost;
39 struct irq_work work; /* IRQ work that flushes the buffer */
40 unsigned char buffer[SAFE_LOG_BUF_LEN];
41};
42
43static DEFINE_PER_CPU(struct printk_safe_seq_buf, safe_print_seq);
44static DEFINE_PER_CPU(int, printk_context);
45
Olivier Deprez0e641232021-09-23 10:07:05 +020046static DEFINE_RAW_SPINLOCK(safe_read_lock);
47
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000048#ifdef CONFIG_PRINTK_NMI
49static DEFINE_PER_CPU(struct printk_safe_seq_buf, nmi_print_seq);
50#endif
51
52/* Get flushed in a more safe context. */
53static void queue_flush_work(struct printk_safe_seq_buf *s)
54{
Olivier Deprez0e641232021-09-23 10:07:05 +020055 if (printk_percpu_data_ready())
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000056 irq_work_queue(&s->work);
57}
58
59/*
60 * Add a message to per-CPU context-dependent buffer. NMI and printk-safe
61 * have dedicated buffers, because otherwise printk-safe preempted by
62 * NMI-printk would have overwritten the NMI messages.
63 *
64 * The messages are flushed from irq work (or from panic()), possibly,
65 * from other CPU, concurrently with printk_safe_log_store(). Should this
66 * happen, printk_safe_log_store() will notice the buffer->len mismatch
67 * and repeat the write.
68 */
69static __printf(2, 0) int printk_safe_log_store(struct printk_safe_seq_buf *s,
70 const char *fmt, va_list args)
71{
72 int add;
73 size_t len;
74 va_list ap;
75
76again:
77 len = atomic_read(&s->len);
78
79 /* The trailing '\0' is not counted into len. */
80 if (len >= sizeof(s->buffer) - 1) {
81 atomic_inc(&s->message_lost);
82 queue_flush_work(s);
83 return 0;
84 }
85
86 /*
87 * Make sure that all old data have been read before the buffer
88 * was reset. This is not needed when we just append data.
89 */
90 if (!len)
91 smp_rmb();
92
93 va_copy(ap, args);
94 add = vscnprintf(s->buffer + len, sizeof(s->buffer) - len, fmt, ap);
95 va_end(ap);
96 if (!add)
97 return 0;
98
99 /*
100 * Do it once again if the buffer has been flushed in the meantime.
101 * Note that atomic_cmpxchg() is an implicit memory barrier that
102 * makes sure that the data were written before updating s->len.
103 */
104 if (atomic_cmpxchg(&s->len, len, len + add) != len)
105 goto again;
106
107 queue_flush_work(s);
108 return add;
109}
110
111static inline void printk_safe_flush_line(const char *text, int len)
112{
113 /*
114 * Avoid any console drivers calls from here, because we may be
115 * in NMI or printk_safe context (when in panic). The messages
116 * must go only into the ring buffer at this stage. Consoles will
117 * get explicitly called later when a crashdump is not generated.
118 */
119 printk_deferred("%.*s", len, text);
120}
121
122/* printk part of the temporary buffer line by line */
123static int printk_safe_flush_buffer(const char *start, size_t len)
124{
125 const char *c, *end;
126 bool header;
127
128 c = start;
129 end = start + len;
130 header = true;
131
132 /* Print line by line. */
133 while (c < end) {
134 if (*c == '\n') {
135 printk_safe_flush_line(start, c - start + 1);
136 start = ++c;
137 header = true;
138 continue;
139 }
140
141 /* Handle continuous lines or missing new line. */
142 if ((c + 1 < end) && printk_get_level(c)) {
143 if (header) {
144 c = printk_skip_level(c);
145 continue;
146 }
147
148 printk_safe_flush_line(start, c - start);
149 start = c++;
150 header = true;
151 continue;
152 }
153
154 header = false;
155 c++;
156 }
157
158 /* Check if there was a partial line. Ignore pure header. */
159 if (start < end && !header) {
160 static const char newline[] = KERN_CONT "\n";
161
162 printk_safe_flush_line(start, end - start);
163 printk_safe_flush_line(newline, strlen(newline));
164 }
165
166 return len;
167}
168
169static void report_message_lost(struct printk_safe_seq_buf *s)
170{
171 int lost = atomic_xchg(&s->message_lost, 0);
172
173 if (lost)
174 printk_deferred("Lost %d message(s)!\n", lost);
175}
176
177/*
178 * Flush data from the associated per-CPU buffer. The function
179 * can be called either via IRQ work or independently.
180 */
181static void __printk_safe_flush(struct irq_work *work)
182{
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000183 struct printk_safe_seq_buf *s =
184 container_of(work, struct printk_safe_seq_buf, work);
185 unsigned long flags;
186 size_t len;
187 int i;
188
189 /*
190 * The lock has two functions. First, one reader has to flush all
191 * available message to make the lockless synchronization with
192 * writers easier. Second, we do not want to mix messages from
193 * different CPUs. This is especially important when printing
194 * a backtrace.
195 */
Olivier Deprez0e641232021-09-23 10:07:05 +0200196 raw_spin_lock_irqsave(&safe_read_lock, flags);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000197
198 i = 0;
199more:
200 len = atomic_read(&s->len);
201
202 /*
203 * This is just a paranoid check that nobody has manipulated
204 * the buffer an unexpected way. If we printed something then
205 * @len must only increase. Also it should never overflow the
206 * buffer size.
207 */
208 if ((i && i >= len) || len > sizeof(s->buffer)) {
209 const char *msg = "printk_safe_flush: internal error\n";
210
211 printk_safe_flush_line(msg, strlen(msg));
212 len = 0;
213 }
214
215 if (!len)
216 goto out; /* Someone else has already flushed the buffer. */
217
218 /* Make sure that data has been written up to the @len */
219 smp_rmb();
220 i += printk_safe_flush_buffer(s->buffer + i, len - i);
221
222 /*
223 * Check that nothing has got added in the meantime and truncate
224 * the buffer. Note that atomic_cmpxchg() is an implicit memory
225 * barrier that makes sure that the data were copied before
226 * updating s->len.
227 */
228 if (atomic_cmpxchg(&s->len, len, 0) != len)
229 goto more;
230
231out:
232 report_message_lost(s);
Olivier Deprez0e641232021-09-23 10:07:05 +0200233 raw_spin_unlock_irqrestore(&safe_read_lock, flags);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000234}
235
236/**
237 * printk_safe_flush - flush all per-cpu nmi buffers.
238 *
239 * The buffers are flushed automatically via IRQ work. This function
240 * is useful only when someone wants to be sure that all buffers have
241 * been flushed at some point.
242 */
243void printk_safe_flush(void)
244{
245 int cpu;
246
247 for_each_possible_cpu(cpu) {
248#ifdef CONFIG_PRINTK_NMI
249 __printk_safe_flush(&per_cpu(nmi_print_seq, cpu).work);
250#endif
251 __printk_safe_flush(&per_cpu(safe_print_seq, cpu).work);
252 }
253}
254
255/**
256 * printk_safe_flush_on_panic - flush all per-cpu nmi buffers when the system
257 * goes down.
258 *
259 * Similar to printk_safe_flush() but it can be called even in NMI context when
260 * the system goes down. It does the best effort to get NMI messages into
261 * the main ring buffer.
262 *
263 * Note that it could try harder when there is only one CPU online.
264 */
265void printk_safe_flush_on_panic(void)
266{
267 /*
268 * Make sure that we could access the main ring buffer.
269 * Do not risk a double release when more CPUs are up.
270 */
271 if (raw_spin_is_locked(&logbuf_lock)) {
272 if (num_online_cpus() > 1)
273 return;
274
275 debug_locks_off();
276 raw_spin_lock_init(&logbuf_lock);
277 }
278
Olivier Deprez0e641232021-09-23 10:07:05 +0200279 if (raw_spin_is_locked(&safe_read_lock)) {
280 if (num_online_cpus() > 1)
281 return;
282
283 debug_locks_off();
284 raw_spin_lock_init(&safe_read_lock);
285 }
286
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000287 printk_safe_flush();
288}
289
290#ifdef CONFIG_PRINTK_NMI
291/*
292 * Safe printk() for NMI context. It uses a per-CPU buffer to
293 * store the message. NMIs are not nested, so there is always only
294 * one writer running. But the buffer might get flushed from another
295 * CPU, so we need to be careful.
296 */
297static __printf(1, 0) int vprintk_nmi(const char *fmt, va_list args)
298{
299 struct printk_safe_seq_buf *s = this_cpu_ptr(&nmi_print_seq);
300
301 return printk_safe_log_store(s, fmt, args);
302}
303
304void notrace printk_nmi_enter(void)
305{
306 this_cpu_or(printk_context, PRINTK_NMI_CONTEXT_MASK);
307}
308
309void notrace printk_nmi_exit(void)
310{
311 this_cpu_and(printk_context, ~PRINTK_NMI_CONTEXT_MASK);
312}
313
314/*
315 * Marks a code that might produce many messages in NMI context
316 * and the risk of losing them is more critical than eventual
317 * reordering.
318 *
319 * It has effect only when called in NMI context. Then printk()
320 * will try to store the messages into the main logbuf directly
321 * and use the per-CPU buffers only as a fallback when the lock
322 * is not available.
323 */
324void printk_nmi_direct_enter(void)
325{
326 if (this_cpu_read(printk_context) & PRINTK_NMI_CONTEXT_MASK)
327 this_cpu_or(printk_context, PRINTK_NMI_DIRECT_CONTEXT_MASK);
328}
329
330void printk_nmi_direct_exit(void)
331{
332 this_cpu_and(printk_context, ~PRINTK_NMI_DIRECT_CONTEXT_MASK);
333}
334
335#else
336
337static __printf(1, 0) int vprintk_nmi(const char *fmt, va_list args)
338{
339 return 0;
340}
341
342#endif /* CONFIG_PRINTK_NMI */
343
344/*
345 * Lock-less printk(), to avoid deadlocks should the printk() recurse
346 * into itself. It uses a per-CPU buffer to store the message, just like
347 * NMI.
348 */
349static __printf(1, 0) int vprintk_safe(const char *fmt, va_list args)
350{
351 struct printk_safe_seq_buf *s = this_cpu_ptr(&safe_print_seq);
352
353 return printk_safe_log_store(s, fmt, args);
354}
355
356/* Can be preempted by NMI. */
357void __printk_safe_enter(void)
358{
359 this_cpu_inc(printk_context);
360}
361
362/* Can be preempted by NMI. */
363void __printk_safe_exit(void)
364{
365 this_cpu_dec(printk_context);
366}
367
368__printf(1, 0) int vprintk_func(const char *fmt, va_list args)
369{
370 /*
371 * Try to use the main logbuf even in NMI. But avoid calling console
372 * drivers that might have their own locks.
373 */
374 if ((this_cpu_read(printk_context) & PRINTK_NMI_DIRECT_CONTEXT_MASK) &&
375 raw_spin_trylock(&logbuf_lock)) {
376 int len;
377
378 len = vprintk_store(0, LOGLEVEL_DEFAULT, NULL, 0, fmt, args);
379 raw_spin_unlock(&logbuf_lock);
380 defer_console_output();
381 return len;
382 }
383
384 /* Use extra buffer in NMI when logbuf_lock is taken or in safe mode. */
385 if (this_cpu_read(printk_context) & PRINTK_NMI_CONTEXT_MASK)
386 return vprintk_nmi(fmt, args);
387
388 /* Use extra buffer to prevent a recursion deadlock in safe mode. */
389 if (this_cpu_read(printk_context) & PRINTK_SAFE_CONTEXT_MASK)
390 return vprintk_safe(fmt, args);
391
392 /* No obstacles. */
393 return vprintk_default(fmt, args);
394}
395
396void __init printk_safe_init(void)
397{
398 int cpu;
399
400 for_each_possible_cpu(cpu) {
401 struct printk_safe_seq_buf *s;
402
403 s = &per_cpu(safe_print_seq, cpu);
404 init_irq_work(&s->work, __printk_safe_flush);
405
406#ifdef CONFIG_PRINTK_NMI
407 s = &per_cpu(nmi_print_seq, cpu);
408 init_irq_work(&s->work, __printk_safe_flush);
409#endif
410 }
411
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000412 /* Flush pending messages that did not have scheduled IRQ works. */
413 printk_safe_flush();
414}