All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] vhost-user: fix watcher need be removed when vhost-user hotplug
@ 2017-05-09 14:03 Yunjian Wang
  2017-05-09 14:25 ` Marc-André Lureau
  0 siblings, 1 reply; 10+ messages in thread
From: Yunjian Wang @ 2017-05-09 14:03 UTC (permalink / raw)
  To: qemu-devel; +Cc: mst, jasowang, caihe, w00273186

From: w00273186 <wangyunjian@huawei.com>

"nc" is freed after hotplug vhost-user, but the watcher don't be removed.
The QEMU crash when the watcher access the "nc" on socket disconnect.

Call Trace:
    #0  object_get_class (obj=obj@entry=0x2) at qom/object.c:751
    #1  0x00007fc031c79f41 in qemu_chr_fe_disconnect (be=<optimized out>) at chardev/char.c:1048
    #2  0x00007fc031bd62e0 in net_vhost_user_watch (chan=<optimized out>, cond=<optimized out>, opaque=<optimized out>) at net/vhost-user.c:191
    #3  0x00007fc02c23e99a in g_main_context_dispatch () from /lib64/libglib-2.0.so.0
    #4  0x00007fc031ccfc0c in glib_pollfds_poll () at util/main-loop.c:213
    #5  os_host_main_loop_wait (timeout=<optimized out>) at util/main-loop.c:261
    #6  main_loop_wait (nonblocking=nonblocking@entry=0) at util/main-loop.c:517
    #7  0x00007fc03193bc87 in main_loop () at vl.c:1899
    #8  main (argc=<optimized out>, argv=<optimized out>, envp=<optimized out>) at vl.c:4719

Signed-off-by: Yunjian Wang <wangyunjian@huawei.com>
---
 net/vhost-user.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/net/vhost-user.c b/net/vhost-user.c
index 00a0c1c..5cc2178 100644
--- a/net/vhost-user.c
+++ b/net/vhost-user.c
@@ -155,6 +155,10 @@ static void vhost_user_cleanup(NetClientState *nc)
 
         qemu_chr_fe_deinit(&s->chr);
         object_unparent(OBJECT(chr));
+        if (s->watch) {
+            g_source_remove(s->watch);
+            s->watch = 0;
+        }
     }
 
     qemu_purge_queued_packets(nc);
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [PATCH] vhost-user: fix watcher need be removed when vhost-user hotplug
  2017-05-09 14:03 [Qemu-devel] [PATCH] vhost-user: fix watcher need be removed when vhost-user hotplug Yunjian Wang
@ 2017-05-09 14:25 ` Marc-André Lureau
  2017-05-10  1:54   ` wangyunjian
  0 siblings, 1 reply; 10+ messages in thread
From: Marc-André Lureau @ 2017-05-09 14:25 UTC (permalink / raw)
  To: Yunjian Wang, qemu-devel; +Cc: jasowang, caihe, mst

On Tue, May 9, 2017 at 5:04 PM Yunjian Wang <wangyunjian@huawei.com> wrote:

> From: w00273186 <wangyunjian@huawei.com>
>
> "nc" is freed after hotplug vhost-user, but the watcher don't be removed.
>


> The QEMU crash when the watcher access the "nc" on socket disconnect.
>
>
Do you have a reproducer? thanks


> Call Trace:
>     #0  object_get_class (obj=obj@entry=0x2) at qom/object.c:751
>     #1  0x00007fc031c79f41 in qemu_chr_fe_disconnect (be=<optimized out>)
> at chardev/char.c:1048
>     #2  0x00007fc031bd62e0 in net_vhost_user_watch (chan=<optimized out>,
> cond=<optimized out>, opaque=<optimized out>) at net/vhost-user.c:191
>     #3  0x00007fc02c23e99a in g_main_context_dispatch () from
> /lib64/libglib-2.0.so.0
>     #4  0x00007fc031ccfc0c in glib_pollfds_poll () at util/main-loop.c:213
>     #5  os_host_main_loop_wait (timeout=<optimized out>) at
> util/main-loop.c:261
>     #6  main_loop_wait (nonblocking=nonblocking@entry=0) at
> util/main-loop.c:517
>     #7  0x00007fc03193bc87 in main_loop () at vl.c:1899
>     #8  main (argc=<optimized out>, argv=<optimized out>, envp=<optimized
> out>) at vl.c:4719
>
> Signed-off-by: Yunjian Wang <wangyunjian@huawei.com>
> ---
>  net/vhost-user.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/net/vhost-user.c b/net/vhost-user.c
> index 00a0c1c..5cc2178 100644
> --- a/net/vhost-user.c
> +++ b/net/vhost-user.c
> @@ -155,6 +155,10 @@ static void vhost_user_cleanup(NetClientState *nc)
>
>          qemu_chr_fe_deinit(&s->chr);
>          object_unparent(OBJECT(chr));
> +        if (s->watch) {
> +            g_source_remove(s->watch);
> +            s->watch = 0;
> +        }
>      }
>
>      qemu_purge_queued_packets(nc);
> --
> 1.8.3.1
>
>
>
> --
Marc-André Lureau

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [PATCH] vhost-user: fix watcher need be removed when vhost-user hotplug
  2017-05-09 14:25 ` Marc-André Lureau
@ 2017-05-10  1:54   ` wangyunjian
  2017-05-25 15:32     ` Marc-André Lureau
  0 siblings, 1 reply; 10+ messages in thread
From: wangyunjian @ 2017-05-10  1:54 UTC (permalink / raw)
  To: Marc-André Lureau, qemu-devel; +Cc: jasowang, caihe, mst

On Tue, May 9, 2017 at 5:04 PM Yunjian Wang <wangyunjian@huawei.com> wrote:

> > From: w00273186 <wangyunjian@huawei.com>
> >
> > "nc" is freed after hotplug vhost-user, but the watcher don't be removed.
> >
> 
> 
> > The QEMU crash when the watcher access the "nc" on socket disconnect.
> >
> >
> Do you have a reproducer? thanks
>

reproduce steps:

1. virsh attach-device vm0 vhost-user.xml
2. virsh detach-device vm0 vhost-user.xml
3. virsh attach-device vm0 vhost-user.xml
4. service openvswitch restart
5. repeat step 2~4

The vhost-user xml:

    <interface type='vhostuser'>
      <mac address='00:01:01:00:10:41'/>
      <source type='unix' path='/var/run/vhost-user/tap1' mode='client'/>
      <model type='virtio'/>
      <driver queues='8'/>
 </interface>

Thanks

> 
> > Call Trace:
> >     #0  object_get_class (obj=obj@entry=0x2) at qom/object.c:751
> >     #1  0x00007fc031c79f41 in qemu_chr_fe_disconnect (be=<optimized out>)
> > at chardev/char.c:1048
> >     #2  0x00007fc031bd62e0 in net_vhost_user_watch (chan=<optimized out>,
> > cond=<optimized out>, opaque=<optimized out>) at net/vhost-user.c:191
> >     #3  0x00007fc02c23e99a in g_main_context_dispatch () from
> > /lib64/libglib-2.0.so.0
> >     #4  0x00007fc031ccfc0c in glib_pollfds_poll () at util/main-loop.c:213
> >     #5  os_host_main_loop_wait (timeout=<optimized out>) at
> > util/main-loop.c:261
> >     #6  main_loop_wait (nonblocking=nonblocking@entry=0) at
> > util/main-loop.c:517
> >     #7  0x00007fc03193bc87 in main_loop () at vl.c:1899
> >     #8  main (argc=<optimized out>, argv=<optimized out>, envp=<optimized
> > out>) at vl.c:4719
> >
> > Signed-off-by: Yunjian Wang <wangyunjian@huawei.com>
> > ---
> >  net/vhost-user.c | 4 ++++
> >  1 file changed, 4 insertions(+)
> >
> > diff --git a/net/vhost-user.c b/net/vhost-user.c
> > index 00a0c1c..5cc2178 100644
> > --- a/net/vhost-user.c
> > +++ b/net/vhost-user.c
> > @@ -155,6 +155,10 @@ static void vhost_user_cleanup(NetClientState *nc)
> >
> >          qemu_chr_fe_deinit(&s->chr);
> >          object_unparent(OBJECT(chr));
> > +        if (s->watch) {
> > +            g_source_remove(s->watch);
> > +            s->watch = 0;
> > +        }
> >      }
> >
> >      qemu_purge_queued_packets(nc);
> > --
> > 1.8.3.1
> >
> >
> >
> > --
> Marc-André Lureau

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [PATCH] vhost-user: fix watcher need be removed when vhost-user hotplug
  2017-05-10  1:54   ` wangyunjian
@ 2017-05-25 15:32     ` Marc-André Lureau
  0 siblings, 0 replies; 10+ messages in thread
