From: Dan Carpenter <dan.carpenter@linaro.org>
To: Toomas Soome <tsoome@me.com>
Cc: smatch@vger.kernel.org
Subject: Re: apparent bug about check_free_strict
Date: Tue, 25 Nov 2025 17:50:52 +0300 [thread overview]
Message-ID: <aSXCTMDPPmSXQ9BS@stanley.mountain> (raw)
In-Reply-To: <27F1E218-CB00-48C3-9515-A40ACBF05828@me.com>
On Tue, Nov 25, 2025 at 04:28:03PM +0200, Toomas Soome wrote:
> And another interesting case:
>
> smatch is complaining about about ‘pptr’ but we do free ‘ptr’.
>
> /code/illumos-gate/usr/src/tools/proto/root_i386-nd/opt/onbld/bin/i386/smatch: adm_kef_util.c:1243 filter_mechlist() error: dereferencing freed memory 'pptr' (line 1242)
>
> 1225 filter_mechlist(mechlist_t **pmechlist, const char *mech)
> 1226 {
> 1227 int cnt = 0;
> 1228 mechlist_t *ptr, *pptr;
> 1229 boolean_t mech_present = B_FALSE;
> 1230
> 1231 ptr = pptr = *pmechlist;
> 1232
> 1233 while (ptr != NULL) {
> 1234 if (strncmp(ptr->name, mech, sizeof (mech_name_t)) == 0) {
> 1235 mech_present = B_TRUE;
> 1236 if (ptr == *pmechlist) {
> 1237 pptr = *pmechlist = ptr->next;
> 1238 free(ptr);
> 1239 ptr = pptr;
> 1240 } else {
> 1241 pptr->next = ptr->next;
> 1242 free(ptr);
> 1243 ptr = pptr->next;
This one is explainable... Smatch is crap at loops, and only parses the
loop one time. It might look like Smatch parses loops but it's all
hacks and special cases.
So, in this case, instead of seeing that "this is the second iteration
through the loop", Smatch says "this is dead code, but all of our other
assumptions are probably correct including that "ptr = pptr = *pmechlist".
So when we free "ptr" we're also freeing "pptr".
I've known the correct way to handle loops for over ten years now and
I partially wrote the code ten years ago. But I've never wanted to do
it because it will slow everything down a lot. It's quite a bit of
work as well, but mostly it was the slow down that was the issue.
But I think I'm going to try to make Smatch work better on other
projects outside the kernel so adding more and more loop hacks will
become less feasible and I will care less about slow downs so I
have decided I am going to do this work soon.
Basically you just parse every function twice and you store the next
iteration states for every loop. Then you parse the functions again
and merge in the next iteration states. It's a 2x slow down in
parsing. I already have the --two-passes option but I haven't looked
at the output in a while...
regards,
dan carpenter
next prev parent reply other threads:[~2025-11-25 14:50 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-18 11:55 apparent bug about check_free_strict Toomas Soome
2024-11-18 12:52 ` Dan Carpenter
2024-11-18 13:28 ` Toomas Soome
2024-11-18 15:27 ` Dan Carpenter
[not found] ` <ADB0555A-8DE4-49D1-B769-A02EB82690A9@me.com>
2025-11-21 18:01 ` Toomas Soome
2025-11-24 14:46 ` Dan Carpenter
2025-11-24 15:30 ` Toomas Soome
2025-11-25 13:38 ` Toomas Soome
2025-11-25 14:28 ` Toomas Soome
2025-11-25 14:50 ` Dan Carpenter [this message]
2025-11-25 15:04 ` Toomas Soome
2025-11-25 15:34 ` Oleg Drokin
2025-11-26 12:14 ` Dan Carpenter
2025-11-25 17:12 ` Dan Carpenter
[not found] ` <32FD91B6-32B3-45FC-A6E5-EA39439466E3@me.com>
2025-11-26 15:12 ` Dan Carpenter
[not found] ` <45D1224C-6C4C-4745-9FA6-F07BB1792831@me.com>
2025-11-25 13:50 ` Dan Carpenter
2025-11-25 13:40 ` Dan Carpenter
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=aSXCTMDPPmSXQ9BS@stanley.mountain \
--to=dan.carpenter@linaro.org \
--cc=smatch@vger.kernel.org \
--cc=tsoome@me.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