blob: b7d84c4f2a5cb7d5035a43858a482e042a172cff [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>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010032#include <linux/sched/signal.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040033#include <linux/export.h>
Matt Mackall853ac432009-01-06 14:40:20 -080034#include <linux/swap.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080035#include <linux/uio.h>
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -070036#include <linux/khugepaged.h>
Matt Mackall853ac432009-01-06 14:40:20 -080037
Andrea Arcangeli95cc09d2017-02-22 15:43:31 -080038#include <asm/tlbflush.h> /* for arch/microblaze update_mmu_cache() */
39
Matt Mackall853ac432009-01-06 14:40:20 -080040static struct vfsmount *shm_mnt;
41
42#ifdef CONFIG_SHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/*
44 * This virtual memory filesystem is heavily based on the ramfs. It
45 * extends ramfs by the ability to use swap and honor resource limits
46 * which makes it a completely usable filesystem.
47 */
48
Andreas Gruenbacher39f02472006-09-29 02:01:35 -070049#include <linux/xattr.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070050#include <linux/exportfs.h>
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010051#include <linux/posix_acl.h>
Christoph Hellwigfeda8212013-12-20 05:16:54 -080052#include <linux/posix_acl_xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <linux/string.h>
55#include <linux/slab.h>
56#include <linux/backing-dev.h>
57#include <linux/shmem_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/blkdev.h>
Hugh Dickinsbda97ea2011-08-03 16:21:21 -070060#include <linux/pagevec.h>
Hugh Dickins41ffe5d2011-08-03 16:21:21 -070061#include <linux/percpu_counter.h>
Hugh Dickins83e4fa92012-05-29 15:06:40 -070062#include <linux/falloc.h>
Hugh Dickins708e3502011-07-25 17:12:32 -070063#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/security.h>
65#include <linux/swapops.h>
66#include <linux/mempolicy.h>
67#include <linux/namei.h>
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +000068#include <linux/ctype.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070069#include <linux/migrate.h>
Christoph Lameterc1f60a52006-09-25 23:31:11 -070070#include <linux/highmem.h>
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -080071#include <linux/seq_file.h>
Mimi Zohar92562922008-10-07 14:00:12 -040072#include <linux/magic.h>
David Herrmann9183df22014-08-08 14:25:29 -070073#include <linux/syscalls.h>
David Herrmann40e041a2014-08-08 14:25:27 -070074#include <linux/fcntl.h>
David Herrmann9183df22014-08-08 14:25:29 -070075#include <uapi/linux/memfd.h>
Mike Rapoportcfda0522017-02-22 15:43:37 -080076#include <linux/userfaultfd_k.h>
Mike Rapoport4c27fe42017-02-22 15:43:25 -080077#include <linux/rmap.h>
Amir Goldstein2b4db792017-05-18 15:29:33 +030078#include <linux/uuid.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070079
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080080#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <asm/pgtable.h>
82
Mel Gormandd56b042015-11-06 16:28:43 -080083#include "internal.h"
84
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030085#define BLOCKS_PER_PAGE (PAGE_SIZE/512)
86#define VM_ACCT(size) (PAGE_ALIGN(size) >> PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088/* Pretend that each entry is of this size in directory's i_size */
89#define BOGO_DIRENT_SIZE 20
90
Hugh Dickins69f07ec2011-08-03 16:21:26 -070091/* Symlink up to this size is kmalloc'ed instead of using a swappable page */
92#define SHORT_SYMLINK_LEN 128
93
Hugh Dickins1aac1402012-05-29 15:06:42 -070094/*
Hugh Dickinsf00cdc62014-06-23 13:22:06 -070095 * shmem_fallocate communicates with shmem_fault or shmem_writepage via
96 * inode->i_private (with i_mutex making sure that it has only one user at
97 * a time): we would prefer not to enlarge the shmem inode just for that.
Hugh Dickins1aac1402012-05-29 15:06:42 -070098 */
99struct shmem_falloc {
Hugh Dickins8e205f72014-07-23 14:00:10 -0700100 wait_queue_head_t *waitq; /* faults into hole wait for punch to end */
Hugh Dickins1aac1402012-05-29 15:06:42 -0700101 pgoff_t start; /* start of range currently being fallocated */
102 pgoff_t next; /* the next page offset to be fallocated */
103 pgoff_t nr_falloced; /* how many new pages have been fallocated */
104 pgoff_t nr_unswapped; /* how often writepage refused to swap out */
105};
106
Andrew Mortonb76db732008-02-08 04:21:49 -0800107#ifdef CONFIG_TMPFS
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800108static unsigned long shmem_default_max_blocks(void)
109{
110 return totalram_pages / 2;
111}
112
113static unsigned long shmem_default_max_inodes(void)
114{
115 return min(totalram_pages - totalhigh_pages, totalram_pages / 2);
116}
Andrew Mortonb76db732008-02-08 04:21:49 -0800117#endif
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800118
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700119static bool shmem_should_replace_page(struct page *page, gfp_t gfp);
120static int shmem_replace_page(struct page **pagep, gfp_t gfp,
121 struct shmem_inode_info *info, pgoff_t index);
Hugh Dickins68da9f02011-07-25 17:12:34 -0700122static int shmem_getpage_gfp(struct inode *inode, pgoff_t index,
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700123 struct page **pagep, enum sgp_type sgp,
Mike Rapoportcfda0522017-02-22 15:43:37 -0800124 gfp_t gfp, struct vm_area_struct *vma,
125 struct vm_fault *vmf, int *fault_type);
Hugh Dickins68da9f02011-07-25 17:12:34 -0700126
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -0700127int shmem_getpage(struct inode *inode, pgoff_t index,
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700128 struct page **pagep, enum sgp_type sgp)
Hugh Dickins68da9f02011-07-25 17:12:34 -0700129{
130 return shmem_getpage_gfp(inode, index, pagep, sgp,
Mike Rapoportcfda0522017-02-22 15:43:37 -0800131 mapping_gfp_mask(inode->i_mapping), NULL, NULL, NULL);
Hugh Dickins68da9f02011-07-25 17:12:34 -0700132}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
135{
136 return sb->s_fs_info;
137}
138
139/*
140 * shmem_file_setup pre-accounts the whole fixed size of a VM object,
141 * for shared memory and for shared anonymous (/dev/zero) mappings
142 * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
143 * consistent with the pre-accounting of private mappings ...
144 */
145static inline int shmem_acct_size(unsigned long flags, loff_t size)
146{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000147 return (flags & VM_NORESERVE) ?
Al Viro191c5422012-02-13 03:58:52 +0000148 0 : security_vm_enough_memory_mm(current->mm, VM_ACCT(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
151static inline void shmem_unacct_size(unsigned long flags, loff_t size)
152{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000153 if (!(flags & VM_NORESERVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 vm_unacct_memory(VM_ACCT(size));
155}
156
Konstantin Khlebnikov77142512014-08-06 16:06:34 -0700157static inline int shmem_reacct_size(unsigned long flags,
158 loff_t oldsize, loff_t newsize)
159{
160 if (!(flags & VM_NORESERVE)) {
161 if (VM_ACCT(newsize) > VM_ACCT(oldsize))
162 return security_vm_enough_memory_mm(current->mm,
163 VM_ACCT(newsize) - VM_ACCT(oldsize));
164 else if (VM_ACCT(newsize) < VM_ACCT(oldsize))
165 vm_unacct_memory(VM_ACCT(oldsize) - VM_ACCT(newsize));
166 }
167 return 0;
168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/*
171 * ... whereas tmpfs objects are accounted incrementally as
Hugh Dickins75edd342016-05-19 17:12:44 -0700172 * pages are allocated, in order to allow large sparse files.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 * shmem_getpage reports shmem_acct_block failure as -ENOSPC not -ENOMEM,
174 * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
175 */
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700176static inline int shmem_acct_block(unsigned long flags, long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700178 if (!(flags & VM_NORESERVE))
179 return 0;
180
181 return security_vm_enough_memory_mm(current->mm,
182 pages * VM_ACCT(PAGE_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
185static inline void shmem_unacct_blocks(unsigned long flags, long pages)
186{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000187 if (flags & VM_NORESERVE)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300188 vm_unacct_memory(pages * VM_ACCT(PAGE_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
Mike Rapoport0f079692017-09-06 16:22:59 -0700191static inline bool shmem_inode_acct_block(struct inode *inode, long pages)
192{
193 struct shmem_inode_info *info = SHMEM_I(inode);
194 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
195
196 if (shmem_acct_block(info->flags, pages))
197 return false;
198
199 if (sbinfo->max_blocks) {
200 if (percpu_counter_compare(&sbinfo->used_blocks,
201 sbinfo->max_blocks - pages) > 0)
202 goto unacct;
203 percpu_counter_add(&sbinfo->used_blocks, pages);
204 }
205
206 return true;
207
208unacct:
209 shmem_unacct_blocks(info->flags, pages);
210 return false;
211}
212
213static inline void shmem_inode_unacct_blocks(struct inode *inode, long pages)
214{
215 struct shmem_inode_info *info = SHMEM_I(inode);
216 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
217
218 if (sbinfo->max_blocks)
219 percpu_counter_sub(&sbinfo->used_blocks, pages);
220 shmem_unacct_blocks(info->flags, pages);
221}
222
Hugh Dickins759b9772007-03-05 00:30:28 -0800223static const struct super_operations shmem_ops;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700224static const struct address_space_operations shmem_aops;
Helge Deller15ad7cd2006-12-06 20:40:36 -0800225static const struct file_operations shmem_file_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800226static const struct inode_operations shmem_inode_operations;
227static const struct inode_operations shmem_dir_inode_operations;
228static const struct inode_operations shmem_special_inode_operations;
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +0400229static const struct vm_operations_struct shmem_vm_ops;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700230static struct file_system_type shmem_fs_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Mike Rapoportb0506e42017-02-22 15:43:28 -0800232bool vma_is_shmem(struct vm_area_struct *vma)
233{
234 return vma->vm_ops == &shmem_vm_ops;
235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237static LIST_HEAD(shmem_swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800238static DEFINE_MUTEX(shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Pavel Emelyanov5b04c682008-02-04 22:28:47 -0800240static int shmem_reserve_inode(struct super_block *sb)
241{
242 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
243 if (sbinfo->max_inodes) {
244 spin_lock(&sbinfo->stat_lock);
245 if (!sbinfo->free_inodes) {
246 spin_unlock(&sbinfo->stat_lock);
247 return -ENOSPC;
248 }
249 sbinfo->free_inodes--;
250 spin_unlock(&sbinfo->stat_lock);
251 }
252 return 0;
253}
254
255static void shmem_free_inode(struct super_block *sb)
256{
257 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
258 if (sbinfo->max_inodes) {
259 spin_lock(&sbinfo->stat_lock);
260 sbinfo->free_inodes++;
261 spin_unlock(&sbinfo->stat_lock);
262 }
263}
264
Randy Dunlap46711812008-03-19 17:00:41 -0700265/**
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700266 * shmem_recalc_inode - recalculate the block usage of an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 * @inode: inode to recalc
268 *
269 * We have to calculate the free blocks since the mm can drop
270 * undirtied hole pages behind our back.
271 *
272 * But normally info->alloced == inode->i_mapping->nrpages + info->swapped
273 * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
274 *
275 * It has to be called with the spinlock held.
276 */
277static void shmem_recalc_inode(struct inode *inode)
278{
279 struct shmem_inode_info *info = SHMEM_I(inode);
280 long freed;
281
282 freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
283 if (freed > 0) {
284 info->alloced -= freed;
Hugh Dickins54af60422011-08-03 16:21:24 -0700285 inode->i_blocks -= freed * BLOCKS_PER_PAGE;
Mike Rapoport0f079692017-09-06 16:22:59 -0700286 shmem_inode_unacct_blocks(inode, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288}
289
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700290bool shmem_charge(struct inode *inode, long pages)
291{
292 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700293 unsigned long flags;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700294
Mike Rapoport0f079692017-09-06 16:22:59 -0700295 if (!shmem_inode_acct_block(inode, pages))
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700296 return false;
Mike Rapoportb1cc94a2017-09-06 16:22:56 -0700297
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700298 spin_lock_irqsave(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700299 info->alloced += pages;
300 inode->i_blocks += pages * BLOCKS_PER_PAGE;
301 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700302 spin_unlock_irqrestore(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700303 inode->i_mapping->nrpages += pages;
304
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700305 return true;
306}
307
308void shmem_uncharge(struct inode *inode, long pages)
309{
310 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700311 unsigned long flags;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700312
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700313 spin_lock_irqsave(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700314 info->alloced -= pages;
315 inode->i_blocks -= pages * BLOCKS_PER_PAGE;
316 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700317 spin_unlock_irqrestore(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700318
Mike Rapoport0f079692017-09-06 16:22:59 -0700319 shmem_inode_unacct_blocks(inode, pages);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700320}
321
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700322/*
323 * Replace item expected in radix tree by a new item, while holding tree lock.
324 */
325static int shmem_radix_tree_replace(struct address_space *mapping,
326 pgoff_t index, void *expected, void *replacement)
327{
Johannes Weinerf7942432016-12-12 16:43:41 -0800328 struct radix_tree_node *node;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700329 void **pslot;
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700330 void *item;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700331
332 VM_BUG_ON(!expected);
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700333 VM_BUG_ON(!replacement);
Johannes Weinerf7942432016-12-12 16:43:41 -0800334 item = __radix_tree_lookup(&mapping->page_tree, index, &node, &pslot);
335 if (!item)
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700336 return -ENOENT;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700337 if (item != expected)
338 return -ENOENT;
Johannes Weiner4d693d02016-12-12 16:43:49 -0800339 __radix_tree_replace(&mapping->page_tree, node, pslot,
340 replacement, NULL, NULL);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700341 return 0;
342}
343
344/*
Hugh Dickinsd1899222012-07-11 14:02:47 -0700345 * Sometimes, before we decide whether to proceed or to fail, we must check
346 * that an entry was not already brought back from swap by a racing thread.
347 *
348 * Checking page is not enough: by the time a SwapCache page is locked, it
349 * might be reused, and again be SwapCache, using the same swap as before.
350 */
351static bool shmem_confirm_swap(struct address_space *mapping,
352 pgoff_t index, swp_entry_t swap)
353{
354 void *item;
355
356 rcu_read_lock();
357 item = radix_tree_lookup(&mapping->page_tree, index);
358 rcu_read_unlock();
359 return item == swp_to_radix_entry(swap);
360}
361
362/*
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700363 * Definitions for "huge tmpfs": tmpfs mounted with the huge= option
364 *
365 * SHMEM_HUGE_NEVER:
366 * disables huge pages for the mount;
367 * SHMEM_HUGE_ALWAYS:
368 * enables huge pages for the mount;
369 * SHMEM_HUGE_WITHIN_SIZE:
370 * only allocate huge pages if the page will be fully within i_size,
371 * also respect fadvise()/madvise() hints;
372 * SHMEM_HUGE_ADVISE:
373 * only allocate huge pages if requested with fadvise()/madvise();
374 */
375
376#define SHMEM_HUGE_NEVER 0
377#define SHMEM_HUGE_ALWAYS 1
378#define SHMEM_HUGE_WITHIN_SIZE 2
379#define SHMEM_HUGE_ADVISE 3
380
381/*
382 * Special values.
383 * Only can be set via /sys/kernel/mm/transparent_hugepage/shmem_enabled:
384 *
385 * SHMEM_HUGE_DENY:
386 * disables huge on shm_mnt and all mounts, for emergency use;
387 * SHMEM_HUGE_FORCE:
388 * enables huge on shm_mnt and all mounts, w/o needing option, for testing;
389 *
390 */
391#define SHMEM_HUGE_DENY (-1)
392#define SHMEM_HUGE_FORCE (-2)
393
Kirill A. Shutemove496cf32016-07-26 15:26:35 -0700394#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700395/* ifdef here to avoid bloating shmem.o when not necessary */
396
397int shmem_huge __read_mostly;
398
Jérémy Lefauref1f59292016-12-12 16:43:23 -0800399#if defined(CONFIG_SYSFS) || defined(CONFIG_TMPFS)
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700400static int shmem_parse_huge(const char *str)
401{
402 if (!strcmp(str, "never"))
403 return SHMEM_HUGE_NEVER;
404 if (!strcmp(str, "always"))
405 return SHMEM_HUGE_ALWAYS;
406 if (!strcmp(str, "within_size"))
407 return SHMEM_HUGE_WITHIN_SIZE;
408 if (!strcmp(str, "advise"))
409 return SHMEM_HUGE_ADVISE;
410 if (!strcmp(str, "deny"))
411 return SHMEM_HUGE_DENY;
412 if (!strcmp(str, "force"))
413 return SHMEM_HUGE_FORCE;
414 return -EINVAL;
415}
416
417static const char *shmem_format_huge(int huge)
418{
419 switch (huge) {
420 case SHMEM_HUGE_NEVER:
421 return "never";
422 case SHMEM_HUGE_ALWAYS:
423 return "always";
424 case SHMEM_HUGE_WITHIN_SIZE:
425 return "within_size";
426 case SHMEM_HUGE_ADVISE:
427 return "advise";
428 case SHMEM_HUGE_DENY:
429 return "deny";
430 case SHMEM_HUGE_FORCE:
431 return "force";
432 default:
433 VM_BUG_ON(1);
434 return "bad_val";
435 }
436}
Jérémy Lefauref1f59292016-12-12 16:43:23 -0800437#endif
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700438
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700439static unsigned long shmem_unused_huge_shrink(struct shmem_sb_info *sbinfo,
440 struct shrink_control *sc, unsigned long nr_to_split)
441{
442 LIST_HEAD(list), *pos, *next;
Kirill A. Shutemov253fd0f2017-02-03 13:13:15 -0800443 LIST_HEAD(to_remove);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700444 struct inode *inode;
445 struct shmem_inode_info *info;
446 struct page *page;
447 unsigned long batch = sc ? sc->nr_to_scan : 128;
448 int removed = 0, split = 0;
449
450 if (list_empty(&sbinfo->shrinklist))
451 return SHRINK_STOP;
452
453 spin_lock(&sbinfo->shrinklist_lock);
454 list_for_each_safe(pos, next, &sbinfo->shrinklist) {
455 info = list_entry(pos, struct shmem_inode_info, shrinklist);
456
457 /* pin the inode */
458 inode = igrab(&info->vfs_inode);
459
460 /* inode is about to be evicted */
461 if (!inode) {
462 list_del_init(&info->shrinklist);
463 removed++;
464 goto next;
465 }
466
467 /* Check if there's anything to gain */
468 if (round_up(inode->i_size, PAGE_SIZE) ==
469 round_up(inode->i_size, HPAGE_PMD_SIZE)) {
Kirill A. Shutemov253fd0f2017-02-03 13:13:15 -0800470 list_move(&info->shrinklist, &to_remove);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700471 removed++;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700472 goto next;
473 }
474
475 list_move(&info->shrinklist, &list);
476next:
477 if (!--batch)
478 break;
479 }
480 spin_unlock(&sbinfo->shrinklist_lock);
481
Kirill A. Shutemov253fd0f2017-02-03 13:13:15 -0800482 list_for_each_safe(pos, next, &to_remove) {
483 info = list_entry(pos, struct shmem_inode_info, shrinklist);
484 inode = &info->vfs_inode;
485 list_del_init(&info->shrinklist);
486 iput(inode);
487 }
488
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700489 list_for_each_safe(pos, next, &list) {
490 int ret;
491
492 info = list_entry(pos, struct shmem_inode_info, shrinklist);
493 inode = &info->vfs_inode;
494
495 if (nr_to_split && split >= nr_to_split) {
496 iput(inode);
497 continue;
498 }
499
500 page = find_lock_page(inode->i_mapping,
501 (inode->i_size & HPAGE_PMD_MASK) >> PAGE_SHIFT);
502 if (!page)
503 goto drop;
504
505 if (!PageTransHuge(page)) {
506 unlock_page(page);
507 put_page(page);
508 goto drop;
509 }
510
511 ret = split_huge_page(page);
512 unlock_page(page);
513 put_page(page);
514
515 if (ret) {
516 /* split failed: leave it on the list */
517 iput(inode);
518 continue;
519 }
520
521 split++;
522drop:
523 list_del_init(&info->shrinklist);
524 removed++;
525 iput(inode);
526 }
527
528 spin_lock(&sbinfo->shrinklist_lock);
529 list_splice_tail(&list, &sbinfo->shrinklist);
530 sbinfo->shrinklist_len -= removed;
531 spin_unlock(&sbinfo->shrinklist_lock);
532
533 return split;
534}
535
536static long shmem_unused_huge_scan(struct super_block *sb,
537 struct shrink_control *sc)
538{
539 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
540
541 if (!READ_ONCE(sbinfo->shrinklist_len))
542 return SHRINK_STOP;
543
544 return shmem_unused_huge_shrink(sbinfo, sc, 0);
545}
546
547static long shmem_unused_huge_count(struct super_block *sb,
548 struct shrink_control *sc)
549{
550 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
551 return READ_ONCE(sbinfo->shrinklist_len);
552}
Kirill A. Shutemove496cf32016-07-26 15:26:35 -0700553#else /* !CONFIG_TRANSPARENT_HUGE_PAGECACHE */
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700554
555#define shmem_huge SHMEM_HUGE_DENY
556
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700557static unsigned long shmem_unused_huge_shrink(struct shmem_sb_info *sbinfo,
558 struct shrink_control *sc, unsigned long nr_to_split)
559{
560 return 0;
561}
Kirill A. Shutemove496cf32016-07-26 15:26:35 -0700562#endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE */
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700563
564/*
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700565 * Like add_to_page_cache_locked, but error if expected item has gone.
566 */
567static int shmem_add_to_page_cache(struct page *page,
568 struct address_space *mapping,
Wang Sheng-Huifed400a2014-08-06 16:07:26 -0700569 pgoff_t index, void *expected)
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700570{
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700571 int error, nr = hpage_nr_pages(page);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700572
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700573 VM_BUG_ON_PAGE(PageTail(page), page);
574 VM_BUG_ON_PAGE(index != round_down(index, nr), page);
Sasha Levin309381fea2014-01-23 15:52:54 -0800575 VM_BUG_ON_PAGE(!PageLocked(page), page);
576 VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700577 VM_BUG_ON(expected && PageTransHuge(page));
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700578
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700579 page_ref_add(page, nr);
Hugh Dickinsb065b432012-07-11 14:02:48 -0700580 page->mapping = mapping;
581 page->index = index;
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700582
Hugh Dickinsb065b432012-07-11 14:02:48 -0700583 spin_lock_irq(&mapping->tree_lock);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700584 if (PageTransHuge(page)) {
585 void __rcu **results;
586 pgoff_t idx;
587 int i;
588
589 error = 0;
590 if (radix_tree_gang_lookup_slot(&mapping->page_tree,
591 &results, &idx, index, 1) &&
592 idx < index + HPAGE_PMD_NR) {
593 error = -EEXIST;
594 }
595
596 if (!error) {
597 for (i = 0; i < HPAGE_PMD_NR; i++) {
598 error = radix_tree_insert(&mapping->page_tree,
599 index + i, page + i);
600 VM_BUG_ON(error);
601 }
602 count_vm_event(THP_FILE_ALLOC);
603 }
604 } else if (!expected) {
Hugh Dickinsb065b432012-07-11 14:02:48 -0700605 error = radix_tree_insert(&mapping->page_tree, index, page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700606 } else {
Hugh Dickinsb065b432012-07-11 14:02:48 -0700607 error = shmem_radix_tree_replace(mapping, index, expected,
608 page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700609 }
610
Hugh Dickinsb065b432012-07-11 14:02:48 -0700611 if (!error) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700612 mapping->nrpages += nr;
613 if (PageTransHuge(page))
Mel Gorman11fb9982016-07-28 15:46:20 -0700614 __inc_node_page_state(page, NR_SHMEM_THPS);
615 __mod_node_page_state(page_pgdat(page), NR_FILE_PAGES, nr);
616 __mod_node_page_state(page_pgdat(page), NR_SHMEM, nr);
Hugh Dickinsb065b432012-07-11 14:02:48 -0700617 spin_unlock_irq(&mapping->tree_lock);
618 } else {
619 page->mapping = NULL;
620 spin_unlock_irq(&mapping->tree_lock);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700621 page_ref_sub(page, nr);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700622 }
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700623 return error;
624}
625
626/*
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700627 * Like delete_from_page_cache, but substitutes swap for page.
628 */
629static void shmem_delete_from_page_cache(struct page *page, void *radswap)
630{
631 struct address_space *mapping = page->mapping;
632 int error;
633
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700634 VM_BUG_ON_PAGE(PageCompound(page), page);
635
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700636 spin_lock_irq(&mapping->tree_lock);
637 error = shmem_radix_tree_replace(mapping, page->index, page, radswap);
638 page->mapping = NULL;
639 mapping->nrpages--;
Mel Gorman11fb9982016-07-28 15:46:20 -0700640 __dec_node_page_state(page, NR_FILE_PAGES);
641 __dec_node_page_state(page, NR_SHMEM);
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700642 spin_unlock_irq(&mapping->tree_lock);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300643 put_page(page);
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700644 BUG_ON(error);
645}
646
647/*
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700648 * Remove swap entry from radix tree, free the swap and its page cache.
649 */
650static int shmem_free_swap(struct address_space *mapping,
651 pgoff_t index, void *radswap)
652{
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700653 void *old;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700654
655 spin_lock_irq(&mapping->tree_lock);
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700656 old = radix_tree_delete_item(&mapping->page_tree, index, radswap);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700657 spin_unlock_irq(&mapping->tree_lock);
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700658 if (old != radswap)
659 return -ENOENT;
660 free_swap_and_cache(radix_to_swp_entry(radswap));
661 return 0;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700662}
663
664/*
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800665 * Determine (in bytes) how many of the shmem object's pages mapped by the
Vlastimil Babka48131e02016-01-14 15:19:23 -0800666 * given offsets are swapped out.
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800667 *
668 * This is safe to call without i_mutex or mapping->tree_lock thanks to RCU,
669 * as long as the inode doesn't go away and racy results are not a problem.
670 */
Vlastimil Babka48131e02016-01-14 15:19:23 -0800671unsigned long shmem_partial_swap_usage(struct address_space *mapping,
672 pgoff_t start, pgoff_t end)
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800673{
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800674 struct radix_tree_iter iter;
675 void **slot;
676 struct page *page;
Vlastimil Babka48131e02016-01-14 15:19:23 -0800677 unsigned long swapped = 0;
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800678
679 rcu_read_lock();
680
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800681 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
682 if (iter.index >= end)
683 break;
684
685 page = radix_tree_deref_slot(slot);
686
Matthew Wilcox2cf938a2016-03-17 14:22:03 -0700687 if (radix_tree_deref_retry(page)) {
688 slot = radix_tree_iter_retry(&iter);
689 continue;
690 }
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800691
692 if (radix_tree_exceptional_entry(page))
693 swapped++;
694
695 if (need_resched()) {
Matthew Wilcox148deab2016-12-14 15:08:49 -0800696 slot = radix_tree_iter_resume(slot, &iter);
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800697 cond_resched_rcu();
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800698 }
699 }
700
701 rcu_read_unlock();
702
703 return swapped << PAGE_SHIFT;
704}
705
706/*
Vlastimil Babka48131e02016-01-14 15:19:23 -0800707 * Determine (in bytes) how many of the shmem object's pages mapped by the
708 * given vma is swapped out.
709 *
710 * This is safe to call without i_mutex or mapping->tree_lock thanks to RCU,
711 * as long as the inode doesn't go away and racy results are not a problem.
712 */
713unsigned long shmem_swap_usage(struct vm_area_struct *vma)
714{
715 struct inode *inode = file_inode(vma->vm_file);
716 struct shmem_inode_info *info = SHMEM_I(inode);
717 struct address_space *mapping = inode->i_mapping;
718 unsigned long swapped;
719
720 /* Be careful as we don't hold info->lock */
721 swapped = READ_ONCE(info->swapped);
722
723 /*
724 * The easier cases are when the shmem object has nothing in swap, or
725 * the vma maps it whole. Then we can simply use the stats that we
726 * already track.
727 */
728 if (!swapped)
729 return 0;
730
731 if (!vma->vm_pgoff && vma->vm_end - vma->vm_start >= inode->i_size)
732 return swapped << PAGE_SHIFT;
733
734 /* Here comes the more involved part */
735 return shmem_partial_swap_usage(mapping,
736 linear_page_index(vma, vma->vm_start),
737 linear_page_index(vma, vma->vm_end));
738}
739
740/*
Hugh Dickins24513262012-01-20 14:34:21 -0800741 * SysV IPC SHM_UNLOCK restore Unevictable pages to their evictable lists.
742 */
743void shmem_unlock_mapping(struct address_space *mapping)
744{
745 struct pagevec pvec;
746 pgoff_t indices[PAGEVEC_SIZE];
747 pgoff_t index = 0;
748
749 pagevec_init(&pvec, 0);
750 /*
751 * Minor point, but we might as well stop if someone else SHM_LOCKs it.
752 */
753 while (!mapping_unevictable(mapping)) {
754 /*
755 * Avoid pagevec_lookup(): find_get_pages() returns 0 as if it
756 * has finished, if it hits a row of PAGEVEC_SIZE swap entries.
757 */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700758 pvec.nr = find_get_entries(mapping, index,
759 PAGEVEC_SIZE, pvec.pages, indices);
Hugh Dickins24513262012-01-20 14:34:21 -0800760 if (!pvec.nr)
761 break;
762 index = indices[pvec.nr - 1] + 1;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700763 pagevec_remove_exceptionals(&pvec);
Hugh Dickins24513262012-01-20 14:34:21 -0800764 check_move_unevictable_pages(pvec.pages, pvec.nr);
765 pagevec_release(&pvec);
766 cond_resched();
767 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700768}
769
770/*
771 * Remove range of pages and swap entries from radix tree, and free them.
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700772 * If !unfalloc, truncate or punch hole; if unfalloc, undo failed fallocate.
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700773 */
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700774static void shmem_undo_range(struct inode *inode, loff_t lstart, loff_t lend,
775 bool unfalloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Hugh Dickins285b2c42011-08-03 16:21:20 -0700777 struct address_space *mapping = inode->i_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300779 pgoff_t start = (lstart + PAGE_SIZE - 1) >> PAGE_SHIFT;
780 pgoff_t end = (lend + 1) >> PAGE_SHIFT;
781 unsigned int partial_start = lstart & (PAGE_SIZE - 1);
782 unsigned int partial_end = (lend + 1) & (PAGE_SIZE - 1);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700783 struct pagevec pvec;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700784 pgoff_t indices[PAGEVEC_SIZE];
785 long nr_swaps_freed = 0;
Hugh Dickins285b2c42011-08-03 16:21:20 -0700786 pgoff_t index;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700787 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700789 if (lend == -1)
790 end = -1; /* unsigned, so actually very big */
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700791
792 pagevec_init(&pvec, 0);
793 index = start;
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700794 while (index < end) {
Johannes Weiner0cd61442014-04-03 14:47:46 -0700795 pvec.nr = find_get_entries(mapping, index,
796 min(end - index, (pgoff_t)PAGEVEC_SIZE),
797 pvec.pages, indices);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700798 if (!pvec.nr)
799 break;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700800 for (i = 0; i < pagevec_count(&pvec); i++) {
801 struct page *page = pvec.pages[i];
802
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700803 index = indices[i];
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700804 if (index >= end)
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700805 break;
806
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700807 if (radix_tree_exceptional_entry(page)) {
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700808 if (unfalloc)
809 continue;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700810 nr_swaps_freed += !shmem_free_swap(mapping,
811 index, page);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700812 continue;
813 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700814
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700815 VM_BUG_ON_PAGE(page_to_pgoff(page) != index, page);
816
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700817 if (!trylock_page(page))
818 continue;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700819
820 if (PageTransTail(page)) {
821 /* Middle of THP: zero out the page */
822 clear_highpage(page);
823 unlock_page(page);
824 continue;
825 } else if (PageTransHuge(page)) {
826 if (index == round_down(end, HPAGE_PMD_NR)) {
827 /*
828 * Range ends in the middle of THP:
829 * zero out the page
830 */
831 clear_highpage(page);
832 unlock_page(page);
833 continue;
834 }
835 index += HPAGE_PMD_NR - 1;
836 i += HPAGE_PMD_NR - 1;
837 }
838
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700839 if (!unfalloc || !PageUptodate(page)) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700840 VM_BUG_ON_PAGE(PageTail(page), page);
841 if (page_mapping(page) == mapping) {
Sasha Levin309381fea2014-01-23 15:52:54 -0800842 VM_BUG_ON_PAGE(PageWriteback(page), page);
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700843 truncate_inode_page(mapping, page);
844 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700845 }
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700846 unlock_page(page);
847 }
Johannes Weiner0cd61442014-04-03 14:47:46 -0700848 pagevec_remove_exceptionals(&pvec);
Hugh Dickins24513262012-01-20 14:34:21 -0800849 pagevec_release(&pvec);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700850 cond_resched();
851 index++;
852 }
853
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700854 if (partial_start) {
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700855 struct page *page = NULL;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700856 shmem_getpage(inode, start - 1, &page, SGP_READ);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700857 if (page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300858 unsigned int top = PAGE_SIZE;
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700859 if (start > end) {
860 top = partial_end;
861 partial_end = 0;
862 }
863 zero_user_segment(page, partial_start, top);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700864 set_page_dirty(page);
865 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300866 put_page(page);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700867 }
868 }
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700869 if (partial_end) {
870 struct page *page = NULL;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700871 shmem_getpage(inode, end, &page, SGP_READ);
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700872 if (page) {
873 zero_user_segment(page, 0, partial_end);
874 set_page_dirty(page);
875 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300876 put_page(page);
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700877 }
878 }
879 if (start >= end)
880 return;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700881
882 index = start;
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700883 while (index < end) {
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700884 cond_resched();
Johannes Weiner0cd61442014-04-03 14:47:46 -0700885
886 pvec.nr = find_get_entries(mapping, index,
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700887 min(end - index, (pgoff_t)PAGEVEC_SIZE),
Johannes Weiner0cd61442014-04-03 14:47:46 -0700888 pvec.pages, indices);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700889 if (!pvec.nr) {
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700890 /* If all gone or hole-punch or unfalloc, we're done */
891 if (index == start || end != -1)
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700892 break;
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700893 /* But if truncating, restart to make sure all gone */
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700894 index = start;
895 continue;
896 }
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700897 for (i = 0; i < pagevec_count(&pvec); i++) {
898 struct page *page = pvec.pages[i];
899
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700900 index = indices[i];
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700901 if (index >= end)
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700902 break;
903
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700904 if (radix_tree_exceptional_entry(page)) {
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700905 if (unfalloc)
906 continue;
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700907 if (shmem_free_swap(mapping, index, page)) {
908 /* Swap was replaced by page: retry */
909 index--;
910 break;
911 }
912 nr_swaps_freed++;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700913 continue;
914 }
915
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700916 lock_page(page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700917
918 if (PageTransTail(page)) {
919 /* Middle of THP: zero out the page */
920 clear_highpage(page);
921 unlock_page(page);
922 /*
923 * Partial thp truncate due 'start' in middle
924 * of THP: don't need to look on these pages
925 * again on !pvec.nr restart.
926 */
927 if (index != round_down(end, HPAGE_PMD_NR))
928 start++;
929 continue;
930 } else if (PageTransHuge(page)) {
931 if (index == round_down(end, HPAGE_PMD_NR)) {
932 /*
933 * Range ends in the middle of THP:
934 * zero out the page
935 */
936 clear_highpage(page);
937 unlock_page(page);
938 continue;
939 }
940 index += HPAGE_PMD_NR - 1;
941 i += HPAGE_PMD_NR - 1;
942 }
943
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700944 if (!unfalloc || !PageUptodate(page)) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700945 VM_BUG_ON_PAGE(PageTail(page), page);
946 if (page_mapping(page) == mapping) {
Sasha Levin309381fea2014-01-23 15:52:54 -0800947 VM_BUG_ON_PAGE(PageWriteback(page), page);
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700948 truncate_inode_page(mapping, page);
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700949 } else {
950 /* Page was replaced by swap: retry */
951 unlock_page(page);
952 index--;
953 break;
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700954 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700955 }
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700956 unlock_page(page);
957 }
Johannes Weiner0cd61442014-04-03 14:47:46 -0700958 pagevec_remove_exceptionals(&pvec);
Hugh Dickins24513262012-01-20 14:34:21 -0800959 pagevec_release(&pvec);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700960 index++;
961 }
Hugh Dickins94c1e622011-06-27 16:18:03 -0700962
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700963 spin_lock_irq(&info->lock);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700964 info->swapped -= nr_swaps_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700966 spin_unlock_irq(&info->lock);
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700967}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700969void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
970{
971 shmem_undo_range(inode, lstart, lend, false);
Deepa Dinamani078cd822016-09-14 07:48:04 -0700972 inode->i_ctime = inode->i_mtime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
Hugh Dickins94c1e622011-06-27 16:18:03 -0700974EXPORT_SYMBOL_GPL(shmem_truncate_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
David Howellsa528d352017-01-31 16:46:22 +0000976static int shmem_getattr(const struct path *path, struct kstat *stat,
977 u32 request_mask, unsigned int query_flags)
Yu Zhao44a30222015-09-08 15:03:33 -0700978{
David Howellsa528d352017-01-31 16:46:22 +0000979 struct inode *inode = path->dentry->d_inode;
Yu Zhao44a30222015-09-08 15:03:33 -0700980 struct shmem_inode_info *info = SHMEM_I(inode);
981
Hugh Dickinsd0424c42015-11-05 18:50:34 -0800982 if (info->alloced - info->swapped != inode->i_mapping->nrpages) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700983 spin_lock_irq(&info->lock);
Hugh Dickinsd0424c42015-11-05 18:50:34 -0800984 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700985 spin_unlock_irq(&info->lock);
Hugh Dickinsd0424c42015-11-05 18:50:34 -0800986 }
Yu Zhao44a30222015-09-08 15:03:33 -0700987 generic_fillattr(inode, stat);
Yu Zhao44a30222015-09-08 15:03:33 -0700988 return 0;
989}
990
Hugh Dickins94c1e622011-06-27 16:18:03 -0700991static int shmem_setattr(struct dentry *dentry, struct iattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
David Howells75c3cfa2015-03-17 22:26:12 +0000993 struct inode *inode = d_inode(dentry);
David Herrmann40e041a2014-08-08 14:25:27 -0700994 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700995 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 int error;
997
Jan Kara31051c82016-05-26 16:55:18 +0200998 error = setattr_prepare(dentry, attr);
Christoph Hellwigdb78b872010-06-04 11:30:03 +0200999 if (error)
1000 return error;
1001
Hugh Dickins94c1e622011-06-27 16:18:03 -07001002 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
1003 loff_t oldsize = inode->i_size;
1004 loff_t newsize = attr->ia_size;
npiggin@suse.de3889e6e2010-05-27 01:05:36 +10001005
David Herrmann40e041a2014-08-08 14:25:27 -07001006 /* protected by i_mutex */
1007 if ((newsize < oldsize && (info->seals & F_SEAL_SHRINK)) ||
1008 (newsize > oldsize && (info->seals & F_SEAL_GROW)))
1009 return -EPERM;
1010
Hugh Dickins94c1e622011-06-27 16:18:03 -07001011 if (newsize != oldsize) {
Konstantin Khlebnikov77142512014-08-06 16:06:34 -07001012 error = shmem_reacct_size(SHMEM_I(inode)->flags,
1013 oldsize, newsize);
1014 if (error)
1015 return error;
Hugh Dickins94c1e622011-06-27 16:18:03 -07001016 i_size_write(inode, newsize);
Deepa Dinamani078cd822016-09-14 07:48:04 -07001017 inode->i_ctime = inode->i_mtime = current_time(inode);
Hugh Dickins94c1e622011-06-27 16:18:03 -07001018 }
Josef Bacikafa2db22015-06-24 16:58:45 -07001019 if (newsize <= oldsize) {
Hugh Dickins94c1e622011-06-27 16:18:03 -07001020 loff_t holebegin = round_up(newsize, PAGE_SIZE);
Hugh Dickinsd0424c42015-11-05 18:50:34 -08001021 if (oldsize > holebegin)
1022 unmap_mapping_range(inode->i_mapping,
1023 holebegin, 0, 1);
1024 if (info->alloced)
1025 shmem_truncate_range(inode,
1026 newsize, (loff_t)-1);
Hugh Dickins94c1e622011-06-27 16:18:03 -07001027 /* unmap again to remove racily COWed private pages */
Hugh Dickinsd0424c42015-11-05 18:50:34 -08001028 if (oldsize > holebegin)
1029 unmap_mapping_range(inode->i_mapping,
1030 holebegin, 0, 1);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001031
1032 /*
1033 * Part of the huge page can be beyond i_size: subject
1034 * to shrink under memory pressure.
1035 */
1036 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE)) {
1037 spin_lock(&sbinfo->shrinklist_lock);
Cong Wangd0413532017-08-10 15:24:24 -07001038 /*
1039 * _careful to defend against unlocked access to
1040 * ->shrink_list in shmem_unused_huge_shrink()
1041 */
1042 if (list_empty_careful(&info->shrinklist)) {
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001043 list_add_tail(&info->shrinklist,
1044 &sbinfo->shrinklist);
1045 sbinfo->shrinklist_len++;
1046 }
1047 spin_unlock(&sbinfo->shrinklist_lock);
1048 }
Hugh Dickins94c1e622011-06-27 16:18:03 -07001049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051
Christoph Hellwigdb78b872010-06-04 11:30:03 +02001052 setattr_copy(inode, attr);
Christoph Hellwigdb78b872010-06-04 11:30:03 +02001053 if (attr->ia_valid & ATTR_MODE)
Christoph Hellwigfeda8212013-12-20 05:16:54 -08001054 error = posix_acl_chmod(inode, inode->i_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return error;
1056}
1057
Al Viro1f895f72010-06-05 19:10:41 -04001058static void shmem_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001061 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
npiggin@suse.de3889e6e2010-05-27 01:05:36 +10001063 if (inode->i_mapping->a_ops == &shmem_aops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 shmem_unacct_size(info->flags, inode->i_size);
1065 inode->i_size = 0;
npiggin@suse.de3889e6e2010-05-27 01:05:36 +10001066 shmem_truncate_range(inode, 0, (loff_t)-1);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001067 if (!list_empty(&info->shrinklist)) {
1068 spin_lock(&sbinfo->shrinklist_lock);
1069 if (!list_empty(&info->shrinklist)) {
1070 list_del_init(&info->shrinklist);
1071 sbinfo->shrinklist_len--;
1072 }
1073 spin_unlock(&sbinfo->shrinklist_lock);
1074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 if (!list_empty(&info->swaplist)) {
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001076 mutex_lock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 list_del_init(&info->swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001078 mutex_unlock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
Al Viro3ed47db2016-01-22 18:08:52 -05001080 }
Eric Parisb09e0fa2011-05-24 17:12:39 -07001081
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001082 simple_xattrs_free(&info->xattrs);
Hugh Dickins0f3c42f2012-11-16 14:15:04 -08001083 WARN_ON(inode->i_blocks);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001084 shmem_free_inode(inode->i_sb);
Jan Karadbd57682012-05-03 14:48:02 +02001085 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086}
1087
Matthew Wilcox478922e2016-12-14 15:08:52 -08001088static unsigned long find_swap_entry(struct radix_tree_root *root, void *item)
1089{
1090 struct radix_tree_iter iter;
1091 void **slot;
1092 unsigned long found = -1;
1093 unsigned int checked = 0;
1094
1095 rcu_read_lock();
1096 radix_tree_for_each_slot(slot, root, &iter, 0) {
1097 if (*slot == item) {
1098 found = iter.index;
1099 break;
1100 }
1101 checked++;
1102 if ((checked % 4096) != 0)
1103 continue;
1104 slot = radix_tree_iter_resume(slot, &iter);
1105 cond_resched_rcu();
1106 }
1107
1108 rcu_read_unlock();
1109 return found;
1110}
1111
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001112/*
1113 * If swap found in inode, free it and move page from swapcache to filecache.
1114 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001115static int shmem_unuse_inode(struct shmem_inode_info *info,
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001116 swp_entry_t swap, struct page **pagep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Hugh Dickins285b2c42011-08-03 16:21:20 -07001118 struct address_space *mapping = info->vfs_inode.i_mapping;
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001119 void *radswap;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001120 pgoff_t index;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001121 gfp_t gfp;
1122 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001124 radswap = swp_to_radix_entry(swap);
Matthew Wilcox478922e2016-12-14 15:08:52 -08001125 index = find_swap_entry(&mapping->page_tree, radswap);
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001126 if (index == -1)
Johannes Weiner00501b52014-08-08 14:19:20 -07001127 return -EAGAIN; /* tell shmem_unuse we found nothing */
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001128
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001129 /*
1130 * Move _head_ to start search for next from here.
Al Viro1f895f72010-06-05 19:10:41 -04001131 * But be careful: shmem_evict_inode checks list_empty without taking
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001132 * mutex, and there's an instant in list_move_tail when info->swaplist
Hugh Dickins285b2c42011-08-03 16:21:20 -07001133 * would appear empty, if it were the only one on shmem_swaplist.
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001134 */
1135 if (shmem_swaplist.next != &info->swaplist)
1136 list_move_tail(&shmem_swaplist, &info->swaplist);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001137
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001138 gfp = mapping_gfp_mask(mapping);
1139 if (shmem_should_replace_page(*pagep, gfp)) {
1140 mutex_unlock(&shmem_swaplist_mutex);
1141 error = shmem_replace_page(pagep, gfp, info, index);
1142 mutex_lock(&shmem_swaplist_mutex);
1143 /*
1144 * We needed to drop mutex to make that restrictive page
Hugh Dickins0142ef62012-06-07 14:21:09 -07001145 * allocation, but the inode might have been freed while we
1146 * dropped it: although a racing shmem_evict_inode() cannot
1147 * complete without emptying the radix_tree, our page lock
1148 * on this swapcache page is not enough to prevent that -
1149 * free_swap_and_cache() of our swap entry will only
1150 * trylock_page(), removing swap from radix_tree whatever.
1151 *
1152 * We must not proceed to shmem_add_to_page_cache() if the
1153 * inode has been freed, but of course we cannot rely on
1154 * inode or mapping or info to check that. However, we can
1155 * safely check if our swap entry is still in use (and here
1156 * it can't have got reused for another page): if it's still
1157 * in use, then the inode cannot have been freed yet, and we
1158 * can safely proceed (if it's no longer in use, that tells
1159 * nothing about the inode, but we don't need to unuse swap).
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001160 */
1161 if (!page_swapcount(*pagep))
1162 error = -ENOENT;
1163 }
1164
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001165 /*
Hugh Dickins778dd892011-05-11 15:13:37 -07001166 * We rely on shmem_swaplist_mutex, not only to protect the swaplist,
1167 * but also to hold up shmem_evict_inode(): so inode cannot be freed
1168 * beneath us (pagelock doesn't help until the page is in pagecache).
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001169 */
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001170 if (!error)
1171 error = shmem_add_to_page_cache(*pagep, mapping, index,
Wang Sheng-Huifed400a2014-08-06 16:07:26 -07001172 radswap);
Hugh Dickins48f170f2011-07-25 17:12:37 -07001173 if (error != -ENOMEM) {
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001174 /*
1175 * Truncation and eviction use free_swap_and_cache(), which
1176 * only does trylock page: if we raced, best clean up here.
1177 */
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001178 delete_from_swap_cache(*pagep);
1179 set_page_dirty(*pagep);
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001180 if (!error) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001181 spin_lock_irq(&info->lock);
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001182 info->swapped--;
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001183 spin_unlock_irq(&info->lock);
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001184 swap_free(swap);
1185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 }
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001187 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
1189
1190/*
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001191 * Search through swapped inodes to find and replace swap by page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001193int shmem_unuse(swp_entry_t swap, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001195 struct list_head *this, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 struct shmem_inode_info *info;
Johannes Weiner00501b52014-08-08 14:19:20 -07001197 struct mem_cgroup *memcg;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001198 int error = 0;
1199
1200 /*
1201 * There's a faint possibility that swap page was replaced before
Hugh Dickins0142ef62012-06-07 14:21:09 -07001202 * caller locked it: caller will come back later with the right page.
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001203 */
Hugh Dickins0142ef62012-06-07 14:21:09 -07001204 if (unlikely(!PageSwapCache(page) || page_private(page) != swap.val))
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001205 goto out;
Hugh Dickins778dd892011-05-11 15:13:37 -07001206
1207 /*
1208 * Charge page using GFP_KERNEL while we can wait, before taking
1209 * the shmem_swaplist_mutex which might hold up shmem_writepage().
1210 * Charged back to the user (not to caller) when swap account is used.
Hugh Dickins778dd892011-05-11 15:13:37 -07001211 */
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001212 error = mem_cgroup_try_charge(page, current->mm, GFP_KERNEL, &memcg,
1213 false);
Hugh Dickins778dd892011-05-11 15:13:37 -07001214 if (error)
1215 goto out;
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001216 /* No radix_tree_preload: swap entry keeps a place for page in tree */
Johannes Weiner00501b52014-08-08 14:19:20 -07001217 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001219 mutex_lock(&shmem_swaplist_mutex);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001220 list_for_each_safe(this, next, &shmem_swaplist) {
1221 info = list_entry(this, struct shmem_inode_info, swaplist);
Hugh Dickins285b2c42011-08-03 16:21:20 -07001222 if (info->swapped)
Johannes Weiner00501b52014-08-08 14:19:20 -07001223 error = shmem_unuse_inode(info, swap, &page);
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001224 else
1225 list_del_init(&info->swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001226 cond_resched();
Johannes Weiner00501b52014-08-08 14:19:20 -07001227 if (error != -EAGAIN)
Hugh Dickins778dd892011-05-11 15:13:37 -07001228 break;
Johannes Weiner00501b52014-08-08 14:19:20 -07001229 /* found nothing in this: move on to search the next */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001231 mutex_unlock(&shmem_swaplist_mutex);
Hugh Dickins778dd892011-05-11 15:13:37 -07001232
Johannes Weiner00501b52014-08-08 14:19:20 -07001233 if (error) {
1234 if (error != -ENOMEM)
1235 error = 0;
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001236 mem_cgroup_cancel_charge(page, memcg, false);
Johannes Weiner00501b52014-08-08 14:19:20 -07001237 } else
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001238 mem_cgroup_commit_charge(page, memcg, true, false);
Hugh Dickins778dd892011-05-11 15:13:37 -07001239out:
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001240 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001241 put_page(page);
Hugh Dickins778dd892011-05-11 15:13:37 -07001242 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
1245/*
1246 * Move the page from the page cache to the swap cache.
1247 */
1248static int shmem_writepage(struct page *page, struct writeback_control *wbc)
1249{
1250 struct shmem_inode_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 struct address_space *mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 struct inode *inode;
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001253 swp_entry_t swap;
1254 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001256 VM_BUG_ON_PAGE(PageCompound(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 mapping = page->mapping;
1259 index = page->index;
1260 inode = mapping->host;
1261 info = SHMEM_I(inode);
1262 if (info->flags & VM_LOCKED)
1263 goto redirty;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001264 if (!total_swap_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 goto redirty;
1266
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001267 /*
Christoph Hellwig97b713b2015-01-14 10:42:31 +01001268 * Our capabilities prevent regular writeback or sync from ever calling
1269 * shmem_writepage; but a stacking filesystem might use ->writepage of
1270 * its underlying filesystem, in which case tmpfs should write out to
1271 * swap only in response to memory pressure, and not for the writeback
1272 * threads or sync.
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001273 */
Hugh Dickins48f170f2011-07-25 17:12:37 -07001274 if (!wbc->for_reclaim) {
1275 WARN_ON_ONCE(1); /* Still happens? Tell us about it! */
1276 goto redirty;
1277 }
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001278
1279 /*
1280 * This is somewhat ridiculous, but without plumbing a SWAP_MAP_FALLOC
1281 * value into swapfile.c, the only way we can correctly account for a
1282 * fallocated page arriving here is now to initialize it and write it.
Hugh Dickins1aac1402012-05-29 15:06:42 -07001283 *
1284 * That's okay for a page already fallocated earlier, but if we have
1285 * not yet completed the fallocation, then (a) we want to keep track
1286 * of this page in case we have to undo it, and (b) it may not be a
1287 * good idea to continue anyway, once we're pushing into swap. So
1288 * reactivate the page, and let shmem_fallocate() quit when too many.
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001289 */
1290 if (!PageUptodate(page)) {
Hugh Dickins1aac1402012-05-29 15:06:42 -07001291 if (inode->i_private) {
1292 struct shmem_falloc *shmem_falloc;
1293 spin_lock(&inode->i_lock);
1294 shmem_falloc = inode->i_private;
1295 if (shmem_falloc &&
Hugh Dickins8e205f72014-07-23 14:00:10 -07001296 !shmem_falloc->waitq &&
Hugh Dickins1aac1402012-05-29 15:06:42 -07001297 index >= shmem_falloc->start &&
1298 index < shmem_falloc->next)
1299 shmem_falloc->nr_unswapped++;
1300 else
1301 shmem_falloc = NULL;
1302 spin_unlock(&inode->i_lock);
1303 if (shmem_falloc)
1304 goto redirty;
1305 }
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001306 clear_highpage(page);
1307 flush_dcache_page(page);
1308 SetPageUptodate(page);
1309 }
1310
Huang Ying38d8b4e2017-07-06 15:37:18 -07001311 swap = get_swap_page(page);
Hugh Dickins48f170f2011-07-25 17:12:37 -07001312 if (!swap.val)
1313 goto redirty;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001314
Vladimir Davydov37e84352016-01-20 15:02:56 -08001315 if (mem_cgroup_try_charge_swap(page, swap))
1316 goto free_swap;
1317
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001318 /*
1319 * Add inode to shmem_unuse()'s list of swapped-out inodes,
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001320 * if it's not already there. Do it now before the page is
1321 * moved to swap cache, when its pagelock no longer protects
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001322 * the inode from eviction. But don't unlock the mutex until
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001323 * we've incremented swapped, because shmem_unuse_inode() will
1324 * prune a !swapped inode from the swaplist under this mutex.
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001325 */
Hugh Dickins48f170f2011-07-25 17:12:37 -07001326 mutex_lock(&shmem_swaplist_mutex);
1327 if (list_empty(&info->swaplist))
1328 list_add_tail(&info->swaplist, &shmem_swaplist);
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001329
Hugh Dickins48f170f2011-07-25 17:12:37 -07001330 if (add_to_swap_cache(page, swap, GFP_ATOMIC) == 0) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001331 spin_lock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001332 shmem_recalc_inode(inode);
1333 info->swapped++;
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001334 spin_unlock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001335
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001336 swap_shmem_alloc(swap);
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001337 shmem_delete_from_page_cache(page, swp_to_radix_entry(swap));
1338
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001339 mutex_unlock(&shmem_swaplist_mutex);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001340 BUG_ON(page_mapped(page));
Hugh Dickins9fab5612009-03-31 15:23:33 -07001341 swap_writepage(page, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 return 0;
1343 }
1344
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001345 mutex_unlock(&shmem_swaplist_mutex);
Vladimir Davydov37e84352016-01-20 15:02:56 -08001346free_swap:
Minchan Kim75f6d6d2017-07-06 15:37:21 -07001347 put_swap_page(page, swap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348redirty:
1349 set_page_dirty(page);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001350 if (wbc->for_reclaim)
1351 return AOP_WRITEPAGE_ACTIVATE; /* Return with page locked */
1352 unlock_page(page);
1353 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354}
1355
Hugh Dickins75edd342016-05-19 17:12:44 -07001356#if defined(CONFIG_NUMA) && defined(CONFIG_TMPFS)
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001357static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001358{
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001359 char buffer[64];
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001360
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001361 if (!mpol || mpol->mode == MPOL_DEFAULT)
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001362 return; /* show nothing */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001363
Hugh Dickinsa7a88b22013-01-02 02:04:23 -08001364 mpol_to_str(buffer, sizeof(buffer), mpol);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001365
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001366 seq_printf(seq, ",mpol=%s", buffer);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001367}
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001368
1369static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1370{
1371 struct mempolicy *mpol = NULL;
1372 if (sbinfo->mpol) {
1373 spin_lock(&sbinfo->stat_lock); /* prevent replace/use races */
1374 mpol = sbinfo->mpol;
1375 mpol_get(mpol);
1376 spin_unlock(&sbinfo->stat_lock);
1377 }
1378 return mpol;
1379}
Hugh Dickins75edd342016-05-19 17:12:44 -07001380#else /* !CONFIG_NUMA || !CONFIG_TMPFS */
1381static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
1382{
1383}
1384static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1385{
1386 return NULL;
1387}
1388#endif /* CONFIG_NUMA && CONFIG_TMPFS */
1389#ifndef CONFIG_NUMA
1390#define vm_policy vm_private_data
1391#endif
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001392
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001393static void shmem_pseudo_vma_init(struct vm_area_struct *vma,
1394 struct shmem_inode_info *info, pgoff_t index)
1395{
1396 /* Create a pseudo vma that just contains the policy */
1397 vma->vm_start = 0;
1398 /* Bias interleave by inode number to distribute better across nodes */
1399 vma->vm_pgoff = index + info->vfs_inode.i_ino;
1400 vma->vm_ops = NULL;
1401 vma->vm_policy = mpol_shared_policy_lookup(&info->policy, index);
1402}
1403
1404static void shmem_pseudo_vma_destroy(struct vm_area_struct *vma)
1405{
1406 /* Drop reference taken by mpol_shared_policy_lookup() */
1407 mpol_cond_put(vma->vm_policy);
1408}
1409
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001410static struct page *shmem_swapin(swp_entry_t swap, gfp_t gfp,
1411 struct shmem_inode_info *info, pgoff_t index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 struct vm_area_struct pvma;
Mel Gorman18a2f372012-12-05 14:01:41 -08001414 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001416 shmem_pseudo_vma_init(&pvma, info, index);
Mel Gorman18a2f372012-12-05 14:01:41 -08001417 page = swapin_readahead(swap, gfp, &pvma, 0);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001418 shmem_pseudo_vma_destroy(&pvma);
Mel Gorman18a2f372012-12-05 14:01:41 -08001419
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001420 return page;
1421}
Mel Gorman18a2f372012-12-05 14:01:41 -08001422
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001423static struct page *shmem_alloc_hugepage(gfp_t gfp,
1424 struct shmem_inode_info *info, pgoff_t index)
1425{
1426 struct vm_area_struct pvma;
1427 struct inode *inode = &info->vfs_inode;
1428 struct address_space *mapping = inode->i_mapping;
Geert Uytterhoeven4620a062016-08-03 19:58:19 +02001429 pgoff_t idx, hindex;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001430 void __rcu **results;
1431 struct page *page;
1432
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07001433 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE))
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001434 return NULL;
1435
Geert Uytterhoeven4620a062016-08-03 19:58:19 +02001436 hindex = round_down(index, HPAGE_PMD_NR);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001437 rcu_read_lock();
1438 if (radix_tree_gang_lookup_slot(&mapping->page_tree, &results, &idx,
1439 hindex, 1) && idx < hindex + HPAGE_PMD_NR) {
1440 rcu_read_unlock();
1441 return NULL;
1442 }
1443 rcu_read_unlock();
1444
1445 shmem_pseudo_vma_init(&pvma, info, hindex);
1446 page = alloc_pages_vma(gfp | __GFP_COMP | __GFP_NORETRY | __GFP_NOWARN,
1447 HPAGE_PMD_ORDER, &pvma, 0, numa_node_id(), true);
1448 shmem_pseudo_vma_destroy(&pvma);
1449 if (page)
1450 prep_transhuge_page(page);
Mel Gorman18a2f372012-12-05 14:01:41 -08001451 return page;
1452}
1453
1454static struct page *shmem_alloc_page(gfp_t gfp,
1455 struct shmem_inode_info *info, pgoff_t index)
1456{
1457 struct vm_area_struct pvma;
1458 struct page *page;
1459
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001460 shmem_pseudo_vma_init(&pvma, info, index);
1461 page = alloc_page_vma(gfp, &pvma, 0);
1462 shmem_pseudo_vma_destroy(&pvma);
Mel Gorman18a2f372012-12-05 14:01:41 -08001463
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001464 return page;
1465}
1466
1467static struct page *shmem_alloc_and_acct_page(gfp_t gfp,
Mike Rapoport0f079692017-09-06 16:22:59 -07001468 struct inode *inode,
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001469 pgoff_t index, bool huge)
1470{
Mike Rapoport0f079692017-09-06 16:22:59 -07001471 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001472 struct page *page;
1473 int nr;
1474 int err = -ENOSPC;
1475
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07001476 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE))
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001477 huge = false;
1478 nr = huge ? HPAGE_PMD_NR : 1;
1479
Mike Rapoport0f079692017-09-06 16:22:59 -07001480 if (!shmem_inode_acct_block(inode, nr))
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001481 goto failed;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001482
1483 if (huge)
1484 page = shmem_alloc_hugepage(gfp, info, index);
1485 else
1486 page = shmem_alloc_page(gfp, info, index);
Hugh Dickins75edd342016-05-19 17:12:44 -07001487 if (page) {
1488 __SetPageLocked(page);
1489 __SetPageSwapBacked(page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001490 return page;
Hugh Dickins75edd342016-05-19 17:12:44 -07001491 }
Mel Gorman18a2f372012-12-05 14:01:41 -08001492
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001493 err = -ENOMEM;
Mike Rapoport0f079692017-09-06 16:22:59 -07001494 shmem_inode_unacct_blocks(inode, nr);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001495failed:
1496 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499/*
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001500 * When a page is moved from swapcache to shmem filecache (either by the
1501 * usual swapin of shmem_getpage_gfp(), or by the less common swapoff of
1502 * shmem_unuse_inode()), it may have been read in earlier from swap, in
1503 * ignorance of the mapping it belongs to. If that mapping has special
1504 * constraints (like the gma500 GEM driver, which requires RAM below 4GB),
1505 * we may need to copy to a suitable page before moving to filecache.
1506 *
1507 * In a future release, this may well be extended to respect cpuset and
1508 * NUMA mempolicy, and applied also to anonymous pages in do_swap_page();
1509 * but for now it is a simple matter of zone.
1510 */
1511static bool shmem_should_replace_page(struct page *page, gfp_t gfp)
1512{
1513 return page_zonenum(page) > gfp_zone(gfp);
1514}
1515
1516static int shmem_replace_page(struct page **pagep, gfp_t gfp,
1517 struct shmem_inode_info *info, pgoff_t index)
1518{
1519 struct page *oldpage, *newpage;
1520 struct address_space *swap_mapping;
1521 pgoff_t swap_index;
1522 int error;
1523
1524 oldpage = *pagep;
1525 swap_index = page_private(oldpage);
1526 swap_mapping = page_mapping(oldpage);
1527
1528 /*
1529 * We have arrived here because our zones are constrained, so don't
1530 * limit chance of success by further cpuset and node constraints.
1531 */
1532 gfp &= ~GFP_CONSTRAINT_MASK;
1533 newpage = shmem_alloc_page(gfp, info, index);
1534 if (!newpage)
1535 return -ENOMEM;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001536
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001537 get_page(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001538 copy_highpage(newpage, oldpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001539 flush_dcache_page(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001540
Hugh Dickins9956edf2016-11-10 10:46:11 -08001541 __SetPageLocked(newpage);
1542 __SetPageSwapBacked(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001543 SetPageUptodate(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001544 set_page_private(newpage, swap_index);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001545 SetPageSwapCache(newpage);
1546
1547 /*
1548 * Our caller will very soon move newpage out of swapcache, but it's
1549 * a nice clean interface for us to replace oldpage by newpage there.
1550 */
1551 spin_lock_irq(&swap_mapping->tree_lock);
1552 error = shmem_radix_tree_replace(swap_mapping, swap_index, oldpage,
1553 newpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001554 if (!error) {
Mel Gorman11fb9982016-07-28 15:46:20 -07001555 __inc_node_page_state(newpage, NR_FILE_PAGES);
1556 __dec_node_page_state(oldpage, NR_FILE_PAGES);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001557 }
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001558 spin_unlock_irq(&swap_mapping->tree_lock);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001559
Hugh Dickins0142ef62012-06-07 14:21:09 -07001560 if (unlikely(error)) {
1561 /*
1562 * Is this possible? I think not, now that our callers check
1563 * both PageSwapCache and page_private after getting page lock;
1564 * but be defensive. Reverse old to newpage for clear and free.
1565 */
1566 oldpage = newpage;
1567 } else {
Johannes Weiner6a93ca82016-03-15 14:57:19 -07001568 mem_cgroup_migrate(oldpage, newpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001569 lru_cache_add_anon(newpage);
1570 *pagep = newpage;
1571 }
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001572
1573 ClearPageSwapCache(oldpage);
1574 set_page_private(oldpage, 0);
1575
1576 unlock_page(oldpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001577 put_page(oldpage);
1578 put_page(oldpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001579 return error;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001580}
1581
1582/*
Hugh Dickins68da9f02011-07-25 17:12:34 -07001583 * shmem_getpage_gfp - find page in cache, or get from swap, or allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 *
1585 * If we allocate a new one we do not mark it dirty. That's up to the
1586 * vm. If we swap it in we mark it dirty since we also free the swap
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001587 * entry since a page cannot live in both the swap and page cache.
1588 *
1589 * fault_mm and fault_type are only supplied by shmem_fault:
1590 * otherwise they are NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001592static int shmem_getpage_gfp(struct inode *inode, pgoff_t index,
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001593 struct page **pagep, enum sgp_type sgp, gfp_t gfp,
Mike Rapoportcfda0522017-02-22 15:43:37 -08001594 struct vm_area_struct *vma, struct vm_fault *vmf, int *fault_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
1596 struct address_space *mapping = inode->i_mapping;
Arnd Bergmann23f919d2016-12-12 16:42:28 -08001597 struct shmem_inode_info *info = SHMEM_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 struct shmem_sb_info *sbinfo;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001599 struct mm_struct *charge_mm;
Johannes Weiner00501b52014-08-08 14:19:20 -07001600 struct mem_cgroup *memcg;
Hugh Dickins27ab7002011-07-25 17:12:36 -07001601 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 swp_entry_t swap;
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001603 enum sgp_type sgp_huge = sgp;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001604 pgoff_t hindex = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 int error;
Hugh Dickins54af60422011-08-03 16:21:24 -07001606 int once = 0;
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001607 int alloced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001609 if (index > (MAX_LFS_FILESIZE >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 return -EFBIG;
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001611 if (sgp == SGP_NOHUGE || sgp == SGP_HUGE)
1612 sgp = SGP_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613repeat:
Hugh Dickins54af60422011-08-03 16:21:24 -07001614 swap.val = 0;
Johannes Weiner0cd61442014-04-03 14:47:46 -07001615 page = find_lock_entry(mapping, index);
Hugh Dickins54af60422011-08-03 16:21:24 -07001616 if (radix_tree_exceptional_entry(page)) {
1617 swap = radix_to_swp_entry(page);
1618 page = NULL;
1619 }
1620
Hugh Dickins75edd342016-05-19 17:12:44 -07001621 if (sgp <= SGP_CACHE &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001622 ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001623 error = -EINVAL;
Hugh Dickins267a4c72015-12-11 13:40:55 -08001624 goto unlock;
Hugh Dickins54af60422011-08-03 16:21:24 -07001625 }
1626
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001627 if (page && sgp == SGP_WRITE)
1628 mark_page_accessed(page);
1629
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001630 /* fallocated page? */
1631 if (page && !PageUptodate(page)) {
1632 if (sgp != SGP_READ)
1633 goto clear;
1634 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001635 put_page(page);
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001636 page = NULL;
1637 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001638 if (page || (sgp == SGP_READ && !swap.val)) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001639 *pagep = page;
1640 return 0;
Hugh Dickins27ab7002011-07-25 17:12:36 -07001641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
1643 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07001644 * Fast cache lookup did not find it:
1645 * bring it back from swap or allocate.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 */
Hugh Dickins54af60422011-08-03 16:21:24 -07001647 sbinfo = SHMEM_SB(inode->i_sb);
Mike Rapoportcfda0522017-02-22 15:43:37 -08001648 charge_mm = vma ? vma->vm_mm : current->mm;
Hugh Dickins27ab7002011-07-25 17:12:36 -07001649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 if (swap.val) {
1651 /* Look it up and read it in.. */
Hugh Dickins27ab7002011-07-25 17:12:36 -07001652 page = lookup_swap_cache(swap);
1653 if (!page) {
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001654 /* Or update major stats only when swapin succeeds?? */
1655 if (fault_type) {
Hugh Dickins68da9f02011-07-25 17:12:34 -07001656 *fault_type |= VM_FAULT_MAJOR;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001657 count_vm_event(PGMAJFAULT);
Roman Gushchin22621852017-07-06 15:40:25 -07001658 count_memcg_event_mm(charge_mm, PGMAJFAULT);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001659 }
1660 /* Here we actually start the io */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001661 page = shmem_swapin(swap, gfp, info, index);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001662 if (!page) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001663 error = -ENOMEM;
1664 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
1667
1668 /* We have to do this with page locked to prevent races */
Hugh Dickins54af60422011-08-03 16:21:24 -07001669 lock_page(page);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001670 if (!PageSwapCache(page) || page_private(page) != swap.val ||
Hugh Dickinsd1899222012-07-11 14:02:47 -07001671 !shmem_confirm_swap(mapping, index, swap)) {
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001672 error = -EEXIST; /* try again */
Hugh Dickinsd1899222012-07-11 14:02:47 -07001673 goto unlock;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001674 }
Hugh Dickins27ab7002011-07-25 17:12:36 -07001675 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 error = -EIO;
Hugh Dickins54af60422011-08-03 16:21:24 -07001677 goto failed;
1678 }
1679 wait_on_page_writeback(page);
1680
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001681 if (shmem_should_replace_page(page, gfp)) {
1682 error = shmem_replace_page(&page, gfp, info, index);
1683 if (error)
1684 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
1686
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001687 error = mem_cgroup_try_charge(page, charge_mm, gfp, &memcg,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001688 false);
Hugh Dickinsd1899222012-07-11 14:02:47 -07001689 if (!error) {
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07001690 error = shmem_add_to_page_cache(page, mapping, index,
Wang Sheng-Huifed400a2014-08-06 16:07:26 -07001691 swp_to_radix_entry(swap));
Hugh Dickins215c02b2012-11-16 14:15:03 -08001692 /*
1693 * We already confirmed swap under page lock, and make
1694 * no memory allocation here, so usually no possibility
1695 * of error; but free_swap_and_cache() only trylocks a
1696 * page, so it is just possible that the entry has been
1697 * truncated or holepunched since swap was confirmed.
1698 * shmem_undo_range() will have done some of the
1699 * unaccounting, now delete_from_swap_cache() will do
Vladimir Davydov93aa7d92015-02-11 15:24:59 -08001700 * the rest.
Hugh Dickins215c02b2012-11-16 14:15:03 -08001701 * Reset swap.val? No, leave it so "failed" goes back to
1702 * "repeat": reading a hole and writing should succeed.
1703 */
Johannes Weiner00501b52014-08-08 14:19:20 -07001704 if (error) {
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001705 mem_cgroup_cancel_charge(page, memcg, false);
Hugh Dickins215c02b2012-11-16 14:15:03 -08001706 delete_from_swap_cache(page);
Johannes Weiner00501b52014-08-08 14:19:20 -07001707 }
Hugh Dickinsd1899222012-07-11 14:02:47 -07001708 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001709 if (error)
1710 goto failed;
1711
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001712 mem_cgroup_commit_charge(page, memcg, true, false);
Johannes Weiner00501b52014-08-08 14:19:20 -07001713
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001714 spin_lock_irq(&info->lock);
Hugh Dickins54af60422011-08-03 16:21:24 -07001715 info->swapped--;
1716 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001717 spin_unlock_irq(&info->lock);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001718
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001719 if (sgp == SGP_WRITE)
1720 mark_page_accessed(page);
1721
Hugh Dickins27ab7002011-07-25 17:12:36 -07001722 delete_from_swap_cache(page);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001723 set_page_dirty(page);
1724 swap_free(swap);
1725
Hugh Dickins54af60422011-08-03 16:21:24 -07001726 } else {
Mike Rapoportcfda0522017-02-22 15:43:37 -08001727 if (vma && userfaultfd_missing(vma)) {
1728 *fault_type = handle_userfault(vmf, VM_UFFD_MISSING);
1729 return 0;
1730 }
1731
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001732 /* shmem_symlink() */
1733 if (mapping->a_ops != &shmem_aops)
1734 goto alloc_nohuge;
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001735 if (shmem_huge == SHMEM_HUGE_DENY || sgp_huge == SGP_NOHUGE)
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001736 goto alloc_nohuge;
1737 if (shmem_huge == SHMEM_HUGE_FORCE)
1738 goto alloc_huge;
1739 switch (sbinfo->huge) {
1740 loff_t i_size;
1741 pgoff_t off;
1742 case SHMEM_HUGE_NEVER:
1743 goto alloc_nohuge;
1744 case SHMEM_HUGE_WITHIN_SIZE:
1745 off = round_up(index, HPAGE_PMD_NR);
1746 i_size = round_up(i_size_read(inode), PAGE_SIZE);
1747 if (i_size >= HPAGE_PMD_SIZE &&
1748 i_size >> PAGE_SHIFT >= off)
1749 goto alloc_huge;
1750 /* fallthrough */
1751 case SHMEM_HUGE_ADVISE:
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001752 if (sgp_huge == SGP_HUGE)
1753 goto alloc_huge;
1754 /* TODO: implement fadvise() hints */
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001755 goto alloc_nohuge;
Hugh Dickins59a16ea2011-05-11 15:13:38 -07001756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001758alloc_huge:
Mike Rapoport0f079692017-09-06 16:22:59 -07001759 page = shmem_alloc_and_acct_page(gfp, inode, index, true);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001760 if (IS_ERR(page)) {
Mike Rapoport0f079692017-09-06 16:22:59 -07001761alloc_nohuge: page = shmem_alloc_and_acct_page(gfp, inode,
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001762 index, false);
Hugh Dickins54af60422011-08-03 16:21:24 -07001763 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001764 if (IS_ERR(page)) {
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001765 int retry = 5;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001766 error = PTR_ERR(page);
1767 page = NULL;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001768 if (error != -ENOSPC)
1769 goto failed;
1770 /*
1771 * Try to reclaim some spece by splitting a huge page
1772 * beyond i_size on the filesystem.
1773 */
1774 while (retry--) {
1775 int ret;
1776 ret = shmem_unused_huge_shrink(sbinfo, NULL, 1);
1777 if (ret == SHRINK_STOP)
1778 break;
1779 if (ret)
1780 goto alloc_nohuge;
1781 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001782 goto failed;
1783 }
1784
1785 if (PageTransHuge(page))
1786 hindex = round_down(index, HPAGE_PMD_NR);
1787 else
1788 hindex = index;
1789
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001790 if (sgp == SGP_WRITE)
Hugh Dickinseb39d612014-08-06 16:06:43 -07001791 __SetPageReferenced(page);
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001792
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001793 error = mem_cgroup_try_charge(page, charge_mm, gfp, &memcg,
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001794 PageTransHuge(page));
Hugh Dickins54af60422011-08-03 16:21:24 -07001795 if (error)
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001796 goto unacct;
1797 error = radix_tree_maybe_preload_order(gfp & GFP_RECLAIM_MASK,
1798 compound_order(page));
Hugh Dickinsb065b432012-07-11 14:02:48 -07001799 if (!error) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001800 error = shmem_add_to_page_cache(page, mapping, hindex,
Wang Sheng-Huifed400a2014-08-06 16:07:26 -07001801 NULL);
Hugh Dickinsb065b432012-07-11 14:02:48 -07001802 radix_tree_preload_end();
1803 }
1804 if (error) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001805 mem_cgroup_cancel_charge(page, memcg,
1806 PageTransHuge(page));
1807 goto unacct;
Hugh Dickinsb065b432012-07-11 14:02:48 -07001808 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001809 mem_cgroup_commit_charge(page, memcg, false,
1810 PageTransHuge(page));
Hugh Dickins54af60422011-08-03 16:21:24 -07001811 lru_cache_add_anon(page);
1812
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001813 spin_lock_irq(&info->lock);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001814 info->alloced += 1 << compound_order(page);
1815 inode->i_blocks += BLOCKS_PER_PAGE << compound_order(page);
Hugh Dickins54af60422011-08-03 16:21:24 -07001816 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001817 spin_unlock_irq(&info->lock);
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001818 alloced = true;
Hugh Dickins54af60422011-08-03 16:21:24 -07001819
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001820 if (PageTransHuge(page) &&
1821 DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE) <
1822 hindex + HPAGE_PMD_NR - 1) {
1823 /*
1824 * Part of the huge page is beyond i_size: subject
1825 * to shrink under memory pressure.
1826 */
1827 spin_lock(&sbinfo->shrinklist_lock);
Cong Wangd0413532017-08-10 15:24:24 -07001828 /*
1829 * _careful to defend against unlocked access to
1830 * ->shrink_list in shmem_unused_huge_shrink()
1831 */
1832 if (list_empty_careful(&info->shrinklist)) {
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001833 list_add_tail(&info->shrinklist,
1834 &sbinfo->shrinklist);
1835 sbinfo->shrinklist_len++;
1836 }
1837 spin_unlock(&sbinfo->shrinklist_lock);
1838 }
1839
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001840 /*
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001841 * Let SGP_FALLOC use the SGP_WRITE optimization on a new page.
1842 */
1843 if (sgp == SGP_FALLOC)
1844 sgp = SGP_WRITE;
1845clear:
1846 /*
1847 * Let SGP_WRITE caller clear ends if write does not fill page;
1848 * but SGP_FALLOC on a page fallocated earlier must initialize
1849 * it now, lest undo on failure cancel our earlier guarantee.
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001850 */
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001851 if (sgp != SGP_WRITE && !PageUptodate(page)) {
1852 struct page *head = compound_head(page);
1853 int i;
1854
1855 for (i = 0; i < (1 << compound_order(head)); i++) {
1856 clear_highpage(head + i);
1857 flush_dcache_page(head + i);
1858 }
1859 SetPageUptodate(head);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001860 }
Hugh Dickins59a16ea2011-05-11 15:13:38 -07001861 }
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001862
Hugh Dickins54af60422011-08-03 16:21:24 -07001863 /* Perhaps the file has been truncated since we checked */
Hugh Dickins75edd342016-05-19 17:12:44 -07001864 if (sgp <= SGP_CACHE &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001865 ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) {
Hugh Dickins267a4c72015-12-11 13:40:55 -08001866 if (alloced) {
1867 ClearPageDirty(page);
1868 delete_from_page_cache(page);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001869 spin_lock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001870 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001871 spin_unlock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001872 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001873 error = -EINVAL;
Hugh Dickins267a4c72015-12-11 13:40:55 -08001874 goto unlock;
Shaohua Liff36b8012010-08-09 17:19:06 -07001875 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001876 *pagep = page + index - hindex;
Hugh Dickins54af60422011-08-03 16:21:24 -07001877 return 0;
Nick Piggind00806b2007-07-19 01:46:57 -07001878
Nick Piggind0217ac2007-07-19 01:47:03 -07001879 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07001880 * Error recovery.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 */
Hugh Dickins54af60422011-08-03 16:21:24 -07001882unacct:
Mike Rapoport0f079692017-09-06 16:22:59 -07001883 shmem_inode_unacct_blocks(inode, 1 << compound_order(page));
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001884
1885 if (PageTransHuge(page)) {
1886 unlock_page(page);
1887 put_page(page);
1888 goto alloc_nohuge;
1889 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001890failed:
Hugh Dickins267a4c72015-12-11 13:40:55 -08001891 if (swap.val && !shmem_confirm_swap(mapping, index, swap))
Hugh Dickinsd1899222012-07-11 14:02:47 -07001892 error = -EEXIST;
1893unlock:
Hugh Dickins27ab7002011-07-25 17:12:36 -07001894 if (page) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001895 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001896 put_page(page);
Hugh Dickins54af60422011-08-03 16:21:24 -07001897 }
1898 if (error == -ENOSPC && !once++) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001899 spin_lock_irq(&info->lock);
Hugh Dickins54af60422011-08-03 16:21:24 -07001900 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001901 spin_unlock_irq(&info->lock);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001902 goto repeat;
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001903 }
Hugh Dickinsd1899222012-07-11 14:02:47 -07001904 if (error == -EEXIST) /* from above or from radix_tree_insert */
Hugh Dickins54af60422011-08-03 16:21:24 -07001905 goto repeat;
1906 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907}
1908
Linus Torvalds10d20bd2016-12-05 12:10:29 -08001909/*
1910 * This is like autoremove_wake_function, but it removes the wait queue
1911 * entry unconditionally - even if something else had already woken the
1912 * target.
1913 */
Ingo Molnarac6424b2017-06-20 12:06:13 +02001914static int synchronous_wake_function(wait_queue_entry_t *wait, unsigned mode, int sync, void *key)
Linus Torvalds10d20bd2016-12-05 12:10:29 -08001915{
1916 int ret = default_wake_function(wait, mode, sync, key);
Ingo Molnar2055da92017-06-20 12:06:46 +02001917 list_del_init(&wait->entry);
Linus Torvalds10d20bd2016-12-05 12:10:29 -08001918 return ret;
1919}
1920
Dave Jiang11bac802017-02-24 14:56:41 -08001921static int shmem_fault(struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
Dave Jiang11bac802017-02-24 14:56:41 -08001923 struct vm_area_struct *vma = vmf->vma;
Al Viro496ad9a2013-01-23 17:07:38 -05001924 struct inode *inode = file_inode(vma->vm_file);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001925 gfp_t gfp = mapping_gfp_mask(inode->i_mapping);
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001926 enum sgp_type sgp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 int error;
Hugh Dickins68da9f02011-07-25 17:12:34 -07001928 int ret = VM_FAULT_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001930 /*
1931 * Trinity finds that probing a hole which tmpfs is punching can
1932 * prevent the hole-punch from ever completing: which in turn
1933 * locks writers out with its hold on i_mutex. So refrain from
Hugh Dickins8e205f72014-07-23 14:00:10 -07001934 * faulting pages into the hole while it's being punched. Although
1935 * shmem_undo_range() does remove the additions, it may be unable to
1936 * keep up, as each new page needs its own unmap_mapping_range() call,
1937 * and the i_mmap tree grows ever slower to scan if new vmas are added.
1938 *
1939 * It does not matter if we sometimes reach this check just before the
1940 * hole-punch begins, so that one fault then races with the punch:
1941 * we just need to make racing faults a rare case.
1942 *
1943 * The implementation below would be much simpler if we just used a
1944 * standard mutex or completion: but we cannot take i_mutex in fault,
1945 * and bloating every shmem inode for this unlikely case would be sad.
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001946 */
1947 if (unlikely(inode->i_private)) {
1948 struct shmem_falloc *shmem_falloc;
1949
1950 spin_lock(&inode->i_lock);
1951 shmem_falloc = inode->i_private;
Hugh Dickins8e205f72014-07-23 14:00:10 -07001952 if (shmem_falloc &&
1953 shmem_falloc->waitq &&
1954 vmf->pgoff >= shmem_falloc->start &&
1955 vmf->pgoff < shmem_falloc->next) {
1956 wait_queue_head_t *shmem_falloc_waitq;
Linus Torvalds10d20bd2016-12-05 12:10:29 -08001957 DEFINE_WAIT_FUNC(shmem_fault_wait, synchronous_wake_function);
Hugh Dickins8e205f72014-07-23 14:00:10 -07001958
1959 ret = VM_FAULT_NOPAGE;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001960 if ((vmf->flags & FAULT_FLAG_ALLOW_RETRY) &&
1961 !(vmf->flags & FAULT_FLAG_RETRY_NOWAIT)) {
Hugh Dickins8e205f72014-07-23 14:00:10 -07001962 /* It's polite to up mmap_sem if we can */
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001963 up_read(&vma->vm_mm->mmap_sem);
Hugh Dickins8e205f72014-07-23 14:00:10 -07001964 ret = VM_FAULT_RETRY;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001965 }
Hugh Dickins8e205f72014-07-23 14:00:10 -07001966
1967 shmem_falloc_waitq = shmem_falloc->waitq;
1968 prepare_to_wait(shmem_falloc_waitq, &shmem_fault_wait,
1969 TASK_UNINTERRUPTIBLE);
1970 spin_unlock(&inode->i_lock);
1971 schedule();
1972
1973 /*
1974 * shmem_falloc_waitq points into the shmem_fallocate()
1975 * stack of the hole-punching task: shmem_falloc_waitq
1976 * is usually invalid by the time we reach here, but
1977 * finish_wait() does not dereference it in that case;
1978 * though i_lock needed lest racing with wake_up_all().
1979 */
1980 spin_lock(&inode->i_lock);
1981 finish_wait(shmem_falloc_waitq, &shmem_fault_wait);
1982 spin_unlock(&inode->i_lock);
1983 return ret;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001984 }
Hugh Dickins8e205f72014-07-23 14:00:10 -07001985 spin_unlock(&inode->i_lock);
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001986 }
1987
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001988 sgp = SGP_CACHE;
Michal Hocko18600332017-07-10 15:48:02 -07001989
1990 if ((vma->vm_flags & VM_NOHUGEPAGE) ||
1991 test_bit(MMF_DISABLE_THP, &vma->vm_mm->flags))
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001992 sgp = SGP_NOHUGE;
Michal Hocko18600332017-07-10 15:48:02 -07001993 else if (vma->vm_flags & VM_HUGEPAGE)
1994 sgp = SGP_HUGE;
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001995
1996 error = shmem_getpage_gfp(inode, vmf->pgoff, &vmf->page, sgp,
Mike Rapoportcfda0522017-02-22 15:43:37 -08001997 gfp, vma, vmf, &ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if (error)
1999 return ((error == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS);
Hugh Dickins68da9f02011-07-25 17:12:34 -07002000 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001}
2002
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07002003unsigned long shmem_get_unmapped_area(struct file *file,
2004 unsigned long uaddr, unsigned long len,
2005 unsigned long pgoff, unsigned long flags)
2006{
2007 unsigned long (*get_area)(struct file *,
2008 unsigned long, unsigned long, unsigned long, unsigned long);
2009 unsigned long addr;
2010 unsigned long offset;
2011 unsigned long inflated_len;
2012 unsigned long inflated_addr;
2013 unsigned long inflated_offset;
2014
2015 if (len > TASK_SIZE)
2016 return -ENOMEM;
2017
2018 get_area = current->mm->get_unmapped_area;
2019 addr = get_area(file, uaddr, len, pgoff, flags);
2020
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07002021 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE))
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07002022 return addr;
2023 if (IS_ERR_VALUE(addr))
2024 return addr;
2025 if (addr & ~PAGE_MASK)
2026 return addr;
2027 if (addr > TASK_SIZE - len)
2028 return addr;
2029
2030 if (shmem_huge == SHMEM_HUGE_DENY)
2031 return addr;
2032 if (len < HPAGE_PMD_SIZE)
2033 return addr;
2034 if (flags & MAP_FIXED)
2035 return addr;
2036 /*
2037 * Our priority is to support MAP_SHARED mapped hugely;
2038 * and support MAP_PRIVATE mapped hugely too, until it is COWed.
2039 * But if caller specified an address hint, respect that as before.
2040 */
2041 if (uaddr)
2042 return addr;
2043
2044 if (shmem_huge != SHMEM_HUGE_FORCE) {
2045 struct super_block *sb;
2046
2047 if (file) {
2048 VM_BUG_ON(file->f_op != &shmem_file_operations);
2049 sb = file_inode(file)->i_sb;
2050 } else {
2051 /*
2052 * Called directly from mm/mmap.c, or drivers/char/mem.c
2053 * for "/dev/zero", to create a shared anonymous object.
2054 */
2055 if (IS_ERR(shm_mnt))
2056 return addr;
2057 sb = shm_mnt->mnt_sb;
2058 }
Toshi Kani3089bf62016-09-23 20:21:56 -07002059 if (SHMEM_SB(sb)->huge == SHMEM_HUGE_NEVER)
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07002060 return addr;
2061 }
2062
2063 offset = (pgoff << PAGE_SHIFT) & (HPAGE_PMD_SIZE-1);
2064 if (offset && offset + len < 2 * HPAGE_PMD_SIZE)
2065 return addr;
2066 if ((addr & (HPAGE_PMD_SIZE-1)) == offset)
2067 return addr;
2068
2069 inflated_len = len + HPAGE_PMD_SIZE - PAGE_SIZE;
2070 if (inflated_len > TASK_SIZE)
2071 return addr;
2072 if (inflated_len < len)
2073 return addr;
2074
2075 inflated_addr = get_area(NULL, 0, inflated_len, 0, flags);
2076 if (IS_ERR_VALUE(inflated_addr))
2077 return addr;
2078 if (inflated_addr & ~PAGE_MASK)
2079 return addr;
2080
2081 inflated_offset = inflated_addr & (HPAGE_PMD_SIZE-1);
2082 inflated_addr += offset - inflated_offset;
2083 if (inflated_offset > offset)
2084 inflated_addr += HPAGE_PMD_SIZE;
2085
2086 if (inflated_addr > TASK_SIZE - len)
2087 return addr;
2088 return inflated_addr;
2089}
2090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091#ifdef CONFIG_NUMA
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002092static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *mpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093{
Al Viro496ad9a2013-01-23 17:07:38 -05002094 struct inode *inode = file_inode(vma->vm_file);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002095 return mpol_set_shared_policy(&SHMEM_I(inode)->policy, vma, mpol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096}
2097
Adrian Bunkd8dc74f2007-10-16 01:26:26 -07002098static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma,
2099 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
Al Viro496ad9a2013-01-23 17:07:38 -05002101 struct inode *inode = file_inode(vma->vm_file);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002102 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002104 index = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
2105 return mpol_shared_policy_lookup(&SHMEM_I(inode)->policy, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106}
2107#endif
2108
2109int shmem_lock(struct file *file, int lock, struct user_struct *user)
2110{
Al Viro496ad9a2013-01-23 17:07:38 -05002111 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 struct shmem_inode_info *info = SHMEM_I(inode);
2113 int retval = -ENOMEM;
2114
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07002115 spin_lock_irq(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 if (lock && !(info->flags & VM_LOCKED)) {
2117 if (!user_shm_lock(inode->i_size, user))
2118 goto out_nomem;
2119 info->flags |= VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002120 mapping_set_unevictable(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 }
2122 if (!lock && (info->flags & VM_LOCKED) && user) {
2123 user_shm_unlock(inode->i_size, user);
2124 info->flags &= ~VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002125 mapping_clear_unevictable(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 }
2127 retval = 0;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129out_nomem:
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07002130 spin_unlock_irq(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 return retval;
2132}
2133
Adrian Bunk9b83a6a2007-02-28 20:11:03 -08002134static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
2136 file_accessed(file);
2137 vma->vm_ops = &shmem_vm_ops;
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07002138 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE) &&
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002139 ((vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK) <
2140 (vma->vm_end & HPAGE_PMD_MASK)) {
2141 khugepaged_enter(vma, vma->vm_flags);
2142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 return 0;
2144}
2145
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002146static struct inode *shmem_get_inode(struct super_block *sb, const struct inode *dir,
Al Viro09208d12011-07-26 03:15:03 -04002147 umode_t mode, dev_t dev, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
2149 struct inode *inode;
2150 struct shmem_inode_info *info;
2151 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
2152
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002153 if (shmem_reserve_inode(sb))
2154 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156 inode = new_inode(sb);
2157 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -04002158 inode->i_ino = get_next_ino();
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002159 inode_init_owner(inode, dir, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 inode->i_blocks = 0;
Deepa Dinamani078cd822016-09-14 07:48:04 -07002161 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
David M. Grimes91828a42006-10-17 00:09:45 -07002162 inode->i_generation = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 info = SHMEM_I(inode);
2164 memset(info, 0, (char *)inode - (char *)info);
2165 spin_lock_init(&info->lock);
David Herrmann40e041a2014-08-08 14:25:27 -07002166 info->seals = F_SEAL_SEAL;
Hugh Dickins0b0a0802009-02-24 20:51:52 +00002167 info->flags = flags & VM_NORESERVE;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07002168 INIT_LIST_HEAD(&info->shrinklist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 INIT_LIST_HEAD(&info->swaplist);
Aristeu Rozanski38f38652012-08-23 16:53:28 -04002170 simple_xattrs_init(&info->xattrs);
Al Viro72c04902009-06-24 16:58:48 -04002171 cache_no_acl(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173 switch (mode & S_IFMT) {
2174 default:
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002175 inode->i_op = &shmem_special_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 init_special_inode(inode, mode, dev);
2177 break;
2178 case S_IFREG:
Hugh Dickins14fcc232008-07-28 15:46:19 -07002179 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 inode->i_op = &shmem_inode_operations;
2181 inode->i_fop = &shmem_file_operations;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002182 mpol_shared_policy_init(&info->policy,
2183 shmem_get_sbmpol(sbinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 break;
2185 case S_IFDIR:
Dave Hansend8c76e62006-09-30 23:29:04 -07002186 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 /* Some things misbehave if size == 0 on a directory */
2188 inode->i_size = 2 * BOGO_DIRENT_SIZE;
2189 inode->i_op = &shmem_dir_inode_operations;
2190 inode->i_fop = &simple_dir_operations;
2191 break;
2192 case S_IFLNK:
2193 /*
2194 * Must not load anything in the rbtree,
2195 * mpol_free_shared_policy will not be called.
2196 */
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002197 mpol_shared_policy_init(&info->policy, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 break;
2199 }
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002200 } else
2201 shmem_free_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 return inode;
2203}
2204
Johannes Weiner0cd61442014-04-03 14:47:46 -07002205bool shmem_mapping(struct address_space *mapping)
2206{
Hugh Dickinsf8005452017-02-22 15:41:42 -08002207 return mapping->a_ops == &shmem_aops;
Johannes Weiner0cd61442014-04-03 14:47:46 -07002208}
2209
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002210int shmem_mcopy_atomic_pte(struct mm_struct *dst_mm,
2211 pmd_t *dst_pmd,
2212 struct vm_area_struct *dst_vma,
2213 unsigned long dst_addr,
2214 unsigned long src_addr,
2215 struct page **pagep)
2216{
2217 struct inode *inode = file_inode(dst_vma->vm_file);
2218 struct shmem_inode_info *info = SHMEM_I(inode);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002219 struct address_space *mapping = inode->i_mapping;
2220 gfp_t gfp = mapping_gfp_mask(mapping);
2221 pgoff_t pgoff = linear_page_index(dst_vma, dst_addr);
2222 struct mem_cgroup *memcg;
2223 spinlock_t *ptl;
2224 void *page_kaddr;
2225 struct page *page;
2226 pte_t _dst_pte, *dst_pte;
2227 int ret;
2228
Andrea Arcangelicb658a42017-02-22 15:43:55 -08002229 ret = -ENOMEM;
Mike Rapoport0f079692017-09-06 16:22:59 -07002230 if (!shmem_inode_acct_block(inode, 1))
Andrea Arcangelicb658a42017-02-22 15:43:55 -08002231 goto out;
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002232
Andrea Arcangelicb658a42017-02-22 15:43:55 -08002233 if (!*pagep) {
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002234 page = shmem_alloc_page(gfp, info, pgoff);
2235 if (!page)
Mike Rapoport0f079692017-09-06 16:22:59 -07002236 goto out_unacct_blocks;
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002237
2238 page_kaddr = kmap_atomic(page);
2239 ret = copy_from_user(page_kaddr, (const void __user *)src_addr,
2240 PAGE_SIZE);
2241 kunmap_atomic(page_kaddr);
2242
2243 /* fallback to copy_from_user outside mmap_sem */
2244 if (unlikely(ret)) {
2245 *pagep = page;
Mike Rapoport0f079692017-09-06 16:22:59 -07002246 shmem_inode_unacct_blocks(inode, 1);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002247 /* don't free the page */
2248 return -EFAULT;
2249 }
2250 } else {
2251 page = *pagep;
2252 *pagep = NULL;
2253 }
2254
Andrea Arcangeli9cc90c62017-02-22 15:43:49 -08002255 VM_BUG_ON(PageLocked(page) || PageSwapBacked(page));
2256 __SetPageLocked(page);
2257 __SetPageSwapBacked(page);
Andrea Arcangelia425d352017-02-22 15:43:52 -08002258 __SetPageUptodate(page);
Andrea Arcangeli9cc90c62017-02-22 15:43:49 -08002259
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002260 ret = mem_cgroup_try_charge(page, dst_mm, gfp, &memcg, false);
2261 if (ret)
2262 goto out_release;
2263
2264 ret = radix_tree_maybe_preload(gfp & GFP_RECLAIM_MASK);
2265 if (!ret) {
2266 ret = shmem_add_to_page_cache(page, mapping, pgoff, NULL);
2267 radix_tree_preload_end();
2268 }
2269 if (ret)
2270 goto out_release_uncharge;
2271
2272 mem_cgroup_commit_charge(page, memcg, false, false);
2273
2274 _dst_pte = mk_pte(page, dst_vma->vm_page_prot);
2275 if (dst_vma->vm_flags & VM_WRITE)
2276 _dst_pte = pte_mkwrite(pte_mkdirty(_dst_pte));
2277
2278 ret = -EEXIST;
2279 dst_pte = pte_offset_map_lock(dst_mm, dst_pmd, dst_addr, &ptl);
2280 if (!pte_none(*dst_pte))
2281 goto out_release_uncharge_unlock;
2282
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002283 lru_cache_add_anon(page);
2284
2285 spin_lock(&info->lock);
2286 info->alloced++;
2287 inode->i_blocks += BLOCKS_PER_PAGE;
2288 shmem_recalc_inode(inode);
2289 spin_unlock(&info->lock);
2290
2291 inc_mm_counter(dst_mm, mm_counter_file(page));
2292 page_add_file_rmap(page, false);
2293 set_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte);
2294
2295 /* No need to invalidate - it was non-present before */
2296 update_mmu_cache(dst_vma, dst_addr, dst_pte);
2297 unlock_page(page);
2298 pte_unmap_unlock(dst_pte, ptl);
2299 ret = 0;
2300out:
2301 return ret;
2302out_release_uncharge_unlock:
2303 pte_unmap_unlock(dst_pte, ptl);
2304out_release_uncharge:
2305 mem_cgroup_cancel_charge(page, memcg, false);
2306out_release:
Andrea Arcangeli9cc90c62017-02-22 15:43:49 -08002307 unlock_page(page);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002308 put_page(page);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002309out_unacct_blocks:
Mike Rapoport0f079692017-09-06 16:22:59 -07002310 shmem_inode_unacct_blocks(inode, 1);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002311 goto out;
2312}
2313
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314#ifdef CONFIG_TMPFS
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002315static const struct inode_operations shmem_symlink_inode_operations;
Hugh Dickins69f07ec2011-08-03 16:21:26 -07002316static const struct inode_operations shmem_short_symlink_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07002318#ifdef CONFIG_TMPFS_XATTR
2319static int shmem_initxattrs(struct inode *, const struct xattr *, void *);
2320#else
2321#define shmem_initxattrs NULL
2322#endif
2323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324static int
Nick Piggin800d15a2007-10-16 01:25:03 -07002325shmem_write_begin(struct file *file, struct address_space *mapping,
2326 loff_t pos, unsigned len, unsigned flags,
2327 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328{
Nick Piggin800d15a2007-10-16 01:25:03 -07002329 struct inode *inode = mapping->host;
David Herrmann40e041a2014-08-08 14:25:27 -07002330 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002331 pgoff_t index = pos >> PAGE_SHIFT;
David Herrmann40e041a2014-08-08 14:25:27 -07002332
2333 /* i_mutex is held by caller */
Steven Rostedt (VMware)3f472cc2017-02-24 14:59:10 -08002334 if (unlikely(info->seals & (F_SEAL_WRITE | F_SEAL_GROW))) {
David Herrmann40e041a2014-08-08 14:25:27 -07002335 if (info->seals & F_SEAL_WRITE)
2336 return -EPERM;
2337 if ((info->seals & F_SEAL_GROW) && pos + len > inode->i_size)
2338 return -EPERM;
2339 }
2340
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07002341 return shmem_getpage(inode, index, pagep, SGP_WRITE);
Nick Piggin800d15a2007-10-16 01:25:03 -07002342}
2343
2344static int
2345shmem_write_end(struct file *file, struct address_space *mapping,
2346 loff_t pos, unsigned len, unsigned copied,
2347 struct page *page, void *fsdata)
2348{
2349 struct inode *inode = mapping->host;
2350
Hugh Dickinsd3602442008-02-04 22:28:44 -08002351 if (pos + copied > inode->i_size)
2352 i_size_write(inode, pos + copied);
2353
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002354 if (!PageUptodate(page)) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07002355 struct page *head = compound_head(page);
2356 if (PageTransCompound(page)) {
2357 int i;
2358
2359 for (i = 0; i < HPAGE_PMD_NR; i++) {
2360 if (head + i == page)
2361 continue;
2362 clear_highpage(head + i);
2363 flush_dcache_page(head + i);
2364 }
2365 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002366 if (copied < PAGE_SIZE) {
2367 unsigned from = pos & (PAGE_SIZE - 1);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002368 zero_user_segments(page, 0, from,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002369 from + copied, PAGE_SIZE);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002370 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07002371 SetPageUptodate(head);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002372 }
Nick Piggin800d15a2007-10-16 01:25:03 -07002373 set_page_dirty(page);
Wu Fengguang6746aff2009-09-16 11:50:14 +02002374 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002375 put_page(page);
Nick Piggin800d15a2007-10-16 01:25:03 -07002376
Nick Piggin800d15a2007-10-16 01:25:03 -07002377 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378}
2379
Al Viro2ba5bbe2014-04-02 20:00:02 -04002380static ssize_t shmem_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381{
Al Viro6e58e792014-02-03 17:07:03 -05002382 struct file *file = iocb->ki_filp;
2383 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 struct address_space *mapping = inode->i_mapping;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002385 pgoff_t index;
2386 unsigned long offset;
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08002387 enum sgp_type sgp = SGP_READ;
Geert Uytterhoevenf7c1d072014-04-13 20:46:22 +02002388 int error = 0;
Al Virocb66a7a2014-03-04 15:24:06 -05002389 ssize_t retval = 0;
Al Viro6e58e792014-02-03 17:07:03 -05002390 loff_t *ppos = &iocb->ki_pos;
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08002391
2392 /*
2393 * Might this read be for a stacking filesystem? Then when reading
2394 * holes of a sparse file, we actually need to allocate those pages,
2395 * and even mark them dirty, so it cannot exceed the max_blocks limit.
2396 */
Al Viro777eda22014-12-17 04:46:46 -05002397 if (!iter_is_iovec(to))
Hugh Dickins75edd342016-05-19 17:12:44 -07002398 sgp = SGP_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002400 index = *ppos >> PAGE_SHIFT;
2401 offset = *ppos & ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
2403 for (;;) {
2404 struct page *page = NULL;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002405 pgoff_t end_index;
2406 unsigned long nr, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 loff_t i_size = i_size_read(inode);
2408
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002409 end_index = i_size >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 if (index > end_index)
2411 break;
2412 if (index == end_index) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002413 nr = i_size & ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 if (nr <= offset)
2415 break;
2416 }
2417
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07002418 error = shmem_getpage(inode, index, &page, sgp);
Al Viro6e58e792014-02-03 17:07:03 -05002419 if (error) {
2420 if (error == -EINVAL)
2421 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 break;
2423 }
Hugh Dickins75edd342016-05-19 17:12:44 -07002424 if (page) {
2425 if (sgp == SGP_CACHE)
2426 set_page_dirty(page);
Hugh Dickinsd3602442008-02-04 22:28:44 -08002427 unlock_page(page);
Hugh Dickins75edd342016-05-19 17:12:44 -07002428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430 /*
2431 * We must evaluate after, since reads (unlike writes)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002432 * are called without i_mutex protection against truncate
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002434 nr = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002436 end_index = i_size >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 if (index == end_index) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002438 nr = i_size & ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 if (nr <= offset) {
2440 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002441 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 break;
2443 }
2444 }
2445 nr -= offset;
2446
2447 if (page) {
2448 /*
2449 * If users can be writing to this page using arbitrary
2450 * virtual addresses, take care about potential aliasing
2451 * before reading the page on the kernel side.
2452 */
2453 if (mapping_writably_mapped(mapping))
2454 flush_dcache_page(page);
2455 /*
2456 * Mark the page accessed if we read the beginning.
2457 */
2458 if (!offset)
2459 mark_page_accessed(page);
Nick Pigginb5810032005-10-29 18:16:12 -07002460 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 page = ZERO_PAGE(0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002462 get_page(page);
Nick Pigginb5810032005-10-29 18:16:12 -07002463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
2465 /*
2466 * Ok, we have the page, and it's up-to-date, so
2467 * now we can copy it to user space...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 */
Al Viro2ba5bbe2014-04-02 20:00:02 -04002469 ret = copy_page_to_iter(page, offset, nr, to);
Al Viro6e58e792014-02-03 17:07:03 -05002470 retval += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 offset += ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002472 index += offset >> PAGE_SHIFT;
2473 offset &= ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002475 put_page(page);
Al Viro2ba5bbe2014-04-02 20:00:02 -04002476 if (!iov_iter_count(to))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 break;
Al Viro6e58e792014-02-03 17:07:03 -05002478 if (ret < nr) {
2479 error = -EFAULT;
2480 break;
2481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 cond_resched();
2483 }
2484
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002485 *ppos = ((loff_t) index << PAGE_SHIFT) + offset;
Al Viro6e58e792014-02-03 17:07:03 -05002486 file_accessed(file);
2487 return retval ? retval : error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488}
2489
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002490/*
2491 * llseek SEEK_DATA or SEEK_HOLE through the radix_tree.
2492 */
2493static pgoff_t shmem_seek_hole_data(struct address_space *mapping,
Andrew Morton965c8e52012-12-17 15:59:39 -08002494 pgoff_t index, pgoff_t end, int whence)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002495{
2496 struct page *page;
2497 struct pagevec pvec;
2498 pgoff_t indices[PAGEVEC_SIZE];
2499 bool done = false;
2500 int i;
2501
2502 pagevec_init(&pvec, 0);
2503 pvec.nr = 1; /* start small: we may be there already */
2504 while (!done) {
Johannes Weiner0cd61442014-04-03 14:47:46 -07002505 pvec.nr = find_get_entries(mapping, index,
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002506 pvec.nr, pvec.pages, indices);
2507 if (!pvec.nr) {
Andrew Morton965c8e52012-12-17 15:59:39 -08002508 if (whence == SEEK_DATA)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002509 index = end;
2510 break;
2511 }
2512 for (i = 0; i < pvec.nr; i++, index++) {
2513 if (index < indices[i]) {
Andrew Morton965c8e52012-12-17 15:59:39 -08002514 if (whence == SEEK_HOLE) {
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002515 done = true;
2516 break;
2517 }
2518 index = indices[i];
2519 }
2520 page = pvec.pages[i];
2521 if (page && !radix_tree_exceptional_entry(page)) {
2522 if (!PageUptodate(page))
2523 page = NULL;
2524 }
2525 if (index >= end ||
Andrew Morton965c8e52012-12-17 15:59:39 -08002526 (page && whence == SEEK_DATA) ||
2527 (!page && whence == SEEK_HOLE)) {
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002528 done = true;
2529 break;
2530 }
2531 }
Johannes Weiner0cd61442014-04-03 14:47:46 -07002532 pagevec_remove_exceptionals(&pvec);
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002533 pagevec_release(&pvec);
2534 pvec.nr = PAGEVEC_SIZE;
2535 cond_resched();
2536 }
2537 return index;
2538}
2539
Andrew Morton965c8e52012-12-17 15:59:39 -08002540static loff_t shmem_file_llseek(struct file *file, loff_t offset, int whence)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002541{
2542 struct address_space *mapping = file->f_mapping;
2543 struct inode *inode = mapping->host;
2544 pgoff_t start, end;
2545 loff_t new_offset;
2546
Andrew Morton965c8e52012-12-17 15:59:39 -08002547 if (whence != SEEK_DATA && whence != SEEK_HOLE)
2548 return generic_file_llseek_size(file, offset, whence,
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002549 MAX_LFS_FILESIZE, i_size_read(inode));
Al Viro59551022016-01-22 15:40:57 -05002550 inode_lock(inode);
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002551 /* We're holding i_mutex so we can access i_size directly */
2552
2553 if (offset < 0)
2554 offset = -EINVAL;
2555 else if (offset >= inode->i_size)
2556 offset = -ENXIO;
2557 else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002558 start = offset >> PAGE_SHIFT;
2559 end = (inode->i_size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Andrew Morton965c8e52012-12-17 15:59:39 -08002560 new_offset = shmem_seek_hole_data(mapping, start, end, whence);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002561 new_offset <<= PAGE_SHIFT;
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002562 if (new_offset > offset) {
2563 if (new_offset < inode->i_size)
2564 offset = new_offset;
Andrew Morton965c8e52012-12-17 15:59:39 -08002565 else if (whence == SEEK_DATA)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002566 offset = -ENXIO;
2567 else
2568 offset = inode->i_size;
2569 }
2570 }
2571
Hugh Dickins387aae62013-08-04 11:30:25 -07002572 if (offset >= 0)
2573 offset = vfs_setpos(file, offset, MAX_LFS_FILESIZE);
Al Viro59551022016-01-22 15:40:57 -05002574 inode_unlock(inode);
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002575 return offset;
2576}
2577
David Herrmann05f65b52014-08-08 14:25:36 -07002578/*
2579 * We need a tag: a new tag would expand every radix_tree_node by 8 bytes,
2580 * so reuse a tag which we firmly believe is never set or cleared on shmem.
2581 */
2582#define SHMEM_TAG_PINNED PAGECACHE_TAG_TOWRITE
2583#define LAST_SCAN 4 /* about 150ms max */
2584
2585static void shmem_tag_pins(struct address_space *mapping)
2586{
2587 struct radix_tree_iter iter;
2588 void **slot;
2589 pgoff_t start;
2590 struct page *page;
2591
2592 lru_add_drain();
2593 start = 0;
2594 rcu_read_lock();
2595
David Herrmann05f65b52014-08-08 14:25:36 -07002596 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
2597 page = radix_tree_deref_slot(slot);
2598 if (!page || radix_tree_exception(page)) {
Matthew Wilcox2cf938a2016-03-17 14:22:03 -07002599 if (radix_tree_deref_retry(page)) {
2600 slot = radix_tree_iter_retry(&iter);
2601 continue;
2602 }
David Herrmann05f65b52014-08-08 14:25:36 -07002603 } else if (page_count(page) - page_mapcount(page) > 1) {
2604 spin_lock_irq(&mapping->tree_lock);
2605 radix_tree_tag_set(&mapping->page_tree, iter.index,
2606 SHMEM_TAG_PINNED);
2607 spin_unlock_irq(&mapping->tree_lock);
2608 }
2609
2610 if (need_resched()) {
Matthew Wilcox148deab2016-12-14 15:08:49 -08002611 slot = radix_tree_iter_resume(slot, &iter);
David Herrmann05f65b52014-08-08 14:25:36 -07002612 cond_resched_rcu();
David Herrmann05f65b52014-08-08 14:25:36 -07002613 }
2614 }
2615 rcu_read_unlock();
2616}
2617
2618/*
2619 * Setting SEAL_WRITE requires us to verify there's no pending writer. However,
2620 * via get_user_pages(), drivers might have some pending I/O without any active
2621 * user-space mappings (eg., direct-IO, AIO). Therefore, we look at all pages
2622 * and see whether it has an elevated ref-count. If so, we tag them and wait for
2623 * them to be dropped.
2624 * The caller must guarantee that no new user will acquire writable references
2625 * to those pages to avoid races.
2626 */
David Herrmann40e041a2014-08-08 14:25:27 -07002627static int shmem_wait_for_pins(struct address_space *mapping)
2628{
David Herrmann05f65b52014-08-08 14:25:36 -07002629 struct radix_tree_iter iter;
2630 void **slot;
2631 pgoff_t start;
2632 struct page *page;
2633 int error, scan;
2634
2635 shmem_tag_pins(mapping);
2636
2637 error = 0;
2638 for (scan = 0; scan <= LAST_SCAN; scan++) {
2639 if (!radix_tree_tagged(&mapping->page_tree, SHMEM_TAG_PINNED))
2640 break;
2641
2642 if (!scan)
2643 lru_add_drain_all();
2644 else if (schedule_timeout_killable((HZ << scan) / 200))
2645 scan = LAST_SCAN;
2646
2647 start = 0;
2648 rcu_read_lock();
David Herrmann05f65b52014-08-08 14:25:36 -07002649 radix_tree_for_each_tagged(slot, &mapping->page_tree, &iter,
2650 start, SHMEM_TAG_PINNED) {
2651
2652 page = radix_tree_deref_slot(slot);
2653 if (radix_tree_exception(page)) {
Matthew Wilcox2cf938a2016-03-17 14:22:03 -07002654 if (radix_tree_deref_retry(page)) {
2655 slot = radix_tree_iter_retry(&iter);
2656 continue;
2657 }
David Herrmann05f65b52014-08-08 14:25:36 -07002658
2659 page = NULL;
2660 }
2661
2662 if (page &&
2663 page_count(page) - page_mapcount(page) != 1) {
2664 if (scan < LAST_SCAN)
2665 goto continue_resched;
2666
2667 /*
2668 * On the last scan, we clean up all those tags
2669 * we inserted; but make a note that we still
2670 * found pages pinned.
2671 */
2672 error = -EBUSY;
2673 }
2674
2675 spin_lock_irq(&mapping->tree_lock);
2676 radix_tree_tag_clear(&mapping->page_tree,
2677 iter.index, SHMEM_TAG_PINNED);
2678 spin_unlock_irq(&mapping->tree_lock);
2679continue_resched:
2680 if (need_resched()) {
Matthew Wilcox148deab2016-12-14 15:08:49 -08002681 slot = radix_tree_iter_resume(slot, &iter);
David Herrmann05f65b52014-08-08 14:25:36 -07002682 cond_resched_rcu();
David Herrmann05f65b52014-08-08 14:25:36 -07002683 }
2684 }
2685 rcu_read_unlock();
2686 }
2687
2688 return error;
David Herrmann40e041a2014-08-08 14:25:27 -07002689}
2690
2691#define F_ALL_SEALS (F_SEAL_SEAL | \
2692 F_SEAL_SHRINK | \
2693 F_SEAL_GROW | \
2694 F_SEAL_WRITE)
2695
2696int shmem_add_seals(struct file *file, unsigned int seals)
2697{
2698 struct inode *inode = file_inode(file);
2699 struct shmem_inode_info *info = SHMEM_I(inode);
2700 int error;
2701
2702 /*
2703 * SEALING
2704 * Sealing allows multiple parties to share a shmem-file but restrict
2705 * access to a specific subset of file operations. Seals can only be
2706 * added, but never removed. This way, mutually untrusted parties can
2707 * share common memory regions with a well-defined policy. A malicious
2708 * peer can thus never perform unwanted operations on a shared object.
2709 *
2710 * Seals are only supported on special shmem-files and always affect
2711 * the whole underlying inode. Once a seal is set, it may prevent some
2712 * kinds of access to the file. Currently, the following seals are
2713 * defined:
2714 * SEAL_SEAL: Prevent further seals from being set on this file
2715 * SEAL_SHRINK: Prevent the file from shrinking
2716 * SEAL_GROW: Prevent the file from growing
2717 * SEAL_WRITE: Prevent write access to the file
2718 *
2719 * As we don't require any trust relationship between two parties, we
2720 * must prevent seals from being removed. Therefore, sealing a file
2721 * only adds a given set of seals to the file, it never touches
2722 * existing seals. Furthermore, the "setting seals"-operation can be
2723 * sealed itself, which basically prevents any further seal from being
2724 * added.
2725 *
2726 * Semantics of sealing are only defined on volatile files. Only
2727 * anonymous shmem files support sealing. More importantly, seals are
2728 * never written to disk. Therefore, there's no plan to support it on
2729 * other file types.
2730 */
2731
2732 if (file->f_op != &shmem_file_operations)
2733 return -EINVAL;
2734 if (!(file->f_mode & FMODE_WRITE))
2735 return -EPERM;
2736 if (seals & ~(unsigned int)F_ALL_SEALS)
2737 return -EINVAL;
2738
Al Viro59551022016-01-22 15:40:57 -05002739 inode_lock(inode);
David Herrmann40e041a2014-08-08 14:25:27 -07002740
2741 if (info->seals & F_SEAL_SEAL) {
2742 error = -EPERM;
2743 goto unlock;
2744 }
2745
2746 if ((seals & F_SEAL_WRITE) && !(info->seals & F_SEAL_WRITE)) {
2747 error = mapping_deny_writable(file->f_mapping);
2748 if (error)
2749 goto unlock;
2750
2751 error = shmem_wait_for_pins(file->f_mapping);
2752 if (error) {
2753 mapping_allow_writable(file->f_mapping);
2754 goto unlock;
2755 }
2756 }
2757
2758 info->seals |= seals;
2759 error = 0;
2760
2761unlock:
Al Viro59551022016-01-22 15:40:57 -05002762 inode_unlock(inode);
David Herrmann40e041a2014-08-08 14:25:27 -07002763 return error;
2764}
2765EXPORT_SYMBOL_GPL(shmem_add_seals);
2766
2767int shmem_get_seals(struct file *file)
2768{
2769 if (file->f_op != &shmem_file_operations)
2770 return -EINVAL;
2771
2772 return SHMEM_I(file_inode(file))->seals;
2773}
2774EXPORT_SYMBOL_GPL(shmem_get_seals);
2775
2776long shmem_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
2777{
2778 long error;
2779
2780 switch (cmd) {
2781 case F_ADD_SEALS:
2782 /* disallow upper 32bit */
2783 if (arg > UINT_MAX)
2784 return -EINVAL;
2785
2786 error = shmem_add_seals(file, arg);
2787 break;
2788 case F_GET_SEALS:
2789 error = shmem_get_seals(file);
2790 break;
2791 default:
2792 error = -EINVAL;
2793 break;
2794 }
2795
2796 return error;
2797}
2798
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002799static long shmem_fallocate(struct file *file, int mode, loff_t offset,
2800 loff_t len)
2801{
Al Viro496ad9a2013-01-23 17:07:38 -05002802 struct inode *inode = file_inode(file);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002803 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
David Herrmann40e041a2014-08-08 14:25:27 -07002804 struct shmem_inode_info *info = SHMEM_I(inode);
Hugh Dickins1aac1402012-05-29 15:06:42 -07002805 struct shmem_falloc shmem_falloc;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002806 pgoff_t start, index, end;
2807 int error;
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002808
Hugh Dickins13ace4d2014-06-23 13:22:03 -07002809 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2810 return -EOPNOTSUPP;
2811
Al Viro59551022016-01-22 15:40:57 -05002812 inode_lock(inode);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002813
2814 if (mode & FALLOC_FL_PUNCH_HOLE) {
2815 struct address_space *mapping = file->f_mapping;
2816 loff_t unmap_start = round_up(offset, PAGE_SIZE);
2817 loff_t unmap_end = round_down(offset + len, PAGE_SIZE) - 1;
Hugh Dickins8e205f72014-07-23 14:00:10 -07002818 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(shmem_falloc_waitq);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002819
David Herrmann40e041a2014-08-08 14:25:27 -07002820 /* protected by i_mutex */
2821 if (info->seals & F_SEAL_WRITE) {
2822 error = -EPERM;
2823 goto out;
2824 }
2825
Hugh Dickins8e205f72014-07-23 14:00:10 -07002826 shmem_falloc.waitq = &shmem_falloc_waitq;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07002827 shmem_falloc.start = unmap_start >> PAGE_SHIFT;
2828 shmem_falloc.next = (unmap_end + 1) >> PAGE_SHIFT;
2829 spin_lock(&inode->i_lock);
2830 inode->i_private = &shmem_falloc;
2831 spin_unlock(&inode->i_lock);
2832
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002833 if ((u64)unmap_end > (u64)unmap_start)
2834 unmap_mapping_range(mapping, unmap_start,
2835 1 + unmap_end - unmap_start, 0);
2836 shmem_truncate_range(inode, offset, offset + len - 1);
2837 /* No need to unmap again: hole-punching leaves COWed pages */
Hugh Dickins8e205f72014-07-23 14:00:10 -07002838
2839 spin_lock(&inode->i_lock);
2840 inode->i_private = NULL;
2841 wake_up_all(&shmem_falloc_waitq);
Ingo Molnar2055da92017-06-20 12:06:46 +02002842 WARN_ON_ONCE(!list_empty(&shmem_falloc_waitq.head));
Hugh Dickins8e205f72014-07-23 14:00:10 -07002843 spin_unlock(&inode->i_lock);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002844 error = 0;
Hugh Dickins8e205f72014-07-23 14:00:10 -07002845 goto out;
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002846 }
2847
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002848 /* We need to check rlimit even when FALLOC_FL_KEEP_SIZE */
2849 error = inode_newsize_ok(inode, offset + len);
2850 if (error)
2851 goto out;
2852
David Herrmann40e041a2014-08-08 14:25:27 -07002853 if ((info->seals & F_SEAL_GROW) && offset + len > inode->i_size) {
2854 error = -EPERM;
2855 goto out;
2856 }
2857
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002858 start = offset >> PAGE_SHIFT;
2859 end = (offset + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002860 /* Try to avoid a swapstorm if len is impossible to satisfy */
2861 if (sbinfo->max_blocks && end - start > sbinfo->max_blocks) {
2862 error = -ENOSPC;
2863 goto out;
2864 }
2865
Hugh Dickins8e205f72014-07-23 14:00:10 -07002866 shmem_falloc.waitq = NULL;
Hugh Dickins1aac1402012-05-29 15:06:42 -07002867 shmem_falloc.start = start;
2868 shmem_falloc.next = start;
2869 shmem_falloc.nr_falloced = 0;
2870 shmem_falloc.nr_unswapped = 0;
2871 spin_lock(&inode->i_lock);
2872 inode->i_private = &shmem_falloc;
2873 spin_unlock(&inode->i_lock);
2874
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002875 for (index = start; index < end; index++) {
2876 struct page *page;
2877
2878 /*
2879 * Good, the fallocate(2) manpage permits EINTR: we may have
2880 * been interrupted because we are using up too much memory.
2881 */
2882 if (signal_pending(current))
2883 error = -EINTR;
Hugh Dickins1aac1402012-05-29 15:06:42 -07002884 else if (shmem_falloc.nr_unswapped > shmem_falloc.nr_falloced)
2885 error = -ENOMEM;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002886 else
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07002887 error = shmem_getpage(inode, index, &page, SGP_FALLOC);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002888 if (error) {
Hugh Dickins1635f6a2012-05-29 15:06:42 -07002889 /* Remove the !PageUptodate pages we added */
Hugh Dickins7f556562016-07-10 16:46:32 -07002890 if (index > start) {
2891 shmem_undo_range(inode,
2892 (loff_t)start << PAGE_SHIFT,
2893 ((loff_t)index << PAGE_SHIFT) - 1, true);
2894 }
Hugh Dickins1aac1402012-05-29 15:06:42 -07002895 goto undone;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002896 }
2897
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002898 /*
Hugh Dickins1aac1402012-05-29 15:06:42 -07002899 * Inform shmem_writepage() how far we have reached.
2900 * No need for lock or barrier: we have the page lock.
2901 */
2902 shmem_falloc.next++;
2903 if (!PageUptodate(page))
2904 shmem_falloc.nr_falloced++;
2905
2906 /*
Hugh Dickins1635f6a2012-05-29 15:06:42 -07002907 * If !PageUptodate, leave it that way so that freeable pages
2908 * can be recognized if we need to rollback on error later.
2909 * But set_page_dirty so that memory pressure will swap rather
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002910 * than free the pages we are allocating (and SGP_CACHE pages
2911 * might still be clean: we now need to mark those dirty too).
2912 */
2913 set_page_dirty(page);
2914 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002915 put_page(page);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002916 cond_resched();
2917 }
2918
2919 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size)
2920 i_size_write(inode, offset + len);
Deepa Dinamani078cd822016-09-14 07:48:04 -07002921 inode->i_ctime = current_time(inode);
Hugh Dickins1aac1402012-05-29 15:06:42 -07002922undone:
2923 spin_lock(&inode->i_lock);
2924 inode->i_private = NULL;
2925 spin_unlock(&inode->i_lock);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002926out:
Al Viro59551022016-01-22 15:40:57 -05002927 inode_unlock(inode);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002928 return error;
2929}
2930
David Howells726c3342006-06-23 02:02:58 -07002931static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932{
David Howells726c3342006-06-23 02:02:58 -07002933 struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
2935 buf->f_type = TMPFS_MAGIC;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002936 buf->f_bsize = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 buf->f_namelen = NAME_MAX;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002938 if (sbinfo->max_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 buf->f_blocks = sbinfo->max_blocks;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002940 buf->f_bavail =
2941 buf->f_bfree = sbinfo->max_blocks -
2942 percpu_counter_sum(&sbinfo->used_blocks);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002943 }
2944 if (sbinfo->max_inodes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 buf->f_files = sbinfo->max_inodes;
2946 buf->f_ffree = sbinfo->free_inodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 }
2948 /* else leave those fields 0 like simple_statfs */
2949 return 0;
2950}
2951
2952/*
2953 * File creation. Allocate an inode, and we're done..
2954 */
2955static int
Al Viro1a67aaf2011-07-26 01:52:52 -04002956shmem_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957{
Hugh Dickins0b0a0802009-02-24 20:51:52 +00002958 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 int error = -ENOSPC;
2960
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002961 inode = shmem_get_inode(dir->i_sb, dir, mode, dev, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 if (inode) {
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002963 error = simple_acl_create(dir, inode);
2964 if (error)
2965 goto out_iput;
Eric Paris2a7dba32011-02-01 11:05:39 -05002966 error = security_inode_init_security(inode, dir,
Mimi Zohar9d8f13b2011-06-06 15:29:25 -04002967 &dentry->d_name,
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07002968 shmem_initxattrs, NULL);
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002969 if (error && error != -EOPNOTSUPP)
2970 goto out_iput;
Mimi Zohar37ec43c2013-04-14 09:21:47 -04002971
Al Viro718deb62009-12-16 19:35:36 -05002972 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 dir->i_size += BOGO_DIRENT_SIZE;
Deepa Dinamani078cd822016-09-14 07:48:04 -07002974 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 d_instantiate(dentry, inode);
2976 dget(dentry); /* Extra count - pin the dentry in core */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 }
2978 return error;
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002979out_iput:
2980 iput(inode);
2981 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982}
2983
Al Viro60545d02013-06-07 01:20:27 -04002984static int
2985shmem_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
2986{
2987 struct inode *inode;
2988 int error = -ENOSPC;
2989
2990 inode = shmem_get_inode(dir->i_sb, dir, mode, 0, VM_NORESERVE);
2991 if (inode) {
2992 error = security_inode_init_security(inode, dir,
2993 NULL,
2994 shmem_initxattrs, NULL);
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002995 if (error && error != -EOPNOTSUPP)
2996 goto out_iput;
2997 error = simple_acl_create(dir, inode);
2998 if (error)
2999 goto out_iput;
Al Viro60545d02013-06-07 01:20:27 -04003000 d_tmpfile(dentry, inode);
3001 }
3002 return error;
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003003out_iput:
3004 iput(inode);
3005 return error;
Al Viro60545d02013-06-07 01:20:27 -04003006}
3007
Al Viro18bb1db2011-07-26 01:41:39 -04003008static int shmem_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
3010 int error;
3011
3012 if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
3013 return error;
Dave Hansend8c76e62006-09-30 23:29:04 -07003014 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 return 0;
3016}
3017
Al Viro4acdaf22011-07-26 01:42:34 -04003018static int shmem_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -04003019 bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020{
3021 return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
3022}
3023
3024/*
3025 * Link a file..
3026 */
3027static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
3028{
David Howells75c3cfa2015-03-17 22:26:12 +00003029 struct inode *inode = d_inode(old_dentry);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08003030 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031
3032 /*
3033 * No ordinary (disk based) filesystem counts links as inodes;
3034 * but each new link needs a new dentry, pinning lowmem, and
3035 * tmpfs dentries cannot be pruned until they are unlinked.
3036 */
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08003037 ret = shmem_reserve_inode(inode->i_sb);
3038 if (ret)
3039 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
3041 dir->i_size += BOGO_DIRENT_SIZE;
Deepa Dinamani078cd822016-09-14 07:48:04 -07003042 inode->i_ctime = dir->i_ctime = dir->i_mtime = current_time(inode);
Dave Hansend8c76e62006-09-30 23:29:04 -07003043 inc_nlink(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04003044 ihold(inode); /* New dentry reference */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 dget(dentry); /* Extra pinning count for the created dentry */
3046 d_instantiate(dentry, inode);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08003047out:
3048 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049}
3050
3051static int shmem_unlink(struct inode *dir, struct dentry *dentry)
3052{
David Howells75c3cfa2015-03-17 22:26:12 +00003053 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08003055 if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode))
3056 shmem_free_inode(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
3058 dir->i_size -= BOGO_DIRENT_SIZE;
Deepa Dinamani078cd822016-09-14 07:48:04 -07003059 inode->i_ctime = dir->i_ctime = dir->i_mtime = current_time(inode);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07003060 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 dput(dentry); /* Undo the count from "create" - this does all the work */
3062 return 0;
3063}
3064
3065static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
3066{
3067 if (!simple_empty(dentry))
3068 return -ENOTEMPTY;
3069
David Howells75c3cfa2015-03-17 22:26:12 +00003070 drop_nlink(d_inode(dentry));
Dave Hansen9a53c3a2006-09-30 23:29:03 -07003071 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 return shmem_unlink(dir, dentry);
3073}
3074
Miklos Szeredi37456772014-07-23 15:15:34 +02003075static int shmem_exchange(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
3076{
David Howellse36cb0b2015-01-29 12:02:35 +00003077 bool old_is_dir = d_is_dir(old_dentry);
3078 bool new_is_dir = d_is_dir(new_dentry);
Miklos Szeredi37456772014-07-23 15:15:34 +02003079
3080 if (old_dir != new_dir && old_is_dir != new_is_dir) {
3081 if (old_is_dir) {
3082 drop_nlink(old_dir);
3083 inc_nlink(new_dir);
3084 } else {
3085 drop_nlink(new_dir);
3086 inc_nlink(old_dir);
3087 }
3088 }
3089 old_dir->i_ctime = old_dir->i_mtime =
3090 new_dir->i_ctime = new_dir->i_mtime =
David Howells75c3cfa2015-03-17 22:26:12 +00003091 d_inode(old_dentry)->i_ctime =
Deepa Dinamani078cd822016-09-14 07:48:04 -07003092 d_inode(new_dentry)->i_ctime = current_time(old_dir);
Miklos Szeredi37456772014-07-23 15:15:34 +02003093
3094 return 0;
3095}
3096
Miklos Szeredi46fdb792014-10-24 00:14:37 +02003097static int shmem_whiteout(struct inode *old_dir, struct dentry *old_dentry)
3098{
3099 struct dentry *whiteout;
3100 int error;
3101
3102 whiteout = d_alloc(old_dentry->d_parent, &old_dentry->d_name);
3103 if (!whiteout)
3104 return -ENOMEM;
3105
3106 error = shmem_mknod(old_dir, whiteout,
3107 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
3108 dput(whiteout);
3109 if (error)
3110 return error;
3111
3112 /*
3113 * Cheat and hash the whiteout while the old dentry is still in
3114 * place, instead of playing games with FS_RENAME_DOES_D_MOVE.
3115 *
3116 * d_lookup() will consistently find one of them at this point,
3117 * not sure which one, but that isn't even important.
3118 */
3119 d_rehash(whiteout);
3120 return 0;
3121}
3122
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123/*
3124 * The VFS layer already does all the dentry stuff for rename,
3125 * we just have to decrement the usage count for the target if
3126 * it exists so that the VFS layer correctly free's it when it
3127 * gets overwritten.
3128 */
Miklos Szeredi3b69ff52014-07-23 15:15:33 +02003129static 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 -07003130{
David Howells75c3cfa2015-03-17 22:26:12 +00003131 struct inode *inode = d_inode(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 int they_are_dirs = S_ISDIR(inode->i_mode);
3133
Miklos Szeredi46fdb792014-10-24 00:14:37 +02003134 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi3b69ff52014-07-23 15:15:33 +02003135 return -EINVAL;
3136
Miklos Szeredi37456772014-07-23 15:15:34 +02003137 if (flags & RENAME_EXCHANGE)
3138 return shmem_exchange(old_dir, old_dentry, new_dir, new_dentry);
3139
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 if (!simple_empty(new_dentry))
3141 return -ENOTEMPTY;
3142
Miklos Szeredi46fdb792014-10-24 00:14:37 +02003143 if (flags & RENAME_WHITEOUT) {
3144 int error;
3145
3146 error = shmem_whiteout(old_dir, old_dentry);
3147 if (error)
3148 return error;
3149 }
3150
David Howells75c3cfa2015-03-17 22:26:12 +00003151 if (d_really_is_positive(new_dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 (void) shmem_unlink(new_dir, new_dentry);
Miklos Szeredib9280952014-09-24 17:56:17 +02003153 if (they_are_dirs) {
David Howells75c3cfa2015-03-17 22:26:12 +00003154 drop_nlink(d_inode(new_dentry));
Dave Hansen9a53c3a2006-09-30 23:29:03 -07003155 drop_nlink(old_dir);
Miklos Szeredib9280952014-09-24 17:56:17 +02003156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 } else if (they_are_dirs) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07003158 drop_nlink(old_dir);
Dave Hansend8c76e62006-09-30 23:29:04 -07003159 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 }
3161
3162 old_dir->i_size -= BOGO_DIRENT_SIZE;
3163 new_dir->i_size += BOGO_DIRENT_SIZE;
3164 old_dir->i_ctime = old_dir->i_mtime =
3165 new_dir->i_ctime = new_dir->i_mtime =
Deepa Dinamani078cd822016-09-14 07:48:04 -07003166 inode->i_ctime = current_time(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 return 0;
3168}
3169
3170static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
3171{
3172 int error;
3173 int len;
3174 struct inode *inode;
Hugh Dickins9276aad2011-07-25 17:12:34 -07003175 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 struct shmem_inode_info *info;
3177
3178 len = strlen(symname) + 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003179 if (len > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 return -ENAMETOOLONG;
3181
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03003182 inode = shmem_get_inode(dir->i_sb, dir, S_IFLNK|S_IRWXUGO, 0, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 if (!inode)
3184 return -ENOSPC;
3185
Mimi Zohar9d8f13b2011-06-06 15:29:25 -04003186 error = security_inode_init_security(inode, dir, &dentry->d_name,
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003187 shmem_initxattrs, NULL);
Stephen Smalley570bc1c2005-09-09 13:01:43 -07003188 if (error) {
3189 if (error != -EOPNOTSUPP) {
3190 iput(inode);
3191 return error;
3192 }
3193 error = 0;
3194 }
3195
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 info = SHMEM_I(inode);
3197 inode->i_size = len-1;
Hugh Dickins69f07ec2011-08-03 16:21:26 -07003198 if (len <= SHORT_SYMLINK_LEN) {
Al Viro3ed47db2016-01-22 18:08:52 -05003199 inode->i_link = kmemdup(symname, len, GFP_KERNEL);
3200 if (!inode->i_link) {
Hugh Dickins69f07ec2011-08-03 16:21:26 -07003201 iput(inode);
3202 return -ENOMEM;
3203 }
3204 inode->i_op = &shmem_short_symlink_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 } else {
Al Viroe8ecde22016-01-14 17:52:59 -05003206 inode_nohighmem(inode);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07003207 error = shmem_getpage(inode, 0, &page, SGP_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 if (error) {
3209 iput(inode);
3210 return error;
3211 }
Hugh Dickins14fcc232008-07-28 15:46:19 -07003212 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 inode->i_op = &shmem_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05003214 memcpy(page_address(page), symname, len);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07003215 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 set_page_dirty(page);
Wu Fengguang6746aff2009-09-16 11:50:14 +02003217 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003218 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 dir->i_size += BOGO_DIRENT_SIZE;
Deepa Dinamani078cd822016-09-14 07:48:04 -07003221 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 d_instantiate(dentry, inode);
3223 dget(dentry);
3224 return 0;
3225}
3226
Al Virofceef392015-12-29 15:58:39 -05003227static void shmem_put_link(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228{
Al Virofceef392015-12-29 15:58:39 -05003229 mark_page_accessed(arg);
3230 put_page(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231}
3232
Al Viro6b255392015-11-17 10:20:54 -05003233static const char *shmem_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05003234 struct inode *inode,
3235 struct delayed_call *done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 struct page *page = NULL;
Al Viro6b255392015-11-17 10:20:54 -05003238 int error;
Al Viro6a6c9902015-11-17 10:54:32 -05003239 if (!dentry) {
3240 page = find_get_page(inode->i_mapping, 0);
3241 if (!page)
3242 return ERR_PTR(-ECHILD);
3243 if (!PageUptodate(page)) {
3244 put_page(page);
3245 return ERR_PTR(-ECHILD);
3246 }
3247 } else {
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07003248 error = shmem_getpage(inode, 0, &page, SGP_READ);
Al Viro6a6c9902015-11-17 10:54:32 -05003249 if (error)
3250 return ERR_PTR(error);
3251 unlock_page(page);
3252 }
Al Virofceef392015-12-29 15:58:39 -05003253 set_delayed_call(done, shmem_put_link, page);
Al Viro21fc61c2015-11-17 01:07:57 -05003254 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255}
3256
Eric Parisb09e0fa2011-05-24 17:12:39 -07003257#ifdef CONFIG_TMPFS_XATTR
3258/*
3259 * Superblocks without xattr inode operations may get some security.* xattr
3260 * support from the LSM "for free". As soon as we have any other xattrs
3261 * like ACLs, we also need to implement the security.* handlers at
3262 * filesystem level, though.
3263 */
3264
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003265/*
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003266 * Callback for security_inode_init_security() for acquiring xattrs.
3267 */
3268static int shmem_initxattrs(struct inode *inode,
3269 const struct xattr *xattr_array,
3270 void *fs_info)
3271{
3272 struct shmem_inode_info *info = SHMEM_I(inode);
3273 const struct xattr *xattr;
Aristeu Rozanski38f38652012-08-23 16:53:28 -04003274 struct simple_xattr *new_xattr;
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003275 size_t len;
3276
3277 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
Aristeu Rozanski38f38652012-08-23 16:53:28 -04003278 new_xattr = simple_xattr_alloc(xattr->value, xattr->value_len);
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003279 if (!new_xattr)
3280 return -ENOMEM;
3281
3282 len = strlen(xattr->name) + 1;
3283 new_xattr->name = kmalloc(XATTR_SECURITY_PREFIX_LEN + len,
3284 GFP_KERNEL);
3285 if (!new_xattr->name) {
3286 kfree(new_xattr);
3287 return -ENOMEM;
3288 }
3289
3290 memcpy(new_xattr->name, XATTR_SECURITY_PREFIX,
3291 XATTR_SECURITY_PREFIX_LEN);
3292 memcpy(new_xattr->name + XATTR_SECURITY_PREFIX_LEN,
3293 xattr->name, len);
3294
Aristeu Rozanski38f38652012-08-23 16:53:28 -04003295 simple_xattr_list_add(&info->xattrs, new_xattr);
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003296 }
3297
3298 return 0;
3299}
3300
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003301static int shmem_xattr_handler_get(const struct xattr_handler *handler,
Al Virob2968212016-04-10 20:48:24 -04003302 struct dentry *unused, struct inode *inode,
3303 const char *name, void *buffer, size_t size)
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003304{
Al Virob2968212016-04-10 20:48:24 -04003305 struct shmem_inode_info *info = SHMEM_I(inode);
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003306
3307 name = xattr_full_name(handler, name);
3308 return simple_xattr_get(&info->xattrs, name, buffer, size);
3309}
3310
3311static int shmem_xattr_handler_set(const struct xattr_handler *handler,
Al Viro59301222016-05-27 10:19:30 -04003312 struct dentry *unused, struct inode *inode,
3313 const char *name, const void *value,
3314 size_t size, int flags)
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003315{
Al Viro59301222016-05-27 10:19:30 -04003316 struct shmem_inode_info *info = SHMEM_I(inode);
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003317
3318 name = xattr_full_name(handler, name);
3319 return simple_xattr_set(&info->xattrs, name, value, size, flags);
3320}
3321
3322static const struct xattr_handler shmem_security_xattr_handler = {
3323 .prefix = XATTR_SECURITY_PREFIX,
3324 .get = shmem_xattr_handler_get,
3325 .set = shmem_xattr_handler_set,
3326};
3327
3328static const struct xattr_handler shmem_trusted_xattr_handler = {
3329 .prefix = XATTR_TRUSTED_PREFIX,
3330 .get = shmem_xattr_handler_get,
3331 .set = shmem_xattr_handler_set,
3332};
3333
Eric Parisb09e0fa2011-05-24 17:12:39 -07003334static const struct xattr_handler *shmem_xattr_handlers[] = {
3335#ifdef CONFIG_TMPFS_POSIX_ACL
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003336 &posix_acl_access_xattr_handler,
3337 &posix_acl_default_xattr_handler,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003338#endif
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003339 &shmem_security_xattr_handler,
3340 &shmem_trusted_xattr_handler,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003341 NULL
3342};
3343
Eric Parisb09e0fa2011-05-24 17:12:39 -07003344static ssize_t shmem_listxattr(struct dentry *dentry, char *buffer, size_t size)
3345{
David Howells75c3cfa2015-03-17 22:26:12 +00003346 struct shmem_inode_info *info = SHMEM_I(d_inode(dentry));
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01003347 return simple_xattr_list(d_inode(dentry), &info->xattrs, buffer, size);
Eric Parisb09e0fa2011-05-24 17:12:39 -07003348}
3349#endif /* CONFIG_TMPFS_XATTR */
3350
Hugh Dickins69f07ec2011-08-03 16:21:26 -07003351static const struct inode_operations shmem_short_symlink_operations = {
Al Viro6b255392015-11-17 10:20:54 -05003352 .get_link = simple_get_link,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003353#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003354 .listxattr = shmem_listxattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003355#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356};
3357
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003358static const struct inode_operations shmem_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -05003359 .get_link = shmem_get_link,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003360#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003361 .listxattr = shmem_listxattr,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003362#endif
Eric Parisb09e0fa2011-05-24 17:12:39 -07003363};
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003364
David M. Grimes91828a42006-10-17 00:09:45 -07003365static struct dentry *shmem_get_parent(struct dentry *child)
3366{
3367 return ERR_PTR(-ESTALE);
3368}
3369
3370static int shmem_match(struct inode *ino, void *vfh)
3371{
3372 __u32 *fh = vfh;
3373 __u64 inum = fh[2];
3374 inum = (inum << 32) | fh[1];
3375 return ino->i_ino == inum && fh[0] == ino->i_generation;
3376}
3377
Christoph Hellwig480b1162007-10-21 16:42:13 -07003378static struct dentry *shmem_fh_to_dentry(struct super_block *sb,
3379 struct fid *fid, int fh_len, int fh_type)
David M. Grimes91828a42006-10-17 00:09:45 -07003380{
David M. Grimes91828a42006-10-17 00:09:45 -07003381 struct inode *inode;
Christoph Hellwig480b1162007-10-21 16:42:13 -07003382 struct dentry *dentry = NULL;
Hugh Dickins35c2a7f2012-10-07 20:32:51 -07003383 u64 inum;
David M. Grimes91828a42006-10-17 00:09:45 -07003384
Christoph Hellwig480b1162007-10-21 16:42:13 -07003385 if (fh_len < 3)
3386 return NULL;
3387
Hugh Dickins35c2a7f2012-10-07 20:32:51 -07003388 inum = fid->raw[2];
3389 inum = (inum << 32) | fid->raw[1];
3390
Christoph Hellwig480b1162007-10-21 16:42:13 -07003391 inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]),
3392 shmem_match, fid->raw);
David M. Grimes91828a42006-10-17 00:09:45 -07003393 if (inode) {
Christoph Hellwig480b1162007-10-21 16:42:13 -07003394 dentry = d_find_alias(inode);
David M. Grimes91828a42006-10-17 00:09:45 -07003395 iput(inode);
3396 }
3397
Christoph Hellwig480b1162007-10-21 16:42:13 -07003398 return dentry;
David M. Grimes91828a42006-10-17 00:09:45 -07003399}
3400
Al Virob0b03822012-04-02 14:34:06 -04003401static int shmem_encode_fh(struct inode *inode, __u32 *fh, int *len,
3402 struct inode *parent)
David M. Grimes91828a42006-10-17 00:09:45 -07003403{
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05303404 if (*len < 3) {
3405 *len = 3;
Namjae Jeon94e07a752013-02-17 15:48:11 +09003406 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05303407 }
David M. Grimes91828a42006-10-17 00:09:45 -07003408
Al Viro1d3382cb2010-10-23 15:19:20 -04003409 if (inode_unhashed(inode)) {
David M. Grimes91828a42006-10-17 00:09:45 -07003410 /* Unfortunately insert_inode_hash is not idempotent,
3411 * so as we hash inodes here rather than at creation
3412 * time, we need a lock to ensure we only try
3413 * to do it once
3414 */
3415 static DEFINE_SPINLOCK(lock);
3416 spin_lock(&lock);
Al Viro1d3382cb2010-10-23 15:19:20 -04003417 if (inode_unhashed(inode))
David M. Grimes91828a42006-10-17 00:09:45 -07003418 __insert_inode_hash(inode,
3419 inode->i_ino + inode->i_generation);
3420 spin_unlock(&lock);
3421 }
3422
3423 fh[0] = inode->i_generation;
3424 fh[1] = inode->i_ino;
3425 fh[2] = ((__u64)inode->i_ino) >> 32;
3426
3427 *len = 3;
3428 return 1;
3429}
3430
Christoph Hellwig39655162007-10-21 16:42:17 -07003431static const struct export_operations shmem_export_ops = {
David M. Grimes91828a42006-10-17 00:09:45 -07003432 .get_parent = shmem_get_parent,
David M. Grimes91828a42006-10-17 00:09:45 -07003433 .encode_fh = shmem_encode_fh,
Christoph Hellwig480b1162007-10-21 16:42:13 -07003434 .fh_to_dentry = shmem_fh_to_dentry,
David M. Grimes91828a42006-10-17 00:09:45 -07003435};
3436
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003437static int shmem_parse_options(char *options, struct shmem_sb_info *sbinfo,
3438 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439{
3440 char *this_char, *value, *rest;
Greg Thelen49cd0a52013-02-22 16:36:02 -08003441 struct mempolicy *mpol = NULL;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003442 uid_t uid;
3443 gid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +00003445 while (options != NULL) {
3446 this_char = options;
3447 for (;;) {
3448 /*
3449 * NUL-terminate this option: unfortunately,
3450 * mount options form a comma-separated list,
3451 * but mpol's nodelist may also contain commas.
3452 */
3453 options = strchr(options, ',');
3454 if (options == NULL)
3455 break;
3456 options++;
3457 if (!isdigit(*options)) {
3458 options[-1] = '\0';
3459 break;
3460 }
3461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 if (!*this_char)
3463 continue;
3464 if ((value = strchr(this_char,'=')) != NULL) {
3465 *value++ = 0;
3466 } else {
Joe Perches11705322016-03-17 14:19:50 -07003467 pr_err("tmpfs: No value for mount option '%s'\n",
3468 this_char);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003469 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 }
3471
3472 if (!strcmp(this_char,"size")) {
3473 unsigned long long size;
3474 size = memparse(value,&rest);
3475 if (*rest == '%') {
3476 size <<= PAGE_SHIFT;
3477 size *= totalram_pages;
3478 do_div(size, 100);
3479 rest++;
3480 }
3481 if (*rest)
3482 goto bad_val;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003483 sbinfo->max_blocks =
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003484 DIV_ROUND_UP(size, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 } else if (!strcmp(this_char,"nr_blocks")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003486 sbinfo->max_blocks = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 if (*rest)
3488 goto bad_val;
3489 } else if (!strcmp(this_char,"nr_inodes")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003490 sbinfo->max_inodes = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 if (*rest)
3492 goto bad_val;
3493 } else if (!strcmp(this_char,"mode")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003494 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 continue;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003496 sbinfo->mode = simple_strtoul(value, &rest, 8) & 07777;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 if (*rest)
3498 goto bad_val;
3499 } else if (!strcmp(this_char,"uid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003500 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 continue;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003502 uid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 if (*rest)
3504 goto bad_val;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003505 sbinfo->uid = make_kuid(current_user_ns(), uid);
3506 if (!uid_valid(sbinfo->uid))
3507 goto bad_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 } else if (!strcmp(this_char,"gid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003509 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 continue;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003511 gid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 if (*rest)
3513 goto bad_val;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003514 sbinfo->gid = make_kgid(current_user_ns(), gid);
3515 if (!gid_valid(sbinfo->gid))
3516 goto bad_val;
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07003517#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003518 } else if (!strcmp(this_char, "huge")) {
3519 int huge;
3520 huge = shmem_parse_huge(value);
3521 if (huge < 0)
3522 goto bad_val;
3523 if (!has_transparent_hugepage() &&
3524 huge != SHMEM_HUGE_NEVER)
3525 goto bad_val;
3526 sbinfo->huge = huge;
3527#endif
3528#ifdef CONFIG_NUMA
Robin Holt7339ff82006-01-14 13:20:48 -08003529 } else if (!strcmp(this_char,"mpol")) {
Greg Thelen49cd0a52013-02-22 16:36:02 -08003530 mpol_put(mpol);
3531 mpol = NULL;
3532 if (mpol_parse_str(value, &mpol))
Robin Holt7339ff82006-01-14 13:20:48 -08003533 goto bad_val;
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003534#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 } else {
Joe Perches11705322016-03-17 14:19:50 -07003536 pr_err("tmpfs: Bad mount option %s\n", this_char);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003537 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 }
3539 }
Greg Thelen49cd0a52013-02-22 16:36:02 -08003540 sbinfo->mpol = mpol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 return 0;
3542
3543bad_val:
Joe Perches11705322016-03-17 14:19:50 -07003544 pr_err("tmpfs: Bad value '%s' for mount option '%s'\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 value, this_char);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003546error:
3547 mpol_put(mpol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 return 1;
3549
3550}
3551
3552static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
3553{
3554 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003555 struct shmem_sb_info config = *sbinfo;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003556 unsigned long inodes;
3557 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558
Greg Thelen5f001102013-02-22 16:36:01 -08003559 config.mpol = NULL;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003560 if (shmem_parse_options(data, &config, true))
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003561 return error;
3562
3563 spin_lock(&sbinfo->stat_lock);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003564 inodes = sbinfo->max_inodes - sbinfo->free_inodes;
Tim Chen7e496292010-08-09 17:19:05 -07003565 if (percpu_counter_compare(&sbinfo->used_blocks, config.max_blocks) > 0)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003566 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003567 if (config.max_inodes < inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003568 goto out;
3569 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07003570 * Those tests disallow limited->unlimited while any are in use;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003571 * but we must separately disallow unlimited->limited, because
3572 * in that case we have no record of how much is already in use.
3573 */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003574 if (config.max_blocks && !sbinfo->max_blocks)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003575 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003576 if (config.max_inodes && !sbinfo->max_inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003577 goto out;
3578
3579 error = 0;
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003580 sbinfo->huge = config.huge;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003581 sbinfo->max_blocks = config.max_blocks;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003582 sbinfo->max_inodes = config.max_inodes;
3583 sbinfo->free_inodes = config.max_inodes - inodes;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07003584
Greg Thelen5f001102013-02-22 16:36:01 -08003585 /*
3586 * Preserve previous mempolicy unless mpol remount option was specified.
3587 */
3588 if (config.mpol) {
3589 mpol_put(sbinfo->mpol);
3590 sbinfo->mpol = config.mpol; /* transfers initial ref */
3591 }
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003592out:
3593 spin_unlock(&sbinfo->stat_lock);
3594 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003596
Al Viro34c80b12011-12-08 21:32:45 -05003597static int shmem_show_options(struct seq_file *seq, struct dentry *root)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003598{
Al Viro34c80b12011-12-08 21:32:45 -05003599 struct shmem_sb_info *sbinfo = SHMEM_SB(root->d_sb);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003600
3601 if (sbinfo->max_blocks != shmem_default_max_blocks())
3602 seq_printf(seq, ",size=%luk",
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003603 sbinfo->max_blocks << (PAGE_SHIFT - 10));
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003604 if (sbinfo->max_inodes != shmem_default_max_inodes())
3605 seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
3606 if (sbinfo->mode != (S_IRWXUGO | S_ISVTX))
Al Viro09208d12011-07-26 03:15:03 -04003607 seq_printf(seq, ",mode=%03ho", sbinfo->mode);
Eric W. Biederman8751e032012-02-07 16:46:12 -08003608 if (!uid_eq(sbinfo->uid, GLOBAL_ROOT_UID))
3609 seq_printf(seq, ",uid=%u",
3610 from_kuid_munged(&init_user_ns, sbinfo->uid));
3611 if (!gid_eq(sbinfo->gid, GLOBAL_ROOT_GID))
3612 seq_printf(seq, ",gid=%u",
3613 from_kgid_munged(&init_user_ns, sbinfo->gid));
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07003614#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003615 /* Rightly or wrongly, show huge mount option unmasked by shmem_huge */
3616 if (sbinfo->huge)
3617 seq_printf(seq, ",huge=%s", shmem_format_huge(sbinfo->huge));
3618#endif
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07003619 shmem_show_mpol(seq, sbinfo->mpol);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003620 return 0;
3621}
David Herrmann9183df22014-08-08 14:25:29 -07003622
3623#define MFD_NAME_PREFIX "memfd:"
3624#define MFD_NAME_PREFIX_LEN (sizeof(MFD_NAME_PREFIX) - 1)
3625#define MFD_NAME_MAX_LEN (NAME_MAX - MFD_NAME_PREFIX_LEN)
3626
3627#define MFD_ALL_FLAGS (MFD_CLOEXEC | MFD_ALLOW_SEALING)
3628
3629SYSCALL_DEFINE2(memfd_create,
3630 const char __user *, uname,
3631 unsigned int, flags)
3632{
3633 struct shmem_inode_info *info;
3634 struct file *file;
3635 int fd, error;
3636 char *name;
3637 long len;
3638
3639 if (flags & ~(unsigned int)MFD_ALL_FLAGS)
3640 return -EINVAL;
3641
3642 /* length includes terminating zero */
3643 len = strnlen_user(uname, MFD_NAME_MAX_LEN + 1);
3644 if (len <= 0)
3645 return -EFAULT;
3646 if (len > MFD_NAME_MAX_LEN + 1)
3647 return -EINVAL;
3648
3649 name = kmalloc(len + MFD_NAME_PREFIX_LEN, GFP_TEMPORARY);
3650 if (!name)
3651 return -ENOMEM;
3652
3653 strcpy(name, MFD_NAME_PREFIX);
3654 if (copy_from_user(&name[MFD_NAME_PREFIX_LEN], uname, len)) {
3655 error = -EFAULT;
3656 goto err_name;
3657 }
3658
3659 /* terminating-zero may have changed after strnlen_user() returned */
3660 if (name[len + MFD_NAME_PREFIX_LEN - 1]) {
3661 error = -EFAULT;
3662 goto err_name;
3663 }
3664
3665 fd = get_unused_fd_flags((flags & MFD_CLOEXEC) ? O_CLOEXEC : 0);
3666 if (fd < 0) {
3667 error = fd;
3668 goto err_name;
3669 }
3670
3671 file = shmem_file_setup(name, 0, VM_NORESERVE);
3672 if (IS_ERR(file)) {
3673 error = PTR_ERR(file);
3674 goto err_fd;
3675 }
3676 info = SHMEM_I(file_inode(file));
3677 file->f_mode |= FMODE_LSEEK | FMODE_PREAD | FMODE_PWRITE;
3678 file->f_flags |= O_RDWR | O_LARGEFILE;
3679 if (flags & MFD_ALLOW_SEALING)
3680 info->seals &= ~F_SEAL_SEAL;
3681
3682 fd_install(fd, file);
3683 kfree(name);
3684 return fd;
3685
3686err_fd:
3687 put_unused_fd(fd);
3688err_name:
3689 kfree(name);
3690 return error;
3691}
3692
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003693#endif /* CONFIG_TMPFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694
3695static void shmem_put_super(struct super_block *sb)
3696{
Hugh Dickins602586a2010-08-17 15:23:56 -07003697 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
3698
3699 percpu_counter_destroy(&sbinfo->used_blocks);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003700 mpol_put(sbinfo->mpol);
Hugh Dickins602586a2010-08-17 15:23:56 -07003701 kfree(sbinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 sb->s_fs_info = NULL;
3703}
3704
Kay Sievers2b2af542009-04-30 15:23:42 +02003705int shmem_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706{
3707 struct inode *inode;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003708 struct shmem_sb_info *sbinfo;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003709 int err = -ENOMEM;
3710
3711 /* Round up to L1_CACHE_BYTES to resist false sharing */
Pekka Enberg425fbf02009-09-21 17:03:50 -07003712 sbinfo = kzalloc(max((int)sizeof(struct shmem_sb_info),
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003713 L1_CACHE_BYTES), GFP_KERNEL);
3714 if (!sbinfo)
3715 return -ENOMEM;
3716
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003717 sbinfo->mode = S_IRWXUGO | S_ISVTX;
David Howells76aac0e2008-11-14 10:39:12 +11003718 sbinfo->uid = current_fsuid();
3719 sbinfo->gid = current_fsgid();
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003720 sb->s_fs_info = sbinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003722#ifdef CONFIG_TMPFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 /*
3724 * Per default we only allow half of the physical ram per
3725 * tmpfs instance, limiting inodes to one per page of lowmem;
3726 * but the internal instance is left unlimited.
3727 */
Al Viroca4e0512013-08-31 12:57:10 -04003728 if (!(sb->s_flags & MS_KERNMOUNT)) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003729 sbinfo->max_blocks = shmem_default_max_blocks();
3730 sbinfo->max_inodes = shmem_default_max_inodes();
3731 if (shmem_parse_options(data, sbinfo, false)) {
3732 err = -EINVAL;
3733 goto failed;
3734 }
Al Viroca4e0512013-08-31 12:57:10 -04003735 } else {
3736 sb->s_flags |= MS_NOUSER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 }
David M. Grimes91828a42006-10-17 00:09:45 -07003738 sb->s_export_op = &shmem_export_ops;
Hugh Dickins2f6e38f2012-05-29 15:06:38 -07003739 sb->s_flags |= MS_NOSEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740#else
3741 sb->s_flags |= MS_NOUSER;
3742#endif
3743
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003744 spin_lock_init(&sbinfo->stat_lock);
Tejun Heo908c7f12014-09-08 09:51:29 +09003745 if (percpu_counter_init(&sbinfo->used_blocks, 0, GFP_KERNEL))
Hugh Dickins602586a2010-08-17 15:23:56 -07003746 goto failed;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003747 sbinfo->free_inodes = sbinfo->max_inodes;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07003748 spin_lock_init(&sbinfo->shrinklist_lock);
3749 INIT_LIST_HEAD(&sbinfo->shrinklist);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003750
Hugh Dickins285b2c42011-08-03 16:21:20 -07003751 sb->s_maxbytes = MAX_LFS_FILESIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003752 sb->s_blocksize = PAGE_SIZE;
3753 sb->s_blocksize_bits = PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 sb->s_magic = TMPFS_MAGIC;
3755 sb->s_op = &shmem_ops;
Robin H. Johnsoncfd95a92006-06-12 21:50:25 +01003756 sb->s_time_gran = 1;
Eric Parisb09e0fa2011-05-24 17:12:39 -07003757#ifdef CONFIG_TMPFS_XATTR
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003758 sb->s_xattr = shmem_xattr_handlers;
Eric Parisb09e0fa2011-05-24 17:12:39 -07003759#endif
3760#ifdef CONFIG_TMPFS_POSIX_ACL
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003761 sb->s_flags |= MS_POSIXACL;
3762#endif
Amir Goldstein2b4db792017-05-18 15:29:33 +03003763 uuid_gen(&sb->s_uuid);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003764
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03003765 inode = shmem_get_inode(sb, NULL, S_IFDIR | sbinfo->mode, 0, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 if (!inode)
3767 goto failed;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003768 inode->i_uid = sbinfo->uid;
3769 inode->i_gid = sbinfo->gid;
Al Viro318ceed2012-02-12 22:08:01 -05003770 sb->s_root = d_make_root(inode);
3771 if (!sb->s_root)
Al Viro48fde702012-01-08 22:15:13 -05003772 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773 return 0;
3774
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775failed:
3776 shmem_put_super(sb);
3777 return err;
3778}
3779
Pekka Enbergfcc234f2006-03-22 00:08:13 -08003780static struct kmem_cache *shmem_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781
3782static struct inode *shmem_alloc_inode(struct super_block *sb)
3783{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003784 struct shmem_inode_info *info;
3785 info = kmem_cache_alloc(shmem_inode_cachep, GFP_KERNEL);
3786 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 return NULL;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003788 return &info->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789}
3790
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003791static void shmem_destroy_callback(struct rcu_head *head)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11003792{
3793 struct inode *inode = container_of(head, struct inode, i_rcu);
Al Viro84e710d2016-04-15 00:58:55 -04003794 if (S_ISLNK(inode->i_mode))
3795 kfree(inode->i_link);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11003796 kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
3797}
3798
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799static void shmem_destroy_inode(struct inode *inode)
3800{
Al Viro09208d12011-07-26 03:15:03 -04003801 if (S_ISREG(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 mpol_free_shared_policy(&SHMEM_I(inode)->policy);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003803 call_rcu(&inode->i_rcu, shmem_destroy_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804}
3805
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003806static void shmem_init_inode(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003808 struct shmem_inode_info *info = foo;
3809 inode_init_once(&info->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810}
3811
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003812static int shmem_init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813{
3814 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
3815 sizeof(struct shmem_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -08003816 0, SLAB_PANIC|SLAB_ACCOUNT, shmem_init_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 return 0;
3818}
3819
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003820static void shmem_destroy_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07003822 kmem_cache_destroy(shmem_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823}
3824
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07003825static const struct address_space_operations shmem_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 .writepage = shmem_writepage,
Ken Chen76719322007-02-10 01:43:15 -08003827 .set_page_dirty = __set_page_dirty_no_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828#ifdef CONFIG_TMPFS
Nick Piggin800d15a2007-10-16 01:25:03 -07003829 .write_begin = shmem_write_begin,
3830 .write_end = shmem_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831#endif
Andrew Morton1c939232014-10-09 15:27:59 -07003832#ifdef CONFIG_MIGRATION
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -07003833 .migratepage = migrate_page,
Andrew Morton1c939232014-10-09 15:27:59 -07003834#endif
Andi Kleenaa261f52009-09-16 11:50:16 +02003835 .error_remove_page = generic_error_remove_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836};
3837
Helge Deller15ad7cd2006-12-06 20:40:36 -08003838static const struct file_operations shmem_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 .mmap = shmem_mmap,
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07003840 .get_unmapped_area = shmem_get_unmapped_area,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841#ifdef CONFIG_TMPFS
Hugh Dickins220f2ac2012-12-12 13:52:21 -08003842 .llseek = shmem_file_llseek,
Al Viro2ba5bbe2014-04-02 20:00:02 -04003843 .read_iter = shmem_file_read_iter,
Al Viro81742022014-04-03 03:17:43 -04003844 .write_iter = generic_file_write_iter,
Christoph Hellwig1b061d92010-05-26 17:53:41 +02003845 .fsync = noop_fsync,
Al Viro82c156f2016-09-22 23:35:42 -04003846 .splice_read = generic_file_splice_read,
Al Virof6cb85d2014-04-05 04:38:56 -04003847 .splice_write = iter_file_splice_write,
Hugh Dickins83e4fa92012-05-29 15:06:40 -07003848 .fallocate = shmem_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849#endif
3850};
3851
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003852static const struct inode_operations shmem_inode_operations = {
Yu Zhao44a30222015-09-08 15:03:33 -07003853 .getattr = shmem_getattr,
Hugh Dickins94c1e622011-06-27 16:18:03 -07003854 .setattr = shmem_setattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003855#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003856 .listxattr = shmem_listxattr,
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003857 .set_acl = simple_set_acl,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003858#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859};
3860
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003861static const struct inode_operations shmem_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862#ifdef CONFIG_TMPFS
3863 .create = shmem_create,
3864 .lookup = simple_lookup,
3865 .link = shmem_link,
3866 .unlink = shmem_unlink,
3867 .symlink = shmem_symlink,
3868 .mkdir = shmem_mkdir,
3869 .rmdir = shmem_rmdir,
3870 .mknod = shmem_mknod,
Miklos Szeredi2773bf02016-09-27 11:03:58 +02003871 .rename = shmem_rename2,
Al Viro60545d02013-06-07 01:20:27 -04003872 .tmpfile = shmem_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873#endif
Eric Parisb09e0fa2011-05-24 17:12:39 -07003874#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003875 .listxattr = shmem_listxattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003876#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003877#ifdef CONFIG_TMPFS_POSIX_ACL
Hugh Dickins94c1e622011-06-27 16:18:03 -07003878 .setattr = shmem_setattr,
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003879 .set_acl = simple_set_acl,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003880#endif
3881};
3882
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003883static const struct inode_operations shmem_special_inode_operations = {
Eric Parisb09e0fa2011-05-24 17:12:39 -07003884#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003885 .listxattr = shmem_listxattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003886#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003887#ifdef CONFIG_TMPFS_POSIX_ACL
Hugh Dickins94c1e622011-06-27 16:18:03 -07003888 .setattr = shmem_setattr,
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003889 .set_acl = simple_set_acl,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003890#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891};
3892
Hugh Dickins759b9772007-03-05 00:30:28 -08003893static const struct super_operations shmem_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 .alloc_inode = shmem_alloc_inode,
3895 .destroy_inode = shmem_destroy_inode,
3896#ifdef CONFIG_TMPFS
3897 .statfs = shmem_statfs,
3898 .remount_fs = shmem_remount_fs,
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003899 .show_options = shmem_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900#endif
Al Viro1f895f72010-06-05 19:10:41 -04003901 .evict_inode = shmem_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 .drop_inode = generic_delete_inode,
3903 .put_super = shmem_put_super,
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07003904#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
3905 .nr_cached_objects = shmem_unused_huge_count,
3906 .free_cached_objects = shmem_unused_huge_scan,
3907#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908};
3909
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04003910static const struct vm_operations_struct shmem_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07003911 .fault = shmem_fault,
Ning Qud7c17552014-04-07 15:37:24 -07003912 .map_pages = filemap_map_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913#ifdef CONFIG_NUMA
3914 .set_policy = shmem_set_policy,
3915 .get_policy = shmem_get_policy,
3916#endif
3917};
3918
Al Viro3c26ff62010-07-25 11:46:36 +04003919static struct dentry *shmem_mount(struct file_system_type *fs_type,
3920 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921{
Al Viro3c26ff62010-07-25 11:46:36 +04003922 return mount_nodev(fs_type, flags, data, shmem_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923}
3924
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003925static struct file_system_type shmem_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 .owner = THIS_MODULE,
3927 .name = "tmpfs",
Al Viro3c26ff62010-07-25 11:46:36 +04003928 .mount = shmem_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 .kill_sb = kill_litter_super,
Eric W. Biederman2b8576c2013-01-25 16:32:10 -08003930 .fs_flags = FS_USERNS_MOUNT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003933int __init shmem_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934{
3935 int error;
3936
Rob Landley16203a72013-09-11 14:26:12 -07003937 /* If rootfs called this, don't re-init */
3938 if (shmem_inode_cachep)
3939 return 0;
3940
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003941 error = shmem_init_inodecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 if (error)
3943 goto out3;
3944
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003945 error = register_filesystem(&shmem_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 if (error) {
Joe Perches11705322016-03-17 14:19:50 -07003947 pr_err("Could not register tmpfs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 goto out2;
3949 }
Greg Kroah-Hartman95dc1122005-06-20 21:15:16 -07003950
Al Viroca4e0512013-08-31 12:57:10 -04003951 shm_mnt = kern_mount(&shmem_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 if (IS_ERR(shm_mnt)) {
3953 error = PTR_ERR(shm_mnt);
Joe Perches11705322016-03-17 14:19:50 -07003954 pr_err("Could not kern_mount tmpfs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 goto out1;
3956 }
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003957
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07003958#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemov435c0b872017-08-25 15:55:33 -07003959 if (has_transparent_hugepage() && shmem_huge > SHMEM_HUGE_DENY)
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003960 SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge;
3961 else
3962 shmem_huge = 0; /* just in case it was patched */
3963#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 return 0;
3965
3966out1:
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003967 unregister_filesystem(&shmem_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968out2:
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003969 shmem_destroy_inodecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970out3:
3971 shm_mnt = ERR_PTR(error);
3972 return error;
3973}
Matt Mackall853ac432009-01-06 14:40:20 -08003974
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07003975#if defined(CONFIG_TRANSPARENT_HUGE_PAGECACHE) && defined(CONFIG_SYSFS)
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003976static ssize_t shmem_enabled_show(struct kobject *kobj,
3977 struct kobj_attribute *attr, char *buf)
3978{
3979 int values[] = {
3980 SHMEM_HUGE_ALWAYS,
3981 SHMEM_HUGE_WITHIN_SIZE,
3982 SHMEM_HUGE_ADVISE,
3983 SHMEM_HUGE_NEVER,
3984 SHMEM_HUGE_DENY,
3985 SHMEM_HUGE_FORCE,
3986 };
3987 int i, count;
3988
3989 for (i = 0, count = 0; i < ARRAY_SIZE(values); i++) {
3990 const char *fmt = shmem_huge == values[i] ? "[%s] " : "%s ";
3991
3992 count += sprintf(buf + count, fmt,
3993 shmem_format_huge(values[i]));
3994 }
3995 buf[count - 1] = '\n';
3996 return count;
3997}
3998
3999static ssize_t shmem_enabled_store(struct kobject *kobj,
4000 struct kobj_attribute *attr, const char *buf, size_t count)
4001{
4002 char tmp[16];
4003 int huge;
4004
4005 if (count + 1 > sizeof(tmp))
4006 return -EINVAL;
4007 memcpy(tmp, buf, count);
4008 tmp[count] = '\0';
4009 if (count && tmp[count - 1] == '\n')
4010 tmp[count - 1] = '\0';
4011
4012 huge = shmem_parse_huge(tmp);
4013 if (huge == -EINVAL)
4014 return -EINVAL;
4015 if (!has_transparent_hugepage() &&
4016 huge != SHMEM_HUGE_NEVER && huge != SHMEM_HUGE_DENY)
4017 return -EINVAL;
4018
4019 shmem_huge = huge;
Kirill A. Shutemov435c0b872017-08-25 15:55:33 -07004020 if (shmem_huge > SHMEM_HUGE_DENY)
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07004021 SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge;
4022 return count;
4023}
4024
4025struct kobj_attribute shmem_enabled_attr =
4026 __ATTR(shmem_enabled, 0644, shmem_enabled_show, shmem_enabled_store);
Arnd Bergmann3b337192016-08-10 16:27:44 -07004027#endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE && CONFIG_SYSFS */
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07004028
Arnd Bergmann3b337192016-08-10 16:27:44 -07004029#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07004030bool shmem_huge_enabled(struct vm_area_struct *vma)
4031{
4032 struct inode *inode = file_inode(vma->vm_file);
4033 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
4034 loff_t i_size;
4035 pgoff_t off;
4036
4037 if (shmem_huge == SHMEM_HUGE_FORCE)
4038 return true;
4039 if (shmem_huge == SHMEM_HUGE_DENY)
4040 return false;
4041 switch (sbinfo->huge) {
4042 case SHMEM_HUGE_NEVER:
4043 return false;
4044 case SHMEM_HUGE_ALWAYS:
4045 return true;
4046 case SHMEM_HUGE_WITHIN_SIZE:
4047 off = round_up(vma->vm_pgoff, HPAGE_PMD_NR);
4048 i_size = round_up(i_size_read(inode), PAGE_SIZE);
4049 if (i_size >= HPAGE_PMD_SIZE &&
4050 i_size >> PAGE_SHIFT >= off)
4051 return true;
4052 case SHMEM_HUGE_ADVISE:
4053 /* TODO: implement fadvise() hints */
4054 return (vma->vm_flags & VM_HUGEPAGE);
4055 default:
4056 VM_BUG_ON(1);
4057 return false;
4058 }
4059}
Arnd Bergmann3b337192016-08-10 16:27:44 -07004060#endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE */
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07004061
Matt Mackall853ac432009-01-06 14:40:20 -08004062#else /* !CONFIG_SHMEM */
4063
4064/*
4065 * tiny-shmem: simple shmemfs and tmpfs using ramfs code
4066 *
4067 * This is intended for small system where the benefits of the full
4068 * shmem code (swap-backed and resource-limited) are outweighed by
4069 * their complexity. On systems without swap this code should be
4070 * effectively equivalent, but much lighter weight.
4071 */
4072
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07004073static struct file_system_type shmem_fs_type = {
Matt Mackall853ac432009-01-06 14:40:20 -08004074 .name = "tmpfs",
Al Viro3c26ff62010-07-25 11:46:36 +04004075 .mount = ramfs_mount,
Matt Mackall853ac432009-01-06 14:40:20 -08004076 .kill_sb = kill_litter_super,
Eric W. Biederman2b8576c2013-01-25 16:32:10 -08004077 .fs_flags = FS_USERNS_MOUNT,
Matt Mackall853ac432009-01-06 14:40:20 -08004078};
4079
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07004080int __init shmem_init(void)
Matt Mackall853ac432009-01-06 14:40:20 -08004081{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07004082 BUG_ON(register_filesystem(&shmem_fs_type) != 0);
Matt Mackall853ac432009-01-06 14:40:20 -08004083
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07004084 shm_mnt = kern_mount(&shmem_fs_type);
Matt Mackall853ac432009-01-06 14:40:20 -08004085 BUG_ON(IS_ERR(shm_mnt));
4086
4087 return 0;
4088}
4089
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07004090int shmem_unuse(swp_entry_t swap, struct page *page)
Matt Mackall853ac432009-01-06 14:40:20 -08004091{
4092 return 0;
4093}
4094
Hugh Dickins3f96b792009-09-21 17:03:37 -07004095int shmem_lock(struct file *file, int lock, struct user_struct *user)
4096{
4097 return 0;
4098}
4099
Hugh Dickins24513262012-01-20 14:34:21 -08004100void shmem_unlock_mapping(struct address_space *mapping)
4101{
4102}
4103
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07004104#ifdef CONFIG_MMU
4105unsigned long shmem_get_unmapped_area(struct file *file,
4106 unsigned long addr, unsigned long len,
4107 unsigned long pgoff, unsigned long flags)
4108{
4109 return current->mm->get_unmapped_area(file, addr, len, pgoff, flags);
4110}
4111#endif
4112
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07004113void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
Hugh Dickins94c1e622011-06-27 16:18:03 -07004114{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07004115 truncate_inode_pages_range(inode->i_mapping, lstart, lend);
Hugh Dickins94c1e622011-06-27 16:18:03 -07004116}
4117EXPORT_SYMBOL_GPL(shmem_truncate_range);
4118
Hugh Dickins0b0a0802009-02-24 20:51:52 +00004119#define shmem_vm_ops generic_file_vm_ops
4120#define shmem_file_operations ramfs_file_operations
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03004121#define shmem_get_inode(sb, dir, mode, dev, flags) ramfs_get_inode(sb, dir, mode, dev)
Hugh Dickins0b0a0802009-02-24 20:51:52 +00004122#define shmem_acct_size(flags, size) 0
4123#define shmem_unacct_size(flags, size) do {} while (0)
Matt Mackall853ac432009-01-06 14:40:20 -08004124
4125#endif /* CONFIG_SHMEM */
4126
4127/* common code */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128
Rasmus Villemoes19938e32016-10-07 17:01:01 -07004129static const struct dentry_operations anon_ops = {
Al Viro118b2302013-08-24 12:08:17 -04004130 .d_dname = simple_dname
Al Viro34515382013-02-14 22:38:02 -05004131};
4132
Eric Parisc7277092013-12-02 11:24:19 +00004133static struct file *__shmem_file_setup(const char *name, loff_t size,
4134 unsigned long flags, unsigned int i_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135{
Al Viro6b4d0b22013-02-14 21:37:26 -05004136 struct file *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 struct inode *inode;
Al Viro2c48b9c2009-08-09 00:52:35 +04004138 struct path path;
Al Viro34515382013-02-14 22:38:02 -05004139 struct super_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 struct qstr this;
4141
4142 if (IS_ERR(shm_mnt))
Al Viro6b4d0b22013-02-14 21:37:26 -05004143 return ERR_CAST(shm_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
Hugh Dickins285b2c42011-08-03 16:21:20 -07004145 if (size < 0 || size > MAX_LFS_FILESIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 return ERR_PTR(-EINVAL);
4147
4148 if (shmem_acct_size(flags, size))
4149 return ERR_PTR(-ENOMEM);
4150
Al Viro6b4d0b22013-02-14 21:37:26 -05004151 res = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 this.name = name;
4153 this.len = strlen(name);
4154 this.hash = 0; /* will go */
Al Viro34515382013-02-14 22:38:02 -05004155 sb = shm_mnt->mnt_sb;
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07004156 path.mnt = mntget(shm_mnt);
Al Viro34515382013-02-14 22:38:02 -05004157 path.dentry = d_alloc_pseudo(sb, &this);
Al Viro2c48b9c2009-08-09 00:52:35 +04004158 if (!path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 goto put_memory;
Al Viro34515382013-02-14 22:38:02 -05004160 d_set_d_op(path.dentry, &anon_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161
Al Viro6b4d0b22013-02-14 21:37:26 -05004162 res = ERR_PTR(-ENOSPC);
Al Viro34515382013-02-14 22:38:02 -05004163 inode = shmem_get_inode(sb, NULL, S_IFREG | S_IRWXUGO, 0, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 if (!inode)
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07004165 goto put_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166
Eric Parisc7277092013-12-02 11:24:19 +00004167 inode->i_flags |= i_flags;
Al Viro2c48b9c2009-08-09 00:52:35 +04004168 d_instantiate(path.dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 inode->i_size = size;
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02004170 clear_nlink(inode); /* It is unlinked */
Al Viro26567cd2013-03-01 20:22:53 -05004171 res = ERR_PTR(ramfs_nommu_expand_for_mapping(inode, size));
4172 if (IS_ERR(res))
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07004173 goto put_path;
Al Viro4b42af82009-08-05 18:25:56 +04004174
Al Viro6b4d0b22013-02-14 21:37:26 -05004175 res = alloc_file(&path, FMODE_WRITE | FMODE_READ,
Al Viro4b42af82009-08-05 18:25:56 +04004176 &shmem_file_operations);
Al Viro6b4d0b22013-02-14 21:37:26 -05004177 if (IS_ERR(res))
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07004178 goto put_path;
Al Viro4b42af82009-08-05 18:25:56 +04004179
Al Viro6b4d0b22013-02-14 21:37:26 -05004180 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182put_memory:
4183 shmem_unacct_size(flags, size);
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07004184put_path:
4185 path_put(&path);
Al Viro6b4d0b22013-02-14 21:37:26 -05004186 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187}
Eric Parisc7277092013-12-02 11:24:19 +00004188
4189/**
4190 * shmem_kernel_file_setup - get an unlinked file living in tmpfs which must be
4191 * kernel internal. There will be NO LSM permission checks against the
4192 * underlying inode. So users of this interface must do LSM checks at a
Stephen Smalleye1832f22015-08-06 15:46:55 -07004193 * higher layer. The users are the big_key and shm implementations. LSM
4194 * checks are provided at the key or shm level rather than the inode.
Eric Parisc7277092013-12-02 11:24:19 +00004195 * @name: name for dentry (to be seen in /proc/<pid>/maps
4196 * @size: size to be set for the file
4197 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
4198 */
4199struct file *shmem_kernel_file_setup(const char *name, loff_t size, unsigned long flags)
4200{
4201 return __shmem_file_setup(name, size, flags, S_PRIVATE);
4202}
4203
4204/**
4205 * shmem_file_setup - get an unlinked file living in tmpfs
4206 * @name: name for dentry (to be seen in /proc/<pid>/maps
4207 * @size: size to be set for the file
4208 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
4209 */
4210struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags)
4211{
4212 return __shmem_file_setup(name, size, flags, 0);
4213}
Keith Packard395e0dd2008-06-20 00:08:06 -07004214EXPORT_SYMBOL_GPL(shmem_file_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215
Randy Dunlap46711812008-03-19 17:00:41 -07004216/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 * shmem_zero_setup - setup a shared anonymous mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
4219 */
4220int shmem_zero_setup(struct vm_area_struct *vma)
4221{
4222 struct file *file;
4223 loff_t size = vma->vm_end - vma->vm_start;
4224
Hugh Dickins66fc1302015-06-14 09:48:09 -07004225 /*
4226 * Cloning a new file under mmap_sem leads to a lock ordering conflict
4227 * between XFS directory reading and selinux: since this file is only
4228 * accessible to the user through its mapping, use S_PRIVATE flag to
4229 * bypass file security, in the same way as shmem_kernel_file_setup().
4230 */
4231 file = __shmem_file_setup("dev/zero", size, vma->vm_flags, S_PRIVATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 if (IS_ERR(file))
4233 return PTR_ERR(file);
4234
4235 if (vma->vm_file)
4236 fput(vma->vm_file);
4237 vma->vm_file = file;
4238 vma->vm_ops = &shmem_vm_ops;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07004239
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07004240 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE) &&
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07004241 ((vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK) <
4242 (vma->vm_end & HPAGE_PMD_MASK)) {
4243 khugepaged_enter(vma, vma->vm_flags);
4244 }
4245
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 return 0;
4247}
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07004248
4249/**
4250 * shmem_read_mapping_page_gfp - read into page cache, using specified page allocation flags.
4251 * @mapping: the page's address_space
4252 * @index: the page index
4253 * @gfp: the page allocator flags to use if allocating
4254 *
4255 * This behaves as a tmpfs "read_cache_page_gfp(mapping, index, gfp)",
4256 * with any new page allocations done using the specified allocation flags.
4257 * But read_cache_page_gfp() uses the ->readpage() method: which does not
4258 * suit tmpfs, since it may have pages in swapcache, and needs to find those
4259 * for itself; although drivers/gpu/drm i915 and ttm rely upon this support.
4260 *
Hugh Dickins68da9f02011-07-25 17:12:34 -07004261 * i915_gem_object_get_pages_gtt() mixes __GFP_NORETRY | __GFP_NOWARN in
4262 * with the mapping_gfp_mask(), to avoid OOMing the machine unnecessarily.
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07004263 */
4264struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
4265 pgoff_t index, gfp_t gfp)
4266{
Hugh Dickins68da9f02011-07-25 17:12:34 -07004267#ifdef CONFIG_SHMEM
4268 struct inode *inode = mapping->host;
Hugh Dickins9276aad2011-07-25 17:12:34 -07004269 struct page *page;
Hugh Dickins68da9f02011-07-25 17:12:34 -07004270 int error;
4271
4272 BUG_ON(mapping->a_ops != &shmem_aops);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07004273 error = shmem_getpage_gfp(inode, index, &page, SGP_CACHE,
Mike Rapoportcfda0522017-02-22 15:43:37 -08004274 gfp, NULL, NULL, NULL);
Hugh Dickins68da9f02011-07-25 17:12:34 -07004275 if (error)
4276 page = ERR_PTR(error);
4277 else
4278 unlock_page(page);
4279 return page;
4280#else
4281 /*
4282 * The tiny !SHMEM case uses ramfs without swap
4283 */
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07004284 return read_cache_page_gfp(mapping, index, gfp);
Hugh Dickins68da9f02011-07-25 17:12:34 -07004285#endif
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07004286}
4287EXPORT_SYMBOL_GPL(shmem_read_mapping_page_gfp);