From: "Marc-André Lureau" <marcandre.lureau@redhat.com>
To: Stefan Hajnoczi <stefanha@redhat.com>
Cc: qemu-devel@nongnu.org, Kevin Wolf <kwolf@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 12/12] WIP ucontext: annotate coroutine stack for ASAN
Date: Mon, 11 Dec 2017 06:18:25 -0500 (EST) [thread overview]
Message-ID: <1138111065.53748953.1512991105572.JavaMail.zimbra@redhat.com> (raw)
In-Reply-To: <20171208133829.GA7600@stefanha-x1.localdomain>
Hi
----- Original Message -----
> On Fri, Dec 08, 2017 at 01:58:25AM +0100, Marc-André Lureau wrote:
> > Not strictly necessary, but it may help ASAN and remove some false
> > positives.
> >
> > Sadly, this annotation produces an ASAN error:
> >
> > $ tests/test-coroutine -p /basic/lifecycle
> > /basic/lifecycle: ==27655==WARNING: ASan doesn't fully support
> > makecontext/swapcontext functions and may produce false positives in some
> > cases!
> > ==27655==AddressSanitizer CHECK failed:
> > /builddir/build/BUILD/compiler-rt-4.0.1.src/lib/asan/asan_poisoning.cc:38
> > "((AddrIsAlignedByGranularity(addr + size))) != (0)" (0x0, 0x0)
> > #0 0x55d1e4e8a695 in __asan::AsanCheckFailed(char const*, int, char
> > const*, unsigned long long, unsigned long long)
> > (/home/elmarco/src/qq/build/tests/test-coroutine+0x1c0695)
> > #1 0x55d1e4ea6235 in __sanitizer::CheckFailed(char const*, int, char
> > const*, unsigned long long, unsigned long long)
> > (/home/elmarco/src/qq/build/tests/test-coroutine+0x1dc235)
> > #2 0x55d1e4e82ea4 in __asan::PoisonShadow(unsigned long, unsigned long,
> > unsigned char)
> > (/home/elmarco/src/qq/build/tests/test-coroutine+0x1b8ea4)
> > #3 0x55d1e4dde1e7 in __asan::FakeStack::Destroy(int)
> > (/home/elmarco/src/qq/build/tests/test-coroutine+0x1141e7)
> > #4 0x55d1e528b775 in qemu_coroutine_switch
> > /home/elmarco/src/qq/util/coroutine-ucontext.c:219:9
> > #5 0x55d1e528b18d in coroutine_trampoline
> > /home/elmarco/src/qq/util/coroutine-ucontext.c:114:9
> > #6 0x7fb3e0087bef (/lib64/libc.so.6+0x50bef)
>
> Looks like a step in the right direction.
>
Thanks Stefan, I suppose this is not irony ;)
I'll try to nail down the issue and make a small reproducer for ASAN.
next prev parent reply other threads:[~2017-12-11 11:18 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-08 0:58 [Qemu-devel] [PATCH 00/12] Various build-sys and ASAN related fixes Marc-André Lureau
2017-12-08 0:58 ` [Qemu-devel] [PATCH 01/12] build-sys: fix qemu-ga -pthread linking Marc-André Lureau
2017-12-08 0:58 ` [Qemu-devel] [PATCH 02/12] build-sys: silence make by default Marc-André Lureau
2017-12-08 19:19 ` Eric Blake
2017-12-13 11:30 ` Marc-André Lureau
2017-12-08 0:58 ` [Qemu-devel] [PATCH 03/12] build-sys: add a rule to print a variable Marc-André Lureau
2017-12-08 19:21 ` Eric Blake
2017-12-08 0:58 ` [Qemu-devel] [PATCH 04/12] build-sys: add AddressSanitizer when --enable-debug if possible Marc-André Lureau
2017-12-08 0:58 ` [Qemu-devel] [PATCH 05/12] tests: fix check-qobject leak: Marc-André Lureau
2017-12-08 17:59 ` Markus Armbruster
2017-12-08 0:58 ` [Qemu-devel] [PATCH 06/12] vl: fix direct firmware directories leak Marc-André Lureau
2017-12-08 0:58 ` [Qemu-devel] [PATCH 07/12] readline: add a free function Marc-André Lureau
2017-12-08 10:05 ` Dr. David Alan Gilbert
2017-12-08 0:58 ` [Qemu-devel] [PATCH 08/12] tests: fix migration-test leak Marc-André Lureau
2017-12-08 9:57 ` Dr. David Alan Gilbert
2017-12-08 0:58 ` [Qemu-devel] [PATCH 09/12] crypto: fix stack-buffer-overflow error Marc-André Lureau
2017-12-08 9:49 ` Daniel P. Berrange
2017-12-08 0:58 ` [Qemu-devel] [PATCH 10/12] qemu-config: fix leak in query-command-line-options Marc-André Lureau
2017-12-08 0:58 ` [Qemu-devel] [PATCH 11/12] tests: fix qmp-test leak Marc-André Lureau
2017-12-08 18:01 ` Markus Armbruster
2017-12-08 0:58 ` [Qemu-devel] [PATCH 12/12] WIP ucontext: annotate coroutine stack for ASAN Marc-André Lureau
2017-12-08 13:38 ` Stefan Hajnoczi
2017-12-11 11:18 ` Marc-André Lureau [this message]
2017-12-11 11:31 ` [Qemu-devel] [PATCH 00/12] Various build-sys and ASAN related fixes no-reply
2017-12-11 11:34 ` no-reply
2017-12-11 12:25 ` no-reply
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=1138111065.53748953.1512991105572.JavaMail.zimbra@redhat.com \
--to=marcandre.lureau@redhat.com \
--cc=kwolf@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.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;
as well as URLs for NNTP newsgroup(s).