summaryrefslogtreecommitdiffstats
path: root/drivers/md
diff options
context:
space:
mode:
authorJohn Keeping <john@metanate.com>2021-05-12 12:14:21 +0100
committerMike Snitzer <snitzer@redhat.com>2021-05-25 16:14:05 -0400
commit0c1f3193b1cdd21e7182f97dc9bca7d284d18a15 (patch)
treed396e1e07190a4ec0410d3227f64fac2039cfa52 /drivers/md
parentc4681547bcce777daf576925a966ffa824edd09d (diff)
downloadlinux-0c1f3193b1cdd21e7182f97dc9bca7d284d18a15.tar.gz
linux-0c1f3193b1cdd21e7182f97dc9bca7d284d18a15.tar.bz2
linux-0c1f3193b1cdd21e7182f97dc9bca7d284d18a15.zip
dm verity: fix require_signatures module_param permissions
The third parameter of module_param() is permissions for the sysfs node but it looks like it is being used as the initial value of the parameter here. In fact, false here equates to omitting the file from sysfs and does not affect the value of require_signatures. Making the parameter writable is not simple because going from false->true is fine but it should not be possible to remove the requirement to verify a signature. But it can be useful to inspect the value of this parameter from userspace, so change the permissions to make a read-only file in sysfs. Signed-off-by: John Keeping <john@metanate.com> Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/dm-verity-verify-sig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-verity-verify-sig.c b/drivers/md/dm-verity-verify-sig.c
index 29385dc470d5..db61a1f43ae9 100644
--- a/drivers/md/dm-verity-verify-sig.c
+++ b/drivers/md/dm-verity-verify-sig.c
@@ -15,7 +15,7 @@
#define DM_VERITY_VERIFY_ERR(s) DM_VERITY_ROOT_HASH_VERIFICATION " " s
static bool require_signatures;
-module_param(require_signatures, bool, false);
+module_param(require_signatures, bool, 0444);
MODULE_PARM_DESC(require_signatures,
"Verify the roothash of dm-verity hash tree");