blob: 8633bd3dc43321c6ba30887c5f3d25bdce3f429c [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>
Arnd Bergmann46c9a942018-08-17 15:45:09 -070032#include <linux/random.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010033#include <linux/sched/signal.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040034#include <linux/export.h>
Matt Mackall853ac432009-01-06 14:40:20 -080035#include <linux/swap.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080036#include <linux/uio.h>
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -070037#include <linux/khugepaged.h>
Mike Kravetz749df872017-09-06 16:24:16 -070038#include <linux/hugetlb.h>
Matt Mackall853ac432009-01-06 14:40:20 -080039
Andrea Arcangeli95cc09d2017-02-22 15:43:31 -080040#include <asm/tlbflush.h> /* for arch/microblaze update_mmu_cache() */
41
Matt Mackall853ac432009-01-06 14:40:20 -080042static struct vfsmount *shm_mnt;
43
44#ifdef CONFIG_SHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/*
46 * This virtual memory filesystem is heavily based on the ramfs. It
47 * extends ramfs by the ability to use swap and honor resource limits
48 * which makes it a completely usable filesystem.
49 */
50
Andreas Gruenbacher39f02472006-09-29 02:01:35 -070051#include <linux/xattr.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070052#include <linux/exportfs.h>
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010053#include <linux/posix_acl.h>
Christoph Hellwigfeda8212013-12-20 05:16:54 -080054#include <linux/posix_acl_xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/string.h>
57#include <linux/slab.h>
58#include <linux/backing-dev.h>
59#include <linux/shmem_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/blkdev.h>
Hugh Dickinsbda97ea2011-08-03 16:21:21 -070062#include <linux/pagevec.h>
Hugh Dickins41ffe5d2011-08-03 16:21:21 -070063#include <linux/percpu_counter.h>
Hugh Dickins83e4fa92012-05-29 15:06:40 -070064#include <linux/falloc.h>
Hugh Dickins708e3502011-07-25 17:12:32 -070065#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/security.h>
67#include <linux/swapops.h>
68#include <linux/mempolicy.h>
69#include <linux/namei.h>
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +000070#include <linux/ctype.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070071#include <linux/migrate.h>
Christoph Lameterc1f60a52006-09-25 23:31:11 -070072#include <linux/highmem.h>
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -080073#include <linux/seq_file.h>
Mimi Zohar92562922008-10-07 14:00:12 -040074#include <linux/magic.h>
David Herrmann9183df22014-08-08 14:25:29 -070075#include <linux/syscalls.h>
David Herrmann40e041a2014-08-08 14:25:27 -070076#include <linux/fcntl.h>
David Herrmann9183df22014-08-08 14:25:29 -070077#include <uapi/linux/memfd.h>
Mike Rapoportcfda0522017-02-22 15:43:37 -080078#include <linux/userfaultfd_k.h>
Mike Rapoport4c27fe42017-02-22 15:43:25 -080079#include <linux/rmap.h>
Amir Goldstein2b4db792017-05-18 15:29:33 +030080#include <linux/uuid.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070081
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080082#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <asm/pgtable.h>
84
Mel Gormandd56b042015-11-06 16:28:43 -080085#include "internal.h"
86
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030087#define BLOCKS_PER_PAGE (PAGE_SIZE/512)
88#define VM_ACCT(size) (PAGE_ALIGN(size) >> PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090/* Pretend that each entry is of this size in directory's i_size */
91#define BOGO_DIRENT_SIZE 20
92
Hugh Dickins69f07ec2011-08-03 16:21:26 -070093/* Symlink up to this size is kmalloc'ed instead of using a swappable page */
94#define SHORT_SYMLINK_LEN 128
95
Hugh Dickins1aac1402012-05-29 15:06:42 -070096/*
Hugh Dickinsf00cdc62014-06-23 13:22:06 -070097 * shmem_fallocate communicates with shmem_fault or shmem_writepage via
98 * inode->i_private (with i_mutex making sure that it has only one user at
99 * a time): we would prefer not to enlarge the shmem inode just for that.
Hugh Dickins1aac1402012-05-29 15:06:42 -0700100 */
101struct shmem_falloc {
Hugh Dickins8e205f72014-07-23 14:00:10 -0700102 wait_queue_head_t *waitq; /* faults into hole wait for punch to end */
Hugh Dickins1aac1402012-05-29 15:06:42 -0700103 pgoff_t start; /* start of range currently being fallocated */
104 pgoff_t next; /* the next page offset to be fallocated */
105 pgoff_t nr_falloced; /* how many new pages have been fallocated */
106 pgoff_t nr_unswapped; /* how often writepage refused to swap out */
107};
108
Andrew Mortonb76db732008-02-08 04:21:49 -0800109#ifdef CONFIG_TMPFS
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800110static unsigned long shmem_default_max_blocks(void)
111{
112 return totalram_pages / 2;
113}
114
115static unsigned long shmem_default_max_inodes(void)
116{
117 return min(totalram_pages - totalhigh_pages, totalram_pages / 2);
118}
Andrew Mortonb76db732008-02-08 04:21:49 -0800119#endif
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800120
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700121static bool shmem_should_replace_page(struct page *page, gfp_t gfp);
122static int shmem_replace_page(struct page **pagep, gfp_t gfp,
123 struct shmem_inode_info *info, pgoff_t index);
Hugh Dickins68da9f02011-07-25 17:12:34 -0700124static int shmem_getpage_gfp(struct inode *inode, pgoff_t index,
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700125 struct page **pagep, enum sgp_type sgp,
Mike Rapoportcfda0522017-02-22 15:43:37 -0800126 gfp_t gfp, struct vm_area_struct *vma,
Souptick Joarder2b740302018-08-23 17:01:36 -0700127 struct vm_fault *vmf, vm_fault_t *fault_type);
Hugh Dickins68da9f02011-07-25 17:12:34 -0700128
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -0700129int shmem_getpage(struct inode *inode, pgoff_t index,
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700130 struct page **pagep, enum sgp_type sgp)
Hugh Dickins68da9f02011-07-25 17:12:34 -0700131{
132 return shmem_getpage_gfp(inode, index, pagep, sgp,
Mike Rapoportcfda0522017-02-22 15:43:37 -0800133 mapping_gfp_mask(inode->i_mapping), NULL, NULL, NULL);
Hugh Dickins68da9f02011-07-25 17:12:34 -0700134}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
137{
138 return sb->s_fs_info;
139}
140
141/*
142 * shmem_file_setup pre-accounts the whole fixed size of a VM object,
143 * for shared memory and for shared anonymous (/dev/zero) mappings
144 * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
145 * consistent with the pre-accounting of private mappings ...
146 */
147static inline int shmem_acct_size(unsigned long flags, loff_t size)
148{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000149 return (flags & VM_NORESERVE) ?
Al Viro191c5422012-02-13 03:58:52 +0000150 0 : security_vm_enough_memory_mm(current->mm, VM_ACCT(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
153static inline void shmem_unacct_size(unsigned long flags, loff_t size)
154{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000155 if (!(flags & VM_NORESERVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 vm_unacct_memory(VM_ACCT(size));
157}
158
Konstantin Khlebnikov77142512014-08-06 16:06:34 -0700159static inline int shmem_reacct_size(unsigned long flags,
160 loff_t oldsize, loff_t newsize)
161{
162 if (!(flags & VM_NORESERVE)) {
163 if (VM_ACCT(newsize) > VM_ACCT(oldsize))
164 return security_vm_enough_memory_mm(current->mm,
165 VM_ACCT(newsize) - VM_ACCT(oldsize));
166 else if (VM_ACCT(newsize) < VM_ACCT(oldsize))
167 vm_unacct_memory(VM_ACCT(oldsize) - VM_ACCT(newsize));
168 }
169 return 0;
170}
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/*
173 * ... whereas tmpfs objects are accounted incrementally as
Hugh Dickins75edd342016-05-19 17:12:44 -0700174 * pages are allocated, in order to allow large sparse files.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * shmem_getpage reports shmem_acct_block failure as -ENOSPC not -ENOMEM,
176 * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
177 */
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700178static inline int shmem_acct_block(unsigned long flags, long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700180 if (!(flags & VM_NORESERVE))
181 return 0;
182
183 return security_vm_enough_memory_mm(current->mm,
184 pages * VM_ACCT(PAGE_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
187static inline void shmem_unacct_blocks(unsigned long flags, long pages)
188{
Hugh Dickins0b0a0802009-02-24 20:51:52 +0000189 if (flags & VM_NORESERVE)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300190 vm_unacct_memory(pages * VM_ACCT(PAGE_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
Mike Rapoport0f079692017-09-06 16:22:59 -0700193static inline bool shmem_inode_acct_block(struct inode *inode, long pages)
194{
195 struct shmem_inode_info *info = SHMEM_I(inode);
196 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
197
198 if (shmem_acct_block(info->flags, pages))
199 return false;
200
201 if (sbinfo->max_blocks) {
202 if (percpu_counter_compare(&sbinfo->used_blocks,
203 sbinfo->max_blocks - pages) > 0)
204 goto unacct;
205 percpu_counter_add(&sbinfo->used_blocks, pages);
206 }
207
208 return true;
209
210unacct:
211 shmem_unacct_blocks(info->flags, pages);
212 return false;
213}
214
215static inline void shmem_inode_unacct_blocks(struct inode *inode, long pages)
216{
217 struct shmem_inode_info *info = SHMEM_I(inode);
218 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
219
220 if (sbinfo->max_blocks)
221 percpu_counter_sub(&sbinfo->used_blocks, pages);
222 shmem_unacct_blocks(info->flags, pages);
223}
224
Hugh Dickins759b9772007-03-05 00:30:28 -0800225static const struct super_operations shmem_ops;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700226static const struct address_space_operations shmem_aops;
Helge Deller15ad7cd2006-12-06 20:40:36 -0800227static const struct file_operations shmem_file_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800228static const struct inode_operations shmem_inode_operations;
229static const struct inode_operations shmem_dir_inode_operations;
230static const struct inode_operations shmem_special_inode_operations;
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +0400231static const struct vm_operations_struct shmem_vm_ops;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700232static struct file_system_type shmem_fs_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Mike Rapoportb0506e42017-02-22 15:43:28 -0800234bool vma_is_shmem(struct vm_area_struct *vma)
235{
236 return vma->vm_ops == &shmem_vm_ops;
237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239static LIST_HEAD(shmem_swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800240static DEFINE_MUTEX(shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Pavel Emelyanov5b04c682008-02-04 22:28:47 -0800242static int shmem_reserve_inode(struct super_block *sb)
243{
244 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
245 if (sbinfo->max_inodes) {
246 spin_lock(&sbinfo->stat_lock);
247 if (!sbinfo->free_inodes) {
248 spin_unlock(&sbinfo->stat_lock);
249 return -ENOSPC;
250 }
251 sbinfo->free_inodes--;
252 spin_unlock(&sbinfo->stat_lock);
253 }
254 return 0;
255}
256
257static void shmem_free_inode(struct super_block *sb)
258{
259 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
260 if (sbinfo->max_inodes) {
261 spin_lock(&sbinfo->stat_lock);
262 sbinfo->free_inodes++;
263 spin_unlock(&sbinfo->stat_lock);
264 }
265}
266
Randy Dunlap46711812008-03-19 17:00:41 -0700267/**
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700268 * shmem_recalc_inode - recalculate the block usage of an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 * @inode: inode to recalc
270 *
271 * We have to calculate the free blocks since the mm can drop
272 * undirtied hole pages behind our back.
273 *
274 * But normally info->alloced == inode->i_mapping->nrpages + info->swapped
275 * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
276 *
277 * It has to be called with the spinlock held.
278 */
279static void shmem_recalc_inode(struct inode *inode)
280{
281 struct shmem_inode_info *info = SHMEM_I(inode);
282 long freed;
283
284 freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
285 if (freed > 0) {
286 info->alloced -= freed;
Hugh Dickins54af60422011-08-03 16:21:24 -0700287 inode->i_blocks -= freed * BLOCKS_PER_PAGE;
Mike Rapoport0f079692017-09-06 16:22:59 -0700288 shmem_inode_unacct_blocks(inode, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
290}
291
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700292bool shmem_charge(struct inode *inode, long pages)
293{
294 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700295 unsigned long flags;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700296
Mike Rapoport0f079692017-09-06 16:22:59 -0700297 if (!shmem_inode_acct_block(inode, pages))
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700298 return false;
Mike Rapoportb1cc94a2017-09-06 16:22:56 -0700299
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700300 spin_lock_irqsave(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700301 info->alloced += pages;
302 inode->i_blocks += pages * BLOCKS_PER_PAGE;
303 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700304 spin_unlock_irqrestore(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700305 inode->i_mapping->nrpages += pages;
306
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700307 return true;
308}
309
310void shmem_uncharge(struct inode *inode, long pages)
311{
312 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700313 unsigned long flags;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700314
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700315 spin_lock_irqsave(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700316 info->alloced -= pages;
317 inode->i_blocks -= pages * BLOCKS_PER_PAGE;
318 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700319 spin_unlock_irqrestore(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700320
Mike Rapoport0f079692017-09-06 16:22:59 -0700321 shmem_inode_unacct_blocks(inode, pages);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700322}
323
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700324/*
Matthew Wilcox62f945b2017-11-17 10:22:37 -0500325 * Replace item expected in xarray by a new item, while holding xa_lock.
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700326 */
Matthew Wilcox62f945b2017-11-17 10:22:37 -0500327static int shmem_replace_entry(struct address_space *mapping,
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700328 pgoff_t index, void *expected, void *replacement)
329{
Matthew Wilcox62f945b2017-11-17 10:22:37 -0500330 XA_STATE(xas, &mapping->i_pages, index);
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700331 void *item;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700332
333 VM_BUG_ON(!expected);
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700334 VM_BUG_ON(!replacement);
Matthew Wilcox62f945b2017-11-17 10:22:37 -0500335 item = xas_load(&xas);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700336 if (item != expected)
337 return -ENOENT;
Matthew Wilcox62f945b2017-11-17 10:22:37 -0500338 xas_store(&xas, replacement);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700339 return 0;
340}
341
342/*
Hugh Dickinsd1899222012-07-11 14:02:47 -0700343 * Sometimes, before we decide whether to proceed or to fail, we must check
344 * that an entry was not already brought back from swap by a racing thread.
345 *
346 * Checking page is not enough: by the time a SwapCache page is locked, it
347 * might be reused, and again be SwapCache, using the same swap as before.
348 */
349static bool shmem_confirm_swap(struct address_space *mapping,
350 pgoff_t index, swp_entry_t swap)
351{
Matthew Wilcoxa12831b2017-11-22 08:34:58 -0500352 return xa_load(&mapping->i_pages, index) == swp_to_radix_entry(swap);
Hugh Dickinsd1899222012-07-11 14:02:47 -0700353}
354
355/*
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700356 * Definitions for "huge tmpfs": tmpfs mounted with the huge= option
357 *
358 * SHMEM_HUGE_NEVER:
359 * disables huge pages for the mount;
360 * SHMEM_HUGE_ALWAYS:
361 * enables huge pages for the mount;
362 * SHMEM_HUGE_WITHIN_SIZE:
363 * only allocate huge pages if the page will be fully within i_size,
364 * also respect fadvise()/madvise() hints;
365 * SHMEM_HUGE_ADVISE:
366 * only allocate huge pages if requested with fadvise()/madvise();
367 */
368
369#define SHMEM_HUGE_NEVER 0
370#define SHMEM_HUGE_ALWAYS 1
371#define SHMEM_HUGE_WITHIN_SIZE 2
372#define SHMEM_HUGE_ADVISE 3
373
374/*
375 * Special values.
376 * Only can be set via /sys/kernel/mm/transparent_hugepage/shmem_enabled:
377 *
378 * SHMEM_HUGE_DENY:
379 * disables huge on shm_mnt and all mounts, for emergency use;
380 * SHMEM_HUGE_FORCE:
381 * enables huge on shm_mnt and all mounts, w/o needing option, for testing;
382 *
383 */
384#define SHMEM_HUGE_DENY (-1)
385#define SHMEM_HUGE_FORCE (-2)
386
Kirill A. Shutemove496cf32016-07-26 15:26:35 -0700387#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700388/* ifdef here to avoid bloating shmem.o when not necessary */
389
Mike Kravetz5b9c98f2018-06-07 17:05:53 -0700390static int shmem_huge __read_mostly;
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700391
Jérémy Lefauref1f59292016-12-12 16:43:23 -0800392#if defined(CONFIG_SYSFS) || defined(CONFIG_TMPFS)
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700393static int shmem_parse_huge(const char *str)
394{
395 if (!strcmp(str, "never"))
396 return SHMEM_HUGE_NEVER;
397 if (!strcmp(str, "always"))
398 return SHMEM_HUGE_ALWAYS;
399 if (!strcmp(str, "within_size"))
400 return SHMEM_HUGE_WITHIN_SIZE;
401 if (!strcmp(str, "advise"))
402 return SHMEM_HUGE_ADVISE;
403 if (!strcmp(str, "deny"))
404 return SHMEM_HUGE_DENY;
405 if (!strcmp(str, "force"))
406 return SHMEM_HUGE_FORCE;
407 return -EINVAL;
408}
409
410static const char *shmem_format_huge(int huge)
411{
412 switch (huge) {
413 case SHMEM_HUGE_NEVER:
414 return "never";
415 case SHMEM_HUGE_ALWAYS:
416 return "always";
417 case SHMEM_HUGE_WITHIN_SIZE:
418 return "within_size";
419 case SHMEM_HUGE_ADVISE:
420 return "advise";
421 case SHMEM_HUGE_DENY:
422 return "deny";
423 case SHMEM_HUGE_FORCE:
424 return "force";
425 default:
426 VM_BUG_ON(1);
427 return "bad_val";
428 }
429}
Jérémy Lefauref1f59292016-12-12 16:43:23 -0800430#endif
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700431
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700432static unsigned long shmem_unused_huge_shrink(struct shmem_sb_info *sbinfo,
433 struct shrink_control *sc, unsigned long nr_to_split)
434{
435 LIST_HEAD(list), *pos, *next;
Kirill A. Shutemov253fd0f2017-02-03 13:13:15 -0800436 LIST_HEAD(to_remove);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700437 struct inode *inode;
438 struct shmem_inode_info *info;
439 struct page *page;
440 unsigned long batch = sc ? sc->nr_to_scan : 128;
441 int removed = 0, split = 0;
442
443 if (list_empty(&sbinfo->shrinklist))
444 return SHRINK_STOP;
445
446 spin_lock(&sbinfo->shrinklist_lock);
447 list_for_each_safe(pos, next, &sbinfo->shrinklist) {
448 info = list_entry(pos, struct shmem_inode_info, shrinklist);
449
450 /* pin the inode */
451 inode = igrab(&info->vfs_inode);
452
453 /* inode is about to be evicted */
454 if (!inode) {
455 list_del_init(&info->shrinklist);
456 removed++;
457 goto next;
458 }
459
460 /* Check if there's anything to gain */
461 if (round_up(inode->i_size, PAGE_SIZE) ==
462 round_up(inode->i_size, HPAGE_PMD_SIZE)) {
Kirill A. Shutemov253fd0f2017-02-03 13:13:15 -0800463 list_move(&info->shrinklist, &to_remove);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700464 removed++;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700465 goto next;
466 }
467
468 list_move(&info->shrinklist, &list);
469next:
470 if (!--batch)
471 break;
472 }
473 spin_unlock(&sbinfo->shrinklist_lock);
474
Kirill A. Shutemov253fd0f2017-02-03 13:13:15 -0800475 list_for_each_safe(pos, next, &to_remove) {
476 info = list_entry(pos, struct shmem_inode_info, shrinklist);
477 inode = &info->vfs_inode;
478 list_del_init(&info->shrinklist);
479 iput(inode);
480 }
481
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700482 list_for_each_safe(pos, next, &list) {
483 int ret;
484
485 info = list_entry(pos, struct shmem_inode_info, shrinklist);
486 inode = &info->vfs_inode;
487
Kirill A. Shutemovb3cd54b2018-03-22 16:17:35 -0700488 if (nr_to_split && split >= nr_to_split)
489 goto leave;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700490
Kirill A. Shutemovb3cd54b2018-03-22 16:17:35 -0700491 page = find_get_page(inode->i_mapping,
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700492 (inode->i_size & HPAGE_PMD_MASK) >> PAGE_SHIFT);
493 if (!page)
494 goto drop;
495
Kirill A. Shutemovb3cd54b2018-03-22 16:17:35 -0700496 /* No huge page at the end of the file: nothing to split */
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700497 if (!PageTransHuge(page)) {
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700498 put_page(page);
499 goto drop;
500 }
501
Kirill A. Shutemovb3cd54b2018-03-22 16:17:35 -0700502 /*
503 * Leave the inode on the list if we failed to lock
504 * the page at this time.
505 *
506 * Waiting for the lock may lead to deadlock in the
507 * reclaim path.
508 */
509 if (!trylock_page(page)) {
510 put_page(page);
511 goto leave;
512 }
513
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700514 ret = split_huge_page(page);
515 unlock_page(page);
516 put_page(page);
517
Kirill A. Shutemovb3cd54b2018-03-22 16:17:35 -0700518 /* If split failed leave the inode on the list */
519 if (ret)
520 goto leave;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700521
522 split++;
523drop:
524 list_del_init(&info->shrinklist);
525 removed++;
Kirill A. Shutemovb3cd54b2018-03-22 16:17:35 -0700526leave:
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700527 iput(inode);
528 }
529
530 spin_lock(&sbinfo->shrinklist_lock);
531 list_splice_tail(&list, &sbinfo->shrinklist);
532 sbinfo->shrinklist_len -= removed;
533 spin_unlock(&sbinfo->shrinklist_lock);
534
535 return split;
536}
537
538static long shmem_unused_huge_scan(struct super_block *sb,
539 struct shrink_control *sc)
540{
541 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
542
543 if (!READ_ONCE(sbinfo->shrinklist_len))
544 return SHRINK_STOP;
545
546 return shmem_unused_huge_shrink(sbinfo, sc, 0);
547}
548
549static long shmem_unused_huge_count(struct super_block *sb,
550 struct shrink_control *sc)
551{
552 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
553 return READ_ONCE(sbinfo->shrinklist_len);
554}
Kirill A. Shutemove496cf32016-07-26 15:26:35 -0700555#else /* !CONFIG_TRANSPARENT_HUGE_PAGECACHE */
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700556
557#define shmem_huge SHMEM_HUGE_DENY
558
Kirill A. Shutemov779750d2016-07-26 15:26:38 -0700559static unsigned long shmem_unused_huge_shrink(struct shmem_sb_info *sbinfo,
560 struct shrink_control *sc, unsigned long nr_to_split)
561{
562 return 0;
563}
Kirill A. Shutemove496cf32016-07-26 15:26:35 -0700564#endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE */
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700565
Yang Shi89fdcd22018-06-07 17:06:59 -0700566static inline bool is_huge_enabled(struct shmem_sb_info *sbinfo)
567{
568 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE) &&
569 (shmem_huge == SHMEM_HUGE_FORCE || sbinfo->huge) &&
570 shmem_huge != SHMEM_HUGE_DENY)
571 return true;
572 return false;
573}
574
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700575/*
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700576 * Like add_to_page_cache_locked, but error if expected item has gone.
577 */
578static int shmem_add_to_page_cache(struct page *page,
579 struct address_space *mapping,
Matthew Wilcox552446a2017-12-01 13:25:14 -0500580 pgoff_t index, void *expected, gfp_t gfp)
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700581{
Matthew Wilcox552446a2017-12-01 13:25:14 -0500582 XA_STATE_ORDER(xas, &mapping->i_pages, index, compound_order(page));
583 unsigned long i = 0;
584 unsigned long nr = 1UL << compound_order(page);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700585
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700586 VM_BUG_ON_PAGE(PageTail(page), page);
587 VM_BUG_ON_PAGE(index != round_down(index, nr), page);
Sasha Levin309381fea2014-01-23 15:52:54 -0800588 VM_BUG_ON_PAGE(!PageLocked(page), page);
589 VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700590 VM_BUG_ON(expected && PageTransHuge(page));
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700591
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700592 page_ref_add(page, nr);
Hugh Dickinsb065b432012-07-11 14:02:48 -0700593 page->mapping = mapping;
594 page->index = index;
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700595
Matthew Wilcox552446a2017-12-01 13:25:14 -0500596 do {
597 void *entry;
598 xas_lock_irq(&xas);
599 entry = xas_find_conflict(&xas);
600 if (entry != expected)
601 xas_set_err(&xas, -EEXIST);
602 xas_create_range(&xas);
603 if (xas_error(&xas))
604 goto unlock;
605next:
606 xas_store(&xas, page + i);
607 if (++i < nr) {
608 xas_next(&xas);
609 goto next;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700610 }
Matthew Wilcox552446a2017-12-01 13:25:14 -0500611 if (PageTransHuge(page)) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700612 count_vm_event(THP_FILE_ALLOC);
Mel Gorman11fb9982016-07-28 15:46:20 -0700613 __inc_node_page_state(page, NR_SHMEM_THPS);
Matthew Wilcox552446a2017-12-01 13:25:14 -0500614 }
615 mapping->nrpages += nr;
Mel Gorman11fb9982016-07-28 15:46:20 -0700616 __mod_node_page_state(page_pgdat(page), NR_FILE_PAGES, nr);
617 __mod_node_page_state(page_pgdat(page), NR_SHMEM, nr);
Matthew Wilcox552446a2017-12-01 13:25:14 -0500618unlock:
619 xas_unlock_irq(&xas);
620 } while (xas_nomem(&xas, gfp));
621
622 if (xas_error(&xas)) {
Hugh Dickinsb065b432012-07-11 14:02:48 -0700623 page->mapping = NULL;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700624 page_ref_sub(page, nr);
Matthew Wilcox552446a2017-12-01 13:25:14 -0500625 return xas_error(&xas);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700626 }
Matthew Wilcox552446a2017-12-01 13:25:14 -0500627
628 return 0;
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700629}
630
631/*
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700632 * Like delete_from_page_cache, but substitutes swap for page.
633 */
634static void shmem_delete_from_page_cache(struct page *page, void *radswap)
635{
636 struct address_space *mapping = page->mapping;
637 int error;
638
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700639 VM_BUG_ON_PAGE(PageCompound(page), page);
640
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700641 xa_lock_irq(&mapping->i_pages);
Matthew Wilcox62f945b2017-11-17 10:22:37 -0500642 error = shmem_replace_entry(mapping, page->index, page, radswap);
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700643 page->mapping = NULL;
644 mapping->nrpages--;
Mel Gorman11fb9982016-07-28 15:46:20 -0700645 __dec_node_page_state(page, NR_FILE_PAGES);
646 __dec_node_page_state(page, NR_SHMEM);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700647 xa_unlock_irq(&mapping->i_pages);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300648 put_page(page);
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700649 BUG_ON(error);
650}
651
652/*
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700653 * Remove swap entry from radix tree, free the swap and its page cache.
654 */
655static int shmem_free_swap(struct address_space *mapping,
656 pgoff_t index, void *radswap)
657{
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700658 void *old;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700659
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700660 xa_lock_irq(&mapping->i_pages);
661 old = radix_tree_delete_item(&mapping->i_pages, index, radswap);
662 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700663 if (old != radswap)
664 return -ENOENT;
665 free_swap_and_cache(radix_to_swp_entry(radswap));
666 return 0;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700667}
668
669/*
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800670 * Determine (in bytes) how many of the shmem object's pages mapped by the
Vlastimil Babka48131e02016-01-14 15:19:23 -0800671 * given offsets are swapped out.
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800672 *
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700673 * This is safe to call without i_mutex or the i_pages lock thanks to RCU,
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800674 * as long as the inode doesn't go away and racy results are not a problem.
675 */
Vlastimil Babka48131e02016-01-14 15:19:23 -0800676unsigned long shmem_partial_swap_usage(struct address_space *mapping,
677 pgoff_t start, pgoff_t end)
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800678{
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800679 struct radix_tree_iter iter;
Mike Kravetz5b9c98f2018-06-07 17:05:53 -0700680 void __rcu **slot;
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800681 struct page *page;
Vlastimil Babka48131e02016-01-14 15:19:23 -0800682 unsigned long swapped = 0;
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800683
684 rcu_read_lock();
685
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700686 radix_tree_for_each_slot(slot, &mapping->i_pages, &iter, start) {
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800687 if (iter.index >= end)
688 break;
689
690 page = radix_tree_deref_slot(slot);
691
Matthew Wilcox2cf938a2016-03-17 14:22:03 -0700692 if (radix_tree_deref_retry(page)) {
693 slot = radix_tree_iter_retry(&iter);
694 continue;
695 }
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800696
Matthew Wilcox3159f942017-11-03 13:30:42 -0400697 if (xa_is_value(page))
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800698 swapped++;
699
700 if (need_resched()) {
Matthew Wilcox148deab2016-12-14 15:08:49 -0800701 slot = radix_tree_iter_resume(slot, &iter);
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800702 cond_resched_rcu();
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800703 }
704 }
705
706 rcu_read_unlock();
707
708 return swapped << PAGE_SHIFT;
709}
710
711/*
Vlastimil Babka48131e02016-01-14 15:19:23 -0800712 * Determine (in bytes) how many of the shmem object's pages mapped by the
713 * given vma is swapped out.
714 *
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700715 * This is safe to call without i_mutex or the i_pages lock thanks to RCU,
Vlastimil Babka48131e02016-01-14 15:19:23 -0800716 * as long as the inode doesn't go away and racy results are not a problem.
717 */
718unsigned long shmem_swap_usage(struct vm_area_struct *vma)
719{
720 struct inode *inode = file_inode(vma->vm_file);
721 struct shmem_inode_info *info = SHMEM_I(inode);
722 struct address_space *mapping = inode->i_mapping;
723 unsigned long swapped;
724
725 /* Be careful as we don't hold info->lock */
726 swapped = READ_ONCE(info->swapped);
727
728 /*
729 * The easier cases are when the shmem object has nothing in swap, or
730 * the vma maps it whole. Then we can simply use the stats that we
731 * already track.
732 */
733 if (!swapped)
734 return 0;
735
736 if (!vma->vm_pgoff && vma->vm_end - vma->vm_start >= inode->i_size)
737 return swapped << PAGE_SHIFT;
738
739 /* Here comes the more involved part */
740 return shmem_partial_swap_usage(mapping,
741 linear_page_index(vma, vma->vm_start),
742 linear_page_index(vma, vma->vm_end));
743}
744
745/*
Hugh Dickins24513262012-01-20 14:34:21 -0800746 * SysV IPC SHM_UNLOCK restore Unevictable pages to their evictable lists.
747 */
748void shmem_unlock_mapping(struct address_space *mapping)
749{
750 struct pagevec pvec;
751 pgoff_t indices[PAGEVEC_SIZE];
752 pgoff_t index = 0;
753
Mel Gorman86679822017-11-15 17:37:52 -0800754 pagevec_init(&pvec);
Hugh Dickins24513262012-01-20 14:34:21 -0800755 /*
756 * Minor point, but we might as well stop if someone else SHM_LOCKs it.
757 */
758 while (!mapping_unevictable(mapping)) {
759 /*
760 * Avoid pagevec_lookup(): find_get_pages() returns 0 as if it
761 * has finished, if it hits a row of PAGEVEC_SIZE swap entries.
762 */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700763 pvec.nr = find_get_entries(mapping, index,
764 PAGEVEC_SIZE, pvec.pages, indices);
Hugh Dickins24513262012-01-20 14:34:21 -0800765 if (!pvec.nr)
766 break;
767 index = indices[pvec.nr - 1] + 1;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700768 pagevec_remove_exceptionals(&pvec);
Hugh Dickins24513262012-01-20 14:34:21 -0800769 check_move_unevictable_pages(pvec.pages, pvec.nr);
770 pagevec_release(&pvec);
771 cond_resched();
772 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700773}
774
775/*
776 * Remove range of pages and swap entries from radix tree, and free them.
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700777 * If !unfalloc, truncate or punch hole; if unfalloc, undo failed fallocate.
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700778 */
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700779static void shmem_undo_range(struct inode *inode, loff_t lstart, loff_t lend,
780 bool unfalloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Hugh Dickins285b2c42011-08-03 16:21:20 -0700782 struct address_space *mapping = inode->i_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300784 pgoff_t start = (lstart + PAGE_SIZE - 1) >> PAGE_SHIFT;
785 pgoff_t end = (lend + 1) >> PAGE_SHIFT;
786 unsigned int partial_start = lstart & (PAGE_SIZE - 1);
787 unsigned int partial_end = (lend + 1) & (PAGE_SIZE - 1);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700788 struct pagevec pvec;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700789 pgoff_t indices[PAGEVEC_SIZE];
790 long nr_swaps_freed = 0;
Hugh Dickins285b2c42011-08-03 16:21:20 -0700791 pgoff_t index;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700792 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700794 if (lend == -1)
795 end = -1; /* unsigned, so actually very big */
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700796
Mel Gorman86679822017-11-15 17:37:52 -0800797 pagevec_init(&pvec);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700798 index = start;
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700799 while (index < end) {
Johannes Weiner0cd61442014-04-03 14:47:46 -0700800 pvec.nr = find_get_entries(mapping, index,
801 min(end - index, (pgoff_t)PAGEVEC_SIZE),
802 pvec.pages, indices);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700803 if (!pvec.nr)
804 break;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700805 for (i = 0; i < pagevec_count(&pvec); i++) {
806 struct page *page = pvec.pages[i];
807
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700808 index = indices[i];
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700809 if (index >= end)
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700810 break;
811
Matthew Wilcox3159f942017-11-03 13:30:42 -0400812 if (xa_is_value(page)) {
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700813 if (unfalloc)
814 continue;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700815 nr_swaps_freed += !shmem_free_swap(mapping,
816 index, page);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700817 continue;
818 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700819
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700820 VM_BUG_ON_PAGE(page_to_pgoff(page) != index, page);
821
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700822 if (!trylock_page(page))
823 continue;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700824
825 if (PageTransTail(page)) {
826 /* Middle of THP: zero out the page */
827 clear_highpage(page);
828 unlock_page(page);
829 continue;
830 } else if (PageTransHuge(page)) {
831 if (index == round_down(end, HPAGE_PMD_NR)) {
832 /*
833 * Range ends in the middle of THP:
834 * zero out the page
835 */
836 clear_highpage(page);
837 unlock_page(page);
838 continue;
839 }
840 index += HPAGE_PMD_NR - 1;
841 i += HPAGE_PMD_NR - 1;
842 }
843
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700844 if (!unfalloc || !PageUptodate(page)) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700845 VM_BUG_ON_PAGE(PageTail(page), page);
846 if (page_mapping(page) == mapping) {
Sasha Levin309381fea2014-01-23 15:52:54 -0800847 VM_BUG_ON_PAGE(PageWriteback(page), page);
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700848 truncate_inode_page(mapping, page);
849 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700850 }
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700851 unlock_page(page);
852 }
Johannes Weiner0cd61442014-04-03 14:47:46 -0700853 pagevec_remove_exceptionals(&pvec);
Hugh Dickins24513262012-01-20 14:34:21 -0800854 pagevec_release(&pvec);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700855 cond_resched();
856 index++;
857 }
858
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700859 if (partial_start) {
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700860 struct page *page = NULL;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700861 shmem_getpage(inode, start - 1, &page, SGP_READ);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700862 if (page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300863 unsigned int top = PAGE_SIZE;
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700864 if (start > end) {
865 top = partial_end;
866 partial_end = 0;
867 }
868 zero_user_segment(page, partial_start, top);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700869 set_page_dirty(page);
870 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300871 put_page(page);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700872 }
873 }
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700874 if (partial_end) {
875 struct page *page = NULL;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700876 shmem_getpage(inode, end, &page, SGP_READ);
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700877 if (page) {
878 zero_user_segment(page, 0, partial_end);
879 set_page_dirty(page);
880 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300881 put_page(page);
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700882 }
883 }
884 if (start >= end)
885 return;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700886
887 index = start;
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700888 while (index < end) {
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700889 cond_resched();
Johannes Weiner0cd61442014-04-03 14:47:46 -0700890
891 pvec.nr = find_get_entries(mapping, index,
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700892 min(end - index, (pgoff_t)PAGEVEC_SIZE),
Johannes Weiner0cd61442014-04-03 14:47:46 -0700893 pvec.pages, indices);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700894 if (!pvec.nr) {
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700895 /* If all gone or hole-punch or unfalloc, we're done */
896 if (index == start || end != -1)
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700897 break;
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700898 /* But if truncating, restart to make sure all gone */
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700899 index = start;
900 continue;
901 }
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700902 for (i = 0; i < pagevec_count(&pvec); i++) {
903 struct page *page = pvec.pages[i];
904
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700905 index = indices[i];
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700906 if (index >= end)
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700907 break;
908
Matthew Wilcox3159f942017-11-03 13:30:42 -0400909 if (xa_is_value(page)) {
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700910 if (unfalloc)
911 continue;
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700912 if (shmem_free_swap(mapping, index, page)) {
913 /* Swap was replaced by page: retry */
914 index--;
915 break;
916 }
917 nr_swaps_freed++;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700918 continue;
919 }
920
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700921 lock_page(page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700922
923 if (PageTransTail(page)) {
924 /* Middle of THP: zero out the page */
925 clear_highpage(page);
926 unlock_page(page);
927 /*
928 * Partial thp truncate due 'start' in middle
929 * of THP: don't need to look on these pages
930 * again on !pvec.nr restart.
931 */
932 if (index != round_down(end, HPAGE_PMD_NR))
933 start++;
934 continue;
935 } else if (PageTransHuge(page)) {
936 if (index == round_down(end, HPAGE_PMD_NR)) {
937 /*
938 * Range ends in the middle of THP:
939 * zero out the page
940 */
941 clear_highpage(page);
942 unlock_page(page);
943 continue;
944 }
945 index += HPAGE_PMD_NR - 1;
946 i += HPAGE_PMD_NR - 1;
947 }
948
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700949 if (!unfalloc || !PageUptodate(page)) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700950 VM_BUG_ON_PAGE(PageTail(page), page);
951 if (page_mapping(page) == mapping) {
Sasha Levin309381fea2014-01-23 15:52:54 -0800952 VM_BUG_ON_PAGE(PageWriteback(page), page);
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700953 truncate_inode_page(mapping, page);
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700954 } else {
955 /* Page was replaced by swap: retry */
956 unlock_page(page);
957 index--;
958 break;
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700959 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700960 }
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700961 unlock_page(page);
962 }
Johannes Weiner0cd61442014-04-03 14:47:46 -0700963 pagevec_remove_exceptionals(&pvec);
Hugh Dickins24513262012-01-20 14:34:21 -0800964 pagevec_release(&pvec);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700965 index++;
966 }
Hugh Dickins94c1e622011-06-27 16:18:03 -0700967
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700968 spin_lock_irq(&info->lock);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700969 info->swapped -= nr_swaps_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700971 spin_unlock_irq(&info->lock);
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700972}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700974void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
975{
976 shmem_undo_range(inode, lstart, lend, false);
Deepa Dinamani078cd822016-09-14 07:48:04 -0700977 inode->i_ctime = inode->i_mtime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
Hugh Dickins94c1e622011-06-27 16:18:03 -0700979EXPORT_SYMBOL_GPL(shmem_truncate_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
David Howellsa528d352017-01-31 16:46:22 +0000981static int shmem_getattr(const struct path *path, struct kstat *stat,
982 u32 request_mask, unsigned int query_flags)
Yu Zhao44a30222015-09-08 15:03:33 -0700983{
David Howellsa528d352017-01-31 16:46:22 +0000984 struct inode *inode = path->dentry->d_inode;
Yu Zhao44a30222015-09-08 15:03:33 -0700985 struct shmem_inode_info *info = SHMEM_I(inode);
Yang Shi89fdcd22018-06-07 17:06:59 -0700986 struct shmem_sb_info *sb_info = SHMEM_SB(inode->i_sb);
Yu Zhao44a30222015-09-08 15:03:33 -0700987
Hugh Dickinsd0424c42015-11-05 18:50:34 -0800988 if (info->alloced - info->swapped != inode->i_mapping->nrpages) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700989 spin_lock_irq(&info->lock);
Hugh Dickinsd0424c42015-11-05 18:50:34 -0800990 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700991 spin_unlock_irq(&info->lock);
Hugh Dickinsd0424c42015-11-05 18:50:34 -0800992 }
Yu Zhao44a30222015-09-08 15:03:33 -0700993 generic_fillattr(inode, stat);
Yang Shi89fdcd22018-06-07 17:06:59 -0700994
995 if (is_huge_enabled(sb_info))
996 stat->blksize = HPAGE_PMD_SIZE;
997
Yu Zhao44a30222015-09-08 15:03:33 -0700998 return 0;
999}
1000
Hugh Dickins94c1e622011-06-27 16:18:03 -07001001static int shmem_setattr(struct dentry *dentry, struct iattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
David Howells75c3cfa2015-03-17 22:26:12 +00001003 struct inode *inode = d_inode(dentry);
David Herrmann40e041a2014-08-08 14:25:27 -07001004 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001005 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 int error;
1007
Jan Kara31051c82016-05-26 16:55:18 +02001008 error = setattr_prepare(dentry, attr);
Christoph Hellwigdb78b872010-06-04 11:30:03 +02001009 if (error)
1010 return error;
1011
Hugh Dickins94c1e622011-06-27 16:18:03 -07001012 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
1013 loff_t oldsize = inode->i_size;
1014 loff_t newsize = attr->ia_size;
npiggin@suse.de3889e6e2010-05-27 01:05:36 +10001015
David Herrmann40e041a2014-08-08 14:25:27 -07001016 /* protected by i_mutex */
1017 if ((newsize < oldsize && (info->seals & F_SEAL_SHRINK)) ||
1018 (newsize > oldsize && (info->seals & F_SEAL_GROW)))
1019 return -EPERM;
1020
Hugh Dickins94c1e622011-06-27 16:18:03 -07001021 if (newsize != oldsize) {
Konstantin Khlebnikov77142512014-08-06 16:06:34 -07001022 error = shmem_reacct_size(SHMEM_I(inode)->flags,
1023 oldsize, newsize);
1024 if (error)
1025 return error;
Hugh Dickins94c1e622011-06-27 16:18:03 -07001026 i_size_write(inode, newsize);
Deepa Dinamani078cd822016-09-14 07:48:04 -07001027 inode->i_ctime = inode->i_mtime = current_time(inode);
Hugh Dickins94c1e622011-06-27 16:18:03 -07001028 }
Josef Bacikafa2db22015-06-24 16:58:45 -07001029 if (newsize <= oldsize) {
Hugh Dickins94c1e622011-06-27 16:18:03 -07001030 loff_t holebegin = round_up(newsize, PAGE_SIZE);
Hugh Dickinsd0424c42015-11-05 18:50:34 -08001031 if (oldsize > holebegin)
1032 unmap_mapping_range(inode->i_mapping,
1033 holebegin, 0, 1);
1034 if (info->alloced)
1035 shmem_truncate_range(inode,
1036 newsize, (loff_t)-1);
Hugh Dickins94c1e622011-06-27 16:18:03 -07001037 /* unmap again to remove racily COWed private pages */
Hugh Dickinsd0424c42015-11-05 18:50:34 -08001038 if (oldsize > holebegin)
1039 unmap_mapping_range(inode->i_mapping,
1040 holebegin, 0, 1);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001041
1042 /*
1043 * Part of the huge page can be beyond i_size: subject
1044 * to shrink under memory pressure.
1045 */
1046 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE)) {
1047 spin_lock(&sbinfo->shrinklist_lock);
Cong Wangd0413532017-08-10 15:24:24 -07001048 /*
1049 * _careful to defend against unlocked access to
1050 * ->shrink_list in shmem_unused_huge_shrink()
1051 */
1052 if (list_empty_careful(&info->shrinklist)) {
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001053 list_add_tail(&info->shrinklist,
1054 &sbinfo->shrinklist);
1055 sbinfo->shrinklist_len++;
1056 }
1057 spin_unlock(&sbinfo->shrinklist_lock);
1058 }
Hugh Dickins94c1e622011-06-27 16:18:03 -07001059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
1061
Christoph Hellwigdb78b872010-06-04 11:30:03 +02001062 setattr_copy(inode, attr);
Christoph Hellwigdb78b872010-06-04 11:30:03 +02001063 if (attr->ia_valid & ATTR_MODE)
Christoph Hellwigfeda8212013-12-20 05:16:54 -08001064 error = posix_acl_chmod(inode, inode->i_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 return error;
1066}
1067
Al Viro1f895f72010-06-05 19:10:41 -04001068static void shmem_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001071 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
npiggin@suse.de3889e6e2010-05-27 01:05:36 +10001073 if (inode->i_mapping->a_ops == &shmem_aops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 shmem_unacct_size(info->flags, inode->i_size);
1075 inode->i_size = 0;
npiggin@suse.de3889e6e2010-05-27 01:05:36 +10001076 shmem_truncate_range(inode, 0, (loff_t)-1);
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001077 if (!list_empty(&info->shrinklist)) {
1078 spin_lock(&sbinfo->shrinklist_lock);
1079 if (!list_empty(&info->shrinklist)) {
1080 list_del_init(&info->shrinklist);
1081 sbinfo->shrinklist_len--;
1082 }
1083 spin_unlock(&sbinfo->shrinklist_lock);
1084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 if (!list_empty(&info->swaplist)) {
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001086 mutex_lock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 list_del_init(&info->swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001088 mutex_unlock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
Al Viro3ed47db2016-01-22 18:08:52 -05001090 }
Eric Parisb09e0fa2011-05-24 17:12:39 -07001091
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001092 simple_xattrs_free(&info->xattrs);
Hugh Dickins0f3c42f2012-11-16 14:15:04 -08001093 WARN_ON(inode->i_blocks);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001094 shmem_free_inode(inode->i_sb);
Jan Karadbd57682012-05-03 14:48:02 +02001095 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
Matthew Wilcoxe21a2952017-11-22 08:36:00 -05001098static unsigned long find_swap_entry(struct xarray *xa, void *item)
Matthew Wilcox478922e2016-12-14 15:08:52 -08001099{
Matthew Wilcoxe21a2952017-11-22 08:36:00 -05001100 XA_STATE(xas, xa, 0);
Matthew Wilcox478922e2016-12-14 15:08:52 -08001101 unsigned int checked = 0;
Matthew Wilcoxe21a2952017-11-22 08:36:00 -05001102 void *entry;
Matthew Wilcox478922e2016-12-14 15:08:52 -08001103
1104 rcu_read_lock();
Matthew Wilcoxe21a2952017-11-22 08:36:00 -05001105 xas_for_each(&xas, entry, ULONG_MAX) {
1106 if (xas_retry(&xas, entry))
Mike Kravetz5b9c98f2018-06-07 17:05:53 -07001107 continue;
Matthew Wilcoxe21a2952017-11-22 08:36:00 -05001108 if (entry == item)
Matthew Wilcox478922e2016-12-14 15:08:52 -08001109 break;
Matthew Wilcox478922e2016-12-14 15:08:52 -08001110 checked++;
Matthew Wilcoxe21a2952017-11-22 08:36:00 -05001111 if ((checked % XA_CHECK_SCHED) != 0)
Matthew Wilcox478922e2016-12-14 15:08:52 -08001112 continue;
Matthew Wilcoxe21a2952017-11-22 08:36:00 -05001113 xas_pause(&xas);
Matthew Wilcox478922e2016-12-14 15:08:52 -08001114 cond_resched_rcu();
1115 }
Matthew Wilcox478922e2016-12-14 15:08:52 -08001116 rcu_read_unlock();
Matthew Wilcoxe21a2952017-11-22 08:36:00 -05001117
1118 return entry ? xas.xa_index : -1;
Matthew Wilcox478922e2016-12-14 15:08:52 -08001119}
1120
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001121/*
1122 * If swap found in inode, free it and move page from swapcache to filecache.
1123 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001124static int shmem_unuse_inode(struct shmem_inode_info *info,
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001125 swp_entry_t swap, struct page **pagep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
Hugh Dickins285b2c42011-08-03 16:21:20 -07001127 struct address_space *mapping = info->vfs_inode.i_mapping;
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001128 void *radswap;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001129 pgoff_t index;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001130 gfp_t gfp;
1131 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001133 radswap = swp_to_radix_entry(swap);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001134 index = find_swap_entry(&mapping->i_pages, radswap);
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001135 if (index == -1)
Johannes Weiner00501b52014-08-08 14:19:20 -07001136 return -EAGAIN; /* tell shmem_unuse we found nothing */
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001137
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001138 /*
1139 * Move _head_ to start search for next from here.
Al Viro1f895f72010-06-05 19:10:41 -04001140 * But be careful: shmem_evict_inode checks list_empty without taking
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001141 * mutex, and there's an instant in list_move_tail when info->swaplist
Hugh Dickins285b2c42011-08-03 16:21:20 -07001142 * would appear empty, if it were the only one on shmem_swaplist.
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001143 */
1144 if (shmem_swaplist.next != &info->swaplist)
1145 list_move_tail(&shmem_swaplist, &info->swaplist);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001146
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001147 gfp = mapping_gfp_mask(mapping);
1148 if (shmem_should_replace_page(*pagep, gfp)) {
1149 mutex_unlock(&shmem_swaplist_mutex);
1150 error = shmem_replace_page(pagep, gfp, info, index);
1151 mutex_lock(&shmem_swaplist_mutex);
1152 /*
1153 * We needed to drop mutex to make that restrictive page
Hugh Dickins0142ef62012-06-07 14:21:09 -07001154 * allocation, but the inode might have been freed while we
1155 * dropped it: although a racing shmem_evict_inode() cannot
1156 * complete without emptying the radix_tree, our page lock
1157 * on this swapcache page is not enough to prevent that -
1158 * free_swap_and_cache() of our swap entry will only
1159 * trylock_page(), removing swap from radix_tree whatever.
1160 *
1161 * We must not proceed to shmem_add_to_page_cache() if the
1162 * inode has been freed, but of course we cannot rely on
1163 * inode or mapping or info to check that. However, we can
1164 * safely check if our swap entry is still in use (and here
1165 * it can't have got reused for another page): if it's still
1166 * in use, then the inode cannot have been freed yet, and we
1167 * can safely proceed (if it's no longer in use, that tells
1168 * nothing about the inode, but we don't need to unuse swap).
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001169 */
1170 if (!page_swapcount(*pagep))
1171 error = -ENOENT;
1172 }
1173
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001174 /*
Hugh Dickins778dd892011-05-11 15:13:37 -07001175 * We rely on shmem_swaplist_mutex, not only to protect the swaplist,
1176 * but also to hold up shmem_evict_inode(): so inode cannot be freed
1177 * beneath us (pagelock doesn't help until the page is in pagecache).
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -08001178 */
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001179 if (!error)
1180 error = shmem_add_to_page_cache(*pagep, mapping, index,
Matthew Wilcox552446a2017-12-01 13:25:14 -05001181 radswap, gfp);
Hugh Dickins48f170f2011-07-25 17:12:37 -07001182 if (error != -ENOMEM) {
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001183 /*
1184 * Truncation and eviction use free_swap_and_cache(), which
1185 * only does trylock page: if we raced, best clean up here.
1186 */
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001187 delete_from_swap_cache(*pagep);
1188 set_page_dirty(*pagep);
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001189 if (!error) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001190 spin_lock_irq(&info->lock);
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001191 info->swapped--;
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001192 spin_unlock_irq(&info->lock);
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001193 swap_free(swap);
1194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 }
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001196 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
1199/*
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001200 * Search through swapped inodes to find and replace swap by page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001202int shmem_unuse(swp_entry_t swap, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001204 struct list_head *this, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 struct shmem_inode_info *info;
Johannes Weiner00501b52014-08-08 14:19:20 -07001206 struct mem_cgroup *memcg;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001207 int error = 0;
1208
1209 /*
1210 * There's a faint possibility that swap page was replaced before
Hugh Dickins0142ef62012-06-07 14:21:09 -07001211 * caller locked it: caller will come back later with the right page.
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001212 */
Hugh Dickins0142ef62012-06-07 14:21:09 -07001213 if (unlikely(!PageSwapCache(page) || page_private(page) != swap.val))
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001214 goto out;
Hugh Dickins778dd892011-05-11 15:13:37 -07001215
1216 /*
1217 * Charge page using GFP_KERNEL while we can wait, before taking
1218 * the shmem_swaplist_mutex which might hold up shmem_writepage().
1219 * Charged back to the user (not to caller) when swap account is used.
Hugh Dickins778dd892011-05-11 15:13:37 -07001220 */
Tejun Heo2cf85582018-07-03 11:14:56 -04001221 error = mem_cgroup_try_charge_delay(page, current->mm, GFP_KERNEL,
1222 &memcg, false);
Hugh Dickins778dd892011-05-11 15:13:37 -07001223 if (error)
1224 goto out;
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001225 /* No radix_tree_preload: swap entry keeps a place for page in tree */
Johannes Weiner00501b52014-08-08 14:19:20 -07001226 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001228 mutex_lock(&shmem_swaplist_mutex);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001229 list_for_each_safe(this, next, &shmem_swaplist) {
1230 info = list_entry(this, struct shmem_inode_info, swaplist);
Hugh Dickins285b2c42011-08-03 16:21:20 -07001231 if (info->swapped)
Johannes Weiner00501b52014-08-08 14:19:20 -07001232 error = shmem_unuse_inode(info, swap, &page);
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001233 else
1234 list_del_init(&info->swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001235 cond_resched();
Johannes Weiner00501b52014-08-08 14:19:20 -07001236 if (error != -EAGAIN)
Hugh Dickins778dd892011-05-11 15:13:37 -07001237 break;
Johannes Weiner00501b52014-08-08 14:19:20 -07001238 /* found nothing in this: move on to search the next */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001240 mutex_unlock(&shmem_swaplist_mutex);
Hugh Dickins778dd892011-05-11 15:13:37 -07001241
Johannes Weiner00501b52014-08-08 14:19:20 -07001242 if (error) {
1243 if (error != -ENOMEM)
1244 error = 0;
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001245 mem_cgroup_cancel_charge(page, memcg, false);
Johannes Weiner00501b52014-08-08 14:19:20 -07001246 } else
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001247 mem_cgroup_commit_charge(page, memcg, true, false);
Hugh Dickins778dd892011-05-11 15:13:37 -07001248out:
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001249 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001250 put_page(page);
Hugh Dickins778dd892011-05-11 15:13:37 -07001251 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252}
1253
1254/*
1255 * Move the page from the page cache to the swap cache.
1256 */
1257static int shmem_writepage(struct page *page, struct writeback_control *wbc)
1258{
1259 struct shmem_inode_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 struct address_space *mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 struct inode *inode;
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001262 swp_entry_t swap;
1263 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001265 VM_BUG_ON_PAGE(PageCompound(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 mapping = page->mapping;
1268 index = page->index;
1269 inode = mapping->host;
1270 info = SHMEM_I(inode);
1271 if (info->flags & VM_LOCKED)
1272 goto redirty;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001273 if (!total_swap_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 goto redirty;
1275
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001276 /*
Christoph Hellwig97b713b2015-01-14 10:42:31 +01001277 * Our capabilities prevent regular writeback or sync from ever calling
1278 * shmem_writepage; but a stacking filesystem might use ->writepage of
1279 * its underlying filesystem, in which case tmpfs should write out to
1280 * swap only in response to memory pressure, and not for the writeback
1281 * threads or sync.
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001282 */
Hugh Dickins48f170f2011-07-25 17:12:37 -07001283 if (!wbc->for_reclaim) {
1284 WARN_ON_ONCE(1); /* Still happens? Tell us about it! */
1285 goto redirty;
1286 }
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001287
1288 /*
1289 * This is somewhat ridiculous, but without plumbing a SWAP_MAP_FALLOC
1290 * value into swapfile.c, the only way we can correctly account for a
1291 * fallocated page arriving here is now to initialize it and write it.
Hugh Dickins1aac1402012-05-29 15:06:42 -07001292 *
1293 * That's okay for a page already fallocated earlier, but if we have
1294 * not yet completed the fallocation, then (a) we want to keep track
1295 * of this page in case we have to undo it, and (b) it may not be a
1296 * good idea to continue anyway, once we're pushing into swap. So
1297 * reactivate the page, and let shmem_fallocate() quit when too many.
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001298 */
1299 if (!PageUptodate(page)) {
Hugh Dickins1aac1402012-05-29 15:06:42 -07001300 if (inode->i_private) {
1301 struct shmem_falloc *shmem_falloc;
1302 spin_lock(&inode->i_lock);
1303 shmem_falloc = inode->i_private;
1304 if (shmem_falloc &&
Hugh Dickins8e205f72014-07-23 14:00:10 -07001305 !shmem_falloc->waitq &&
Hugh Dickins1aac1402012-05-29 15:06:42 -07001306 index >= shmem_falloc->start &&
1307 index < shmem_falloc->next)
1308 shmem_falloc->nr_unswapped++;
1309 else
1310 shmem_falloc = NULL;
1311 spin_unlock(&inode->i_lock);
1312 if (shmem_falloc)
1313 goto redirty;
1314 }
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001315 clear_highpage(page);
1316 flush_dcache_page(page);
1317 SetPageUptodate(page);
1318 }
1319
Huang Ying38d8b4e2017-07-06 15:37:18 -07001320 swap = get_swap_page(page);
Hugh Dickins48f170f2011-07-25 17:12:37 -07001321 if (!swap.val)
1322 goto redirty;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001323
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001324 /*
1325 * Add inode to shmem_unuse()'s list of swapped-out inodes,
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001326 * if it's not already there. Do it now before the page is
1327 * moved to swap cache, when its pagelock no longer protects
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001328 * the inode from eviction. But don't unlock the mutex until
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001329 * we've incremented swapped, because shmem_unuse_inode() will
1330 * prune a !swapped inode from the swaplist under this mutex.
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001331 */
Hugh Dickins48f170f2011-07-25 17:12:37 -07001332 mutex_lock(&shmem_swaplist_mutex);
1333 if (list_empty(&info->swaplist))
1334 list_add_tail(&info->swaplist, &shmem_swaplist);
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001335
Hugh Dickins48f170f2011-07-25 17:12:37 -07001336 if (add_to_swap_cache(page, swap, GFP_ATOMIC) == 0) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001337 spin_lock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001338 shmem_recalc_inode(inode);
1339 info->swapped++;
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001340 spin_unlock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001341
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001342 swap_shmem_alloc(swap);
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001343 shmem_delete_from_page_cache(page, swp_to_radix_entry(swap));
1344
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001345 mutex_unlock(&shmem_swaplist_mutex);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001346 BUG_ON(page_mapped(page));
Hugh Dickins9fab5612009-03-31 15:23:33 -07001347 swap_writepage(page, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 return 0;
1349 }
1350
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001351 mutex_unlock(&shmem_swaplist_mutex);
Minchan Kim75f6d6d2017-07-06 15:37:21 -07001352 put_swap_page(page, swap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353redirty:
1354 set_page_dirty(page);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001355 if (wbc->for_reclaim)
1356 return AOP_WRITEPAGE_ACTIVATE; /* Return with page locked */
1357 unlock_page(page);
1358 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359}
1360
Hugh Dickins75edd342016-05-19 17:12:44 -07001361#if defined(CONFIG_NUMA) && defined(CONFIG_TMPFS)
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001362static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001363{
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001364 char buffer[64];
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001365
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001366 if (!mpol || mpol->mode == MPOL_DEFAULT)
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001367 return; /* show nothing */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001368
Hugh Dickinsa7a88b22013-01-02 02:04:23 -08001369 mpol_to_str(buffer, sizeof(buffer), mpol);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001370
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001371 seq_printf(seq, ",mpol=%s", buffer);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001372}
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001373
1374static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1375{
1376 struct mempolicy *mpol = NULL;
1377 if (sbinfo->mpol) {
1378 spin_lock(&sbinfo->stat_lock); /* prevent replace/use races */
1379 mpol = sbinfo->mpol;
1380 mpol_get(mpol);
1381 spin_unlock(&sbinfo->stat_lock);
1382 }
1383 return mpol;
1384}
Hugh Dickins75edd342016-05-19 17:12:44 -07001385#else /* !CONFIG_NUMA || !CONFIG_TMPFS */
1386static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
1387{
1388}
1389static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1390{
1391 return NULL;
1392}
1393#endif /* CONFIG_NUMA && CONFIG_TMPFS */
1394#ifndef CONFIG_NUMA
1395#define vm_policy vm_private_data
1396#endif
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001397
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001398static void shmem_pseudo_vma_init(struct vm_area_struct *vma,
1399 struct shmem_inode_info *info, pgoff_t index)
1400{
1401 /* Create a pseudo vma that just contains the policy */
Kirill A. Shutemov2c4541e2018-07-26 16:37:30 -07001402 vma_init(vma, NULL);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001403 /* Bias interleave by inode number to distribute better across nodes */
1404 vma->vm_pgoff = index + info->vfs_inode.i_ino;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001405 vma->vm_policy = mpol_shared_policy_lookup(&info->policy, index);
1406}
1407
1408static void shmem_pseudo_vma_destroy(struct vm_area_struct *vma)
1409{
1410 /* Drop reference taken by mpol_shared_policy_lookup() */
1411 mpol_cond_put(vma->vm_policy);
1412}
1413
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001414static struct page *shmem_swapin(swp_entry_t swap, gfp_t gfp,
1415 struct shmem_inode_info *info, pgoff_t index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 struct vm_area_struct pvma;
Mel Gorman18a2f372012-12-05 14:01:41 -08001418 struct page *page;
Minchan Kime9e9b7e2018-04-05 16:23:42 -07001419 struct vm_fault vmf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001421 shmem_pseudo_vma_init(&pvma, info, index);
Minchan Kime9e9b7e2018-04-05 16:23:42 -07001422 vmf.vma = &pvma;
1423 vmf.address = 0;
1424 page = swap_cluster_readahead(swap, gfp, &vmf);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001425 shmem_pseudo_vma_destroy(&pvma);
Mel Gorman18a2f372012-12-05 14:01:41 -08001426
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001427 return page;
1428}
Mel Gorman18a2f372012-12-05 14:01:41 -08001429
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001430static struct page *shmem_alloc_hugepage(gfp_t gfp,
1431 struct shmem_inode_info *info, pgoff_t index)
1432{
1433 struct vm_area_struct pvma;
1434 struct inode *inode = &info->vfs_inode;
1435 struct address_space *mapping = inode->i_mapping;
Geert Uytterhoeven4620a062016-08-03 19:58:19 +02001436 pgoff_t idx, hindex;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001437 void __rcu **results;
1438 struct page *page;
1439
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07001440 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE))
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001441 return NULL;
1442
Geert Uytterhoeven4620a062016-08-03 19:58:19 +02001443 hindex = round_down(index, HPAGE_PMD_NR);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001444 rcu_read_lock();
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001445 if (radix_tree_gang_lookup_slot(&mapping->i_pages, &results, &idx,
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001446 hindex, 1) && idx < hindex + HPAGE_PMD_NR) {
1447 rcu_read_unlock();
1448 return NULL;
1449 }
1450 rcu_read_unlock();
1451
1452 shmem_pseudo_vma_init(&pvma, info, hindex);
1453 page = alloc_pages_vma(gfp | __GFP_COMP | __GFP_NORETRY | __GFP_NOWARN,
1454 HPAGE_PMD_ORDER, &pvma, 0, numa_node_id(), true);
1455 shmem_pseudo_vma_destroy(&pvma);
1456 if (page)
1457 prep_transhuge_page(page);
Mel Gorman18a2f372012-12-05 14:01:41 -08001458 return page;
1459}
1460
1461static struct page *shmem_alloc_page(gfp_t gfp,
1462 struct shmem_inode_info *info, pgoff_t index)
1463{
1464 struct vm_area_struct pvma;
1465 struct page *page;
1466
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001467 shmem_pseudo_vma_init(&pvma, info, index);
1468 page = alloc_page_vma(gfp, &pvma, 0);
1469 shmem_pseudo_vma_destroy(&pvma);
Mel Gorman18a2f372012-12-05 14:01:41 -08001470
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001471 return page;
1472}
1473
1474static struct page *shmem_alloc_and_acct_page(gfp_t gfp,
Mike Rapoport0f079692017-09-06 16:22:59 -07001475 struct inode *inode,
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001476 pgoff_t index, bool huge)
1477{
Mike Rapoport0f079692017-09-06 16:22:59 -07001478 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001479 struct page *page;
1480 int nr;
1481 int err = -ENOSPC;
1482
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07001483 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE))
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001484 huge = false;
1485 nr = huge ? HPAGE_PMD_NR : 1;
1486
Mike Rapoport0f079692017-09-06 16:22:59 -07001487 if (!shmem_inode_acct_block(inode, nr))
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001488 goto failed;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001489
1490 if (huge)
1491 page = shmem_alloc_hugepage(gfp, info, index);
1492 else
1493 page = shmem_alloc_page(gfp, info, index);
Hugh Dickins75edd342016-05-19 17:12:44 -07001494 if (page) {
1495 __SetPageLocked(page);
1496 __SetPageSwapBacked(page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001497 return page;
Hugh Dickins75edd342016-05-19 17:12:44 -07001498 }
Mel Gorman18a2f372012-12-05 14:01:41 -08001499
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001500 err = -ENOMEM;
Mike Rapoport0f079692017-09-06 16:22:59 -07001501 shmem_inode_unacct_blocks(inode, nr);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001502failed:
1503 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504}
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506/*
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001507 * When a page is moved from swapcache to shmem filecache (either by the
1508 * usual swapin of shmem_getpage_gfp(), or by the less common swapoff of
1509 * shmem_unuse_inode()), it may have been read in earlier from swap, in
1510 * ignorance of the mapping it belongs to. If that mapping has special
1511 * constraints (like the gma500 GEM driver, which requires RAM below 4GB),
1512 * we may need to copy to a suitable page before moving to filecache.
1513 *
1514 * In a future release, this may well be extended to respect cpuset and
1515 * NUMA mempolicy, and applied also to anonymous pages in do_swap_page();
1516 * but for now it is a simple matter of zone.
1517 */
1518static bool shmem_should_replace_page(struct page *page, gfp_t gfp)
1519{
1520 return page_zonenum(page) > gfp_zone(gfp);
1521}
1522
1523static int shmem_replace_page(struct page **pagep, gfp_t gfp,
1524 struct shmem_inode_info *info, pgoff_t index)
1525{
1526 struct page *oldpage, *newpage;
1527 struct address_space *swap_mapping;
1528 pgoff_t swap_index;
1529 int error;
1530
1531 oldpage = *pagep;
1532 swap_index = page_private(oldpage);
1533 swap_mapping = page_mapping(oldpage);
1534
1535 /*
1536 * We have arrived here because our zones are constrained, so don't
1537 * limit chance of success by further cpuset and node constraints.
1538 */
1539 gfp &= ~GFP_CONSTRAINT_MASK;
1540 newpage = shmem_alloc_page(gfp, info, index);
1541 if (!newpage)
1542 return -ENOMEM;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001543
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001544 get_page(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001545 copy_highpage(newpage, oldpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001546 flush_dcache_page(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001547
Hugh Dickins9956edf2016-11-10 10:46:11 -08001548 __SetPageLocked(newpage);
1549 __SetPageSwapBacked(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001550 SetPageUptodate(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001551 set_page_private(newpage, swap_index);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001552 SetPageSwapCache(newpage);
1553
1554 /*
1555 * Our caller will very soon move newpage out of swapcache, but it's
1556 * a nice clean interface for us to replace oldpage by newpage there.
1557 */
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001558 xa_lock_irq(&swap_mapping->i_pages);
Matthew Wilcox62f945b2017-11-17 10:22:37 -05001559 error = shmem_replace_entry(swap_mapping, swap_index, oldpage, newpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001560 if (!error) {
Mel Gorman11fb9982016-07-28 15:46:20 -07001561 __inc_node_page_state(newpage, NR_FILE_PAGES);
1562 __dec_node_page_state(oldpage, NR_FILE_PAGES);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001563 }
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001564 xa_unlock_irq(&swap_mapping->i_pages);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001565
Hugh Dickins0142ef62012-06-07 14:21:09 -07001566 if (unlikely(error)) {
1567 /*
1568 * Is this possible? I think not, now that our callers check
1569 * both PageSwapCache and page_private after getting page lock;
1570 * but be defensive. Reverse old to newpage for clear and free.
1571 */
1572 oldpage = newpage;
1573 } else {
Johannes Weiner6a93ca82016-03-15 14:57:19 -07001574 mem_cgroup_migrate(oldpage, newpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001575 lru_cache_add_anon(newpage);
1576 *pagep = newpage;
1577 }
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001578
1579 ClearPageSwapCache(oldpage);
1580 set_page_private(oldpage, 0);
1581
1582 unlock_page(oldpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001583 put_page(oldpage);
1584 put_page(oldpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001585 return error;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001586}
1587
1588/*
Hugh Dickins68da9f02011-07-25 17:12:34 -07001589 * shmem_getpage_gfp - find page in cache, or get from swap, or allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 *
1591 * If we allocate a new one we do not mark it dirty. That's up to the
1592 * vm. If we swap it in we mark it dirty since we also free the swap
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001593 * entry since a page cannot live in both the swap and page cache.
1594 *
1595 * fault_mm and fault_type are only supplied by shmem_fault:
1596 * otherwise they are NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001598static int shmem_getpage_gfp(struct inode *inode, pgoff_t index,
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001599 struct page **pagep, enum sgp_type sgp, gfp_t gfp,
Souptick Joarder2b740302018-08-23 17:01:36 -07001600 struct vm_area_struct *vma, struct vm_fault *vmf,
1601 vm_fault_t *fault_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
1603 struct address_space *mapping = inode->i_mapping;
Arnd Bergmann23f919d2016-12-12 16:42:28 -08001604 struct shmem_inode_info *info = SHMEM_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 struct shmem_sb_info *sbinfo;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001606 struct mm_struct *charge_mm;
Johannes Weiner00501b52014-08-08 14:19:20 -07001607 struct mem_cgroup *memcg;
Hugh Dickins27ab7002011-07-25 17:12:36 -07001608 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 swp_entry_t swap;
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001610 enum sgp_type sgp_huge = sgp;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001611 pgoff_t hindex = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 int error;
Hugh Dickins54af60422011-08-03 16:21:24 -07001613 int once = 0;
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001614 int alloced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001616 if (index > (MAX_LFS_FILESIZE >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 return -EFBIG;
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001618 if (sgp == SGP_NOHUGE || sgp == SGP_HUGE)
1619 sgp = SGP_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620repeat:
Hugh Dickins54af60422011-08-03 16:21:24 -07001621 swap.val = 0;
Johannes Weiner0cd61442014-04-03 14:47:46 -07001622 page = find_lock_entry(mapping, index);
Matthew Wilcox3159f942017-11-03 13:30:42 -04001623 if (xa_is_value(page)) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001624 swap = radix_to_swp_entry(page);
1625 page = NULL;
1626 }
1627
Hugh Dickins75edd342016-05-19 17:12:44 -07001628 if (sgp <= SGP_CACHE &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001629 ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001630 error = -EINVAL;
Hugh Dickins267a4c72015-12-11 13:40:55 -08001631 goto unlock;
Hugh Dickins54af60422011-08-03 16:21:24 -07001632 }
1633
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001634 if (page && sgp == SGP_WRITE)
1635 mark_page_accessed(page);
1636
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001637 /* fallocated page? */
1638 if (page && !PageUptodate(page)) {
1639 if (sgp != SGP_READ)
1640 goto clear;
1641 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001642 put_page(page);
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001643 page = NULL;
1644 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001645 if (page || (sgp == SGP_READ && !swap.val)) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001646 *pagep = page;
1647 return 0;
Hugh Dickins27ab7002011-07-25 17:12:36 -07001648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07001651 * Fast cache lookup did not find it:
1652 * bring it back from swap or allocate.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 */
Hugh Dickins54af60422011-08-03 16:21:24 -07001654 sbinfo = SHMEM_SB(inode->i_sb);
Mike Rapoportcfda0522017-02-22 15:43:37 -08001655 charge_mm = vma ? vma->vm_mm : current->mm;
Hugh Dickins27ab7002011-07-25 17:12:36 -07001656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (swap.val) {
1658 /* Look it up and read it in.. */
Huang Yingec560172017-09-06 16:24:36 -07001659 page = lookup_swap_cache(swap, NULL, 0);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001660 if (!page) {
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001661 /* Or update major stats only when swapin succeeds?? */
1662 if (fault_type) {
Hugh Dickins68da9f02011-07-25 17:12:34 -07001663 *fault_type |= VM_FAULT_MAJOR;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001664 count_vm_event(PGMAJFAULT);
Roman Gushchin22621852017-07-06 15:40:25 -07001665 count_memcg_event_mm(charge_mm, PGMAJFAULT);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001666 }
1667 /* Here we actually start the io */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001668 page = shmem_swapin(swap, gfp, info, index);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001669 if (!page) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001670 error = -ENOMEM;
1671 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 }
1674
1675 /* We have to do this with page locked to prevent races */
Hugh Dickins54af60422011-08-03 16:21:24 -07001676 lock_page(page);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001677 if (!PageSwapCache(page) || page_private(page) != swap.val ||
Hugh Dickinsd1899222012-07-11 14:02:47 -07001678 !shmem_confirm_swap(mapping, index, swap)) {
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001679 error = -EEXIST; /* try again */
Hugh Dickinsd1899222012-07-11 14:02:47 -07001680 goto unlock;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001681 }
Hugh Dickins27ab7002011-07-25 17:12:36 -07001682 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 error = -EIO;
Hugh Dickins54af60422011-08-03 16:21:24 -07001684 goto failed;
1685 }
1686 wait_on_page_writeback(page);
1687
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001688 if (shmem_should_replace_page(page, gfp)) {
1689 error = shmem_replace_page(&page, gfp, info, index);
1690 if (error)
1691 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 }
1693
Tejun Heo2cf85582018-07-03 11:14:56 -04001694 error = mem_cgroup_try_charge_delay(page, charge_mm, gfp, &memcg,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001695 false);
Hugh Dickinsd1899222012-07-11 14:02:47 -07001696 if (!error) {
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07001697 error = shmem_add_to_page_cache(page, mapping, index,
Matthew Wilcox552446a2017-12-01 13:25:14 -05001698 swp_to_radix_entry(swap), gfp);
Hugh Dickins215c02b2012-11-16 14:15:03 -08001699 /*
1700 * We already confirmed swap under page lock, and make
1701 * no memory allocation here, so usually no possibility
1702 * of error; but free_swap_and_cache() only trylocks a
1703 * page, so it is just possible that the entry has been
1704 * truncated or holepunched since swap was confirmed.
1705 * shmem_undo_range() will have done some of the
1706 * unaccounting, now delete_from_swap_cache() will do
Vladimir Davydov93aa7d92015-02-11 15:24:59 -08001707 * the rest.
Hugh Dickins215c02b2012-11-16 14:15:03 -08001708 * Reset swap.val? No, leave it so "failed" goes back to
1709 * "repeat": reading a hole and writing should succeed.
1710 */
Johannes Weiner00501b52014-08-08 14:19:20 -07001711 if (error) {
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001712 mem_cgroup_cancel_charge(page, memcg, false);
Hugh Dickins215c02b2012-11-16 14:15:03 -08001713 delete_from_swap_cache(page);
Johannes Weiner00501b52014-08-08 14:19:20 -07001714 }
Hugh Dickinsd1899222012-07-11 14:02:47 -07001715 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001716 if (error)
1717 goto failed;
1718
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001719 mem_cgroup_commit_charge(page, memcg, true, false);
Johannes Weiner00501b52014-08-08 14:19:20 -07001720
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001721 spin_lock_irq(&info->lock);
Hugh Dickins54af60422011-08-03 16:21:24 -07001722 info->swapped--;
1723 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001724 spin_unlock_irq(&info->lock);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001725
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001726 if (sgp == SGP_WRITE)
1727 mark_page_accessed(page);
1728
Hugh Dickins27ab7002011-07-25 17:12:36 -07001729 delete_from_swap_cache(page);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001730 set_page_dirty(page);
1731 swap_free(swap);
1732
Hugh Dickins54af60422011-08-03 16:21:24 -07001733 } else {
Mike Rapoportcfda0522017-02-22 15:43:37 -08001734 if (vma && userfaultfd_missing(vma)) {
1735 *fault_type = handle_userfault(vmf, VM_UFFD_MISSING);
1736 return 0;
1737 }
1738
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001739 /* shmem_symlink() */
1740 if (mapping->a_ops != &shmem_aops)
1741 goto alloc_nohuge;
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001742 if (shmem_huge == SHMEM_HUGE_DENY || sgp_huge == SGP_NOHUGE)
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001743 goto alloc_nohuge;
1744 if (shmem_huge == SHMEM_HUGE_FORCE)
1745 goto alloc_huge;
1746 switch (sbinfo->huge) {
1747 loff_t i_size;
1748 pgoff_t off;
1749 case SHMEM_HUGE_NEVER:
1750 goto alloc_nohuge;
1751 case SHMEM_HUGE_WITHIN_SIZE:
1752 off = round_up(index, HPAGE_PMD_NR);
1753 i_size = round_up(i_size_read(inode), PAGE_SIZE);
1754 if (i_size >= HPAGE_PMD_SIZE &&
1755 i_size >> PAGE_SHIFT >= off)
1756 goto alloc_huge;
1757 /* fallthrough */
1758 case SHMEM_HUGE_ADVISE:
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001759 if (sgp_huge == SGP_HUGE)
1760 goto alloc_huge;
1761 /* TODO: implement fadvise() hints */
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001762 goto alloc_nohuge;
Hugh Dickins59a16ea2011-05-11 15:13:38 -07001763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001765alloc_huge:
Mike Rapoport0f079692017-09-06 16:22:59 -07001766 page = shmem_alloc_and_acct_page(gfp, inode, index, true);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001767 if (IS_ERR(page)) {
Mike Rapoport0f079692017-09-06 16:22:59 -07001768alloc_nohuge: page = shmem_alloc_and_acct_page(gfp, inode,
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001769 index, false);
Hugh Dickins54af60422011-08-03 16:21:24 -07001770 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001771 if (IS_ERR(page)) {
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001772 int retry = 5;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001773 error = PTR_ERR(page);
1774 page = NULL;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001775 if (error != -ENOSPC)
1776 goto failed;
1777 /*
1778 * Try to reclaim some spece by splitting a huge page
1779 * beyond i_size on the filesystem.
1780 */
1781 while (retry--) {
1782 int ret;
1783 ret = shmem_unused_huge_shrink(sbinfo, NULL, 1);
1784 if (ret == SHRINK_STOP)
1785 break;
1786 if (ret)
1787 goto alloc_nohuge;
1788 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001789 goto failed;
1790 }
1791
1792 if (PageTransHuge(page))
1793 hindex = round_down(index, HPAGE_PMD_NR);
1794 else
1795 hindex = index;
1796
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001797 if (sgp == SGP_WRITE)
Hugh Dickinseb39d612014-08-06 16:06:43 -07001798 __SetPageReferenced(page);
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001799
Tejun Heo2cf85582018-07-03 11:14:56 -04001800 error = mem_cgroup_try_charge_delay(page, charge_mm, gfp, &memcg,
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001801 PageTransHuge(page));
Hugh Dickins54af60422011-08-03 16:21:24 -07001802 if (error)
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001803 goto unacct;
Matthew Wilcox552446a2017-12-01 13:25:14 -05001804 error = shmem_add_to_page_cache(page, mapping, hindex,
1805 NULL, gfp & GFP_RECLAIM_MASK);
Hugh Dickinsb065b432012-07-11 14:02:48 -07001806 if (error) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001807 mem_cgroup_cancel_charge(page, memcg,
1808 PageTransHuge(page));
1809 goto unacct;
Hugh Dickinsb065b432012-07-11 14:02:48 -07001810 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001811 mem_cgroup_commit_charge(page, memcg, false,
1812 PageTransHuge(page));
Hugh Dickins54af60422011-08-03 16:21:24 -07001813 lru_cache_add_anon(page);
1814
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001815 spin_lock_irq(&info->lock);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001816 info->alloced += 1 << compound_order(page);
1817 inode->i_blocks += BLOCKS_PER_PAGE << compound_order(page);
Hugh Dickins54af60422011-08-03 16:21:24 -07001818 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001819 spin_unlock_irq(&info->lock);
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001820 alloced = true;
Hugh Dickins54af60422011-08-03 16:21:24 -07001821
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001822 if (PageTransHuge(page) &&
1823 DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE) <
1824 hindex + HPAGE_PMD_NR - 1) {
1825 /*
1826 * Part of the huge page is beyond i_size: subject
1827 * to shrink under memory pressure.
1828 */
1829 spin_lock(&sbinfo->shrinklist_lock);
Cong Wangd0413532017-08-10 15:24:24 -07001830 /*
1831 * _careful to defend against unlocked access to
1832 * ->shrink_list in shmem_unused_huge_shrink()
1833 */
1834 if (list_empty_careful(&info->shrinklist)) {
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07001835 list_add_tail(&info->shrinklist,
1836 &sbinfo->shrinklist);
1837 sbinfo->shrinklist_len++;
1838 }
1839 spin_unlock(&sbinfo->shrinklist_lock);
1840 }
1841
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001842 /*
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001843 * Let SGP_FALLOC use the SGP_WRITE optimization on a new page.
1844 */
1845 if (sgp == SGP_FALLOC)
1846 sgp = SGP_WRITE;
1847clear:
1848 /*
1849 * Let SGP_WRITE caller clear ends if write does not fill page;
1850 * but SGP_FALLOC on a page fallocated earlier must initialize
1851 * it now, lest undo on failure cancel our earlier guarantee.
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001852 */
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001853 if (sgp != SGP_WRITE && !PageUptodate(page)) {
1854 struct page *head = compound_head(page);
1855 int i;
1856
1857 for (i = 0; i < (1 << compound_order(head)); i++) {
1858 clear_highpage(head + i);
1859 flush_dcache_page(head + i);
1860 }
1861 SetPageUptodate(head);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001862 }
Hugh Dickins59a16ea2011-05-11 15:13:38 -07001863 }
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001864
Hugh Dickins54af60422011-08-03 16:21:24 -07001865 /* Perhaps the file has been truncated since we checked */
Hugh Dickins75edd342016-05-19 17:12:44 -07001866 if (sgp <= SGP_CACHE &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001867 ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) {
Hugh Dickins267a4c72015-12-11 13:40:55 -08001868 if (alloced) {
1869 ClearPageDirty(page);
1870 delete_from_page_cache(page);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001871 spin_lock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001872 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001873 spin_unlock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001874 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001875 error = -EINVAL;
Hugh Dickins267a4c72015-12-11 13:40:55 -08001876 goto unlock;
Shaohua Liff36b8012010-08-09 17:19:06 -07001877 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001878 *pagep = page + index - hindex;
Hugh Dickins54af60422011-08-03 16:21:24 -07001879 return 0;
Nick Piggind00806b2007-07-19 01:46:57 -07001880
Nick Piggind0217ac2007-07-19 01:47:03 -07001881 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07001882 * Error recovery.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 */
Hugh Dickins54af60422011-08-03 16:21:24 -07001884unacct:
Mike Rapoport0f079692017-09-06 16:22:59 -07001885 shmem_inode_unacct_blocks(inode, 1 << compound_order(page));
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001886
1887 if (PageTransHuge(page)) {
1888 unlock_page(page);
1889 put_page(page);
1890 goto alloc_nohuge;
1891 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001892failed:
Hugh Dickins267a4c72015-12-11 13:40:55 -08001893 if (swap.val && !shmem_confirm_swap(mapping, index, swap))
Hugh Dickinsd1899222012-07-11 14:02:47 -07001894 error = -EEXIST;
1895unlock:
Hugh Dickins27ab7002011-07-25 17:12:36 -07001896 if (page) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001897 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001898 put_page(page);
Hugh Dickins54af60422011-08-03 16:21:24 -07001899 }
1900 if (error == -ENOSPC && !once++) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001901 spin_lock_irq(&info->lock);
Hugh Dickins54af60422011-08-03 16:21:24 -07001902 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001903 spin_unlock_irq(&info->lock);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001904 goto repeat;
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001905 }
Hugh Dickinsd1899222012-07-11 14:02:47 -07001906 if (error == -EEXIST) /* from above or from radix_tree_insert */
Hugh Dickins54af60422011-08-03 16:21:24 -07001907 goto repeat;
1908 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909}
1910
Linus Torvalds10d20bd2016-12-05 12:10:29 -08001911/*
1912 * This is like autoremove_wake_function, but it removes the wait queue
1913 * entry unconditionally - even if something else had already woken the
1914 * target.
1915 */
Ingo Molnarac6424b2017-06-20 12:06:13 +02001916static int synchronous_wake_function(wait_queue_entry_t *wait, unsigned mode, int sync, void *key)
Linus Torvalds10d20bd2016-12-05 12:10:29 -08001917{
1918 int ret = default_wake_function(wait, mode, sync, key);
Ingo Molnar2055da92017-06-20 12:06:46 +02001919 list_del_init(&wait->entry);
Linus Torvalds10d20bd2016-12-05 12:10:29 -08001920 return ret;
1921}
1922
Souptick Joarder20acce62018-06-07 17:09:17 -07001923static vm_fault_t shmem_fault(struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
Dave Jiang11bac802017-02-24 14:56:41 -08001925 struct vm_area_struct *vma = vmf->vma;
Al Viro496ad9a2013-01-23 17:07:38 -05001926 struct inode *inode = file_inode(vma->vm_file);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001927 gfp_t gfp = mapping_gfp_mask(inode->i_mapping);
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001928 enum sgp_type sgp;
Souptick Joarder20acce62018-06-07 17:09:17 -07001929 int err;
1930 vm_fault_t ret = VM_FAULT_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001932 /*
1933 * Trinity finds that probing a hole which tmpfs is punching can
1934 * prevent the hole-punch from ever completing: which in turn
1935 * locks writers out with its hold on i_mutex. So refrain from
Hugh Dickins8e205f72014-07-23 14:00:10 -07001936 * faulting pages into the hole while it's being punched. Although
1937 * shmem_undo_range() does remove the additions, it may be unable to
1938 * keep up, as each new page needs its own unmap_mapping_range() call,
1939 * and the i_mmap tree grows ever slower to scan if new vmas are added.
1940 *
1941 * It does not matter if we sometimes reach this check just before the
1942 * hole-punch begins, so that one fault then races with the punch:
1943 * we just need to make racing faults a rare case.
1944 *
1945 * The implementation below would be much simpler if we just used a
1946 * standard mutex or completion: but we cannot take i_mutex in fault,
1947 * and bloating every shmem inode for this unlikely case would be sad.
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001948 */
1949 if (unlikely(inode->i_private)) {
1950 struct shmem_falloc *shmem_falloc;
1951
1952 spin_lock(&inode->i_lock);
1953 shmem_falloc = inode->i_private;
Hugh Dickins8e205f72014-07-23 14:00:10 -07001954 if (shmem_falloc &&
1955 shmem_falloc->waitq &&
1956 vmf->pgoff >= shmem_falloc->start &&
1957 vmf->pgoff < shmem_falloc->next) {
1958 wait_queue_head_t *shmem_falloc_waitq;
Linus Torvalds10d20bd2016-12-05 12:10:29 -08001959 DEFINE_WAIT_FUNC(shmem_fault_wait, synchronous_wake_function);
Hugh Dickins8e205f72014-07-23 14:00:10 -07001960
1961 ret = VM_FAULT_NOPAGE;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001962 if ((vmf->flags & FAULT_FLAG_ALLOW_RETRY) &&
1963 !(vmf->flags & FAULT_FLAG_RETRY_NOWAIT)) {
Hugh Dickins8e205f72014-07-23 14:00:10 -07001964 /* It's polite to up mmap_sem if we can */
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001965 up_read(&vma->vm_mm->mmap_sem);
Hugh Dickins8e205f72014-07-23 14:00:10 -07001966 ret = VM_FAULT_RETRY;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001967 }
Hugh Dickins8e205f72014-07-23 14:00:10 -07001968
1969 shmem_falloc_waitq = shmem_falloc->waitq;
1970 prepare_to_wait(shmem_falloc_waitq, &shmem_fault_wait,
1971 TASK_UNINTERRUPTIBLE);
1972 spin_unlock(&inode->i_lock);
1973 schedule();
1974
1975 /*
1976 * shmem_falloc_waitq points into the shmem_fallocate()
1977 * stack of the hole-punching task: shmem_falloc_waitq
1978 * is usually invalid by the time we reach here, but
1979 * finish_wait() does not dereference it in that case;
1980 * though i_lock needed lest racing with wake_up_all().
1981 */
1982 spin_lock(&inode->i_lock);
1983 finish_wait(shmem_falloc_waitq, &shmem_fault_wait);
1984 spin_unlock(&inode->i_lock);
1985 return ret;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001986 }
Hugh Dickins8e205f72014-07-23 14:00:10 -07001987 spin_unlock(&inode->i_lock);
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001988 }
1989
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001990 sgp = SGP_CACHE;
Michal Hocko18600332017-07-10 15:48:02 -07001991
1992 if ((vma->vm_flags & VM_NOHUGEPAGE) ||
1993 test_bit(MMF_DISABLE_THP, &vma->vm_mm->flags))
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001994 sgp = SGP_NOHUGE;
Michal Hocko18600332017-07-10 15:48:02 -07001995 else if (vma->vm_flags & VM_HUGEPAGE)
1996 sgp = SGP_HUGE;
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001997
Souptick Joarder20acce62018-06-07 17:09:17 -07001998 err = shmem_getpage_gfp(inode, vmf->pgoff, &vmf->page, sgp,
Mike Rapoportcfda0522017-02-22 15:43:37 -08001999 gfp, vma, vmf, &ret);
Souptick Joarder20acce62018-06-07 17:09:17 -07002000 if (err)
2001 return vmf_error(err);
Hugh Dickins68da9f02011-07-25 17:12:34 -07002002 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003}
2004
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07002005unsigned long shmem_get_unmapped_area(struct file *file,
2006 unsigned long uaddr, unsigned long len,
2007 unsigned long pgoff, unsigned long flags)
2008{
2009 unsigned long (*get_area)(struct file *,
2010 unsigned long, unsigned long, unsigned long, unsigned long);
2011 unsigned long addr;
2012 unsigned long offset;
2013 unsigned long inflated_len;
2014 unsigned long inflated_addr;
2015 unsigned long inflated_offset;
2016
2017 if (len > TASK_SIZE)
2018 return -ENOMEM;
2019
2020 get_area = current->mm->get_unmapped_area;
2021 addr = get_area(file, uaddr, len, pgoff, flags);
2022
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07002023 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE))
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07002024 return addr;
2025 if (IS_ERR_VALUE(addr))
2026 return addr;
2027 if (addr & ~PAGE_MASK)
2028 return addr;
2029 if (addr > TASK_SIZE - len)
2030 return addr;
2031
2032 if (shmem_huge == SHMEM_HUGE_DENY)
2033 return addr;
2034 if (len < HPAGE_PMD_SIZE)
2035 return addr;
2036 if (flags & MAP_FIXED)
2037 return addr;
2038 /*
2039 * Our priority is to support MAP_SHARED mapped hugely;
2040 * and support MAP_PRIVATE mapped hugely too, until it is COWed.
2041 * But if caller specified an address hint, respect that as before.
2042 */
2043 if (uaddr)
2044 return addr;
2045
2046 if (shmem_huge != SHMEM_HUGE_FORCE) {
2047 struct super_block *sb;
2048
2049 if (file) {
2050 VM_BUG_ON(file->f_op != &shmem_file_operations);
2051 sb = file_inode(file)->i_sb;
2052 } else {
2053 /*
2054 * Called directly from mm/mmap.c, or drivers/char/mem.c
2055 * for "/dev/zero", to create a shared anonymous object.
2056 */
2057 if (IS_ERR(shm_mnt))
2058 return addr;
2059 sb = shm_mnt->mnt_sb;
2060 }
Toshi Kani3089bf62016-09-23 20:21:56 -07002061 if (SHMEM_SB(sb)->huge == SHMEM_HUGE_NEVER)
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07002062 return addr;
2063 }
2064
2065 offset = (pgoff << PAGE_SHIFT) & (HPAGE_PMD_SIZE-1);
2066 if (offset && offset + len < 2 * HPAGE_PMD_SIZE)
2067 return addr;
2068 if ((addr & (HPAGE_PMD_SIZE-1)) == offset)
2069 return addr;
2070
2071 inflated_len = len + HPAGE_PMD_SIZE - PAGE_SIZE;
2072 if (inflated_len > TASK_SIZE)
2073 return addr;
2074 if (inflated_len < len)
2075 return addr;
2076
2077 inflated_addr = get_area(NULL, 0, inflated_len, 0, flags);
2078 if (IS_ERR_VALUE(inflated_addr))
2079 return addr;
2080 if (inflated_addr & ~PAGE_MASK)
2081 return addr;
2082
2083 inflated_offset = inflated_addr & (HPAGE_PMD_SIZE-1);
2084 inflated_addr += offset - inflated_offset;
2085 if (inflated_offset > offset)
2086 inflated_addr += HPAGE_PMD_SIZE;
2087
2088 if (inflated_addr > TASK_SIZE - len)
2089 return addr;
2090 return inflated_addr;
2091}
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093#ifdef CONFIG_NUMA
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002094static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *mpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095{
Al Viro496ad9a2013-01-23 17:07:38 -05002096 struct inode *inode = file_inode(vma->vm_file);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002097 return mpol_set_shared_policy(&SHMEM_I(inode)->policy, vma, mpol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098}
2099
Adrian Bunkd8dc74f2007-10-16 01:26:26 -07002100static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma,
2101 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
Al Viro496ad9a2013-01-23 17:07:38 -05002103 struct inode *inode = file_inode(vma->vm_file);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002104 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002106 index = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
2107 return mpol_shared_policy_lookup(&SHMEM_I(inode)->policy, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108}
2109#endif
2110
2111int shmem_lock(struct file *file, int lock, struct user_struct *user)
2112{
Al Viro496ad9a2013-01-23 17:07:38 -05002113 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 struct shmem_inode_info *info = SHMEM_I(inode);
2115 int retval = -ENOMEM;
2116
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07002117 spin_lock_irq(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 if (lock && !(info->flags & VM_LOCKED)) {
2119 if (!user_shm_lock(inode->i_size, user))
2120 goto out_nomem;
2121 info->flags |= VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002122 mapping_set_unevictable(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 }
2124 if (!lock && (info->flags & VM_LOCKED) && user) {
2125 user_shm_unlock(inode->i_size, user);
2126 info->flags &= ~VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002127 mapping_clear_unevictable(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 }
2129 retval = 0;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131out_nomem:
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07002132 spin_unlock_irq(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 return retval;
2134}
2135
Adrian Bunk9b83a6a2007-02-28 20:11:03 -08002136static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
2138 file_accessed(file);
2139 vma->vm_ops = &shmem_vm_ops;
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07002140 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE) &&
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002141 ((vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK) <
2142 (vma->vm_end & HPAGE_PMD_MASK)) {
2143 khugepaged_enter(vma, vma->vm_flags);
2144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 return 0;
2146}
2147
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002148static struct inode *shmem_get_inode(struct super_block *sb, const struct inode *dir,
Al Viro09208d12011-07-26 03:15:03 -04002149 umode_t mode, dev_t dev, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
2151 struct inode *inode;
2152 struct shmem_inode_info *info;
2153 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
2154
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002155 if (shmem_reserve_inode(sb))
2156 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158 inode = new_inode(sb);
2159 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -04002160 inode->i_ino = get_next_ino();
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002161 inode_init_owner(inode, dir, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 inode->i_blocks = 0;
Deepa Dinamani078cd822016-09-14 07:48:04 -07002163 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Arnd Bergmann46c9a942018-08-17 15:45:09 -07002164 inode->i_generation = prandom_u32();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 info = SHMEM_I(inode);
2166 memset(info, 0, (char *)inode - (char *)info);
2167 spin_lock_init(&info->lock);
David Herrmann40e041a2014-08-08 14:25:27 -07002168 info->seals = F_SEAL_SEAL;
Hugh Dickins0b0a0802009-02-24 20:51:52 +00002169 info->flags = flags & VM_NORESERVE;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07002170 INIT_LIST_HEAD(&info->shrinklist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 INIT_LIST_HEAD(&info->swaplist);
Aristeu Rozanski38f38652012-08-23 16:53:28 -04002172 simple_xattrs_init(&info->xattrs);
Al Viro72c04902009-06-24 16:58:48 -04002173 cache_no_acl(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175 switch (mode & S_IFMT) {
2176 default:
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002177 inode->i_op = &shmem_special_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 init_special_inode(inode, mode, dev);
2179 break;
2180 case S_IFREG:
Hugh Dickins14fcc232008-07-28 15:46:19 -07002181 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 inode->i_op = &shmem_inode_operations;
2183 inode->i_fop = &shmem_file_operations;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002184 mpol_shared_policy_init(&info->policy,
2185 shmem_get_sbmpol(sbinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 break;
2187 case S_IFDIR:
Dave Hansend8c76e62006-09-30 23:29:04 -07002188 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 /* Some things misbehave if size == 0 on a directory */
2190 inode->i_size = 2 * BOGO_DIRENT_SIZE;
2191 inode->i_op = &shmem_dir_inode_operations;
2192 inode->i_fop = &simple_dir_operations;
2193 break;
2194 case S_IFLNK:
2195 /*
2196 * Must not load anything in the rbtree,
2197 * mpol_free_shared_policy will not be called.
2198 */
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002199 mpol_shared_policy_init(&info->policy, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 break;
2201 }
Joel Fernandes (Google)b45d71f2018-09-20 12:22:39 -07002202
2203 lockdep_annotate_inode_mutex_key(inode);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002204 } else
2205 shmem_free_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 return inode;
2207}
2208
Johannes Weiner0cd61442014-04-03 14:47:46 -07002209bool shmem_mapping(struct address_space *mapping)
2210{
Hugh Dickinsf8005452017-02-22 15:41:42 -08002211 return mapping->a_ops == &shmem_aops;
Johannes Weiner0cd61442014-04-03 14:47:46 -07002212}
2213
Mike Rapoport8d103962017-09-06 16:23:02 -07002214static int shmem_mfill_atomic_pte(struct mm_struct *dst_mm,
2215 pmd_t *dst_pmd,
2216 struct vm_area_struct *dst_vma,
2217 unsigned long dst_addr,
2218 unsigned long src_addr,
2219 bool zeropage,
2220 struct page **pagep)
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002221{
2222 struct inode *inode = file_inode(dst_vma->vm_file);
2223 struct shmem_inode_info *info = SHMEM_I(inode);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002224 struct address_space *mapping = inode->i_mapping;
2225 gfp_t gfp = mapping_gfp_mask(mapping);
2226 pgoff_t pgoff = linear_page_index(dst_vma, dst_addr);
2227 struct mem_cgroup *memcg;
2228 spinlock_t *ptl;
2229 void *page_kaddr;
2230 struct page *page;
2231 pte_t _dst_pte, *dst_pte;
2232 int ret;
2233
Andrea Arcangelicb658a42017-02-22 15:43:55 -08002234 ret = -ENOMEM;
Mike Rapoport0f079692017-09-06 16:22:59 -07002235 if (!shmem_inode_acct_block(inode, 1))
Andrea Arcangelicb658a42017-02-22 15:43:55 -08002236 goto out;
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002237
Andrea Arcangelicb658a42017-02-22 15:43:55 -08002238 if (!*pagep) {
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002239 page = shmem_alloc_page(gfp, info, pgoff);
2240 if (!page)
Mike Rapoport0f079692017-09-06 16:22:59 -07002241 goto out_unacct_blocks;
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002242
Mike Rapoport8d103962017-09-06 16:23:02 -07002243 if (!zeropage) { /* mcopy_atomic */
2244 page_kaddr = kmap_atomic(page);
2245 ret = copy_from_user(page_kaddr,
2246 (const void __user *)src_addr,
2247 PAGE_SIZE);
2248 kunmap_atomic(page_kaddr);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002249
Mike Rapoport8d103962017-09-06 16:23:02 -07002250 /* fallback to copy_from_user outside mmap_sem */
2251 if (unlikely(ret)) {
2252 *pagep = page;
2253 shmem_inode_unacct_blocks(inode, 1);
2254 /* don't free the page */
2255 return -EFAULT;
2256 }
2257 } else { /* mfill_zeropage_atomic */
2258 clear_highpage(page);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002259 }
2260 } else {
2261 page = *pagep;
2262 *pagep = NULL;
2263 }
2264
Andrea Arcangeli9cc90c62017-02-22 15:43:49 -08002265 VM_BUG_ON(PageLocked(page) || PageSwapBacked(page));
2266 __SetPageLocked(page);
2267 __SetPageSwapBacked(page);
Andrea Arcangelia425d352017-02-22 15:43:52 -08002268 __SetPageUptodate(page);
Andrea Arcangeli9cc90c62017-02-22 15:43:49 -08002269
Tejun Heo2cf85582018-07-03 11:14:56 -04002270 ret = mem_cgroup_try_charge_delay(page, dst_mm, gfp, &memcg, false);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002271 if (ret)
2272 goto out_release;
2273
Matthew Wilcox552446a2017-12-01 13:25:14 -05002274 ret = shmem_add_to_page_cache(page, mapping, pgoff, NULL,
2275 gfp & GFP_RECLAIM_MASK);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002276 if (ret)
2277 goto out_release_uncharge;
2278
2279 mem_cgroup_commit_charge(page, memcg, false, false);
2280
2281 _dst_pte = mk_pte(page, dst_vma->vm_page_prot);
2282 if (dst_vma->vm_flags & VM_WRITE)
2283 _dst_pte = pte_mkwrite(pte_mkdirty(_dst_pte));
2284
2285 ret = -EEXIST;
2286 dst_pte = pte_offset_map_lock(dst_mm, dst_pmd, dst_addr, &ptl);
2287 if (!pte_none(*dst_pte))
2288 goto out_release_uncharge_unlock;
2289
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002290 lru_cache_add_anon(page);
2291
2292 spin_lock(&info->lock);
2293 info->alloced++;
2294 inode->i_blocks += BLOCKS_PER_PAGE;
2295 shmem_recalc_inode(inode);
2296 spin_unlock(&info->lock);
2297
2298 inc_mm_counter(dst_mm, mm_counter_file(page));
2299 page_add_file_rmap(page, false);
2300 set_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte);
2301
2302 /* No need to invalidate - it was non-present before */
2303 update_mmu_cache(dst_vma, dst_addr, dst_pte);
2304 unlock_page(page);
2305 pte_unmap_unlock(dst_pte, ptl);
2306 ret = 0;
2307out:
2308 return ret;
2309out_release_uncharge_unlock:
2310 pte_unmap_unlock(dst_pte, ptl);
2311out_release_uncharge:
2312 mem_cgroup_cancel_charge(page, memcg, false);
2313out_release:
Andrea Arcangeli9cc90c62017-02-22 15:43:49 -08002314 unlock_page(page);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002315 put_page(page);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002316out_unacct_blocks:
Mike Rapoport0f079692017-09-06 16:22:59 -07002317 shmem_inode_unacct_blocks(inode, 1);
Mike Rapoport4c27fe42017-02-22 15:43:25 -08002318 goto out;
2319}
2320
Mike Rapoport8d103962017-09-06 16:23:02 -07002321int shmem_mcopy_atomic_pte(struct mm_struct *dst_mm,
2322 pmd_t *dst_pmd,
2323 struct vm_area_struct *dst_vma,
2324 unsigned long dst_addr,
2325 unsigned long src_addr,
2326 struct page **pagep)
2327{
2328 return shmem_mfill_atomic_pte(dst_mm, dst_pmd, dst_vma,
2329 dst_addr, src_addr, false, pagep);
2330}
2331
2332int shmem_mfill_zeropage_pte(struct mm_struct *dst_mm,
2333 pmd_t *dst_pmd,
2334 struct vm_area_struct *dst_vma,
2335 unsigned long dst_addr)
2336{
2337 struct page *page = NULL;
2338
2339 return shmem_mfill_atomic_pte(dst_mm, dst_pmd, dst_vma,
2340 dst_addr, 0, true, &page);
2341}
2342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343#ifdef CONFIG_TMPFS
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002344static const struct inode_operations shmem_symlink_inode_operations;
Hugh Dickins69f07ec2011-08-03 16:21:26 -07002345static const struct inode_operations shmem_short_symlink_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07002347#ifdef CONFIG_TMPFS_XATTR
2348static int shmem_initxattrs(struct inode *, const struct xattr *, void *);
2349#else
2350#define shmem_initxattrs NULL
2351#endif
2352
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353static int
Nick Piggin800d15a2007-10-16 01:25:03 -07002354shmem_write_begin(struct file *file, struct address_space *mapping,
2355 loff_t pos, unsigned len, unsigned flags,
2356 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357{
Nick Piggin800d15a2007-10-16 01:25:03 -07002358 struct inode *inode = mapping->host;
David Herrmann40e041a2014-08-08 14:25:27 -07002359 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002360 pgoff_t index = pos >> PAGE_SHIFT;
David Herrmann40e041a2014-08-08 14:25:27 -07002361
2362 /* i_mutex is held by caller */
Steven Rostedt (VMware)3f472cc2017-02-24 14:59:10 -08002363 if (unlikely(info->seals & (F_SEAL_WRITE | F_SEAL_GROW))) {
David Herrmann40e041a2014-08-08 14:25:27 -07002364 if (info->seals & F_SEAL_WRITE)
2365 return -EPERM;
2366 if ((info->seals & F_SEAL_GROW) && pos + len > inode->i_size)
2367 return -EPERM;
2368 }
2369
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07002370 return shmem_getpage(inode, index, pagep, SGP_WRITE);
Nick Piggin800d15a2007-10-16 01:25:03 -07002371}
2372
2373static int
2374shmem_write_end(struct file *file, struct address_space *mapping,
2375 loff_t pos, unsigned len, unsigned copied,
2376 struct page *page, void *fsdata)
2377{
2378 struct inode *inode = mapping->host;
2379
Hugh Dickinsd3602442008-02-04 22:28:44 -08002380 if (pos + copied > inode->i_size)
2381 i_size_write(inode, pos + copied);
2382
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002383 if (!PageUptodate(page)) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07002384 struct page *head = compound_head(page);
2385 if (PageTransCompound(page)) {
2386 int i;
2387
2388 for (i = 0; i < HPAGE_PMD_NR; i++) {
2389 if (head + i == page)
2390 continue;
2391 clear_highpage(head + i);
2392 flush_dcache_page(head + i);
2393 }
2394 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002395 if (copied < PAGE_SIZE) {
2396 unsigned from = pos & (PAGE_SIZE - 1);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002397 zero_user_segments(page, 0, from,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002398 from + copied, PAGE_SIZE);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002399 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07002400 SetPageUptodate(head);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002401 }
Nick Piggin800d15a2007-10-16 01:25:03 -07002402 set_page_dirty(page);
Wu Fengguang6746aff2009-09-16 11:50:14 +02002403 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002404 put_page(page);
Nick Piggin800d15a2007-10-16 01:25:03 -07002405
Nick Piggin800d15a2007-10-16 01:25:03 -07002406 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407}
2408
Al Viro2ba5bbe2014-04-02 20:00:02 -04002409static ssize_t shmem_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410{
Al Viro6e58e792014-02-03 17:07:03 -05002411 struct file *file = iocb->ki_filp;
2412 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 struct address_space *mapping = inode->i_mapping;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002414 pgoff_t index;
2415 unsigned long offset;
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08002416 enum sgp_type sgp = SGP_READ;
Geert Uytterhoevenf7c1d072014-04-13 20:46:22 +02002417 int error = 0;
Al Virocb66a7a2014-03-04 15:24:06 -05002418 ssize_t retval = 0;
Al Viro6e58e792014-02-03 17:07:03 -05002419 loff_t *ppos = &iocb->ki_pos;
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08002420
2421 /*
2422 * Might this read be for a stacking filesystem? Then when reading
2423 * holes of a sparse file, we actually need to allocate those pages,
2424 * and even mark them dirty, so it cannot exceed the max_blocks limit.
2425 */
Al Viro777eda22014-12-17 04:46:46 -05002426 if (!iter_is_iovec(to))
Hugh Dickins75edd342016-05-19 17:12:44 -07002427 sgp = SGP_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002429 index = *ppos >> PAGE_SHIFT;
2430 offset = *ppos & ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
2432 for (;;) {
2433 struct page *page = NULL;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002434 pgoff_t end_index;
2435 unsigned long nr, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 loff_t i_size = i_size_read(inode);
2437
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002438 end_index = i_size >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 if (index > end_index)
2440 break;
2441 if (index == end_index) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002442 nr = i_size & ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 if (nr <= offset)
2444 break;
2445 }
2446
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07002447 error = shmem_getpage(inode, index, &page, sgp);
Al Viro6e58e792014-02-03 17:07:03 -05002448 if (error) {
2449 if (error == -EINVAL)
2450 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 break;
2452 }
Hugh Dickins75edd342016-05-19 17:12:44 -07002453 if (page) {
2454 if (sgp == SGP_CACHE)
2455 set_page_dirty(page);
Hugh Dickinsd3602442008-02-04 22:28:44 -08002456 unlock_page(page);
Hugh Dickins75edd342016-05-19 17:12:44 -07002457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
2459 /*
2460 * We must evaluate after, since reads (unlike writes)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002461 * are called without i_mutex protection against truncate
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002463 nr = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002465 end_index = i_size >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 if (index == end_index) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002467 nr = i_size & ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (nr <= offset) {
2469 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002470 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 break;
2472 }
2473 }
2474 nr -= offset;
2475
2476 if (page) {
2477 /*
2478 * If users can be writing to this page using arbitrary
2479 * virtual addresses, take care about potential aliasing
2480 * before reading the page on the kernel side.
2481 */
2482 if (mapping_writably_mapped(mapping))
2483 flush_dcache_page(page);
2484 /*
2485 * Mark the page accessed if we read the beginning.
2486 */
2487 if (!offset)
2488 mark_page_accessed(page);
Nick Pigginb5810032005-10-29 18:16:12 -07002489 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 page = ZERO_PAGE(0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002491 get_page(page);
Nick Pigginb5810032005-10-29 18:16:12 -07002492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
2494 /*
2495 * Ok, we have the page, and it's up-to-date, so
2496 * now we can copy it to user space...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 */
Al Viro2ba5bbe2014-04-02 20:00:02 -04002498 ret = copy_page_to_iter(page, offset, nr, to);
Al Viro6e58e792014-02-03 17:07:03 -05002499 retval += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 offset += ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002501 index += offset >> PAGE_SHIFT;
2502 offset &= ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002504 put_page(page);
Al Viro2ba5bbe2014-04-02 20:00:02 -04002505 if (!iov_iter_count(to))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 break;
Al Viro6e58e792014-02-03 17:07:03 -05002507 if (ret < nr) {
2508 error = -EFAULT;
2509 break;
2510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 cond_resched();
2512 }
2513
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002514 *ppos = ((loff_t) index << PAGE_SHIFT) + offset;
Al Viro6e58e792014-02-03 17:07:03 -05002515 file_accessed(file);
2516 return retval ? retval : error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517}
2518
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002519/*
2520 * llseek SEEK_DATA or SEEK_HOLE through the radix_tree.
2521 */
2522static pgoff_t shmem_seek_hole_data(struct address_space *mapping,
Andrew Morton965c8e52012-12-17 15:59:39 -08002523 pgoff_t index, pgoff_t end, int whence)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002524{
2525 struct page *page;
2526 struct pagevec pvec;
2527 pgoff_t indices[PAGEVEC_SIZE];
2528 bool done = false;
2529 int i;
2530
Mel Gorman86679822017-11-15 17:37:52 -08002531 pagevec_init(&pvec);
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002532 pvec.nr = 1; /* start small: we may be there already */
2533 while (!done) {
Johannes Weiner0cd61442014-04-03 14:47:46 -07002534 pvec.nr = find_get_entries(mapping, index,
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002535 pvec.nr, pvec.pages, indices);
2536 if (!pvec.nr) {
Andrew Morton965c8e52012-12-17 15:59:39 -08002537 if (whence == SEEK_DATA)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002538 index = end;
2539 break;
2540 }
2541 for (i = 0; i < pvec.nr; i++, index++) {
2542 if (index < indices[i]) {
Andrew Morton965c8e52012-12-17 15:59:39 -08002543 if (whence == SEEK_HOLE) {
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002544 done = true;
2545 break;
2546 }
2547 index = indices[i];
2548 }
2549 page = pvec.pages[i];
Matthew Wilcox3159f942017-11-03 13:30:42 -04002550 if (page && !xa_is_value(page)) {
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002551 if (!PageUptodate(page))
2552 page = NULL;
2553 }
2554 if (index >= end ||
Andrew Morton965c8e52012-12-17 15:59:39 -08002555 (page && whence == SEEK_DATA) ||
2556 (!page && whence == SEEK_HOLE)) {
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002557 done = true;
2558 break;
2559 }
2560 }
Johannes Weiner0cd61442014-04-03 14:47:46 -07002561 pagevec_remove_exceptionals(&pvec);
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002562 pagevec_release(&pvec);
2563 pvec.nr = PAGEVEC_SIZE;
2564 cond_resched();
2565 }
2566 return index;
2567}
2568
Andrew Morton965c8e52012-12-17 15:59:39 -08002569static loff_t shmem_file_llseek(struct file *file, loff_t offset, int whence)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002570{
2571 struct address_space *mapping = file->f_mapping;
2572 struct inode *inode = mapping->host;
2573 pgoff_t start, end;
2574 loff_t new_offset;
2575
Andrew Morton965c8e52012-12-17 15:59:39 -08002576 if (whence != SEEK_DATA && whence != SEEK_HOLE)
2577 return generic_file_llseek_size(file, offset, whence,
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002578 MAX_LFS_FILESIZE, i_size_read(inode));
Al Viro59551022016-01-22 15:40:57 -05002579 inode_lock(inode);
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002580 /* We're holding i_mutex so we can access i_size directly */
2581
2582 if (offset < 0)
2583 offset = -EINVAL;
2584 else if (offset >= inode->i_size)
2585 offset = -ENXIO;
2586 else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002587 start = offset >> PAGE_SHIFT;
2588 end = (inode->i_size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Andrew Morton965c8e52012-12-17 15:59:39 -08002589 new_offset = shmem_seek_hole_data(mapping, start, end, whence);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002590 new_offset <<= PAGE_SHIFT;
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002591 if (new_offset > offset) {
2592 if (new_offset < inode->i_size)
2593 offset = new_offset;
Andrew Morton965c8e52012-12-17 15:59:39 -08002594 else if (whence == SEEK_DATA)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002595 offset = -ENXIO;
2596 else
2597 offset = inode->i_size;
2598 }
2599 }
2600
Hugh Dickins387aae62013-08-04 11:30:25 -07002601 if (offset >= 0)
2602 offset = vfs_setpos(file, offset, MAX_LFS_FILESIZE);
Al Viro59551022016-01-22 15:40:57 -05002603 inode_unlock(inode);
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002604 return offset;
2605}
2606
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002607static long shmem_fallocate(struct file *file, int mode, loff_t offset,
2608 loff_t len)
2609{
Al Viro496ad9a2013-01-23 17:07:38 -05002610 struct inode *inode = file_inode(file);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002611 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
David Herrmann40e041a2014-08-08 14:25:27 -07002612 struct shmem_inode_info *info = SHMEM_I(inode);
Hugh Dickins1aac1402012-05-29 15:06:42 -07002613 struct shmem_falloc shmem_falloc;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002614 pgoff_t start, index, end;
2615 int error;
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002616
Hugh Dickins13ace4d2014-06-23 13:22:03 -07002617 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2618 return -EOPNOTSUPP;
2619
Al Viro59551022016-01-22 15:40:57 -05002620 inode_lock(inode);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002621
2622 if (mode & FALLOC_FL_PUNCH_HOLE) {
2623 struct address_space *mapping = file->f_mapping;
2624 loff_t unmap_start = round_up(offset, PAGE_SIZE);
2625 loff_t unmap_end = round_down(offset + len, PAGE_SIZE) - 1;
Hugh Dickins8e205f72014-07-23 14:00:10 -07002626 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(shmem_falloc_waitq);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002627
David Herrmann40e041a2014-08-08 14:25:27 -07002628 /* protected by i_mutex */
2629 if (info->seals & F_SEAL_WRITE) {
2630 error = -EPERM;
2631 goto out;
2632 }
2633
Hugh Dickins8e205f72014-07-23 14:00:10 -07002634 shmem_falloc.waitq = &shmem_falloc_waitq;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07002635 shmem_falloc.start = unmap_start >> PAGE_SHIFT;
2636 shmem_falloc.next = (unmap_end + 1) >> PAGE_SHIFT;
2637 spin_lock(&inode->i_lock);
2638 inode->i_private = &shmem_falloc;
2639 spin_unlock(&inode->i_lock);
2640
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002641 if ((u64)unmap_end > (u64)unmap_start)
2642 unmap_mapping_range(mapping, unmap_start,
2643 1 + unmap_end - unmap_start, 0);
2644 shmem_truncate_range(inode, offset, offset + len - 1);
2645 /* No need to unmap again: hole-punching leaves COWed pages */
Hugh Dickins8e205f72014-07-23 14:00:10 -07002646
2647 spin_lock(&inode->i_lock);
2648 inode->i_private = NULL;
2649 wake_up_all(&shmem_falloc_waitq);
Ingo Molnar2055da92017-06-20 12:06:46 +02002650 WARN_ON_ONCE(!list_empty(&shmem_falloc_waitq.head));
Hugh Dickins8e205f72014-07-23 14:00:10 -07002651 spin_unlock(&inode->i_lock);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002652 error = 0;
Hugh Dickins8e205f72014-07-23 14:00:10 -07002653 goto out;
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002654 }
2655
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002656 /* We need to check rlimit even when FALLOC_FL_KEEP_SIZE */
2657 error = inode_newsize_ok(inode, offset + len);
2658 if (error)
2659 goto out;
2660
David Herrmann40e041a2014-08-08 14:25:27 -07002661 if ((info->seals & F_SEAL_GROW) && offset + len > inode->i_size) {
2662 error = -EPERM;
2663 goto out;
2664 }
2665
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002666 start = offset >> PAGE_SHIFT;
2667 end = (offset + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002668 /* Try to avoid a swapstorm if len is impossible to satisfy */
2669 if (sbinfo->max_blocks && end - start > sbinfo->max_blocks) {
2670 error = -ENOSPC;
2671 goto out;
2672 }
2673
Hugh Dickins8e205f72014-07-23 14:00:10 -07002674 shmem_falloc.waitq = NULL;
Hugh Dickins1aac1402012-05-29 15:06:42 -07002675 shmem_falloc.start = start;
2676 shmem_falloc.next = start;
2677 shmem_falloc.nr_falloced = 0;
2678 shmem_falloc.nr_unswapped = 0;
2679 spin_lock(&inode->i_lock);
2680 inode->i_private = &shmem_falloc;
2681 spin_unlock(&inode->i_lock);
2682
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002683 for (index = start; index < end; index++) {
2684 struct page *page;
2685
2686 /*
2687 * Good, the fallocate(2) manpage permits EINTR: we may have
2688 * been interrupted because we are using up too much memory.
2689 */
2690 if (signal_pending(current))
2691 error = -EINTR;
Hugh Dickins1aac1402012-05-29 15:06:42 -07002692 else if (shmem_falloc.nr_unswapped > shmem_falloc.nr_falloced)
2693 error = -ENOMEM;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002694 else
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07002695 error = shmem_getpage(inode, index, &page, SGP_FALLOC);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002696 if (error) {
Hugh Dickins1635f6a2012-05-29 15:06:42 -07002697 /* Remove the !PageUptodate pages we added */
Hugh Dickins7f556562016-07-10 16:46:32 -07002698 if (index > start) {
2699 shmem_undo_range(inode,
2700 (loff_t)start << PAGE_SHIFT,
2701 ((loff_t)index << PAGE_SHIFT) - 1, true);
2702 }
Hugh Dickins1aac1402012-05-29 15:06:42 -07002703 goto undone;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002704 }
2705
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002706 /*
Hugh Dickins1aac1402012-05-29 15:06:42 -07002707 * Inform shmem_writepage() how far we have reached.
2708 * No need for lock or barrier: we have the page lock.
2709 */
2710 shmem_falloc.next++;
2711 if (!PageUptodate(page))
2712 shmem_falloc.nr_falloced++;
2713
2714 /*
Hugh Dickins1635f6a2012-05-29 15:06:42 -07002715 * If !PageUptodate, leave it that way so that freeable pages
2716 * can be recognized if we need to rollback on error later.
2717 * But set_page_dirty so that memory pressure will swap rather
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002718 * than free the pages we are allocating (and SGP_CACHE pages
2719 * might still be clean: we now need to mark those dirty too).
2720 */
2721 set_page_dirty(page);
2722 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002723 put_page(page);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002724 cond_resched();
2725 }
2726
2727 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size)
2728 i_size_write(inode, offset + len);
Deepa Dinamani078cd822016-09-14 07:48:04 -07002729 inode->i_ctime = current_time(inode);
Hugh Dickins1aac1402012-05-29 15:06:42 -07002730undone:
2731 spin_lock(&inode->i_lock);
2732 inode->i_private = NULL;
2733 spin_unlock(&inode->i_lock);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002734out:
Al Viro59551022016-01-22 15:40:57 -05002735 inode_unlock(inode);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002736 return error;
2737}
2738
David Howells726c3342006-06-23 02:02:58 -07002739static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740{
David Howells726c3342006-06-23 02:02:58 -07002741 struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
2743 buf->f_type = TMPFS_MAGIC;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002744 buf->f_bsize = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 buf->f_namelen = NAME_MAX;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002746 if (sbinfo->max_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 buf->f_blocks = sbinfo->max_blocks;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002748 buf->f_bavail =
2749 buf->f_bfree = sbinfo->max_blocks -
2750 percpu_counter_sum(&sbinfo->used_blocks);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002751 }
2752 if (sbinfo->max_inodes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 buf->f_files = sbinfo->max_inodes;
2754 buf->f_ffree = sbinfo->free_inodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 }
2756 /* else leave those fields 0 like simple_statfs */
2757 return 0;
2758}
2759
2760/*
2761 * File creation. Allocate an inode, and we're done..
2762 */
2763static int
Al Viro1a67aaf2011-07-26 01:52:52 -04002764shmem_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765{
Hugh Dickins0b0a0802009-02-24 20:51:52 +00002766 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 int error = -ENOSPC;
2768
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002769 inode = shmem_get_inode(dir->i_sb, dir, mode, dev, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 if (inode) {
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002771 error = simple_acl_create(dir, inode);
2772 if (error)
2773 goto out_iput;
Eric Paris2a7dba32011-02-01 11:05:39 -05002774 error = security_inode_init_security(inode, dir,
Mimi Zohar9d8f13b2011-06-06 15:29:25 -04002775 &dentry->d_name,
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07002776 shmem_initxattrs, NULL);
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002777 if (error && error != -EOPNOTSUPP)
2778 goto out_iput;
Mimi Zohar37ec43c2013-04-14 09:21:47 -04002779
Al Viro718deb62009-12-16 19:35:36 -05002780 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 dir->i_size += BOGO_DIRENT_SIZE;
Deepa Dinamani078cd822016-09-14 07:48:04 -07002782 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 d_instantiate(dentry, inode);
2784 dget(dentry); /* Extra count - pin the dentry in core */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 }
2786 return error;
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002787out_iput:
2788 iput(inode);
2789 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790}
2791
Al Viro60545d02013-06-07 01:20:27 -04002792static int
2793shmem_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
2794{
2795 struct inode *inode;
2796 int error = -ENOSPC;
2797
2798 inode = shmem_get_inode(dir->i_sb, dir, mode, 0, VM_NORESERVE);
2799 if (inode) {
2800 error = security_inode_init_security(inode, dir,
2801 NULL,
2802 shmem_initxattrs, NULL);
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002803 if (error && error != -EOPNOTSUPP)
2804 goto out_iput;
2805 error = simple_acl_create(dir, inode);
2806 if (error)
2807 goto out_iput;
Al Viro60545d02013-06-07 01:20:27 -04002808 d_tmpfile(dentry, inode);
2809 }
2810 return error;
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002811out_iput:
2812 iput(inode);
2813 return error;
Al Viro60545d02013-06-07 01:20:27 -04002814}
2815
Al Viro18bb1db2011-07-26 01:41:39 -04002816static int shmem_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817{
2818 int error;
2819
2820 if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
2821 return error;
Dave Hansend8c76e62006-09-30 23:29:04 -07002822 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 return 0;
2824}
2825
Al Viro4acdaf22011-07-26 01:42:34 -04002826static int shmem_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -04002827 bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828{
2829 return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
2830}
2831
2832/*
2833 * Link a file..
2834 */
2835static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
2836{
David Howells75c3cfa2015-03-17 22:26:12 +00002837 struct inode *inode = d_inode(old_dentry);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002838 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
2840 /*
2841 * No ordinary (disk based) filesystem counts links as inodes;
2842 * but each new link needs a new dentry, pinning lowmem, and
2843 * tmpfs dentries cannot be pruned until they are unlinked.
2844 */
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002845 ret = shmem_reserve_inode(inode->i_sb);
2846 if (ret)
2847 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
2849 dir->i_size += BOGO_DIRENT_SIZE;
Deepa Dinamani078cd822016-09-14 07:48:04 -07002850 inode->i_ctime = dir->i_ctime = dir->i_mtime = current_time(inode);
Dave Hansend8c76e62006-09-30 23:29:04 -07002851 inc_nlink(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04002852 ihold(inode); /* New dentry reference */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 dget(dentry); /* Extra pinning count for the created dentry */
2854 d_instantiate(dentry, inode);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002855out:
2856 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857}
2858
2859static int shmem_unlink(struct inode *dir, struct dentry *dentry)
2860{
David Howells75c3cfa2015-03-17 22:26:12 +00002861 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002863 if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode))
2864 shmem_free_inode(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
2866 dir->i_size -= BOGO_DIRENT_SIZE;
Deepa Dinamani078cd822016-09-14 07:48:04 -07002867 inode->i_ctime = dir->i_ctime = dir->i_mtime = current_time(inode);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002868 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 dput(dentry); /* Undo the count from "create" - this does all the work */
2870 return 0;
2871}
2872
2873static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
2874{
2875 if (!simple_empty(dentry))
2876 return -ENOTEMPTY;
2877
David Howells75c3cfa2015-03-17 22:26:12 +00002878 drop_nlink(d_inode(dentry));
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002879 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 return shmem_unlink(dir, dentry);
2881}
2882
Miklos Szeredi37456772014-07-23 15:15:34 +02002883static int shmem_exchange(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
2884{
David Howellse36cb0b2015-01-29 12:02:35 +00002885 bool old_is_dir = d_is_dir(old_dentry);
2886 bool new_is_dir = d_is_dir(new_dentry);
Miklos Szeredi37456772014-07-23 15:15:34 +02002887
2888 if (old_dir != new_dir && old_is_dir != new_is_dir) {
2889 if (old_is_dir) {
2890 drop_nlink(old_dir);
2891 inc_nlink(new_dir);
2892 } else {
2893 drop_nlink(new_dir);
2894 inc_nlink(old_dir);
2895 }
2896 }
2897 old_dir->i_ctime = old_dir->i_mtime =
2898 new_dir->i_ctime = new_dir->i_mtime =
David Howells75c3cfa2015-03-17 22:26:12 +00002899 d_inode(old_dentry)->i_ctime =
Deepa Dinamani078cd822016-09-14 07:48:04 -07002900 d_inode(new_dentry)->i_ctime = current_time(old_dir);
Miklos Szeredi37456772014-07-23 15:15:34 +02002901
2902 return 0;
2903}
2904
Miklos Szeredi46fdb792014-10-24 00:14:37 +02002905static int shmem_whiteout(struct inode *old_dir, struct dentry *old_dentry)
2906{
2907 struct dentry *whiteout;
2908 int error;
2909
2910 whiteout = d_alloc(old_dentry->d_parent, &old_dentry->d_name);
2911 if (!whiteout)
2912 return -ENOMEM;
2913
2914 error = shmem_mknod(old_dir, whiteout,
2915 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
2916 dput(whiteout);
2917 if (error)
2918 return error;
2919
2920 /*
2921 * Cheat and hash the whiteout while the old dentry is still in
2922 * place, instead of playing games with FS_RENAME_DOES_D_MOVE.
2923 *
2924 * d_lookup() will consistently find one of them at this point,
2925 * not sure which one, but that isn't even important.
2926 */
2927 d_rehash(whiteout);
2928 return 0;
2929}
2930
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931/*
2932 * The VFS layer already does all the dentry stuff for rename,
2933 * we just have to decrement the usage count for the target if
2934 * it exists so that the VFS layer correctly free's it when it
2935 * gets overwritten.
2936 */
Miklos Szeredi3b69ff52014-07-23 15:15:33 +02002937static 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 -07002938{
David Howells75c3cfa2015-03-17 22:26:12 +00002939 struct inode *inode = d_inode(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 int they_are_dirs = S_ISDIR(inode->i_mode);
2941
Miklos Szeredi46fdb792014-10-24 00:14:37 +02002942 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi3b69ff52014-07-23 15:15:33 +02002943 return -EINVAL;
2944
Miklos Szeredi37456772014-07-23 15:15:34 +02002945 if (flags & RENAME_EXCHANGE)
2946 return shmem_exchange(old_dir, old_dentry, new_dir, new_dentry);
2947
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 if (!simple_empty(new_dentry))
2949 return -ENOTEMPTY;
2950
Miklos Szeredi46fdb792014-10-24 00:14:37 +02002951 if (flags & RENAME_WHITEOUT) {
2952 int error;
2953
2954 error = shmem_whiteout(old_dir, old_dentry);
2955 if (error)
2956 return error;
2957 }
2958
David Howells75c3cfa2015-03-17 22:26:12 +00002959 if (d_really_is_positive(new_dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 (void) shmem_unlink(new_dir, new_dentry);
Miklos Szeredib9280952014-09-24 17:56:17 +02002961 if (they_are_dirs) {
David Howells75c3cfa2015-03-17 22:26:12 +00002962 drop_nlink(d_inode(new_dentry));
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002963 drop_nlink(old_dir);
Miklos Szeredib9280952014-09-24 17:56:17 +02002964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 } else if (they_are_dirs) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002966 drop_nlink(old_dir);
Dave Hansend8c76e62006-09-30 23:29:04 -07002967 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 }
2969
2970 old_dir->i_size -= BOGO_DIRENT_SIZE;
2971 new_dir->i_size += BOGO_DIRENT_SIZE;
2972 old_dir->i_ctime = old_dir->i_mtime =
2973 new_dir->i_ctime = new_dir->i_mtime =
Deepa Dinamani078cd822016-09-14 07:48:04 -07002974 inode->i_ctime = current_time(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 return 0;
2976}
2977
2978static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
2979{
2980 int error;
2981 int len;
2982 struct inode *inode;
Hugh Dickins9276aad2011-07-25 17:12:34 -07002983 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
2985 len = strlen(symname) + 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002986 if (len > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 return -ENAMETOOLONG;
2988
Joe Perches0825a6f2018-06-14 15:27:58 -07002989 inode = shmem_get_inode(dir->i_sb, dir, S_IFLNK | 0777, 0,
2990 VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 if (!inode)
2992 return -ENOSPC;
2993
Mimi Zohar9d8f13b2011-06-06 15:29:25 -04002994 error = security_inode_init_security(inode, dir, &dentry->d_name,
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07002995 shmem_initxattrs, NULL);
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002996 if (error) {
2997 if (error != -EOPNOTSUPP) {
2998 iput(inode);
2999 return error;
3000 }
3001 error = 0;
3002 }
3003
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 inode->i_size = len-1;
Hugh Dickins69f07ec2011-08-03 16:21:26 -07003005 if (len <= SHORT_SYMLINK_LEN) {
Al Viro3ed47db2016-01-22 18:08:52 -05003006 inode->i_link = kmemdup(symname, len, GFP_KERNEL);
3007 if (!inode->i_link) {
Hugh Dickins69f07ec2011-08-03 16:21:26 -07003008 iput(inode);
3009 return -ENOMEM;
3010 }
3011 inode->i_op = &shmem_short_symlink_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 } else {
Al Viroe8ecde22016-01-14 17:52:59 -05003013 inode_nohighmem(inode);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07003014 error = shmem_getpage(inode, 0, &page, SGP_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 if (error) {
3016 iput(inode);
3017 return error;
3018 }
Hugh Dickins14fcc232008-07-28 15:46:19 -07003019 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 inode->i_op = &shmem_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05003021 memcpy(page_address(page), symname, len);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07003022 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 set_page_dirty(page);
Wu Fengguang6746aff2009-09-16 11:50:14 +02003024 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003025 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 dir->i_size += BOGO_DIRENT_SIZE;
Deepa Dinamani078cd822016-09-14 07:48:04 -07003028 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 d_instantiate(dentry, inode);
3030 dget(dentry);
3031 return 0;
3032}
3033
Al Virofceef392015-12-29 15:58:39 -05003034static void shmem_put_link(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035{
Al Virofceef392015-12-29 15:58:39 -05003036 mark_page_accessed(arg);
3037 put_page(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038}
3039
Al Viro6b255392015-11-17 10:20:54 -05003040static const char *shmem_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05003041 struct inode *inode,
3042 struct delayed_call *done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 struct page *page = NULL;
Al Viro6b255392015-11-17 10:20:54 -05003045 int error;
Al Viro6a6c9902015-11-17 10:54:32 -05003046 if (!dentry) {
3047 page = find_get_page(inode->i_mapping, 0);
3048 if (!page)
3049 return ERR_PTR(-ECHILD);
3050 if (!PageUptodate(page)) {
3051 put_page(page);
3052 return ERR_PTR(-ECHILD);
3053 }
3054 } else {
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07003055 error = shmem_getpage(inode, 0, &page, SGP_READ);
Al Viro6a6c9902015-11-17 10:54:32 -05003056 if (error)
3057 return ERR_PTR(error);
3058 unlock_page(page);
3059 }
Al Virofceef392015-12-29 15:58:39 -05003060 set_delayed_call(done, shmem_put_link, page);
Al Viro21fc61c2015-11-17 01:07:57 -05003061 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062}
3063
Eric Parisb09e0fa2011-05-24 17:12:39 -07003064#ifdef CONFIG_TMPFS_XATTR
3065/*
3066 * Superblocks without xattr inode operations may get some security.* xattr
3067 * support from the LSM "for free". As soon as we have any other xattrs
3068 * like ACLs, we also need to implement the security.* handlers at
3069 * filesystem level, though.
3070 */
3071
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003072/*
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003073 * Callback for security_inode_init_security() for acquiring xattrs.
3074 */
3075static int shmem_initxattrs(struct inode *inode,
3076 const struct xattr *xattr_array,
3077 void *fs_info)
3078{
3079 struct shmem_inode_info *info = SHMEM_I(inode);
3080 const struct xattr *xattr;
Aristeu Rozanski38f38652012-08-23 16:53:28 -04003081 struct simple_xattr *new_xattr;
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003082 size_t len;
3083
3084 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
Aristeu Rozanski38f38652012-08-23 16:53:28 -04003085 new_xattr = simple_xattr_alloc(xattr->value, xattr->value_len);
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003086 if (!new_xattr)
3087 return -ENOMEM;
3088
3089 len = strlen(xattr->name) + 1;
3090 new_xattr->name = kmalloc(XATTR_SECURITY_PREFIX_LEN + len,
3091 GFP_KERNEL);
3092 if (!new_xattr->name) {
3093 kfree(new_xattr);
3094 return -ENOMEM;
3095 }
3096
3097 memcpy(new_xattr->name, XATTR_SECURITY_PREFIX,
3098 XATTR_SECURITY_PREFIX_LEN);
3099 memcpy(new_xattr->name + XATTR_SECURITY_PREFIX_LEN,
3100 xattr->name, len);
3101
Aristeu Rozanski38f38652012-08-23 16:53:28 -04003102 simple_xattr_list_add(&info->xattrs, new_xattr);
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003103 }
3104
3105 return 0;
3106}
3107
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003108static int shmem_xattr_handler_get(const struct xattr_handler *handler,
Al Virob2968212016-04-10 20:48:24 -04003109 struct dentry *unused, struct inode *inode,
3110 const char *name, void *buffer, size_t size)
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003111{
Al Virob2968212016-04-10 20:48:24 -04003112 struct shmem_inode_info *info = SHMEM_I(inode);
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003113
3114 name = xattr_full_name(handler, name);
3115 return simple_xattr_get(&info->xattrs, name, buffer, size);
3116}
3117
3118static int shmem_xattr_handler_set(const struct xattr_handler *handler,
Al Viro59301222016-05-27 10:19:30 -04003119 struct dentry *unused, struct inode *inode,
3120 const char *name, const void *value,
3121 size_t size, int flags)
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003122{
Al Viro59301222016-05-27 10:19:30 -04003123 struct shmem_inode_info *info = SHMEM_I(inode);
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003124
3125 name = xattr_full_name(handler, name);
3126 return simple_xattr_set(&info->xattrs, name, value, size, flags);
3127}
3128
3129static const struct xattr_handler shmem_security_xattr_handler = {
3130 .prefix = XATTR_SECURITY_PREFIX,
3131 .get = shmem_xattr_handler_get,
3132 .set = shmem_xattr_handler_set,
3133};
3134
3135static const struct xattr_handler shmem_trusted_xattr_handler = {
3136 .prefix = XATTR_TRUSTED_PREFIX,
3137 .get = shmem_xattr_handler_get,
3138 .set = shmem_xattr_handler_set,
3139};
3140
Eric Parisb09e0fa2011-05-24 17:12:39 -07003141static const struct xattr_handler *shmem_xattr_handlers[] = {
3142#ifdef CONFIG_TMPFS_POSIX_ACL
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003143 &posix_acl_access_xattr_handler,
3144 &posix_acl_default_xattr_handler,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003145#endif
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003146 &shmem_security_xattr_handler,
3147 &shmem_trusted_xattr_handler,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003148 NULL
3149};
3150
Eric Parisb09e0fa2011-05-24 17:12:39 -07003151static ssize_t shmem_listxattr(struct dentry *dentry, char *buffer, size_t size)
3152{
David Howells75c3cfa2015-03-17 22:26:12 +00003153 struct shmem_inode_info *info = SHMEM_I(d_inode(dentry));
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01003154 return simple_xattr_list(d_inode(dentry), &info->xattrs, buffer, size);
Eric Parisb09e0fa2011-05-24 17:12:39 -07003155}
3156#endif /* CONFIG_TMPFS_XATTR */
3157
Hugh Dickins69f07ec2011-08-03 16:21:26 -07003158static const struct inode_operations shmem_short_symlink_operations = {
Al Viro6b255392015-11-17 10:20:54 -05003159 .get_link = simple_get_link,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003160#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003161 .listxattr = shmem_listxattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003162#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163};
3164
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003165static const struct inode_operations shmem_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -05003166 .get_link = shmem_get_link,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003167#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003168 .listxattr = shmem_listxattr,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003169#endif
Eric Parisb09e0fa2011-05-24 17:12:39 -07003170};
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003171
David M. Grimes91828a42006-10-17 00:09:45 -07003172static struct dentry *shmem_get_parent(struct dentry *child)
3173{
3174 return ERR_PTR(-ESTALE);
3175}
3176
3177static int shmem_match(struct inode *ino, void *vfh)
3178{
3179 __u32 *fh = vfh;
3180 __u64 inum = fh[2];
3181 inum = (inum << 32) | fh[1];
3182 return ino->i_ino == inum && fh[0] == ino->i_generation;
3183}
3184
Amir Goldstein12ba7802018-06-07 17:07:15 -07003185/* Find any alias of inode, but prefer a hashed alias */
3186static struct dentry *shmem_find_alias(struct inode *inode)
3187{
3188 struct dentry *alias = d_find_alias(inode);
3189
3190 return alias ?: d_find_any_alias(inode);
3191}
3192
3193
Christoph Hellwig480b1162007-10-21 16:42:13 -07003194static struct dentry *shmem_fh_to_dentry(struct super_block *sb,
3195 struct fid *fid, int fh_len, int fh_type)
David M. Grimes91828a42006-10-17 00:09:45 -07003196{
David M. Grimes91828a42006-10-17 00:09:45 -07003197 struct inode *inode;
Christoph Hellwig480b1162007-10-21 16:42:13 -07003198 struct dentry *dentry = NULL;
Hugh Dickins35c2a7f2012-10-07 20:32:51 -07003199 u64 inum;
David M. Grimes91828a42006-10-17 00:09:45 -07003200
Christoph Hellwig480b1162007-10-21 16:42:13 -07003201 if (fh_len < 3)
3202 return NULL;
3203
Hugh Dickins35c2a7f2012-10-07 20:32:51 -07003204 inum = fid->raw[2];
3205 inum = (inum << 32) | fid->raw[1];
3206
Christoph Hellwig480b1162007-10-21 16:42:13 -07003207 inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]),
3208 shmem_match, fid->raw);
David M. Grimes91828a42006-10-17 00:09:45 -07003209 if (inode) {
Amir Goldstein12ba7802018-06-07 17:07:15 -07003210 dentry = shmem_find_alias(inode);
David M. Grimes91828a42006-10-17 00:09:45 -07003211 iput(inode);
3212 }
3213
Christoph Hellwig480b1162007-10-21 16:42:13 -07003214 return dentry;
David M. Grimes91828a42006-10-17 00:09:45 -07003215}
3216
Al Virob0b03822012-04-02 14:34:06 -04003217static int shmem_encode_fh(struct inode *inode, __u32 *fh, int *len,
3218 struct inode *parent)
David M. Grimes91828a42006-10-17 00:09:45 -07003219{
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05303220 if (*len < 3) {
3221 *len = 3;
Namjae Jeon94e07a752013-02-17 15:48:11 +09003222 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05303223 }
David M. Grimes91828a42006-10-17 00:09:45 -07003224
Al Viro1d3382cb2010-10-23 15:19:20 -04003225 if (inode_unhashed(inode)) {
David M. Grimes91828a42006-10-17 00:09:45 -07003226 /* Unfortunately insert_inode_hash is not idempotent,
3227 * so as we hash inodes here rather than at creation
3228 * time, we need a lock to ensure we only try
3229 * to do it once
3230 */
3231 static DEFINE_SPINLOCK(lock);
3232 spin_lock(&lock);
Al Viro1d3382cb2010-10-23 15:19:20 -04003233 if (inode_unhashed(inode))
David M. Grimes91828a42006-10-17 00:09:45 -07003234 __insert_inode_hash(inode,
3235 inode->i_ino + inode->i_generation);
3236 spin_unlock(&lock);
3237 }
3238
3239 fh[0] = inode->i_generation;
3240 fh[1] = inode->i_ino;
3241 fh[2] = ((__u64)inode->i_ino) >> 32;
3242
3243 *len = 3;
3244 return 1;
3245}
3246
Christoph Hellwig39655162007-10-21 16:42:17 -07003247static const struct export_operations shmem_export_ops = {
David M. Grimes91828a42006-10-17 00:09:45 -07003248 .get_parent = shmem_get_parent,
David M. Grimes91828a42006-10-17 00:09:45 -07003249 .encode_fh = shmem_encode_fh,
Christoph Hellwig480b1162007-10-21 16:42:13 -07003250 .fh_to_dentry = shmem_fh_to_dentry,
David M. Grimes91828a42006-10-17 00:09:45 -07003251};
3252
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003253static int shmem_parse_options(char *options, struct shmem_sb_info *sbinfo,
3254 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255{
3256 char *this_char, *value, *rest;
Greg Thelen49cd0a52013-02-22 16:36:02 -08003257 struct mempolicy *mpol = NULL;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003258 uid_t uid;
3259 gid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +00003261 while (options != NULL) {
3262 this_char = options;
3263 for (;;) {
3264 /*
3265 * NUL-terminate this option: unfortunately,
3266 * mount options form a comma-separated list,
3267 * but mpol's nodelist may also contain commas.
3268 */
3269 options = strchr(options, ',');
3270 if (options == NULL)
3271 break;
3272 options++;
3273 if (!isdigit(*options)) {
3274 options[-1] = '\0';
3275 break;
3276 }
3277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 if (!*this_char)
3279 continue;
3280 if ((value = strchr(this_char,'=')) != NULL) {
3281 *value++ = 0;
3282 } else {
Joe Perches11705322016-03-17 14:19:50 -07003283 pr_err("tmpfs: No value for mount option '%s'\n",
3284 this_char);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003285 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 }
3287
3288 if (!strcmp(this_char,"size")) {
3289 unsigned long long size;
3290 size = memparse(value,&rest);
3291 if (*rest == '%') {
3292 size <<= PAGE_SHIFT;
3293 size *= totalram_pages;
3294 do_div(size, 100);
3295 rest++;
3296 }
3297 if (*rest)
3298 goto bad_val;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003299 sbinfo->max_blocks =
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003300 DIV_ROUND_UP(size, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 } else if (!strcmp(this_char,"nr_blocks")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003302 sbinfo->max_blocks = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 if (*rest)
3304 goto bad_val;
3305 } else if (!strcmp(this_char,"nr_inodes")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003306 sbinfo->max_inodes = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 if (*rest)
3308 goto bad_val;
3309 } else if (!strcmp(this_char,"mode")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003310 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 continue;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003312 sbinfo->mode = simple_strtoul(value, &rest, 8) & 07777;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 if (*rest)
3314 goto bad_val;
3315 } else if (!strcmp(this_char,"uid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003316 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 continue;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003318 uid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 if (*rest)
3320 goto bad_val;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003321 sbinfo->uid = make_kuid(current_user_ns(), uid);
3322 if (!uid_valid(sbinfo->uid))
3323 goto bad_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 } else if (!strcmp(this_char,"gid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003325 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 continue;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003327 gid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 if (*rest)
3329 goto bad_val;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003330 sbinfo->gid = make_kgid(current_user_ns(), gid);
3331 if (!gid_valid(sbinfo->gid))
3332 goto bad_val;
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07003333#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003334 } else if (!strcmp(this_char, "huge")) {
3335 int huge;
3336 huge = shmem_parse_huge(value);
3337 if (huge < 0)
3338 goto bad_val;
3339 if (!has_transparent_hugepage() &&
3340 huge != SHMEM_HUGE_NEVER)
3341 goto bad_val;
3342 sbinfo->huge = huge;
3343#endif
3344#ifdef CONFIG_NUMA
Robin Holt7339ff82006-01-14 13:20:48 -08003345 } else if (!strcmp(this_char,"mpol")) {
Greg Thelen49cd0a52013-02-22 16:36:02 -08003346 mpol_put(mpol);
3347 mpol = NULL;
3348 if (mpol_parse_str(value, &mpol))
Robin Holt7339ff82006-01-14 13:20:48 -08003349 goto bad_val;
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003350#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 } else {
Joe Perches11705322016-03-17 14:19:50 -07003352 pr_err("tmpfs: Bad mount option %s\n", this_char);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003353 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 }
3355 }
Greg Thelen49cd0a52013-02-22 16:36:02 -08003356 sbinfo->mpol = mpol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 return 0;
3358
3359bad_val:
Joe Perches11705322016-03-17 14:19:50 -07003360 pr_err("tmpfs: Bad value '%s' for mount option '%s'\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 value, this_char);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003362error:
3363 mpol_put(mpol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 return 1;
3365
3366}
3367
3368static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
3369{
3370 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003371 struct shmem_sb_info config = *sbinfo;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003372 unsigned long inodes;
3373 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374
Greg Thelen5f001102013-02-22 16:36:01 -08003375 config.mpol = NULL;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003376 if (shmem_parse_options(data, &config, true))
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003377 return error;
3378
3379 spin_lock(&sbinfo->stat_lock);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003380 inodes = sbinfo->max_inodes - sbinfo->free_inodes;
Tim Chen7e496292010-08-09 17:19:05 -07003381 if (percpu_counter_compare(&sbinfo->used_blocks, config.max_blocks) > 0)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003382 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003383 if (config.max_inodes < inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003384 goto out;
3385 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07003386 * Those tests disallow limited->unlimited while any are in use;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003387 * but we must separately disallow unlimited->limited, because
3388 * in that case we have no record of how much is already in use.
3389 */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003390 if (config.max_blocks && !sbinfo->max_blocks)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003391 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003392 if (config.max_inodes && !sbinfo->max_inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003393 goto out;
3394
3395 error = 0;
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003396 sbinfo->huge = config.huge;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003397 sbinfo->max_blocks = config.max_blocks;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003398 sbinfo->max_inodes = config.max_inodes;
3399 sbinfo->free_inodes = config.max_inodes - inodes;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07003400
Greg Thelen5f001102013-02-22 16:36:01 -08003401 /*
3402 * Preserve previous mempolicy unless mpol remount option was specified.
3403 */
3404 if (config.mpol) {
3405 mpol_put(sbinfo->mpol);
3406 sbinfo->mpol = config.mpol; /* transfers initial ref */
3407 }
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003408out:
3409 spin_unlock(&sbinfo->stat_lock);
3410 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003412
Al Viro34c80b12011-12-08 21:32:45 -05003413static int shmem_show_options(struct seq_file *seq, struct dentry *root)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003414{
Al Viro34c80b12011-12-08 21:32:45 -05003415 struct shmem_sb_info *sbinfo = SHMEM_SB(root->d_sb);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003416
3417 if (sbinfo->max_blocks != shmem_default_max_blocks())
3418 seq_printf(seq, ",size=%luk",
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003419 sbinfo->max_blocks << (PAGE_SHIFT - 10));
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003420 if (sbinfo->max_inodes != shmem_default_max_inodes())
3421 seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
Joe Perches0825a6f2018-06-14 15:27:58 -07003422 if (sbinfo->mode != (0777 | S_ISVTX))
Al Viro09208d12011-07-26 03:15:03 -04003423 seq_printf(seq, ",mode=%03ho", sbinfo->mode);
Eric W. Biederman8751e032012-02-07 16:46:12 -08003424 if (!uid_eq(sbinfo->uid, GLOBAL_ROOT_UID))
3425 seq_printf(seq, ",uid=%u",
3426 from_kuid_munged(&init_user_ns, sbinfo->uid));
3427 if (!gid_eq(sbinfo->gid, GLOBAL_ROOT_GID))
3428 seq_printf(seq, ",gid=%u",
3429 from_kgid_munged(&init_user_ns, sbinfo->gid));
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07003430#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003431 /* Rightly or wrongly, show huge mount option unmasked by shmem_huge */
3432 if (sbinfo->huge)
3433 seq_printf(seq, ",huge=%s", shmem_format_huge(sbinfo->huge));
3434#endif
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07003435 shmem_show_mpol(seq, sbinfo->mpol);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003436 return 0;
3437}
David Herrmann9183df22014-08-08 14:25:29 -07003438
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003439#endif /* CONFIG_TMPFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
3441static void shmem_put_super(struct super_block *sb)
3442{
Hugh Dickins602586a2010-08-17 15:23:56 -07003443 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
3444
3445 percpu_counter_destroy(&sbinfo->used_blocks);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003446 mpol_put(sbinfo->mpol);
Hugh Dickins602586a2010-08-17 15:23:56 -07003447 kfree(sbinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 sb->s_fs_info = NULL;
3449}
3450
Kay Sievers2b2af542009-04-30 15:23:42 +02003451int shmem_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452{
3453 struct inode *inode;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003454 struct shmem_sb_info *sbinfo;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003455 int err = -ENOMEM;
3456
3457 /* Round up to L1_CACHE_BYTES to resist false sharing */
Pekka Enberg425fbf02009-09-21 17:03:50 -07003458 sbinfo = kzalloc(max((int)sizeof(struct shmem_sb_info),
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003459 L1_CACHE_BYTES), GFP_KERNEL);
3460 if (!sbinfo)
3461 return -ENOMEM;
3462
Joe Perches0825a6f2018-06-14 15:27:58 -07003463 sbinfo->mode = 0777 | S_ISVTX;
David Howells76aac0e2008-11-14 10:39:12 +11003464 sbinfo->uid = current_fsuid();
3465 sbinfo->gid = current_fsgid();
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003466 sb->s_fs_info = sbinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003468#ifdef CONFIG_TMPFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 /*
3470 * Per default we only allow half of the physical ram per
3471 * tmpfs instance, limiting inodes to one per page of lowmem;
3472 * but the internal instance is left unlimited.
3473 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08003474 if (!(sb->s_flags & SB_KERNMOUNT)) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003475 sbinfo->max_blocks = shmem_default_max_blocks();
3476 sbinfo->max_inodes = shmem_default_max_inodes();
3477 if (shmem_parse_options(data, sbinfo, false)) {
3478 err = -EINVAL;
3479 goto failed;
3480 }
Al Viroca4e0512013-08-31 12:57:10 -04003481 } else {
Linus Torvalds1751e8a2017-11-27 13:05:09 -08003482 sb->s_flags |= SB_NOUSER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 }
David M. Grimes91828a42006-10-17 00:09:45 -07003484 sb->s_export_op = &shmem_export_ops;
Linus Torvalds1751e8a2017-11-27 13:05:09 -08003485 sb->s_flags |= SB_NOSEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486#else
Linus Torvalds1751e8a2017-11-27 13:05:09 -08003487 sb->s_flags |= SB_NOUSER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488#endif
3489
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003490 spin_lock_init(&sbinfo->stat_lock);
Tejun Heo908c7f12014-09-08 09:51:29 +09003491 if (percpu_counter_init(&sbinfo->used_blocks, 0, GFP_KERNEL))
Hugh Dickins602586a2010-08-17 15:23:56 -07003492 goto failed;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003493 sbinfo->free_inodes = sbinfo->max_inodes;
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07003494 spin_lock_init(&sbinfo->shrinklist_lock);
3495 INIT_LIST_HEAD(&sbinfo->shrinklist);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003496
Hugh Dickins285b2c42011-08-03 16:21:20 -07003497 sb->s_maxbytes = MAX_LFS_FILESIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003498 sb->s_blocksize = PAGE_SIZE;
3499 sb->s_blocksize_bits = PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 sb->s_magic = TMPFS_MAGIC;
3501 sb->s_op = &shmem_ops;
Robin H. Johnsoncfd95a92006-06-12 21:50:25 +01003502 sb->s_time_gran = 1;
Eric Parisb09e0fa2011-05-24 17:12:39 -07003503#ifdef CONFIG_TMPFS_XATTR
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003504 sb->s_xattr = shmem_xattr_handlers;
Eric Parisb09e0fa2011-05-24 17:12:39 -07003505#endif
3506#ifdef CONFIG_TMPFS_POSIX_ACL
Linus Torvalds1751e8a2017-11-27 13:05:09 -08003507 sb->s_flags |= SB_POSIXACL;
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003508#endif
Amir Goldstein2b4db792017-05-18 15:29:33 +03003509 uuid_gen(&sb->s_uuid);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003510
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03003511 inode = shmem_get_inode(sb, NULL, S_IFDIR | sbinfo->mode, 0, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 if (!inode)
3513 goto failed;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003514 inode->i_uid = sbinfo->uid;
3515 inode->i_gid = sbinfo->gid;
Al Viro318ceed2012-02-12 22:08:01 -05003516 sb->s_root = d_make_root(inode);
3517 if (!sb->s_root)
Al Viro48fde702012-01-08 22:15:13 -05003518 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 return 0;
3520
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521failed:
3522 shmem_put_super(sb);
3523 return err;
3524}
3525
Pekka Enbergfcc234f2006-03-22 00:08:13 -08003526static struct kmem_cache *shmem_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527
3528static struct inode *shmem_alloc_inode(struct super_block *sb)
3529{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003530 struct shmem_inode_info *info;
3531 info = kmem_cache_alloc(shmem_inode_cachep, GFP_KERNEL);
3532 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 return NULL;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003534 return &info->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535}
3536
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003537static void shmem_destroy_callback(struct rcu_head *head)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11003538{
3539 struct inode *inode = container_of(head, struct inode, i_rcu);
Al Viro84e710d2016-04-15 00:58:55 -04003540 if (S_ISLNK(inode->i_mode))
3541 kfree(inode->i_link);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11003542 kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
3543}
3544
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545static void shmem_destroy_inode(struct inode *inode)
3546{
Al Viro09208d12011-07-26 03:15:03 -04003547 if (S_ISREG(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 mpol_free_shared_policy(&SHMEM_I(inode)->policy);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003549 call_rcu(&inode->i_rcu, shmem_destroy_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550}
3551
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003552static void shmem_init_inode(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003554 struct shmem_inode_info *info = foo;
3555 inode_init_once(&info->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556}
3557
weiping zhang9a8ec03e2017-11-15 17:38:18 -08003558static void shmem_init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559{
3560 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
3561 sizeof(struct shmem_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -08003562 0, SLAB_PANIC|SLAB_ACCOUNT, shmem_init_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563}
3564
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003565static void shmem_destroy_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07003567 kmem_cache_destroy(shmem_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568}
3569
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07003570static const struct address_space_operations shmem_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 .writepage = shmem_writepage,
Ken Chen76719322007-02-10 01:43:15 -08003572 .set_page_dirty = __set_page_dirty_no_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573#ifdef CONFIG_TMPFS
Nick Piggin800d15a2007-10-16 01:25:03 -07003574 .write_begin = shmem_write_begin,
3575 .write_end = shmem_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576#endif
Andrew Morton1c939232014-10-09 15:27:59 -07003577#ifdef CONFIG_MIGRATION
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -07003578 .migratepage = migrate_page,
Andrew Morton1c939232014-10-09 15:27:59 -07003579#endif
Andi Kleenaa261f52009-09-16 11:50:16 +02003580 .error_remove_page = generic_error_remove_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581};
3582
Helge Deller15ad7cd2006-12-06 20:40:36 -08003583static const struct file_operations shmem_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 .mmap = shmem_mmap,
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07003585 .get_unmapped_area = shmem_get_unmapped_area,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586#ifdef CONFIG_TMPFS
Hugh Dickins220f2ac2012-12-12 13:52:21 -08003587 .llseek = shmem_file_llseek,
Al Viro2ba5bbe2014-04-02 20:00:02 -04003588 .read_iter = shmem_file_read_iter,
Al Viro81742022014-04-03 03:17:43 -04003589 .write_iter = generic_file_write_iter,
Christoph Hellwig1b061d92010-05-26 17:53:41 +02003590 .fsync = noop_fsync,
Al Viro82c156f2016-09-22 23:35:42 -04003591 .splice_read = generic_file_splice_read,
Al Virof6cb85d2014-04-05 04:38:56 -04003592 .splice_write = iter_file_splice_write,
Hugh Dickins83e4fa92012-05-29 15:06:40 -07003593 .fallocate = shmem_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594#endif
3595};
3596
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003597static const struct inode_operations shmem_inode_operations = {
Yu Zhao44a30222015-09-08 15:03:33 -07003598 .getattr = shmem_getattr,
Hugh Dickins94c1e622011-06-27 16:18:03 -07003599 .setattr = shmem_setattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003600#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003601 .listxattr = shmem_listxattr,
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003602 .set_acl = simple_set_acl,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003603#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604};
3605
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003606static const struct inode_operations shmem_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607#ifdef CONFIG_TMPFS
3608 .create = shmem_create,
3609 .lookup = simple_lookup,
3610 .link = shmem_link,
3611 .unlink = shmem_unlink,
3612 .symlink = shmem_symlink,
3613 .mkdir = shmem_mkdir,
3614 .rmdir = shmem_rmdir,
3615 .mknod = shmem_mknod,
Miklos Szeredi2773bf02016-09-27 11:03:58 +02003616 .rename = shmem_rename2,
Al Viro60545d02013-06-07 01:20:27 -04003617 .tmpfile = shmem_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618#endif
Eric Parisb09e0fa2011-05-24 17:12:39 -07003619#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003620 .listxattr = shmem_listxattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003621#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003622#ifdef CONFIG_TMPFS_POSIX_ACL
Hugh Dickins94c1e622011-06-27 16:18:03 -07003623 .setattr = shmem_setattr,
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003624 .set_acl = simple_set_acl,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003625#endif
3626};
3627
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003628static const struct inode_operations shmem_special_inode_operations = {
Eric Parisb09e0fa2011-05-24 17:12:39 -07003629#ifdef CONFIG_TMPFS_XATTR
Eric Parisb09e0fa2011-05-24 17:12:39 -07003630 .listxattr = shmem_listxattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003631#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003632#ifdef CONFIG_TMPFS_POSIX_ACL
Hugh Dickins94c1e622011-06-27 16:18:03 -07003633 .setattr = shmem_setattr,
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003634 .set_acl = simple_set_acl,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003635#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636};
3637
Hugh Dickins759b9772007-03-05 00:30:28 -08003638static const struct super_operations shmem_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 .alloc_inode = shmem_alloc_inode,
3640 .destroy_inode = shmem_destroy_inode,
3641#ifdef CONFIG_TMPFS
3642 .statfs = shmem_statfs,
3643 .remount_fs = shmem_remount_fs,
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003644 .show_options = shmem_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645#endif
Al Viro1f895f72010-06-05 19:10:41 -04003646 .evict_inode = shmem_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 .drop_inode = generic_delete_inode,
3648 .put_super = shmem_put_super,
Kirill A. Shutemov779750d2016-07-26 15:26:38 -07003649#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
3650 .nr_cached_objects = shmem_unused_huge_count,
3651 .free_cached_objects = shmem_unused_huge_scan,
3652#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653};
3654
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04003655static const struct vm_operations_struct shmem_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07003656 .fault = shmem_fault,
Ning Qud7c17552014-04-07 15:37:24 -07003657 .map_pages = filemap_map_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658#ifdef CONFIG_NUMA
3659 .set_policy = shmem_set_policy,
3660 .get_policy = shmem_get_policy,
3661#endif
3662};
3663
Al Viro3c26ff62010-07-25 11:46:36 +04003664static struct dentry *shmem_mount(struct file_system_type *fs_type,
3665 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666{
Al Viro3c26ff62010-07-25 11:46:36 +04003667 return mount_nodev(fs_type, flags, data, shmem_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668}
3669
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003670static struct file_system_type shmem_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 .owner = THIS_MODULE,
3672 .name = "tmpfs",
Al Viro3c26ff62010-07-25 11:46:36 +04003673 .mount = shmem_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 .kill_sb = kill_litter_super,
Eric W. Biederman2b8576c2013-01-25 16:32:10 -08003675 .fs_flags = FS_USERNS_MOUNT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003678int __init shmem_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679{
3680 int error;
3681
Rob Landley16203a72013-09-11 14:26:12 -07003682 /* If rootfs called this, don't re-init */
3683 if (shmem_inode_cachep)
3684 return 0;
3685
weiping zhang9a8ec03e2017-11-15 17:38:18 -08003686 shmem_init_inodecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003688 error = register_filesystem(&shmem_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 if (error) {
Joe Perches11705322016-03-17 14:19:50 -07003690 pr_err("Could not register tmpfs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 goto out2;
3692 }
Greg Kroah-Hartman95dc1122005-06-20 21:15:16 -07003693
Al Viroca4e0512013-08-31 12:57:10 -04003694 shm_mnt = kern_mount(&shmem_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 if (IS_ERR(shm_mnt)) {
3696 error = PTR_ERR(shm_mnt);
Joe Perches11705322016-03-17 14:19:50 -07003697 pr_err("Could not kern_mount tmpfs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 goto out1;
3699 }
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003700
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07003701#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemov435c0b872017-08-25 15:55:33 -07003702 if (has_transparent_hugepage() && shmem_huge > SHMEM_HUGE_DENY)
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003703 SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge;
3704 else
3705 shmem_huge = 0; /* just in case it was patched */
3706#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 return 0;
3708
3709out1:
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003710 unregister_filesystem(&shmem_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711out2:
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003712 shmem_destroy_inodecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 shm_mnt = ERR_PTR(error);
3714 return error;
3715}
Matt Mackall853ac432009-01-06 14:40:20 -08003716
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07003717#if defined(CONFIG_TRANSPARENT_HUGE_PAGECACHE) && defined(CONFIG_SYSFS)
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003718static ssize_t shmem_enabled_show(struct kobject *kobj,
3719 struct kobj_attribute *attr, char *buf)
3720{
3721 int values[] = {
3722 SHMEM_HUGE_ALWAYS,
3723 SHMEM_HUGE_WITHIN_SIZE,
3724 SHMEM_HUGE_ADVISE,
3725 SHMEM_HUGE_NEVER,
3726 SHMEM_HUGE_DENY,
3727 SHMEM_HUGE_FORCE,
3728 };
3729 int i, count;
3730
3731 for (i = 0, count = 0; i < ARRAY_SIZE(values); i++) {
3732 const char *fmt = shmem_huge == values[i] ? "[%s] " : "%s ";
3733
3734 count += sprintf(buf + count, fmt,
3735 shmem_format_huge(values[i]));
3736 }
3737 buf[count - 1] = '\n';
3738 return count;
3739}
3740
3741static ssize_t shmem_enabled_store(struct kobject *kobj,
3742 struct kobj_attribute *attr, const char *buf, size_t count)
3743{
3744 char tmp[16];
3745 int huge;
3746
3747 if (count + 1 > sizeof(tmp))
3748 return -EINVAL;
3749 memcpy(tmp, buf, count);
3750 tmp[count] = '\0';
3751 if (count && tmp[count - 1] == '\n')
3752 tmp[count - 1] = '\0';
3753
3754 huge = shmem_parse_huge(tmp);
3755 if (huge == -EINVAL)
3756 return -EINVAL;
3757 if (!has_transparent_hugepage() &&
3758 huge != SHMEM_HUGE_NEVER && huge != SHMEM_HUGE_DENY)
3759 return -EINVAL;
3760
3761 shmem_huge = huge;
Kirill A. Shutemov435c0b872017-08-25 15:55:33 -07003762 if (shmem_huge > SHMEM_HUGE_DENY)
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003763 SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge;
3764 return count;
3765}
3766
3767struct kobj_attribute shmem_enabled_attr =
3768 __ATTR(shmem_enabled, 0644, shmem_enabled_show, shmem_enabled_store);
Arnd Bergmann3b337192016-08-10 16:27:44 -07003769#endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE && CONFIG_SYSFS */
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07003770
Arnd Bergmann3b337192016-08-10 16:27:44 -07003771#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07003772bool shmem_huge_enabled(struct vm_area_struct *vma)
3773{
3774 struct inode *inode = file_inode(vma->vm_file);
3775 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
3776 loff_t i_size;
3777 pgoff_t off;
3778
3779 if (shmem_huge == SHMEM_HUGE_FORCE)
3780 return true;
3781 if (shmem_huge == SHMEM_HUGE_DENY)
3782 return false;
3783 switch (sbinfo->huge) {
3784 case SHMEM_HUGE_NEVER:
3785 return false;
3786 case SHMEM_HUGE_ALWAYS:
3787 return true;
3788 case SHMEM_HUGE_WITHIN_SIZE:
3789 off = round_up(vma->vm_pgoff, HPAGE_PMD_NR);
3790 i_size = round_up(i_size_read(inode), PAGE_SIZE);
3791 if (i_size >= HPAGE_PMD_SIZE &&
3792 i_size >> PAGE_SHIFT >= off)
3793 return true;
Gustavo A. R. Silvac8402872017-11-15 17:38:45 -08003794 /* fall through */
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07003795 case SHMEM_HUGE_ADVISE:
3796 /* TODO: implement fadvise() hints */
3797 return (vma->vm_flags & VM_HUGEPAGE);
3798 default:
3799 VM_BUG_ON(1);
3800 return false;
3801 }
3802}
Arnd Bergmann3b337192016-08-10 16:27:44 -07003803#endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE */
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003804
Matt Mackall853ac432009-01-06 14:40:20 -08003805#else /* !CONFIG_SHMEM */
3806
3807/*
3808 * tiny-shmem: simple shmemfs and tmpfs using ramfs code
3809 *
3810 * This is intended for small system where the benefits of the full
3811 * shmem code (swap-backed and resource-limited) are outweighed by
3812 * their complexity. On systems without swap this code should be
3813 * effectively equivalent, but much lighter weight.
3814 */
3815
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003816static struct file_system_type shmem_fs_type = {
Matt Mackall853ac432009-01-06 14:40:20 -08003817 .name = "tmpfs",
Al Viro3c26ff62010-07-25 11:46:36 +04003818 .mount = ramfs_mount,
Matt Mackall853ac432009-01-06 14:40:20 -08003819 .kill_sb = kill_litter_super,
Eric W. Biederman2b8576c2013-01-25 16:32:10 -08003820 .fs_flags = FS_USERNS_MOUNT,
Matt Mackall853ac432009-01-06 14:40:20 -08003821};
3822
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003823int __init shmem_init(void)
Matt Mackall853ac432009-01-06 14:40:20 -08003824{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003825 BUG_ON(register_filesystem(&shmem_fs_type) != 0);
Matt Mackall853ac432009-01-06 14:40:20 -08003826
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003827 shm_mnt = kern_mount(&shmem_fs_type);
Matt Mackall853ac432009-01-06 14:40:20 -08003828 BUG_ON(IS_ERR(shm_mnt));
3829
3830 return 0;
3831}
3832
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003833int shmem_unuse(swp_entry_t swap, struct page *page)
Matt Mackall853ac432009-01-06 14:40:20 -08003834{
3835 return 0;
3836}
3837
Hugh Dickins3f96b792009-09-21 17:03:37 -07003838int shmem_lock(struct file *file, int lock, struct user_struct *user)
3839{
3840 return 0;
3841}
3842
Hugh Dickins24513262012-01-20 14:34:21 -08003843void shmem_unlock_mapping(struct address_space *mapping)
3844{
3845}
3846
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07003847#ifdef CONFIG_MMU
3848unsigned long shmem_get_unmapped_area(struct file *file,
3849 unsigned long addr, unsigned long len,
3850 unsigned long pgoff, unsigned long flags)
3851{
3852 return current->mm->get_unmapped_area(file, addr, len, pgoff, flags);
3853}
3854#endif
3855
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003856void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
Hugh Dickins94c1e622011-06-27 16:18:03 -07003857{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003858 truncate_inode_pages_range(inode->i_mapping, lstart, lend);
Hugh Dickins94c1e622011-06-27 16:18:03 -07003859}
3860EXPORT_SYMBOL_GPL(shmem_truncate_range);
3861
Hugh Dickins0b0a0802009-02-24 20:51:52 +00003862#define shmem_vm_ops generic_file_vm_ops
3863#define shmem_file_operations ramfs_file_operations
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03003864#define shmem_get_inode(sb, dir, mode, dev, flags) ramfs_get_inode(sb, dir, mode, dev)
Hugh Dickins0b0a0802009-02-24 20:51:52 +00003865#define shmem_acct_size(flags, size) 0
3866#define shmem_unacct_size(flags, size) do {} while (0)
Matt Mackall853ac432009-01-06 14:40:20 -08003867
3868#endif /* CONFIG_SHMEM */
3869
3870/* common code */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
Matthew Auld703321b2017-10-06 23:18:13 +01003872static struct file *__shmem_file_setup(struct vfsmount *mnt, const char *name, loff_t size,
Eric Parisc7277092013-12-02 11:24:19 +00003873 unsigned long flags, unsigned int i_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 struct inode *inode;
Al Viro93dec2d2018-07-08 23:02:03 -04003876 struct file *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877
Matthew Auld703321b2017-10-06 23:18:13 +01003878 if (IS_ERR(mnt))
3879 return ERR_CAST(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880
Hugh Dickins285b2c42011-08-03 16:21:20 -07003881 if (size < 0 || size > MAX_LFS_FILESIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 return ERR_PTR(-EINVAL);
3883
3884 if (shmem_acct_size(flags, size))
3885 return ERR_PTR(-ENOMEM);
3886
Al Viro93dec2d2018-07-08 23:02:03 -04003887 inode = shmem_get_inode(mnt->mnt_sb, NULL, S_IFREG | S_IRWXUGO, 0,
3888 flags);
Al Virodac2d1f2018-06-09 09:27:41 -04003889 if (unlikely(!inode)) {
3890 shmem_unacct_size(flags, size);
3891 return ERR_PTR(-ENOSPC);
3892 }
Eric Parisc7277092013-12-02 11:24:19 +00003893 inode->i_flags |= i_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 inode->i_size = size;
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02003895 clear_nlink(inode); /* It is unlinked */
Al Viro26567cd2013-03-01 20:22:53 -05003896 res = ERR_PTR(ramfs_nommu_expand_for_mapping(inode, size));
Al Viro93dec2d2018-07-08 23:02:03 -04003897 if (!IS_ERR(res))
3898 res = alloc_file_pseudo(inode, mnt, name, O_RDWR,
3899 &shmem_file_operations);
Al Viro26567cd2013-03-01 20:22:53 -05003900 if (IS_ERR(res))
Al Viro93dec2d2018-07-08 23:02:03 -04003901 iput(inode);
Al Viro6b4d0b22013-02-14 21:37:26 -05003902 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903}
Eric Parisc7277092013-12-02 11:24:19 +00003904
3905/**
3906 * shmem_kernel_file_setup - get an unlinked file living in tmpfs which must be
3907 * kernel internal. There will be NO LSM permission checks against the
3908 * underlying inode. So users of this interface must do LSM checks at a
Stephen Smalleye1832f22015-08-06 15:46:55 -07003909 * higher layer. The users are the big_key and shm implementations. LSM
3910 * checks are provided at the key or shm level rather than the inode.
Eric Parisc7277092013-12-02 11:24:19 +00003911 * @name: name for dentry (to be seen in /proc/<pid>/maps
3912 * @size: size to be set for the file
3913 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
3914 */
3915struct file *shmem_kernel_file_setup(const char *name, loff_t size, unsigned long flags)
3916{
Matthew Auld703321b2017-10-06 23:18:13 +01003917 return __shmem_file_setup(shm_mnt, name, size, flags, S_PRIVATE);
Eric Parisc7277092013-12-02 11:24:19 +00003918}
3919
3920/**
3921 * shmem_file_setup - get an unlinked file living in tmpfs
3922 * @name: name for dentry (to be seen in /proc/<pid>/maps
3923 * @size: size to be set for the file
3924 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
3925 */
3926struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags)
3927{
Matthew Auld703321b2017-10-06 23:18:13 +01003928 return __shmem_file_setup(shm_mnt, name, size, flags, 0);
Eric Parisc7277092013-12-02 11:24:19 +00003929}
Keith Packard395e0dd2008-06-20 00:08:06 -07003930EXPORT_SYMBOL_GPL(shmem_file_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931
Randy Dunlap46711812008-03-19 17:00:41 -07003932/**
Matthew Auld703321b2017-10-06 23:18:13 +01003933 * shmem_file_setup_with_mnt - get an unlinked file living in tmpfs
3934 * @mnt: the tmpfs mount where the file will be created
3935 * @name: name for dentry (to be seen in /proc/<pid>/maps
3936 * @size: size to be set for the file
3937 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
3938 */
3939struct file *shmem_file_setup_with_mnt(struct vfsmount *mnt, const char *name,
3940 loff_t size, unsigned long flags)
3941{
3942 return __shmem_file_setup(mnt, name, size, flags, 0);
3943}
3944EXPORT_SYMBOL_GPL(shmem_file_setup_with_mnt);
3945
3946/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 * shmem_zero_setup - setup a shared anonymous mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
3949 */
3950int shmem_zero_setup(struct vm_area_struct *vma)
3951{
3952 struct file *file;
3953 loff_t size = vma->vm_end - vma->vm_start;
3954
Hugh Dickins66fc1302015-06-14 09:48:09 -07003955 /*
3956 * Cloning a new file under mmap_sem leads to a lock ordering conflict
3957 * between XFS directory reading and selinux: since this file is only
3958 * accessible to the user through its mapping, use S_PRIVATE flag to
3959 * bypass file security, in the same way as shmem_kernel_file_setup().
3960 */
Matthew Auld703321b2017-10-06 23:18:13 +01003961 file = shmem_kernel_file_setup("dev/zero", size, vma->vm_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 if (IS_ERR(file))
3963 return PTR_ERR(file);
3964
3965 if (vma->vm_file)
3966 fput(vma->vm_file);
3967 vma->vm_file = file;
3968 vma->vm_ops = &shmem_vm_ops;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07003969
Kirill A. Shutemove496cf32016-07-26 15:26:35 -07003970 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE) &&
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07003971 ((vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK) <
3972 (vma->vm_end & HPAGE_PMD_MASK)) {
3973 khugepaged_enter(vma, vma->vm_flags);
3974 }
3975
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 return 0;
3977}
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07003978
3979/**
3980 * shmem_read_mapping_page_gfp - read into page cache, using specified page allocation flags.
3981 * @mapping: the page's address_space
3982 * @index: the page index
3983 * @gfp: the page allocator flags to use if allocating
3984 *
3985 * This behaves as a tmpfs "read_cache_page_gfp(mapping, index, gfp)",
3986 * with any new page allocations done using the specified allocation flags.
3987 * But read_cache_page_gfp() uses the ->readpage() method: which does not
3988 * suit tmpfs, since it may have pages in swapcache, and needs to find those
3989 * for itself; although drivers/gpu/drm i915 and ttm rely upon this support.
3990 *
Hugh Dickins68da9f02011-07-25 17:12:34 -07003991 * i915_gem_object_get_pages_gtt() mixes __GFP_NORETRY | __GFP_NOWARN in
3992 * with the mapping_gfp_mask(), to avoid OOMing the machine unnecessarily.
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07003993 */
3994struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
3995 pgoff_t index, gfp_t gfp)
3996{
Hugh Dickins68da9f02011-07-25 17:12:34 -07003997#ifdef CONFIG_SHMEM
3998 struct inode *inode = mapping->host;
Hugh Dickins9276aad2011-07-25 17:12:34 -07003999 struct page *page;
Hugh Dickins68da9f02011-07-25 17:12:34 -07004000 int error;
4001
4002 BUG_ON(mapping->a_ops != &shmem_aops);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07004003 error = shmem_getpage_gfp(inode, index, &page, SGP_CACHE,
Mike Rapoportcfda0522017-02-22 15:43:37 -08004004 gfp, NULL, NULL, NULL);
Hugh Dickins68da9f02011-07-25 17:12:34 -07004005 if (error)
4006 page = ERR_PTR(error);
4007 else
4008 unlock_page(page);
4009 return page;
4010#else
4011 /*
4012 * The tiny !SHMEM case uses ramfs without swap
4013 */
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07004014 return read_cache_page_gfp(mapping, index, gfp);
Hugh Dickins68da9f02011-07-25 17:12:34 -07004015#endif
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07004016}
4017EXPORT_SYMBOL_GPL(shmem_read_mapping_page_gfp);