]> git.ipfire.org Git - thirdparty/systemd.git/commit
tree-wide: add size limits for tmpfs mounts
authorTopi Miettinen <toiwoton@gmail.com>
Tue, 14 Apr 2020 13:39:36 +0000 (16:39 +0300)
committerLennart Poettering <lennart@poettering.net>
Tue, 12 May 2020 22:37:18 +0000 (00:37 +0200)
commit7d85383edbab73274dc81cc888d884bb01070bc2
tree90330d1a7a1bceec1225c200de55d84d52889bf8
parent7cc8fb3ef02e320a75e450b865626c7483782c23
tree-wide: add size limits for tmpfs mounts

Limit size of various tmpfs mounts to 10% of RAM, except volatile root and /var
to 25%. Another exception is made for /dev (also /devs for PrivateDevices) and
/sys/fs/cgroup since no (or very few) regular files are expected to be used.

In addition, since directories, symbolic links, device specials and xattrs are
not counted towards the size= limit, number of inodes is also limited
correspondingly: 4MB size translates to 1k of inodes (assuming 4k each), 10% of
RAM (using 16GB of RAM as baseline) translates to 400k and 25% to 1M inodes.

Because nr_inodes option can't use ratios like size option, there's an
unfortunate side effect that with small memory systems the limit may be on the
too large side. Also, on an extremely small device with only 256MB of RAM, 10%
of RAM for /run may not be enough for re-exec of PID1 because 16MB of free
space is required.
src/core/mount-setup.c
src/core/namespace.c
src/fstab-generator/fstab-generator.c
src/nspawn/nspawn-cgroup.c
src/nspawn/nspawn-mount.c
src/shared/mount-util.h
src/volatile-root/volatile-root.c
units/tmp.mount