linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 00/21] btrfs: support idmapped mounts
@ 2021-07-26 10:27 Christian Brauner
  2021-07-26 10:27 ` [PATCH v3 01/21] namei: add mapping aware lookup helper Christian Brauner
                   ` (20 more replies)
  0 siblings, 21 replies; 28+ messages in thread
From: Christian Brauner @ 2021-07-26 10:27 UTC (permalink / raw)
  To: Christoph Hellwig, Chris Mason, Josef Bacik, David Sterba
  Cc: Al Viro, linux-btrfs, Christian Brauner

From: Christian Brauner <christian.brauner@ubuntu.com>

Hey everyone,

/* v3 */
- base: v5.14-rc3
- Added Josef's Reviewed-by's (Thank you!)
- Switched subvolume/snapshot deletion error code (David)
But please see individual patches for changelogs.

This series enables the creation of idmapped mounts on btrfs. On the list of
filesystems btrfs was pretty high-up and requested quite often from userspace
(cf. [1]). This series requires just a few changes to the vfs for specific
lookup helpers that btrfs relies on to perform permission checking when looking
up an inode. The changes are required to port some other filesystem as well.

The conversion of the necessary btrfs internals was fairly straightforward. No
invasive changes were needed. I've decided to split up the patchset into very
small individual patches. This hopefully makes the series more readable and
fairly easy to review. The overall changeset is quite small.

All non-filesystem wide ioctls that peform permission checking based on inodes
can be supported on idmapped mounts. There are really just a few restrictions.
This should really only affect the deletion of subvolumes by subvolume id which
can be used to delete any subvolume in the filesystem even though the caller
might not even be able to see the subvolume under their mount. Other than that
behavior on idmapped and non-idmapped mounts is identical for all enabled
ioctls. People interested in idmappings on idmapped mounts should read [2].

The changeset has an associated new testsuite specific to btrfs. The
core vfs operations that btrfs implements are covered by the generic
idmapped mount testsuite. For the ioctls a new testsuite was added. It
is sent alongside this patchset for ease of review but will very likely
be merged independent of it.

All patches are based on v5.14-rc3.

The series can be pulled from:
https://git.kernel.org/brauner/h/fs.idmapped.btrfs
https://github.com/brauner/linux/tree/fs.idmapped.btrfs

The xfstests can be pulled from:
https://git.kernel.org/brauner/xfstests-dev/h/fs.idmapped.btrfs
https://github.com/brauner/xfstests/tree/fs.idmapped.btrfs

Note, the new btrfs xfstests patch is on top of a branch of mine
containing a few more preliminary patches. So if you want to run the
tests, please simply pull the branch and build from there.

The series has been tested with xfstests including the newly added btrfs
specific test. All tests pass.
There were three unrelated failures that I observed: btrfs/219,
btrfs/2020 and btrfs/235. All three also fail on earlier kernels
without the patch series applied.

Thanks!
Christian

[1]: https://github.com/systemd/systemd/pull/19438#discussion_r622807165
[2]: https://lore.kernel.org/linux-fsdevel/20210723125150.334206-1-brauner@kernel.org

Christian Brauner (20):
  namei: add mapping aware lookup helper
  btrfs/inode: handle idmaps in btrfs_new_inode()
  btrfs/inode: allow idmapped rename iop
  btrfs/inode: allow idmapped getattr iop
  btrfs/inode: allow idmapped mknod iop
  btrfs/inode: allow idmapped create iop
  btrfs/inode: allow idmapped mkdir iop
  btrfs/inode: allow idmapped symlink iop
  btrfs/inode: allow idmapped tmpfile iop
  btrfs/inode: allow idmapped setattr iop
  btrfs/inode: allow idmapped permission iop
  btrfs/ioctl: check whether fs{g,u}id are mapped during subvolume
    creation
  btrfs/inode: allow idmapped BTRFS_IOC_{SNAP,SUBVOL}_CREATE{_V2} ioctl
  btrfs/ioctl: allow idmapped BTRFS_IOC_SNAP_DESTROY{_V2} ioctl
  btrfs/ioctl: relax restrictions for BTRFS_IOC_SNAP_DESTROY_V2 with
    subvolids
  btrfs/ioctl: allow idmapped BTRFS_IOC_SET_RECEIVED_SUBVOL{_32} ioctl
  btrfs/ioctl: allow idmapped BTRFS_IOC_SUBVOL_SETFLAGS ioctl
  btrfs/ioctl: allow idmapped BTRFS_IOC_INO_LOOKUP_USER ioctl
  btrfs/acl: handle idmapped mounts
  btrfs/super: allow idmapped btrfs

 fs/btrfs/acl.c        | 11 ++---
 fs/btrfs/ctree.h      |  3 +-
 fs/btrfs/inode.c      | 62 ++++++++++++++++------------
 fs/btrfs/ioctl.c      | 96 ++++++++++++++++++++++++++++---------------
 fs/btrfs/super.c      |  2 +-
 fs/namei.c            | 44 +++++++++++++++++---
 include/linux/namei.h |  2 +
 7 files changed, 148 insertions(+), 72 deletions(-)


