From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Wang Subject: Re: [PATCH net] vhost-vsock: fix use after free Date: Thu, 27 Sep 2018 20:21:37 +0800 Message-ID: References: <20180927084301.573-1-jasowang@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Cc: kvm@vger.kernel.org, virtualization@lists.linux-foundation.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org To: Sergei Shtylyov , stefanha@redhat.com, mst@redhat.com Return-path: In-Reply-To: Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On 2018年09月27日 17:52, Sergei Shtylyov wrote: > Hello! > > On 9/27/2018 11:43 AM, Jason Wang wrote: > >    Just a couple of typos... > >> The access of vsock is not protected by vhost_vsock_lock. This may >> lead use after free since vhost_vsock_dev_release() may free the > >   Lead to use. > >> pointer at the same time. >> >> Fix this by holding the lock during the acess. > >    Access. > >> Reported-by: syzbot+e3e074963495f92a89ed@syzkaller.appspotmail.com >> Fixes: 16320f363ae1 ("vhost-vsock: add pkt cancel capability") >> Fixes: 433fc58e6bf2 ("VSOCK: Introduce vhost_vsock.ko") >> Cc: Stefan Hajnoczi >> Signed-off-by: Jason Wang > [...] > > MBR, Sergei Let me post V2. Thanks