Contributors: 18
Author Tokens Token Proportion Commits Commit Proportion
Sergey Senozhatsky 42 19.18% 1 3.85%
Marcos Paulo de Souza 40 18.26% 1 3.85%
Petr Mladek 37 16.89% 3 11.54%
John Ogness 26 11.87% 6 23.08%
Sebastian Andrzej Siewior 26 11.87% 1 3.85%
Russell King 14 6.39% 1 3.85%
Rasmus Villemoes 6 2.74% 1 3.85%
Pranith Kumar 5 2.28% 1 3.85%
Andrew Morton 4 1.83% 2 7.69%
Peter Zijlstra 3 1.37% 1 3.85%
Steven Rostedt 3 1.37% 1 3.85%
Jason Wessel 3 1.37% 1 3.85%
Song Muchun 2 0.91% 1 3.85%
Sasha Levin 2 0.91% 1 3.85%
Thomas Gleixner 2 0.91% 1 3.85%
Tejun Heo 2 0.91% 1 3.85%
Matt Mackall 1 0.46% 1 3.85%
Robert P. J. Day 1 0.46% 1 3.85%
Total 219 26

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
// 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/kprobes.h>

#include "internal.h"

/* Context where printk messages are never suppressed */
static atomic_t force_con;

void printk_force_console_enter(void)
{
	atomic_inc(&force_con);
}

void printk_force_console_exit(void)
{
	atomic_dec(&force_con);
}

bool is_printk_force_console(void)
{
	return atomic_read(&force_con);
}

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);
}

void __printk_deferred_enter(void)
{
	cant_migrate();
	__printk_safe_enter();
}

void __printk_deferred_exit(void)
{
	cant_migrate();
	__printk_safe_exit();
}

bool is_printk_legacy_deferred(void)
{
	/*
	 * The per-CPU variable @printk_context can be read safely in any
	 * context. CPU migration is always disabled when set.
	 */
	return (force_legacy_kthread() ||
		this_cpu_read(printk_context) ||
		in_nmi());
}

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 (is_printk_legacy_deferred())
		return vprintk_deferred(fmt, args);

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