From: Marc-André Lureau @ 2017-05-25 15:32 UTC (permalink / raw)
  To: wangyunjian, qemu-devel; +Cc: jasowang, caihe, mst

On Wed, May 10, 2017 at 5:55 AM wangyunjian <wangyunjian@huawei.com> wrote:

> On Tue, May 9, 2017 at 5:04 PM Yunjian Wang <wangyunjian@huawei.com>
> wrote:
>
> > > From: w00273186 <wangyunjian@huawei.com>
> > >
> > > "nc" is freed after hotplug vhost-user, but the watcher don't be
> removed.
> > >
> >
> >
> > > The QEMU crash when the watcher access the "nc" on socket disconnect.
> > >
> > >
> > Do you have a reproducer? thanks
> >
>
> reproduce steps:
>
> 1. virsh attach-device vm0 vhost-user.xml
> 2. virsh detach-device vm0 vhost-user.xml
> 3. virsh attach-device vm0 vhost-user.xml
> 4. service openvswitch restart
> 5. repeat step 2~4
>
> The vhost-user xml:
>
>     <interface type='vhostuser'>
>       <mac address='00:01:01:00:10:41'/>
>       <source type='unix' path='/var/run/vhost-user/tap1' mode='client'/>
>       <model type='virtio'/>
>       <driver queues='8'/>
> </interface>
>
> Thanks
>
> >
> > > Call Trace:
> > >     #0  object_get_class (obj=obj@entry=0x2) at qom/object.c:751
> > >     #1  0x00007fc031c79f41 in qemu_chr_fe_disconnect (be=<optimized
> out>)
> > > at chardev/char.c:1048
> > >     #2  0x00007fc031bd62e0 in net_vhost_user_watch (chan=<optimized
> out>,
> > > cond=<optimized out>, opaque=<optimized out>) at net/vhost-user.c:191
> > >     #3  0x00007fc02c23e99a in g_main_context_dispatch () from
> > > /lib64/libglib-2.0.so.0
> > >     #4  0x00007fc031ccfc0c in glib_pollfds_poll () at
> util/main-loop.c:213
> > >     #5  os_host_main_loop_wait (timeout=<optimized out>) at
> > > util/main-loop.c:261
> > >     #6  main_loop_wait (nonblocking=nonblocking@entry=0) at
> > > util/main-loop.c:517
> > >     #7  0x00007fc03193bc87 in main_loop () at vl.c:1899
> > >     #8  main (argc=<optimized out>, argv=<optimized out>,
> envp=<optimized
> > > out>) at vl.c:4719
> > >
> > > Signed-off-by: Yunjian Wang <wangyunjian@huawei.com>
> > > ---
> > >  net/vhost-user.c | 4 ++++
> > >  1 file changed, 4 insertions(+)
> > >
> > > diff --git a/net/vhost-user.c b/net/vhost-user.c
> > > index 00a0c1c..5cc2178 100644
> > > --- a/net/vhost-user.c
> > > +++ b/net/vhost-user.c
> > > @@ -155,6 +155,10 @@ static void vhost_user_cleanup(NetClientState *nc)
> > >
> > >          qemu_chr_fe_deinit(&s->chr);
> > >          object_unparent(OBJECT(chr));
> > > +        if (s->watch) {
> > > +            g_source_remove(s->watch);
> > > +            s->watch = 0;
> > > +        }
> > >      }
>

This change looks ok, and happens because libvirt calls netdev_del before
the chardev is closed or removed.

I would move the chunk before deinit/unparent though, since that's when the
close happens.

> >
> > >      qemu_purge_queued_packets(nc);
> > > --
> > > 1.8.3.1
> > >
> > >
> > >
> > > --
> > Marc-André Lureau
>
-- 
Marc-André Lureau

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [PATCH] vhost-user: fix watcher need be removed when vhost-user hotplug
  2017-07-23  2:12       ` Michael S. Tsirkin
@ 2017-07-23 10:06         ` Marc-André Lureau
  0 siblings, 0 replies; 10+ messages in thread
