From: Stefan Berger <stefanb@linux.ibm.com>
To: linux-integrity@vger.kernel.org
Cc: zohar@linux.ibm.com, roberto.sassu@huawei.com,
Stefan Berger <stefanb@linux.ibm.com>
Subject: [ima-evm-utils: PATCH 2/2] Avoid memory leak if public_keys is NULL
Date: Tue, 24 Mar 2026 17:23:42 -0400 [thread overview]
Message-ID: <20260324212342.739685-3-stefanb@linux.ibm.com> (raw)
In-Reply-To: <20260324212342.739685-1-stefanb@linux.ibm.com>
Avoid a memory leak of a public_key_entry if the passed public_keys
pointer is NULL because in this case the entry is lost. For this particular
case to work we would need public keys to be passed in as
'struct public_key_entry **public_keys' so that '*public_keys = entry'
could be assign. However, this change would propagate all the way to the
API of the library and we don't want to change existing functions'
signature.
This change should not have any noticeable side-effect since the resolved
case did not work before but the newly allocated entry was lost.
Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
---
src/libimaevm.c | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/src/libimaevm.c b/src/libimaevm.c
index 6512ee5..d8d5dbc 100644
--- a/src/libimaevm.c
+++ b/src/libimaevm.c
@@ -378,17 +378,16 @@ static EVP_PKEY *find_keyid(struct public_key_entry *public_keys,
tail = entry;
}
- /* add unknown keys to list */
- entry = calloc(1, sizeof(struct public_key_entry));
- if (!entry) {
- perror("calloc");
- return 0;
- }
- entry->keyid = keyid;
- if (tail)
+ /* add unknown keys to tail of list */
+ if (tail) {
+ entry = calloc(1, sizeof(struct public_key_entry));
+ if (!entry) {
+ perror("calloc");
+ return 0;
+ }
+ entry->keyid = keyid;
tail->next = entry;
- else
- public_keys = entry;
+ }
log_err("key %d: %x (unknown keyid)\n", i, __be32_to_cpup(&keyid));
return 0;
}
--
2.53.0
prev parent reply other threads:[~2026-03-24 21:23 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-24 21:23 [ima-evm-utils: PATCH 0/2] Fix memory leaks in libimaevm Stefan Berger
2026-03-24 21:23 ` [ima-evm-utils: PATCH 1/2] Use EVP_PKEY_free to free a key of public_key_entry Stefan Berger
2026-03-24 21:23 ` Stefan Berger [this message]
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=20260324212342.739685-3-stefanb@linux.ibm.com \
--to=stefanb@linux.ibm.com \
--cc=linux-integrity@vger.kernel.org \
--cc=roberto.sassu@huawei.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