base-commit: ff1176468d368232b684f75e82563369208bc371
-- 
2.30.2


^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2021-07-26 16:10 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-26 10:27 [PATCH v3 00/21] btrfs: support idmapped mounts Christian Brauner
2021-07-26 10:27 ` [PATCH v3 01/21] namei: add mapping aware lookup helper Christian Brauner
2021-07-26 14:41   ` Matthew Wilcox
2021-07-26 14:45     ` Christoph Hellwig
2021-07-26 16:10       ` Christian Brauner
2021-07-26 10:27 ` [PATCH v3 02/21] btrfs/inode: handle idmaps in btrfs_new_inode() Christian Brauner
2021-07-26 10:27 ` [PATCH v3 03/21] btrfs/inode: allow idmapped rename iop Christian Brauner
2021-07-26 10:27 ` [PATCH v3 04/21] btrfs/inode: allow idmapped getattr iop Christian Brauner
2021-07-26 10:28 ` [PATCH v3 05/21] btrfs/inode: allow idmapped mknod iop Christian Brauner
2021-07-26 10:28 ` [PATCH v3 06/21] btrfs/inode: allow idmapped create iop Christian Brauner
2021-07-26 10:28 ` [PATCH v3 07/21] btrfs/inode: allow idmapped mkdir iop Christian Brauner
2021-07-26 10:28 ` [PATCH v3 08/21] btrfs/inode: allow idmapped symlink iop Christian Brauner
2021-07-26 10:28 ` [PATCH v3 09/21] btrfs/inode: allow idmapped tmpfile iop Christian Brauner
2021-07-26 10:28 ` [PATCH v3 10/21] btrfs/inode: allow idmapped setattr iop Christian Brauner
2021-07-26 10:28 ` [PATCH v3 11/21] btrfs/inode: allow idmapped permission iop Christian Brauner
2021-07-26 10:28 ` [PATCH v3 12/21] btrfs/ioctl: check whether fs{g,u}id are mapped during subvolume creation Christian Brauner
2021-07-26 10:28 ` [PATCH v3 13/21] btrfs/inode: allow idmapped BTRFS_IOC_{SNAP,SUBVOL}_CREATE{_V2} ioctl Christian Brauner
2021-07-26 10:28 ` [PATCH v3 14/21] btrfs/ioctl: allow idmapped BTRFS_IOC_SNAP_DESTROY{_V2} ioctl Christian Brauner
2021-07-26 11:26   ` Qu Wenruo
2021-07-26 10:28 ` [PATCH v3 15/21] btrfs/ioctl: relax restrictions for BTRFS_IOC_SNAP_DESTROY_V2 with subvolids Christian Brauner
2021-07-26 11:31   ` Qu Wenruo
2021-07-26 12:07     ` Christian Brauner
2021-07-26 10:28 ` [PATCH v3 16/21] btrfs/ioctl: allow idmapped BTRFS_IOC_SET_RECEIVED_SUBVOL{_32} ioctl Christian Brauner
2021-07-26 10:28 ` [PATCH v3 17/21] btrfs/ioctl: allow idmapped BTRFS_IOC_SUBVOL_SETFLAGS ioctl Christian Brauner
2021-07-26 10:28 ` [PATCH v3 18/21] btrfs/ioctl: allow idmapped BTRFS_IOC_INO_LOOKUP_USER ioctl Christian Brauner
2021-07-26 10:28 ` [PATCH v3 19/21] btrfs/acl: handle idmapped mounts Christian Brauner
2021-07-26 10:28 ` [PATCH v3 20/21] btrfs/super: allow idmapped btrfs Christian Brauner
2021-07-26 10:28 ` [PATCH v3 21/21] btrfs/242: introduce btrfs specific idmapped mounts tests Christian Brauner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).