]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
printk: Introduce FORCE_CON flag
authorMarcos Paulo de Souza <mpdesouza@suse.com>
Tue, 5 Nov 2024 19:45:08 +0000 (16:45 -0300)
committerPetr Mladek <pmladek@suse.com>
Mon, 11 Nov 2024 11:53:31 +0000 (12:53 +0100)
Introduce FORCE_CON flag to printk. The new flag will make it possible to
create a context where printk messages will never be suppressed.

This mechanism will be used in the next patch to create a force_con
context on sysrq handling, removing an existing workaround on the
loglevel global variable. The workaround existed to make sure that sysrq
header messages were sent to all consoles, but this doesn't work with
deferred messages because the loglevel might be restored to its original
value before a console flushes the messages.

Signed-off-by: Marcos Paulo de Souza <mpdesouza@suse.com>
Reviewed-by: John Ogness <john.ogness@linutronix.de>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://lore.kernel.org/r/20241105-printk-loud-con-v2-1-bd3ecdf7b0e4@suse.com
Signed-off-by: Petr Mladek <pmladek@suse.com>
include/linux/printk.h
kernel/printk/internal.h
kernel/printk/printk.c
kernel/printk/printk_safe.c

index eca9bb2ee637b6d4206bb8827893d6eb7a2709e5..232e5fd0670188b3778ba9c026269abcd03cad42 100644 (file)
@@ -166,6 +166,9 @@ __printf(1, 2) __cold int _printk_deferred(const char *fmt, ...);
 extern void __printk_deferred_enter(void);
 extern void __printk_deferred_exit(void);
 
+extern void printk_force_console_enter(void);
+extern void printk_force_console_exit(void);
+
 /*
  * The printk_deferred_enter/exit macros are available only as a hack for
  * some code paths that need to defer all printk console printing. Interrupts
index 3fcb48502adbd813588f50934daa76b106291450..c6bb47666aef67ef4d5281eaa0b865d150fb455e 100644 (file)
@@ -53,6 +53,8 @@ int devkmsg_sysctl_set_loglvl(const struct ctl_table *table, int write,
 
 /* Flags for a single printk record. */
 enum printk_info_flags {
+       /* always show on console, ignore console_loglevel */
+       LOG_FORCE_CON   = 1,
        LOG_NEWLINE     = 2,    /* text ended with a newline */
        LOG_CONT        = 8,    /* text is a fragment of a continuation line */
 };
@@ -90,6 +92,7 @@ bool printk_percpu_data_ready(void);
 
 void defer_console_output(void);
 bool is_printk_legacy_deferred(void);
+bool is_printk_force_console(void);
 
 u16 printk_parse_prefix(const char *text, int *level,
                        enum printk_info_flags *flags);
index 71e4fe6f9b85ed1f4dd4f8667e95e292100d77ac..7cb44f9f382533c3b6e883f3631bcfa17a8a44b1 100644 (file)
@@ -1319,11 +1319,11 @@ static void boot_delay_msec(int level)
 {
        unsigned long long k;
        unsigned long timeout;
+       bool suppress = !is_printk_force_console() &&
+                       suppress_message_printing(level);
 
-       if ((boot_delay == 0 || system_state >= SYSTEM_RUNNING)
-               || suppress_message_printing(level)) {
+       if ((boot_delay == 0 || system_state >= SYSTEM_RUNNING) || suppress)
                return;
-       }
 
        k = (unsigned long long)loops_per_msec * boot_delay;
 
@@ -2273,6 +2273,9 @@ int vprintk_store(int facility, int level,
        if (dev_info)
                flags |= LOG_NEWLINE;
 
+       if (is_printk_force_console())
+               flags |= LOG_FORCE_CON;
+
        if (flags & LOG_CONT) {
                prb_rec_init_wr(&r, reserve_size);
                if (prb_reserve_in_last(&e, prb, &r, caller_id, PRINTKRB_RECORD_MAX)) {
@@ -2280,6 +2283,9 @@ int vprintk_store(int facility, int level,
                                                 facility, &flags, fmt, args);
                        r.info->text_len += text_len;
 
+                       if (flags & LOG_FORCE_CON)
+                               r.info->flags |= LOG_FORCE_CON;
+
                        if (flags & LOG_NEWLINE) {
                                r.info->flags |= LOG_NEWLINE;
                                prb_final_commit(&e);
@@ -2947,6 +2953,7 @@ bool printk_get_next_message(struct printk_message *pmsg, u64 seq,
        struct printk_info info;
        struct printk_record r;
        size_t len = 0;
+       bool force_con;
 
        /*
         * Formatting extended messages requires a separate buffer, so use the
@@ -2965,9 +2972,13 @@ bool printk_get_next_message(struct printk_message *pmsg, u64 seq,
 
        pmsg->seq = r.info->seq;
        pmsg->dropped = r.info->seq - seq;
+       force_con = r.info->flags & LOG_FORCE_CON;
 
-       /* Skip record that has level above the console loglevel. */
-       if (may_suppress && suppress_message_printing(r.info->level))
+       /*
+        * Skip records that are not forced to be printed on consoles and that
+        * has level above the console loglevel.
+        */
+       if (!force_con && may_suppress && suppress_message_printing(r.info->level))
                goto out;
 
        if (is_extended) {
index 2b35a9d3919d8bfbb5aa83e3e994fb65f7abfaf9..6f94418d53ffba6b6e7ee8bf645deb5823dcf669 100644 (file)
 
 #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. */