Patch "evm: Enforce signatures on unsupported filesystem for EVM_INIT_X509" has been added to the 6.9-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    evm: Enforce signatures on unsupported filesystem for EVM_INIT_X509

to the 6.9-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     evm-enforce-signatures-on-unsupported-filesystem-for.patch
and it can be found in the queue-6.9 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 95f380374864e6d7a58c904ff677d209c0695bb6
Author: Stefan Berger <stefanb@xxxxxxxxxxxxx>
Date:   Fri Feb 23 12:25:11 2024 -0500

    evm: Enforce signatures on unsupported filesystem for EVM_INIT_X509
    
    [ Upstream commit 47add87ad181473e5ef2438918669540ba5016a6 ]
    
    Unsupported filesystems currently do not enforce any signatures. Add
    support for signature enforcement of the "original" and "portable &
    immutable" signatures when EVM_INIT_X509 is enabled.
    
    The "original" signature type contains filesystem specific metadata.
    Thus it cannot be copied up and verified. However with EVM_INIT_X509
    and EVM_ALLOW_METADATA_WRITES enabled, the "original" file signature
    may be written.
    
    When EVM_ALLOW_METADATA_WRITES is not set or once it is removed from
    /sys/kernel/security/evm by setting EVM_INIT_HMAC for example, it is not
    possible to write or remove xattrs on the overlay filesystem.
    
    This change still prevents EVM from writing HMAC signatures on
    unsupported filesystem when EVM_INIT_HMAC is enabled.
    
    Co-developed-by: Mimi Zohar <zohar@xxxxxxxxxxxxx>
    Signed-off-by: Stefan Berger <stefanb@xxxxxxxxxxxxx>
    Signed-off-by: Mimi Zohar <zohar@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/security/integrity/evm/evm_main.c b/security/integrity/evm/evm_main.c
index 81dbade5b9b3d..518b3090cdb77 100644
--- a/security/integrity/evm/evm_main.c
+++ b/security/integrity/evm/evm_main.c
@@ -192,7 +192,11 @@ static enum integrity_status evm_verify_hmac(struct dentry *dentry,
 		     iint->evm_status == INTEGRITY_PASS_IMMUTABLE))
 		return iint->evm_status;
 
-	if (is_unsupported_fs(dentry))
+	/*
+	 * On unsupported filesystems without EVM_INIT_X509 enabled, skip
+	 * signature verification.
+	 */
+	if (!(evm_initialized & EVM_INIT_X509) && is_unsupported_fs(dentry))
 		return INTEGRITY_UNKNOWN;
 
 	/* if status is not PASS, try to check again - against -ENOMEM */
@@ -260,7 +264,8 @@ static enum integrity_status evm_verify_hmac(struct dentry *dentry,
 				evm_status = INTEGRITY_PASS_IMMUTABLE;
 			} else if (!IS_RDONLY(inode) &&
 				   !(inode->i_sb->s_readonly_remount) &&
-				   !IS_IMMUTABLE(inode)) {
+				   !IS_IMMUTABLE(inode) &&
+				   !is_unsupported_fs(dentry)) {
 				evm_update_evmxattr(dentry, xattr_name,
 						    xattr_value,
 						    xattr_value_len);
@@ -418,9 +423,6 @@ enum integrity_status evm_verifyxattr(struct dentry *dentry,
 	if (!evm_key_loaded() || !evm_protected_xattr(xattr_name))
 		return INTEGRITY_UNKNOWN;
 
-	if (is_unsupported_fs(dentry))
-		return INTEGRITY_UNKNOWN;
-
 	return evm_verify_hmac(dentry, xattr_name, xattr_value,
 				 xattr_value_len);
 }




[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux