blob: 9c6d22ff44e26280505729463acaa96e8bf88d6a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Resizable virtual memory filesystem for Linux.
3 *
4 * Copyright (C) 2000 Linus Torvalds.
5 * 2000 Transmeta Corp.
6 * 2000-2001 Christoph Rohland
7 * 2000-2001 SAP AG
8 * 2002 Red Hat Inc.
Hugh Dickins6922c0c2011-08-03 16:21:25 -07009 * Copyright (C) 2002-2011 Hugh Dickins.
10 * Copyright (C) 2011 Google Inc.
Hugh Dickins0edd73b2005-06-21 17:15:04 -070011 * Copyright (C) 2002-2005 VERITAS Software Corporation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Copyright (C) 2004 Andi Kleen, SuSE Labs
13 *
14 * Extended attribute support for tmpfs:
15 * Copyright (c) 2004, Luke Kenneth Casson Leighton <lkcl@lkcl.net>
16 * Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
17 *
Matt Mackall853ac432009-01-06 14:40:20 -080018 * tiny-shmem:
19 * Copyright (c) 2004, 2008 Matt Mackall <mpm@selenic.com>
20 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * This file is released under the GPL.
22 */
23
Matt Mackall853ac432009-01-06 14:40:20 -080024#include <linux/fs.h>
25#include <linux/init.h>
26#include <linux/vfs.h>
27#include <linux/mount.h>
Andrew Morton250297e2013-04-29 15:06:12 -070028#include <linux/ramfs.h>
Hugh Dickinscaefba12009-04-13 14:40:12 -070029#include <linux/pagemap.h>
Matt Mackall853ac432009-01-06 14:40:20 -080030#include <linux/file.h>
31#include <linux/mm.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040032#include <linux/export.h>
Matt Mackall853ac432009-01-06 14:40:20 -080033#include <linux/swap.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080034#include <linux/uio.h>
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -070035#include <linux/khugepaged.h>
Matt Mackall853ac432009-01-06 14:40:20 -080036
Andrea Arcangeli95cc09d2017-02-22 15:43:31 -080037#include <asm/tlbflush.h> /* for arch/microblaze update_mmu_cache() */
38
Matt Mackall853ac432009-01-06 14:40:20 -080039static struct vfsmount *shm_mnt;
40
41#ifdef CONFIG_SHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/*
43 * This virtual memory filesystem is heavily based on the ramfs. It
44 * extends ramfs by the ability to use swap and honor resource limits
45 * which makes it a completely usable filesystem.
46 */
47
Andreas Gruenbacher39f02472006-09-29 02:01:35 -070048#include <linux/xattr.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070049#include <linux/exportfs.h>
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010050#include <linux/posix_acl.h>
Christoph Hellwigfeda8212013-12-20 05:16:54 -080051#include <linux/posix_acl_xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <linux/string.h>
54#include <linux/slab.h>
55#include <linux/backing-dev.h>
56#include <linux/shmem_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/blkdev.h>
Hugh Dickinsbda97ea2011-08-03 16:21:21 -070059#include <linux/pagevec.h>
Hugh Dickins41ffe5d2011-08-03 16:21:21 -070060#include <linux/percpu_counter.h>
Hugh Dickins83e4fa92012-05-29 15:06:40 -070061#include <linux/falloc.h>
Hugh Dickins708e3502011-07-25 17:12:32 -070062#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/security.h>
64#include <linux/swapops.h>
65#include <linux/mempolicy.h>
66#include <linux/namei.h>
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +000067#include <linux/ctype.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070068#include <linux/migrate.h>
Christoph Lameterc1f60a52006-09-25 23:31:11 -070069#include <linux/highmem.h>
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -080070#include <linux/seq_file.h>
Mimi Zohar92562922008-10-07 14:00:12 -040071#include <linux/magic.h>
David Herrmann9183df22014-08-08 14:25:29 -070072#include <linux/syscalls.h>
David Herrmann40e041a2014-08-08 14:25:27 -070073#include <linux/fcntl.h>
David Herrmann9183df22014-08-08 14:25:29 -070074#include <uapi/linux/memfd.h>
Mike Rapoportcfda0522017-02-22 15:43:37 -080075#include <linux/userfaultfd_k.h>
Mike Rapoport4c27fe42017-02-22 15:43:25 -080076#include <linux/rmap.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070077
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080078#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <asm/pgtable.h>
80
Mel Gormandd56b042015-11-06 16:28:43 -080081#include "internal.h"
82
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030083#define BLOCKS_PER_PAGE (PAGE_SIZE/512)
84#define VM_ACCT(size) (PAGE_ALIGN(size) >> PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/* Pretend that each entry is of this size in directory's i_size */
87#define BOGO_DIRENT_SIZE 20
88
Hugh Dickins69f07ec2011-08-03 16:21:26 -070089/* Symlink up to this size is kmalloc'ed instead of using a swappable page */
90#define SHORT_SYMLINK_LEN 128
91
Hugh Dickins1aac1402012-05-29 15:06:42 -070092/*
Hugh Dickinsf00cdc62014-06-23 13:22:06 -070093 * shmem_fallocate communicates with shmem_fault or shmem_writepage via
94 * inode->i_private (with i_mutex making sure that it has only one user at
95 * a time): we would prefer not to enlarge the shmem inode just for that.
Hugh Dickins1aac1402012-05-29 15:06:42 -070096 */
97struct shmem_falloc {
Hugh Dickins8e205f72014-07-23 14:00:10 -070098 wait_queue_head_t *waitq; /* faults into hole wait for punch to end */
Hugh Dickins1aac1402012-05-29 15:06:42 -070099 pgoff_t start; /* start of range currently being fallocated */
100 pgoff_t next; /* the next page offset to be fallocated */
101 pgoff_t nr_falloced; /* how many new pages have been fallocated */
102 pgoff_t nr_unswapped; /* how often writepage refused to swap out */
103};
104
Andrew Mortonb76db732008-02-08 04:21:49 -0800105#ifdef CONFIG_TMPFS
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800106static unsigned long shmem_default_max_blocks(void)
107{
108 return totalram_pages / 2;
109}
110
111static unsigned long shmem_default_max_inodes(void)
112{
113 return min(totalram_pages - totalhigh_pages, totalram_pages / 2);
114}
Andrew Mortonb76db732008-02-08 04:21:49 -0800115#endif
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800116
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700117static bool shmem_should_replace_page(struct page *page, gfp_t gfp);
118static int shmem_replace_page(struct page **pagep, gfp_t gfp,
119 struct shmem_inode_info *info, pgoff_t index);
Hugh Dickins68da9f02011-07-25 17:12:34 -0700120static int shmem_getpage_gfp(struct inode *inode, pgoff_t index,
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700121 struct page **pagep, enum sgp_type sgp,
Mike Rapoportcfda0522017-02-22 15:43:37 -0800122 gfp_t gfp, struct vm_area_struct *vma,
123 struct vm_fault *vmf, int *fault_type);
Hugh Dickins68da9f02011-07-25 17:12:34 -0700124
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -0700125int shmem_getpage(struct inode *inode, pgoff_t index,
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700126 struct page **pagep, enum sgp_type sgp)
Hugh Dickins68da9f02011-07-25 17:12:34 -0700127{
128 return shmem_getpage_gfp(inode, index, pagep, sgp,
Mike Rapoportcfda0522017-02-22 15:43:37 -0800129 mapping_gfp_mask(inode->i_mapping), NULL, NULL, NULL);
Hugh Dickins68da9f02011-07-25 17:12:34 -0700130}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
133{
134 return sb->s_fs_info;
135}
136
137/*
138 * shmem_file_setup pre-accounts the whole fixed size of a VM object,
139 * for shared memory and for shared anonymous (/dev/zero) mappings
140 * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
141 * consistent with the pre-accounting of private mappings ...
142 */
143static inline int shmem_acct_size(unsigned long flags, loff_t size)
144{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000145 return (flags & VM_NORESERVE) ?
Al Viro191c5422012-02-13 03:58:52 +0000146 0 : security_vm_enough_memory_mm(current->mm, VM_ACCT(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
149static inline void shmem_unacct_size(unsigned long flags, loff_t size)
150{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000151 if (!(flags & VM_NORESERVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 vm_unacct_memory(VM_ACCT(size));
153}
154
Konstantin Khlebnikov77142512014-08-06 16:06:34 -0700155static inline int shmem_reacct_size(unsigned long flags,
156 loff_t oldsize, loff_t newsize)
157{
158 if (!(flags & VM_NORESERVE)) {
159 if (VM_ACCT(newsize) > VM_ACCT(oldsize))
160 return security_vm_enough_memory_mm(current->mm,
161 VM_ACCT(newsize) - VM_ACCT(oldsize));
162 else if (VM_ACCT(newsize) < VM_ACCT(oldsize))
163 vm_unacct_memory(VM_ACCT(oldsize) - VM_ACCT(newsize));
164 }
165 return 0;
166}
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/*
169 * ... whereas tmpfs objects are accounted incrementally as
Hugh Dickins75edd342016-05-19 17:12:44 -0700170 * pages are allocated, in order to allow large sparse files.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * shmem_getpage reports shmem_acct_block failure as -ENOSPC not -ENOMEM,
172 * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
173 */
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700174static inline int shmem_acct_block(unsigned long flags, long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700176 if (!(flags & VM_NORESERVE))
177 return 0;
178
179 return security_vm_enough_memory_mm(current->mm,
180 pages * VM_ACCT(PAGE_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
183static inline void shmem_unacct_blocks(unsigned long flags, long pages)
184{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000185 if (flags & VM_NORESERVE)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300186 vm_unacct_memory(pages * VM_ACCT(PAGE_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
Hugh Dickins759b9772007-03-05 00:30:28 -0800189static const struct super_operations shmem_ops;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700190static const struct address_space_operations shmem_aops;
Helge Deller15ad7cd2006-12-06 20:40:36 -0800191static const struct file_operations shmem_file_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800192static const struct inode_operations shmem_inode_operations;
193static const struct inode_operations shmem_dir_inode_operations;
194static const struct inode_operations shmem_special_inode_operations;
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +0400195static const struct vm_operations_struct shmem_vm_ops;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700196static struct file_system_type shmem_fs_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Mike Rapoportb0506e42017-02-22 15:43:28 -0800198bool vma_is_shmem(struct vm_area_struct *vma)
199{
200 return vma->vm_ops == &shmem_vm_ops;
201}
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203static LIST_HEAD(shmem_swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800204static DEFINE_MUTEX(shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Pavel Emelyanov5b04c682008-02-04 22:28:47 -0800206static int shmem_reserve_inode(struct super_block *sb)
207{
208 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
209 if (sbinfo->max_inodes) {
210 spin_lock(&sbinfo->stat_lock);
211 if (!sbinfo->free_inodes) {
212 spin_unlock(&sbinfo->stat_lock);
213 return -ENOSPC;
214 }
215 sbinfo->free_inodes--;
216 spin_unlock(&sbinfo->stat_lock);
217 }
218 return 0;
219}
220
221static void shmem_free_inode(struct super_block *sb)
222{
223 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
224 if (sbinfo->max_inodes) {
225 spin_lock(&sbinfo->stat_lock);
226 sbinfo->free_inodes++;
227 spin_unlock(&sbinfo->stat_lock);
228 }
229}
230
Randy Dunlap46711812008-03-19 17:00:41 -0700231/**
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700232 * shmem_recalc_inode - recalculate the block usage of an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 * @inode: inode to recalc
234 *
235 * We have to calculate the free blocks since the mm can drop
236 * undirtied hole pages behind our back.
237 *
238 * But normally info->alloced == inode->i_mapping->nrpages + info->swapped
239 * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
240 *
241 * It has to be called with the spinlock held.
242 */
243static void shmem_recalc_inode(struct inode *inode)
244{
245 struct shmem_inode_info *info = SHMEM_I(inode);
246 long freed;
247
248 freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
249 if (freed > 0) {
Hugh Dickins54af60422011-08-03 16:21:24 -0700250 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
251 if (sbinfo->max_blocks)
252 percpu_counter_add(&sbinfo->used_blocks, -freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 info->alloced -= freed;
Hugh Dickins54af60422011-08-03 16:21:24 -0700254 inode->i_blocks -= freed * BLOCKS_PER_PAGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 shmem_unacct_blocks(info->flags, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257}
258
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700259bool shmem_charge(struct inode *inode, long pages)
260{
261 struct shmem_inode_info *info = SHMEM_I(inode);
262 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700263 unsigned long flags;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700264
265 if (shmem_acct_block(info->flags, pages))
266 return false;
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700267 spin_lock_irqsave(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700268 info->alloced += pages;
269 inode->i_blocks += pages * BLOCKS_PER_PAGE;
270 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700271 spin_unlock_irqrestore(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700272 inode->i_mapping->nrpages += pages;
273
274 if (!sbinfo->max_blocks)
275 return true;
276 if (percpu_counter_compare(&sbinfo->used_blocks,
277 sbinfo->max_blocks - pages) > 0) {
278 inode->i_mapping->nrpages -= pages;
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700279 spin_lock_irqsave(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700280 info->alloced -= pages;
281 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700282 spin_unlock_irqrestore(&info->lock, flags);
Hugh Dickins71664662016-09-23 20:24:23 -0700283 shmem_unacct_blocks(info->flags, pages);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700284 return false;
285 }
286 percpu_counter_add(&sbinfo->used_blocks, pages);
287 return true;
288}
289
290void shmem_uncharge(struct inode *inode, long pages)
291{
292 struct shmem_inode_info *info = SHMEM_I(inode);
293 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700294 unsigned long flags;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700295
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700296 spin_lock_irqsave(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700297 info->alloced -= pages;
298 inode->i_blocks -= pages * BLOCKS_PER_PAGE;
299 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700300 spin_unlock_irqrestore(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700301
302 if (sbinfo->max_blocks)
303 percpu_counter_sub(&sbinfo->used_blocks, pages);
Hugh Dickins71664662016-09-23 20:24:23 -0700304 shmem_unacct_blocks(info->flags, pages);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700305}
306
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700307/*
308 * Replace item expected in radix tree by a new item, while holding tree lock.
309 */
310static int shmem_radix_tree_replace(struct address_space *mapping,
311 pgoff_t index, void *expected, void *replacement)
312{
Johannes Weinerf7942432016-12-12 16:43:41 -0800313 struct radix_tree_node *node;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700314 void **pslot;
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700315 void *item;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700316
317 VM_BUG_ON(!expected);
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700318 VM_BUG_ON(!replacement);
Johannes Weinerf7942432016-12-12 16:43:41 -0800319 item = __radix_tree_lookup(&mapping->page_tree, index, &node, &pslot);
320 if (!item)
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700321 return -ENOENT;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700322 if (item != expected)
323 return -ENOENT;
Johannes Weiner4d693d02016-12-12 16:43:49 -0800324 __radix_tree_replace(&mapping->page_tree, node, pslot,
325 replacement, NULL, NULL);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700326 return 0;
327}
328
329/*
Hugh Dickinsd1899222012-07-11 14:02:47 -0700330 * Sometimes, before we decide whether to proceed or to fail, we must check
331 * that an entry was not already brought back from swap by a racing thread.
332 *
333 * Checking page is not enough: by the time a SwapCache page is locked, it
334 * might be reused, and again be SwapCache, using the same swap as before.
335 */
336static bool shmem_confirm_swap(struct address_space *mapping,
337 pgoff_t index, swp_entry_t swap)
338{
339 void *item;
340
341 rcu_read_lock();
342 item = radix_tree_lookup(&mapping->page_tree, index);
343 rcu_read_unlock();
344 return item == swp_to_radix_entry(swap);
345}
346
347/*
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700348 * Definitions for "huge tmpfs": tmpfs mounted with the huge= option
349 *
350 * SHMEM_HUGE_NEVER:
351 * disables huge pages for the mount;
352 * SHMEM_HUGE_ALWAYS:
353 * enables huge pages for the mount;
354 * SHMEM_HUGE_WITHIN_SIZE:
355 * only allocate huge pages if the page will be fully within i_size,
356 * also respect fadvise()/madvise() hints;
357 * SHMEM_HUGE_ADVISE:
358 * only allocate huge pages if requested with fadvise()/madvise();
359 */
360
361#define SHMEM_HUGE_NEVER 0
362#define SHMEM_HUGE_ALWAYS 1
363#define SHMEM_HUGE_WITHIN_SIZE 2
364#define SHMEM_HUGE_ADVISE 3
365
366/*
367 * Special values.
368 * Only can be set via /sys/kernel/mm/transparent_hugepage/shmem_enabled:
369 *
370 * SHMEM_HUGE_DENY:
371 * disables huge on shm_mnt and all mounts, for emergency use;
372 * SHMEM_HUGE_FORCE:
373 * enables huge on shm_mnt and all mounts, w/o needing option, for testing;
374 *
375 */
376#define SHMEM_HUGE_DENY (-1)
377#define SHMEM_HUGE_FORCE (-2)
378
Kirill A. Shutemove496cf32016-07-26 15:26:35 -0700379#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700380/* ifdef here to avoid bloating shmem.o when not necessary */
381
382int shmem_huge __read_mostly;
383
Jérémy Lefauref1f59292016-12-12 16:43:23 -0800384#if defined(CONFIG_SYSFS) || defined(CONFIG_TMPFS)
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700385static int shmem_parse_huge(const char *str)
386{
387 if (!strcmp(str, "never"))
388 return SHMEM_HUGE_NEVER;
389 if (!strcmp(str, "always"))
390 return SHMEM_HUGE_ALWAYS;
391 if (!strcmp(str, "within_size"))
392 return SHMEM_HUGE_WITHIN_SIZE;
393 if (!strcmp(str, "advise"))
394 return SHMEM_HUGE_ADVISE;
395 if (!strcmp(str, "deny"))
396 return SHMEM_HUGE_DENY;
397 if (!strcmp(str, "force"))
398 return SHMEM_HUGE_FORCE;
399 return -EINVAL;
400}
401
402static const char *shmem_format_huge(int huge)
403{
404 switch (huge) {
405 case SHMEM_HUGE_NEVER:
406 return "never";
407 case SHMEM_HUGE_ALWAYS:
408 return "always";
409 case SHMEM_HUGE_WITHIN_SIZE:
410 return "within_size";
411 case SHMEM_HUGE_ADVISE:
412 return "advise";
413 case SHMEM_HUGE_DENY:
414 return "deny";
415 case SHMEM_HUGE_FORCE:
416 return "force";
417 default:
418 VM_BUG_ON(1);
419 return "bad_val";
420 }
421}
Jérémy Lefauref1f59292016-12-12 16:43:23 -0800422#endif
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700423
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700424static unsigned long shmem_unused_huge_shrink(struct shmem_sb_info *sbinfo,
425 struct shrink_control *sc, unsigned long nr_to_split)
426{
427 LIST_HEAD(list), *pos, *next;
Kirill A. Shutemov253fd0f2017-02-03 13:13:15 -0800428 LIST_HEAD(to_remove);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700429 struct inode *inode;
430 struct shmem_inode_info *info;
431 struct page *page;
432 unsigned long batch = sc ? sc->nr_to_scan : 128;
433 int removed = 0, split = 0;
434
435 if (list_empty(&sbinfo->shrinklist))
436 return SHRINK_STOP;
437
438 spin_lock(&sbinfo->shrinklist_lock);
439 list_for_each_safe(pos, next, &sbinfo->shrinklist) {
440 info = list_entry(pos, struct shmem_inode_info, shrinklist);
441
442 /* pin the inode */
443 inode = igrab(&info->vfs_inode);
444
445 /* inode is about to be evicted */
446 if (!inode) {
447 list_del_init(&info->shrinklist);
448 removed++;
449 goto next;
450 }
451
452 /* Check if there's anything to gain */
453 if (round_up(inode->i_size, PAGE_SIZE) ==
454 round_up(inode->i_size, HPAGE_PMD_SIZE)) {
Kirill A. Shutemov253fd0f2017-02-03 13:13:15 -0800455 list_move(&info->shrinklist, &to_remove);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700456 removed++;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700457 goto next;
458 }
459
460 list_move(&info->shrinklist, &list);
461next:
462 if (!--batch)
463 break;
464 }
465 spin_unlock(&sbinfo->shrinklist_lock);
466
Kirill A. Shutemov253fd0f2017-02-03 13:13:15 -0800467 list_for_each_safe(pos, next, &to_remove) {
468 info = list_entry(pos, struct shmem_inode_info, shrinklist);
469 inode = &info->vfs_inode;
470 list_del_init(&info->shrinklist);
471 iput(inode);
472 }
473
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700474 list_for_each_safe(pos, next, &list) {
475 int ret;
476
477 info = list_entry(pos, struct shmem_inode_info, shrinklist);
478 inode = &info->vfs_inode;
479
480 if (nr_to_split && split >= nr_to_split) {
481 iput(inode);
482 continue;
483 }
484
485 page = find_lock_page(inode->i_mapping,
486 (inode->i_size & HPAGE_PMD_MASK) >> PAGE_SHIFT);
487 if (!page)
488 goto drop;
489
490 if (!PageTransHuge(page)) {
491 unlock_page(page);
492 put_page(page);
493 goto drop;
494 }
495
496 ret = split_huge_page(page);
497 unlock_page(page);
498 put_page(page);
499
500 if (ret) {
501 /* split failed: leave it on the list */
502 iput(inode);
503 continue;
504 }
505
506 split++;
507drop:
508 list_del_init(&info->shrinklist);
509 removed++;
510 iput(inode);
511 }
512
513 spin_lock(&sbinfo->shrinklist_lock);
514 list_splice_tail(&list, &sbinfo->shrinklist);
515 sbinfo->shrinklist_len -= removed;
516 spin_unlock(&sbinfo->shrinklist_lock);
517
518 return split;
519}
520
521static long shmem_unused_huge_scan(struct super_block *sb,
522 struct shrink_control *sc)
523{
524 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
525
526 if (!READ_ONCE(sbinfo->shrinklist_len))
527 return SHRINK_STOP;
528
529 return shmem_unused_huge_shrink(sbinfo, sc, 0);
530}
531
532static long shmem_unused_huge_count(struct super_block *sb,
533 struct shrink_control *sc)
534{
535 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
536 return READ_ONCE(sbinfo->shrinklist_len);
537}
Kirill A. Shutemove496cf32016-07-26 15:26:35 -0700538#else /* !CONFIG_TRANSPARENT_HUGE_PAGECACHE */
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700539
540#define shmem_huge SHMEM_HUGE_DENY
541
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700542static unsigned long shmem_unused_huge_shrink(struct shmem_sb_info *sbinfo,
543 struct shrink_control *sc, unsigned long nr_to_split)
544{
545 return 0;
546}
Kirill A. Shutemove496cf32016-07-26 15:26:35 -0700547#endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE */
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700548
549/*
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700550 * Like add_to_page_cache_locked, but error if expected item has gone.
551 */
552static int shmem_add_to_page_cache(struct page *page,
553 struct address_space *mapping,
Wang Sheng-Huifed400a2014-08-06 16:07:26 -0700554 pgoff_t index, void *expected)
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700555{
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700556 int error, nr = hpage_nr_pages(page);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700557
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700558 VM_BUG_ON_PAGE(PageTail(page), page);
559 VM_BUG_ON_PAGE(index != round_down(index, nr), page);
Sasha Levin309381fea2014-01-23 15:52:54 -0800560 VM_BUG_ON_PAGE(!PageLocked(page), page);
561 VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700562 VM_BUG_ON(expected && PageTransHuge(page));
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700563
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700564 page_ref_add(page, nr);
Hugh Dickinsb065b432012-07-11 14:02:48 -0700565 page->mapping = mapping;
566 page->index = index;
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700567
Hugh Dickinsb065b432012-07-11 14:02:48 -0700568 spin_lock_irq(&mapping->tree_lock);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700569 if (PageTransHuge(page)) {
570 void __rcu **results;
571 pgoff_t idx;
572 int i;
573
574 error = 0;
575 if (radix_tree_gang_lookup_slot(&mapping->page_tree,
576 &results, &idx, index, 1) &&
577 idx < index + HPAGE_PMD_NR) {
578 error = -EEXIST;
579 }
580
581 if (!error) {
582 for (i = 0; i < HPAGE_PMD_NR; i++) {
583 error = radix_tree_insert(&mapping->page_tree,
584 index + i, page + i);
585 VM_BUG_ON(error);
586 }
587 count_vm_event(THP_FILE_ALLOC);
588 }
589 } else if (!expected) {
Hugh Dickinsb065b432012-07-11 14:02:48 -0700590 error = radix_tree_insert(&mapping->page_tree, index, page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700591 } else {
Hugh Dickinsb065b432012-07-11 14:02:48 -0700592 error = shmem_radix_tree_replace(mapping, index, expected,
593 page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700594 }
595
Hugh Dickinsb065b432012-07-11 14:02:48 -0700596 if (!error) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700597 mapping->nrpages += nr;
598 if (PageTransHuge(page))
Mel Gorman11fb9982016-07-28 15:46:20 -0700599 __inc_node_page_state(page, NR_SHMEM_THPS);
600 __mod_node_page_state(page_pgdat(page), NR_FILE_PAGES, nr);
601 __mod_node_page_state(page_pgdat(page), NR_SHMEM, nr);
Hugh Dickinsb065b432012-07-11 14:02:48 -0700602 spin_unlock_irq(&mapping->tree_lock);
603 } else {
604 page->mapping = NULL;
605 spin_unlock_irq(&mapping->tree_lock);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700606 page_ref_sub(page, nr);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700607 }
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700608 return error;
609}
610
611/*
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700612 * Like delete_from_page_cache, but substitutes swap for page.
613 */
614static void shmem_delete_from_page_cache(struct page *page, void *radswap)
615{
616 struct address_space *mapping = page->mapping;
617 int error;
618
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700619 VM_BUG_ON_PAGE(PageCompound(page), page);
620
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700621 spin_lock_irq(&mapping->tree_lock);
622 error = shmem_radix_tree_replace(mapping, page->index, page, radswap);
623 page->mapping = NULL;
624 mapping->nrpages--;
Mel Gorman11fb9982016-07-28 15:46:20 -0700625 __dec_node_page_state(page, NR_FILE_PAGES);
626 __dec_node_page_state(page, NR_SHMEM);
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700627 spin_unlock_irq(&mapping->tree_lock);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300628 put_page(page);
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700629 BUG_ON(error);
630}
631
632/*
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700633 * Remove swap entry from radix tree, free the swap and its page cache.
634 */
635static int shmem_free_swap(struct address_space *mapping,
636 pgoff_t index, void *radswap)
637{
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700638 void *old;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700639
640 spin_lock_irq(&mapping->tree_lock);
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700641 old = radix_tree_delete_item(&mapping->page_tree, index, radswap);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700642 spin_unlock_irq(&mapping->tree_lock);
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700643 if (old != radswap)
644 return -ENOENT;
645 free_swap_and_cache(radix_to_swp_entry(radswap));
646 return 0;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700647}
648
649/*
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800650 * Determine (in bytes) how many of the shmem object's pages mapped by the
Vlastimil Babka48131e02016-01-14 15:19:23 -0800651 * given offsets are swapped out.
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800652 *
653 * This is safe to call without i_mutex or mapping->tree_lock thanks to RCU,
654 * as long as the inode doesn't go away and racy results are not a problem.
655 */
Vlastimil Babka48131e02016-01-14 15:19:23 -0800656unsigned long shmem_partial_swap_usage(struct address_space *mapping,
657 pgoff_t start, pgoff_t end)
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800658{
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800659 struct radix_tree_iter iter;
660 void **slot;
661 struct page *page;
Vlastimil Babka48131e02016-01-14 15:19:23 -0800662 unsigned long swapped = 0;
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800663
664 rcu_read_lock();
665
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800666 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
667 if (iter.index >= end)
668 break;
669
670 page = radix_tree_deref_slot(slot);
671
Matthew Wilcox2cf938a2016-03-17 14:22:03 -0700672 if (radix_tree_deref_retry(page)) {
673 slot = radix_tree_iter_retry(&iter);
674 continue;
675 }
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800676
677 if (radix_tree_exceptional_entry(page))
678 swapped++;
679
680 if (need_resched()) {
Matthew Wilcox148deab2016-12-14 15:08:49 -0800681 slot = radix_tree_iter_resume(slot, &iter);
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800682 cond_resched_rcu();
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800683 }
684 }
685
686 rcu_read_unlock();
687
688 return swapped << PAGE_SHIFT;
689}
690
691/*
Vlastimil Babka48131e02016-01-14 15:19:23 -0800692 * Determine (in bytes) how many of the shmem object's pages mapped by the
693 * given vma is swapped out.
694 *
695 * This is safe to call without i_mutex or mapping->tree_lock thanks to RCU,
696 * as long as the inode doesn't go away and racy results are not a problem.
697 */
698unsigned long shmem_swap_usage(struct vm_area_struct *vma)
699{
700 struct inode *inode = file_inode(vma->vm_file);
701 struct shmem_inode_info *info = SHMEM_I(inode);
702 struct address_space *mapping = inode->i_mapping;
703 unsigned long swapped;
704
705 /* Be careful as we don't hold info->lock */
706 swapped = READ_ONCE(info->swapped);
707
708 /*
709 * The easier cases are when the shmem object has nothing in swap, or
710 * the vma maps it whole. Then we can simply use the stats that we
711 * already track.
712 */
713 if (!swapped)
714 return 0;
715
716 if (!vma->vm_pgoff && vma->vm_end - vma->vm_start >= inode->i_size)
717 return swapped << PAGE_SHIFT;
718
719 /* Here comes the more involved part */
720 return shmem_partial_swap_usage(mapping,
721 linear_page_index(vma, vma->vm_start),
722 linear_page_index(vma, vma->vm_end));
723}
724
725/*
Hugh Dickins24513262012-01-20 14:34:21 -0800726 * SysV IPC SHM_UNLOCK restore Unevictable pages to their evictable lists.
727 */
728void shmem_unlock_mapping(struct address_space *mapping)
729{
730 struct pagevec pvec;
731 pgoff_t indices[PAGEVEC_SIZE];
732 pgoff_t index = 0;
733
734 pagevec_init(&pvec, 0);
735 /*
736 * Minor point, but we might as well stop if someone else SHM_LOCKs it.
737 */
738 while (!mapping_unevictable(mapping)) {
739 /*
740 * Avoid pagevec_lookup(): find_get_pages() returns 0 as if it
741 * has finished, if it hits a row of PAGEVEC_SIZE swap entries.
742 */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700743 pvec.nr = find_get_entries(mapping, index,
744 PAGEVEC_SIZE, pvec.pages, indices);
Hugh Dickins24513262012-01-20 14:34:21 -0800745 if (!pvec.nr)
746 break;
747 index = indices[pvec.nr - 1] + 1;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700748 pagevec_remove_exceptionals(&pvec);
Hugh Dickins24513262012-01-20 14:34:21 -0800749 check_move_unevictable_pages(pvec.pages, pvec.nr);
750 pagevec_release(&pvec);
751 cond_resched();
752 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700753}
754
755/*
756 * Remove range of pages and swap entries from radix tree, and free them.
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700757 * If !unfalloc, truncate or punch hole; if unfalloc, undo failed fallocate.
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700758 */
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700759static void shmem_undo_range(struct inode *inode, loff_t lstart, loff_t lend,
760 bool unfalloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
Hugh Dickins285b2c42011-08-03 16:21:20 -0700762 struct address_space *mapping = inode->i_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300764 pgoff_t start = (lstart + PAGE_SIZE - 1) >> PAGE_SHIFT;
765 pgoff_t end = (lend + 1) >> PAGE_SHIFT;
766 unsigned int partial_start = lstart & (PAGE_SIZE - 1);
767 unsigned int partial_end = (lend + 1) & (PAGE_SIZE - 1);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700768 struct pagevec pvec;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700769 pgoff_t indices[PAGEVEC_SIZE];
770 long nr_swaps_freed = 0;
Hugh Dickins285b2c42011-08-03 16:21:20 -0700771 pgoff_t index;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700772 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700774 if (lend == -1)
775 end = -1; /* unsigned, so actually very big */
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700776
777 pagevec_init(&pvec, 0);
778 index = start;
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700779 while (index < end) {
Johannes Weiner0cd61442014-04-03 14:47:46 -0700780 pvec.nr = find_get_entries(mapping, index,
781 min(end - index, (pgoff_t)PAGEVEC_SIZE),
782 pvec.pages, indices);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700783 if (!pvec.nr)
784 break;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700785 for (i = 0; i < pagevec_count(&pvec); i++) {
786 struct page *page = pvec.pages[i];
787
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700788 index = indices[i];
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700789 if (index >= end)
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700790 break;
791
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700792 if (radix_tree_exceptional_entry(page)) {
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700793 if (unfalloc)
794 continue;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700795 nr_swaps_freed += !shmem_free_swap(mapping,
796 index, page);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700797 continue;
798 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700799
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700800 VM_BUG_ON_PAGE(page_to_pgoff(page) != index, page);
801
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700802 if (!trylock_page(page))
803 continue;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700804
805 if (PageTransTail(page)) {
806 /* Middle of THP: zero out the page */
807 clear_highpage(page);
808 unlock_page(page);
809 continue;
810 } else if (PageTransHuge(page)) {
811 if (index == round_down(end, HPAGE_PMD_NR)) {
812 /*
813 * Range ends in the middle of THP:
814 * zero out the page
815 */
816 clear_highpage(page);
817 unlock_page(page);
818 continue;
819 }
820 index += HPAGE_PMD_NR - 1;
821 i += HPAGE_PMD_NR - 1;
822 }
823
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700824 if (!unfalloc || !PageUptodate(page)) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700825 VM_BUG_ON_PAGE(PageTail(page), page);
826 if (page_mapping(page) == mapping) {
Sasha Levin309381fea2014-01-23 15:52:54 -0800827 VM_BUG_ON_PAGE(PageWriteback(page), page);
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700828 truncate_inode_page(mapping, page);
829 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700830 }
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700831 unlock_page(page);
832 }
Johannes Weiner0cd61442014-04-03 14:47:46 -0700833 pagevec_remove_exceptionals(&pvec);
Hugh Dickins24513262012-01-20 14:34:21 -0800834 pagevec_release(&pvec);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700835 cond_resched();
836 index++;
837 }
838
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700839 if (partial_start) {
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700840 struct page *page = NULL;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700841 shmem_getpage(inode, start - 1, &page, SGP_READ);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700842 if (page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300843 unsigned int top = PAGE_SIZE;
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700844 if (start > end) {
845 top = partial_end;
846 partial_end = 0;
847 }
848 zero_user_segment(page, partial_start, top);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700849 set_page_dirty(page);
850 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300851 put_page(page);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700852 }
853 }
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700854 if (partial_end) {
855 struct page *page = NULL;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700856 shmem_getpage(inode, end, &page, SGP_READ);
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700857 if (page) {
858 zero_user_segment(page, 0, partial_end);
859 set_page_dirty(page);
860 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300861 put_page(page);
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700862 }
863 }
864 if (start >= end)
865 return;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700866
867 index = start;
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700868 while (index < end) {
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700869 cond_resched();
Johannes Weiner0cd61442014-04-03 14:47:46 -0700870
871 pvec.nr = find_get_entries(mapping, index,
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700872 min(end - index, (pgoff_t)PAGEVEC_SIZE),
Johannes Weiner0cd61442014-04-03 14:47:46 -0700873 pvec.pages, indices);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700874 if (!pvec.nr) {
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700875 /* If all gone or hole-punch or unfalloc, we're done */
876 if (index == start || end != -1)
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700877 break;
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700878 /* But if truncating, restart to make sure all gone */
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700879 index = start;
880 continue;
881 }
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700882 for (i = 0; i < pagevec_count(&pvec); i++) {
883 struct page *page = pvec.pages[i];
884
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700885 index = indices[i];
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700886 if (index >= end)
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700887 break;
888
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700889 if (radix_tree_exceptional_entry(page)) {
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700890 if (unfalloc)
891 continue;
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700892 if (shmem_free_swap(mapping, index, page)) {
893 /* Swap was replaced by page: retry */
894 index--;
895 break;
896 }
897 nr_swaps_freed++;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700898 continue;
899 }
900
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700901 lock_page(page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700902
903 if (PageTransTail(page)) {
904 /* Middle of THP: zero out the page */
905 clear_highpage(page);
906 unlock_page(page);
907 /*
908 * Partial thp truncate due 'start' in middle
909 * of THP: don't need to look on these pages
910 * again on !pvec.nr restart.
911 */
912 if (index != round_down(end, HPAGE_PMD_NR))
913 start++;
914 continue;
915 } else if (PageTransHuge(page)) {
916 if (index == round_down(end, HPAGE_PMD_NR)) {
917 /*
918 * Range ends in the middle of THP:
919 * zero out the page
920 */
921 clear_highpage(page);
922 unlock_page(page);
923 continue;
924 }
925 index += HPAGE_PMD_NR - 1;
926 i += HPAGE_PMD_NR - 1;
927 }
928
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700929 if (!unfalloc || !PageUptodate(page)) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700930 VM_BUG_ON_PAGE(PageTail(page), page);
931 if (page_mapping(page) == mapping) {
Sasha Levin309381fea2014-01-23 15:52:54 -0800932 VM_BUG_ON_PAGE(PageWriteback(page), page);
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700933 truncate_inode_page(mapping, page);
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700934 } else {
935 /* Page was replaced by swap: retry */
936 unlock_page(page);
937 index--;
938 break;
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700939 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700940 }
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700941 unlock_page(page);
942 }
Johannes Weiner0cd61442014-04-03 14:47:46 -0700943 pagevec_remove_exceptionals(&pvec);
Hugh Dickins24513262012-01-20 14:34:21 -0800944 pagevec_release(&pvec);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700945 index++;
946 }
Hugh Dickins94c1e622011-06-27 16:18:03 -0700947
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700948 spin_lock_irq(&info->lock);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700949 info->swapped -= nr_swaps_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700951 spin_unlock_irq(&info->lock);
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700952}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700954void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
955{
956 shmem_undo_range(inode, lstart, lend, false);
Deepa Dinamani078cd822016-09-14 07:48:04 -0700957 inode->i_ctime = inode->i_mtime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
Hugh Dickins94c1e622011-06-27 16:18:03 -0700959EXPORT_SYMBOL_GPL(shmem_truncate_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Yu Zhao44a30222015-09-08 15:03:33 -0700961static int shmem_getattr(struct vfsmount *mnt, struct dentry *dentry,
962 struct kstat *stat)
963{
964 struct inode *inode = dentry->d_inode;
965 struct shmem_inode_info *info = SHMEM_I(inode);
966
Hugh Dickinsd0424c42015-11-05 18:50:34 -0800967 if (info->alloced - info->swapped != inode->i_mapping->nrpages) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700968 spin_lock_irq(&info->lock);
Hugh Dickinsd0424c42015-11-05 18:50:34 -0800969 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700970 spin_unlock_irq(&info->lock);
Hugh Dickinsd0424c42015-11-05 18:50:34 -0800971 }
Yu Zhao44a30222015-09-08 15:03:33 -0700972 generic_fillattr(inode, stat);
Yu Zhao44a30222015-09-08 15:03:33 -0700973 return 0;
974}
975
Hugh Dickins94c1e622011-06-27 16:18:03 -0700976static int shmem_setattr(struct dentry *dentry, struct iattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
David Howells75c3cfa2015-03-17 22:26:12 +0000978 struct inode *inode = d_inode(dentry);
David Herrmann40e041a2014-08-08 14:25:27 -0700979 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700980 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 int error;
982
Jan Kara31051c82016-05-26 16:55:18 +0200983 error = setattr_prepare(dentry, attr);
Christoph Hellwigdb78b872010-06-04 11:30:03 +0200984 if (error)
985 return error;
986
Hugh Dickins94c1e622011-06-27 16:18:03 -0700987 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
988 loff_t oldsize = inode->i_size;
989 loff_t newsize = attr->ia_size;
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000990
David Herrmann40e041a2014-08-08 14:25:27 -0700991 /* protected by i_mutex */
992 if ((newsize < oldsize && (info->seals & F_SEAL_SHRINK)) ||
993 (newsize > oldsize && (info->seals & F_SEAL_GROW)))
994 return -EPERM;
995
Hugh Dickins94c1e622011-06-27 16:18:03 -0700996 if (newsize != oldsize) {
Konstantin Khlebnikov77142512014-08-06 16:06:34 -0700997 error = shmem_reacct_size(SHMEM_I(inode)->flags,
998 oldsize, newsize);
999 if (error)
1000 return error;
Hugh Dickins94c1e622011-06-27 16:18:03 -07001001 i_size_write(inode, newsize);
Deepa Dinamani078cd822016-09-14 07:48:04 -07001002 inode->i_ctime = inode->i_mtime = current_time(inode);
Hugh Dickins94c1e622011-06-27 16:18:03 -07001003 }
Josef Bacikafa2db22015-06-24 16:58:45 -07001004 if (newsize <= oldsize) {
Hugh Dickins94c1e622011-06-27 16:18:03 -07001005 loff_t holebegin = round_up(newsize, PAGE_SIZE);
Hugh Dickinsd0424c42015-11-05 18:50:34 -08001006 if (oldsize > holebegin)
1007 unmap_mapping_range(inode->i_mapping,
1008 holebegin, 0, 1);
1009 if (info->alloced)
1010 shmem_truncate_range(inode,
1011 newsize, (loff_t)-1);
Hugh Dickins94c1e622011-06-27 16:18:03 -07001012 /* unmap again to remove racily COWed private pages */
Hugh Dickinsd0424c42015-11-05 18:50:34 -08001013 if (oldsize > holebegin)
1014 unmap_mapping_range(inode->i_mapping,
1015 holebegin, 0, 1);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001016
1017 /*
1018 * Part of the huge page can be beyond i_size: subject
1019 * to shrink under memory pressure.
1020 */
1021 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE)) {
1022 spin_lock(&sbinfo->shrinklist_lock);
1023 if (list_empty(&info->shrinklist)) {
1024 list_add_tail(&info->shrinklist,
1025 &sbinfo->shrinklist);
1026 sbinfo->shrinklist_len++;
1027 }
1028 spin_unlock(&sbinfo->shrinklist_lock);
1029 }
Hugh Dickins94c1e622011-06-27 16:18:03 -07001030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
1032
Christoph Hellwigdb78b872010-06-04 11:30:03 +02001033 setattr_copy(inode, attr);
Christoph Hellwigdb78b872010-06-04 11:30:03 +02001034 if (attr->ia_valid & ATTR_MODE)
Christoph Hellwigfeda8212013-12-20 05:16:54 -08001035 error = posix_acl_chmod(inode, inode->i_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return error;
1037}
1038
Al Viro1f895f72010-06-05 19:10:41 -04001039static void shmem_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001042 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
npiggin@suse.de3889e6e2010-05-27 01:05:36 +10001044 if (inode->i_mapping->a_ops == &shmem_aops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 shmem_unacct_size(info->flags, inode->i_size);
1046 inode->i_size = 0;
npiggin@suse.de3889e6e2010-05-27 01:05:36 +10001047 shmem_truncate_range(inode, 0, (loff_t)-1);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001048 if (!list_empty(&info->shrinklist)) {
1049 spin_lock(&sbinfo->shrinklist_lock);
1050 if (!list_empty(&info->shrinklist)) {
1051 list_del_init(&info->shrinklist);
1052 sbinfo->shrinklist_len--;
1053 }
1054 spin_unlock(&sbinfo->shrinklist_lock);
1055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (!list_empty(&info->swaplist)) {
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001057 mutex_lock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 list_del_init(&info->swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001059 mutex_unlock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
Al Viro3ed47db2016-01-22 18:08:52 -05001061 }
Eric Parisb09e0fa2011-05-24 17:12:39 -07001062
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001063 simple_xattrs_free(&info->xattrs);
Hugh Dickins0f3c42f2012-11-16 14:15:04 -08001064 WARN_ON(inode->i_blocks);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001065 shmem_free_inode(inode->i_sb);
Jan Karadbd57682012-05-03 14:48:02 +02001066 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067}
1068
Matthew Wilcox478922e2016-12-14 15:08:52 -08001069static unsigned long find_swap_entry(struct radix_tree_root *root, void *item)
1070{
1071 struct radix_tree_iter iter;
1072 void **slot;
1073 unsigned long found = -1;
1074 unsigned int checked = 0;
1075
1076 rcu_read_lock();
1077 radix_tree_for_each_slot(slot, root, &iter, 0) {
1078 if (*slot == item) {
1079 found = iter.index;
1080 break;
1081 }
1082 checked++;
1083 if ((checked % 4096) != 0)
1084 continue;
1085 slot = radix_tree_iter_resume(slot, &iter);
1086 cond_resched_rcu();
1087 }
1088
1089 rcu_read_unlock();
1090 return found;
1091}
1092
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001093/*
1094 * If swap found in inode, free it and move page from swapcache to filecache.
1095 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001096static int shmem_unuse_inode(struct shmem_inode_info *info,
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001097 swp_entry_t swap, struct page **pagep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
Hugh Dickins285b2c42011-08-03 16:21:20 -07001099 struct address_space *mapping = info->vfs_inode.i_mapping;
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001100 void *radswap;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001101 pgoff_t index;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001102 gfp_t gfp;
1103 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001105 radswap = swp_to_radix_entry(swap);
Matthew Wilcox478922e2016-12-14 15:08:52 -08001106 index = find_swap_entry(&mapping->page_tree, radswap);
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001107 if (index == -1)
Johannes Weiner00501b52014-08-08 14:19:20 -07001108 return -EAGAIN; /* tell shmem_unuse we found nothing */
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001109
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001110 /*
1111 * Move _head_ to start search for next from here.
Al Viro1f895f72010-06-05 19:10:41 -04001112 * But be careful: shmem_evict_inode checks list_empty without taking
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001113 * mutex, and there's an instant in list_move_tail when info->swaplist
Hugh Dickins285b2c42011-08-03 16:21:20 -07001114 * would appear empty, if it were the only one on shmem_swaplist.
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001115 */
1116 if (shmem_swaplist.next != &info->swaplist)
1117 list_move_tail(&shmem_swaplist, &info->swaplist);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001118
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001119 gfp = mapping_gfp_mask(mapping);
1120 if (shmem_should_replace_page(*pagep, gfp)) {
1121 mutex_unlock(&shmem_swaplist_mutex);
1122 error = shmem_replace_page(pagep, gfp, info, index);
1123 mutex_lock(&shmem_swaplist_mutex);
1124 /*
1125 * We needed to drop mutex to make that restrictive page
Hugh Dickins0142ef62012-06-07 14:21:09 -07001126 * allocation, but the inode might have been freed while we
1127 * dropped it: although a racing shmem_evict_inode() cannot
1128 * complete without emptying the radix_tree, our page lock
1129 * on this swapcache page is not enough to prevent that -
1130 * free_swap_and_cache() of our swap entry will only
1131 * trylock_page(), removing swap from radix_tree whatever.
1132 *
1133 * We must not proceed to shmem_add_to_page_cache() if the
1134 * inode has been freed, but of course we cannot rely on
1135 * inode or mapping or info to check that. However, we can
1136 * safely check if our swap entry is still in use (and here
1137 * it can't have got reused for another page): if it's still
1138 * in use, then the inode cannot have been freed yet, and we
1139 * can safely proceed (if it's no longer in use, that tells
1140 * nothing about the inode, but we don't need to unuse swap).
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001141 */
1142 if (!page_swapcount(*pagep))
1143 error = -ENOENT;
1144 }
1145
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001146 /*
Hugh Dickins778dd892011-05-11 15:13:37 -07001147 * We rely on shmem_swaplist_mutex, not only to protect the swaplist,
1148 * but also to hold up shmem_evict_inode(): so inode cannot be freed
1149 * beneath us (pagelock doesn't help until the page is in pagecache).
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001150 */
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001151 if (!error)
1152 error = shmem_add_to_page_cache(*pagep, mapping, index,
Wang Sheng-Huifed400a2014-08-06 16:07:26 -07001153 radswap);
Hugh Dickins48f170f2011-07-25 17:12:37 -07001154 if (error != -ENOMEM) {
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001155 /*
1156 * Truncation and eviction use free_swap_and_cache(), which
1157 * only does trylock page: if we raced, best clean up here.
1158 */
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001159 delete_from_swap_cache(*pagep);
1160 set_page_dirty(*pagep);
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001161 if (!error) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001162 spin_lock_irq(&info->lock);
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001163 info->swapped--;
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001164 spin_unlock_irq(&info->lock);
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001165 swap_free(swap);
1166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 }
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001168 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169}
1170
1171/*
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001172 * Search through swapped inodes to find and replace swap by page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001174int shmem_unuse(swp_entry_t swap, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001176 struct list_head *this, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 struct shmem_inode_info *info;
Johannes Weiner00501b52014-08-08 14:19:20 -07001178 struct mem_cgroup *memcg;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001179 int error = 0;
1180
1181 /*
1182 * There's a faint possibility that swap page was replaced before
Hugh Dickins0142ef62012-06-07 14:21:09 -07001183 * caller locked it: caller will come back later with the right page.
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001184 */
Hugh Dickins0142ef62012-06-07 14:21:09 -07001185 if (unlikely(!PageSwapCache(page) || page_private(page) != swap.val))
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001186 goto out;
Hugh Dickins778dd892011-05-11 15:13:37 -07001187
1188 /*
1189 * Charge page using GFP_KERNEL while we can wait, before taking
1190 * the shmem_swaplist_mutex which might hold up shmem_writepage().
1191 * Charged back to the user (not to caller) when swap account is used.
Hugh Dickins778dd892011-05-11 15:13:37 -07001192 */
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001193 error = mem_cgroup_try_charge(page, current->mm, GFP_KERNEL, &memcg,
1194 false);
Hugh Dickins778dd892011-05-11 15:13:37 -07001195 if (error)
1196 goto out;
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001197 /* No radix_tree_preload: swap entry keeps a place for page in tree */
Johannes Weiner00501b52014-08-08 14:19:20 -07001198 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001200 mutex_lock(&shmem_swaplist_mutex);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001201 list_for_each_safe(this, next, &shmem_swaplist) {
1202 info = list_entry(this, struct shmem_inode_info, swaplist);
Hugh Dickins285b2c42011-08-03 16:21:20 -07001203 if (info->swapped)
Johannes Weiner00501b52014-08-08 14:19:20 -07001204 error = shmem_unuse_inode(info, swap, &page);
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001205 else
1206 list_del_init(&info->swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001207 cond_resched();
Johannes Weiner00501b52014-08-08 14:19:20 -07001208 if (error != -EAGAIN)
Hugh Dickins778dd892011-05-11 15:13:37 -07001209 break;
Johannes Weiner00501b52014-08-08 14:19:20 -07001210 /* found nothing in this: move on to search the next */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 }
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001212 mutex_unlock(&shmem_swaplist_mutex);
Hugh Dickins778dd892011-05-11 15:13:37 -07001213
Johannes Weiner00501b52014-08-08 14:19:20 -07001214 if (error) {
1215 if (error != -ENOMEM)
1216 error = 0;
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001217 mem_cgroup_cancel_charge(page, memcg, false);
Johannes Weiner00501b52014-08-08 14:19:20 -07001218 } else
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001219 mem_cgroup_commit_charge(page, memcg, true, false);
Hugh Dickins778dd892011-05-11 15:13:37 -07001220out:
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001221 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001222 put_page(page);
Hugh Dickins778dd892011-05-11 15:13:37 -07001223 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224}
1225
1226/*
1227 * Move the page from the page cache to the swap cache.
1228 */
1229static int shmem_writepage(struct page *page, struct writeback_control *wbc)
1230{
1231 struct shmem_inode_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 struct address_space *mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 struct inode *inode;
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001234 swp_entry_t swap;
1235 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001237 VM_BUG_ON_PAGE(PageCompound(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 mapping = page->mapping;
1240 index = page->index;
1241 inode = mapping->host;
1242 info = SHMEM_I(inode);
1243 if (info->flags & VM_LOCKED)
1244 goto redirty;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001245 if (!total_swap_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 goto redirty;
1247
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001248 /*
Christoph Hellwig97b713b2015-01-14 10:42:31 +01001249 * Our capabilities prevent regular writeback or sync from ever calling
1250 * shmem_writepage; but a stacking filesystem might use ->writepage of
1251 * its underlying filesystem, in which case tmpfs should write out to
1252 * swap only in response to memory pressure, and not for the writeback
1253 * threads or sync.
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001254 */
Hugh Dickins48f170f2011-07-25 17:12:37 -07001255 if (!wbc->for_reclaim) {
1256 WARN_ON_ONCE(1); /* Still happens? Tell us about it! */
1257 goto redirty;
1258 }
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001259
1260 /*
1261 * This is somewhat ridiculous, but without plumbing a SWAP_MAP_FALLOC
1262 * value into swapfile.c, the only way we can correctly account for a
1263 * fallocated page arriving here is now to initialize it and write it.
Hugh Dickins1aac1402012-05-29 15:06:42 -07001264 *
1265 * That's okay for a page already fallocated earlier, but if we have
1266 * not yet completed the fallocation, then (a) we want to keep track
1267 * of this page in case we have to undo it, and (b) it may not be a
1268 * good idea to continue anyway, once we're pushing into swap. So
1269 * reactivate the page, and let shmem_fallocate() quit when too many.
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001270 */
1271 if (!PageUptodate(page)) {
Hugh Dickins1aac1402012-05-29 15:06:42 -07001272 if (inode->i_private) {
1273 struct shmem_falloc *shmem_falloc;
1274 spin_lock(&inode->i_lock);
1275 shmem_falloc = inode->i_private;
1276 if (shmem_falloc &&
Hugh Dickins8e205f72014-07-23 14:00:10 -07001277 !shmem_falloc->waitq &&
Hugh Dickins1aac1402012-05-29 15:06:42 -07001278 index >= shmem_falloc->start &&
1279 index < shmem_falloc->next)
1280 shmem_falloc->nr_unswapped++;
1281 else
1282 shmem_falloc = NULL;
1283 spin_unlock(&inode->i_lock);
1284 if (shmem_falloc)
1285 goto redirty;
1286 }
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001287 clear_highpage(page);
1288 flush_dcache_page(page);
1289 SetPageUptodate(page);
1290 }
1291
Hugh Dickins48f170f2011-07-25 17:12:37 -07001292 swap = get_swap_page();
1293 if (!swap.val)
1294 goto redirty;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001295
Vladimir Davydov37e84352016-01-20 15:02:56 -08001296 if (mem_cgroup_try_charge_swap(page, swap))
1297 goto free_swap;
1298
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001299 /*
1300 * Add inode to shmem_unuse()'s list of swapped-out inodes,
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001301 * if it's not already there. Do it now before the page is
1302 * moved to swap cache, when its pagelock no longer protects
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001303 * the inode from eviction. But don't unlock the mutex until
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001304 * we've incremented swapped, because shmem_unuse_inode() will
1305 * prune a !swapped inode from the swaplist under this mutex.
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001306 */
Hugh Dickins48f170f2011-07-25 17:12:37 -07001307 mutex_lock(&shmem_swaplist_mutex);
1308 if (list_empty(&info->swaplist))
1309 list_add_tail(&info->swaplist, &shmem_swaplist);
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001310
Hugh Dickins48f170f2011-07-25 17:12:37 -07001311 if (add_to_swap_cache(page, swap, GFP_ATOMIC) == 0) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001312 spin_lock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001313 shmem_recalc_inode(inode);
1314 info->swapped++;
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001315 spin_unlock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001316
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001317 swap_shmem_alloc(swap);
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001318 shmem_delete_from_page_cache(page, swp_to_radix_entry(swap));
1319
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001320 mutex_unlock(&shmem_swaplist_mutex);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001321 BUG_ON(page_mapped(page));
Hugh Dickins9fab5612009-03-31 15:23:33 -07001322 swap_writepage(page, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return 0;
1324 }
1325
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001326 mutex_unlock(&shmem_swaplist_mutex);
Vladimir Davydov37e84352016-01-20 15:02:56 -08001327free_swap:
Johannes Weiner0a31bc92014-08-08 14:19:22 -07001328 swapcache_free(swap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329redirty:
1330 set_page_dirty(page);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001331 if (wbc->for_reclaim)
1332 return AOP_WRITEPAGE_ACTIVATE; /* Return with page locked */
1333 unlock_page(page);
1334 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
Hugh Dickins75edd342016-05-19 17:12:44 -07001337#if defined(CONFIG_NUMA) && defined(CONFIG_TMPFS)
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001338static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001339{
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001340 char buffer[64];
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001341
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001342 if (!mpol || mpol->mode == MPOL_DEFAULT)
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001343 return; /* show nothing */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001344
Hugh Dickinsa7a88b22013-01-02 02:04:23 -08001345 mpol_to_str(buffer, sizeof(buffer), mpol);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001346
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001347 seq_printf(seq, ",mpol=%s", buffer);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001348}
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001349
1350static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1351{
1352 struct mempolicy *mpol = NULL;
1353 if (sbinfo->mpol) {
1354 spin_lock(&sbinfo->stat_lock); /* prevent replace/use races */
1355 mpol = sbinfo->mpol;
1356 mpol_get(mpol);
1357 spin_unlock(&sbinfo->stat_lock);
1358 }
1359 return mpol;
1360}
Hugh Dickins75edd342016-05-19 17:12:44 -07001361#else /* !CONFIG_NUMA || !CONFIG_TMPFS */
1362static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
1363{
1364}
1365static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1366{
1367 return NULL;
1368}
1369#endif /* CONFIG_NUMA && CONFIG_TMPFS */
1370#ifndef CONFIG_NUMA
1371#define vm_policy vm_private_data
1372#endif
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001373
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001374static void shmem_pseudo_vma_init(struct vm_area_struct *vma,
1375 struct shmem_inode_info *info, pgoff_t index)
1376{
1377 /* Create a pseudo vma that just contains the policy */
1378 vma->vm_start = 0;
1379 /* Bias interleave by inode number to distribute better across nodes */
1380 vma->vm_pgoff = index + info->vfs_inode.i_ino;
1381 vma->vm_ops = NULL;
1382 vma->vm_policy = mpol_shared_policy_lookup(&info->policy, index);
1383}
1384
1385static void shmem_pseudo_vma_destroy(struct vm_area_struct *vma)
1386{
1387 /* Drop reference taken by mpol_shared_policy_lookup() */
1388 mpol_cond_put(vma->vm_policy);
1389}
1390
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001391static struct page *shmem_swapin(swp_entry_t swap, gfp_t gfp,
1392 struct shmem_inode_info *info, pgoff_t index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 struct vm_area_struct pvma;
Mel Gorman18a2f372012-12-05 14:01:41 -08001395 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001397 shmem_pseudo_vma_init(&pvma, info, index);
Mel Gorman18a2f372012-12-05 14:01:41 -08001398 page = swapin_readahead(swap, gfp, &pvma, 0);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001399 shmem_pseudo_vma_destroy(&pvma);
Mel Gorman18a2f372012-12-05 14:01:41 -08001400
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001401 return page;
1402}
Mel Gorman18a2f372012-12-05 14:01:41 -08001403
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001404static struct page *shmem_alloc_hugepage(gfp_t gfp,
1405 struct shmem_inode_info *info, pgoff_t index)
1406{
1407 struct vm_area_struct pvma;
1408 struct inode *inode = &info->vfs_inode;
1409 struct address_space *mapping = inode->i_mapping;
Geert Uytterhoeven4620a062016-08-03 19:58:19 +02001410 pgoff_t idx, hindex;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001411 void __rcu **results;
1412 struct page *page;
1413
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07001414 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE))
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001415 return NULL;
1416
Geert Uytterhoeven4620a062016-08-03 19:58:19 +02001417 hindex = round_down(index, HPAGE_PMD_NR);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001418 rcu_read_lock();
1419 if (radix_tree_gang_lookup_slot(&mapping->page_tree, &results, &idx,
1420 hindex, 1) && idx < hindex + HPAGE_PMD_NR) {
1421 rcu_read_unlock();
1422 return NULL;
1423 }
1424 rcu_read_unlock();
1425
1426 shmem_pseudo_vma_init(&pvma, info, hindex);
1427 page = alloc_pages_vma(gfp | __GFP_COMP | __GFP_NORETRY | __GFP_NOWARN,
1428 HPAGE_PMD_ORDER, &pvma, 0, numa_node_id(), true);
1429 shmem_pseudo_vma_destroy(&pvma);
1430 if (page)
1431 prep_transhuge_page(page);
Mel Gorman18a2f372012-12-05 14:01:41 -08001432 return page;
1433}
1434
1435static struct page *shmem_alloc_page(gfp_t gfp,
1436 struct shmem_inode_info *info, pgoff_t index)
1437{
1438 struct vm_area_struct pvma;
1439 struct page *page;
1440
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001441 shmem_pseudo_vma_init(&pvma, info, index);
1442 page = alloc_page_vma(gfp, &pvma, 0);
1443 shmem_pseudo_vma_destroy(&pvma);
Mel Gorman18a2f372012-12-05 14:01:41 -08001444
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001445 return page;
1446}
1447
1448static struct page *shmem_alloc_and_acct_page(gfp_t gfp,
1449 struct shmem_inode_info *info, struct shmem_sb_info *sbinfo,
1450 pgoff_t index, bool huge)
1451{
1452 struct page *page;
1453 int nr;
1454 int err = -ENOSPC;
1455
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07001456 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE))
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001457 huge = false;
1458 nr = huge ? HPAGE_PMD_NR : 1;
1459
1460 if (shmem_acct_block(info->flags, nr))
1461 goto failed;
1462 if (sbinfo->max_blocks) {
1463 if (percpu_counter_compare(&sbinfo->used_blocks,
1464 sbinfo->max_blocks - nr) > 0)
1465 goto unacct;
1466 percpu_counter_add(&sbinfo->used_blocks, nr);
1467 }
1468
1469 if (huge)
1470 page = shmem_alloc_hugepage(gfp, info, index);
1471 else
1472 page = shmem_alloc_page(gfp, info, index);
Hugh Dickins75edd342016-05-19 17:12:44 -07001473 if (page) {
1474 __SetPageLocked(page);
1475 __SetPageSwapBacked(page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001476 return page;
Hugh Dickins75edd342016-05-19 17:12:44 -07001477 }
Mel Gorman18a2f372012-12-05 14:01:41 -08001478
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001479 err = -ENOMEM;
1480 if (sbinfo->max_blocks)
1481 percpu_counter_add(&sbinfo->used_blocks, -nr);
1482unacct:
1483 shmem_unacct_blocks(info->flags, nr);
1484failed:
1485 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486}
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488/*
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001489 * When a page is moved from swapcache to shmem filecache (either by the
1490 * usual swapin of shmem_getpage_gfp(), or by the less common swapoff of
1491 * shmem_unuse_inode()), it may have been read in earlier from swap, in
1492 * ignorance of the mapping it belongs to. If that mapping has special
1493 * constraints (like the gma500 GEM driver, which requires RAM below 4GB),
1494 * we may need to copy to a suitable page before moving to filecache.
1495 *
1496 * In a future release, this may well be extended to respect cpuset and
1497 * NUMA mempolicy, and applied also to anonymous pages in do_swap_page();
1498 * but for now it is a simple matter of zone.
1499 */
1500static bool shmem_should_replace_page(struct page *page, gfp_t gfp)
1501{
1502 return page_zonenum(page) > gfp_zone(gfp);
1503}
1504
1505static int shmem_replace_page(struct page **pagep, gfp_t gfp,
1506 struct shmem_inode_info *info, pgoff_t index)
1507{
1508 struct page *oldpage, *newpage;
1509 struct address_space *swap_mapping;
1510 pgoff_t swap_index;
1511 int error;
1512
1513 oldpage = *pagep;
1514 swap_index = page_private(oldpage);
1515 swap_mapping = page_mapping(oldpage);
1516
1517 /*
1518 * We have arrived here because our zones are constrained, so don't
1519 * limit chance of success by further cpuset and node constraints.
1520 */
1521 gfp &= ~GFP_CONSTRAINT_MASK;
1522 newpage = shmem_alloc_page(gfp, info, index);
1523 if (!newpage)
1524 return -ENOMEM;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001525
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001526 get_page(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001527 copy_highpage(newpage, oldpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001528 flush_dcache_page(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001529
Hugh Dickins9956edf2016-11-10 10:46:11 -08001530 __SetPageLocked(newpage);
1531 __SetPageSwapBacked(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001532 SetPageUptodate(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001533 set_page_private(newpage, swap_index);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001534 SetPageSwapCache(newpage);
1535
1536 /*
1537 * Our caller will very soon move newpage out of swapcache, but it's
1538 * a nice clean interface for us to replace oldpage by newpage there.
1539 */
1540 spin_lock_irq(&swap_mapping->tree_lock);
1541 error = shmem_radix_tree_replace(swap_mapping, swap_index, oldpage,
1542 newpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001543 if (!error) {
Mel Gorman11fb9982016-07-28 15:46:20 -07001544 __inc_node_page_state(newpage, NR_FILE_PAGES);
1545 __dec_node_page_state(oldpage, NR_FILE_PAGES);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001546 }
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001547 spin_unlock_irq(&swap_mapping->tree_lock);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001548
Hugh Dickins0142ef62012-06-07 14:21:09 -07001549 if (unlikely(error)) {
1550 /*
1551 * Is this possible? I think not, now that our callers check
1552 * both PageSwapCache and page_private after getting page lock;
1553 * but be defensive. Reverse old to newpage for clear and free.
1554 */
1555 oldpage = newpage;
1556 } else {
Johannes Weiner6a93ca82016-03-15 14:57:19 -07001557 mem_cgroup_migrate(oldpage, newpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001558 lru_cache_add_anon(newpage);
1559 *pagep = newpage;
1560 }
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001561
1562 ClearPageSwapCache(oldpage);
1563 set_page_private(oldpage, 0);
1564
1565 unlock_page(oldpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001566 put_page(oldpage);
1567 put_page(oldpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001568 return error;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001569}
1570
1571/*
Hugh Dickins68da9f02011-07-25 17:12:34 -07001572 * shmem_getpage_gfp - find page in cache, or get from swap, or allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 *
1574 * If we allocate a new one we do not mark it dirty. That's up to the
1575 * vm. If we swap it in we mark it dirty since we also free the swap
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001576 * entry since a page cannot live in both the swap and page cache.
1577 *
1578 * fault_mm and fault_type are only supplied by shmem_fault:
1579 * otherwise they are NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001581static int shmem_getpage_gfp(struct inode *inode, pgoff_t index,
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001582 struct page **pagep, enum sgp_type sgp, gfp_t gfp,
Mike Rapoportcfda0522017-02-22 15:43:37 -08001583 struct vm_area_struct *vma, struct vm_fault *vmf, int *fault_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
1585 struct address_space *mapping = inode->i_mapping;
Arnd Bergmann23f919d2016-12-12 16:42:28 -08001586 struct shmem_inode_info *info = SHMEM_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 struct shmem_sb_info *sbinfo;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001588 struct mm_struct *charge_mm;
Johannes Weiner00501b52014-08-08 14:19:20 -07001589 struct mem_cgroup *memcg;
Hugh Dickins27ab7002011-07-25 17:12:36 -07001590 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 swp_entry_t swap;
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001592 enum sgp_type sgp_huge = sgp;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001593 pgoff_t hindex = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 int error;
Hugh Dickins54af60422011-08-03 16:21:24 -07001595 int once = 0;
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001596 int alloced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001598 if (index > (MAX_LFS_FILESIZE >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 return -EFBIG;
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001600 if (sgp == SGP_NOHUGE || sgp == SGP_HUGE)
1601 sgp = SGP_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602repeat:
Hugh Dickins54af60422011-08-03 16:21:24 -07001603 swap.val = 0;
Johannes Weiner0cd61442014-04-03 14:47:46 -07001604 page = find_lock_entry(mapping, index);
Hugh Dickins54af60422011-08-03 16:21:24 -07001605 if (radix_tree_exceptional_entry(page)) {
1606 swap = radix_to_swp_entry(page);
1607 page = NULL;
1608 }
1609
Hugh Dickins75edd342016-05-19 17:12:44 -07001610 if (sgp <= SGP_CACHE &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001611 ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001612 error = -EINVAL;
Hugh Dickins267a4c72015-12-11 13:40:55 -08001613 goto unlock;
Hugh Dickins54af60422011-08-03 16:21:24 -07001614 }
1615
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001616 if (page && sgp == SGP_WRITE)
1617 mark_page_accessed(page);
1618
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001619 /* fallocated page? */
1620 if (page && !PageUptodate(page)) {
1621 if (sgp != SGP_READ)
1622 goto clear;
1623 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001624 put_page(page);
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001625 page = NULL;
1626 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001627 if (page || (sgp == SGP_READ && !swap.val)) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001628 *pagep = page;
1629 return 0;
Hugh Dickins27ab7002011-07-25 17:12:36 -07001630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07001633 * Fast cache lookup did not find it:
1634 * bring it back from swap or allocate.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 */
Hugh Dickins54af60422011-08-03 16:21:24 -07001636 sbinfo = SHMEM_SB(inode->i_sb);
Mike Rapoportcfda0522017-02-22 15:43:37 -08001637 charge_mm = vma ? vma->vm_mm : current->mm;
Hugh Dickins27ab7002011-07-25 17:12:36 -07001638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (swap.val) {
1640 /* Look it up and read it in.. */
Hugh Dickins27ab7002011-07-25 17:12:36 -07001641 page = lookup_swap_cache(swap);
1642 if (!page) {
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001643 /* Or update major stats only when swapin succeeds?? */
1644 if (fault_type) {
Hugh Dickins68da9f02011-07-25 17:12:34 -07001645 *fault_type |= VM_FAULT_MAJOR;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001646 count_vm_event(PGMAJFAULT);
Mike Rapoportcfda0522017-02-22 15:43:37 -08001647 mem_cgroup_count_vm_event(charge_mm,
1648 PGMAJFAULT);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001649 }
1650 /* Here we actually start the io */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001651 page = shmem_swapin(swap, gfp, info, index);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001652 if (!page) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001653 error = -ENOMEM;
1654 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
1657
1658 /* We have to do this with page locked to prevent races */
Hugh Dickins54af60422011-08-03 16:21:24 -07001659 lock_page(page);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001660 if (!PageSwapCache(page) || page_private(page) != swap.val ||
Hugh Dickinsd1899222012-07-11 14:02:47 -07001661 !shmem_confirm_swap(mapping, index, swap)) {
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001662 error = -EEXIST; /* try again */
Hugh Dickinsd1899222012-07-11 14:02:47 -07001663 goto unlock;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001664 }
Hugh Dickins27ab7002011-07-25 17:12:36 -07001665 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 error = -EIO;
Hugh Dickins54af60422011-08-03 16:21:24 -07001667 goto failed;
1668 }
1669 wait_on_page_writeback(page);
1670
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001671 if (shmem_should_replace_page(page, gfp)) {
1672 error = shmem_replace_page(&page, gfp, info, index);
1673 if (error)
1674 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 }
1676
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001677 error = mem_cgroup_try_charge(page, charge_mm, gfp, &memcg,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001678 false);
Hugh Dickinsd1899222012-07-11 14:02:47 -07001679 if (!error) {
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07001680 error = shmem_add_to_page_cache(page, mapping, index,
Wang Sheng-Huifed400a2014-08-06 16:07:26 -07001681 swp_to_radix_entry(swap));
Hugh Dickins215c02b2012-11-16 14:15:03 -08001682 /*
1683 * We already confirmed swap under page lock, and make
1684 * no memory allocation here, so usually no possibility
1685 * of error; but free_swap_and_cache() only trylocks a
1686 * page, so it is just possible that the entry has been
1687 * truncated or holepunched since swap was confirmed.
1688 * shmem_undo_range() will have done some of the
1689 * unaccounting, now delete_from_swap_cache() will do
Vladimir Davydov93aa7d92015-02-11 15:24:59 -08001690 * the rest.
Hugh Dickins215c02b2012-11-16 14:15:03 -08001691 * Reset swap.val? No, leave it so "failed" goes back to
1692 * "repeat": reading a hole and writing should succeed.
1693 */
Johannes Weiner00501b52014-08-08 14:19:20 -07001694 if (error) {
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001695 mem_cgroup_cancel_charge(page, memcg, false);
Hugh Dickins215c02b2012-11-16 14:15:03 -08001696 delete_from_swap_cache(page);
Johannes Weiner00501b52014-08-08 14:19:20 -07001697 }
Hugh Dickinsd1899222012-07-11 14:02:47 -07001698 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001699 if (error)
1700 goto failed;
1701
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001702 mem_cgroup_commit_charge(page, memcg, true, false);
Johannes Weiner00501b52014-08-08 14:19:20 -07001703
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001704 spin_lock_irq(&info->lock);
Hugh Dickins54af60422011-08-03 16:21:24 -07001705 info->swapped--;
1706 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001707 spin_unlock_irq(&info->lock);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001708
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001709 if (sgp == SGP_WRITE)
1710 mark_page_accessed(page);
1711
Hugh Dickins27ab7002011-07-25 17:12:36 -07001712 delete_from_swap_cache(page);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001713 set_page_dirty(page);
1714 swap_free(swap);
1715
Hugh Dickins54af60422011-08-03 16:21:24 -07001716 } else {
Mike Rapoportcfda0522017-02-22 15:43:37 -08001717 if (vma && userfaultfd_missing(vma)) {
1718 *fault_type = handle_userfault(vmf, VM_UFFD_MISSING);
1719 return 0;
1720 }
1721
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001722 /* shmem_symlink() */
1723 if (mapping->a_ops != &shmem_aops)
1724 goto alloc_nohuge;
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001725 if (shmem_huge == SHMEM_HUGE_DENY || sgp_huge == SGP_NOHUGE)
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001726 goto alloc_nohuge;
1727 if (shmem_huge == SHMEM_HUGE_FORCE)
1728 goto alloc_huge;
1729 switch (sbinfo->huge) {
1730 loff_t i_size;
1731 pgoff_t off;
1732 case SHMEM_HUGE_NEVER:
1733 goto alloc_nohuge;
1734 case SHMEM_HUGE_WITHIN_SIZE:
1735 off = round_up(index, HPAGE_PMD_NR);
1736 i_size = round_up(i_size_read(inode), PAGE_SIZE);
1737 if (i_size >= HPAGE_PMD_SIZE &&
1738 i_size >> PAGE_SHIFT >= off)
1739 goto alloc_huge;
1740 /* fallthrough */
1741 case SHMEM_HUGE_ADVISE:
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001742 if (sgp_huge == SGP_HUGE)
1743 goto alloc_huge;
1744 /* TODO: implement fadvise() hints */
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001745 goto alloc_nohuge;
Hugh Dickins59a16ea2011-05-11 15:13:38 -07001746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001748alloc_huge:
1749 page = shmem_alloc_and_acct_page(gfp, info, sbinfo,
1750 index, true);
1751 if (IS_ERR(page)) {
1752alloc_nohuge: page = shmem_alloc_and_acct_page(gfp, info, sbinfo,
1753 index, false);
Hugh Dickins54af60422011-08-03 16:21:24 -07001754 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001755 if (IS_ERR(page)) {
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001756 int retry = 5;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001757 error = PTR_ERR(page);
1758 page = NULL;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001759 if (error != -ENOSPC)
1760 goto failed;
1761 /*
1762 * Try to reclaim some spece by splitting a huge page
1763 * beyond i_size on the filesystem.
1764 */
1765 while (retry--) {
1766 int ret;
1767 ret = shmem_unused_huge_shrink(sbinfo, NULL, 1);
1768 if (ret == SHRINK_STOP)
1769 break;
1770 if (ret)
1771 goto alloc_nohuge;
1772 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001773 goto failed;
1774 }
1775
1776 if (PageTransHuge(page))
1777 hindex = round_down(index, HPAGE_PMD_NR);
1778 else
1779 hindex = index;
1780
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001781 if (sgp == SGP_WRITE)
Hugh Dickinseb39d612014-08-06 16:06:43 -07001782 __SetPageReferenced(page);
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001783
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001784 error = mem_cgroup_try_charge(page, charge_mm, gfp, &memcg,
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001785 PageTransHuge(page));
Hugh Dickins54af60422011-08-03 16:21:24 -07001786 if (error)
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001787 goto unacct;
1788 error = radix_tree_maybe_preload_order(gfp & GFP_RECLAIM_MASK,
1789 compound_order(page));
Hugh Dickinsb065b432012-07-11 14:02:48 -07001790 if (!error) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001791 error = shmem_add_to_page_cache(page, mapping, hindex,
Wang Sheng-Huifed400a2014-08-06 16:07:26 -07001792 NULL);
Hugh Dickinsb065b432012-07-11 14:02:48 -07001793 radix_tree_preload_end();
1794 }
1795 if (error) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001796 mem_cgroup_cancel_charge(page, memcg,
1797 PageTransHuge(page));
1798 goto unacct;
Hugh Dickinsb065b432012-07-11 14:02:48 -07001799 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001800 mem_cgroup_commit_charge(page, memcg, false,
1801 PageTransHuge(page));
Hugh Dickins54af60422011-08-03 16:21:24 -07001802 lru_cache_add_anon(page);
1803
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001804 spin_lock_irq(&info->lock);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001805 info->alloced += 1 << compound_order(page);
1806 inode->i_blocks += BLOCKS_PER_PAGE << compound_order(page);
Hugh Dickins54af60422011-08-03 16:21:24 -07001807 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001808 spin_unlock_irq(&info->lock);
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001809 alloced = true;
Hugh Dickins54af60422011-08-03 16:21:24 -07001810
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001811 if (PageTransHuge(page) &&
1812 DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE) <
1813 hindex + HPAGE_PMD_NR - 1) {
1814 /*
1815 * Part of the huge page is beyond i_size: subject
1816 * to shrink under memory pressure.
1817 */
1818 spin_lock(&sbinfo->shrinklist_lock);
1819 if (list_empty(&info->shrinklist)) {
1820 list_add_tail(&info->shrinklist,
1821 &sbinfo->shrinklist);
1822 sbinfo->shrinklist_len++;
1823 }
1824 spin_unlock(&sbinfo->shrinklist_lock);
1825 }
1826
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001827 /*
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001828 * Let SGP_FALLOC use the SGP_WRITE optimization on a new page.
1829 */
1830 if (sgp == SGP_FALLOC)
1831 sgp = SGP_WRITE;
1832clear:
1833 /*
1834 * Let SGP_WRITE caller clear ends if write does not fill page;
1835 * but SGP_FALLOC on a page fallocated earlier must initialize
1836 * it now, lest undo on failure cancel our earlier guarantee.
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001837 */
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001838 if (sgp != SGP_WRITE && !PageUptodate(page)) {
1839 struct page *head = compound_head(page);
1840 int i;
1841
1842 for (i = 0; i < (1 << compound_order(head)); i++) {
1843 clear_highpage(head + i);
1844 flush_dcache_page(head + i);
1845 }
1846 SetPageUptodate(head);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001847 }
Hugh Dickins59a16ea2011-05-11 15:13:38 -07001848 }
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001849
Hugh Dickins54af60422011-08-03 16:21:24 -07001850 /* Perhaps the file has been truncated since we checked */
Hugh Dickins75edd342016-05-19 17:12:44 -07001851 if (sgp <= SGP_CACHE &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001852 ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) {
Hugh Dickins267a4c72015-12-11 13:40:55 -08001853 if (alloced) {
1854 ClearPageDirty(page);
1855 delete_from_page_cache(page);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001856 spin_lock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001857 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001858 spin_unlock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001859 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001860 error = -EINVAL;
Hugh Dickins267a4c72015-12-11 13:40:55 -08001861 goto unlock;
Shaohua Liff36b8012010-08-09 17:19:06 -07001862 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001863 *pagep = page + index - hindex;
Hugh Dickins54af60422011-08-03 16:21:24 -07001864 return 0;
Nick Piggind00806b2007-07-19 01:46:57 -07001865
Nick Piggind0217ac2007-07-19 01:47:03 -07001866 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07001867 * Error recovery.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 */
Hugh Dickins54af60422011-08-03 16:21:24 -07001869unacct:
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001870 if (sbinfo->max_blocks)
1871 percpu_counter_sub(&sbinfo->used_blocks,
1872 1 << compound_order(page));
1873 shmem_unacct_blocks(info->flags, 1 << compound_order(page));
1874
1875 if (PageTransHuge(page)) {
1876 unlock_page(page);
1877 put_page(page);
1878 goto alloc_nohuge;
1879 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001880failed:
Hugh Dickins267a4c72015-12-11 13:40:55 -08001881 if (swap.val && !shmem_confirm_swap(mapping, index, swap))
Hugh Dickinsd1899222012-07-11 14:02:47 -07001882 error = -EEXIST;
1883unlock:
Hugh Dickins27ab7002011-07-25 17:12:36 -07001884 if (page) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001885 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001886 put_page(page);
Hugh Dickins54af60422011-08-03 16:21:24 -07001887 }
1888 if (error == -ENOSPC && !once++) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001889 spin_lock_irq(&info->lock);
Hugh Dickins54af60422011-08-03 16:21:24 -07001890 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001891 spin_unlock_irq(&info->lock);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001892 goto repeat;
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001893 }
Hugh Dickinsd1899222012-07-11 14:02:47 -07001894 if (error == -EEXIST) /* from above or from radix_tree_insert */
Hugh Dickins54af60422011-08-03 16:21:24 -07001895 goto repeat;
1896 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897}
1898
Linus Torvalds10d20bd2016-12-05 12:10:29 -08001899/*
1900 * This is like autoremove_wake_function, but it removes the wait queue
1901 * entry unconditionally - even if something else had already woken the
1902 * target.
1903 */
1904static int synchronous_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key)
1905{
1906 int ret = default_wake_function(wait, mode, sync, key);
1907 list_del_init(&wait->task_list);
1908 return ret;
1909}
1910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911static int shmem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1912{
Al Viro496ad9a2013-01-23 17:07:38 -05001913 struct inode *inode = file_inode(vma->vm_file);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001914 gfp_t gfp = mapping_gfp_mask(inode->i_mapping);
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001915 enum sgp_type sgp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 int error;
Hugh Dickins68da9f02011-07-25 17:12:34 -07001917 int ret = VM_FAULT_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001919 /*
1920 * Trinity finds that probing a hole which tmpfs is punching can
1921 * prevent the hole-punch from ever completing: which in turn
1922 * locks writers out with its hold on i_mutex. So refrain from
Hugh Dickins8e205f72014-07-23 14:00:10 -07001923 * faulting pages into the hole while it's being punched. Although
1924 * shmem_undo_range() does remove the additions, it may be unable to
1925 * keep up, as each new page needs its own unmap_mapping_range() call,
1926 * and the i_mmap tree grows ever slower to scan if new vmas are added.
1927 *
1928 * It does not matter if we sometimes reach this check just before the
1929 * hole-punch begins, so that one fault then races with the punch:
1930 * we just need to make racing faults a rare case.
1931 *
1932 * The implementation below would be much simpler if we just used a
1933 * standard mutex or completion: but we cannot take i_mutex in fault,
1934 * and bloating every shmem inode for this unlikely case would be sad.
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001935 */
1936 if (unlikely(inode->i_private)) {
1937 struct shmem_falloc *shmem_falloc;
1938
1939 spin_lock(&inode->i_lock);
1940 shmem_falloc = inode->i_private;
Hugh Dickins8e205f72014-07-23 14:00:10 -07001941 if (shmem_falloc &&
1942 shmem_falloc->waitq &&
1943 vmf->pgoff >= shmem_falloc->start &&
1944 vmf->pgoff < shmem_falloc->next) {
1945 wait_queue_head_t *shmem_falloc_waitq;
Linus Torvalds10d20bd2016-12-05 12:10:29 -08001946 DEFINE_WAIT_FUNC(shmem_fault_wait, synchronous_wake_function);
Hugh Dickins8e205f72014-07-23 14:00:10 -07001947
1948 ret = VM_FAULT_NOPAGE;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001949 if ((vmf->flags & FAULT_FLAG_ALLOW_RETRY) &&
1950 !(vmf->flags & FAULT_FLAG_RETRY_NOWAIT)) {
Hugh Dickins8e205f72014-07-23 14:00:10 -07001951 /* It's polite to up mmap_sem if we can */
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001952 up_read(&vma->vm_mm->mmap_sem);
Hugh Dickins8e205f72014-07-23 14:00:10 -07001953 ret = VM_FAULT_RETRY;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001954 }
Hugh Dickins8e205f72014-07-23 14:00:10 -07001955
1956 shmem_falloc_waitq = shmem_falloc->waitq;
1957 prepare_to_wait(shmem_falloc_waitq, &shmem_fault_wait,
1958 TASK_UNINTERRUPTIBLE);
1959 spin_unlock(&inode->i_lock);
1960 schedule();
1961
1962 /*
1963 * shmem_falloc_waitq points into the shmem_fallocate()
1964 * stack of the hole-punching task: shmem_falloc_waitq
1965 * is usually invalid by the time we reach here, but
1966 * finish_wait() does not dereference it in that case;
1967 * though i_lock needed lest racing with wake_up_all().
1968 */
1969 spin_lock(&inode->i_lock);
1970 finish_wait(shmem_falloc_waitq, &shmem_fault_wait);
1971 spin_unlock(&inode->i_lock);
1972 return ret;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001973 }
Hugh Dickins8e205f72014-07-23 14:00:10 -07001974 spin_unlock(&inode->i_lock);
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001975 }
1976
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001977 sgp = SGP_CACHE;
1978 if (vma->vm_flags & VM_HUGEPAGE)
1979 sgp = SGP_HUGE;
1980 else if (vma->vm_flags & VM_NOHUGEPAGE)
1981 sgp = SGP_NOHUGE;
1982
1983 error = shmem_getpage_gfp(inode, vmf->pgoff, &vmf->page, sgp,
Mike Rapoportcfda0522017-02-22 15:43:37 -08001984 gfp, vma, vmf, &ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 if (error)
1986 return ((error == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS);
Hugh Dickins68da9f02011-07-25 17:12:34 -07001987 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988}
1989
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07001990unsigned long shmem_get_unmapped_area(struct file *file,
1991 unsigned long uaddr, unsigned long len,
1992 unsigned long pgoff, unsigned long flags)
1993{
1994 unsigned long (*get_area)(struct file *,
1995 unsigned long, unsigned long, unsigned long, unsigned long);
1996 unsigned long addr;
1997 unsigned long offset;
1998 unsigned long inflated_len;
1999 unsigned long inflated_addr;
2000 unsigned long inflated_offset;
2001
2002 if (len > TASK_SIZE)
2003 return -ENOMEM;
2004
2005 get_area = current->mm->get_unmapped_area;
2006 addr = get_area(file, uaddr, len, pgoff, flags);
2007
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07002008 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE))
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07002009 return addr;
2010 if (IS_ERR_VALUE(addr))
2011 return addr;
2012 if (addr & ~PAGE_MASK)
2013 return addr;
2014 if (addr > TASK_SIZE - len)
2015 return addr;
2016
2017 if (shmem_huge == SHMEM_HUGE_DENY)
2018 return addr;
2019 if (len < HPAGE_PMD_SIZE)
2020 return addr;
2021 if (flags & MAP_FIXED)
2022 return addr;
2023 /*
2024 * Our priority is to support MAP_SHARED mapped hugely;
2025 * and support MAP_PRIVATE mapped hugely too, until it is COWed.
2026 * But if caller specified an address hint, respect that as before.
2027 */
2028 if (uaddr)
2029 return addr;
2030
2031 if (shmem_huge != SHMEM_HUGE_FORCE) {
2032 struct super_block *sb;
2033
2034 if (file) {
2035 VM_BUG_ON(file->f_op != &shmem_file_operations);
2036 sb = file_inode(file)->i_sb;
2037 } else {
2038 /*
2039 * Called directly from mm/mmap.c, or drivers/char/mem.c
2040 * for "/dev/zero", to create a shared anonymous object.
2041 */
2042 if (IS_ERR(shm_mnt))
2043 return addr;
2044 sb = shm_mnt->mnt_sb;
2045 }
Toshi Kani3089bf62016-09-23 20:21:56 -07002046 if (SHMEM_SB(sb)->huge == SHMEM_HUGE_NEVER)
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07002047 return addr;
2048 }
2049
2050 offset = (pgoff << PAGE_SHIFT) & (HPAGE_PMD_SIZE-1);
2051 if (offset && offset + len < 2 * HPAGE_PMD_SIZE)
2052 return addr;
2053 if ((addr & (HPAGE_PMD_SIZE-1)) == offset)
2054 return addr;
2055
2056 inflated_len = len + HPAGE_PMD_SIZE - PAGE_SIZE;
2057 if (inflated_len > TASK_SIZE)
2058 return addr;
2059 if (inflated_len < len)
2060 return addr;
2061
2062 inflated_addr = get_area(NULL, 0, inflated_len, 0, flags);
2063 if (IS_ERR_VALUE(inflated_addr))
2064 return addr;
2065 if (inflated_addr & ~PAGE_MASK)
2066 return addr;
2067
2068 inflated_offset = inflated_addr & (HPAGE_PMD_SIZE-1);
2069 inflated_addr += offset - inflated_offset;
2070 if (inflated_offset > offset)
2071 inflated_addr += HPAGE_PMD_SIZE;
2072
2073 if (inflated_addr > TASK_SIZE - len)
2074 return addr;
2075 return inflated_addr;
2076}
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078#ifdef CONFIG_NUMA
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002079static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *mpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080{
Al Viro496ad9a2013-01-23 17:07:38 -05002081 struct inode *inode = file_inode(vma->vm_file);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002082 return mpol_set_shared_policy(&SHMEM_I(inode)->policy, vma, mpol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083}
2084
Adrian Bunkd8dc74f2007-10-16 01:26:26 -07002085static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma,
2086 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
Al Viro496ad9a2013-01-23 17:07:38 -05002088 struct inode *inode = file_inode(vma->vm_file);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002089 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002091 index = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
2092 return mpol_shared_policy_lookup(&SHMEM_I(inode)->policy, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093}
2094#endif
2095
2096int shmem_lock(struct file *file, int lock, struct user_struct *user)
2097{
Al Viro496ad9a2013-01-23 17:07:38 -05002098 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 struct shmem_inode_info *info = SHMEM_I(inode);
2100 int retval = -ENOMEM;
2101
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07002102 spin_lock_irq(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 if (lock && !(info->flags & VM_LOCKED)) {
2104 if (!user_shm_lock(inode->i_size, user))
2105 goto out_nomem;
2106 info->flags |= VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002107 mapping_set_unevictable(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 }
2109 if (!lock && (info->flags & VM_LOCKED) && user) {
2110 user_shm_unlock(inode->i_size, user);
2111 info->flags &= ~VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002112 mapping_clear_unevictable(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 }
2114 retval = 0;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116out_nomem:
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07002117 spin_unlock_irq(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 return retval;
2119}
2120
Adrian Bunk9b83a6a2007-02-28 20:11:03 -08002121static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
2123 file_accessed(file);
2124 vma->vm_ops = &shmem_vm_ops;
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07002125 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE) &&
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002126 ((vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK) <
2127 (vma->vm_end & HPAGE_PMD_MASK)) {
2128 khugepaged_enter(vma, vma->vm_flags);
2129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 return 0;
2131}
2132
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002133static struct inode *shmem_get_inode(struct super_block *sb, const struct inode *dir,
Al Viro09208d12011-07-26 03:15:03 -04002134 umode_t mode, dev_t dev, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
2136 struct inode *inode;
2137 struct shmem_inode_info *info;
2138 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
2139
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002140 if (shmem_reserve_inode(sb))
2141 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 inode = new_inode(sb);
2144 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -04002145 inode->i_ino = get_next_ino();
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002146 inode_init_owner(inode, dir, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 inode->i_blocks = 0;
Deepa Dinamani078cd822016-09-14 07:48:04 -07002148 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
David M. Grimes91828a42006-10-17 00:09:45 -07002149 inode->i_generation = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 info = SHMEM_I(inode);
2151 memset(info, 0, (char *)inode - (char *)info);
2152 spin_lock_init(&info->lock);
David Herrmann40e041a2014-08-08 14:25:27 -07002153 info->seals = F_SEAL_SEAL;
Hugh Dickins0b0a0802009-02-24 20:51:52 +00002154 info->flags = flags & VM_NORESERVE;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07002155 INIT_LIST_HEAD(&info->shrinklist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 INIT_LIST_HEAD(&info->swaplist);
Aristeu Rozanski38f38652012-08-23 16:53:28 -04002157 simple_xattrs_init(&info->xattrs);
Al Viro72c04902009-06-24 16:58:48 -04002158 cache_no_acl(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 switch (mode & S_IFMT) {
2161 default:
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002162 inode->i_op = &shmem_special_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 init_special_inode(inode, mode, dev);
2164 break;
2165 case S_IFREG:
Hugh Dickins14fcc232008-07-28 15:46:19 -07002166 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 inode->i_op = &shmem_inode_operations;
2168 inode->i_fop = &shmem_file_operations;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002169 mpol_shared_policy_init(&info->policy,
2170 shmem_get_sbmpol(sbinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 break;
2172 case S_IFDIR:
Dave Hansend8c76e62006-09-30 23:29:04 -07002173 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 /* Some things misbehave if size == 0 on a directory */
2175 inode->i_size = 2 * BOGO_DIRENT_SIZE;
2176 inode->i_op = &shmem_dir_inode_operations;
2177 inode->i_fop = &simple_dir_operations;
2178 break;
2179 case S_IFLNK:
2180 /*
2181 * Must not load anything in the rbtree,
2182 * mpol_free_shared_policy will not be called.
2183 */
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002184 mpol_shared_policy_init(&info->policy, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 break;
2186 }
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002187 } else
2188 shmem_free_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 return inode;
2190}
2191
Johannes Weiner0cd61442014-04-03 14:47:46 -07002192bool shmem_mapping(struct address_space *mapping)
2193{
Hugh Dickinsf8005452017-02-22 15:41:42 -08002194 return mapping->a_ops == &shmem_aops;
Johannes Weiner0cd61442014-04-03 14:47:46 -07002195}
2196
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002197int shmem_mcopy_atomic_pte(struct mm_struct *dst_mm,
2198 pmd_t *dst_pmd,
2199 struct vm_area_struct *dst_vma,
2200 unsigned long dst_addr,
2201 unsigned long src_addr,
2202 struct page **pagep)
2203{
2204 struct inode *inode = file_inode(dst_vma->vm_file);
2205 struct shmem_inode_info *info = SHMEM_I(inode);
2206 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
2207 struct address_space *mapping = inode->i_mapping;
2208 gfp_t gfp = mapping_gfp_mask(mapping);
2209 pgoff_t pgoff = linear_page_index(dst_vma, dst_addr);
2210 struct mem_cgroup *memcg;
2211 spinlock_t *ptl;
2212 void *page_kaddr;
2213 struct page *page;
2214 pte_t _dst_pte, *dst_pte;
2215 int ret;
2216
Andrea Arcangelicb658a42017-02-22 15:43:55 -08002217 ret = -ENOMEM;
2218 if (shmem_acct_block(info->flags, 1))
2219 goto out;
2220 if (sbinfo->max_blocks) {
2221 if (percpu_counter_compare(&sbinfo->used_blocks,
2222 sbinfo->max_blocks) >= 0)
2223 goto out_unacct_blocks;
2224 percpu_counter_inc(&sbinfo->used_blocks);
2225 }
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002226
Andrea Arcangelicb658a42017-02-22 15:43:55 -08002227 if (!*pagep) {
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002228 page = shmem_alloc_page(gfp, info, pgoff);
2229 if (!page)
2230 goto out_dec_used_blocks;
2231
2232 page_kaddr = kmap_atomic(page);
2233 ret = copy_from_user(page_kaddr, (const void __user *)src_addr,
2234 PAGE_SIZE);
2235 kunmap_atomic(page_kaddr);
2236
2237 /* fallback to copy_from_user outside mmap_sem */
2238 if (unlikely(ret)) {
2239 *pagep = page;
Andrea Arcangelicb658a42017-02-22 15:43:55 -08002240 if (sbinfo->max_blocks)
2241 percpu_counter_add(&sbinfo->used_blocks, -1);
2242 shmem_unacct_blocks(info->flags, 1);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002243 /* don't free the page */
2244 return -EFAULT;
2245 }
2246 } else {
2247 page = *pagep;
2248 *pagep = NULL;
2249 }
2250
Andrea Arcangeli9cc90c62017-02-22 15:43:49 -08002251 VM_BUG_ON(PageLocked(page) || PageSwapBacked(page));
2252 __SetPageLocked(page);
2253 __SetPageSwapBacked(page);
Andrea Arcangelia425d352017-02-22 15:43:52 -08002254 __SetPageUptodate(page);
Andrea Arcangeli9cc90c62017-02-22 15:43:49 -08002255
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002256 ret = mem_cgroup_try_charge(page, dst_mm, gfp, &memcg, false);
2257 if (ret)
2258 goto out_release;
2259
2260 ret = radix_tree_maybe_preload(gfp & GFP_RECLAIM_MASK);
2261 if (!ret) {
2262 ret = shmem_add_to_page_cache(page, mapping, pgoff, NULL);
2263 radix_tree_preload_end();
2264 }
2265 if (ret)
2266 goto out_release_uncharge;
2267
2268 mem_cgroup_commit_charge(page, memcg, false, false);
2269
2270 _dst_pte = mk_pte(page, dst_vma->vm_page_prot);
2271 if (dst_vma->vm_flags & VM_WRITE)
2272 _dst_pte = pte_mkwrite(pte_mkdirty(_dst_pte));
2273
2274 ret = -EEXIST;
2275 dst_pte = pte_offset_map_lock(dst_mm, dst_pmd, dst_addr, &ptl);
2276 if (!pte_none(*dst_pte))
2277 goto out_release_uncharge_unlock;
2278
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002279 lru_cache_add_anon(page);
2280
2281 spin_lock(&info->lock);
2282 info->alloced++;
2283 inode->i_blocks += BLOCKS_PER_PAGE;
2284 shmem_recalc_inode(inode);
2285 spin_unlock(&info->lock);
2286
2287 inc_mm_counter(dst_mm, mm_counter_file(page));
2288 page_add_file_rmap(page, false);
2289 set_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte);
2290
2291 /* No need to invalidate - it was non-present before */
2292 update_mmu_cache(dst_vma, dst_addr, dst_pte);
2293 unlock_page(page);
2294 pte_unmap_unlock(dst_pte, ptl);
2295 ret = 0;
2296out:
2297 return ret;
2298out_release_uncharge_unlock:
2299 pte_unmap_unlock(dst_pte, ptl);
2300out_release_uncharge:
2301 mem_cgroup_cancel_charge(page, memcg, false);
2302out_release:
Andrea Arcangeli9cc90c62017-02-22 15:43:49 -08002303 unlock_page(page);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002304 put_page(page);
2305out_dec_used_blocks:
2306 if (sbinfo->max_blocks)
2307 percpu_counter_add(&sbinfo->used_blocks, -1);
2308out_unacct_blocks:
2309 shmem_unacct_blocks(info->flags, 1);
2310 goto out;
2311}
2312
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313#ifdef CONFIG_TMPFS
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002314static const struct inode_operations shmem_symlink_inode_operations;
Hugh Dickins69f07ec2011-08-03 16:21:26 -07002315static const struct inode_operations shmem_short_symlink_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07002317#ifdef CONFIG_TMPFS_XATTR
2318static int shmem_initxattrs(struct inode *, const struct xattr *, void *);
2319#else
2320#define shmem_initxattrs NULL
2321#endif
2322
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323static int
Nick Piggin800d15a2007-10-16 01:25:03 -07002324shmem_write_begin(struct file *file, struct address_space *mapping,
2325 loff_t pos, unsigned len, unsigned flags,
2326 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327{
Nick Piggin800d15a2007-10-16 01:25:03 -07002328 struct inode *inode = mapping->host;
David Herrmann40e041a2014-08-08 14:25:27 -07002329 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002330 pgoff_t index = pos >> PAGE_SHIFT;
David Herrmann40e041a2014-08-08 14:25:27 -07002331
2332 /* i_mutex is held by caller */
2333 if (unlikely(info->seals)) {
2334 if (info->seals & F_SEAL_WRITE)
2335 return -EPERM;
2336 if ((info->seals & F_SEAL_GROW) && pos + len > inode->i_size)
2337 return -EPERM;
2338 }
2339
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07002340 return shmem_getpage(inode, index, pagep, SGP_WRITE);
Nick Piggin800d15a2007-10-16 01:25:03 -07002341}
2342
2343static int
2344shmem_write_end(struct file *file, struct address_space *mapping,
2345 loff_t pos, unsigned len, unsigned copied,
2346 struct page *page, void *fsdata)
2347{
2348 struct inode *inode = mapping->host;
2349
Hugh Dickinsd3602442008-02-04 22:28:44 -08002350 if (pos + copied > inode->i_size)
2351 i_size_write(inode, pos + copied);
2352
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002353 if (!PageUptodate(page)) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07002354 struct page *head = compound_head(page);
2355 if (PageTransCompound(page)) {
2356 int i;
2357
2358 for (i = 0; i < HPAGE_PMD_NR; i++) {
2359 if (head + i == page)
2360 continue;
2361 clear_highpage(head + i);
2362 flush_dcache_page(head + i);
2363 }
2364 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002365 if (copied < PAGE_SIZE) {
2366 unsigned from = pos & (PAGE_SIZE - 1);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002367 zero_user_segments(page, 0, from,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002368 from + copied, PAGE_SIZE);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002369 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07002370 SetPageUptodate(head);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002371 }
Nick Piggin800d15a2007-10-16 01:25:03 -07002372 set_page_dirty(page);
Wu Fengguang6746aff2009-09-16 11:50:14 +02002373 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002374 put_page(page);
Nick Piggin800d15a2007-10-16 01:25:03 -07002375
Nick Piggin800d15a2007-10-16 01:25:03 -07002376 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377}
2378
Al Viro2ba5bbe2014-04-02 20:00:02 -04002379static ssize_t shmem_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380{
Al Viro6e58e792014-02-03 17:07:03 -05002381 struct file *file = iocb->ki_filp;
2382 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 struct address_space *mapping = inode->i_mapping;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002384 pgoff_t index;
2385 unsigned long offset;
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08002386 enum sgp_type sgp = SGP_READ;
Geert Uytterhoevenf7c1d072014-04-13 20:46:22 +02002387 int error = 0;
Al Virocb66a7a2014-03-04 15:24:06 -05002388 ssize_t retval = 0;
Al Viro6e58e792014-02-03 17:07:03 -05002389 loff_t *ppos = &iocb->ki_pos;
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08002390
2391 /*
2392 * Might this read be for a stacking filesystem? Then when reading
2393 * holes of a sparse file, we actually need to allocate those pages,
2394 * and even mark them dirty, so it cannot exceed the max_blocks limit.
2395 */
Al Viro777eda22014-12-17 04:46:46 -05002396 if (!iter_is_iovec(to))
Hugh Dickins75edd342016-05-19 17:12:44 -07002397 sgp = SGP_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002399 index = *ppos >> PAGE_SHIFT;
2400 offset = *ppos & ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
2402 for (;;) {
2403 struct page *page = NULL;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002404 pgoff_t end_index;
2405 unsigned long nr, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 loff_t i_size = i_size_read(inode);
2407
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002408 end_index = i_size >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 if (index > end_index)
2410 break;
2411 if (index == end_index) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002412 nr = i_size & ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 if (nr <= offset)
2414 break;
2415 }
2416
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07002417 error = shmem_getpage(inode, index, &page, sgp);
Al Viro6e58e792014-02-03 17:07:03 -05002418 if (error) {
2419 if (error == -EINVAL)
2420 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 break;
2422 }
Hugh Dickins75edd342016-05-19 17:12:44 -07002423 if (page) {
2424 if (sgp == SGP_CACHE)
2425 set_page_dirty(page);
Hugh Dickinsd3602442008-02-04 22:28:44 -08002426 unlock_page(page);
Hugh Dickins75edd342016-05-19 17:12:44 -07002427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
2429 /*
2430 * We must evaluate after, since reads (unlike writes)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002431 * are called without i_mutex protection against truncate
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002433 nr = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002435 end_index = i_size >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 if (index == end_index) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002437 nr = i_size & ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 if (nr <= offset) {
2439 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002440 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 break;
2442 }
2443 }
2444 nr -= offset;
2445
2446 if (page) {
2447 /*
2448 * If users can be writing to this page using arbitrary
2449 * virtual addresses, take care about potential aliasing
2450 * before reading the page on the kernel side.
2451 */
2452 if (mapping_writably_mapped(mapping))
2453 flush_dcache_page(page);
2454 /*
2455 * Mark the page accessed if we read the beginning.
2456 */
2457 if (!offset)
2458 mark_page_accessed(page);
Nick Pigginb5810032005-10-29 18:16:12 -07002459 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 page = ZERO_PAGE(0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002461 get_page(page);
Nick Pigginb5810032005-10-29 18:16:12 -07002462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
2464 /*
2465 * Ok, we have the page, and it's up-to-date, so
2466 * now we can copy it to user space...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 */
Al Viro2ba5bbe2014-04-02 20:00:02 -04002468 ret = copy_page_to_iter(page, offset, nr, to);
Al Viro6e58e792014-02-03 17:07:03 -05002469 retval += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 offset += ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002471 index += offset >> PAGE_SHIFT;
2472 offset &= ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002474 put_page(page);
Al Viro2ba5bbe2014-04-02 20:00:02 -04002475 if (!iov_iter_count(to))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 break;
Al Viro6e58e792014-02-03 17:07:03 -05002477 if (ret < nr) {
2478 error = -EFAULT;
2479 break;
2480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 cond_resched();
2482 }
2483
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002484 *ppos = ((loff_t) index << PAGE_SHIFT) + offset;
Al Viro6e58e792014-02-03 17:07:03 -05002485 file_accessed(file);
2486 return retval ? retval : error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487}
2488
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002489/*
2490 * llseek SEEK_DATA or SEEK_HOLE through the radix_tree.
2491 */
2492static pgoff_t shmem_seek_hole_data(struct address_space *mapping,
Andrew Morton965c8e52012-12-17 15:59:39 -08002493 pgoff_t index, pgoff_t end, int whence)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002494{
2495 struct page *page;
2496 struct pagevec pvec;
2497 pgoff_t indices[PAGEVEC_SIZE];
2498 bool done = false;
2499 int i;
2500
2501 pagevec_init(&pvec, 0);
2502 pvec.nr = 1; /* start small: we may be there already */
2503 while (!done) {
Johannes Weiner0cd61442014-04-03 14:47:46 -07002504 pvec.nr = find_get_entries(mapping, index,
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002505 pvec.nr, pvec.pages, indices);
2506 if (!pvec.nr) {
Andrew Morton965c8e52012-12-17 15:59:39 -08002507 if (whence == SEEK_DATA)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002508 index = end;
2509 break;
2510 }
2511 for (i = 0; i < pvec.nr; i++, index++) {
2512 if (index < indices[i]) {
Andrew Morton965c8e52012-12-17 15:59:39 -08002513 if (whence == SEEK_HOLE) {
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002514 done = true;
2515 break;
2516 }
2517 index = indices[i];
2518 }
2519 page = pvec.pages[i];
2520 if (page && !radix_tree_exceptional_entry(page)) {
2521 if (!PageUptodate(page))
2522 page = NULL;
2523 }
2524 if (index >= end ||
Andrew Morton965c8e52012-12-17 15:59:39 -08002525 (page && whence == SEEK_DATA) ||
2526 (!page && whence == SEEK_HOLE)) {
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002527 done = true;
2528 break;
2529 }
2530 }
Johannes Weiner0cd61442014-04-03 14:47:46 -07002531 pagevec_remove_exceptionals(&pvec);
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002532 pagevec_release(&pvec);
2533 pvec.nr = PAGEVEC_SIZE;
2534 cond_resched();
2535 }
2536 return index;
2537}
2538
Andrew Morton965c8e52012-12-17 15:59:39 -08002539static loff_t shmem_file_llseek(struct file *file, loff_t offset, int whence)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002540{
2541 struct address_space *mapping = file->f_mapping;
2542 struct inode *inode = mapping->host;
2543 pgoff_t start, end;
2544 loff_t new_offset;
2545
Andrew Morton965c8e52012-12-17 15:59:39 -08002546 if (whence != SEEK_DATA && whence != SEEK_HOLE)
2547 return generic_file_llseek_size(file, offset, whence,
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002548 MAX_LFS_FILESIZE, i_size_read(inode));
Al Viro59551022016-01-22 15:40:57 -05002549 inode_lock(inode);
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002550 /* We're holding i_mutex so we can access i_size directly */
2551
2552 if (offset < 0)
2553 offset = -EINVAL;
2554 else if (offset >= inode->i_size)
2555 offset = -ENXIO;
2556 else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002557 start = offset >> PAGE_SHIFT;
2558 end = (inode->i_size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Andrew Morton965c8e52012-12-17 15:59:39 -08002559 new_offset = shmem_seek_hole_data(mapping, start, end, whence);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002560 new_offset <<= PAGE_SHIFT;
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002561 if (new_offset > offset) {
2562 if (new_offset < inode->i_size)
2563 offset = new_offset;
Andrew Morton965c8e52012-12-17 15:59:39 -08002564 else if (whence == SEEK_DATA)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002565 offset = -ENXIO;
2566 else
2567 offset = inode->i_size;
2568 }
2569 }
2570
Hugh Dickins387aae62013-08-04 11:30:25 -07002571 if (offset >= 0)
2572 offset = vfs_setpos(file, offset, MAX_LFS_FILESIZE);
Al Viro59551022016-01-22 15:40:57 -05002573 inode_unlock(inode);
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002574 return offset;
2575}
2576
David Herrmann05f65b52014-08-08 14:25:36 -07002577/*
2578 * We need a tag: a new tag would expand every radix_tree_node by 8 bytes,
2579 * so reuse a tag which we firmly believe is never set or cleared on shmem.
2580 */
2581#define SHMEM_TAG_PINNED PAGECACHE_TAG_TOWRITE
2582#define LAST_SCAN 4 /* about 150ms max */
2583
2584static void shmem_tag_pins(struct address_space *mapping)
2585{
2586 struct radix_tree_iter iter;
2587 void **slot;
2588 pgoff_t start;
2589 struct page *page;
2590
2591 lru_add_drain();
2592 start = 0;
2593 rcu_read_lock();
2594
David Herrmann05f65b52014-08-08 14:25:36 -07002595 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
2596 page = radix_tree_deref_slot(slot);
2597 if (!page || radix_tree_exception(page)) {
Matthew Wilcox2cf938a2016-03-17 14:22:03 -07002598 if (radix_tree_deref_retry(page)) {
2599 slot = radix_tree_iter_retry(&iter);
2600 continue;
2601 }
David Herrmann05f65b52014-08-08 14:25:36 -07002602 } else if (page_count(page) - page_mapcount(page) > 1) {
2603 spin_lock_irq(&mapping->tree_lock);
2604 radix_tree_tag_set(&mapping->page_tree, iter.index,
2605 SHMEM_TAG_PINNED);
2606 spin_unlock_irq(&mapping->tree_lock);
2607 }
2608
2609 if (need_resched()) {
Matthew Wilcox148deab2016-12-14 15:08:49 -08002610 slot = radix_tree_iter_resume(slot, &iter);
David Herrmann05f65b52014-08-08 14:25:36 -07002611 cond_resched_rcu();
David Herrmann05f65b52014-08-08 14:25:36 -07002612 }
2613 }
2614 rcu_read_unlock();
2615}
2616
2617/*
2618 * Setting SEAL_WRITE requires us to verify there's no pending writer. However,
2619 * via get_user_pages(), drivers might have some pending I/O without any active
2620 * user-space mappings (eg., direct-IO, AIO). Therefore, we look at all pages
2621 * and see whether it has an elevated ref-count. If so, we tag them and wait for
2622 * them to be dropped.
2623 * The caller must guarantee that no new user will acquire writable references
2624 * to those pages to avoid races.
2625 */
David Herrmann40e041a2014-08-08 14:25:27 -07002626static int shmem_wait_for_pins(struct address_space *mapping)
2627{
David Herrmann05f65b52014-08-08 14:25:36 -07002628 struct radix_tree_iter iter;
2629 void **slot;
2630 pgoff_t start;
2631 struct page *page;
2632 int error, scan;
2633
2634 shmem_tag_pins(mapping);
2635
2636 error = 0;
2637 for (scan = 0; scan <= LAST_SCAN; scan++) {
2638 if (!radix_tree_tagged(&mapping->page_tree, SHMEM_TAG_PINNED))
2639 break;
2640
2641 if (!scan)
2642 lru_add_drain_all();
2643 else if (schedule_timeout_killable((HZ << scan) / 200))
2644 scan = LAST_SCAN;
2645
2646 start = 0;
2647 rcu_read_lock();
David Herrmann05f65b52014-08-08 14:25:36 -07002648 radix_tree_for_each_tagged(slot, &mapping->page_tree, &iter,
2649 start, SHMEM_TAG_PINNED) {
2650
2651 page = radix_tree_deref_slot(slot);
2652 if (radix_tree_exception(page)) {
Matthew Wilcox2cf938a2016-03-17 14:22:03 -07002653 if (radix_tree_deref_retry(page)) {
2654 slot = radix_tree_iter_retry(&iter);
2655 continue;
2656 }
David Herrmann05f65b52014-08-08 14:25:36 -07002657
2658 page = NULL;
2659 }
2660
2661 if (page &&
2662 page_count(page) - page_mapcount(page) != 1) {
2663 if (scan < LAST_SCAN)
2664 goto continue_resched;
2665
2666 /*
2667 * On the last scan, we clean up all those tags
2668 * we inserted; but make a note that we still
2669 * found pages pinned.
2670 */
2671 error = -EBUSY;
2672 }
2673
2674 spin_lock_irq(&mapping->tree_lock);
2675 radix_tree_tag_clear(&mapping->page_tree,
2676 iter.index, SHMEM_TAG_PINNED);
2677 spin_unlock_irq(&mapping->tree_lock);
2678continue_resched:
2679 if (need_resched()) {
Matthew Wilcox148deab2016-12-14 15:08:49 -08002680 slot = radix_tree_iter_resume(slot, &iter);
David Herrmann05f65b52014-08-08 14:25:36 -07002681 cond_resched_rcu();
David Herrmann05f65b52014-08-08 14:25:36 -07002682 }
2683 }
2684 rcu_read_unlock();
2685 }
2686
2687 return error;
David Herrmann40e041a2014-08-08 14:25:27 -07002688}
2689
2690#define F_ALL_SEALS (F_SEAL_SEAL | \
2691 F_SEAL_SHRINK | \
2692 F_SEAL_GROW | \
2693 F_SEAL_WRITE)
2694
2695int shmem_add_seals(struct file *file, unsigned int seals)
2696{
2697 struct inode *inode = file_inode(file);
2698 struct shmem_inode_info *info = SHMEM_I(inode);
2699 int error;
2700
2701 /*
2702 * SEALING
2703 * Sealing allows multiple parties to share a shmem-file but restrict
2704 * access to a specific subset of file operations. Seals can only be
2705 * added, but never removed. This way, mutually untrusted parties can
2706 * share common memory regions with a well-defined policy. A malicious
2707 * peer can thus never perform unwanted operations on a shared object.
2708 *
2709 * Seals are only supported on special shmem-files and always affect
2710 * the whole underlying inode. Once a seal is set, it may prevent some
2711 * kinds of access to the file. Currently, the following seals are
2712 * defined:
2713 * SEAL_SEAL: Prevent further seals from being set on this file
2714 * SEAL_SHRINK: Prevent the file from shrinking
2715 * SEAL_GROW: Prevent the file from growing
2716 * SEAL_WRITE: Prevent write access to the file
2717 *
2718 * As we don't require any trust relationship between two parties, we
2719 * must prevent seals from being removed. Therefore, sealing a file
2720 * only adds a given set of seals to the file, it never touches
2721 * existing seals. Furthermore, the "setting seals"-operation can be
2722 * sealed itself, which basically prevents any further seal from being
2723 * added.
2724 *
2725 * Semantics of sealing are only defined on volatile files. Only
2726 * anonymous shmem files support sealing. More importantly, seals are
2727 * never written to disk. Therefore, there's no plan to support it on
2728 * other file types.
2729 */
2730
2731 if (file->f_op != &shmem_file_operations)
2732 return -EINVAL;
2733 if (!(file->f_mode & FMODE_WRITE))
2734 return -EPERM;
2735 if (seals & ~(unsigned int)F_ALL_SEALS)
2736 return -EINVAL;
2737
Al Viro59551022016-01-22 15:40:57 -05002738 inode_lock(inode);
David Herrmann40e041a2014-08-08 14:25:27 -07002739
2740 if (info->seals & F_SEAL_SEAL) {
2741 error = -EPERM;
2742 goto unlock;
2743 }
2744
2745 if ((seals & F_SEAL_WRITE) && !(info->seals & F_SEAL_WRITE)) {
2746 error = mapping_deny_writable(file->f_mapping);
2747 if (error)
2748 goto unlock;
2749
2750 error = shmem_wait_for_pins(file->f_mapping);
2751 if (error) {
2752 mapping_allow_writable(file->f_mapping);
2753 goto unlock;
2754 }
2755 }
2756
2757 info->seals |= seals;
2758 error = 0;
2759
2760unlock:
Al Viro59551022016-01-22 15:40:57 -05002761 inode_unlock(inode);
David Herrmann40e041a2014-08-08 14:25:27 -07002762 return error;
2763}
2764EXPORT_SYMBOL_GPL(shmem_add_seals);
2765
2766int shmem_get_seals(struct file *file)
2767{
2768 if (file->f_op != &shmem_file_operations)
2769 return -EINVAL;
2770
2771 return SHMEM_I(file_inode(file))->seals;
2772}
2773EXPORT_SYMBOL_GPL(shmem_get_seals);
2774
2775long shmem_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
2776{
2777 long error;
2778
2779 switch (cmd) {
2780 case F_ADD_SEALS:
2781 /* disallow upper 32bit */
2782 if (arg > UINT_MAX)
2783 return -EINVAL;
2784
2785 error = shmem_add_seals(file, arg);
2786 break;
2787 case F_GET_SEALS:
2788 error = shmem_get_seals(file);
2789 break;
2790 default:
2791 error = -EINVAL;
2792 break;
2793 }
2794
2795 return error;
2796}
2797
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002798static long shmem_fallocate(struct file *file, int mode, loff_t offset,
2799 loff_t len)
2800{
Al Viro496ad9a2013-01-23 17:07:38 -05002801 struct inode *inode = file_inode(file);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002802 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
David Herrmann40e041a2014-08-08 14:25:27 -07002803 struct shmem_inode_info *info = SHMEM_I(inode);
Hugh Dickins1aac1402012-05-29 15:06:42 -07002804 struct shmem_falloc shmem_falloc;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002805 pgoff_t start, index, end;
2806 int error;
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002807
Hugh Dickins13ace4d2014-06-23 13:22:03 -07002808 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2809 return -EOPNOTSUPP;
2810
Al Viro59551022016-01-22 15:40:57 -05002811 inode_lock(inode);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002812
2813 if (mode & FALLOC_FL_PUNCH_HOLE) {
2814 struct address_space *mapping = file->f_mapping;
2815 loff_t unmap_start = round_up(offset, PAGE_SIZE);
2816 loff_t unmap_end = round_down(offset + len, PAGE_SIZE) - 1;
Hugh Dickins8e205f72014-07-23 14:00:10 -07002817 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(shmem_falloc_waitq);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002818
David Herrmann40e041a2014-08-08 14:25:27 -07002819 /* protected by i_mutex */
2820 if (info->seals & F_SEAL_WRITE) {
2821 error = -EPERM;
2822 goto out;
2823 }
2824
Hugh Dickins8e205f72014-07-23 14:00:10 -07002825 shmem_falloc.waitq = &shmem_falloc_waitq;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07002826 shmem_falloc.start = unmap_start >> PAGE_SHIFT;
2827 shmem_falloc.next = (unmap_end + 1) >> PAGE_SHIFT;
2828 spin_lock(&inode->i_lock);
2829 inode->i_private = &shmem_falloc;
2830 spin_unlock(&inode->i_lock);
2831
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002832 if ((u64)unmap_end > (u64)unmap_start)
2833 unmap_mapping_range(mapping, unmap_start,
2834 1 + unmap_end - unmap_start, 0);
2835 shmem_truncate_range(inode, offset, offset + len - 1);
2836 /* No need to unmap again: hole-punching leaves COWed pages */
Hugh Dickins8e205f72014-07-23 14:00:10 -07002837
2838 spin_lock(&inode->i_lock);
2839 inode->i_private = NULL;
2840 wake_up_all(&shmem_falloc_waitq);
Linus Torvalds10d20bd2016-12-05 12:10:29 -08002841 WARN_ON_ONCE(!list_empty(&shmem_falloc_waitq.task_list));
Hugh Dickins8e205f72014-07-23 14:00:10 -07002842 spin_unlock(&inode->i_lock);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002843 error = 0;
Hugh Dickins8e205f72014-07-23 14:00:10 -07002844 goto out;
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002845 }
2846
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002847 /* We need to check rlimit even when FALLOC_FL_KEEP_SIZE */
2848 error = inode_newsize_ok(inode, offset + len);
2849 if (error)
2850 goto out;
2851
David Herrmann40e041a2014-08-08 14:25:27 -07002852 if ((info->seals & F_SEAL_GROW) && offset + len > inode->i_size) {
2853 error = -EPERM;
2854 goto out;
2855 }
2856
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002857 start = offset >> PAGE_SHIFT;
2858 end = (offset + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002859 /* Try to avoid a swapstorm if len is impossible to satisfy */
2860 if (sbinfo->max_blocks && end - start > sbinfo->max_blocks) {
2861 error = -ENOSPC;
2862 goto out;
2863 }
2864
Hugh Dickins8e205f72014-07-23 14:00:10 -07002865 shmem_falloc.waitq = NULL;
Hugh Dickins1aac1402012-05-29 15:06:42 -07002866 shmem_falloc.start = start;
2867 shmem_falloc.next = start;
2868 shmem_falloc.nr_falloced = 0;
2869 shmem_falloc.nr_unswapped = 0;
2870 spin_lock(&inode->i_lock);
2871 inode->i_private = &shmem_falloc;
2872 spin_unlock(&inode->i_lock);
2873
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002874 for (index = start; index < end; index++) {
2875 struct page *page;
2876
2877 /*
2878 * Good, the fallocate(2) manpage permits EINTR: we may have
2879 * been interrupted because we are using up too much memory.
2880 */
2881 if (signal_pending(current))
2882 error = -EINTR;
Hugh Dickins1aac1402012-05-29 15:06:42 -07002883 else if (shmem_falloc.nr_unswapped > shmem_falloc.nr_falloced)
2884 error = -ENOMEM;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002885 else
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07002886 error = shmem_getpage(inode, index, &page, SGP_FALLOC);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002887 if (error) {
Hugh Dickins1635f6a2012-05-29 15:06:42 -07002888 /* Remove the !PageUptodate pages we added */
Hugh Dickins7f556562016-07-10 16:46:32 -07002889 if (index > start) {
2890 shmem_undo_range(inode,
2891 (loff_t)start << PAGE_SHIFT,
2892 ((loff_t)index << PAGE_SHIFT) - 1, true);
2893 }
Hugh Dickins1aac1402012-05-29 15:06:42 -07002894 goto undone;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002895 }
2896
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002897 /*
Hugh Dickins1aac1402012-05-29 15:06:42 -07002898 * Inform shmem_writepage() how far we have reached.
2899 * No need for lock or barrier: we have the page lock.
2900 */
2901 shmem_falloc.next++;
2902 if (!PageUptodate(page))
2903 shmem_falloc.nr_falloced++;
2904
2905 /*
Hugh Dickins1635f6a2012-05-29 15:06:42 -07002906 * If !PageUptodate, leave it that way so that freeable pages
2907 * can be recognized if we need to rollback on error later.
2908 * But set_page_dirty so that memory pressure will swap rather
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002909 * than free the pages we are allocating (and SGP_CACHE pages
2910 * might still be clean: we now need to mark those dirty too).
2911 */
2912 set_page_dirty(page);
2913 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002914 put_page(page);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002915 cond_resched();
2916 }
2917
2918 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size)
2919 i_size_write(inode, offset + len);
Deepa Dinamani078cd822016-09-14 07:48:04 -07002920 inode->i_ctime = current_time(inode);
Hugh Dickins1aac1402012-05-29 15:06:42 -07002921undone:
2922 spin_lock(&inode->i_lock);
2923 inode->i_private = NULL;
2924 spin_unlock(&inode->i_lock);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002925out:
Al Viro59551022016-01-22 15:40:57 -05002926 inode_unlock(inode);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002927 return error;
2928}
2929
David Howells726c3342006-06-23 02:02:58 -07002930static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931{
David Howells726c3342006-06-23 02:02:58 -07002932 struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
2934 buf->f_type = TMPFS_MAGIC;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002935 buf->f_bsize = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 buf->f_namelen = NAME_MAX;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002937 if (sbinfo->max_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 buf->f_blocks = sbinfo->max_blocks;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002939 buf->f_bavail =
2940 buf->f_bfree = sbinfo->max_blocks -
2941 percpu_counter_sum(&sbinfo->used_blocks);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002942 }
2943 if (sbinfo->max_inodes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 buf->f_files = sbinfo->max_inodes;
2945 buf->f_ffree = sbinfo->free_inodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 }
2947 /* else leave those fields 0 like simple_statfs */
2948 return 0;
2949}
2950
2951/*
2952 * File creation. Allocate an inode, and we're done..
2953 */
2954static int
Al Viro1a67aaf2011-07-26 01:52:52 -04002955shmem_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956{
Hugh Dickins0b0a0802009-02-24 20:51:52 +00002957 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 int error = -ENOSPC;
2959
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002960 inode = shmem_get_inode(dir->i_sb, dir, mode, dev, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 if (inode) {
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002962 error = simple_acl_create(dir, inode);
2963 if (error)
2964 goto out_iput;
Eric Paris2a7dba32011-02-01 11:05:39 -05002965 error = security_inode_init_security(inode, dir,
Mimi Zohar9d8f13b2011-06-06 15:29:25 -04002966 &dentry->d_name,
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07002967 shmem_initxattrs, NULL);
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002968 if (error && error != -EOPNOTSUPP)
2969 goto out_iput;
Mimi Zohar37ec43c2013-04-14 09:21:47 -04002970
Al Viro718deb62009-12-16 19:35:36 -05002971 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 dir->i_size += BOGO_DIRENT_SIZE;
Deepa Dinamani078cd822016-09-14 07:48:04 -07002973 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 d_instantiate(dentry, inode);
2975 dget(dentry); /* Extra count - pin the dentry in core */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 }
2977 return error;
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002978out_iput:
2979 iput(inode);
2980 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981}
2982
Al Viro60545d02013-06-07 01:20:27 -04002983static int
2984shmem_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
2985{
2986 struct inode *inode;
2987 int error = -ENOSPC;
2988
2989 inode = shmem_get_inode(dir->i_sb, dir, mode, 0, VM_NORESERVE);
2990 if (inode) {
2991 error = security_inode_init_security(inode, dir,
2992 NULL,
2993 shmem_initxattrs, NULL);
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002994 if (error && error != -EOPNOTSUPP)
2995 goto out_iput;
2996 error = simple_acl_create(dir, inode);
2997 if (error)
2998 goto out_iput;
Al Viro60545d02013-06-07 01:20:27 -04002999 d_tmpfile(dentry, inode);
3000 }
3001 return error;
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003002out_iput:
3003 iput(inode);
3004 return error;
Al Viro60545d02013-06-07 01:20:27 -04003005}
3006
Al Viro18bb1db2011-07-26 01:41:39 -04003007static int shmem_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008{
3009 int error;
3010
3011 if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
3012 return error;
Dave Hansend8c76e62006-09-30 23:29:04 -07003013 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 return 0;
3015}
3016
Al Viro4acdaf22011-07-26 01:42:34 -04003017static int shmem_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -04003018 bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019{
3020 return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
3021}
3022
3023/*
3024 * Link a file..
3025 */
3026static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
3027{
David Howells75c3cfa2015-03-17 22:26:12 +00003028 struct inode *inode = d_inode(old_dentry);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08003029 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
3031 /*
3032 * No ordinary (disk based) filesystem counts links as inodes;
3033 * but each new link needs a new dentry, pinning lowmem, and
3034 * tmpfs dentries cannot be pruned until they are unlinked.
3035 */
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08003036 ret = shmem_reserve_inode(inode->i_sb);
3037 if (ret)
3038 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
3040 dir->i_size += BOGO_DIRENT_SIZE;
Deepa Dinamani078cd822016-09-14 07:48:04 -07003041 inode->i_ctime = dir->i_ctime = dir->i_mtime = current_time(inode);
Dave Hansend8c76e62006-09-30 23:29:04 -07003042 inc_nlink(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04003043 ihold(inode); /* New dentry reference */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 dget(dentry); /* Extra pinning count for the created dentry */
3045 d_instantiate(dentry, inode);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08003046out:
3047 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048}
3049
3050static int shmem_unlink(struct inode *dir, struct dentry *dentry)
3051{
David Howells75c3cfa2015-03-17 22:26:12 +00003052 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08003054 if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode))
3055 shmem_free_inode(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
3057 dir->i_size -= BOGO_DIRENT_SIZE;
Deepa Dinamani078cd822016-09-14 07:48:04 -07003058 inode->i_ctime = dir->i_ctime = dir->i_mtime = current_time(inode);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07003059 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 dput(dentry); /* Undo the count from "create" - this does all the work */
3061 return 0;
3062}
3063
3064static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
3065{
3066 if (!simple_empty(dentry))
3067 return -ENOTEMPTY;
3068
David Howells75c3cfa2015-03-17 22:26:12 +00003069 drop_nlink(d_inode(dentry));
Dave Hansen9a53c3a2006-09-30 23:29:03 -07003070 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 return shmem_unlink(dir, dentry);
3072}
3073
Miklos Szeredi37456772014-07-23 15:15:34 +02003074static int shmem_exchange(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
3075{
David Howellse36cb0b2015-01-29 12:02:35 +00003076 bool old_is_dir = d_is_dir(old_dentry);
3077 bool new_is_dir = d_is_dir(new_dentry);
Miklos Szeredi37456772014-07-23 15:15:34 +02003078
3079 if (old_dir != new_dir && old_is_dir != new_is_dir) {
3080 if (old_is_dir) {
3081 drop_nlink(old_dir);
3082 inc_nlink(new_dir);
3083 } else {
3084 drop_nlink(new_dir);
3085 inc_nlink(old_dir);
3086 }
3087 }
3088 old_dir->i_ctime = old_dir->i_mtime =
3089 new_dir->i_ctime = new_dir->i_mtime =
David Howells75c3cfa2015-03-17 22:26:12 +00003090 d_inode(old_dentry)->i_ctime =
Deepa Dinamani078cd822016-09-14 07:48:04 -07003091 d_inode(new_dentry)->i_ctime = current_time(old_dir);
Miklos Szeredi37456772014-07-23 15:15:34 +02003092
3093 return 0;
3094}
3095
Miklos Szeredi46fdb792014-10-24 00:14:37 +02003096static int shmem_whiteout(struct inode *old_dir, struct dentry *old_dentry)
3097{
3098 struct dentry *whiteout;
3099 int error;
3100
3101 whiteout = d_alloc(old_dentry->d_parent, &old_dentry->d_name);
3102 if (!whiteout)
3103 return -ENOMEM;
3104
3105 error = shmem_mknod(old_dir, whiteout,
3106 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
3107 dput(whiteout);
3108 if (error)
3109 return error;
3110
3111 /*
3112 * Cheat and hash the whiteout while the old dentry is still in
3113 * place, instead of playing games with FS_RENAME_DOES_D_MOVE.
3114 *
3115 * d_lookup() will consistently find one of them at this point,
3116 * not sure which one, but that isn't even important.
3117 */
3118 d_rehash(whiteout);
3119 return 0;
3120}
3121
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122/*
3123 * The VFS layer already does all the dentry stuff for rename,
3124 * we just have to decrement the usage count for the target if
3125 * it exists so that the VFS layer correctly free's it when it
3126 * gets overwritten.
3127 */
Miklos Szeredi3b69ff52014-07-23 15:15:33 +02003128static int shmem_rename2(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129{
David Howells75c3cfa2015-03-17 22:26:12 +00003130 struct inode *inode = d_inode(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 int they_are_dirs = S_ISDIR(inode->i_mode);
3132
Miklos Szeredi46fdb792014-10-24 00:14:37 +02003133 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi3b69ff52014-07-23 15:15:33 +02003134 return -EINVAL;
3135
Miklos Szeredi37456772014-07-23 15:15:34 +02003136 if (flags & RENAME_EXCHANGE)
3137 return shmem_exchange(old_dir, old_dentry, new_dir, new_dentry);
3138
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 if (!simple_empty(new_dentry))
3140 return -ENOTEMPTY;
3141
Miklos Szeredi46fdb792014-10-24 00:14:37 +02003142 if (flags & RENAME_WHITEOUT) {
3143 int error;
3144
3145 error = shmem_whiteout(old_dir, old_dentry);
3146 if (error)
3147 return error;
3148 }
3149
David Howells75c3cfa2015-03-17 22:26:12 +00003150 if (d_really_is_positive(new_dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 (void) shmem_unlink(new_dir, new_dentry);
Miklos Szeredib9280952014-09-24 17:56:17 +02003152 if (they_are_dirs) {
David Howells75c3cfa2015-03-17 22:26:12 +00003153 drop_nlink(d_inode(new_dentry));
Dave Hansen9a53c3a2006-09-30 23:29:03 -07003154 drop_nlink(old_dir);
Miklos Szeredib9280952014-09-24 17:56:17 +02003155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 } else if (they_are_dirs) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07003157 drop_nlink(old_dir);
Dave Hansend8c76e62006-09-30 23:29:04 -07003158 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 }
3160
3161 old_dir->i_size -= BOGO_DIRENT_SIZE;
3162 new_dir->i_size += BOGO_DIRENT_SIZE;
3163 old_dir->i_ctime = old_dir->i_mtime =
3164 new_dir->i_ctime = new_dir->i_mtime =
Deepa Dinamani078cd822016-09-14 07:48:04 -07003165 inode->i_ctime = current_time(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 return 0;
3167}
3168
3169static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
3170{
3171 int error;
3172 int len;
3173 struct inode *inode;
Hugh Dickins9276aad2011-07-25 17:12:34 -07003174 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 struct shmem_inode_info *info;
3176
3177 len = strlen(symname) + 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003178 if (len > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 return -ENAMETOOLONG;
3180
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03003181 inode = shmem_get_inode(dir->i_sb, dir, S_IFLNK|S_IRWXUGO, 0, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 if (!inode)
3183 return -ENOSPC;
3184
Mimi Zohar9d8f13b2011-06-06 15:29:25 -04003185 error = security_inode_init_security(inode, dir, &dentry->d_name,
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003186 shmem_initxattrs, NULL);
Stephen Smalley570bc1c2005-09-09 13:01:43 -07003187 if (error) {
3188 if (error != -EOPNOTSUPP) {
3189 iput(inode);
3190 return error;
3191 }
3192 error = 0;
3193 }
3194
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 info = SHMEM_I(inode);
3196 inode->i_size = len-1;
Hugh Dickins69f07ec2011-08-03 16:21:26 -07003197 if (len <= SHORT_SYMLINK_LEN) {
Al Viro3ed47db2016-01-22 18:08:52 -05003198 inode->i_link = kmemdup(symname, len, GFP_KERNEL);
3199 if (!inode->i_link) {
Hugh Dickins69f07ec2011-08-03 16:21:26 -07003200 iput(inode);
3201 return -ENOMEM;
3202 }
3203 inode->i_op = &shmem_short_symlink_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 } else {
Al Viroe8ecde22016-01-14 17:52:59 -05003205 inode_nohighmem(inode);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07003206 error = shmem_getpage(inode, 0, &page, SGP_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 if (error) {
3208 iput(inode);
3209 return error;
3210 }
Hugh Dickins14fcc232008-07-28 15:46:19 -07003211 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 inode->i_op = &shmem_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05003213 memcpy(page_address(page), symname, len);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07003214 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 set_page_dirty(page);
Wu Fengguang6746aff2009-09-16 11:50:14 +02003216 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003217 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 dir->i_size += BOGO_DIRENT_SIZE;
Deepa Dinamani078cd822016-09-14 07:48:04 -07003220 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 d_instantiate(dentry, inode);
3222 dget(dentry);
3223 return 0;
3224}
3225
Al Virofceef392015-12-29 15:58:39 -05003226static void shmem_put_link(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227{
Al Virofceef392015-12-29 15:58:39 -05003228 mark_page_accessed(arg);
3229 put_page(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230}
3231
Al Viro6b255392015-11-17 10:20:54 -05003232static const char *shmem_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05003233 struct inode *inode,
3234 struct delayed_call *done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 struct page *page = NULL;
Al Viro6b255392015-11-17 10:20:54 -05003237 int error;
Al Viro6a6c9902015-11-17 10:54:32 -05003238 if (!dentry) {
3239 page = find_get_page(inode->i_mapping, 0);
3240 if (!page)
3241 return ERR_PTR(-ECHILD);
3242 if (!PageUptodate(page)) {
3243 put_page(page);
3244 return ERR_PTR(-ECHILD);
3245 }
3246 } else {
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07003247 error = shmem_getpage(inode, 0, &page, SGP_READ);
Al Viro6a6c9902015-11-17 10:54:32 -05003248 if (error)
3249 return ERR_PTR(error);
3250 unlock_page(page);
3251 }
Al Virofceef392015-12-29 15:58:39 -05003252 set_delayed_call(done, shmem_put_link, page);
Al Viro21fc61c2015-11-17 01:07:57 -05003253 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254}
3255
Eric Parisb09e0fa2011-05-24 17:12:39 -07003256#ifdef CONFIG_TMPFS_XATTR
3257/*
3258 * Superblocks without xattr inode operations may get some security.* xattr
3259 * support from the LSM "for free". As soon as we have any other xattrs
3260 * like ACLs, we also need to implement the security.* handlers at
3261 * filesystem level, though.
3262 */
3263
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003264/*
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003265 * Callback for security_inode_init_security() for acquiring xattrs.
3266 */
3267static int shmem_initxattrs(struct inode *inode,
3268 const struct xattr *xattr_array,
3269 void *fs_info)
3270{
3271 struct shmem_inode_info *info = SHMEM_I(inode);
3272 const struct xattr *xattr;
Aristeu Rozanski38f38652012-08-23 16:53:28 -04003273 struct simple_xattr *new_xattr;
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003274 size_t len;
3275
3276 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
Aristeu Rozanski38f38652012-08-23 16:53:28 -04003277 new_xattr = simple_xattr_alloc(xattr->value, xattr->value_len);
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003278 if (!new_xattr)
3279 return -ENOMEM;
3280
3281 len = strlen(xattr->name) + 1;
3282 new_xattr->name = kmalloc(XATTR_SECURITY_PREFIX_LEN + len,
3283 GFP_KERNEL);
3284 if (!new_xattr->name) {
3285 kfree(new_xattr);
3286 return -ENOMEM;
3287 }
3288
3289 memcpy(new_xattr->name, XATTR_SECURITY_PREFIX,
3290 XATTR_SECURITY_PREFIX_LEN);
3291 memcpy(new_xattr->name + XATTR_SECURITY_PREFIX_LEN,
3292 xattr->name, len);
3293
Aristeu Rozanski38f38652012-08-23 16:53:28 -04003294 simple_xattr_list_add(&info->xattrs, new_xattr);
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003295 }
3296
3297 return 0;
3298}
3299
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003300static int shmem_xattr_handler_get(const struct xattr_handler *handler,
Al Virob2968212016-04-10 20:48:24 -04003301 struct dentry *unused, struct inode *inode,
3302 const char *name, void *buffer, size_t size)
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003303{
Al Virob2968212016-04-10 20:48:24 -04003304 struct shmem_inode_info *info = SHMEM_I(inode);
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003305
3306 name = xattr_full_name(handler, name);
3307 return simple_xattr_get(&info->xattrs, name, buffer, size);
3308}
3309
3310static int shmem_xattr_handler_set(const struct xattr_handler *handler,
Al Viro59301222016-05-27 10:19:30 -04003311 struct dentry *unused, struct inode *inode,
3312 const char *name, const void *value,
3313 size_t size, int flags)
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003314{
Al Viro59301222016-05-27 10:19:30 -04003315 struct shmem_inode_info *info = SHMEM_I(inode);
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003316
3317 name = xattr_full_name(handler, name);
3318 return simple_xattr_set(&info->xattrs, name, value, size, flags);
3319}
3320
3321static const struct xattr_handler shmem_security_xattr_handler = {
3322 .prefix = XATTR_SECURITY_PREFIX,
3323 .get = shmem_xattr_handler_get,
3324 .set = shmem_xattr_handler_set,
3325};
3326
3327static const struct xattr_handler shmem_trusted_xattr_handler = {
3328 .prefix = XATTR_TRUSTED_PREFIX,
3329 .get = shmem_xattr_handler_get,
3330 .set = shmem_xattr_handler_set,
3331};
3332
Eric Parisb09e0fa2011-05-24 17:12:39 -07003333static const struct xattr_handler *shmem_xattr_handlers[] = {
3334#ifdef CONFIG_TMPFS_POSIX_ACL
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003335 &posix_acl_access_xattr_handler,
3336 &posix_acl_default_xattr_handler,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003337#endif
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003338 &shmem_security_xattr_handler,
3339 &shmem_trusted_xattr_handler,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003340 NULL
3341};
3342
Eric Parisb09e0fa2011-05-24 17:12:39 -07003343static ssize_t shmem_listxattr(struct dentry *dentry, char *buffer, size_t size)
3344{
David Howells75c3cfa2015-03-17 22:26:12 +00003345 struct shmem_inode_info *info = SHMEM_I(d_inode(dentry));
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01003346 return simple_xattr_list(d_inode(dentry), &info->xattrs, buffer, size);
Eric Parisb09e0fa2011-05-24 17:12:39 -07003347}
3348#endif /* CONFIG_TMPFS_XATTR */
3349
Hugh Dickins69f07ec2011-08-03 16:21:26 -07003350static const struct inode_operations shmem_short_symlink_operations = {
Al Viro6b255392015-11-17 10:20:54 -05003351 .get_link = simple_get_link,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003352#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003353 .listxattr = shmem_listxattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003354#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355};
3356
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003357static const struct inode_operations shmem_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -05003358 .get_link = shmem_get_link,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003359#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003360 .listxattr = shmem_listxattr,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003361#endif
Eric Parisb09e0fa2011-05-24 17:12:39 -07003362};
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003363
David M. Grimes91828a42006-10-17 00:09:45 -07003364static struct dentry *shmem_get_parent(struct dentry *child)
3365{
3366 return ERR_PTR(-ESTALE);
3367}
3368
3369static int shmem_match(struct inode *ino, void *vfh)
3370{
3371 __u32 *fh = vfh;
3372 __u64 inum = fh[2];
3373 inum = (inum << 32) | fh[1];
3374 return ino->i_ino == inum && fh[0] == ino->i_generation;
3375}
3376
Christoph Hellwig480b1162007-10-21 16:42:13 -07003377static struct dentry *shmem_fh_to_dentry(struct super_block *sb,
3378 struct fid *fid, int fh_len, int fh_type)
David M. Grimes91828a42006-10-17 00:09:45 -07003379{
David M. Grimes91828a42006-10-17 00:09:45 -07003380 struct inode *inode;
Christoph Hellwig480b1162007-10-21 16:42:13 -07003381 struct dentry *dentry = NULL;
Hugh Dickins35c2a7f2012-10-07 20:32:51 -07003382 u64 inum;
David M. Grimes91828a42006-10-17 00:09:45 -07003383
Christoph Hellwig480b1162007-10-21 16:42:13 -07003384 if (fh_len < 3)
3385 return NULL;
3386
Hugh Dickins35c2a7f2012-10-07 20:32:51 -07003387 inum = fid->raw[2];
3388 inum = (inum << 32) | fid->raw[1];
3389
Christoph Hellwig480b1162007-10-21 16:42:13 -07003390 inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]),
3391 shmem_match, fid->raw);
David M. Grimes91828a42006-10-17 00:09:45 -07003392 if (inode) {
Christoph Hellwig480b1162007-10-21 16:42:13 -07003393 dentry = d_find_alias(inode);
David M. Grimes91828a42006-10-17 00:09:45 -07003394 iput(inode);
3395 }
3396
Christoph Hellwig480b1162007-10-21 16:42:13 -07003397 return dentry;
David M. Grimes91828a42006-10-17 00:09:45 -07003398}
3399
Al Virob0b03822012-04-02 14:34:06 -04003400static int shmem_encode_fh(struct inode *inode, __u32 *fh, int *len,
3401 struct inode *parent)
David M. Grimes91828a42006-10-17 00:09:45 -07003402{
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05303403 if (*len < 3) {
3404 *len = 3;
Namjae Jeon94e07a752013-02-17 15:48:11 +09003405 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05303406 }
David M. Grimes91828a42006-10-17 00:09:45 -07003407
Al Viro1d3382cb2010-10-23 15:19:20 -04003408 if (inode_unhashed(inode)) {
David M. Grimes91828a42006-10-17 00:09:45 -07003409 /* Unfortunately insert_inode_hash is not idempotent,
3410 * so as we hash inodes here rather than at creation
3411 * time, we need a lock to ensure we only try
3412 * to do it once
3413 */
3414 static DEFINE_SPINLOCK(lock);
3415 spin_lock(&lock);
Al Viro1d3382cb2010-10-23 15:19:20 -04003416 if (inode_unhashed(inode))
David M. Grimes91828a42006-10-17 00:09:45 -07003417 __insert_inode_hash(inode,
3418 inode->i_ino + inode->i_generation);
3419 spin_unlock(&lock);
3420 }
3421
3422 fh[0] = inode->i_generation;
3423 fh[1] = inode->i_ino;
3424 fh[2] = ((__u64)inode->i_ino) >> 32;
3425
3426 *len = 3;
3427 return 1;
3428}
3429
Christoph Hellwig39655162007-10-21 16:42:17 -07003430static const struct export_operations shmem_export_ops = {
David M. Grimes91828a42006-10-17 00:09:45 -07003431 .get_parent = shmem_get_parent,
David M. Grimes91828a42006-10-17 00:09:45 -07003432 .encode_fh = shmem_encode_fh,
Christoph Hellwig480b1162007-10-21 16:42:13 -07003433 .fh_to_dentry = shmem_fh_to_dentry,
David M. Grimes91828a42006-10-17 00:09:45 -07003434};
3435
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003436static int shmem_parse_options(char *options, struct shmem_sb_info *sbinfo,
3437 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438{
3439 char *this_char, *value, *rest;
Greg Thelen49cd0a52013-02-22 16:36:02 -08003440 struct mempolicy *mpol = NULL;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003441 uid_t uid;
3442 gid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +00003444 while (options != NULL) {
3445 this_char = options;
3446 for (;;) {
3447 /*
3448 * NUL-terminate this option: unfortunately,
3449 * mount options form a comma-separated list,
3450 * but mpol's nodelist may also contain commas.
3451 */
3452 options = strchr(options, ',');
3453 if (options == NULL)
3454 break;
3455 options++;
3456 if (!isdigit(*options)) {
3457 options[-1] = '\0';
3458 break;
3459 }
3460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 if (!*this_char)
3462 continue;
3463 if ((value = strchr(this_char,'=')) != NULL) {
3464 *value++ = 0;
3465 } else {
Joe Perches11705322016-03-17 14:19:50 -07003466 pr_err("tmpfs: No value for mount option '%s'\n",
3467 this_char);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003468 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 }
3470
3471 if (!strcmp(this_char,"size")) {
3472 unsigned long long size;
3473 size = memparse(value,&rest);
3474 if (*rest == '%') {
3475 size <<= PAGE_SHIFT;
3476 size *= totalram_pages;
3477 do_div(size, 100);
3478 rest++;
3479 }
3480 if (*rest)
3481 goto bad_val;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003482 sbinfo->max_blocks =
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003483 DIV_ROUND_UP(size, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 } else if (!strcmp(this_char,"nr_blocks")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003485 sbinfo->max_blocks = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 if (*rest)
3487 goto bad_val;
3488 } else if (!strcmp(this_char,"nr_inodes")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003489 sbinfo->max_inodes = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 if (*rest)
3491 goto bad_val;
3492 } else if (!strcmp(this_char,"mode")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003493 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 continue;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003495 sbinfo->mode = simple_strtoul(value, &rest, 8) & 07777;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 if (*rest)
3497 goto bad_val;
3498 } else if (!strcmp(this_char,"uid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003499 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 continue;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003501 uid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 if (*rest)
3503 goto bad_val;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003504 sbinfo->uid = make_kuid(current_user_ns(), uid);
3505 if (!uid_valid(sbinfo->uid))
3506 goto bad_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 } else if (!strcmp(this_char,"gid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003508 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 continue;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003510 gid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 if (*rest)
3512 goto bad_val;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003513 sbinfo->gid = make_kgid(current_user_ns(), gid);
3514 if (!gid_valid(sbinfo->gid))
3515 goto bad_val;
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07003516#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003517 } else if (!strcmp(this_char, "huge")) {
3518 int huge;
3519 huge = shmem_parse_huge(value);
3520 if (huge < 0)
3521 goto bad_val;
3522 if (!has_transparent_hugepage() &&
3523 huge != SHMEM_HUGE_NEVER)
3524 goto bad_val;
3525 sbinfo->huge = huge;
3526#endif
3527#ifdef CONFIG_NUMA
Robin Holt7339ff82006-01-14 13:20:48 -08003528 } else if (!strcmp(this_char,"mpol")) {
Greg Thelen49cd0a52013-02-22 16:36:02 -08003529 mpol_put(mpol);
3530 mpol = NULL;
3531 if (mpol_parse_str(value, &mpol))
Robin Holt7339ff82006-01-14 13:20:48 -08003532 goto bad_val;
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003533#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 } else {
Joe Perches11705322016-03-17 14:19:50 -07003535 pr_err("tmpfs: Bad mount option %s\n", this_char);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003536 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 }
3538 }
Greg Thelen49cd0a52013-02-22 16:36:02 -08003539 sbinfo->mpol = mpol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 return 0;
3541
3542bad_val:
Joe Perches11705322016-03-17 14:19:50 -07003543 pr_err("tmpfs: Bad value '%s' for mount option '%s'\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 value, this_char);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003545error:
3546 mpol_put(mpol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 return 1;
3548
3549}
3550
3551static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
3552{
3553 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003554 struct shmem_sb_info config = *sbinfo;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003555 unsigned long inodes;
3556 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
Greg Thelen5f001102013-02-22 16:36:01 -08003558 config.mpol = NULL;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003559 if (shmem_parse_options(data, &config, true))
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003560 return error;
3561
3562 spin_lock(&sbinfo->stat_lock);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003563 inodes = sbinfo->max_inodes - sbinfo->free_inodes;
Tim Chen7e496292010-08-09 17:19:05 -07003564 if (percpu_counter_compare(&sbinfo->used_blocks, config.max_blocks) > 0)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003565 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003566 if (config.max_inodes < inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003567 goto out;
3568 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07003569 * Those tests disallow limited->unlimited while any are in use;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003570 * but we must separately disallow unlimited->limited, because
3571 * in that case we have no record of how much is already in use.
3572 */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003573 if (config.max_blocks && !sbinfo->max_blocks)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003574 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003575 if (config.max_inodes && !sbinfo->max_inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003576 goto out;
3577
3578 error = 0;
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003579 sbinfo->huge = config.huge;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003580 sbinfo->max_blocks = config.max_blocks;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003581 sbinfo->max_inodes = config.max_inodes;
3582 sbinfo->free_inodes = config.max_inodes - inodes;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07003583
Greg Thelen5f001102013-02-22 16:36:01 -08003584 /*
3585 * Preserve previous mempolicy unless mpol remount option was specified.
3586 */
3587 if (config.mpol) {
3588 mpol_put(sbinfo->mpol);
3589 sbinfo->mpol = config.mpol; /* transfers initial ref */
3590 }
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003591out:
3592 spin_unlock(&sbinfo->stat_lock);
3593 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003595
Al Viro34c80b12011-12-08 21:32:45 -05003596static int shmem_show_options(struct seq_file *seq, struct dentry *root)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003597{
Al Viro34c80b12011-12-08 21:32:45 -05003598 struct shmem_sb_info *sbinfo = SHMEM_SB(root->d_sb);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003599
3600 if (sbinfo->max_blocks != shmem_default_max_blocks())
3601 seq_printf(seq, ",size=%luk",
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003602 sbinfo->max_blocks << (PAGE_SHIFT - 10));
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003603 if (sbinfo->max_inodes != shmem_default_max_inodes())
3604 seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
3605 if (sbinfo->mode != (S_IRWXUGO | S_ISVTX))
Al Viro09208d12011-07-26 03:15:03 -04003606 seq_printf(seq, ",mode=%03ho", sbinfo->mode);
Eric W. Biederman8751e032012-02-07 16:46:12 -08003607 if (!uid_eq(sbinfo->uid, GLOBAL_ROOT_UID))
3608 seq_printf(seq, ",uid=%u",
3609 from_kuid_munged(&init_user_ns, sbinfo->uid));
3610 if (!gid_eq(sbinfo->gid, GLOBAL_ROOT_GID))
3611 seq_printf(seq, ",gid=%u",
3612 from_kgid_munged(&init_user_ns, sbinfo->gid));
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07003613#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003614 /* Rightly or wrongly, show huge mount option unmasked by shmem_huge */
3615 if (sbinfo->huge)
3616 seq_printf(seq, ",huge=%s", shmem_format_huge(sbinfo->huge));
3617#endif
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07003618 shmem_show_mpol(seq, sbinfo->mpol);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003619 return 0;
3620}
David Herrmann9183df22014-08-08 14:25:29 -07003621
3622#define MFD_NAME_PREFIX "memfd:"
3623#define MFD_NAME_PREFIX_LEN (sizeof(MFD_NAME_PREFIX) - 1)
3624#define MFD_NAME_MAX_LEN (NAME_MAX - MFD_NAME_PREFIX_LEN)
3625
3626#define MFD_ALL_FLAGS (MFD_CLOEXEC | MFD_ALLOW_SEALING)
3627
3628SYSCALL_DEFINE2(memfd_create,
3629 const char __user *, uname,
3630 unsigned int, flags)
3631{
3632 struct shmem_inode_info *info;
3633 struct file *file;
3634 int fd, error;
3635 char *name;
3636 long len;
3637
3638 if (flags & ~(unsigned int)MFD_ALL_FLAGS)
3639 return -EINVAL;
3640
3641 /* length includes terminating zero */
3642 len = strnlen_user(uname, MFD_NAME_MAX_LEN + 1);
3643 if (len <= 0)
3644 return -EFAULT;
3645 if (len > MFD_NAME_MAX_LEN + 1)
3646 return -EINVAL;
3647
3648 name = kmalloc(len + MFD_NAME_PREFIX_LEN, GFP_TEMPORARY);
3649 if (!name)
3650 return -ENOMEM;
3651
3652 strcpy(name, MFD_NAME_PREFIX);
3653 if (copy_from_user(&name[MFD_NAME_PREFIX_LEN], uname, len)) {
3654 error = -EFAULT;
3655 goto err_name;
3656 }
3657
3658 /* terminating-zero may have changed after strnlen_user() returned */
3659 if (name[len + MFD_NAME_PREFIX_LEN - 1]) {
3660 error = -EFAULT;
3661 goto err_name;
3662 }
3663
3664 fd = get_unused_fd_flags((flags & MFD_CLOEXEC) ? O_CLOEXEC : 0);
3665 if (fd < 0) {
3666 error = fd;
3667 goto err_name;
3668 }
3669
3670 file = shmem_file_setup(name, 0, VM_NORESERVE);
3671 if (IS_ERR(file)) {
3672 error = PTR_ERR(file);
3673 goto err_fd;
3674 }
3675 info = SHMEM_I(file_inode(file));
3676 file->f_mode |= FMODE_LSEEK | FMODE_PREAD | FMODE_PWRITE;
3677 file->f_flags |= O_RDWR | O_LARGEFILE;
3678 if (flags & MFD_ALLOW_SEALING)
3679 info->seals &= ~F_SEAL_SEAL;
3680
3681 fd_install(fd, file);
3682 kfree(name);
3683 return fd;
3684
3685err_fd:
3686 put_unused_fd(fd);
3687err_name:
3688 kfree(name);
3689 return error;
3690}
3691
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003692#endif /* CONFIG_TMPFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693
3694static void shmem_put_super(struct super_block *sb)
3695{
Hugh Dickins602586a2010-08-17 15:23:56 -07003696 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
3697
3698 percpu_counter_destroy(&sbinfo->used_blocks);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003699 mpol_put(sbinfo->mpol);
Hugh Dickins602586a2010-08-17 15:23:56 -07003700 kfree(sbinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 sb->s_fs_info = NULL;
3702}
3703
Kay Sievers2b2af542009-04-30 15:23:42 +02003704int shmem_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705{
3706 struct inode *inode;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003707 struct shmem_sb_info *sbinfo;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003708 int err = -ENOMEM;
3709
3710 /* Round up to L1_CACHE_BYTES to resist false sharing */
Pekka Enberg425fbf02009-09-21 17:03:50 -07003711 sbinfo = kzalloc(max((int)sizeof(struct shmem_sb_info),
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003712 L1_CACHE_BYTES), GFP_KERNEL);
3713 if (!sbinfo)
3714 return -ENOMEM;
3715
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003716 sbinfo->mode = S_IRWXUGO | S_ISVTX;
David Howells76aac0e2008-11-14 10:39:12 +11003717 sbinfo->uid = current_fsuid();
3718 sbinfo->gid = current_fsgid();
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003719 sb->s_fs_info = sbinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003721#ifdef CONFIG_TMPFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 /*
3723 * Per default we only allow half of the physical ram per
3724 * tmpfs instance, limiting inodes to one per page of lowmem;
3725 * but the internal instance is left unlimited.
3726 */
Al Viroca4e0512013-08-31 12:57:10 -04003727 if (!(sb->s_flags & MS_KERNMOUNT)) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003728 sbinfo->max_blocks = shmem_default_max_blocks();
3729 sbinfo->max_inodes = shmem_default_max_inodes();
3730 if (shmem_parse_options(data, sbinfo, false)) {
3731 err = -EINVAL;
3732 goto failed;
3733 }
Al Viroca4e0512013-08-31 12:57:10 -04003734 } else {
3735 sb->s_flags |= MS_NOUSER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 }
David M. Grimes91828a42006-10-17 00:09:45 -07003737 sb->s_export_op = &shmem_export_ops;
Hugh Dickins2f6e38f2012-05-29 15:06:38 -07003738 sb->s_flags |= MS_NOSEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739#else
3740 sb->s_flags |= MS_NOUSER;
3741#endif
3742
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003743 spin_lock_init(&sbinfo->stat_lock);
Tejun Heo908c7f12014-09-08 09:51:29 +09003744 if (percpu_counter_init(&sbinfo->used_blocks, 0, GFP_KERNEL))
Hugh Dickins602586a2010-08-17 15:23:56 -07003745 goto failed;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003746 sbinfo->free_inodes = sbinfo->max_inodes;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07003747 spin_lock_init(&sbinfo->shrinklist_lock);
3748 INIT_LIST_HEAD(&sbinfo->shrinklist);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003749
Hugh Dickins285b2c42011-08-03 16:21:20 -07003750 sb->s_maxbytes = MAX_LFS_FILESIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003751 sb->s_blocksize = PAGE_SIZE;
3752 sb->s_blocksize_bits = PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 sb->s_magic = TMPFS_MAGIC;
3754 sb->s_op = &shmem_ops;
Robin H. Johnsoncfd95a92006-06-12 21:50:25 +01003755 sb->s_time_gran = 1;
Eric Parisb09e0fa2011-05-24 17:12:39 -07003756#ifdef CONFIG_TMPFS_XATTR
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003757 sb->s_xattr = shmem_xattr_handlers;
Eric Parisb09e0fa2011-05-24 17:12:39 -07003758#endif
3759#ifdef CONFIG_TMPFS_POSIX_ACL
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003760 sb->s_flags |= MS_POSIXACL;
3761#endif
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003762
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03003763 inode = shmem_get_inode(sb, NULL, S_IFDIR | sbinfo->mode, 0, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 if (!inode)
3765 goto failed;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003766 inode->i_uid = sbinfo->uid;
3767 inode->i_gid = sbinfo->gid;
Al Viro318ceed2012-02-12 22:08:01 -05003768 sb->s_root = d_make_root(inode);
3769 if (!sb->s_root)
Al Viro48fde702012-01-08 22:15:13 -05003770 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 return 0;
3772
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773failed:
3774 shmem_put_super(sb);
3775 return err;
3776}
3777
Pekka Enbergfcc234f2006-03-22 00:08:13 -08003778static struct kmem_cache *shmem_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
3780static struct inode *shmem_alloc_inode(struct super_block *sb)
3781{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003782 struct shmem_inode_info *info;
3783 info = kmem_cache_alloc(shmem_inode_cachep, GFP_KERNEL);
3784 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 return NULL;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003786 return &info->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787}
3788
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003789static void shmem_destroy_callback(struct rcu_head *head)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11003790{
3791 struct inode *inode = container_of(head, struct inode, i_rcu);
Al Viro84e710d2016-04-15 00:58:55 -04003792 if (S_ISLNK(inode->i_mode))
3793 kfree(inode->i_link);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11003794 kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
3795}
3796
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797static void shmem_destroy_inode(struct inode *inode)
3798{
Al Viro09208d12011-07-26 03:15:03 -04003799 if (S_ISREG(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 mpol_free_shared_policy(&SHMEM_I(inode)->policy);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003801 call_rcu(&inode->i_rcu, shmem_destroy_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802}
3803
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003804static void shmem_init_inode(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003806 struct shmem_inode_info *info = foo;
3807 inode_init_once(&info->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808}
3809
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003810static int shmem_init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811{
3812 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
3813 sizeof(struct shmem_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -08003814 0, SLAB_PANIC|SLAB_ACCOUNT, shmem_init_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 return 0;
3816}
3817
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003818static void shmem_destroy_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07003820 kmem_cache_destroy(shmem_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821}
3822
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07003823static const struct address_space_operations shmem_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 .writepage = shmem_writepage,
Ken Chen76719322007-02-10 01:43:15 -08003825 .set_page_dirty = __set_page_dirty_no_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826#ifdef CONFIG_TMPFS
Nick Piggin800d15a2007-10-16 01:25:03 -07003827 .write_begin = shmem_write_begin,
3828 .write_end = shmem_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829#endif
Andrew Morton1c939232014-10-09 15:27:59 -07003830#ifdef CONFIG_MIGRATION
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -07003831 .migratepage = migrate_page,
Andrew Morton1c939232014-10-09 15:27:59 -07003832#endif
Andi Kleenaa261f52009-09-16 11:50:16 +02003833 .error_remove_page = generic_error_remove_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834};
3835
Helge Deller15ad7cd2006-12-06 20:40:36 -08003836static const struct file_operations shmem_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 .mmap = shmem_mmap,
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07003838 .get_unmapped_area = shmem_get_unmapped_area,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839#ifdef CONFIG_TMPFS
Hugh Dickins220f2ac2012-12-12 13:52:21 -08003840 .llseek = shmem_file_llseek,
Al Viro2ba5bbe2014-04-02 20:00:02 -04003841 .read_iter = shmem_file_read_iter,
Al Viro81742022014-04-03 03:17:43 -04003842 .write_iter = generic_file_write_iter,
Christoph Hellwig1b061d92010-05-26 17:53:41 +02003843 .fsync = noop_fsync,
Al Viro82c156f2016-09-22 23:35:42 -04003844 .splice_read = generic_file_splice_read,
Al Virof6cb85d2014-04-05 04:38:56 -04003845 .splice_write = iter_file_splice_write,
Hugh Dickins83e4fa92012-05-29 15:06:40 -07003846 .fallocate = shmem_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847#endif
3848};
3849
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003850static const struct inode_operations shmem_inode_operations = {
Yu Zhao44a30222015-09-08 15:03:33 -07003851 .getattr = shmem_getattr,
Hugh Dickins94c1e622011-06-27 16:18:03 -07003852 .setattr = shmem_setattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003853#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003854 .listxattr = shmem_listxattr,
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003855 .set_acl = simple_set_acl,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003856#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857};
3858
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003859static const struct inode_operations shmem_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860#ifdef CONFIG_TMPFS
3861 .create = shmem_create,
3862 .lookup = simple_lookup,
3863 .link = shmem_link,
3864 .unlink = shmem_unlink,
3865 .symlink = shmem_symlink,
3866 .mkdir = shmem_mkdir,
3867 .rmdir = shmem_rmdir,
3868 .mknod = shmem_mknod,
Miklos Szeredi2773bf02016-09-27 11:03:58 +02003869 .rename = shmem_rename2,
Al Viro60545d02013-06-07 01:20:27 -04003870 .tmpfile = shmem_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871#endif
Eric Parisb09e0fa2011-05-24 17:12:39 -07003872#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003873 .listxattr = shmem_listxattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003874#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003875#ifdef CONFIG_TMPFS_POSIX_ACL
Hugh Dickins94c1e622011-06-27 16:18:03 -07003876 .setattr = shmem_setattr,
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003877 .set_acl = simple_set_acl,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003878#endif
3879};
3880
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003881static const struct inode_operations shmem_special_inode_operations = {
Eric Parisb09e0fa2011-05-24 17:12:39 -07003882#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003883 .listxattr = shmem_listxattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003884#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003885#ifdef CONFIG_TMPFS_POSIX_ACL
Hugh Dickins94c1e622011-06-27 16:18:03 -07003886 .setattr = shmem_setattr,
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003887 .set_acl = simple_set_acl,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003888#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889};
3890
Hugh Dickins759b9772007-03-05 00:30:28 -08003891static const struct super_operations shmem_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 .alloc_inode = shmem_alloc_inode,
3893 .destroy_inode = shmem_destroy_inode,
3894#ifdef CONFIG_TMPFS
3895 .statfs = shmem_statfs,
3896 .remount_fs = shmem_remount_fs,
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003897 .show_options = shmem_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898#endif
Al Viro1f895f72010-06-05 19:10:41 -04003899 .evict_inode = shmem_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 .drop_inode = generic_delete_inode,
3901 .put_super = shmem_put_super,
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07003902#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
3903 .nr_cached_objects = shmem_unused_huge_count,
3904 .free_cached_objects = shmem_unused_huge_scan,
3905#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906};
3907
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04003908static const struct vm_operations_struct shmem_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07003909 .fault = shmem_fault,
Ning Qud7c17552014-04-07 15:37:24 -07003910 .map_pages = filemap_map_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911#ifdef CONFIG_NUMA
3912 .set_policy = shmem_set_policy,
3913 .get_policy = shmem_get_policy,
3914#endif
3915};
3916
Al Viro3c26ff62010-07-25 11:46:36 +04003917static struct dentry *shmem_mount(struct file_system_type *fs_type,
3918 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919{
Al Viro3c26ff62010-07-25 11:46:36 +04003920 return mount_nodev(fs_type, flags, data, shmem_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921}
3922
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003923static struct file_system_type shmem_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 .owner = THIS_MODULE,
3925 .name = "tmpfs",
Al Viro3c26ff62010-07-25 11:46:36 +04003926 .mount = shmem_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 .kill_sb = kill_litter_super,
Eric W. Biederman2b8576c2013-01-25 16:32:10 -08003928 .fs_flags = FS_USERNS_MOUNT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003931int __init shmem_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932{
3933 int error;
3934
Rob Landley16203a72013-09-11 14:26:12 -07003935 /* If rootfs called this, don't re-init */
3936 if (shmem_inode_cachep)
3937 return 0;
3938
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003939 error = shmem_init_inodecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 if (error)
3941 goto out3;
3942
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003943 error = register_filesystem(&shmem_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 if (error) {
Joe Perches11705322016-03-17 14:19:50 -07003945 pr_err("Could not register tmpfs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 goto out2;
3947 }
Greg Kroah-Hartman95dc1122005-06-20 21:15:16 -07003948
Al Viroca4e0512013-08-31 12:57:10 -04003949 shm_mnt = kern_mount(&shmem_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 if (IS_ERR(shm_mnt)) {
3951 error = PTR_ERR(shm_mnt);
Joe Perches11705322016-03-17 14:19:50 -07003952 pr_err("Could not kern_mount tmpfs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 goto out1;
3954 }
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003955
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07003956#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003957 if (has_transparent_hugepage() && shmem_huge < SHMEM_HUGE_DENY)
3958 SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge;
3959 else
3960 shmem_huge = 0; /* just in case it was patched */
3961#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 return 0;
3963
3964out1:
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003965 unregister_filesystem(&shmem_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966out2:
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003967 shmem_destroy_inodecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968out3:
3969 shm_mnt = ERR_PTR(error);
3970 return error;
3971}
Matt Mackall853ac432009-01-06 14:40:20 -08003972
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07003973#if defined(CONFIG_TRANSPARENT_HUGE_PAGECACHE) && defined(CONFIG_SYSFS)
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003974static ssize_t shmem_enabled_show(struct kobject *kobj,
3975 struct kobj_attribute *attr, char *buf)
3976{
3977 int values[] = {
3978 SHMEM_HUGE_ALWAYS,
3979 SHMEM_HUGE_WITHIN_SIZE,
3980 SHMEM_HUGE_ADVISE,
3981 SHMEM_HUGE_NEVER,
3982 SHMEM_HUGE_DENY,
3983 SHMEM_HUGE_FORCE,
3984 };
3985 int i, count;
3986
3987 for (i = 0, count = 0; i < ARRAY_SIZE(values); i++) {
3988 const char *fmt = shmem_huge == values[i] ? "[%s] " : "%s ";
3989
3990 count += sprintf(buf + count, fmt,
3991 shmem_format_huge(values[i]));
3992 }
3993 buf[count - 1] = '\n';
3994 return count;
3995}
3996
3997static ssize_t shmem_enabled_store(struct kobject *kobj,
3998 struct kobj_attribute *attr, const char *buf, size_t count)
3999{
4000 char tmp[16];
4001 int huge;
4002
4003 if (count + 1 > sizeof(tmp))
4004 return -EINVAL;
4005 memcpy(tmp, buf, count);
4006 tmp[count] = '\0';
4007 if (count && tmp[count - 1] == '\n')
4008 tmp[count - 1] = '\0';
4009
4010 huge = shmem_parse_huge(tmp);
4011 if (huge == -EINVAL)
4012 return -EINVAL;
4013 if (!has_transparent_hugepage() &&
4014 huge != SHMEM_HUGE_NEVER && huge != SHMEM_HUGE_DENY)
4015 return -EINVAL;
4016
4017 shmem_huge = huge;
4018 if (shmem_huge < SHMEM_HUGE_DENY)
4019 SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge;
4020 return count;
4021}
4022
4023struct kobj_attribute shmem_enabled_attr =
4024 __ATTR(shmem_enabled, 0644, shmem_enabled_show, shmem_enabled_store);
Arnd Bergmann3b337192016-08-10 16:27:44 -07004025#endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE && CONFIG_SYSFS */
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07004026
Arnd Bergmann3b337192016-08-10 16:27:44 -07004027#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07004028bool shmem_huge_enabled(struct vm_area_struct *vma)
4029{
4030 struct inode *inode = file_inode(vma->vm_file);
4031 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
4032 loff_t i_size;
4033 pgoff_t off;
4034
4035 if (shmem_huge == SHMEM_HUGE_FORCE)
4036 return true;
4037 if (shmem_huge == SHMEM_HUGE_DENY)
4038 return false;
4039 switch (sbinfo->huge) {
4040 case SHMEM_HUGE_NEVER:
4041 return false;
4042 case SHMEM_HUGE_ALWAYS:
4043 return true;
4044 case SHMEM_HUGE_WITHIN_SIZE:
4045 off = round_up(vma->vm_pgoff, HPAGE_PMD_NR);
4046 i_size = round_up(i_size_read(inode), PAGE_SIZE);
4047 if (i_size >= HPAGE_PMD_SIZE &&
4048 i_size >> PAGE_SHIFT >= off)
4049 return true;
4050 case SHMEM_HUGE_ADVISE:
4051 /* TODO: implement fadvise() hints */
4052 return (vma->vm_flags & VM_HUGEPAGE);
4053 default:
4054 VM_BUG_ON(1);
4055 return false;
4056 }
4057}
Arnd Bergmann3b337192016-08-10 16:27:44 -07004058#endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE */
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07004059
Matt Mackall853ac432009-01-06 14:40:20 -08004060#else /* !CONFIG_SHMEM */
4061
4062/*
4063 * tiny-shmem: simple shmemfs and tmpfs using ramfs code
4064 *
4065 * This is intended for small system where the benefits of the full
4066 * shmem code (swap-backed and resource-limited) are outweighed by
4067 * their complexity. On systems without swap this code should be
4068 * effectively equivalent, but much lighter weight.
4069 */
4070
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07004071static struct file_system_type shmem_fs_type = {
Matt Mackall853ac432009-01-06 14:40:20 -08004072 .name = "tmpfs",
Al Viro3c26ff62010-07-25 11:46:36 +04004073 .mount = ramfs_mount,
Matt Mackall853ac432009-01-06 14:40:20 -08004074 .kill_sb = kill_litter_super,
Eric W. Biederman2b8576c2013-01-25 16:32:10 -08004075 .fs_flags = FS_USERNS_MOUNT,
Matt Mackall853ac432009-01-06 14:40:20 -08004076};
4077
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07004078int __init shmem_init(void)
Matt Mackall853ac432009-01-06 14:40:20 -08004079{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07004080 BUG_ON(register_filesystem(&shmem_fs_type) != 0);
Matt Mackall853ac432009-01-06 14:40:20 -08004081
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07004082 shm_mnt = kern_mount(&shmem_fs_type);
Matt Mackall853ac432009-01-06 14:40:20 -08004083 BUG_ON(IS_ERR(shm_mnt));
4084
4085 return 0;
4086}
4087
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07004088int shmem_unuse(swp_entry_t swap, struct page *page)
Matt Mackall853ac432009-01-06 14:40:20 -08004089{
4090 return 0;
4091}
4092
Hugh Dickins3f96b792009-09-21 17:03:37 -07004093int shmem_lock(struct file *file, int lock, struct user_struct *user)
4094{
4095 return 0;
4096}
4097
Hugh Dickins24513262012-01-20 14:34:21 -08004098void shmem_unlock_mapping(struct address_space *mapping)
4099{
4100}
4101
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07004102#ifdef CONFIG_MMU
4103unsigned long shmem_get_unmapped_area(struct file *file,
4104 unsigned long addr, unsigned long len,
4105 unsigned long pgoff, unsigned long flags)
4106{
4107 return current->mm->get_unmapped_area(file, addr, len, pgoff, flags);
4108}
4109#endif
4110
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07004111void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
Hugh Dickins94c1e622011-06-27 16:18:03 -07004112{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07004113 truncate_inode_pages_range(inode->i_mapping, lstart, lend);
Hugh Dickins94c1e622011-06-27 16:18:03 -07004114}
4115EXPORT_SYMBOL_GPL(shmem_truncate_range);
4116
Hugh Dickins0b0a0802009-02-24 20:51:52 +00004117#define shmem_vm_ops generic_file_vm_ops
4118#define shmem_file_operations ramfs_file_operations
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03004119#define shmem_get_inode(sb, dir, mode, dev, flags) ramfs_get_inode(sb, dir, mode, dev)
Hugh Dickins0b0a0802009-02-24 20:51:52 +00004120#define shmem_acct_size(flags, size) 0
4121#define shmem_unacct_size(flags, size) do {} while (0)
Matt Mackall853ac432009-01-06 14:40:20 -08004122
4123#endif /* CONFIG_SHMEM */
4124
4125/* common code */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
Rasmus Villemoes19938e32016-10-07 17:01:01 -07004127static const struct dentry_operations anon_ops = {
Al Viro118b2302013-08-24 12:08:17 -04004128 .d_dname = simple_dname
Al Viro34515382013-02-14 22:38:02 -05004129};
4130
Eric Parisc7277092013-12-02 11:24:19 +00004131static struct file *__shmem_file_setup(const char *name, loff_t size,
4132 unsigned long flags, unsigned int i_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133{
Al Viro6b4d0b22013-02-14 21:37:26 -05004134 struct file *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 struct inode *inode;
Al Viro2c48b9c2009-08-09 00:52:35 +04004136 struct path path;
Al Viro34515382013-02-14 22:38:02 -05004137 struct super_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 struct qstr this;
4139
4140 if (IS_ERR(shm_mnt))
Al Viro6b4d0b22013-02-14 21:37:26 -05004141 return ERR_CAST(shm_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142
Hugh Dickins285b2c42011-08-03 16:21:20 -07004143 if (size < 0 || size > MAX_LFS_FILESIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 return ERR_PTR(-EINVAL);
4145
4146 if (shmem_acct_size(flags, size))
4147 return ERR_PTR(-ENOMEM);
4148
Al Viro6b4d0b22013-02-14 21:37:26 -05004149 res = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 this.name = name;
4151 this.len = strlen(name);
4152 this.hash = 0; /* will go */
Al Viro34515382013-02-14 22:38:02 -05004153 sb = shm_mnt->mnt_sb;
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07004154 path.mnt = mntget(shm_mnt);
Al Viro34515382013-02-14 22:38:02 -05004155 path.dentry = d_alloc_pseudo(sb, &this);
Al Viro2c48b9c2009-08-09 00:52:35 +04004156 if (!path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157 goto put_memory;
Al Viro34515382013-02-14 22:38:02 -05004158 d_set_d_op(path.dentry, &anon_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159
Al Viro6b4d0b22013-02-14 21:37:26 -05004160 res = ERR_PTR(-ENOSPC);
Al Viro34515382013-02-14 22:38:02 -05004161 inode = shmem_get_inode(sb, NULL, S_IFREG | S_IRWXUGO, 0, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 if (!inode)
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07004163 goto put_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164
Eric Parisc7277092013-12-02 11:24:19 +00004165 inode->i_flags |= i_flags;
Al Viro2c48b9c2009-08-09 00:52:35 +04004166 d_instantiate(path.dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 inode->i_size = size;
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02004168 clear_nlink(inode); /* It is unlinked */
Al Viro26567cd2013-03-01 20:22:53 -05004169 res = ERR_PTR(ramfs_nommu_expand_for_mapping(inode, size));
4170 if (IS_ERR(res))
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07004171 goto put_path;
Al Viro4b42af82009-08-05 18:25:56 +04004172
Al Viro6b4d0b22013-02-14 21:37:26 -05004173 res = alloc_file(&path, FMODE_WRITE | FMODE_READ,
Al Viro4b42af82009-08-05 18:25:56 +04004174 &shmem_file_operations);
Al Viro6b4d0b22013-02-14 21:37:26 -05004175 if (IS_ERR(res))
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07004176 goto put_path;
Al Viro4b42af82009-08-05 18:25:56 +04004177
Al Viro6b4d0b22013-02-14 21:37:26 -05004178 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180put_memory:
4181 shmem_unacct_size(flags, size);
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07004182put_path:
4183 path_put(&path);
Al Viro6b4d0b22013-02-14 21:37:26 -05004184 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185}
Eric Parisc7277092013-12-02 11:24:19 +00004186
4187/**
4188 * shmem_kernel_file_setup - get an unlinked file living in tmpfs which must be
4189 * kernel internal. There will be NO LSM permission checks against the
4190 * underlying inode. So users of this interface must do LSM checks at a
Stephen Smalleye1832f22015-08-06 15:46:55 -07004191 * higher layer. The users are the big_key and shm implementations. LSM
4192 * checks are provided at the key or shm level rather than the inode.
Eric Parisc7277092013-12-02 11:24:19 +00004193 * @name: name for dentry (to be seen in /proc/<pid>/maps
4194 * @size: size to be set for the file
4195 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
4196 */
4197struct file *shmem_kernel_file_setup(const char *name, loff_t size, unsigned long flags)
4198{
4199 return __shmem_file_setup(name, size, flags, S_PRIVATE);
4200}
4201
4202/**
4203 * shmem_file_setup - get an unlinked file living in tmpfs
4204 * @name: name for dentry (to be seen in /proc/<pid>/maps
4205 * @size: size to be set for the file
4206 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
4207 */
4208struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags)
4209{
4210 return __shmem_file_setup(name, size, flags, 0);
4211}
Keith Packard395e0dd2008-06-20 00:08:06 -07004212EXPORT_SYMBOL_GPL(shmem_file_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213
Randy Dunlap46711812008-03-19 17:00:41 -07004214/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 * shmem_zero_setup - setup a shared anonymous mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
4217 */
4218int shmem_zero_setup(struct vm_area_struct *vma)
4219{
4220 struct file *file;
4221 loff_t size = vma->vm_end - vma->vm_start;
4222
Hugh Dickins66fc1302015-06-14 09:48:09 -07004223 /*
4224 * Cloning a new file under mmap_sem leads to a lock ordering conflict
4225 * between XFS directory reading and selinux: since this file is only
4226 * accessible to the user through its mapping, use S_PRIVATE flag to
4227 * bypass file security, in the same way as shmem_kernel_file_setup().
4228 */
4229 file = __shmem_file_setup("dev/zero", size, vma->vm_flags, S_PRIVATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 if (IS_ERR(file))
4231 return PTR_ERR(file);
4232
4233 if (vma->vm_file)
4234 fput(vma->vm_file);
4235 vma->vm_file = file;
4236 vma->vm_ops = &shmem_vm_ops;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07004237
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07004238 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE) &&
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07004239 ((vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK) <
4240 (vma->vm_end & HPAGE_PMD_MASK)) {
4241 khugepaged_enter(vma, vma->vm_flags);
4242 }
4243
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 return 0;
4245}
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07004246
4247/**
4248 * shmem_read_mapping_page_gfp - read into page cache, using specified page allocation flags.
4249 * @mapping: the page's address_space
4250 * @index: the page index
4251 * @gfp: the page allocator flags to use if allocating
4252 *
4253 * This behaves as a tmpfs "read_cache_page_gfp(mapping, index, gfp)",
4254 * with any new page allocations done using the specified allocation flags.
4255 * But read_cache_page_gfp() uses the ->readpage() method: which does not
4256 * suit tmpfs, since it may have pages in swapcache, and needs to find those
4257 * for itself; although drivers/gpu/drm i915 and ttm rely upon this support.
4258 *
Hugh Dickins68da9f02011-07-25 17:12:34 -07004259 * i915_gem_object_get_pages_gtt() mixes __GFP_NORETRY | __GFP_NOWARN in
4260 * with the mapping_gfp_mask(), to avoid OOMing the machine unnecessarily.
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07004261 */
4262struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
4263 pgoff_t index, gfp_t gfp)
4264{
Hugh Dickins68da9f02011-07-25 17:12:34 -07004265#ifdef CONFIG_SHMEM
4266 struct inode *inode = mapping->host;
Hugh Dickins9276aad2011-07-25 17:12:34 -07004267 struct page *page;
Hugh Dickins68da9f02011-07-25 17:12:34 -07004268 int error;
4269
4270 BUG_ON(mapping->a_ops != &shmem_aops);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07004271 error = shmem_getpage_gfp(inode, index, &page, SGP_CACHE,
Mike Rapoportcfda0522017-02-22 15:43:37 -08004272 gfp, NULL, NULL, NULL);
Hugh Dickins68da9f02011-07-25 17:12:34 -07004273 if (error)
4274 page = ERR_PTR(error);
4275 else
4276 unlock_page(page);
4277 return page;
4278#else
4279 /*
4280 * The tiny !SHMEM case uses ramfs without swap
4281 */
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07004282 return read_cache_page_gfp(mapping, index, gfp);
Hugh Dickins68da9f02011-07-25 17:12:34 -07004283#endif
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07004284}
4285EXPORT_SYMBOL_GPL(shmem_read_mapping_page_gfp);