From: Johannes Weiner <hannes@saeurebad.de>
To: Rusty Russell <rusty@rustcorp.com.au>
Cc: Mike Travis <travis@sgi.com>,
linux-kernel@vger.kernel.org, "H. Anvin" <hpa@zytor.com>,
Christoph Lameter <cl@linux-foundation.org>,
Ingo Molnar <mingo@elte.hu>
Subject: Re: Dangerous code in cpumask_of_cpu?
Date: Tue, 08 Jul 2008 11:28:32 +0200 [thread overview]
Message-ID: <877ibwn2rj.fsf@saeurebad.de> (raw)
In-Reply-To: <87ej64n3xt.fsf@saeurebad.de> (Johannes Weiner's message of "Tue, 08 Jul 2008 11:03:10 +0200")
[ fixed christoph's address in cc]
Johannes Weiner <hannes@saeurebad.de> writes:
>> I guess because we dereference it immediately again, the location is not
>> clobbered yet. At least in my test case, gcc assembled it to code that
>> puts the address in eax and derefences it immediately, before eax is
>> reused:
>
> Gee, just ignore this bs. The address is in eax, not the value.
My theory was half-right. Since the code is a macro, there is no call
and hence no stack clean-up. And although it is UB, it works correctly
as the value is not yet clobbered when we access it again. Converting
foo to a macro yields this:
movl $42, -8(%ebp)
leal -8(%ebp), %eax
movl (%eax), %eax
...
ret
gcc only emits a warning if the scope we leak a local address from is
that of a function.
Hannes
next prev parent reply other threads:[~2008-07-08 9:28 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-07-08 8:16 Dangerous code in cpumask_of_cpu? Rusty Russell
2008-07-08 8:35 ` Johannes Weiner
2008-07-08 8:54 ` Johannes Weiner
2008-07-08 9:03 ` Johannes Weiner
2008-07-08 9:28 ` Johannes Weiner [this message]
2008-07-08 15:29 ` Mike Travis
2008-07-09 2:22 ` Rusty Russell
2008-07-09 14:42 ` Mike Travis
2008-07-08 9:33 ` Rusty Russell
2008-07-08 10:24 ` Andreas Schwab
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=877ibwn2rj.fsf@saeurebad.de \
--to=hannes@saeurebad.de \
--cc=cl@linux-foundation.org \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=rusty@rustcorp.com.au \
--cc=travis@sgi.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