Received: by 2002:a25:d7c1:0:0:0:0:0 with SMTP id o184csp4242247ybg; Mon, 21 Oct 2019 06:07:11 -0700 (PDT) X-Google-Smtp-Source: APXvYqwPCmz9vg/aFbSuWe6I9EheY9mcn5aoApHpOhdoD6/L6ncuzAHCSyCtltfBZ9190RVz59D9 X-Received: by 2002:aa7:d90d:: with SMTP id a13mr24845026edr.2.1571663231214; Mon, 21 Oct 2019 06:07:11 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1571663231; cv=none; d=google.com; s=arc-20160816; b=v9rhG6TFio/SIFCxSFsWpskOS67k5tmKhFnLM01pO2PJrjy3X2fZ/sIOakWXb7gWoH Y253Idl76Z4SkydhIwLYeehCMzB9e/7MVH9/vxkMrmL8aDDnJkRq2XdKPHSknUnq4PkL kXD3aoo4xrBjsR+6EwGAKDKk9qPdt8iFr8Cvh5UnxItVgyOhfherie2pZZcheY8Zl5K6 smf5QZCazkZFInqnFAL3QMhVQGfKU07dnJi3gIdKPiDsDq18lsmow561TYqX/51PONkU YIP4nPd1sO8zgJyEHxxkgJmgeOaL52A0HnFoYA0VFc8pjuHnvrTJVO80p8ABUdKGWcAQ vsjA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=5LtPZ2oDL+vO3zJ9Rjbd+Hw4hceVXynmL3qM8V1eGyM=; b=xUyvLwZvR4YhWN1HbaMnNQVvO4JFHnQPs1piviWftB4Tlg7R4VpMt1ZyZz0bfxkcGw 7FZdCewQ+dcO+abBDLYXmS7QlLQmkmLIh9RJwka5MYSi1El24/mltrVfvoEaX7KazJRM xVxfEn566ba1natSDvE2Y7SRf5N1GCT15YZjxqKgRNM4XPnqdcnUiIA8KlWDBuEfutWR N83rQWzdMR8DWBlkfgIaMlms8IexoApuUdu/iNJCID7h647mr8LK8zhE3YRaWctKWFX6 fA1Rf4d5RpAyaXzqNcSOZi68WXpIr5f7VP4c6izFMk19EB6DOCfm/Fpa1Xe5H04lS5q2 vTcg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id d10si10734630edk.115.2019.10.21.06.06.38; Mon, 21 Oct 2019 06:07:11 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728824AbfJUNGH (ORCPT + 99 others); Mon, 21 Oct 2019 09:06:07 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:59098 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727322AbfJUNGH (ORCPT ); Mon, 21 Oct 2019 09:06:07 -0400 Received: from [213.220.153.21] (helo=wittgenstein) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1iMXMB-0007Nx-7n; Mon, 21 Oct 2019 13:04:19 +0000 Date: Mon, 21 Oct 2019 15:04:18 +0200 From: Christian Brauner To: Rasmus Villemoes Cc: Will Deacon , linux-kernel@vger.kernel.org, bsingharora@gmail.com, dvyukov@google.com, elver@google.com, parri.andrea@gmail.com, stable@vger.kernel.org, syzbot+c5d03165a1bd1dead0c1@syzkaller.appspotmail.com, syzkaller-bugs@googlegroups.com Subject: Re: [PATCH v6] taskstats: fix data-race Message-ID: <20191021130417.5yi7pxpigsydz5po@wittgenstein> References: <20191009114809.8643-1-christian.brauner@ubuntu.com> <20191021113327.22365-1-christian.brauner@ubuntu.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20180716 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Oct 21, 2019 at 02:19:01PM +0200, Rasmus Villemoes wrote: > On 21/10/2019 13.33, Christian Brauner wrote: > > The first approach used smp_load_acquire() and smp_store_release(). > > However, after having discussed this it seems that the data dependency > > for kmem_cache_alloc() would be fixed by WRITE_ONCE(). > > Furthermore, the smp_load_acquire() would only manage to order the stats > > check before the thread_group_empty() check. So it seems just using > > READ_ONCE() and WRITE_ONCE() will do the job and I wanted to bring this > > up for discussion at least. > > > > /* v6 */ > > - Christian Brauner : > > - bring up READ_ONCE()/WRITE_ONCE() approach for discussion > > --- > > kernel/taskstats.c | 26 +++++++++++++++----------- > > 1 file changed, 15 insertions(+), 11 deletions(-) > > > > diff --git a/kernel/taskstats.c b/kernel/taskstats.c > > index 13a0f2e6ebc2..111bb4139aa2 100644 > > --- a/kernel/taskstats.c > > +++ b/kernel/taskstats.c > > @@ -554,25 +554,29 @@ static int taskstats_user_cmd(struct sk_buff *skb, struct genl_info *info) > > static struct taskstats *taskstats_tgid_alloc(struct task_struct *tsk) > > { > > struct signal_struct *sig = tsk->signal; > > - struct taskstats *stats; > > + struct taskstats *stats_new, *stats; > > > > - if (sig->stats || thread_group_empty(tsk)) > > - goto ret; > > + /* Pairs with WRITE_ONCE() below. */ > > + stats = READ_ONCE(sig->stats); > > + if (stats || thread_group_empty(tsk)) > > + return stats; > > > > /* No problem if kmem_cache_zalloc() fails */ > > - stats = kmem_cache_zalloc(taskstats_cache, GFP_KERNEL); > > + stats_new = kmem_cache_zalloc(taskstats_cache, GFP_KERNEL); > > > > spin_lock_irq(&tsk->sighand->siglock); > > - if (!sig->stats) { > > - sig->stats = stats; > > - stats = NULL; > > + if (!stats) { > > + stats = stats_new; > > + /* Pairs with READ_ONCE() above. */ > > + WRITE_ONCE(sig->stats, stats_new); > > + stats_new = NULL; > > No idea about the memory ordering issues, but don't you need to > load/check sig->stats again? Otherwise it seems that two threads might > both see !sig->stats, both allocate a stats_new, and both > unconditionally in turn assign their stats_new to sig->stats. Then the > first assignment ends up becoming a memory leak (and any writes through > that pointer done by the caller end up in /dev/null...) Trigger hand too fast. I guess you're thinking sm like: diff --git a/kernel/taskstats.c b/kernel/taskstats.c index 13a0f2e6ebc2..c4e1ed11e785 100644 --- a/kernel/taskstats.c +++ b/kernel/taskstats.c @@ -554,25 +554,27 @@ static int taskstats_user_cmd(struct sk_buff *skb, struct genl_info *info) static struct taskstats *taskstats_tgid_alloc(struct task_struct *tsk) { struct signal_struct *sig = tsk->signal; - struct taskstats *stats; + struct taskstats *stats_new, *stats; - if (sig->stats || thread_group_empty(tsk)) - goto ret; + stats = READ_ONCE(sig->stats); + if (stats || thread_group_empty(tsk)) + return stats; - /* No problem if kmem_cache_zalloc() fails */ - stats = kmem_cache_zalloc(taskstats_cache, GFP_KERNEL); + stats_new = kmem_cache_zalloc(taskstats_cache, GFP_KERNEL); spin_lock_irq(&tsk->sighand->siglock); - if (!sig->stats) { - sig->stats = stats; - stats = NULL; + stats = READ_ONCE(sig->stats); + if (!stats) { + stats = stats_new; + WRITE_ONCE(sig->stats, stats_new); + stats_new = NULL; } spin_unlock_irq(&tsk->sighand->siglock); - if (stats) - kmem_cache_free(taskstats_cache, stats); -ret: - return sig->stats; + if (stats_new) + kmem_cache_free(taskstats_cache, stats_new); + + return stats; }