From: Rob Landley <rob@landley.net>
To: Alexander Graf <agraf@suse.de>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] qemu-ppc can't run static uClibc binaries.
Date: Sun, 14 Feb 2010 02:36:27 -0600 [thread overview]
Message-ID: <201002140236.28953.rob@landley.net> (raw)
In-Reply-To: <4B73F8CC.6010406@suse.de>
[-- Attachment #1: Type: text/plain, Size: 3232 bytes --]
On Thursday 11 February 2010 06:32:12 Alexander Graf wrote:
> Rob Landley wrote:
> > Static binaries that run under the Linux kernel don't run under qemu-ppc.
> > For example, the prebuilt busybox binaries here:
> >
> > http://busybox.net/downloads/binaries/1.16.0/busybox-powerpc
> >
> > Don't run under qemu-ppc, but runs just fine under qemu-system-ppc with
> > the image at:
> >
> >
> > http://impactlinux.com/fwl/downloads/binaries/system-image-powerpc.tar.bz
> >2
> >
> > The reason is that the "powerpc spec" that qemu was written to is for
> > AIX, not for Linux, and thus the register layout qemu application
> > emulation provides for powerpc doesn't match what the kernel is actually
> > doing.
> >
> > For dynamically linked executables, the dynamic linker reorganizes the
> > register contents to match the AIX spec from IBM, but statically linked
> > binaries get what the kernel provides directly. Thus binaries statically
> > linked against uClibc won't run under qemu-ppc, but run under
> > qemu-system-ppc just fine.
> >
> > I tracked down this problem in 2007:
> >
> > http://landley.net/notes-2007.html#28-03-2007
> >
> > And reported it on the list at the time:
> >
> > http://lists.gnu.org/archive/html/qemu-devel/2007-03/msg00713.html
> > http://lists.gnu.org/archive/html/qemu-devel/2007-03/msg00720.html
> > http://lists.gnu.org/archive/html/qemu-devel/2007-04/msg00315.html
> >
> > However, the then-maintainer of powerpc believed nobody else ever had the
> > right to touch "her code":
> >
> > http://lists.gnu.org/archive/html/qemu-devel/2007-04/msg00198.html
> >
> > And I was unable to convince her that insisting reality change to match a
> > spec which wasn't even for the right platform was not a useful approach.
> > Thus the binary in the first link still won't run under qemu-ppc three
> > years later, despite running fine under a real Linux kernel.
>
> Patches are always welcome. The only thing you might want to make sure
> is that dynamically linked binaries also still continue to work :-).
Attached.
This may help explain the issue:
http://sources.redhat.com/ml/libc-alpha/2003-03/msg00272.html
It's not a question of dynamically linked Linux binaries. They work just fine
with either register layout. The dynamic linker converts the Linux layout to
the AIX layout, and is reentrant so it won't do it a second time if it's
already been converted.
The problem is that BSD wants the AIX layout, and hence this comment in linux-
user/elfload.c function init_thread():
/* Note that isn't exactly what regular kernel does
* but this is what the ABI wants and is needed to allow
* execution of PPC BSD programs.
*/
I.E. whoever wrote this already knows it's not what the Linux kernel is
actually doing, and they're not doing it for Linux, they're doing it for BSD.
The fix is probably to add #ifdef CONFIG_BSD around the appropriate chunk of
code. Attached is a patch to do that (plus tweaks to make the "you have an
unused variable, break the build!" logic shut up about it).
(Yes, I tested that a dynamically linked hello world still worked for me.)
Rob
--
Latency is more important than throughput. It's that simple. - Linus Torvalds
[-- Attachment #2: notbsd.patch --]
[-- Type: text/x-patch, Size: 1558 bytes --]
diff --git a/linux-user/elfload.c b/linux-user/elfload.c
index 1d5f651..eaabdac 100644
--- a/linux-user/elfload.c
+++ b/linux-user/elfload.c
@@ -513,12 +513,11 @@ do { \
static inline void init_thread(struct target_pt_regs *_regs, struct image_info *infop)
{
abi_ulong pos = infop->start_stack;
- abi_ulong tmp;
#if defined(TARGET_PPC64) && !defined(TARGET_ABI32)
abi_ulong entry, toc;
#endif
- _regs->gpr[1] = infop->start_stack;
+ _regs->gpr[1] = pos;
#if defined(TARGET_PPC64) && !defined(TARGET_ABI32)
entry = ldq_raw(infop->entry) + infop->load_addr;
toc = ldq_raw(infop->entry + 8) + infop->load_addr;
@@ -526,6 +525,8 @@ static inline void init_thread(struct target_pt_regs *_regs, struct image_info *
infop->entry = entry;
#endif
_regs->nip = infop->entry;
+
+#if defined(CONFIG_BSD)
/* Note that isn't exactly what regular kernel does
* but this is what the ABI wants and is needed to allow
* execution of PPC BSD programs.
@@ -534,9 +535,13 @@ static inline void init_thread(struct target_pt_regs *_regs, struct image_info *
get_user_ual(_regs->gpr[3], pos);
pos += sizeof(abi_ulong);
_regs->gpr[4] = pos;
- for (tmp = 1; tmp != 0; pos += sizeof(abi_ulong))
- tmp = ldl(pos);
+ for (;;) {
+ abi_ulong tmp = pos;
+ pos += sizeof(abi_ulong);
+ if (!ldl(tmp)) break;
+ }
_regs->gpr[5] = pos;
+#endif
}
/* See linux kernel: arch/powerpc/include/asm/elf.h. */
next prev parent reply other threads:[~2010-02-14 8:38 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-11 11:20 [Qemu-devel] qemu-ppc can't run static uClibc binaries Rob Landley
2010-02-11 12:32 ` Alexander Graf
2010-02-14 8:36 ` Rob Landley [this message]
2010-02-14 14:41 ` Alexander Graf
2010-02-15 11:10 ` Rob Landley
2010-02-15 11:19 ` Alexander Graf
2010-02-15 12:58 ` Rob Landley
2010-02-15 13:01 ` Alexander Graf
2010-02-16 18:31 ` Rob Landley
2010-02-16 18:36 ` Alexander Graf
2010-02-16 19:14 ` Rob Landley
2010-02-15 13:08 ` [Qemu-devel] " Michael S. Tsirkin
2010-02-16 0:52 ` Rob Landley
2010-02-16 9:31 ` Alexander Graf
2010-02-16 18:14 ` Rob Landley
2010-02-17 9:24 ` Artyom Tarasenko
2010-02-17 15:45 ` Paolo Bonzini
2010-02-17 18:55 ` Rob Landley
2010-02-17 20:46 ` Blue Swirl
2010-02-18 11:38 ` Artyom Tarasenko
2010-02-18 13:17 ` Rob Landley
2010-02-18 14:10 ` Artyom Tarasenko
2010-02-18 13:05 ` Rob Landley
2010-02-18 11:21 ` Artyom Tarasenko
2010-02-18 13:14 ` Rob Landley
2010-02-18 14:19 ` Artyom Tarasenko
2010-02-20 17:17 ` [Qemu-devel] Fun with sparc (was Re: qemu-ppc can't run static uClibc binaries.) Rob Landley
2010-02-20 17:34 ` [Qemu-devel] " Blue Swirl
2010-02-20 18:38 ` Rob Landley
2010-02-20 21:59 ` Blue Swirl
2010-02-20 23:12 ` Rob Landley
2010-02-21 16:25 ` [Qemu-devel] Commit 085219f79cad broke Sparc-32 back in 2.6.28 Rob Landley
2010-02-21 23:57 ` [Qemu-devel] " David Miller
2010-02-22 0:28 ` Bartlomiej Zolnierkiewicz
2010-02-22 2:03 ` Rob Landley
2010-02-22 2:06 ` David Miller
2010-02-20 21:59 ` [Qemu-devel] Re: Fun with sparc (was Re: qemu-ppc can't run static uClibc binaries.) Artyom Tarasenko
2010-02-20 21:39 ` Artyom Tarasenko
2010-02-20 22:03 ` Blue Swirl
2010-02-17 16:36 ` [Qemu-devel] Re: qemu-ppc can't run static uClibc binaries Rob Landley
2010-02-16 8:21 ` [Qemu-devel] " Stuart Brady
2010-02-28 21:05 ` Aurelien Jarno
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=201002140236.28953.rob@landley.net \
--to=rob@landley.net \
--cc=agraf@suse.de \
--cc=qemu-devel@nongnu.org \
/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).