summaryrefslogtreecommitdiff
path: root/kernel/printk/printk_safe.c
blob: caac4de1ea59a00544c19f5b2f9434972eec9f86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * printk_safe.c - Safe printk for printk-deadlock-prone contexts
 */

#include <linux/preempt.h>
#include <linux/kdb.h>
#include <linux/smp.h>
#include <linux/cpumask.h>
#include <linux/printk.h>
#include <linux/console.h>
#include <linux/kprobes.h>
#include <linux/delay.h>

#include "internal.h"

static DEFINE_PER_CPU(int, printk_context);

/* Can be preempted by NMI. */
void __printk_safe_enter(void)
{
	this_cpu_inc(printk_context);
}

/* Can be preempted by NMI. */
void __printk_safe_exit(void)
{
	this_cpu_dec(printk_context);
}

asmlinkage int vprintk(const char *fmt, va_list args)
{
#ifdef CONFIG_KGDB_KDB
	/* Allow to pass printk() to kdb but avoid a recursion. */
	if (unlikely(kdb_trap_printk && kdb_printf_cpu < 0))
		return vkdb_printf(KDB_MSGSRC_PRINTK, fmt, args);
#endif

	/*
	 * Use the main logbuf even in NMI. But avoid calling console
	 * drivers that might have their own locks.
	 */
	if (this_cpu_read(printk_context) || in_nmi()) {
		int len;

		len = vprintk_store(0, LOGLEVEL_DEFAULT, NULL, fmt, args);
		defer_console_output();
		return len;
	}

	/* No obstacles. */
	return vprintk_default(fmt, args);
}
EXPORT_SYMBOL(vprintk);

/**
 * try_block_console_kthreads() - Try to block console kthreads and
 *	make the global console_lock() avaialble
 *
 * @timeout_ms:        The maximum time (in ms) to wait.
 *
 * Prevent console kthreads from starting processing new messages. Wait
 * until the global console_lock() become available.
 *
 * Context: Can be called in any context.
 */
void try_block_console_kthreads(int timeout_ms)
{
	block_console_kthreads = true;

	/* Do not wait when the console lock could not be safely taken. */
	if (this_cpu_read(printk_context) || in_nmi())
		return;

	while (timeout_ms > 0) {
		if (console_trylock()) {
			console_unlock();
			return;
		}

		udelay(1000);
		timeout_ms -= 1;
	}
}