Skip to content

Commit 6e71582

Browse files
ebiggerstorvalds
authored andcommitted
docs: admin-guide: document the kernel.modprobe sysctl
Document the kernel.modprobe sysctl in the same place that all the other kernel.* sysctls are documented. Make sure to mention how to use this sysctl to completely disable module autoloading, and how this sysctl relates to CONFIG_STATIC_USERMODEHELPER. [[email protected]: v5] Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Eric Biggers <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Cc: Alexei Starovoitov <[email protected]> Cc: Greg Kroah-Hartman <[email protected]> Cc: Jeff Vander Stoep <[email protected]> Cc: Jessica Yu <[email protected]> Cc: Kees Cook <[email protected]> Cc: Luis Chamberlain <[email protected]> Cc: NeilBrown <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Linus Torvalds <[email protected]>
1 parent 26c5d78 commit 6e71582

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Documentation/admin-guide/sysctl/kernel.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,27 @@ Notes:
446446
successful IPC object allocation. If an IPC object allocation syscall
447447
fails, it is undefined if the value remains unmodified or is reset to -1.
448448

449+
modprobe:
450+
=========
451+
452+
The path to the usermode helper for autoloading kernel modules, by
453+
default "/sbin/modprobe". This binary is executed when the kernel
454+
requests a module. For example, if userspace passes an unknown
455+
filesystem type to mount(), then the kernel will automatically request
456+
the corresponding filesystem module by executing this usermode helper.
457+
This usermode helper should insert the needed module into the kernel.
458+
459+
This sysctl only affects module autoloading. It has no effect on the
460+
ability to explicitly insert modules.
461+
462+
If this sysctl is set to the empty string, then module autoloading is
463+
completely disabled. The kernel will not try to execute a usermode
464+
helper at all, nor will it call the kernel_module_request LSM hook.
465+
466+
If CONFIG_STATIC_USERMODEHELPER=y is set in the kernel configuration,
467+
then the configured static usermode helper overrides this sysctl,
468+
except that the empty string is still accepted to completely disable
469+
module autoloading as described above.
449470

450471
nmi_watchdog
451472
============

0 commit comments

Comments
 (0)