Received: by 2002:a25:e74b:0:0:0:0:0 with SMTP id e72csp1868191ybh; Tue, 14 Jul 2020 09:18:41 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyUay97BfGJkX/7rc85z3m99YwfKA4V2w5F0+Jav9wr1+9w0UP+tZrEWNAKESrevSAzRoTa X-Received: by 2002:a05:6402:128c:: with SMTP id w12mr5559998edv.65.1594743521794; Tue, 14 Jul 2020 09:18:41 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1594743521; cv=none; d=google.com; s=arc-20160816; b=ajlp1gN7bCPu4ZByn7gsMqAZNjZiuhgwbpRLVPDmjyVT/uiUH4sGVcy15L5KhAw0ry rx69P2F+IAKaZWY00sf3QO2YD469bBM0/8MsfRsvDPoIIuxTr0EKUjG8dR3jveDcEsij 4tXdyPMogxuVD91N3/tNKo3sHtIvIxCi0XwJOkapXgY8xGU8O8u7YlmVGtxpS1O5urwK jXjSoF5/xPK17nzQ2+6MFkuvdHbH6tvC241Y/cabkYGsZeUZf+Lr3YPfxFoGviHH8NRM pJb/Z5hbzjZr7eBshujZropJrtg/N0oT2tPnWLvfE/gdMv8IpgoFHT1drU+dkQZw0fMg GEyQ== 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:date:subject:cc:to:from; bh=biFzOFpu3+YLxytN5m6HEOnbpX4TqM8akr9qdkLbkqo=; b=aag2UJa0OVVMTSCQ8ndDo6nZkN6rswKJPBpHjMOvHMDttuk6WH006DMNwmQh+i373Y BkGx5xKbK+W4HNAFBqUTIDTnreSOUF5psxF3MVOyrNLU6ldpQG8CKWi8ah8gzstpev8J Jset9w7flfzwbrAVIRWKp1XZzO2arVNP2TYrCgtTAZ+IPnUHLSFrovDVHkLXLKXRX8mC qi7Y4Nftna0VKMiHreVtf75ik65grzJNrPndhBlwa2O4xPM9m304k2tUnHDFeX0SGOTr KoeyTN0TW8k69CCqkCHnxy+BT0pwCv1+hFjCHC/R7YVfxnutPEPvcSp1kjWXy0nqaOvZ J8tA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id f20si11862825edx.189.2020.07.14.09.18.18; Tue, 14 Jul 2020 09:18:41 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728894AbgGNQP7 (ORCPT + 99 others); Tue, 14 Jul 2020 12:15:59 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:40928 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728817AbgGNQPz (ORCPT ); Tue, 14 Jul 2020 12:15:55 -0400 Received: from ip5f5af08c.dynamic.kabel-deutschland.de ([95.90.240.140] helo=wittgenstein.fritz.box) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1jvNau-0005y1-G8; Tue, 14 Jul 2020 16:15:48 +0000 From: Christian Brauner To: David Howells , Al Viro , linux-fsdevel@vger.kernel.org Cc: linux-kernel@vger.kernel.org, linux-api@vger.kernel.org, Michael Kerrisk , Christian Brauner Subject: [PATCH 2/4] namespace: only take read lock in do_reconfigure_mnt() Date: Tue, 14 Jul 2020 18:14:14 +0200 Message-Id: <20200714161415.3886463-4-christian.brauner@ubuntu.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200714161415.3886463-1-christian.brauner@ubuntu.com> References: <20200714161415.3886463-1-christian.brauner@ubuntu.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org do_reconfigure_mnt() used to take the down_write(&sb->s_umount) lock which seems unnecessary since we're not changing the superblock. We're only checking whether it is already read-only. Setting other mount attributes is protected by lock_mount_hash() afaict and not by s_umount. So I think the history of down_write(&sb->s_umount) lock being taken when setting mount attributes dates back to the introduction of MNT_READONLY in [2]. Afaict, this introduced the concept of having read-only mounts in contrast to just having a read-only superblock. When it got introduced it was simply plumbed into do_remount() which already took down_write(&sb->s_umount) because it was only used to actually change the superblock before [2]. Afaict, it would've already been possible back then to only use down_read(&sb->s_umount) for MS_BIND | MS_REMOUNT since actual mount options were protected by the vfsmount lock already. But that would've meant special casing the locking for MS_BIND | MS_REMOUNT in do_remount() which people might not have considered worth it. Then in [1] MS_BIND | MS_REMOUNT mount option changes were split out of do_remount() into do_reconfigure_mnt() but the down_write(&sb->s_umount) lock was simply copied over. Now that we have this be a separate helper only take the down_read(&sb->s_umount) lock since we're only interested in checking whether the super block is currently read-only and blocking any writers from changing it. Essentially, checking that the super block is read-only has the advantage that we can avoid having to go into the slowpath and through MNT_WRITE_HOLD and can simply set the read-only flag on the mount in set_mount_attributes(). [1]: commit 43f5e655eff7 ("vfs: Separate changing mount flags full remount") [2]: commit 2e4b7fcd9260 ("[PATCH] r/o bind mounts: honor mount writer counts at remount") Cc: Al Viro Cc: David Howells Cc: linux-fsdevel@vger.kernel.org Signed-off-by: Christian Brauner --- fs/namespace.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fs/namespace.c b/fs/namespace.c index 395b9c912edf..ab025dd3be04 100644 --- a/fs/namespace.c +++ b/fs/namespace.c @@ -2507,10 +2507,6 @@ static int change_mount_ro_state(struct mount *mnt, unsigned int mnt_flags) return __mnt_unmake_readonly(mnt); } -/* - * Update the user-settable attributes on a mount. The caller must hold - * sb->s_umount for writing. - */ static void set_mount_attributes(struct mount *mnt, unsigned int mnt_flags) { mnt_flags |= mnt->mnt.mnt_flags & ~MNT_USER_SETTABLE_MASK; @@ -2560,13 +2556,17 @@ static int do_reconfigure_mnt(struct path *path, unsigned int mnt_flags) if (!can_change_locked_flags(mnt, mnt_flags)) return -EPERM; - down_write(&sb->s_umount); + /* + * We're only checking whether the superblock is read-only not changing + * it, so only take down_read(&sb->s_umount). + */ + down_read(&sb->s_umount); lock_mount_hash(); ret = change_mount_ro_state(mnt, mnt_flags); if (ret == 0) set_mount_attributes(mnt, mnt_flags); unlock_mount_hash(); - up_write(&sb->s_umount); + up_read(&sb->s_umount); mnt_warn_timestamp_expiry(path, &mnt->mnt); -- 2.27.0