From: Marc-André Lureau @ 2017-07-23 10:06 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: w00273186, QEMU, Jason Wang, caihe

Hi

On Sun, Jul 23, 2017 at 4:12 AM, Michael S. Tsirkin <mst@redhat.com> wrote:
> On Sat, Jul 22, 2017 at 09:24:27AM +0000, Marc-André Lureau wrote:
>>
>>
>> On Sat, Jul 22, 2017 at 2:35 AM Michael S. Tsirkin <mst@redhat.com> wrote:
>>
>>     On Fri, Jul 21, 2017 at 11:19:04AM +0000, Marc-André Lureau wrote:
>>     > Hi
>>     >
>>     > On Fri, Jul 21, 2017 at 7:18 AM w00273186 <wangyunjian@huawei.com> wrote:
>>     >
>>     >     From: Yunjian Wang <wangyunjian@huawei.com>
>>     >
>>     >     "nc" is freed after hotplug vhost-user, but the watcher don't be
>>     removed.
>>     >     The QEMU crash when the watcher access the "nc" on socket disconnect.
>>     >
>>     >
>>     >
>>     > This is actually your 3rd iteration on the patch
>>     >
>>     > Could your describe your changes since:
>>     > "[PATCH v2] vhost-user: fix watcher need be removed when vhost-user
>>     hotplug"
>>     >
>>     > Thanks
>>
>>     Yes but it's a 3-liner. That's way below the limit where you need
>>     detailed change history. Does the patch make sense to you?
>>
>>
>>
>> That's not all, the fact that he didn't come up with the same solution in the
>> first place, and I didn't notice a problem either with the previous approach is
>> enough to ask from some clarification on which approach is best, and I bet
>> there is something to say.
>
> I'm rather confused.  Looks like you were the one who asked for the change.
> Really we want to attract new contributors and a small bugfix like this
> seems like a very good way to start contributing. Changelog is already
> 3 times the size of the patch here. So I think we should just get the patch
> reviewed and applied if correct. Do you plan to review it?

Indeed, but I totally forgot.

This situation wouldn't happen if:
- the patch was version v3
- the patch/mail would have been annotated after  --- to quickly
describe the change
- I had better memory...


>
>> Furthermore, we would really benefit from having repeatable cases for this kind
>> of fixes.
>
> I agree disconnect path is but tested adequately but I don't think we
> are at a point where we should be asking for testcases for every use
> after free bug that gets fixed.

Not to write a test case, but at least to document what triggered this
path. Since Yunjian gave it in the previous reply, and I forgot that
too, it would be best to have it in the commit message, agree?




