From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42565) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WFhpi-0003IG-Qs for qemu-devel@nongnu.org; Tue, 18 Feb 2014 05:23:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WFhpb-0004Ia-UC for qemu-devel@nongnu.org; Tue, 18 Feb 2014 05:23:22 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55423) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WFhpb-0004IM-M7 for qemu-devel@nongnu.org; Tue, 18 Feb 2014 05:23:15 -0500 Message-ID: <53033486.4050704@redhat.com> Date: Tue, 18 Feb 2014 11:23:02 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1392651898-16749-1-git-send-email-stefanha@redhat.com> <1392651898-16749-4-git-send-email-stefanha@redhat.com> <530235F0.2040406@redhat.com> <87a9dpsmi4.fsf@blackfin.pond.sub.org> <20140218090504.GB32585@stefanha-thinkpad.redhat.com> <530330F9.5070608@redhat.com> <20140218101759.GC32645@redhat.com> In-Reply-To: <20140218101759.GC32645@redhat.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 3/3] qtest: kill QEMU process on g_assert() failure List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Daniel P. Berrange" Cc: Peter Maydell , Stefan Hajnoczi , Stefan Hajnoczi , qemu-devel@nongnu.org, Markus Armbruster , Anthony Liguori , Andreas Faerber Il 18/02/2014 11:17, Daniel P. Berrange ha scritto: >>> > >Yes, SIGABRT is synchronous for all purposes. So the only danger is >>> > >that g_string_free() or g_free() could fail while we're in >>> > >g_assert(false). But they don't, which makes sense because they are >>> > >totally unrelated to g_assert() and therefore can handle re-entrancy. >> > >> > If malloc aborts due to a double free or other similar problem, you >> > may risk reentering it. > If you register the custom SIGABRT handler with sigaction + SA_RESETHAND > then you'd avoid the re-entrancy risk, since a cascading SIGABRT would > get handled by the system default handler, which would immediately > terminate the process. I meant reentering malloc. Paolo