From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:53244) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QzUfm-00007T-Av for qemu-devel@nongnu.org; Fri, 02 Sep 2011 10:24:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QzUfl-0004BP-8Q for qemu-devel@nongnu.org; Fri, 02 Sep 2011 10:24:46 -0400 Received: from mx1.redhat.com ([209.132.183.28]:21288) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QzUfk-0004BK-T7 for qemu-devel@nongnu.org; Fri, 02 Sep 2011 10:24:45 -0400 Date: Fri, 2 Sep 2011 11:24:39 -0300 From: Luiz Capitulino Message-ID: <20110902112439.7cb55562@doriath> In-Reply-To: <4E60DC77.5020300@redhat.com> References: <20110901163545.71ba1515@doriath> <4E6032AB.8080804@codemonkey.ws> <4E60DC77.5020300@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] monitor: Protect outbuf from concurrent access List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann Cc: spice-devel , Marian Krcmarik , Alon Levy , qemu-devel On Fri, 02 Sep 2011 15:39:03 +0200 Gerd Hoffmann wrote: > Hi, > > >> After some investigation, I found out that the problem is that different > >> SPICE threads are calling monitor functions (such as > >> monitor_protocol_event()) in parallel which causes concurrent access > >> to the monitor's internal buffer outbuf[]. > > [ adding spice-list to Cc, see qemu-devel for the rest of the thread ] > > spice isn't supposed to do that. > > /me just added a assert in channel_event() and saw it trigger in display > channel disconnects. > > #0 0x0000003ceba32a45 in raise () from /lib64/libc.so.6 > #1 0x0000003ceba34225 in abort () from /lib64/libc.so.6 > #2 0x0000003ceba2b9d5 in __assert_fail () from /lib64/libc.so.6 > #3 0x0000000000503759 in channel_event (event=3, info=0x35e9340) > at /home/kraxel/projects/qemu/ui/spice-core.c:223 > #4 0x00007f9a77a9921b in reds_channel_event (s=0x35e92c0) at reds.c:400 > #5 reds_stream_free (s=0x35e92c0) at reds.c:4981 > #6 0x00007f9a77aac8b0 in red_disconnect_channel > (channel=0x7f9a24069a80) at red_worker.c:8489 > #7 0x00007f9a77ab53a8 in handle_dev_input (listener=0x7f9a3211ab20, > events=) > at red_worker.c:10062 > #8 0x00007f9a77ab436d in red_worker_main (arg=) at > red_worker.c:10304 > #9 0x0000003cec2077e1 in start_thread () from /lib64/libpthread.so.0 > #10 0x0000003cebae68ed in clone () from /lib64/libc.so.6 > > IMHO spice server should handle the display channel tear-down in the > dispatcher instead of the worker thread. Alon? > > >> Anyways, this commit fixes the problem at hand. > > Not really. channel_event() itself isn't thread-safe too, it does > unlocked list operations which can also blow up when called from > different threads. I thought my patch was at least a candidate for stable, but after this thread I'm convinced the problem should be fixed in spice instead. > > A patch like the attached (warning: untested) should do as quick&dirty > fix for stable. But IMO we really should fix spice instead. > > cheers, > Gerd >