-- 
Marc-André Lureau

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [PATCH] vhost-user: fix watcher need be removed when vhost-user hotplug
  2017-07-22  9:24     ` Marc-André Lureau
@ 2017-07-23  2:12       ` Michael S. Tsirkin
  2017-07-23 10:06         ` Marc-André Lureau
  0 siblings, 1 reply; 10+ messages in thread
From: Michael S. Tsirkin @ 2017-07-23  2:12 UTC (permalink / raw)
  To: Marc-André Lureau; +Cc: w00273186, qemu-devel, jasowang, caihe

On Sat, Jul 22, 2017 at 09:24:27AM +0000, Marc-André Lureau wrote:
> 
> 
> On Sat, Jul 22, 2017 at 2:35 AM Michael S. Tsirkin <mst@redhat.com> wrote:
> 
>     On Fri, Jul 21, 2017 at 11:19:04AM +0000, Marc-André Lureau wrote:
>     > Hi
>     >
>     > On Fri, Jul 21, 2017 at 7:18 AM w00273186 <wangyunjian@huawei.com> wrote:
>     >
>     >     From: Yunjian Wang <wangyunjian@huawei.com>
>     >
>     >     "nc" is freed after hotplug vhost-user, but the watcher don't be
>     removed.
>     >     The QEMU crash when the watcher access the "nc" on socket disconnect.
>     >
>     >
>     >
>     > This is actually your 3rd iteration on the patch
>     >
>     > Could your describe your changes since:
>     > "[PATCH v2] vhost-user: fix watcher need be removed when vhost-user
>     hotplug"
>     >
>     > Thanks
> 
>     Yes but it's a 3-liner. That's way below the limit where you need
>     detailed change history. Does the patch make sense to you?
> 
> 
> 
> That's not all, the fact that he didn't come up with the same solution in the
> first place, and I didn't notice a problem either with the previous approach is
> enough to ask from some clarification on which approach is best, and I bet
> there is something to say.

I'm rather confused.  Looks like you were the one who asked for the change.
Really we want to attract new contributors and a small bugfix like this
seems like a very good way to start contributing. Changelog is already
3 times the size of the patch here. So I think we should just get the patch
reviewed and applied if correct. Do you plan to review it?

> Furthermore, we would really benefit from having repeatable cases for this kind
> of fixes.

I agree disconnect path is but tested adequately but I don't think we
are at a point where we should be asking for testcases for every use
after free bug that gets fixed.

>  
> 
>     >
>     >         Program received signal SIGSEGV, Segmentation fault.
>     >         #0  object_get_class (obj=obj@entry=0x2) at qom/object.c:750
>     >         #1  0x00007f9bb4180da1 in qemu_chr_fe_disconnect (be=<optimized
>     out>)
>     >     at chardev/char-fe.c:372
>     >         #2  0x00007f9bb40d1100 in net_vhost_user_watch (chan=<optimized
>     out>,
>     >     cond=<optimized out>, opaque=<optimized out>) at net/vhost-user.c:188
>     >         #3  0x00007f9baf97f99a in g_main_context_dispatch () from /usr/
>     lib64/
>     >     libglib-2.0.so.0
>     >         #4  0x00007f9bb41d7ebc in glib_pollfds_poll () at util/
>     main-loop.c:213
>     >         #5  os_host_main_loop_wait (timeout=<optimized out>) at util/
>     >     main-loop.c:261
>     >         #6  main_loop_wait (nonblocking=nonblocking@entry=0) at util/
>     >     main-loop.c:515
>     >         #7  0x00007f9bb3e266a7 in main_loop () at vl.c:1917
>     >         #8  main (argc=<optimized out>, argv=<optimized out>, envp=
>     <optimized
>     >     out>) at vl.c:4786
>     >
>     >     Signed-off-by: Yunjian Wang <wangyunjian@huawei.com>
>     >     ---
>     >      net/vhost-user.c | 4 ++++
>     >      1 file changed, 4 insertions(+)
>     >
>     >     diff --git a/net/vhost-user.c b/net/vhost-user.c
>     >     index 36f32a2..c23927c 100644
>     >     --- a/net/vhost-user.c
>     >     +++ b/net/vhost-user.c
>     >     @@ -151,6 +151,10 @@ static void vhost_user_cleanup(NetClientState
>     *nc)
>     >              s->vhost_net = NULL;
>     >          }
>     >          if (nc->queue_index == 0) {
>     >     +        if (s->watch) {
>     >     +            g_source_remove(s->watch);
>     >     +            s->watch = 0;
>     >     +        }
>     >              qemu_chr_fe_deinit(&s->chr, true);
>     >          }
>     >
>     >     --
>     >     1.8.3.1
>     >
>     >
>     >
>     >
>     > --
>     > Marc-André Lureau
> 
> --
> Marc-André Lureau


Why do you even bother including the patch if you use a client that
corrupts both the patch and the commit log formatting? It's not a good
example to give to new contributors and it doesn't align well
with nit-picking about same commit log, in my eyes.

-- 
MST

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [PATCH] vhost-user: fix watcher need be removed when vhost-user hotplug
  2017-07-22  0:34   ` Michael S. Tsirkin
@ 2017-07-22  9:24     ` Marc-André Lureau
  2017-07-23  2:12       ` Michael S. Tsirkin
  0 siblings, 1 reply; 10+ messages in thread
From: Marc-André Lureau @ 2017-07-22  9:24 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: w00273186, qemu-devel, jasowang, caihe

On Sat, Jul 22, 2017 at 2:35 AM Michael S. Tsirkin <mst@redhat.com> wrote:

