]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Documentation/module-signing.txt: Note need for version info if reusing a key
authorBen Hutchings <ben@decadent.org.uk>
Wed, 27 Apr 2016 23:54:05 +0000 (09:24 +0930)
committerRusty Russell <rusty@rustcorp.com.au>
Wed, 27 Jul 2016 03:08:00 +0000 (12:38 +0930)
Signing a module should only make it trusted by the specific kernel it
was built for, not anything else.  If a module signing key is used for
multiple ABI-incompatible kernels, the modules need to include enough
version information to distinguish them.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Cc: stable@vger.kernel.org
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Documentation/module-signing.txt

index 696d5caf4fd891d29bda1f12fc4171ac38c4fb81..f0e3361db20caf7fda2d4acd85bcc2fbaaa1b59c 100644 (file)
@@ -271,3 +271,9 @@ Since the private key is used to sign modules, viruses and malware could use
 the private key to sign modules and compromise the operating system.  The
 private key must be either destroyed or moved to a secure location and not kept
 in the root node of the kernel source tree.
+
+If you use the same private key to sign modules for multiple kernel
+configurations, you must ensure that the module version information is
+sufficient to prevent loading a module into a different kernel.  Either
+set CONFIG_MODVERSIONS=y or ensure that each configuration has a different
+kernel release string by changing EXTRAVERSION or CONFIG_LOCALVERSION.