Return-Path: linux-nfs-owner@vger.kernel.org Received: from mailhub.sw.ru ([195.214.232.25]:28847 "EHLO relay.sw.ru" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752780AbdKBK2G (ORCPT ); Thu, 2 Nov 2017 06:28:06 -0400 Subject: Re: [PATCH] lockd: lost rollback of set_grace_period() in lockd_down_net() To: linux-nfs@vger.kernel.org, Jeff Layton , "J. Bruce Fields" References: From: Vasily Averin Message-ID: <89d314b1-0fe2-0785-1be5-58865fb5a2f5@virtuozzo.com> Date: Thu, 2 Nov 2017 13:27:58 +0300 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Sender: linux-nfs-owner@vger.kernel.org List-ID: Dear Bruce, please use it instead of my previously submitted "[PATCH] lockd: fix lockd shutdown race with signal". restart_grace() still can add grace for non started nfsd in init_net, however seems it does not lead to troubles: - second list_add will be prevented by patch from Jeff. - unexpectedly queued delayed work will be disarmed on stop of lockd kernel thread - cancel_delayed_work_sync() and locks_end_grace() can be called twice (in lockd_down_net and on stop of lockd), however seems it is safe. On 2017-11-02 13:03, Vasily Averin wrote: > Commit efda760fe95ea ("lockd: fix lockd shutdown race") is incorrect, > it removes lockd_manager and disarm grace_period_end for init_net only. > > If nfsd was started from another net namespace lockd_up_net() calls > set_grace_period() that adds lockd_manager into per-netns list > and queues grace_period_end delayed work. > > These action should be reverted in lockd_down_net(). > Otherwise it can lead to double list_add on after restart nfsd in netns, > and to use-after-free if non-disarmed delayed work will be executed after netns destroy. > > Fixes commit efda760fe95e ("lockd: fix lockd shutdown race") > > Signed-off-by: Vasily Averin > --- > fs/lockd/svc.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/fs/lockd/svc.c b/fs/lockd/svc.c > index c1573860..809cbcc 100644 > --- a/fs/lockd/svc.c > +++ b/fs/lockd/svc.c > @@ -277,6 +277,8 @@ static void lockd_down_net(struct svc_serv *serv, struct net *net) > if (ln->nlmsvc_users) { > if (--ln->nlmsvc_users == 0) { > nlm_shutdown_hosts_net(net); > + cancel_delayed_work_sync(&ln->grace_period_end); > + locks_end_grace(&ln->lockd_manager); > svc_shutdown_net(serv, net); > dprintk("lockd_down_net: per-net data destroyed; net=%p\n", net); > } >