From: Stefan Berger <stefanb@linux.ibm.com>
To: Mimi Zohar <zohar@linux.ibm.com>,
steven chen <chenste@linux.microsoft.com>,
roberto.sassu@huaweicloud.com, roberto.sassu@huawei.com,
eric.snowberg@oracle.com, ebiederm@xmission.com,
paul@paul-moore.com, code@tyhicks.com, bauermann@kolabnow.com,
linux-integrity@vger.kernel.org, kexec@lists.infradead.org,
linux-security-module@vger.kernel.org,
linux-kernel@vger.kernel.org
Cc: madvenka@linux.microsoft.com, nramas@linux.microsoft.com,
James.Bottomley@HansenPartnership.com
Subject: Re: [PATCH v7 7/7] ima: measure kexec load and exec events as critical data
Date: Fri, 7 Feb 2025 12:48:52 -0500 [thread overview]
Message-ID: <8ca0bdd9-7cae-4adf-b4c0-eebf057d4c5b@linux.ibm.com> (raw)
In-Reply-To: <b2b3fa5d3d20284f790ce74bb97da2b9795a0e0e.camel@linux.ibm.com>
On 2/7/25 12:06 PM, Mimi Zohar wrote:
> On Fri, 2025-02-07 at 10:16 -0500, Mimi Zohar wrote:
>> On Mon, 2025-02-03 at 15:20 -0800, steven chen wrote:
>>> The amount of memory allocated at kexec load, even with the extra memory
>>> allocated, might not be large enough for the entire measurement list. The
>>> indeterminate interval between kexec 'load' and 'execute' could exacerbate
>>> this problem.
>>>
>>> Define two new IMA events, 'kexec_load' and 'kexec_execute', to be
>>> measured as critical data at kexec 'load' and 'execute' respectively.
>>> Report the allocated kexec segment size, IMA binary log size and the
>>> runtime measurements count as part of those events.
>>>
>>> These events, and the values reported through them, serve as markers in
>>> the IMA log to verify the IMA events are captured during kexec soft
>>> reboot. The presence of a 'kexec_load' event in between the last two
>>> 'boot_aggregate' events in the IMA log implies this is a kexec soft
>>> reboot, and not a cold-boot. And the absence of 'kexec_execute' event
>>> after kexec soft reboot implies missing events in that window which
>>> results in inconsistency with TPM PCR quotes, necessitating a cold boot
>>> for a successful remote attestation.
>>
>> As a reminder, please include directions for verifying the buffer data hash against
>> the buffer data. The directions would be similar to those in commit 6b4da8c0e7f
>> ("IMA: Define a new template field buf").
>>
>>>
>>> Reviewed-by: Stefan Berger <stefanb@linux.ibm.com>
>>> Author: Tushar Sugandhi <tusharsu@linux.microsoft.com>
>>> Signed-off-by: Tushar Sugandhi <tusharsu@linux.microsoft.com>
>>> Signed-off-by: steven chen <chenste@linux.microsoft.com>
>>> ---
>>> security/integrity/ima/ima_kexec.c | 23 +++++++++++++++++++++++
>>> 1 file changed, 23 insertions(+)
>>>
>>> diff --git a/security/integrity/ima/ima_kexec.c
>>> b/security/integrity/ima/ima_kexec.c
>>> index c9c916f69ca7..0342ddfa9342 100644
>>> --- a/security/integrity/ima/ima_kexec.c
>>> +++ b/security/integrity/ima/ima_kexec.c
>>> @@ -17,6 +17,8 @@
>>> #include "ima.h"
>>>
>>> #ifdef CONFIG_IMA_KEXEC
>>> +#define IMA_KEXEC_EVENT_LEN 256
>>> +
>>> static struct seq_file ima_kexec_file;
>>> static void *ima_kexec_buffer;
>>> static size_t kexec_segment_size;
>>> @@ -36,6 +38,24 @@ static void ima_free_kexec_file_buf(struct seq_file *sf)
>>> ima_reset_kexec_file(sf);
>>> }
>>>
>>> +static void ima_measure_kexec_event(const char *event_name)
>>> +{
>>> + char ima_kexec_event[IMA_KEXEC_EVENT_LEN];
>>> + size_t buf_size = 0;
>>> + long len;
>>> +
>>> + buf_size = ima_get_binary_runtime_size();
>>> + len = atomic_long_read(&ima_htable.len);
>>> +
>>> + scnprintf(ima_kexec_event, IMA_KEXEC_EVENT_LEN,
>>> + "kexec_segment_size=%lu;ima_binary_runtime_size=%lu;"
>>> + "ima_runtime_measurements_count=%ld;",
>>> + kexec_segment_size, buf_size, len);
>>
>> From scripts/checkpatch.pl, "Alignment should match open parenthesis".
>>
>>> +
>>> + ima_measure_critical_data("ima_kexec", event_name, ima_kexec_event,
>>> + strlen(ima_kexec_event), false, NULL,
>>> 0);
>>
>> From the kernel-doc scnprintf(), returns the number of bytes. There should be no
>> need to calculate it using strlen().
>>
>>> +}
>>> +
>>> static int ima_alloc_kexec_file_buf(size_t segment_size)
>>> {
>>> /*
>>> @@ -60,6 +80,7 @@ static int ima_alloc_kexec_file_buf(size_t segment_size)
>>> out:
>>> ima_kexec_file.read_pos = 0;
>>> ima_kexec_file.count = sizeof(struct ima_kexec_hdr); /* reserved
>>> space
>>> */
>>> + ima_measure_kexec_event("kexec_load");
>>>
>>> return 0;
>>> }
>>> @@ -201,6 +222,8 @@ static int ima_update_kexec_buffer(struct notifier_block
>>> *self,
>>> return ret;
>>> }
>>>
>>> + ima_measure_kexec_event("kexec_execute");
>>> +
>>> ret = ima_dump_measurement_list(&buf_size, &buf,
>>> kexec_segment_size);
>>>
>>
>> After fixing up and applying this patch set to 6.14.0-rc1, I'm not seeing the
>> "kexec_execute". Even after changing the default extra memory, I'm still not
>> seeing
>> the measurement.
>
> FYI, after reverting commit 254ef9541d68 ("ima: Suspend PCR extends and log appends
> when rebooting"), I'm seeing the "kexec_execute" measurement.
I would try sth. like this:
static int ima_reboot_notifier(struct notifier_block *nb,
unsigned long action,
void *data)
{
if (action == SYS_RESTART && data && !strcmp(data, "kexec reboot"))
ima_measure_kexec_event("kexec_execute");
>
> Mimi
>
>
next prev parent reply other threads:[~2025-02-07 17:55 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-03 23:20 [PATCH v7 0/7] ima: kexec: measure events between kexec load and excute steven chen
2025-02-03 23:20 ` [PATCH v7 1/7] ima: define and call ima_alloc_kexec_file_buf steven chen
2025-02-06 16:49 ` Mimi Zohar
2025-02-07 19:20 ` steven chen
2025-02-07 19:36 ` Mimi Zohar
2025-02-07 19:10 ` Mimi Zohar
2025-02-07 19:23 ` steven chen
2025-02-03 23:20 ` [PATCH v7 2/7] kexec: define functions to map and unmap segments steven chen
2025-02-07 19:15 ` Mimi Zohar
2025-02-10 17:06 ` steven chen
2025-02-12 13:03 ` Mimi Zohar
2025-02-18 4:24 ` Baoquan He
2025-02-03 23:20 ` [PATCH v7 3/7] ima: kexec: skip IMA segment validation after kexec soft reboot steven chen
2025-02-04 19:39 ` Stefan Berger
2025-02-04 20:28 ` steven chen
2025-02-04 22:51 ` Stefan Berger
2025-02-07 19:24 ` steven chen
2025-02-03 23:20 ` [PATCH v7 4/7] ima: kexec: define functions to copy IMA log at soft boot steven chen
2025-02-03 23:20 ` steven chen
2025-02-03 23:20 ` [PATCH v7 5/7] ima: kexec: move IMA log copy from kexec load to execute steven chen
2025-02-03 23:20 ` [PATCH v7 6/7] ima: make the kexec extra memory configurable steven chen
2025-02-07 16:04 ` Mimi Zohar
2025-02-03 23:20 ` [PATCH v7 7/7] ima: measure kexec load and exec events as critical data steven chen
2025-02-07 15:16 ` Mimi Zohar
2025-02-07 17:06 ` Mimi Zohar
2025-02-07 17:48 ` Stefan Berger [this message]
2025-02-07 19:26 ` steven chen
-- strict thread matches above, loose matches on Subject: below --
2025-02-18 17:20 [PATCH v7 0/7] ima: kexec: measure events between kexec load and execute steven chen
2025-02-18 17:20 ` [PATCH v7 7/7] ima: measure kexec load and exec events as critical data steven chen
2025-02-03 18:45 [PATCH v7 0/7] ima: kexec: measure events between kexec load and excute steven chen
2025-02-03 18:45 ` [PATCH v7 7/7] ima: measure kexec load and exec events as critical data steven chen
2025-02-03 18:42 [PATCH v7 0/7] ima: kexec: measure events between kexec load and excute steven chen
2025-02-03 18:42 ` [PATCH v7 7/7] ima: measure kexec load and exec events as critical data steven chen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8ca0bdd9-7cae-4adf-b4c0-eebf057d4c5b@linux.ibm.com \
--to=stefanb@linux.ibm.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=bauermann@kolabnow.com \
--cc=chenste@linux.microsoft.com \
--cc=code@tyhicks.com \
--cc=ebiederm@xmission.com \
--cc=eric.snowberg@oracle.com \
--cc=kexec@lists.infradead.org \
--cc=linux-integrity@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-security-module@vger.kernel.org \
--cc=madvenka@linux.microsoft.com \
--cc=nramas@linux.microsoft.com \
--cc=paul@paul-moore.com \
--cc=roberto.sassu@huawei.com \
--cc=roberto.sassu@huaweicloud.com \
--cc=zohar@linux.ibm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox