Patch "ima: Fix the error code for restoring the PCR value" has been added to the 5.10-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

    ima: Fix the error code for restoring the PCR value

to the 5.10-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:
     ima-fix-the-error-code-for-restoring-the-pcr-value.patch
and it can be found in the queue-5.10 subdirectory.

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



commit 0e1e824de9244276a441227d04a5d85705bd3e52
Author: Li Huafei <lihuafei1@xxxxxxxxxx>
Date:   Wed Mar 3 11:28:24 2021 +0800

    ima: Fix the error code for restoring the PCR value
    
    [ Upstream commit 7990ccafaa37dc6d8bb095d4d7cd997e8903fd10 ]
    
    In ima_restore_measurement_list(), hdr[HDR_PCR].data is pointing to a
    buffer of type u8, which contains the dumped 32-bit pcr value.
    Currently, only the least significant byte is used to restore the pcr
    value. We should convert hdr[HDR_PCR].data to a pointer of type u32
    before fetching the value to restore the correct pcr value.
    
    Fixes: 47fdee60b47f ("ima: use ima_parse_buf() to parse measurements headers")
    Signed-off-by: Li Huafei <lihuafei1@xxxxxxxxxx>
    Reviewed-by: Roberto Sassu <roberto.sassu@xxxxxxxxxx>
    Signed-off-by: Mimi Zohar <zohar@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/security/integrity/ima/ima_template.c b/security/integrity/ima/ima_template.c
index 1e89e2d3851f..f83255a39e65 100644
--- a/security/integrity/ima/ima_template.c
+++ b/security/integrity/ima/ima_template.c
@@ -468,8 +468,8 @@ int ima_restore_measurement_list(loff_t size, void *buf)
 			}
 		}
 
-		entry->pcr = !ima_canonical_fmt ? *(hdr[HDR_PCR].data) :
-			     le32_to_cpu(*(hdr[HDR_PCR].data));
+		entry->pcr = !ima_canonical_fmt ? *(u32 *)(hdr[HDR_PCR].data) :
+			     le32_to_cpu(*(u32 *)(hdr[HDR_PCR].data));
 		ret = ima_restore_measurement_entry(entry);
 		if (ret < 0)
 			break;



[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