> On Fri, Jul 21, 2017 at 11:19:04AM +0000, Marc-André Lureau wrote:
> > Hi
> >
> > On Fri, Jul 21, 2017 at 7:18 AM w00273186 <wangyunjian@huawei.com>
> wrote:
> >
> >     From: Yunjian Wang <wangyunjian@huawei.com>
> >
> >     "nc" is freed after hotplug vhost-user, but the watcher don't be
> removed.
> >     The QEMU crash when the watcher access the "nc" on socket disconnect.
> >
> >
> >
> > This is actually your 3rd iteration on the patch
> >
> > Could your describe your changes since:
> > "[PATCH v2] vhost-user: fix watcher need be removed when vhost-user
> hotplug"
> >
> > Thanks
>
> Yes but it's a 3-liner. That's way below the limit where you need
> detailed change history. Does the patch make sense to you?
>
>
That's not all, the fact that he didn't come up with the same solution in
the first place, and I didn't notice a problem either with the previous
approach is enough to ask from some clarification on which approach is
best, and I bet there is something to say.

Furthermore, we would really benefit from having repeatable cases for this
kind of fixes.



> >
> >         Program received signal SIGSEGV, Segmentation fault.
> >         #0  object_get_class (obj=obj@entry=0x2) at qom/object.c:750
> >         #1  0x00007f9bb4180da1 in qemu_chr_fe_disconnect (be=<optimized
> out>)
> >     at chardev/char-fe.c:372
> >         #2  0x00007f9bb40d1100 in net_vhost_user_watch (chan=<optimized
> out>,
> >     cond=<optimized out>, opaque=<optimized out>) at net/vhost-user.c:188
> >         #3  0x00007f9baf97f99a in g_main_context_dispatch () from
> /usr/lib64/
> >     libglib-2.0.so.0
> >         #4  0x00007f9bb41d7ebc in glib_pollfds_poll () at
> util/main-loop.c:213
> >         #5  os_host_main_loop_wait (timeout=<optimized out>) at util/
> >     main-loop.c:261
> >         #6  main_loop_wait (nonblocking=nonblocking@entry=0) at util/
> >     main-loop.c:515
> >         #7  0x00007f9bb3e266a7 in main_loop () at vl.c:1917
> >         #8  main (argc=<optimized out>, argv=<optimized out>,
> envp=<optimized
> >     out>) at vl.c:4786
> >
> >     Signed-off-by: Yunjian Wang <wangyunjian@huawei.com>
> >     ---
> >      net/vhost-user.c | 4 ++++
> >      1 file changed, 4 insertions(+)
> >
> >     diff --git a/net/vhost-user.c b/net/vhost-user.c
> >     index 36f32a2..c23927c 100644
> >     --- a/net/vhost-user.c
> >     +++ b/net/vhost-user.c
> >     @@ -151,6 +151,10 @@ static void vhost_user_cleanup(NetClientState
> *nc)
> >              s->vhost_net = NULL;
> >          }
> >          if (nc->queue_index == 0) {
> >     +        if (s->watch) {
> >     +            g_source_remove(s->watch);
> >     +            s->watch = 0;
> >     +        }
> >              qemu_chr_fe_deinit(&s->chr, true);
> >          }
> >
> >     --
> >     1.8.3.1
> >
> >
> >
> >
> > --
> > Marc-André Lureau
>
-- 
Marc-André Lureau

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [PATCH] vhost-user: fix watcher need be removed when vhost-user hotplug
  2017-07-21 11:19 ` Marc-André Lureau
@ 2017-07-22  0:34   ` Michael S. Tsirkin
  2017-07-22  9:24     ` Marc-André Lureau
  0 siblings, 1 reply; 10+ messages in thread
From: Michael S. Tsirkin @ 2017-07-22  0:34 UTC (permalink / raw)
  To: Marc-André Lureau; +Cc: w00273186, qemu-devel, jasowang, caihe

On Fri, Jul 21, 2017 at 11:19:04AM +0000, Marc-André Lureau wrote:
> Hi
> 
> On Fri, Jul 21, 2017 at 7:18 AM w00273186 <wangyunjian@huawei.com> wrote:
> 
>     From: Yunjian Wang <wangyunjian@huawei.com>
> 
>     "nc" is freed after hotplug vhost-user, but the watcher don't be removed.
>     The QEMU crash when the watcher access the "nc" on socket disconnect.
> 
> 
> 
> This is actually your 3rd iteration on the patch
> 
> Could your describe your changes since:
> "[PATCH v2] vhost-user: fix watcher need be removed when vhost-user hotplug"
> 
> Thanks

Yes but it's a 3-liner. That's way below the limit where you need
detailed change history. Does the patch make sense to you?

> 
>         Program received signal SIGSEGV, Segmentation fault.
>         #0  object_get_class (obj=obj@entry=0x2) at qom/object.c:750
>         #1  0x00007f9bb4180da1 in qemu_chr_fe_disconnect (be=<optimized out>)
>     at chardev/char-fe.c:372
>         #2  0x00007f9bb40d1100 in net_vhost_user_watch (chan=<optimized out>,
>     cond=<optimized out>, opaque=<optimized out>) at net/vhost-user.c:188
>         #3  0x00007f9baf97f99a in g_main_context_dispatch () from /usr/lib64/
>     libglib-2.0.so.0
>         #4  0x00007f9bb41d7ebc in glib_pollfds_poll () at util/main-loop.c:213
>         #5  os_host_main_loop_wait (timeout=<optimized out>) at util/
>     main-loop.c:261
>         #6  main_loop_wait (nonblocking=nonblocking@entry=0) at util/
>     main-loop.c:515
>         #7  0x00007f9bb3e266a7 in main_loop () at vl.c:1917
>         #8  main (argc=<optimized out>, argv=<optimized out>, envp=<optimized
>     out>) at vl.c:4786
> 
>     Signed-off-by: Yunjian Wang <wangyunjian@huawei.com>
>     ---
>      net/vhost-user.c | 4 ++++
>      1 file changed, 4 insertions(+)
> 
>     diff --git a/net/vhost-user.c b/net/vhost-user.c
>     index 36f32a2..c23927c 100644
>     --- a/net/vhost-user.c
>     +++ b/net/vhost-user.c
>     @@ -151,6 +151,10 @@ static void vhost_user_cleanup(NetClientState *nc)
>              s->vhost_net = NULL;
>          }
>          if (nc->queue_index == 0) {
>     +        if (s->watch) {
>     +            g_source_remove(s->watch);
>     +            s->watch = 0;
>     +        }
>              qemu_chr_fe_deinit(&s->chr, true);
>          }
> 
>     --
>     1.8.3.1
> 
> 
> 
> 
> --
> Marc-André Lureau

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [PATCH] vhost-user: fix watcher need be removed when vhost-user hotplug
  2017-07-21  5:16 w00273186
@ 2017-07-21 11:19 ` Marc-André Lureau
  2017-07-22  0:34   ` Michael S. Tsirkin
  0 siblings, 1 reply; 10+ messages in thread
From: Marc-André Lureau @ 2017-07-21 11:19 UTC (permalink / raw)
  To: w00273186, qemu-devel, jasowang, mst; +Cc: caihe

Hi

On Fri, Jul 21, 2017 at 7:18 AM w00273186 <wangyunjian@huawei.com> wrote:

> From: Yunjian Wang <wangyunjian@huawei.com>
>
> "nc" is freed after hotplug vhost-user, but the watcher don't be removed.
> The QEMU crash when the watcher access the "nc" on socket disconnect.
>
>
This is actually your 3rd iteration on the patch

Could your describe your changes since:
"[PATCH v2] vhost-user: fix watcher need be removed when vhost-user hotplug"

Thanks


>     Program received signal SIGSEGV, Segmentation fault.
>     #0  object_get_class (obj=obj@entry=0x2) at qom/object.c:750
>     #1  0x00007f9bb4180da1 in qemu_chr_fe_disconnect (be=<optimized out>)
> at chardev/char-fe.c:372
>     #2  0x00007f9bb40d1100 in net_vhost_user_watch (chan=<optimized out>,
> cond=<optimized out>, opaque=<optimized out>) at net/vhost-user.c:188
>     #3  0x00007f9baf97f99a in g_main_context_dispatch () from
> /usr/lib64/libglib-2.0.so.0
>     #4  0x00007f9bb41d7ebc in glib_pollfds_poll () at util/main-loop.c:213
>     #5  os_host_main_loop_wait (timeout=<optimized out>) at
> util/main-loop.c:261
>     #6  main_loop_wait (nonblocking=nonblocking@entry=0) at
> util/main-loop.c:515
>     #7  0x00007f9bb3e266a7 in main_loop () at vl.c:1917
>     #8  main (argc=<optimized out>, argv=<optimized out>, envp=<optimized
> out>) at vl.c:4786
>
> Signed-off-by: Yunjian Wang <wangyunjian@huawei.com>
> ---
>  net/vhost-user.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/net/vhost-user.c b/net/vhost-user.c
> index 36f32a2..c23927c 100644
> --- a/net/vhost-user.c
> +++ b/net/vhost-user.c
> @@ -151,6 +151,10 @@ static void vhost_user_cleanup(NetClientState *nc)
>          s->vhost_net = NULL;
>      }
>      if (nc->queue_index == 0) {
> +        if (s->watch) {
> +            g_source_remove(s->watch);
> +            s->watch = 0;
> +        }
>          qemu_chr_fe_deinit(&s->chr, true);
>      }
>
> --
> 1.8.3.1
>
>
>
> --
Marc-André Lureau

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Qemu-devel] [PATCH] vhost-user: fix watcher need be removed when vhost-user hotplug
@ 2017-07-21  5:16 w00273186
  2017-07-21 11:19 ` Marc-André Lureau
  0 siblings, 1 reply; 10+ messages in thread
