qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Adam Lackorzynski <adam@os.inf.tu-dresden.de>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] Crash due to invalid env->current_tb
Date: Wed, 30 Apr 2008 22:36:36 +0200	[thread overview]
Message-ID: <20080430203636.GC8164@os.inf.tu-dresden.de> (raw)
In-Reply-To: <1209569284.4312.35.camel@frecb07144>


On Wed Apr 30, 2008 at 17:28:04 +0200, Laurent Vivier wrote:
> 
> Le mercredi 30 avril 2008 à 17:11 +0200, Adam Lackorzynski a écrit :
> > On Wed Apr 30, 2008 at 11:08:46 +0200, Alexander Graf wrote:
> > >
> > > On Apr 29, 2008, at 8:40 PM, Adam Lackorzynski wrote:
> > >
> > >>
> > >> On Tue Apr 29, 2008 at 20:09:00 +0300, Blue Swirl wrote:
> > >>> On 4/29/08, Adam Lackorzynski <adam@os.inf.tu-dresden.de> wrote:
> > >>>> Hi,
> > >>>>
> > >>>> I've been experiencing crashes of latest svn Qemu, host ia32 and  
> > >>>> target
> > >>>> arm, host gcc is 'gcc version 3.4.6 (Debian 3.4.6-7)'.
> > >>>> The segfault happens because of an invalid env->current_tb which  
> > >>>> seems
> > >>>> to be caused by generated code. The following code in cpu_exec
> > >>>>
> > >>>>   tc_ptr = tb->tc_ptr;
> > >>>>   env->current_tb = tb;
> > >>>>   gen_func = (void *)tc_ptr;
> > >>>>   T0 = gen_func();
> > >>>>   env->current_tb = NULL;
> > >>>>
> > >>>> is being compiled to the following
> > >>>>
> > >>>>   mov    0x14(%ecx),%eax
> > >>>>   mov    %ecx,0x56c(%ebp)
> > >>>>   xor    %edi,%edi
> > >>>>   call   *%eax
> > >>>>   mov    %edi,0x56c(%ebp)
> > >>>>
> > >>>> After the call edi isn't 0 anymore and gets the bogus value. As  
> > >>>> edi is
> > >>>> callee saved the code itself seems ok.
> > >>>> When I add a barrier before "env->current_tb = NULL" the xor is  
> > >>>> placed
> > >>>> after the call and everything works fine. So might the problem be  
> > >>>> that
> > >>>> generated code isn't preserving edi/registers?
> > >>>
> > >>> Right. How did you make the barrier? My version (attached) just
> > >>> crashes, I'm not fluent on i386 assembly. Maybe your version could
> > >>> serve as a temporary fix.
> > >>
> > >> I just added an 'asm volatile("")' to stop reordering of instructions
> > >> which of course isn't enough. The following works for me:
> > >>
> > >> ===================================================================
> > >> --- cpu-exec.c	(revision 4276)
> > >> +++ cpu-exec.c	(working copy)
> > >> @@ -690,6 +691,11 @@
> > >> 		fp.ip = tc_ptr;
> > >> 		fp.gp = code_gen_buffer + 2 * (1 << 20);
> > >> 		(*(void (*)(void)) &fp)();
> > >> +#elif defined(__i386)
> > >> +		asm volatile ("call *%1\n"
> > >> +		              : "=a" (T0)
> > >> +			      : "r" (gen_func)
> > >> +			      : "esi", "edi");
> > >> #else
> > >>                 T0 = gen_func();
> > >> #endif
> > >
> > > There was a comment from Fabrice on how to do prologues in TCG to save / 
> > > restore the clobbered values. Btw, ebx gets clobbered as well.
> > 
> > tcg/README says that some registers are clobbered. So something like
> > this should be safe:
> > 
> > Index: cpu-exec.c
> > ===================================================================
> > --- cpu-exec.c	(revision 4276)
> > +++ cpu-exec.c	(working copy)
> > @@ -690,6 +691,15 @@
> >  		fp.ip = tc_ptr;
> >  		fp.gp = code_gen_buffer + 2 * (1 << 20);
> >  		(*(void (*)(void)) &fp)();
> > +#elif defined(__i386)
> > +		asm volatile ("push %%ebp\n"
> > +		              "push %%ebx\n"
> > +		              "call *%1\n"
> > +			      "pop %%ebx\n"
> > +			      "pop %%ebp\n"
> > +		              : "=a" (T0)
> > +			      : "r" (gen_func)
> > +			      : "esi", "edi", "ecx", "edx");
> 
> Why don't you add ebp and ebx in the clobbered registers list (like
> "esi", "edi", "ecx", "edx") ?

For ebp it's more safe to use push as it depends whether the binary is
compiled with frame-pointer or without. When without you can put it into
the clobber list, when with you should not, we had some bad experience
with this (also see gcc bugzilla #11807).
T0 is register defined to ebx, so it's not needed (the push/pop is also
not needed), and also it does not work, gcc complains.



Adam
-- 
Adam                 adam@os.inf.tu-dresden.de
  Lackorzynski         http://os.inf.tu-dresden.de/~adam/

  reply	other threads:[~2008-04-30 20:36 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-29 11:56 [Qemu-devel] Crash due to invalid env->current_tb Adam Lackorzynski
2008-04-29 17:09 ` Blue Swirl
2008-04-29 18:40   ` Adam Lackorzynski
2008-04-30  9:08     ` Alexander Graf
2008-04-30 15:11       ` Adam Lackorzynski
2008-04-30 15:21         ` Adam Lackorzynski
2008-04-30 17:09           ` Blue Swirl
2008-04-30 17:30           ` Alexander Graf
2008-04-30 18:21             ` Blue Swirl
2008-05-01 12:02               ` Adam Lackorzynski
2008-05-01 15:02                 ` Blue Swirl
2008-05-01 16:04                   ` Paul Brook
2008-05-01 16:15                     ` Blue Swirl
2008-05-01 16:31                       ` Paul Brook
2008-05-02 15:41                   ` Adam Lackorzynski
2008-05-03 18:00                     ` Blue Swirl
2008-05-03 22:02                       ` Paul Brook
2008-04-30 15:28         ` Laurent Vivier
2008-04-30 20:36           ` Adam Lackorzynski [this message]
2008-05-02  1:39             ` Bernhard Kauer

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=20080430203636.GC8164@os.inf.tu-dresden.de \
    --to=adam@os.inf.tu-dresden.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).