]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
netconsole: Do not shutdown dynamic configuration if cmdline is invalid
authorBreno Leitao <leitao@debian.org>
Tue, 28 May 2024 08:42:24 +0000 (01:42 -0700)
committerJakub Kicinski <kuba@kernel.org>
Thu, 30 May 2024 00:19:50 +0000 (17:19 -0700)
If a user provides an invalid netconsole configuration during boot time
(e.g., specifying an invalid ethX interface), netconsole will be
entirely disabled. Consequently, the user won't be able to create new
entries in /sys/kernel/config/netconsole/ as that directory does not
exist.

Apart from misconfiguration, another issue arises when ethX is loaded as
a module and the netconsole= line in the command line points to ethX,
resulting in an obvious failure. This renders netconsole unusable, as
/sys/kernel/config/netconsole/ will never appear. This is more annoying
since users reconfigure (or just toggle) the configuratin later (see
commit 5fbd6cdbe304b ("netconsole: Attach cmdline target to dynamic
target"))

Create /sys/kernel/config/netconsole/ even if the command line arguments
are invalid, so, users can create dynamic entries in netconsole.

Reported-by: Aijay Adams <aijay@meta.com>
Signed-off-by: Breno Leitao <leitao@debian.org>
Link: https://lore.kernel.org/r/20240528084225.3215853-1-leitao@debian.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/netconsole.c

index d7070dd4fe7367cb3aec7aa88a83d6e93e03537a..ab8a0623b1a17dccdd240e799700cb7fc1a10d4f 100644 (file)
@@ -1262,6 +1262,8 @@ static int __init init_netconsole(void)
                while ((target_config = strsep(&input, ";"))) {
                        nt = alloc_param_target(target_config, count);
                        if (IS_ERR(nt)) {
+                               if (IS_ENABLED(CONFIG_NETCONSOLE_DYNAMIC))
+                                       continue;
                                err = PTR_ERR(nt);
                                goto fail;
                        }