From: w00273186 @ 2017-07-21  5:16 UTC (permalink / raw)
  To: qemu-devel, jasowang, mst, marcandre.lureau; +Cc: caihe, Yunjian Wang

From: Yunjian Wang <wangyunjian@huawei.com>

"nc" is freed after hotplug vhost-user, but the watcher don't be removed.
The QEMU crash when the watcher access the "nc" on socket disconnect.

    Program received signal SIGSEGV, Segmentation fault.
    #0  object_get_class (obj=obj@entry=0x2) at qom/object.c:750
    #1  0x00007f9bb4180da1 in qemu_chr_fe_disconnect (be=<optimized out>) at chardev/char-fe.c:372
    #2  0x00007f9bb40d1100 in net_vhost_user_watch (chan=<optimized out>, cond=<optimized out>, opaque=<optimized out>) at net/vhost-user.c:188
    #3  0x00007f9baf97f99a in g_main_context_dispatch () from /usr/lib64/libglib-2.0.so.0
    #4  0x00007f9bb41d7ebc in glib_pollfds_poll () at util/main-loop.c:213
    #5  os_host_main_loop_wait (timeout=<optimized out>) at util/main-loop.c:261
    #6  main_loop_wait (nonblocking=nonblocking@entry=0) at util/main-loop.c:515
    #7  0x00007f9bb3e266a7 in main_loop () at vl.c:1917
    #8  main (argc=<optimized out>, argv=<optimized out>, envp=<optimized out>) at vl.c:4786

