aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Berger <[email protected]>2022-01-25 17:46:23 -0500
committerMimi Zohar <[email protected]>2022-02-02 11:59:09 -0500
commitf7333b9572d0559e00352a926c92f29f061b4569 (patch)
treef4bf80865e7b2f37ea2ce571636069c862a22d09
parent83230351c523b04ff8a029a4bdf97d881ecb96fc (diff)
ima: Remove ima_policy file before directory
The removal of ima_dir currently fails since ima_policy still exists, so remove the ima_policy file before removing the directory. Fixes: 4af4662fa4a9 ("integrity: IMA policy") Signed-off-by: Stefan Berger <[email protected]> Cc: <[email protected]> Acked-by: Christian Brauner <[email protected]> Signed-off-by: Mimi Zohar <[email protected]>
-rw-r--r--security/integrity/ima/ima_fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/integrity/ima/ima_fs.c b/security/integrity/ima/ima_fs.c
index 3d8e9d5db5aa..3ad8f7734208 100644
--- a/security/integrity/ima/ima_fs.c
+++ b/security/integrity/ima/ima_fs.c
@@ -496,12 +496,12 @@ int __init ima_fs_init(void)
return 0;
out:
+ securityfs_remove(ima_policy);
securityfs_remove(violations);
securityfs_remove(runtime_measurements_count);
securityfs_remove(ascii_runtime_measurements);
securityfs_remove(binary_runtime_measurements);
securityfs_remove(ima_symlink);
securityfs_remove(ima_dir);
- securityfs_remove(ima_policy);
return -1;
}