From: Richard Henderson <richard.henderson@linaro.org>
To: Fangrui Song <i@maskray.me>, qemu-devel@nongnu.org
Cc: "Philippe Mathieu-Daudé" <philmd@redhat.com>,
"Daniel P. Berrangé" <berrange@redhat.com>,
"Richard Henderson" <rth@twiddle.net>
Subject: Re: [PATCH] configure: Use lld --image-base for --disable-pie user mode binaries
Date: Sun, 1 Dec 2019 13:48:08 -0800 [thread overview]
Message-ID: <e5bf2584-bae2-8dda-a2b2-8930ee17ea86@linaro.org> (raw)
In-Reply-To: <20191127183631.n3kfz7k5szri27b3@gmail.com>
On 11/27/19 6:36 PM, Fangrui Song wrote:
> On 2019-11-20, Fangrui Song wrote:
>> On 2019-11-15, Fangrui Song wrote:
>>> For lld, --image-base is the preferred way to set the base address.
>>> lld does not actually implement -Ttext-segment, but treats it as an alias for
>>> -Ttext. -Ttext-segment=0x60000000 combined with --no-rosegment can
>>> create a 1.6GB executable.
>>>
>>> Fix the problem by using --image-base for lld. GNU ld and gold will
>>> still get -Ttext-segment. Also delete the ld --verbose fallback introduced
>>> in 2013, which is no longer relevant or correct (the default linker
>>> script has changed).
>>>
>>> Signed-off-by: Fangrui Song <i@maskray.me>
>>> ---
>>> configure | 33 ++++++++++++---------------------
>>> 1 file changed, 12 insertions(+), 21 deletions(-)
>>>
>>> diff --git a/configure b/configure
>>> index 6099be1d84..2d45af0d09 100755
>>> --- a/configure
>>> +++ b/configure
>>> @@ -6336,43 +6336,34 @@ fi
>>>
>>> # Probe for the need for relocating the user-only binary.
>>> if ( [ "$linux_user" = yes ] || [ "$bsd_user" = yes ] ) && [ "$pie" = no ];
>>> then
>>> - textseg_addr=
>>> + image_base=
>>> case "$cpu" in
>>> arm | i386 | ppc* | s390* | sparc* | x86_64 | x32)
>>> - # ??? Rationale for choosing this address
>>> - textseg_addr=0x60000000
>>> + # An arbitrary address that makes it unlikely to collide with user
>>> + # programs.
Please don't replace this ??? with an arbitrary rationale, which clearly
doesn't apply to all of these hosts.
>>> + image_base=0x60000000
>>> ;;
>>> mips)
>>> # A 256M aligned address, high in the address space, with enough
>>> # room for the code_gen_buffer above it before the stack.
This is the only one with a proper rationale.
That said, I'm not sure that the proper way to handle this issue with lld is to
drop this code entirely.
The best way to handle the underlying issue -- address conflict between
interpreter and guest binary -- is PIE, for which this code is skipped.
After that, we go to some pain to choose a guest_base address that allows the
guest binary to load around the interpreter's reserved addresses.
So what's left that this messing about with link addresses buys us?
r~
next prev parent reply other threads:[~2019-12-01 21:49 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-16 5:28 [PATCH] configure: Use lld --image-base for --disable-pie user mode binaries Fangrui Song
2019-11-20 21:02 ` Fangrui Song
2019-11-27 18:36 ` Fangrui Song
2019-12-01 21:48 ` Richard Henderson [this message]
2019-12-02 4:06 ` Fangrui Song
2019-12-10 7:10 ` Fangrui Song
2019-12-17 7:11 ` Fangrui Song
2019-11-27 19:01 ` Alex Bennée
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=e5bf2584-bae2-8dda-a2b2-8930ee17ea86@linaro.org \
--to=richard.henderson@linaro.org \
--cc=berrange@redhat.com \
--cc=i@maskray.me \
--cc=philmd@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/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;
as well as URLs for NNTP newsgroup(s).