Signed-off-by: Yunjian Wang <wangyunjian@huawei.com>
---
 net/vhost-user.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/net/vhost-user.c b/net/vhost-user.c
index 36f32a2..c23927c 100644
--- a/net/vhost-user.c
+++ b/net/vhost-user.c
@@ -151,6 +151,10 @@ static void vhost_user_cleanup(NetClientState *nc)
         s->vhost_net = NULL;
     }
     if (nc->queue_index == 0) {
+        if (s->watch) {
+            g_source_remove(s->watch);
+            s->watch = 0;
+        }
         qemu_chr_fe_deinit(&s->chr, true);
     }
 
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2017-07-23 10:06 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-09 14:03 [Qemu-devel] [PATCH] vhost-user: fix watcher need be removed when vhost-user hotplug Yunjian Wang
2017-05-09 14:25 ` Marc-André Lureau
2017-05-10  1:54   ` wangyunjian
2017-05-25 15:32     ` Marc-André Lureau
2017-07-21  5:16 w00273186
2017-07-21 11:19 ` Marc-André Lureau
2017-07-22  0:34   ` Michael S. Tsirkin
2017-07-22  9:24     ` Marc-André Lureau
2017-07-23  2:12       ` Michael S. Tsirkin
2017-07-23 10:06         ` Marc-André Lureau

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.