Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp1827074imm; Mon, 3 Sep 2018 10:27:08 -0700 (PDT) X-Google-Smtp-Source: ANB0VdZc94LaHbwpdLL8Cgnql/e9LBCihNwrgs316WgLbwZCQnue7X8w9uLsGaIIqYW316MaUQ0K X-Received: by 2002:a17:902:46a4:: with SMTP id p33-v6mr29800264pld.205.1535995628180; Mon, 03 Sep 2018 10:27:08 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1535995628; cv=none; d=google.com; s=arc-20160816; b=Ao4EU8j4QCxNrIB/dq2otGyH4nyWtgwikt7ih8a9ppMh3RwJ65NpuDa1ozJdnX2eF7 MMwbLmRI/kAInGwUa8ckbJXPcrc0pvnQjFy6iNyzwyk+CqRTKOOarRn/TZXQk29Wbfaq 5kt4VrL9C3VOeCz1B8Lu4VKq112wsbjLgZvMkxOgRAMkh/pXibZELslw8AOkw0E6znwy oZyWX8wpHcAGD34fDl6xFhCGYc38rP0QEiQTrj/QVepHrNLN5jXaqRkvD+AqyrsDjFVC eJEIWtIu+MW9pQkMH4G1CI7oHNiYXQ6KRbwUbY9Icblopk/5HDYgQf6x+AvzwFUiwS9N 3Iiw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=TbJzNbx+G/cyk2GAVo1vP/7oX0UUpaW7irRrDX64j4A=; b=Sdd8/lNyq6tPuHbWYioWzqlsmDP8NGS77GqgLr3ZCirHVLmszIsqCnAZ0GgVIaNMIi bivHyAyWMfT+bkK5H7kmeKcwIFvNBCuEXiOilhcVBZkH43GrtSGmPQV24jRmkRZ9H6gq tOQks8BWX2IyhuhdIEyx0fBRzZNtfchPj8tiSMVj1ActnfTrXIV2x560GhN5pMBHzPzo rvjE559x/qdb7bEit++F0fdhyFL1JtftuZerteM4VLFLEfGvamI/ySmOg1QfSz037CuH hW6BQc1h8Hmi8fREoPbvS9F72fUQtZNMTgWc38BjWtKOOnuo4QhNTMdSZ056Klj26XtY u3mA== 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 34-v6si19243343plm.205.2018.09.03.10.26.53; Mon, 03 Sep 2018 10:27:08 -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 S1730654AbeICVqf (ORCPT + 99 others); Mon, 3 Sep 2018 17:46:35 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:45748 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728380AbeICVqf (ORCPT ); Mon, 3 Sep 2018 17:46:35 -0400 Received: from localhost (ip-213-127-74-90.ip.prioritytelecom.net [213.127.74.90]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 7D78CD24; Mon, 3 Sep 2018 17:25:27 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, syzbot , Miklos Szeredi Subject: [PATCH 4.14 119/165] fuse: fix initial parallel dirops Date: Mon, 3 Sep 2018 18:56:45 +0200 Message-Id: <20180903165701.510565209@linuxfoundation.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180903165655.003605184@linuxfoundation.org> References: <20180903165655.003605184@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Miklos Szeredi commit 63576c13bd17848376c8ba4a98f5d5151140c4ac upstream. If parallel dirops are enabled in FUSE_INIT reply, then first operation may leave fi->mutex held. Reported-by: syzbot Fixes: 5c672ab3f0ee ("fuse: serialize dirops by default") Cc: # v4.7 Signed-off-by: Miklos Szeredi Signed-off-by: Greg Kroah-Hartman --- fs/fuse/dir.c | 10 ++++++---- fs/fuse/fuse_i.h | 4 ++-- fs/fuse/inode.c | 14 ++++++++++---- 3 files changed, 18 insertions(+), 10 deletions(-) --- a/fs/fuse/dir.c +++ b/fs/fuse/dir.c @@ -355,11 +355,12 @@ static struct dentry *fuse_lookup(struct struct inode *inode; struct dentry *newent; bool outarg_valid = true; + bool locked; - fuse_lock_inode(dir); + locked = fuse_lock_inode(dir); err = fuse_lookup_name(dir->i_sb, get_node_id(dir), &entry->d_name, &outarg, &inode); - fuse_unlock_inode(dir); + fuse_unlock_inode(dir, locked); if (err == -ENOENT) { outarg_valid = false; err = 0; @@ -1332,6 +1333,7 @@ static int fuse_readdir(struct file *fil struct fuse_conn *fc = get_fuse_conn(inode); struct fuse_req *req; u64 attr_version = 0; + bool locked; if (is_bad_inode(inode)) return -EIO; @@ -1359,9 +1361,9 @@ static int fuse_readdir(struct file *fil fuse_read_fill(req, file, ctx->pos, PAGE_SIZE, FUSE_READDIR); } - fuse_lock_inode(inode); + locked = fuse_lock_inode(inode); fuse_request_send(fc, req); - fuse_unlock_inode(inode); + fuse_unlock_inode(inode, locked); nbytes = req->out.args[0].size; err = req->out.h.error; fuse_put_request(fc, req); --- a/fs/fuse/fuse_i.h +++ b/fs/fuse/fuse_i.h @@ -964,8 +964,8 @@ int fuse_do_setattr(struct dentry *dentr void fuse_set_initialized(struct fuse_conn *fc); -void fuse_unlock_inode(struct inode *inode); -void fuse_lock_inode(struct inode *inode); +void fuse_unlock_inode(struct inode *inode, bool locked); +bool fuse_lock_inode(struct inode *inode); int fuse_setxattr(struct inode *inode, const char *name, const void *value, size_t size, int flags); --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c @@ -357,15 +357,21 @@ int fuse_reverse_inval_inode(struct supe return 0; } -void fuse_lock_inode(struct inode *inode) +bool fuse_lock_inode(struct inode *inode) { - if (!get_fuse_conn(inode)->parallel_dirops) + bool locked = false; + + if (!get_fuse_conn(inode)->parallel_dirops) { mutex_lock(&get_fuse_inode(inode)->mutex); + locked = true; + } + + return locked; } -void fuse_unlock_inode(struct inode *inode) +void fuse_unlock_inode(struct inode *inode, bool locked) { - if (!get_fuse_conn(inode)->parallel_dirops) + if (locked) mutex_unlock(&get_fuse_inode(inode)->mutex); }