[PATCH V6 0/7] shmem: Add user and group quota support for tmpfs

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



From: Carlos Maiolino <cem@xxxxxxxxxx>

Hello folks.

This is a new version of the implementation of tmpfs quota, below is the serie's
changelog, hopefully it make it easier to track down changes done on the past 3
versions.

I've rebased this series on Linus today's TOT, hopefully it prevents conflicts.

I also removed Jan Kara's RwB from patch 4, due to changes in functions
definition.

Changelog:

V6:
	- Fix build warning (patch 4) by defining shmem_mark_dquot_dirty() and
	  shmem_dquot_write_info() as static functions
	- Add a patch to fix syzkaller's reports.
		Once Patch 7 is applied, I didn't manage to reproduce the
		syzkaller issues anymore, so, added a Tested-by: tag
V5:
	- Update shmem_parse_one() to prevent quota enablement in unprivileged mounts.
V4:
	- Rebase to fix conflicts against 'noswap' mount option.


Original cover below.

people have been asking for quota support in tmpfs many times in the past
mostly to avoid one malicious user, or misbehaving user/program to consume
all of the system memory. This has been partially solved with the size
mount option, but some problems still prevail.

One of the problems is the fact that /dev/shm is still generally unprotected
with this and another is administration overhead of managing multiple tmpfs
mounts and lack of more fine grained control.

Quota support can solve all these problems in a somewhat standard way
people are already familiar with from regular file systems. It can give us
more fine grained control over how much memory user/groups can consume.
Additionally it can also control number of inodes and with special quota
mount options introduced with a second patch we can set global limits
allowing us to replace the size mount option with quota entirely.

Currently the standard userspace quota tools (quota, xfs_quota) are only
using quotactl ioctl which is expecting a block device. I patched quota [1]
and xfs_quota [2] to use quotactl_fd in case we want to run the tools on
mount point directory to work nicely with tmpfs.

The implementation was tested on patched version of xfstests [3].

[1] https://github.com/lczerner/quota/tree/quotactl_fd_support
[2] https://github.com/lczerner/xfsprogs/tree/quotactl_fd_support
[3] https://github.com/lczerner/xfstests/tree/tmpfs_quota_support


Carlos Maiolino (3):
  shmem: make shmem_get_inode() return ERR_PTR instead of NULL
  shmem: prepare shmem quota infrastructure
  shmem: quota support

Hugh Dickins (1):
  shmem: fix quota lock nesting in huge hole handling

Jan Kara (1):
  quota: Check presence of quota operation structures instead of
    ->quota_read and ->quota_write callbacks

Lukas Czerner (2):
  shmem: make shmem_inode_acct_block() return error
  shmem: Add default quota limit mount options

 Documentation/filesystems/tmpfs.rst |  31 ++
 fs/Kconfig                          |  12 +
 fs/quota/dquot.c                    |   2 +-
 include/linux/shmem_fs.h            |  28 ++
 include/uapi/linux/quota.h          |   1 +
 mm/Makefile                         |   2 +-
 mm/huge_memory.c                    |   6 +-
 mm/khugepaged.c                     |  13 +-
 mm/shmem.c                          | 495 +++++++++++++++++++++-------
 mm/shmem_quota.c                    | 350 ++++++++++++++++++++
 10 files changed, 812 insertions(+), 128 deletions(-)
 create mode 100644 mm/shmem_quota.c

Signed-off-by: Carlos Maiolino <cmaiolino@xxxxxxxxxx>

-- 
2.39.2



[Index of Archives]     [Linux Ext4 Filesystem]     [Union Filesystem]     [Filesystem Testing]     [Ceph Users]     [Ecryptfs]     [NTFS 3]     [AutoFS]     [Kernel Newbies]     [Share Photos]     [Security]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux Cachefs]     [Reiser Filesystem]     [Linux RAID]     [NTFS 3]     [Samba]     [Device Mapper]     [CEPH Development]

  Powered by Linux