]> Git Repo - linux.git/commitdiff
dm verity: set DM_TARGET_IMMUTABLE feature flag
authorSarthak Kukreti <[email protected]>
Tue, 31 May 2022 19:56:40 +0000 (15:56 -0400)
committerMike Snitzer <[email protected]>
Tue, 31 May 2022 20:22:30 +0000 (16:22 -0400)
The device-mapper framework provides a mechanism to mark targets as
immutable (and hence fail table reloads that try to change the target
type). Add the DM_TARGET_IMMUTABLE flag to the dm-verity target's
feature flags to prevent switching the verity target with a different
target type.

Fixes: a4ffc152198e ("dm: add verity target")
Cc: [email protected]
Signed-off-by: Sarthak Kukreti <[email protected]>
Reviewed-by: Kees Cook <[email protected]>
Signed-off-by: Mike Snitzer <[email protected]>
drivers/md/dm-verity-target.c

index 80133aae0db372f0629f70cdb8563125b46dadd1..d6dbd47492a8533a213cb19547549c23a8591d24 100644 (file)
@@ -1312,6 +1312,7 @@ bad:
 
 static struct target_type verity_target = {
        .name           = "verity",
+       .features       = DM_TARGET_IMMUTABLE,
        .version        = {1, 8, 0},
        .module         = THIS_MODULE,
        .ctr            = verity_ctr,
This page took 0.052808 seconds and 4 git commands to generate.