Received: by 2002:a25:c205:0:0:0:0:0 with SMTP id s5csp3416309ybf; Tue, 3 Mar 2020 05:42:19 -0800 (PST) X-Google-Smtp-Source: ADFU+vsoe76ilHOLDc4nL7T9eHkpIc+UeW5mTFsUwvVndHBJ7OYxhmc50wIX+7ioxmsU0R5IEgPW X-Received: by 2002:a05:6830:1112:: with SMTP id w18mr1745715otq.185.1583242939712; Tue, 03 Mar 2020 05:42:19 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1583242939; cv=none; d=google.com; s=arc-20160816; b=kdyu9PVP0F0yGO1thL9HLiTFDIr53/e8w287ze9GgY3eksKrCRKtvsTBnz0vLzn4R/ VdplePpL/SSe0hGM03LQPBSFUrV1RmW3X4HbTKGcKxwrWQ+26g/c7dN2o6g3fEA884SC 85zYxm67Ni83tWqzaKNeEyxpFrAEAOPsnaf6ZXqPMYd0mxZOWZc1bAphc8GXxxwk4VUe D0k4xf71+SBdEcUhKRjJTqx7D6yMTnfK0nile31VAuaz2fRzDQzwGCZ5TeTjlAgBxcBH QuxQ/f5vrBTpmmbvD/b45dhA0x7fbDOI8rKlZn+9qIqQf9jQVQQ2VolJNmFyQoMwj0uX tosQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:subject:cc:to:from:date; bh=5qaRR8T35E1FfVILn12dv/nq1ZOqtkpIc0hXRn5QN3U=; b=Zolbo0E+Xri0M+8ejznLO60LLtF7A55FSxgE3rt1/+7HTjX+utrGJg3x5sH/OuIeY0 Ne/Ptef0yZWmoafYwxihrfPYgSvMeIrGJ4n78f1YG8orO7rumqRuD2Ea6S0Vslypv2Jv 0DA30Jy8H4NzgbVeLB79Yuf3/tiElWnqu8YSm1gEY3PziEyFaQV9d/1vXSJFnBur72fX gWiFKIEJBgZhsXwTpzKFH/RZx65x30mTVNP5eQLxE2n2rxUqIwgVS+Z7Ph7KETHLgzG/ zFLm0r4tXts/Aq/ZfkVt5jV+/E8OO63D3jUrvVG7qFxU0Id92RskIcTJG2AW2eXVk1La nATQ== 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 h201si4327635oib.214.2020.03.03.05.42.07; Tue, 03 Mar 2020 05:42:19 -0800 (PST) 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 S1729481AbgCCNf1 (ORCPT + 99 others); Tue, 3 Mar 2020 08:35:27 -0500 Received: from mail.kernel.org ([198.145.29.99]:33676 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727167AbgCCNf1 (ORCPT ); Tue, 3 Mar 2020 08:35:27 -0500 Received: from gandalf.local.home (cpe-66-24-58-225.stny.res.rr.com [66.24.58.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 149D920838; Tue, 3 Mar 2020 13:35:26 +0000 (UTC) Date: Tue, 3 Mar 2020 08:35:23 -0500 From: Steven Rostedt To: Bob Liu Cc: Cengiz Can , Jens Axboe , Ingo Molnar , linux-block@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] blktrace: fix dereference after null check Message-ID: <20200303083523.78233c24@gandalf.local.home> In-Reply-To: References: <20200303073358.57799-1-cengiz@kernel.wtf> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 3 Mar 2020 21:29:08 +0800 Bob Liu wrote: > On 3/3/20 3:33 PM, Cengiz Can wrote: > > There was a recent change in blktrace.c that added a RCU protection to > > `q->blk_trace` in order to fix a use-after-free issue during access. > > > > However the change missed an edge case that can lead to dereferencing of > > `bt` pointer even when it's NULL: > > > > ``` > > bt->act_mask = value; // bt can still be NULL here > > ``` > > > > Added a reassignment into the NULL check block to fix the issue. > > > > Fixes: c780e86dd48 ("blktrace: Protect q->blk_trace with RCU") > > > > Signed-off-by: Cengiz Can > > --- > > Huge thanks goes to Steven Rostedt for his assistance. > > > > kernel/trace/blktrace.c | 4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > diff --git a/kernel/trace/blktrace.c b/kernel/trace/blktrace.c > > index 4560878f0bac..29ea88f10b87 100644 > > --- a/kernel/trace/blktrace.c > > +++ b/kernel/trace/blktrace.c > > @@ -1896,8 +1896,10 @@ static ssize_t sysfs_blk_trace_attr_store(struct device *dev, > > } > > > > ret = 0; > > - if (bt == NULL) > > + if (bt == NULL) { > > ret = blk_trace_setup_queue(q, bdev); > > + bt = q->blk_trace; > > The return value 'ret' should be judged, it's wrong to set 'bt' if blk_trace_setup_queue() > return failure. Why? If ret is an error, q is still valid, and bt would just be garbage. bt is ignored below if ret is anything but zero. Why add an unnecessary if condition here? That said, the bt assignment still needs rcu annotation: bt = rcu_dereference_protected(q->blk_trace, lockdep_is_held(&q->blk_trace_mutex)); -- Steve > > > + } > > > > if (ret == 0) { > > if (attr == &dev_attr_act_mask) > > -- > > 2.25.1 > >