Skip to content

Commit 1062af9

Browse files
djwongtorvalds
authored andcommitted
tmpfs: fix link accounting when a tmpfile is linked in
tmpfs has a peculiarity of accounting hard links as if they were separate inodes: so that when the number of inodes is limited, as it is by default, a user cannot soak up an unlimited amount of unreclaimable dcache memory just by repeatedly linking a file. But when v3.11 added O_TMPFILE, and the ability to use linkat() on the fd, we missed accommodating this new case in tmpfs: "df -i" shows that an extra "inode" remains accounted after the file is unlinked and the fd closed and the actual inode evicted. If a user repeatedly links tmpfiles into a tmpfs, the limit will be hit (ENOSPC) even after they are deleted. Just skip the extra reservation from shmem_link() in this case: there's a sense in which this first link of a tmpfile is then cheaper than a hard link of another file, but the accounting works out, and there's still good limiting, so no need to do anything more complicated. Link: http://lkml.kernel.org/r/alpine.LSU.2.11.1902182134370.7035@eggly.anvils Fixes: f4e0c30 ("allow the temp files created by open() to be linked to") Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Hugh Dickins <hughd@google.com> Reported-by: Matej Kupljen <matej.kupljen@gmail.com> Acked-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 4e37504 commit 1062af9

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

mm/shmem.c

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2854,10 +2854,14 @@ static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentr
28542854
* No ordinary (disk based) filesystem counts links as inodes;
28552855
* but each new link needs a new dentry, pinning lowmem, and
28562856
* tmpfs dentries cannot be pruned until they are unlinked.
2857+
* But if an O_TMPFILE file is linked into the tmpfs, the
2858+
* first link must skip that, to get the accounting right.
28572859
*/
2858-
ret = shmem_reserve_inode(inode->i_sb);
2859-
if (ret)
2860-
goto out;
2860+
if (inode->i_nlink) {
2861+
ret = shmem_reserve_inode(inode->i_sb);
2862+
if (ret)
2863+
goto out;
2864+
}
28612865

28622866
dir->i_size += BOGO_DIRENT_SIZE;
28632867
inode->i_ctime = dir->i_ctime = dir->i_mtime = current_time(inode);

0 commit comments

Comments
 (0)