]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
module: Prevent silent truncation of module name in delete_module(2)
authorPetr Pavlu <petr.pavlu@suse.com>
Mon, 30 Jun 2025 14:32:32 +0000 (16:32 +0200)
committerDaniel Gomez <da.gomez@samsung.com>
Thu, 31 Jul 2025 11:57:21 +0000 (13:57 +0200)
commita6323bd4e611567913e23df5b58f2d4e4da06789
treef05fa6986f0abf77c62c571790464661a70d30ae
parent768da2eae8662ca51102794c32d37c17410acbf5
module: Prevent silent truncation of module name in delete_module(2)

Passing a module name longer than MODULE_NAME_LEN to the delete_module
syscall results in its silent truncation. This really isn't much of
a problem in practice, but it could theoretically lead to the removal of an
incorrect module. It is more sensible to return ENAMETOOLONG or ENOENT in
such a case.

Update the syscall to return ENOENT, as documented in the delete_module(2)
man page to mean "No module by that name exists." This is appropriate
because a module with a name longer than MODULE_NAME_LEN cannot be loaded
in the first place.

Signed-off-by: Petr Pavlu <petr.pavlu@suse.com>
Reviewed-by: Daniel Gomez <da.gomez@samsung.com>
Link: https://lore.kernel.org/r/20250630143535.267745-2-petr.pavlu@suse.com
Signed-off-by: Daniel Gomez <da.gomez@samsung.com>
kernel/module/main.c