blob: 03eb915c82eb8472086a54fa771c2cc6388b1c6a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Resizable virtual memory filesystem for Linux.
3 *
4 * Copyright (C) 2000 Linus Torvalds.
5 * 2000 Transmeta Corp.
6 * 2000-2001 Christoph Rohland
7 * 2000-2001 SAP AG
8 * 2002 Red Hat Inc.
Hugh Dickins6922c0c2011-08-03 16:21:25 -07009 * Copyright (C) 2002-2011 Hugh Dickins.
10 * Copyright (C) 2011 Google Inc.
Hugh Dickins0edd73b2005-06-21 17:15:04 -070011 * Copyright (C) 2002-2005 VERITAS Software Corporation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Copyright (C) 2004 Andi Kleen, SuSE Labs
13 *
14 * Extended attribute support for tmpfs:
15 * Copyright (c) 2004, Luke Kenneth Casson Leighton <lkcl@lkcl.net>
16 * Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
17 *
Matt Mackall853ac432009-01-06 14:40:20 -080018 * tiny-shmem:
19 * Copyright (c) 2004, 2008 Matt Mackall <mpm@selenic.com>
20 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * This file is released under the GPL.
22 */
23
Matt Mackall853ac432009-01-06 14:40:20 -080024#include <linux/fs.h>
25#include <linux/init.h>
26#include <linux/vfs.h>
27#include <linux/mount.h>
Andrew Morton250297e2013-04-29 15:06:12 -070028#include <linux/ramfs.h>
Hugh Dickinscaefba12009-04-13 14:40:12 -070029#include <linux/pagemap.h>
Matt Mackall853ac432009-01-06 14:40:20 -080030#include <linux/file.h>
31#include <linux/mm.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040032#include <linux/export.h>
Matt Mackall853ac432009-01-06 14:40:20 -080033#include <linux/swap.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080034#include <linux/uio.h>
Matt Mackall853ac432009-01-06 14:40:20 -080035
36static struct vfsmount *shm_mnt;
37
38#ifdef CONFIG_SHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/*
40 * This virtual memory filesystem is heavily based on the ramfs. It
41 * extends ramfs by the ability to use swap and honor resource limits
42 * which makes it a completely usable filesystem.
43 */
44
Andreas Gruenbacher39f02472006-09-29 02:01:35 -070045#include <linux/xattr.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070046#include <linux/exportfs.h>
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010047#include <linux/posix_acl.h>
Christoph Hellwigfeda8212013-12-20 05:16:54 -080048#include <linux/posix_acl_xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/string.h>
51#include <linux/slab.h>
52#include <linux/backing-dev.h>
53#include <linux/shmem_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/blkdev.h>
Hugh Dickinsbda97ea2011-08-03 16:21:21 -070056#include <linux/pagevec.h>
Hugh Dickins41ffe5d2011-08-03 16:21:21 -070057#include <linux/percpu_counter.h>
Hugh Dickins83e4fa92012-05-29 15:06:40 -070058#include <linux/falloc.h>
Hugh Dickins708e3502011-07-25 17:12:32 -070059#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/security.h>
61#include <linux/swapops.h>
62#include <linux/mempolicy.h>
63#include <linux/namei.h>
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +000064#include <linux/ctype.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070065#include <linux/migrate.h>
Christoph Lameterc1f60a52006-09-25 23:31:11 -070066#include <linux/highmem.h>
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -080067#include <linux/seq_file.h>
Mimi Zohar92562922008-10-07 14:00:12 -040068#include <linux/magic.h>
David Herrmann9183df22014-08-08 14:25:29 -070069#include <linux/syscalls.h>
David Herrmann40e041a2014-08-08 14:25:27 -070070#include <linux/fcntl.h>
David Herrmann9183df22014-08-08 14:25:29 -070071#include <uapi/linux/memfd.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <asm/pgtable.h>
75
Mel Gormandd56b042015-11-06 16:28:43 -080076#include "internal.h"
77
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030078#define BLOCKS_PER_PAGE (PAGE_SIZE/512)
79#define VM_ACCT(size) (PAGE_ALIGN(size) >> PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* Pretend that each entry is of this size in directory's i_size */
82#define BOGO_DIRENT_SIZE 20
83
Hugh Dickins69f07ec2011-08-03 16:21:26 -070084/* Symlink up to this size is kmalloc'ed instead of using a swappable page */
85#define SHORT_SYMLINK_LEN 128
86
Hugh Dickins1aac1402012-05-29 15:06:42 -070087/*
Hugh Dickinsf00cdc62014-06-23 13:22:06 -070088 * shmem_fallocate communicates with shmem_fault or shmem_writepage via
89 * inode->i_private (with i_mutex making sure that it has only one user at
90 * a time): we would prefer not to enlarge the shmem inode just for that.
Hugh Dickins1aac1402012-05-29 15:06:42 -070091 */
92struct shmem_falloc {
Hugh Dickins8e205f72014-07-23 14:00:10 -070093 wait_queue_head_t *waitq; /* faults into hole wait for punch to end */
Hugh Dickins1aac1402012-05-29 15:06:42 -070094 pgoff_t start; /* start of range currently being fallocated */
95 pgoff_t next; /* the next page offset to be fallocated */
96 pgoff_t nr_falloced; /* how many new pages have been fallocated */
97 pgoff_t nr_unswapped; /* how often writepage refused to swap out */
98};
99
Hugh Dickins285b2c42011-08-03 16:21:20 -0700100/* Flag allocation requirements to shmem_getpage */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101enum sgp_type {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 SGP_READ, /* don't exceed i_size, don't allocate page */
103 SGP_CACHE, /* don't exceed i_size, may allocate page */
Kirill A. Shutemov657e3032016-07-26 15:26:21 -0700104 SGP_NOHUGE, /* like SGP_CACHE, but no huge pages */
105 SGP_HUGE, /* like SGP_CACHE, huge pages preferred */
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700106 SGP_WRITE, /* may exceed i_size, may allocate !Uptodate page */
107 SGP_FALLOC, /* like SGP_WRITE, but make existing page Uptodate */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
Andrew Mortonb76db732008-02-08 04:21:49 -0800110#ifdef CONFIG_TMPFS
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800111static unsigned long shmem_default_max_blocks(void)
112{
113 return totalram_pages / 2;
114}
115
116static unsigned long shmem_default_max_inodes(void)
117{
118 return min(totalram_pages - totalhigh_pages, totalram_pages / 2);
119}
Andrew Mortonb76db732008-02-08 04:21:49 -0800120#endif
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -0800121
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700122static bool shmem_should_replace_page(struct page *page, gfp_t gfp);
123static int shmem_replace_page(struct page **pagep, gfp_t gfp,
124 struct shmem_inode_info *info, pgoff_t index);
Hugh Dickins68da9f02011-07-25 17:12:34 -0700125static int shmem_getpage_gfp(struct inode *inode, pgoff_t index,
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700126 struct page **pagep, enum sgp_type sgp,
127 gfp_t gfp, struct mm_struct *fault_mm, int *fault_type);
Hugh Dickins68da9f02011-07-25 17:12:34 -0700128
129static inline int 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,
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700133 mapping_gfp_mask(inode->i_mapping), 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
Hugh Dickins759b9772007-03-05 00:30:28 -0800193static const struct super_operations shmem_ops;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700194static const struct address_space_operations shmem_aops;
Helge Deller15ad7cd2006-12-06 20:40:36 -0800195static const struct file_operations shmem_file_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800196static const struct inode_operations shmem_inode_operations;
197static const struct inode_operations shmem_dir_inode_operations;
198static const struct inode_operations shmem_special_inode_operations;
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400199static const struct vm_operations_struct shmem_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201static LIST_HEAD(shmem_swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800202static DEFINE_MUTEX(shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Pavel Emelyanov5b04c682008-02-04 22:28:47 -0800204static int shmem_reserve_inode(struct super_block *sb)
205{
206 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
207 if (sbinfo->max_inodes) {
208 spin_lock(&sbinfo->stat_lock);
209 if (!sbinfo->free_inodes) {
210 spin_unlock(&sbinfo->stat_lock);
211 return -ENOSPC;
212 }
213 sbinfo->free_inodes--;
214 spin_unlock(&sbinfo->stat_lock);
215 }
216 return 0;
217}
218
219static void shmem_free_inode(struct super_block *sb)
220{
221 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
222 if (sbinfo->max_inodes) {
223 spin_lock(&sbinfo->stat_lock);
224 sbinfo->free_inodes++;
225 spin_unlock(&sbinfo->stat_lock);
226 }
227}
228
Randy Dunlap46711812008-03-19 17:00:41 -0700229/**
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700230 * shmem_recalc_inode - recalculate the block usage of an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 * @inode: inode to recalc
232 *
233 * We have to calculate the free blocks since the mm can drop
234 * undirtied hole pages behind our back.
235 *
236 * But normally info->alloced == inode->i_mapping->nrpages + info->swapped
237 * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
238 *
239 * It has to be called with the spinlock held.
240 */
241static void shmem_recalc_inode(struct inode *inode)
242{
243 struct shmem_inode_info *info = SHMEM_I(inode);
244 long freed;
245
246 freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
247 if (freed > 0) {
Hugh Dickins54af60422011-08-03 16:21:24 -0700248 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
249 if (sbinfo->max_blocks)
250 percpu_counter_add(&sbinfo->used_blocks, -freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 info->alloced -= freed;
Hugh Dickins54af60422011-08-03 16:21:24 -0700252 inode->i_blocks -= freed * BLOCKS_PER_PAGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 shmem_unacct_blocks(info->flags, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255}
256
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700257bool shmem_charge(struct inode *inode, long pages)
258{
259 struct shmem_inode_info *info = SHMEM_I(inode);
260 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700261 unsigned long flags;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700262
263 if (shmem_acct_block(info->flags, pages))
264 return false;
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700265 spin_lock_irqsave(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700266 info->alloced += pages;
267 inode->i_blocks += pages * BLOCKS_PER_PAGE;
268 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700269 spin_unlock_irqrestore(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700270 inode->i_mapping->nrpages += pages;
271
272 if (!sbinfo->max_blocks)
273 return true;
274 if (percpu_counter_compare(&sbinfo->used_blocks,
275 sbinfo->max_blocks - pages) > 0) {
276 inode->i_mapping->nrpages -= pages;
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700277 spin_lock_irqsave(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700278 info->alloced -= pages;
279 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700280 spin_unlock_irqrestore(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700281
282 return false;
283 }
284 percpu_counter_add(&sbinfo->used_blocks, pages);
285 return true;
286}
287
288void shmem_uncharge(struct inode *inode, long pages)
289{
290 struct shmem_inode_info *info = SHMEM_I(inode);
291 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700292 unsigned long flags;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700293
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700294 spin_lock_irqsave(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700295 info->alloced -= pages;
296 inode->i_blocks -= pages * BLOCKS_PER_PAGE;
297 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700298 spin_unlock_irqrestore(&info->lock, flags);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700299
300 if (sbinfo->max_blocks)
301 percpu_counter_sub(&sbinfo->used_blocks, pages);
302}
303
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700304/*
305 * Replace item expected in radix tree by a new item, while holding tree lock.
306 */
307static int shmem_radix_tree_replace(struct address_space *mapping,
308 pgoff_t index, void *expected, void *replacement)
309{
310 void **pslot;
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700311 void *item;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700312
313 VM_BUG_ON(!expected);
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700314 VM_BUG_ON(!replacement);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700315 pslot = radix_tree_lookup_slot(&mapping->page_tree, index);
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700316 if (!pslot)
317 return -ENOENT;
318 item = radix_tree_deref_slot_protected(pslot, &mapping->tree_lock);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700319 if (item != expected)
320 return -ENOENT;
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700321 radix_tree_replace_slot(pslot, replacement);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700322 return 0;
323}
324
325/*
Hugh Dickinsd1899222012-07-11 14:02:47 -0700326 * Sometimes, before we decide whether to proceed or to fail, we must check
327 * that an entry was not already brought back from swap by a racing thread.
328 *
329 * Checking page is not enough: by the time a SwapCache page is locked, it
330 * might be reused, and again be SwapCache, using the same swap as before.
331 */
332static bool shmem_confirm_swap(struct address_space *mapping,
333 pgoff_t index, swp_entry_t swap)
334{
335 void *item;
336
337 rcu_read_lock();
338 item = radix_tree_lookup(&mapping->page_tree, index);
339 rcu_read_unlock();
340 return item == swp_to_radix_entry(swap);
341}
342
343/*
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700344 * Definitions for "huge tmpfs": tmpfs mounted with the huge= option
345 *
346 * SHMEM_HUGE_NEVER:
347 * disables huge pages for the mount;
348 * SHMEM_HUGE_ALWAYS:
349 * enables huge pages for the mount;
350 * SHMEM_HUGE_WITHIN_SIZE:
351 * only allocate huge pages if the page will be fully within i_size,
352 * also respect fadvise()/madvise() hints;
353 * SHMEM_HUGE_ADVISE:
354 * only allocate huge pages if requested with fadvise()/madvise();
355 */
356
357#define SHMEM_HUGE_NEVER 0
358#define SHMEM_HUGE_ALWAYS 1
359#define SHMEM_HUGE_WITHIN_SIZE 2
360#define SHMEM_HUGE_ADVISE 3
361
362/*
363 * Special values.
364 * Only can be set via /sys/kernel/mm/transparent_hugepage/shmem_enabled:
365 *
366 * SHMEM_HUGE_DENY:
367 * disables huge on shm_mnt and all mounts, for emergency use;
368 * SHMEM_HUGE_FORCE:
369 * enables huge on shm_mnt and all mounts, w/o needing option, for testing;
370 *
371 */
372#define SHMEM_HUGE_DENY (-1)
373#define SHMEM_HUGE_FORCE (-2)
374
375#ifdef CONFIG_TRANSPARENT_HUGEPAGE
376/* ifdef here to avoid bloating shmem.o when not necessary */
377
378int shmem_huge __read_mostly;
379
380static int shmem_parse_huge(const char *str)
381{
382 if (!strcmp(str, "never"))
383 return SHMEM_HUGE_NEVER;
384 if (!strcmp(str, "always"))
385 return SHMEM_HUGE_ALWAYS;
386 if (!strcmp(str, "within_size"))
387 return SHMEM_HUGE_WITHIN_SIZE;
388 if (!strcmp(str, "advise"))
389 return SHMEM_HUGE_ADVISE;
390 if (!strcmp(str, "deny"))
391 return SHMEM_HUGE_DENY;
392 if (!strcmp(str, "force"))
393 return SHMEM_HUGE_FORCE;
394 return -EINVAL;
395}
396
397static const char *shmem_format_huge(int huge)
398{
399 switch (huge) {
400 case SHMEM_HUGE_NEVER:
401 return "never";
402 case SHMEM_HUGE_ALWAYS:
403 return "always";
404 case SHMEM_HUGE_WITHIN_SIZE:
405 return "within_size";
406 case SHMEM_HUGE_ADVISE:
407 return "advise";
408 case SHMEM_HUGE_DENY:
409 return "deny";
410 case SHMEM_HUGE_FORCE:
411 return "force";
412 default:
413 VM_BUG_ON(1);
414 return "bad_val";
415 }
416}
417
418#else /* !CONFIG_TRANSPARENT_HUGEPAGE */
419
420#define shmem_huge SHMEM_HUGE_DENY
421
422#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
423
424/*
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700425 * Like add_to_page_cache_locked, but error if expected item has gone.
426 */
427static int shmem_add_to_page_cache(struct page *page,
428 struct address_space *mapping,
Wang Sheng-Huifed400a2014-08-06 16:07:26 -0700429 pgoff_t index, void *expected)
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700430{
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700431 int error, nr = hpage_nr_pages(page);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700432
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700433 VM_BUG_ON_PAGE(PageTail(page), page);
434 VM_BUG_ON_PAGE(index != round_down(index, nr), page);
Sasha Levin309381fea2014-01-23 15:52:54 -0800435 VM_BUG_ON_PAGE(!PageLocked(page), page);
436 VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700437 VM_BUG_ON(expected && PageTransHuge(page));
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700438
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700439 page_ref_add(page, nr);
Hugh Dickinsb065b432012-07-11 14:02:48 -0700440 page->mapping = mapping;
441 page->index = index;
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700442
Hugh Dickinsb065b432012-07-11 14:02:48 -0700443 spin_lock_irq(&mapping->tree_lock);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700444 if (PageTransHuge(page)) {
445 void __rcu **results;
446 pgoff_t idx;
447 int i;
448
449 error = 0;
450 if (radix_tree_gang_lookup_slot(&mapping->page_tree,
451 &results, &idx, index, 1) &&
452 idx < index + HPAGE_PMD_NR) {
453 error = -EEXIST;
454 }
455
456 if (!error) {
457 for (i = 0; i < HPAGE_PMD_NR; i++) {
458 error = radix_tree_insert(&mapping->page_tree,
459 index + i, page + i);
460 VM_BUG_ON(error);
461 }
462 count_vm_event(THP_FILE_ALLOC);
463 }
464 } else if (!expected) {
Hugh Dickinsb065b432012-07-11 14:02:48 -0700465 error = radix_tree_insert(&mapping->page_tree, index, page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700466 } else {
Hugh Dickinsb065b432012-07-11 14:02:48 -0700467 error = shmem_radix_tree_replace(mapping, index, expected,
468 page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700469 }
470
Hugh Dickinsb065b432012-07-11 14:02:48 -0700471 if (!error) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700472 mapping->nrpages += nr;
473 if (PageTransHuge(page))
474 __inc_zone_page_state(page, NR_SHMEM_THPS);
475 __mod_zone_page_state(page_zone(page), NR_FILE_PAGES, nr);
476 __mod_zone_page_state(page_zone(page), NR_SHMEM, nr);
Hugh Dickinsb065b432012-07-11 14:02:48 -0700477 spin_unlock_irq(&mapping->tree_lock);
478 } else {
479 page->mapping = NULL;
480 spin_unlock_irq(&mapping->tree_lock);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700481 page_ref_sub(page, nr);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700482 }
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700483 return error;
484}
485
486/*
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700487 * Like delete_from_page_cache, but substitutes swap for page.
488 */
489static void shmem_delete_from_page_cache(struct page *page, void *radswap)
490{
491 struct address_space *mapping = page->mapping;
492 int error;
493
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700494 VM_BUG_ON_PAGE(PageCompound(page), page);
495
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700496 spin_lock_irq(&mapping->tree_lock);
497 error = shmem_radix_tree_replace(mapping, page->index, page, radswap);
498 page->mapping = NULL;
499 mapping->nrpages--;
500 __dec_zone_page_state(page, NR_FILE_PAGES);
501 __dec_zone_page_state(page, NR_SHMEM);
502 spin_unlock_irq(&mapping->tree_lock);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300503 put_page(page);
Hugh Dickins6922c0c2011-08-03 16:21:25 -0700504 BUG_ON(error);
505}
506
507/*
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700508 * Remove swap entry from radix tree, free the swap and its page cache.
509 */
510static int shmem_free_swap(struct address_space *mapping,
511 pgoff_t index, void *radswap)
512{
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700513 void *old;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700514
515 spin_lock_irq(&mapping->tree_lock);
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700516 old = radix_tree_delete_item(&mapping->page_tree, index, radswap);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700517 spin_unlock_irq(&mapping->tree_lock);
Johannes Weiner6dbaf222014-04-03 14:47:41 -0700518 if (old != radswap)
519 return -ENOENT;
520 free_swap_and_cache(radix_to_swp_entry(radswap));
521 return 0;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700522}
523
524/*
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800525 * Determine (in bytes) how many of the shmem object's pages mapped by the
Vlastimil Babka48131e02016-01-14 15:19:23 -0800526 * given offsets are swapped out.
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800527 *
528 * This is safe to call without i_mutex or mapping->tree_lock thanks to RCU,
529 * as long as the inode doesn't go away and racy results are not a problem.
530 */
Vlastimil Babka48131e02016-01-14 15:19:23 -0800531unsigned long shmem_partial_swap_usage(struct address_space *mapping,
532 pgoff_t start, pgoff_t end)
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800533{
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800534 struct radix_tree_iter iter;
535 void **slot;
536 struct page *page;
Vlastimil Babka48131e02016-01-14 15:19:23 -0800537 unsigned long swapped = 0;
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800538
539 rcu_read_lock();
540
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800541 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
542 if (iter.index >= end)
543 break;
544
545 page = radix_tree_deref_slot(slot);
546
Matthew Wilcox2cf938a2016-03-17 14:22:03 -0700547 if (radix_tree_deref_retry(page)) {
548 slot = radix_tree_iter_retry(&iter);
549 continue;
550 }
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800551
552 if (radix_tree_exceptional_entry(page))
553 swapped++;
554
555 if (need_resched()) {
556 cond_resched_rcu();
Matthew Wilcox71650922016-03-17 14:22:06 -0700557 slot = radix_tree_iter_next(&iter);
Vlastimil Babka6a15a372016-01-14 15:19:20 -0800558 }
559 }
560
561 rcu_read_unlock();
562
563 return swapped << PAGE_SHIFT;
564}
565
566/*
Vlastimil Babka48131e02016-01-14 15:19:23 -0800567 * Determine (in bytes) how many of the shmem object's pages mapped by the
568 * given vma is swapped out.
569 *
570 * This is safe to call without i_mutex or mapping->tree_lock thanks to RCU,
571 * as long as the inode doesn't go away and racy results are not a problem.
572 */
573unsigned long shmem_swap_usage(struct vm_area_struct *vma)
574{
575 struct inode *inode = file_inode(vma->vm_file);
576 struct shmem_inode_info *info = SHMEM_I(inode);
577 struct address_space *mapping = inode->i_mapping;
578 unsigned long swapped;
579
580 /* Be careful as we don't hold info->lock */
581 swapped = READ_ONCE(info->swapped);
582
583 /*
584 * The easier cases are when the shmem object has nothing in swap, or
585 * the vma maps it whole. Then we can simply use the stats that we
586 * already track.
587 */
588 if (!swapped)
589 return 0;
590
591 if (!vma->vm_pgoff && vma->vm_end - vma->vm_start >= inode->i_size)
592 return swapped << PAGE_SHIFT;
593
594 /* Here comes the more involved part */
595 return shmem_partial_swap_usage(mapping,
596 linear_page_index(vma, vma->vm_start),
597 linear_page_index(vma, vma->vm_end));
598}
599
600/*
Hugh Dickins24513262012-01-20 14:34:21 -0800601 * SysV IPC SHM_UNLOCK restore Unevictable pages to their evictable lists.
602 */
603void shmem_unlock_mapping(struct address_space *mapping)
604{
605 struct pagevec pvec;
606 pgoff_t indices[PAGEVEC_SIZE];
607 pgoff_t index = 0;
608
609 pagevec_init(&pvec, 0);
610 /*
611 * Minor point, but we might as well stop if someone else SHM_LOCKs it.
612 */
613 while (!mapping_unevictable(mapping)) {
614 /*
615 * Avoid pagevec_lookup(): find_get_pages() returns 0 as if it
616 * has finished, if it hits a row of PAGEVEC_SIZE swap entries.
617 */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700618 pvec.nr = find_get_entries(mapping, index,
619 PAGEVEC_SIZE, pvec.pages, indices);
Hugh Dickins24513262012-01-20 14:34:21 -0800620 if (!pvec.nr)
621 break;
622 index = indices[pvec.nr - 1] + 1;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700623 pagevec_remove_exceptionals(&pvec);
Hugh Dickins24513262012-01-20 14:34:21 -0800624 check_move_unevictable_pages(pvec.pages, pvec.nr);
625 pagevec_release(&pvec);
626 cond_resched();
627 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700628}
629
630/*
631 * Remove range of pages and swap entries from radix tree, and free them.
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700632 * If !unfalloc, truncate or punch hole; if unfalloc, undo failed fallocate.
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700633 */
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700634static void shmem_undo_range(struct inode *inode, loff_t lstart, loff_t lend,
635 bool unfalloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Hugh Dickins285b2c42011-08-03 16:21:20 -0700637 struct address_space *mapping = inode->i_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300639 pgoff_t start = (lstart + PAGE_SIZE - 1) >> PAGE_SHIFT;
640 pgoff_t end = (lend + 1) >> PAGE_SHIFT;
641 unsigned int partial_start = lstart & (PAGE_SIZE - 1);
642 unsigned int partial_end = (lend + 1) & (PAGE_SIZE - 1);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700643 struct pagevec pvec;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700644 pgoff_t indices[PAGEVEC_SIZE];
645 long nr_swaps_freed = 0;
Hugh Dickins285b2c42011-08-03 16:21:20 -0700646 pgoff_t index;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700647 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700649 if (lend == -1)
650 end = -1; /* unsigned, so actually very big */
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700651
652 pagevec_init(&pvec, 0);
653 index = start;
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700654 while (index < end) {
Johannes Weiner0cd61442014-04-03 14:47:46 -0700655 pvec.nr = find_get_entries(mapping, index,
656 min(end - index, (pgoff_t)PAGEVEC_SIZE),
657 pvec.pages, indices);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700658 if (!pvec.nr)
659 break;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700660 for (i = 0; i < pagevec_count(&pvec); i++) {
661 struct page *page = pvec.pages[i];
662
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700663 index = indices[i];
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700664 if (index >= end)
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700665 break;
666
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700667 if (radix_tree_exceptional_entry(page)) {
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700668 if (unfalloc)
669 continue;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700670 nr_swaps_freed += !shmem_free_swap(mapping,
671 index, page);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700672 continue;
673 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700674
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700675 VM_BUG_ON_PAGE(page_to_pgoff(page) != index, page);
676
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700677 if (!trylock_page(page))
678 continue;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700679
680 if (PageTransTail(page)) {
681 /* Middle of THP: zero out the page */
682 clear_highpage(page);
683 unlock_page(page);
684 continue;
685 } else if (PageTransHuge(page)) {
686 if (index == round_down(end, HPAGE_PMD_NR)) {
687 /*
688 * Range ends in the middle of THP:
689 * zero out the page
690 */
691 clear_highpage(page);
692 unlock_page(page);
693 continue;
694 }
695 index += HPAGE_PMD_NR - 1;
696 i += HPAGE_PMD_NR - 1;
697 }
698
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700699 if (!unfalloc || !PageUptodate(page)) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700700 VM_BUG_ON_PAGE(PageTail(page), page);
701 if (page_mapping(page) == mapping) {
Sasha Levin309381fea2014-01-23 15:52:54 -0800702 VM_BUG_ON_PAGE(PageWriteback(page), page);
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700703 truncate_inode_page(mapping, page);
704 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700705 }
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700706 unlock_page(page);
707 }
Johannes Weiner0cd61442014-04-03 14:47:46 -0700708 pagevec_remove_exceptionals(&pvec);
Hugh Dickins24513262012-01-20 14:34:21 -0800709 pagevec_release(&pvec);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700710 cond_resched();
711 index++;
712 }
713
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700714 if (partial_start) {
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700715 struct page *page = NULL;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700716 shmem_getpage(inode, start - 1, &page, SGP_READ);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700717 if (page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300718 unsigned int top = PAGE_SIZE;
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700719 if (start > end) {
720 top = partial_end;
721 partial_end = 0;
722 }
723 zero_user_segment(page, partial_start, top);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700724 set_page_dirty(page);
725 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300726 put_page(page);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700727 }
728 }
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700729 if (partial_end) {
730 struct page *page = NULL;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -0700731 shmem_getpage(inode, end, &page, SGP_READ);
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700732 if (page) {
733 zero_user_segment(page, 0, partial_end);
734 set_page_dirty(page);
735 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300736 put_page(page);
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700737 }
738 }
739 if (start >= end)
740 return;
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700741
742 index = start;
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700743 while (index < end) {
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700744 cond_resched();
Johannes Weiner0cd61442014-04-03 14:47:46 -0700745
746 pvec.nr = find_get_entries(mapping, index,
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700747 min(end - index, (pgoff_t)PAGEVEC_SIZE),
Johannes Weiner0cd61442014-04-03 14:47:46 -0700748 pvec.pages, indices);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700749 if (!pvec.nr) {
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700750 /* If all gone or hole-punch or unfalloc, we're done */
751 if (index == start || end != -1)
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700752 break;
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700753 /* But if truncating, restart to make sure all gone */
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700754 index = start;
755 continue;
756 }
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700757 for (i = 0; i < pagevec_count(&pvec); i++) {
758 struct page *page = pvec.pages[i];
759
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700760 index = indices[i];
Hugh Dickins83e4fa92012-05-29 15:06:40 -0700761 if (index >= end)
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700762 break;
763
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700764 if (radix_tree_exceptional_entry(page)) {
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700765 if (unfalloc)
766 continue;
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700767 if (shmem_free_swap(mapping, index, page)) {
768 /* Swap was replaced by page: retry */
769 index--;
770 break;
771 }
772 nr_swaps_freed++;
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700773 continue;
774 }
775
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700776 lock_page(page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700777
778 if (PageTransTail(page)) {
779 /* Middle of THP: zero out the page */
780 clear_highpage(page);
781 unlock_page(page);
782 /*
783 * Partial thp truncate due 'start' in middle
784 * of THP: don't need to look on these pages
785 * again on !pvec.nr restart.
786 */
787 if (index != round_down(end, HPAGE_PMD_NR))
788 start++;
789 continue;
790 } else if (PageTransHuge(page)) {
791 if (index == round_down(end, HPAGE_PMD_NR)) {
792 /*
793 * Range ends in the middle of THP:
794 * zero out the page
795 */
796 clear_highpage(page);
797 unlock_page(page);
798 continue;
799 }
800 index += HPAGE_PMD_NR - 1;
801 i += HPAGE_PMD_NR - 1;
802 }
803
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700804 if (!unfalloc || !PageUptodate(page)) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700805 VM_BUG_ON_PAGE(PageTail(page), page);
806 if (page_mapping(page) == mapping) {
Sasha Levin309381fea2014-01-23 15:52:54 -0800807 VM_BUG_ON_PAGE(PageWriteback(page), page);
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700808 truncate_inode_page(mapping, page);
Hugh Dickinsb1a36652014-07-23 14:00:13 -0700809 } else {
810 /* Page was replaced by swap: retry */
811 unlock_page(page);
812 index--;
813 break;
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700814 }
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700815 }
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700816 unlock_page(page);
817 }
Johannes Weiner0cd61442014-04-03 14:47:46 -0700818 pagevec_remove_exceptionals(&pvec);
Hugh Dickins24513262012-01-20 14:34:21 -0800819 pagevec_release(&pvec);
Hugh Dickinsbda97ea2011-08-03 16:21:21 -0700820 index++;
821 }
Hugh Dickins94c1e622011-06-27 16:18:03 -0700822
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700823 spin_lock_irq(&info->lock);
Hugh Dickins7a5d0fb2011-08-03 16:21:22 -0700824 info->swapped -= nr_swaps_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700826 spin_unlock_irq(&info->lock);
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700827}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Hugh Dickins1635f6a2012-05-29 15:06:42 -0700829void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
830{
831 shmem_undo_range(inode, lstart, lend, false);
Hugh Dickins285b2c42011-08-03 16:21:20 -0700832 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
Hugh Dickins94c1e622011-06-27 16:18:03 -0700834EXPORT_SYMBOL_GPL(shmem_truncate_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Yu Zhao44a30222015-09-08 15:03:33 -0700836static int shmem_getattr(struct vfsmount *mnt, struct dentry *dentry,
837 struct kstat *stat)
838{
839 struct inode *inode = dentry->d_inode;
840 struct shmem_inode_info *info = SHMEM_I(inode);
841
Hugh Dickinsd0424c42015-11-05 18:50:34 -0800842 if (info->alloced - info->swapped != inode->i_mapping->nrpages) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700843 spin_lock_irq(&info->lock);
Hugh Dickinsd0424c42015-11-05 18:50:34 -0800844 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700845 spin_unlock_irq(&info->lock);
Hugh Dickinsd0424c42015-11-05 18:50:34 -0800846 }
Yu Zhao44a30222015-09-08 15:03:33 -0700847 generic_fillattr(inode, stat);
Yu Zhao44a30222015-09-08 15:03:33 -0700848 return 0;
849}
850
Hugh Dickins94c1e622011-06-27 16:18:03 -0700851static int shmem_setattr(struct dentry *dentry, struct iattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
David Howells75c3cfa2015-03-17 22:26:12 +0000853 struct inode *inode = d_inode(dentry);
David Herrmann40e041a2014-08-08 14:25:27 -0700854 struct shmem_inode_info *info = SHMEM_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 int error;
856
Christoph Hellwigdb78b872010-06-04 11:30:03 +0200857 error = inode_change_ok(inode, attr);
858 if (error)
859 return error;
860
Hugh Dickins94c1e622011-06-27 16:18:03 -0700861 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
862 loff_t oldsize = inode->i_size;
863 loff_t newsize = attr->ia_size;
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000864
David Herrmann40e041a2014-08-08 14:25:27 -0700865 /* protected by i_mutex */
866 if ((newsize < oldsize && (info->seals & F_SEAL_SHRINK)) ||
867 (newsize > oldsize && (info->seals & F_SEAL_GROW)))
868 return -EPERM;
869
Hugh Dickins94c1e622011-06-27 16:18:03 -0700870 if (newsize != oldsize) {
Konstantin Khlebnikov77142512014-08-06 16:06:34 -0700871 error = shmem_reacct_size(SHMEM_I(inode)->flags,
872 oldsize, newsize);
873 if (error)
874 return error;
Hugh Dickins94c1e622011-06-27 16:18:03 -0700875 i_size_write(inode, newsize);
876 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
877 }
Josef Bacikafa2db22015-06-24 16:58:45 -0700878 if (newsize <= oldsize) {
Hugh Dickins94c1e622011-06-27 16:18:03 -0700879 loff_t holebegin = round_up(newsize, PAGE_SIZE);
Hugh Dickinsd0424c42015-11-05 18:50:34 -0800880 if (oldsize > holebegin)
881 unmap_mapping_range(inode->i_mapping,
882 holebegin, 0, 1);
883 if (info->alloced)
884 shmem_truncate_range(inode,
885 newsize, (loff_t)-1);
Hugh Dickins94c1e622011-06-27 16:18:03 -0700886 /* unmap again to remove racily COWed private pages */
Hugh Dickinsd0424c42015-11-05 18:50:34 -0800887 if (oldsize > holebegin)
888 unmap_mapping_range(inode->i_mapping,
889 holebegin, 0, 1);
Hugh Dickins94c1e622011-06-27 16:18:03 -0700890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892
Christoph Hellwigdb78b872010-06-04 11:30:03 +0200893 setattr_copy(inode, attr);
Christoph Hellwigdb78b872010-06-04 11:30:03 +0200894 if (attr->ia_valid & ATTR_MODE)
Christoph Hellwigfeda8212013-12-20 05:16:54 -0800895 error = posix_acl_chmod(inode, inode->i_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return error;
897}
898
Al Viro1f895f72010-06-05 19:10:41 -0400899static void shmem_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 struct shmem_inode_info *info = SHMEM_I(inode);
902
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000903 if (inode->i_mapping->a_ops == &shmem_aops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 shmem_unacct_size(info->flags, inode->i_size);
905 inode->i_size = 0;
npiggin@suse.de3889e6e2010-05-27 01:05:36 +1000906 shmem_truncate_range(inode, 0, (loff_t)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (!list_empty(&info->swaplist)) {
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800908 mutex_lock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 list_del_init(&info->swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800910 mutex_unlock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 }
Al Viro3ed47db2016-01-22 18:08:52 -0500912 }
Eric Parisb09e0fa2011-05-24 17:12:39 -0700913
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400914 simple_xattrs_free(&info->xattrs);
Hugh Dickins0f3c42f2012-11-16 14:15:04 -0800915 WARN_ON(inode->i_blocks);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -0800916 shmem_free_inode(inode->i_sb);
Jan Karadbd57682012-05-03 14:48:02 +0200917 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
919
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700920/*
921 * If swap found in inode, free it and move page from swapcache to filecache.
922 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700923static int shmem_unuse_inode(struct shmem_inode_info *info,
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700924 swp_entry_t swap, struct page **pagep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Hugh Dickins285b2c42011-08-03 16:21:20 -0700926 struct address_space *mapping = info->vfs_inode.i_mapping;
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700927 void *radswap;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -0700928 pgoff_t index;
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700929 gfp_t gfp;
930 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700932 radswap = swp_to_radix_entry(swap);
Hugh Dickinse504f3f2011-08-03 16:21:27 -0700933 index = radix_tree_locate_item(&mapping->page_tree, radswap);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700934 if (index == -1)
Johannes Weiner00501b52014-08-08 14:19:20 -0700935 return -EAGAIN; /* tell shmem_unuse we found nothing */
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800936
Hugh Dickins1b1b32f2008-02-04 22:28:55 -0800937 /*
938 * Move _head_ to start search for next from here.
Al Viro1f895f72010-06-05 19:10:41 -0400939 * But be careful: shmem_evict_inode checks list_empty without taking
Hugh Dickins1b1b32f2008-02-04 22:28:55 -0800940 * mutex, and there's an instant in list_move_tail when info->swaplist
Hugh Dickins285b2c42011-08-03 16:21:20 -0700941 * would appear empty, if it were the only one on shmem_swaplist.
Hugh Dickins1b1b32f2008-02-04 22:28:55 -0800942 */
943 if (shmem_swaplist.next != &info->swaplist)
944 list_move_tail(&shmem_swaplist, &info->swaplist);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800945
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700946 gfp = mapping_gfp_mask(mapping);
947 if (shmem_should_replace_page(*pagep, gfp)) {
948 mutex_unlock(&shmem_swaplist_mutex);
949 error = shmem_replace_page(pagep, gfp, info, index);
950 mutex_lock(&shmem_swaplist_mutex);
951 /*
952 * We needed to drop mutex to make that restrictive page
Hugh Dickins0142ef62012-06-07 14:21:09 -0700953 * allocation, but the inode might have been freed while we
954 * dropped it: although a racing shmem_evict_inode() cannot
955 * complete without emptying the radix_tree, our page lock
956 * on this swapcache page is not enough to prevent that -
957 * free_swap_and_cache() of our swap entry will only
958 * trylock_page(), removing swap from radix_tree whatever.
959 *
960 * We must not proceed to shmem_add_to_page_cache() if the
961 * inode has been freed, but of course we cannot rely on
962 * inode or mapping or info to check that. However, we can
963 * safely check if our swap entry is still in use (and here
964 * it can't have got reused for another page): if it's still
965 * in use, then the inode cannot have been freed yet, and we
966 * can safely proceed (if it's no longer in use, that tells
967 * nothing about the inode, but we don't need to unuse swap).
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700968 */
969 if (!page_swapcount(*pagep))
970 error = -ENOENT;
971 }
972
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800973 /*
Hugh Dickins778dd892011-05-11 15:13:37 -0700974 * We rely on shmem_swaplist_mutex, not only to protect the swaplist,
975 * but also to hold up shmem_evict_inode(): so inode cannot be freed
976 * beneath us (pagelock doesn't help until the page is in pagecache).
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -0800977 */
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700978 if (!error)
979 error = shmem_add_to_page_cache(*pagep, mapping, index,
Wang Sheng-Huifed400a2014-08-06 16:07:26 -0700980 radswap);
Hugh Dickins48f170f2011-07-25 17:12:37 -0700981 if (error != -ENOMEM) {
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700982 /*
983 * Truncation and eviction use free_swap_and_cache(), which
984 * only does trylock page: if we raced, best clean up here.
985 */
Hugh Dickinsbde05d12012-05-29 15:06:38 -0700986 delete_from_swap_cache(*pagep);
987 set_page_dirty(*pagep);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700988 if (!error) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700989 spin_lock_irq(&info->lock);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700990 info->swapped--;
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700991 spin_unlock_irq(&info->lock);
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700992 swap_free(swap);
993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800995 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
998/*
Hugh Dickins46f65ec2011-08-03 16:21:23 -0700999 * Search through swapped inodes to find and replace swap by page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001001int shmem_unuse(swp_entry_t swap, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001003 struct list_head *this, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 struct shmem_inode_info *info;
Johannes Weiner00501b52014-08-08 14:19:20 -07001005 struct mem_cgroup *memcg;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001006 int error = 0;
1007
1008 /*
1009 * There's a faint possibility that swap page was replaced before
Hugh Dickins0142ef62012-06-07 14:21:09 -07001010 * caller locked it: caller will come back later with the right page.
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001011 */
Hugh Dickins0142ef62012-06-07 14:21:09 -07001012 if (unlikely(!PageSwapCache(page) || page_private(page) != swap.val))
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001013 goto out;
Hugh Dickins778dd892011-05-11 15:13:37 -07001014
1015 /*
1016 * Charge page using GFP_KERNEL while we can wait, before taking
1017 * the shmem_swaplist_mutex which might hold up shmem_writepage().
1018 * Charged back to the user (not to caller) when swap account is used.
Hugh Dickins778dd892011-05-11 15:13:37 -07001019 */
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001020 error = mem_cgroup_try_charge(page, current->mm, GFP_KERNEL, &memcg,
1021 false);
Hugh Dickins778dd892011-05-11 15:13:37 -07001022 if (error)
1023 goto out;
Hugh Dickins46f65ec2011-08-03 16:21:23 -07001024 /* No radix_tree_preload: swap entry keeps a place for page in tree */
Johannes Weiner00501b52014-08-08 14:19:20 -07001025 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001027 mutex_lock(&shmem_swaplist_mutex);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001028 list_for_each_safe(this, next, &shmem_swaplist) {
1029 info = list_entry(this, struct shmem_inode_info, swaplist);
Hugh Dickins285b2c42011-08-03 16:21:20 -07001030 if (info->swapped)
Johannes Weiner00501b52014-08-08 14:19:20 -07001031 error = shmem_unuse_inode(info, swap, &page);
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001032 else
1033 list_del_init(&info->swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001034 cond_resched();
Johannes Weiner00501b52014-08-08 14:19:20 -07001035 if (error != -EAGAIN)
Hugh Dickins778dd892011-05-11 15:13:37 -07001036 break;
Johannes Weiner00501b52014-08-08 14:19:20 -07001037 /* found nothing in this: move on to search the next */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
Hugh Dickinscb5f7b92008-02-04 22:28:52 -08001039 mutex_unlock(&shmem_swaplist_mutex);
Hugh Dickins778dd892011-05-11 15:13:37 -07001040
Johannes Weiner00501b52014-08-08 14:19:20 -07001041 if (error) {
1042 if (error != -ENOMEM)
1043 error = 0;
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001044 mem_cgroup_cancel_charge(page, memcg, false);
Johannes Weiner00501b52014-08-08 14:19:20 -07001045 } else
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001046 mem_cgroup_commit_charge(page, memcg, true, false);
Hugh Dickins778dd892011-05-11 15:13:37 -07001047out:
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001048 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001049 put_page(page);
Hugh Dickins778dd892011-05-11 15:13:37 -07001050 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052
1053/*
1054 * Move the page from the page cache to the swap cache.
1055 */
1056static int shmem_writepage(struct page *page, struct writeback_control *wbc)
1057{
1058 struct shmem_inode_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 struct address_space *mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 struct inode *inode;
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001061 swp_entry_t swap;
1062 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001064 VM_BUG_ON_PAGE(PageCompound(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 mapping = page->mapping;
1067 index = page->index;
1068 inode = mapping->host;
1069 info = SHMEM_I(inode);
1070 if (info->flags & VM_LOCKED)
1071 goto redirty;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001072 if (!total_swap_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 goto redirty;
1074
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001075 /*
Christoph Hellwig97b713b2015-01-14 10:42:31 +01001076 * Our capabilities prevent regular writeback or sync from ever calling
1077 * shmem_writepage; but a stacking filesystem might use ->writepage of
1078 * its underlying filesystem, in which case tmpfs should write out to
1079 * swap only in response to memory pressure, and not for the writeback
1080 * threads or sync.
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001081 */
Hugh Dickins48f170f2011-07-25 17:12:37 -07001082 if (!wbc->for_reclaim) {
1083 WARN_ON_ONCE(1); /* Still happens? Tell us about it! */
1084 goto redirty;
1085 }
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001086
1087 /*
1088 * This is somewhat ridiculous, but without plumbing a SWAP_MAP_FALLOC
1089 * value into swapfile.c, the only way we can correctly account for a
1090 * fallocated page arriving here is now to initialize it and write it.
Hugh Dickins1aac1402012-05-29 15:06:42 -07001091 *
1092 * That's okay for a page already fallocated earlier, but if we have
1093 * not yet completed the fallocation, then (a) we want to keep track
1094 * of this page in case we have to undo it, and (b) it may not be a
1095 * good idea to continue anyway, once we're pushing into swap. So
1096 * reactivate the page, and let shmem_fallocate() quit when too many.
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001097 */
1098 if (!PageUptodate(page)) {
Hugh Dickins1aac1402012-05-29 15:06:42 -07001099 if (inode->i_private) {
1100 struct shmem_falloc *shmem_falloc;
1101 spin_lock(&inode->i_lock);
1102 shmem_falloc = inode->i_private;
1103 if (shmem_falloc &&
Hugh Dickins8e205f72014-07-23 14:00:10 -07001104 !shmem_falloc->waitq &&
Hugh Dickins1aac1402012-05-29 15:06:42 -07001105 index >= shmem_falloc->start &&
1106 index < shmem_falloc->next)
1107 shmem_falloc->nr_unswapped++;
1108 else
1109 shmem_falloc = NULL;
1110 spin_unlock(&inode->i_lock);
1111 if (shmem_falloc)
1112 goto redirty;
1113 }
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001114 clear_highpage(page);
1115 flush_dcache_page(page);
1116 SetPageUptodate(page);
1117 }
1118
Hugh Dickins48f170f2011-07-25 17:12:37 -07001119 swap = get_swap_page();
1120 if (!swap.val)
1121 goto redirty;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001122
Vladimir Davydov37e84352016-01-20 15:02:56 -08001123 if (mem_cgroup_try_charge_swap(page, swap))
1124 goto free_swap;
1125
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001126 /*
1127 * Add inode to shmem_unuse()'s list of swapped-out inodes,
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001128 * if it's not already there. Do it now before the page is
1129 * moved to swap cache, when its pagelock no longer protects
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001130 * the inode from eviction. But don't unlock the mutex until
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001131 * we've incremented swapped, because shmem_unuse_inode() will
1132 * prune a !swapped inode from the swaplist under this mutex.
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001133 */
Hugh Dickins48f170f2011-07-25 17:12:37 -07001134 mutex_lock(&shmem_swaplist_mutex);
1135 if (list_empty(&info->swaplist))
1136 list_add_tail(&info->swaplist, &shmem_swaplist);
Hugh Dickinsb1dea802011-05-11 15:13:36 -07001137
Hugh Dickins48f170f2011-07-25 17:12:37 -07001138 if (add_to_swap_cache(page, swap, GFP_ATOMIC) == 0) {
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001139 spin_lock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001140 shmem_recalc_inode(inode);
1141 info->swapped++;
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001142 spin_unlock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001143
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001144 swap_shmem_alloc(swap);
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001145 shmem_delete_from_page_cache(page, swp_to_radix_entry(swap));
1146
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001147 mutex_unlock(&shmem_swaplist_mutex);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001148 BUG_ON(page_mapped(page));
Hugh Dickins9fab5612009-03-31 15:23:33 -07001149 swap_writepage(page, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 return 0;
1151 }
1152
Hugh Dickins6922c0c2011-08-03 16:21:25 -07001153 mutex_unlock(&shmem_swaplist_mutex);
Vladimir Davydov37e84352016-01-20 15:02:56 -08001154free_swap:
Johannes Weiner0a31bc92014-08-08 14:19:22 -07001155 swapcache_free(swap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156redirty:
1157 set_page_dirty(page);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001158 if (wbc->for_reclaim)
1159 return AOP_WRITEPAGE_ACTIVATE; /* Return with page locked */
1160 unlock_page(page);
1161 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
Hugh Dickins75edd342016-05-19 17:12:44 -07001164#if defined(CONFIG_NUMA) && defined(CONFIG_TMPFS)
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001165static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001166{
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001167 char buffer[64];
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001168
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001169 if (!mpol || mpol->mode == MPOL_DEFAULT)
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001170 return; /* show nothing */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001171
Hugh Dickinsa7a88b22013-01-02 02:04:23 -08001172 mpol_to_str(buffer, sizeof(buffer), mpol);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001173
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001174 seq_printf(seq, ",mpol=%s", buffer);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001175}
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001176
1177static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1178{
1179 struct mempolicy *mpol = NULL;
1180 if (sbinfo->mpol) {
1181 spin_lock(&sbinfo->stat_lock); /* prevent replace/use races */
1182 mpol = sbinfo->mpol;
1183 mpol_get(mpol);
1184 spin_unlock(&sbinfo->stat_lock);
1185 }
1186 return mpol;
1187}
Hugh Dickins75edd342016-05-19 17:12:44 -07001188#else /* !CONFIG_NUMA || !CONFIG_TMPFS */
1189static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
1190{
1191}
1192static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1193{
1194 return NULL;
1195}
1196#endif /* CONFIG_NUMA && CONFIG_TMPFS */
1197#ifndef CONFIG_NUMA
1198#define vm_policy vm_private_data
1199#endif
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001200
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001201static void shmem_pseudo_vma_init(struct vm_area_struct *vma,
1202 struct shmem_inode_info *info, pgoff_t index)
1203{
1204 /* Create a pseudo vma that just contains the policy */
1205 vma->vm_start = 0;
1206 /* Bias interleave by inode number to distribute better across nodes */
1207 vma->vm_pgoff = index + info->vfs_inode.i_ino;
1208 vma->vm_ops = NULL;
1209 vma->vm_policy = mpol_shared_policy_lookup(&info->policy, index);
1210}
1211
1212static void shmem_pseudo_vma_destroy(struct vm_area_struct *vma)
1213{
1214 /* Drop reference taken by mpol_shared_policy_lookup() */
1215 mpol_cond_put(vma->vm_policy);
1216}
1217
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001218static struct page *shmem_swapin(swp_entry_t swap, gfp_t gfp,
1219 struct shmem_inode_info *info, pgoff_t index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 struct vm_area_struct pvma;
Mel Gorman18a2f372012-12-05 14:01:41 -08001222 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001224 shmem_pseudo_vma_init(&pvma, info, index);
Mel Gorman18a2f372012-12-05 14:01:41 -08001225 page = swapin_readahead(swap, gfp, &pvma, 0);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001226 shmem_pseudo_vma_destroy(&pvma);
Mel Gorman18a2f372012-12-05 14:01:41 -08001227
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001228 return page;
1229}
Mel Gorman18a2f372012-12-05 14:01:41 -08001230
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001231static struct page *shmem_alloc_hugepage(gfp_t gfp,
1232 struct shmem_inode_info *info, pgoff_t index)
1233{
1234 struct vm_area_struct pvma;
1235 struct inode *inode = &info->vfs_inode;
1236 struct address_space *mapping = inode->i_mapping;
1237 pgoff_t idx, hindex = round_down(index, HPAGE_PMD_NR);
1238 void __rcu **results;
1239 struct page *page;
1240
1241 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE))
1242 return NULL;
1243
1244 rcu_read_lock();
1245 if (radix_tree_gang_lookup_slot(&mapping->page_tree, &results, &idx,
1246 hindex, 1) && idx < hindex + HPAGE_PMD_NR) {
1247 rcu_read_unlock();
1248 return NULL;
1249 }
1250 rcu_read_unlock();
1251
1252 shmem_pseudo_vma_init(&pvma, info, hindex);
1253 page = alloc_pages_vma(gfp | __GFP_COMP | __GFP_NORETRY | __GFP_NOWARN,
1254 HPAGE_PMD_ORDER, &pvma, 0, numa_node_id(), true);
1255 shmem_pseudo_vma_destroy(&pvma);
1256 if (page)
1257 prep_transhuge_page(page);
Mel Gorman18a2f372012-12-05 14:01:41 -08001258 return page;
1259}
1260
1261static struct page *shmem_alloc_page(gfp_t gfp,
1262 struct shmem_inode_info *info, pgoff_t index)
1263{
1264 struct vm_area_struct pvma;
1265 struct page *page;
1266
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001267 shmem_pseudo_vma_init(&pvma, info, index);
1268 page = alloc_page_vma(gfp, &pvma, 0);
1269 shmem_pseudo_vma_destroy(&pvma);
Mel Gorman18a2f372012-12-05 14:01:41 -08001270
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001271 return page;
1272}
1273
1274static struct page *shmem_alloc_and_acct_page(gfp_t gfp,
1275 struct shmem_inode_info *info, struct shmem_sb_info *sbinfo,
1276 pgoff_t index, bool huge)
1277{
1278 struct page *page;
1279 int nr;
1280 int err = -ENOSPC;
1281
1282 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE))
1283 huge = false;
1284 nr = huge ? HPAGE_PMD_NR : 1;
1285
1286 if (shmem_acct_block(info->flags, nr))
1287 goto failed;
1288 if (sbinfo->max_blocks) {
1289 if (percpu_counter_compare(&sbinfo->used_blocks,
1290 sbinfo->max_blocks - nr) > 0)
1291 goto unacct;
1292 percpu_counter_add(&sbinfo->used_blocks, nr);
1293 }
1294
1295 if (huge)
1296 page = shmem_alloc_hugepage(gfp, info, index);
1297 else
1298 page = shmem_alloc_page(gfp, info, index);
Hugh Dickins75edd342016-05-19 17:12:44 -07001299 if (page) {
1300 __SetPageLocked(page);
1301 __SetPageSwapBacked(page);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001302 return page;
Hugh Dickins75edd342016-05-19 17:12:44 -07001303 }
Mel Gorman18a2f372012-12-05 14:01:41 -08001304
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001305 err = -ENOMEM;
1306 if (sbinfo->max_blocks)
1307 percpu_counter_add(&sbinfo->used_blocks, -nr);
1308unacct:
1309 shmem_unacct_blocks(info->flags, nr);
1310failed:
1311 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312}
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314/*
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001315 * When a page is moved from swapcache to shmem filecache (either by the
1316 * usual swapin of shmem_getpage_gfp(), or by the less common swapoff of
1317 * shmem_unuse_inode()), it may have been read in earlier from swap, in
1318 * ignorance of the mapping it belongs to. If that mapping has special
1319 * constraints (like the gma500 GEM driver, which requires RAM below 4GB),
1320 * we may need to copy to a suitable page before moving to filecache.
1321 *
1322 * In a future release, this may well be extended to respect cpuset and
1323 * NUMA mempolicy, and applied also to anonymous pages in do_swap_page();
1324 * but for now it is a simple matter of zone.
1325 */
1326static bool shmem_should_replace_page(struct page *page, gfp_t gfp)
1327{
1328 return page_zonenum(page) > gfp_zone(gfp);
1329}
1330
1331static int shmem_replace_page(struct page **pagep, gfp_t gfp,
1332 struct shmem_inode_info *info, pgoff_t index)
1333{
1334 struct page *oldpage, *newpage;
1335 struct address_space *swap_mapping;
1336 pgoff_t swap_index;
1337 int error;
1338
1339 oldpage = *pagep;
1340 swap_index = page_private(oldpage);
1341 swap_mapping = page_mapping(oldpage);
1342
1343 /*
1344 * We have arrived here because our zones are constrained, so don't
1345 * limit chance of success by further cpuset and node constraints.
1346 */
1347 gfp &= ~GFP_CONSTRAINT_MASK;
1348 newpage = shmem_alloc_page(gfp, info, index);
1349 if (!newpage)
1350 return -ENOMEM;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001351
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001352 get_page(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001353 copy_highpage(newpage, oldpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001354 flush_dcache_page(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001355
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001356 SetPageUptodate(newpage);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001357 set_page_private(newpage, swap_index);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001358 SetPageSwapCache(newpage);
1359
1360 /*
1361 * Our caller will very soon move newpage out of swapcache, but it's
1362 * a nice clean interface for us to replace oldpage by newpage there.
1363 */
1364 spin_lock_irq(&swap_mapping->tree_lock);
1365 error = shmem_radix_tree_replace(swap_mapping, swap_index, oldpage,
1366 newpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001367 if (!error) {
1368 __inc_zone_page_state(newpage, NR_FILE_PAGES);
1369 __dec_zone_page_state(oldpage, NR_FILE_PAGES);
1370 }
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001371 spin_unlock_irq(&swap_mapping->tree_lock);
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001372
Hugh Dickins0142ef62012-06-07 14:21:09 -07001373 if (unlikely(error)) {
1374 /*
1375 * Is this possible? I think not, now that our callers check
1376 * both PageSwapCache and page_private after getting page lock;
1377 * but be defensive. Reverse old to newpage for clear and free.
1378 */
1379 oldpage = newpage;
1380 } else {
Johannes Weiner6a93ca82016-03-15 14:57:19 -07001381 mem_cgroup_migrate(oldpage, newpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001382 lru_cache_add_anon(newpage);
1383 *pagep = newpage;
1384 }
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001385
1386 ClearPageSwapCache(oldpage);
1387 set_page_private(oldpage, 0);
1388
1389 unlock_page(oldpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001390 put_page(oldpage);
1391 put_page(oldpage);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001392 return error;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001393}
1394
1395/*
Hugh Dickins68da9f02011-07-25 17:12:34 -07001396 * shmem_getpage_gfp - find page in cache, or get from swap, or allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 *
1398 * If we allocate a new one we do not mark it dirty. That's up to the
1399 * vm. If we swap it in we mark it dirty since we also free the swap
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001400 * entry since a page cannot live in both the swap and page cache.
1401 *
1402 * fault_mm and fault_type are only supplied by shmem_fault:
1403 * otherwise they are NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001405static int shmem_getpage_gfp(struct inode *inode, pgoff_t index,
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001406 struct page **pagep, enum sgp_type sgp, gfp_t gfp,
1407 struct mm_struct *fault_mm, int *fault_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408{
1409 struct address_space *mapping = inode->i_mapping;
Hugh Dickins54af60422011-08-03 16:21:24 -07001410 struct shmem_inode_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 struct shmem_sb_info *sbinfo;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001412 struct mm_struct *charge_mm;
Johannes Weiner00501b52014-08-08 14:19:20 -07001413 struct mem_cgroup *memcg;
Hugh Dickins27ab7002011-07-25 17:12:36 -07001414 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 swp_entry_t swap;
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001416 enum sgp_type sgp_huge = sgp;
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001417 pgoff_t hindex = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 int error;
Hugh Dickins54af60422011-08-03 16:21:24 -07001419 int once = 0;
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001420 int alloced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001422 if (index > (MAX_LFS_FILESIZE >> PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 return -EFBIG;
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001424 if (sgp == SGP_NOHUGE || sgp == SGP_HUGE)
1425 sgp = SGP_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426repeat:
Hugh Dickins54af60422011-08-03 16:21:24 -07001427 swap.val = 0;
Johannes Weiner0cd61442014-04-03 14:47:46 -07001428 page = find_lock_entry(mapping, index);
Hugh Dickins54af60422011-08-03 16:21:24 -07001429 if (radix_tree_exceptional_entry(page)) {
1430 swap = radix_to_swp_entry(page);
1431 page = NULL;
1432 }
1433
Hugh Dickins75edd342016-05-19 17:12:44 -07001434 if (sgp <= SGP_CACHE &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001435 ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001436 error = -EINVAL;
Hugh Dickins267a4c72015-12-11 13:40:55 -08001437 goto unlock;
Hugh Dickins54af60422011-08-03 16:21:24 -07001438 }
1439
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001440 if (page && sgp == SGP_WRITE)
1441 mark_page_accessed(page);
1442
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001443 /* fallocated page? */
1444 if (page && !PageUptodate(page)) {
1445 if (sgp != SGP_READ)
1446 goto clear;
1447 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001448 put_page(page);
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001449 page = NULL;
1450 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001451 if (page || (sgp == SGP_READ && !swap.val)) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001452 *pagep = page;
1453 return 0;
Hugh Dickins27ab7002011-07-25 17:12:36 -07001454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07001457 * Fast cache lookup did not find it:
1458 * bring it back from swap or allocate.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 */
Hugh Dickins54af60422011-08-03 16:21:24 -07001460 info = SHMEM_I(inode);
1461 sbinfo = SHMEM_SB(inode->i_sb);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001462 charge_mm = fault_mm ? : current->mm;
Hugh Dickins27ab7002011-07-25 17:12:36 -07001463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (swap.val) {
1465 /* Look it up and read it in.. */
Hugh Dickins27ab7002011-07-25 17:12:36 -07001466 page = lookup_swap_cache(swap);
1467 if (!page) {
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001468 /* Or update major stats only when swapin succeeds?? */
1469 if (fault_type) {
Hugh Dickins68da9f02011-07-25 17:12:34 -07001470 *fault_type |= VM_FAULT_MAJOR;
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001471 count_vm_event(PGMAJFAULT);
1472 mem_cgroup_count_vm_event(fault_mm, PGMAJFAULT);
1473 }
1474 /* Here we actually start the io */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001475 page = shmem_swapin(swap, gfp, info, index);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001476 if (!page) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001477 error = -ENOMEM;
1478 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 }
1481
1482 /* We have to do this with page locked to prevent races */
Hugh Dickins54af60422011-08-03 16:21:24 -07001483 lock_page(page);
Hugh Dickins0142ef62012-06-07 14:21:09 -07001484 if (!PageSwapCache(page) || page_private(page) != swap.val ||
Hugh Dickinsd1899222012-07-11 14:02:47 -07001485 !shmem_confirm_swap(mapping, index, swap)) {
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001486 error = -EEXIST; /* try again */
Hugh Dickinsd1899222012-07-11 14:02:47 -07001487 goto unlock;
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001488 }
Hugh Dickins27ab7002011-07-25 17:12:36 -07001489 if (!PageUptodate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 error = -EIO;
Hugh Dickins54af60422011-08-03 16:21:24 -07001491 goto failed;
1492 }
1493 wait_on_page_writeback(page);
1494
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001495 if (shmem_should_replace_page(page, gfp)) {
1496 error = shmem_replace_page(&page, gfp, info, index);
1497 if (error)
1498 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 }
1500
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001501 error = mem_cgroup_try_charge(page, charge_mm, gfp, &memcg,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001502 false);
Hugh Dickinsd1899222012-07-11 14:02:47 -07001503 if (!error) {
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07001504 error = shmem_add_to_page_cache(page, mapping, index,
Wang Sheng-Huifed400a2014-08-06 16:07:26 -07001505 swp_to_radix_entry(swap));
Hugh Dickins215c02b2012-11-16 14:15:03 -08001506 /*
1507 * We already confirmed swap under page lock, and make
1508 * no memory allocation here, so usually no possibility
1509 * of error; but free_swap_and_cache() only trylocks a
1510 * page, so it is just possible that the entry has been
1511 * truncated or holepunched since swap was confirmed.
1512 * shmem_undo_range() will have done some of the
1513 * unaccounting, now delete_from_swap_cache() will do
Vladimir Davydov93aa7d92015-02-11 15:24:59 -08001514 * the rest.
Hugh Dickins215c02b2012-11-16 14:15:03 -08001515 * Reset swap.val? No, leave it so "failed" goes back to
1516 * "repeat": reading a hole and writing should succeed.
1517 */
Johannes Weiner00501b52014-08-08 14:19:20 -07001518 if (error) {
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001519 mem_cgroup_cancel_charge(page, memcg, false);
Hugh Dickins215c02b2012-11-16 14:15:03 -08001520 delete_from_swap_cache(page);
Johannes Weiner00501b52014-08-08 14:19:20 -07001521 }
Hugh Dickinsd1899222012-07-11 14:02:47 -07001522 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001523 if (error)
1524 goto failed;
1525
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001526 mem_cgroup_commit_charge(page, memcg, true, false);
Johannes Weiner00501b52014-08-08 14:19:20 -07001527
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001528 spin_lock_irq(&info->lock);
Hugh Dickins54af60422011-08-03 16:21:24 -07001529 info->swapped--;
1530 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001531 spin_unlock_irq(&info->lock);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001532
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001533 if (sgp == SGP_WRITE)
1534 mark_page_accessed(page);
1535
Hugh Dickins27ab7002011-07-25 17:12:36 -07001536 delete_from_swap_cache(page);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001537 set_page_dirty(page);
1538 swap_free(swap);
1539
Hugh Dickins54af60422011-08-03 16:21:24 -07001540 } else {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001541 /* shmem_symlink() */
1542 if (mapping->a_ops != &shmem_aops)
1543 goto alloc_nohuge;
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001544 if (shmem_huge == SHMEM_HUGE_DENY || sgp_huge == SGP_NOHUGE)
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001545 goto alloc_nohuge;
1546 if (shmem_huge == SHMEM_HUGE_FORCE)
1547 goto alloc_huge;
1548 switch (sbinfo->huge) {
1549 loff_t i_size;
1550 pgoff_t off;
1551 case SHMEM_HUGE_NEVER:
1552 goto alloc_nohuge;
1553 case SHMEM_HUGE_WITHIN_SIZE:
1554 off = round_up(index, HPAGE_PMD_NR);
1555 i_size = round_up(i_size_read(inode), PAGE_SIZE);
1556 if (i_size >= HPAGE_PMD_SIZE &&
1557 i_size >> PAGE_SHIFT >= off)
1558 goto alloc_huge;
1559 /* fallthrough */
1560 case SHMEM_HUGE_ADVISE:
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001561 if (sgp_huge == SGP_HUGE)
1562 goto alloc_huge;
1563 /* TODO: implement fadvise() hints */
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001564 goto alloc_nohuge;
Hugh Dickins59a16ea2011-05-11 15:13:38 -07001565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001567alloc_huge:
1568 page = shmem_alloc_and_acct_page(gfp, info, sbinfo,
1569 index, true);
1570 if (IS_ERR(page)) {
1571alloc_nohuge: page = shmem_alloc_and_acct_page(gfp, info, sbinfo,
1572 index, false);
Hugh Dickins54af60422011-08-03 16:21:24 -07001573 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001574 if (IS_ERR(page)) {
1575 error = PTR_ERR(page);
1576 page = NULL;
1577 goto failed;
1578 }
1579
1580 if (PageTransHuge(page))
1581 hindex = round_down(index, HPAGE_PMD_NR);
1582 else
1583 hindex = index;
1584
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001585 if (sgp == SGP_WRITE)
Hugh Dickinseb39d612014-08-06 16:06:43 -07001586 __SetPageReferenced(page);
Hugh Dickins66d2f4d2014-07-02 15:22:38 -07001587
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001588 error = mem_cgroup_try_charge(page, charge_mm, gfp, &memcg,
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001589 PageTransHuge(page));
Hugh Dickins54af60422011-08-03 16:21:24 -07001590 if (error)
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001591 goto unacct;
1592 error = radix_tree_maybe_preload_order(gfp & GFP_RECLAIM_MASK,
1593 compound_order(page));
Hugh Dickinsb065b432012-07-11 14:02:48 -07001594 if (!error) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001595 error = shmem_add_to_page_cache(page, mapping, hindex,
Wang Sheng-Huifed400a2014-08-06 16:07:26 -07001596 NULL);
Hugh Dickinsb065b432012-07-11 14:02:48 -07001597 radix_tree_preload_end();
1598 }
1599 if (error) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001600 mem_cgroup_cancel_charge(page, memcg,
1601 PageTransHuge(page));
1602 goto unacct;
Hugh Dickinsb065b432012-07-11 14:02:48 -07001603 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001604 mem_cgroup_commit_charge(page, memcg, false,
1605 PageTransHuge(page));
Hugh Dickins54af60422011-08-03 16:21:24 -07001606 lru_cache_add_anon(page);
1607
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001608 spin_lock_irq(&info->lock);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001609 info->alloced += 1 << compound_order(page);
1610 inode->i_blocks += BLOCKS_PER_PAGE << compound_order(page);
Hugh Dickins54af60422011-08-03 16:21:24 -07001611 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001612 spin_unlock_irq(&info->lock);
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001613 alloced = true;
Hugh Dickins54af60422011-08-03 16:21:24 -07001614
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001615 /*
Hugh Dickins1635f6a2012-05-29 15:06:42 -07001616 * Let SGP_FALLOC use the SGP_WRITE optimization on a new page.
1617 */
1618 if (sgp == SGP_FALLOC)
1619 sgp = SGP_WRITE;
1620clear:
1621 /*
1622 * Let SGP_WRITE caller clear ends if write does not fill page;
1623 * but SGP_FALLOC on a page fallocated earlier must initialize
1624 * it now, lest undo on failure cancel our earlier guarantee.
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001625 */
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001626 if (sgp != SGP_WRITE && !PageUptodate(page)) {
1627 struct page *head = compound_head(page);
1628 int i;
1629
1630 for (i = 0; i < (1 << compound_order(head)); i++) {
1631 clear_highpage(head + i);
1632 flush_dcache_page(head + i);
1633 }
1634 SetPageUptodate(head);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07001635 }
Hugh Dickins59a16ea2011-05-11 15:13:38 -07001636 }
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001637
Hugh Dickins54af60422011-08-03 16:21:24 -07001638 /* Perhaps the file has been truncated since we checked */
Hugh Dickins75edd342016-05-19 17:12:44 -07001639 if (sgp <= SGP_CACHE &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001640 ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) {
Hugh Dickins267a4c72015-12-11 13:40:55 -08001641 if (alloced) {
1642 ClearPageDirty(page);
1643 delete_from_page_cache(page);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001644 spin_lock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001645 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001646 spin_unlock_irq(&info->lock);
Hugh Dickins267a4c72015-12-11 13:40:55 -08001647 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001648 error = -EINVAL;
Hugh Dickins267a4c72015-12-11 13:40:55 -08001649 goto unlock;
Shaohua Liff36b8012010-08-09 17:19:06 -07001650 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001651 *pagep = page + index - hindex;
Hugh Dickins54af60422011-08-03 16:21:24 -07001652 return 0;
Nick Piggind00806b2007-07-19 01:46:57 -07001653
Nick Piggind0217ac2007-07-19 01:47:03 -07001654 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07001655 * Error recovery.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 */
Hugh Dickins54af60422011-08-03 16:21:24 -07001657unacct:
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07001658 if (sbinfo->max_blocks)
1659 percpu_counter_sub(&sbinfo->used_blocks,
1660 1 << compound_order(page));
1661 shmem_unacct_blocks(info->flags, 1 << compound_order(page));
1662
1663 if (PageTransHuge(page)) {
1664 unlock_page(page);
1665 put_page(page);
1666 goto alloc_nohuge;
1667 }
Hugh Dickins54af60422011-08-03 16:21:24 -07001668failed:
Hugh Dickins267a4c72015-12-11 13:40:55 -08001669 if (swap.val && !shmem_confirm_swap(mapping, index, swap))
Hugh Dickinsd1899222012-07-11 14:02:47 -07001670 error = -EEXIST;
1671unlock:
Hugh Dickins27ab7002011-07-25 17:12:36 -07001672 if (page) {
Hugh Dickins54af60422011-08-03 16:21:24 -07001673 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001674 put_page(page);
Hugh Dickins54af60422011-08-03 16:21:24 -07001675 }
1676 if (error == -ENOSPC && !once++) {
1677 info = SHMEM_I(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001678 spin_lock_irq(&info->lock);
Hugh Dickins54af60422011-08-03 16:21:24 -07001679 shmem_recalc_inode(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001680 spin_unlock_irq(&info->lock);
Hugh Dickins27ab7002011-07-25 17:12:36 -07001681 goto repeat;
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001682 }
Hugh Dickinsd1899222012-07-11 14:02:47 -07001683 if (error == -EEXIST) /* from above or from radix_tree_insert */
Hugh Dickins54af60422011-08-03 16:21:24 -07001684 goto repeat;
1685 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686}
1687
1688static int shmem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1689{
Al Viro496ad9a2013-01-23 17:07:38 -05001690 struct inode *inode = file_inode(vma->vm_file);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001691 gfp_t gfp = mapping_gfp_mask(inode->i_mapping);
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001692 enum sgp_type sgp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 int error;
Hugh Dickins68da9f02011-07-25 17:12:34 -07001694 int ret = VM_FAULT_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001696 /*
1697 * Trinity finds that probing a hole which tmpfs is punching can
1698 * prevent the hole-punch from ever completing: which in turn
1699 * locks writers out with its hold on i_mutex. So refrain from
Hugh Dickins8e205f72014-07-23 14:00:10 -07001700 * faulting pages into the hole while it's being punched. Although
1701 * shmem_undo_range() does remove the additions, it may be unable to
1702 * keep up, as each new page needs its own unmap_mapping_range() call,
1703 * and the i_mmap tree grows ever slower to scan if new vmas are added.
1704 *
1705 * It does not matter if we sometimes reach this check just before the
1706 * hole-punch begins, so that one fault then races with the punch:
1707 * we just need to make racing faults a rare case.
1708 *
1709 * The implementation below would be much simpler if we just used a
1710 * standard mutex or completion: but we cannot take i_mutex in fault,
1711 * and bloating every shmem inode for this unlikely case would be sad.
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001712 */
1713 if (unlikely(inode->i_private)) {
1714 struct shmem_falloc *shmem_falloc;
1715
1716 spin_lock(&inode->i_lock);
1717 shmem_falloc = inode->i_private;
Hugh Dickins8e205f72014-07-23 14:00:10 -07001718 if (shmem_falloc &&
1719 shmem_falloc->waitq &&
1720 vmf->pgoff >= shmem_falloc->start &&
1721 vmf->pgoff < shmem_falloc->next) {
1722 wait_queue_head_t *shmem_falloc_waitq;
1723 DEFINE_WAIT(shmem_fault_wait);
1724
1725 ret = VM_FAULT_NOPAGE;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001726 if ((vmf->flags & FAULT_FLAG_ALLOW_RETRY) &&
1727 !(vmf->flags & FAULT_FLAG_RETRY_NOWAIT)) {
Hugh Dickins8e205f72014-07-23 14:00:10 -07001728 /* It's polite to up mmap_sem if we can */
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001729 up_read(&vma->vm_mm->mmap_sem);
Hugh Dickins8e205f72014-07-23 14:00:10 -07001730 ret = VM_FAULT_RETRY;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001731 }
Hugh Dickins8e205f72014-07-23 14:00:10 -07001732
1733 shmem_falloc_waitq = shmem_falloc->waitq;
1734 prepare_to_wait(shmem_falloc_waitq, &shmem_fault_wait,
1735 TASK_UNINTERRUPTIBLE);
1736 spin_unlock(&inode->i_lock);
1737 schedule();
1738
1739 /*
1740 * shmem_falloc_waitq points into the shmem_fallocate()
1741 * stack of the hole-punching task: shmem_falloc_waitq
1742 * is usually invalid by the time we reach here, but
1743 * finish_wait() does not dereference it in that case;
1744 * though i_lock needed lest racing with wake_up_all().
1745 */
1746 spin_lock(&inode->i_lock);
1747 finish_wait(shmem_falloc_waitq, &shmem_fault_wait);
1748 spin_unlock(&inode->i_lock);
1749 return ret;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001750 }
Hugh Dickins8e205f72014-07-23 14:00:10 -07001751 spin_unlock(&inode->i_lock);
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07001752 }
1753
Kirill A. Shutemov657e3032016-07-26 15:26:21 -07001754 sgp = SGP_CACHE;
1755 if (vma->vm_flags & VM_HUGEPAGE)
1756 sgp = SGP_HUGE;
1757 else if (vma->vm_flags & VM_NOHUGEPAGE)
1758 sgp = SGP_NOHUGE;
1759
1760 error = shmem_getpage_gfp(inode, vmf->pgoff, &vmf->page, sgp,
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001761 gfp, vma->vm_mm, &ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 if (error)
1763 return ((error == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS);
Hugh Dickins68da9f02011-07-25 17:12:34 -07001764 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765}
1766
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07001767unsigned long shmem_get_unmapped_area(struct file *file,
1768 unsigned long uaddr, unsigned long len,
1769 unsigned long pgoff, unsigned long flags)
1770{
1771 unsigned long (*get_area)(struct file *,
1772 unsigned long, unsigned long, unsigned long, unsigned long);
1773 unsigned long addr;
1774 unsigned long offset;
1775 unsigned long inflated_len;
1776 unsigned long inflated_addr;
1777 unsigned long inflated_offset;
1778
1779 if (len > TASK_SIZE)
1780 return -ENOMEM;
1781
1782 get_area = current->mm->get_unmapped_area;
1783 addr = get_area(file, uaddr, len, pgoff, flags);
1784
1785 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE))
1786 return addr;
1787 if (IS_ERR_VALUE(addr))
1788 return addr;
1789 if (addr & ~PAGE_MASK)
1790 return addr;
1791 if (addr > TASK_SIZE - len)
1792 return addr;
1793
1794 if (shmem_huge == SHMEM_HUGE_DENY)
1795 return addr;
1796 if (len < HPAGE_PMD_SIZE)
1797 return addr;
1798 if (flags & MAP_FIXED)
1799 return addr;
1800 /*
1801 * Our priority is to support MAP_SHARED mapped hugely;
1802 * and support MAP_PRIVATE mapped hugely too, until it is COWed.
1803 * But if caller specified an address hint, respect that as before.
1804 */
1805 if (uaddr)
1806 return addr;
1807
1808 if (shmem_huge != SHMEM_HUGE_FORCE) {
1809 struct super_block *sb;
1810
1811 if (file) {
1812 VM_BUG_ON(file->f_op != &shmem_file_operations);
1813 sb = file_inode(file)->i_sb;
1814 } else {
1815 /*
1816 * Called directly from mm/mmap.c, or drivers/char/mem.c
1817 * for "/dev/zero", to create a shared anonymous object.
1818 */
1819 if (IS_ERR(shm_mnt))
1820 return addr;
1821 sb = shm_mnt->mnt_sb;
1822 }
1823 if (SHMEM_SB(sb)->huge != SHMEM_HUGE_NEVER)
1824 return addr;
1825 }
1826
1827 offset = (pgoff << PAGE_SHIFT) & (HPAGE_PMD_SIZE-1);
1828 if (offset && offset + len < 2 * HPAGE_PMD_SIZE)
1829 return addr;
1830 if ((addr & (HPAGE_PMD_SIZE-1)) == offset)
1831 return addr;
1832
1833 inflated_len = len + HPAGE_PMD_SIZE - PAGE_SIZE;
1834 if (inflated_len > TASK_SIZE)
1835 return addr;
1836 if (inflated_len < len)
1837 return addr;
1838
1839 inflated_addr = get_area(NULL, 0, inflated_len, 0, flags);
1840 if (IS_ERR_VALUE(inflated_addr))
1841 return addr;
1842 if (inflated_addr & ~PAGE_MASK)
1843 return addr;
1844
1845 inflated_offset = inflated_addr & (HPAGE_PMD_SIZE-1);
1846 inflated_addr += offset - inflated_offset;
1847 if (inflated_offset > offset)
1848 inflated_addr += HPAGE_PMD_SIZE;
1849
1850 if (inflated_addr > TASK_SIZE - len)
1851 return addr;
1852 return inflated_addr;
1853}
1854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855#ifdef CONFIG_NUMA
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001856static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *mpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
Al Viro496ad9a2013-01-23 17:07:38 -05001858 struct inode *inode = file_inode(vma->vm_file);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001859 return mpol_set_shared_policy(&SHMEM_I(inode)->policy, vma, mpol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}
1861
Adrian Bunkd8dc74f2007-10-16 01:26:26 -07001862static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma,
1863 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
Al Viro496ad9a2013-01-23 17:07:38 -05001865 struct inode *inode = file_inode(vma->vm_file);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001866 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07001868 index = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
1869 return mpol_shared_policy_lookup(&SHMEM_I(inode)->policy, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870}
1871#endif
1872
1873int shmem_lock(struct file *file, int lock, struct user_struct *user)
1874{
Al Viro496ad9a2013-01-23 17:07:38 -05001875 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 struct shmem_inode_info *info = SHMEM_I(inode);
1877 int retval = -ENOMEM;
1878
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001879 spin_lock_irq(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 if (lock && !(info->flags & VM_LOCKED)) {
1881 if (!user_shm_lock(inode->i_size, user))
1882 goto out_nomem;
1883 info->flags |= VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001884 mapping_set_unevictable(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 }
1886 if (!lock && (info->flags & VM_LOCKED) && user) {
1887 user_shm_unlock(inode->i_size, user);
1888 info->flags &= ~VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001889 mapping_clear_unevictable(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 }
1891 retval = 0;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893out_nomem:
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -07001894 spin_unlock_irq(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 return retval;
1896}
1897
Adrian Bunk9b83a6a2007-02-28 20:11:03 -08001898static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
1900 file_accessed(file);
1901 vma->vm_ops = &shmem_vm_ops;
1902 return 0;
1903}
1904
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03001905static struct inode *shmem_get_inode(struct super_block *sb, const struct inode *dir,
Al Viro09208d12011-07-26 03:15:03 -04001906 umode_t mode, dev_t dev, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907{
1908 struct inode *inode;
1909 struct shmem_inode_info *info;
1910 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1911
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001912 if (shmem_reserve_inode(sb))
1913 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915 inode = new_inode(sb);
1916 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001917 inode->i_ino = get_next_ino();
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03001918 inode_init_owner(inode, dir, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 inode->i_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
David M. Grimes91828a42006-10-17 00:09:45 -07001921 inode->i_generation = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 info = SHMEM_I(inode);
1923 memset(info, 0, (char *)inode - (char *)info);
1924 spin_lock_init(&info->lock);
David Herrmann40e041a2014-08-08 14:25:27 -07001925 info->seals = F_SEAL_SEAL;
Hugh Dickins0b0a0802009-02-24 20:51:52 +00001926 info->flags = flags & VM_NORESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 INIT_LIST_HEAD(&info->swaplist);
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001928 simple_xattrs_init(&info->xattrs);
Al Viro72c04902009-06-24 16:58:48 -04001929 cache_no_acl(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
1931 switch (mode & S_IFMT) {
1932 default:
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07001933 inode->i_op = &shmem_special_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 init_special_inode(inode, mode, dev);
1935 break;
1936 case S_IFREG:
Hugh Dickins14fcc232008-07-28 15:46:19 -07001937 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 inode->i_op = &shmem_inode_operations;
1939 inode->i_fop = &shmem_file_operations;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001940 mpol_shared_policy_init(&info->policy,
1941 shmem_get_sbmpol(sbinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 break;
1943 case S_IFDIR:
Dave Hansend8c76e62006-09-30 23:29:04 -07001944 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 /* Some things misbehave if size == 0 on a directory */
1946 inode->i_size = 2 * BOGO_DIRENT_SIZE;
1947 inode->i_op = &shmem_dir_inode_operations;
1948 inode->i_fop = &simple_dir_operations;
1949 break;
1950 case S_IFLNK:
1951 /*
1952 * Must not load anything in the rbtree,
1953 * mpol_free_shared_policy will not be called.
1954 */
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001955 mpol_shared_policy_init(&info->policy, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 break;
1957 }
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001958 } else
1959 shmem_free_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 return inode;
1961}
1962
Johannes Weiner0cd61442014-04-03 14:47:46 -07001963bool shmem_mapping(struct address_space *mapping)
1964{
Sasha Levinf0774d82015-02-23 05:38:00 -05001965 if (!mapping->host)
1966 return false;
1967
Christoph Hellwig97b713b2015-01-14 10:42:31 +01001968 return mapping->host->i_sb->s_op == &shmem_ops;
Johannes Weiner0cd61442014-04-03 14:47:46 -07001969}
1970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971#ifdef CONFIG_TMPFS
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001972static const struct inode_operations shmem_symlink_inode_operations;
Hugh Dickins69f07ec2011-08-03 16:21:26 -07001973static const struct inode_operations shmem_short_symlink_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07001975#ifdef CONFIG_TMPFS_XATTR
1976static int shmem_initxattrs(struct inode *, const struct xattr *, void *);
1977#else
1978#define shmem_initxattrs NULL
1979#endif
1980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981static int
Nick Piggin800d15a2007-10-16 01:25:03 -07001982shmem_write_begin(struct file *file, struct address_space *mapping,
1983 loff_t pos, unsigned len, unsigned flags,
1984 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
Nick Piggin800d15a2007-10-16 01:25:03 -07001986 struct inode *inode = mapping->host;
David Herrmann40e041a2014-08-08 14:25:27 -07001987 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001988 pgoff_t index = pos >> PAGE_SHIFT;
David Herrmann40e041a2014-08-08 14:25:27 -07001989
1990 /* i_mutex is held by caller */
1991 if (unlikely(info->seals)) {
1992 if (info->seals & F_SEAL_WRITE)
1993 return -EPERM;
1994 if ((info->seals & F_SEAL_GROW) && pos + len > inode->i_size)
1995 return -EPERM;
1996 }
1997
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07001998 return shmem_getpage(inode, index, pagep, SGP_WRITE);
Nick Piggin800d15a2007-10-16 01:25:03 -07001999}
2000
2001static int
2002shmem_write_end(struct file *file, struct address_space *mapping,
2003 loff_t pos, unsigned len, unsigned copied,
2004 struct page *page, void *fsdata)
2005{
2006 struct inode *inode = mapping->host;
2007
Hugh Dickinsd3602442008-02-04 22:28:44 -08002008 if (pos + copied > inode->i_size)
2009 i_size_write(inode, pos + copied);
2010
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002011 if (!PageUptodate(page)) {
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07002012 struct page *head = compound_head(page);
2013 if (PageTransCompound(page)) {
2014 int i;
2015
2016 for (i = 0; i < HPAGE_PMD_NR; i++) {
2017 if (head + i == page)
2018 continue;
2019 clear_highpage(head + i);
2020 flush_dcache_page(head + i);
2021 }
2022 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002023 if (copied < PAGE_SIZE) {
2024 unsigned from = pos & (PAGE_SIZE - 1);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002025 zero_user_segments(page, 0, from,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002026 from + copied, PAGE_SIZE);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002027 }
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07002028 SetPageUptodate(head);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002029 }
Nick Piggin800d15a2007-10-16 01:25:03 -07002030 set_page_dirty(page);
Wu Fengguang6746aff2009-09-16 11:50:14 +02002031 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002032 put_page(page);
Nick Piggin800d15a2007-10-16 01:25:03 -07002033
Nick Piggin800d15a2007-10-16 01:25:03 -07002034 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035}
2036
Al Viro2ba5bbe2014-04-02 20:00:02 -04002037static ssize_t shmem_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
Al Viro6e58e792014-02-03 17:07:03 -05002039 struct file *file = iocb->ki_filp;
2040 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 struct address_space *mapping = inode->i_mapping;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002042 pgoff_t index;
2043 unsigned long offset;
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08002044 enum sgp_type sgp = SGP_READ;
Geert Uytterhoevenf7c1d072014-04-13 20:46:22 +02002045 int error = 0;
Al Virocb66a7a2014-03-04 15:24:06 -05002046 ssize_t retval = 0;
Al Viro6e58e792014-02-03 17:07:03 -05002047 loff_t *ppos = &iocb->ki_pos;
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08002048
2049 /*
2050 * Might this read be for a stacking filesystem? Then when reading
2051 * holes of a sparse file, we actually need to allocate those pages,
2052 * and even mark them dirty, so it cannot exceed the max_blocks limit.
2053 */
Al Viro777eda22014-12-17 04:46:46 -05002054 if (!iter_is_iovec(to))
Hugh Dickins75edd342016-05-19 17:12:44 -07002055 sgp = SGP_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002057 index = *ppos >> PAGE_SHIFT;
2058 offset = *ppos & ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
2060 for (;;) {
2061 struct page *page = NULL;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002062 pgoff_t end_index;
2063 unsigned long nr, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 loff_t i_size = i_size_read(inode);
2065
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002066 end_index = i_size >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 if (index > end_index)
2068 break;
2069 if (index == end_index) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002070 nr = i_size & ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 if (nr <= offset)
2072 break;
2073 }
2074
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07002075 error = shmem_getpage(inode, index, &page, sgp);
Al Viro6e58e792014-02-03 17:07:03 -05002076 if (error) {
2077 if (error == -EINVAL)
2078 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 break;
2080 }
Hugh Dickins75edd342016-05-19 17:12:44 -07002081 if (page) {
2082 if (sgp == SGP_CACHE)
2083 set_page_dirty(page);
Hugh Dickinsd3602442008-02-04 22:28:44 -08002084 unlock_page(page);
Hugh Dickins75edd342016-05-19 17:12:44 -07002085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
2087 /*
2088 * We must evaluate after, since reads (unlike writes)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002089 * are called without i_mutex protection against truncate
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002091 nr = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002093 end_index = i_size >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 if (index == end_index) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002095 nr = i_size & ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 if (nr <= offset) {
2097 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002098 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 break;
2100 }
2101 }
2102 nr -= offset;
2103
2104 if (page) {
2105 /*
2106 * If users can be writing to this page using arbitrary
2107 * virtual addresses, take care about potential aliasing
2108 * before reading the page on the kernel side.
2109 */
2110 if (mapping_writably_mapped(mapping))
2111 flush_dcache_page(page);
2112 /*
2113 * Mark the page accessed if we read the beginning.
2114 */
2115 if (!offset)
2116 mark_page_accessed(page);
Nick Pigginb5810032005-10-29 18:16:12 -07002117 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 page = ZERO_PAGE(0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002119 get_page(page);
Nick Pigginb5810032005-10-29 18:16:12 -07002120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 /*
2123 * Ok, we have the page, and it's up-to-date, so
2124 * now we can copy it to user space...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 */
Al Viro2ba5bbe2014-04-02 20:00:02 -04002126 ret = copy_page_to_iter(page, offset, nr, to);
Al Viro6e58e792014-02-03 17:07:03 -05002127 retval += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 offset += ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002129 index += offset >> PAGE_SHIFT;
2130 offset &= ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002132 put_page(page);
Al Viro2ba5bbe2014-04-02 20:00:02 -04002133 if (!iov_iter_count(to))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 break;
Al Viro6e58e792014-02-03 17:07:03 -05002135 if (ret < nr) {
2136 error = -EFAULT;
2137 break;
2138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 cond_resched();
2140 }
2141
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002142 *ppos = ((loff_t) index << PAGE_SHIFT) + offset;
Al Viro6e58e792014-02-03 17:07:03 -05002143 file_accessed(file);
2144 return retval ? retval : error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145}
2146
Hugh Dickins708e3502011-07-25 17:12:32 -07002147static ssize_t shmem_file_splice_read(struct file *in, loff_t *ppos,
2148 struct pipe_inode_info *pipe, size_t len,
2149 unsigned int flags)
2150{
2151 struct address_space *mapping = in->f_mapping;
Hugh Dickins71f0e072011-07-25 17:12:33 -07002152 struct inode *inode = mapping->host;
Hugh Dickins708e3502011-07-25 17:12:32 -07002153 unsigned int loff, nr_pages, req_pages;
2154 struct page *pages[PIPE_DEF_BUFFERS];
2155 struct partial_page partial[PIPE_DEF_BUFFERS];
2156 struct page *page;
2157 pgoff_t index, end_index;
2158 loff_t isize, left;
2159 int error, page_nr;
2160 struct splice_pipe_desc spd = {
2161 .pages = pages,
2162 .partial = partial,
Eric Dumazet047fe362012-06-12 15:24:40 +02002163 .nr_pages_max = PIPE_DEF_BUFFERS,
Hugh Dickins708e3502011-07-25 17:12:32 -07002164 .flags = flags,
2165 .ops = &page_cache_pipe_buf_ops,
2166 .spd_release = spd_release_page,
2167 };
2168
Hugh Dickins71f0e072011-07-25 17:12:33 -07002169 isize = i_size_read(inode);
Hugh Dickins708e3502011-07-25 17:12:32 -07002170 if (unlikely(*ppos >= isize))
2171 return 0;
2172
2173 left = isize - *ppos;
2174 if (unlikely(left < len))
2175 len = left;
2176
2177 if (splice_grow_spd(pipe, &spd))
2178 return -ENOMEM;
2179
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002180 index = *ppos >> PAGE_SHIFT;
2181 loff = *ppos & ~PAGE_MASK;
2182 req_pages = (len + loff + PAGE_SIZE - 1) >> PAGE_SHIFT;
Al Viroa786c062014-04-11 12:01:03 -04002183 nr_pages = min(req_pages, spd.nr_pages_max);
Hugh Dickins708e3502011-07-25 17:12:32 -07002184
Hugh Dickins708e3502011-07-25 17:12:32 -07002185 spd.nr_pages = find_get_pages_contig(mapping, index,
2186 nr_pages, spd.pages);
2187 index += spd.nr_pages;
Hugh Dickins708e3502011-07-25 17:12:32 -07002188 error = 0;
Hugh Dickins71f0e072011-07-25 17:12:33 -07002189
Hugh Dickins708e3502011-07-25 17:12:32 -07002190 while (spd.nr_pages < nr_pages) {
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07002191 error = shmem_getpage(inode, index, &page, SGP_CACHE);
Hugh Dickins71f0e072011-07-25 17:12:33 -07002192 if (error)
2193 break;
2194 unlock_page(page);
Hugh Dickins708e3502011-07-25 17:12:32 -07002195 spd.pages[spd.nr_pages++] = page;
2196 index++;
2197 }
2198
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002199 index = *ppos >> PAGE_SHIFT;
Hugh Dickins708e3502011-07-25 17:12:32 -07002200 nr_pages = spd.nr_pages;
2201 spd.nr_pages = 0;
Hugh Dickins71f0e072011-07-25 17:12:33 -07002202
Hugh Dickins708e3502011-07-25 17:12:32 -07002203 for (page_nr = 0; page_nr < nr_pages; page_nr++) {
2204 unsigned int this_len;
2205
2206 if (!len)
2207 break;
2208
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002209 this_len = min_t(unsigned long, len, PAGE_SIZE - loff);
Hugh Dickins708e3502011-07-25 17:12:32 -07002210 page = spd.pages[page_nr];
2211
Hugh Dickins71f0e072011-07-25 17:12:33 -07002212 if (!PageUptodate(page) || page->mapping != mapping) {
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07002213 error = shmem_getpage(inode, index, &page, SGP_CACHE);
Hugh Dickins71f0e072011-07-25 17:12:33 -07002214 if (error)
Hugh Dickins708e3502011-07-25 17:12:32 -07002215 break;
Hugh Dickins71f0e072011-07-25 17:12:33 -07002216 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002217 put_page(spd.pages[page_nr]);
Hugh Dickins71f0e072011-07-25 17:12:33 -07002218 spd.pages[page_nr] = page;
Hugh Dickins708e3502011-07-25 17:12:32 -07002219 }
Hugh Dickins71f0e072011-07-25 17:12:33 -07002220
2221 isize = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002222 end_index = (isize - 1) >> PAGE_SHIFT;
Hugh Dickins708e3502011-07-25 17:12:32 -07002223 if (unlikely(!isize || index > end_index))
2224 break;
2225
Hugh Dickins708e3502011-07-25 17:12:32 -07002226 if (end_index == index) {
2227 unsigned int plen;
2228
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002229 plen = ((isize - 1) & ~PAGE_MASK) + 1;
Hugh Dickins708e3502011-07-25 17:12:32 -07002230 if (plen <= loff)
2231 break;
2232
Hugh Dickins708e3502011-07-25 17:12:32 -07002233 this_len = min(this_len, plen - loff);
2234 len = this_len;
2235 }
2236
2237 spd.partial[page_nr].offset = loff;
2238 spd.partial[page_nr].len = this_len;
2239 len -= this_len;
2240 loff = 0;
2241 spd.nr_pages++;
2242 index++;
2243 }
2244
Hugh Dickins708e3502011-07-25 17:12:32 -07002245 while (page_nr < nr_pages)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002246 put_page(spd.pages[page_nr++]);
Hugh Dickins708e3502011-07-25 17:12:32 -07002247
2248 if (spd.nr_pages)
2249 error = splice_to_pipe(pipe, &spd);
2250
Eric Dumazet047fe362012-06-12 15:24:40 +02002251 splice_shrink_spd(&spd);
Hugh Dickins708e3502011-07-25 17:12:32 -07002252
2253 if (error > 0) {
2254 *ppos += error;
2255 file_accessed(in);
2256 }
2257 return error;
2258}
2259
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002260/*
2261 * llseek SEEK_DATA or SEEK_HOLE through the radix_tree.
2262 */
2263static pgoff_t shmem_seek_hole_data(struct address_space *mapping,
Andrew Morton965c8e52012-12-17 15:59:39 -08002264 pgoff_t index, pgoff_t end, int whence)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002265{
2266 struct page *page;
2267 struct pagevec pvec;
2268 pgoff_t indices[PAGEVEC_SIZE];
2269 bool done = false;
2270 int i;
2271
2272 pagevec_init(&pvec, 0);
2273 pvec.nr = 1; /* start small: we may be there already */
2274 while (!done) {
Johannes Weiner0cd61442014-04-03 14:47:46 -07002275 pvec.nr = find_get_entries(mapping, index,
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002276 pvec.nr, pvec.pages, indices);
2277 if (!pvec.nr) {
Andrew Morton965c8e52012-12-17 15:59:39 -08002278 if (whence == SEEK_DATA)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002279 index = end;
2280 break;
2281 }
2282 for (i = 0; i < pvec.nr; i++, index++) {
2283 if (index < indices[i]) {
Andrew Morton965c8e52012-12-17 15:59:39 -08002284 if (whence == SEEK_HOLE) {
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002285 done = true;
2286 break;
2287 }
2288 index = indices[i];
2289 }
2290 page = pvec.pages[i];
2291 if (page && !radix_tree_exceptional_entry(page)) {
2292 if (!PageUptodate(page))
2293 page = NULL;
2294 }
2295 if (index >= end ||
Andrew Morton965c8e52012-12-17 15:59:39 -08002296 (page && whence == SEEK_DATA) ||
2297 (!page && whence == SEEK_HOLE)) {
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002298 done = true;
2299 break;
2300 }
2301 }
Johannes Weiner0cd61442014-04-03 14:47:46 -07002302 pagevec_remove_exceptionals(&pvec);
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002303 pagevec_release(&pvec);
2304 pvec.nr = PAGEVEC_SIZE;
2305 cond_resched();
2306 }
2307 return index;
2308}
2309
Andrew Morton965c8e52012-12-17 15:59:39 -08002310static loff_t shmem_file_llseek(struct file *file, loff_t offset, int whence)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002311{
2312 struct address_space *mapping = file->f_mapping;
2313 struct inode *inode = mapping->host;
2314 pgoff_t start, end;
2315 loff_t new_offset;
2316
Andrew Morton965c8e52012-12-17 15:59:39 -08002317 if (whence != SEEK_DATA && whence != SEEK_HOLE)
2318 return generic_file_llseek_size(file, offset, whence,
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002319 MAX_LFS_FILESIZE, i_size_read(inode));
Al Viro59551022016-01-22 15:40:57 -05002320 inode_lock(inode);
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002321 /* We're holding i_mutex so we can access i_size directly */
2322
2323 if (offset < 0)
2324 offset = -EINVAL;
2325 else if (offset >= inode->i_size)
2326 offset = -ENXIO;
2327 else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002328 start = offset >> PAGE_SHIFT;
2329 end = (inode->i_size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Andrew Morton965c8e52012-12-17 15:59:39 -08002330 new_offset = shmem_seek_hole_data(mapping, start, end, whence);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002331 new_offset <<= PAGE_SHIFT;
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002332 if (new_offset > offset) {
2333 if (new_offset < inode->i_size)
2334 offset = new_offset;
Andrew Morton965c8e52012-12-17 15:59:39 -08002335 else if (whence == SEEK_DATA)
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002336 offset = -ENXIO;
2337 else
2338 offset = inode->i_size;
2339 }
2340 }
2341
Hugh Dickins387aae62013-08-04 11:30:25 -07002342 if (offset >= 0)
2343 offset = vfs_setpos(file, offset, MAX_LFS_FILESIZE);
Al Viro59551022016-01-22 15:40:57 -05002344 inode_unlock(inode);
Hugh Dickins220f2ac2012-12-12 13:52:21 -08002345 return offset;
2346}
2347
David Herrmann05f65b52014-08-08 14:25:36 -07002348/*
2349 * We need a tag: a new tag would expand every radix_tree_node by 8 bytes,
2350 * so reuse a tag which we firmly believe is never set or cleared on shmem.
2351 */
2352#define SHMEM_TAG_PINNED PAGECACHE_TAG_TOWRITE
2353#define LAST_SCAN 4 /* about 150ms max */
2354
2355static void shmem_tag_pins(struct address_space *mapping)
2356{
2357 struct radix_tree_iter iter;
2358 void **slot;
2359 pgoff_t start;
2360 struct page *page;
2361
2362 lru_add_drain();
2363 start = 0;
2364 rcu_read_lock();
2365
David Herrmann05f65b52014-08-08 14:25:36 -07002366 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
2367 page = radix_tree_deref_slot(slot);
2368 if (!page || radix_tree_exception(page)) {
Matthew Wilcox2cf938a2016-03-17 14:22:03 -07002369 if (radix_tree_deref_retry(page)) {
2370 slot = radix_tree_iter_retry(&iter);
2371 continue;
2372 }
David Herrmann05f65b52014-08-08 14:25:36 -07002373 } else if (page_count(page) - page_mapcount(page) > 1) {
2374 spin_lock_irq(&mapping->tree_lock);
2375 radix_tree_tag_set(&mapping->page_tree, iter.index,
2376 SHMEM_TAG_PINNED);
2377 spin_unlock_irq(&mapping->tree_lock);
2378 }
2379
2380 if (need_resched()) {
2381 cond_resched_rcu();
Matthew Wilcox71650922016-03-17 14:22:06 -07002382 slot = radix_tree_iter_next(&iter);
David Herrmann05f65b52014-08-08 14:25:36 -07002383 }
2384 }
2385 rcu_read_unlock();
2386}
2387
2388/*
2389 * Setting SEAL_WRITE requires us to verify there's no pending writer. However,
2390 * via get_user_pages(), drivers might have some pending I/O without any active
2391 * user-space mappings (eg., direct-IO, AIO). Therefore, we look at all pages
2392 * and see whether it has an elevated ref-count. If so, we tag them and wait for
2393 * them to be dropped.
2394 * The caller must guarantee that no new user will acquire writable references
2395 * to those pages to avoid races.
2396 */
David Herrmann40e041a2014-08-08 14:25:27 -07002397static int shmem_wait_for_pins(struct address_space *mapping)
2398{
David Herrmann05f65b52014-08-08 14:25:36 -07002399 struct radix_tree_iter iter;
2400 void **slot;
2401 pgoff_t start;
2402 struct page *page;
2403 int error, scan;
2404
2405 shmem_tag_pins(mapping);
2406
2407 error = 0;
2408 for (scan = 0; scan <= LAST_SCAN; scan++) {
2409 if (!radix_tree_tagged(&mapping->page_tree, SHMEM_TAG_PINNED))
2410 break;
2411
2412 if (!scan)
2413 lru_add_drain_all();
2414 else if (schedule_timeout_killable((HZ << scan) / 200))
2415 scan = LAST_SCAN;
2416
2417 start = 0;
2418 rcu_read_lock();
David Herrmann05f65b52014-08-08 14:25:36 -07002419 radix_tree_for_each_tagged(slot, &mapping->page_tree, &iter,
2420 start, SHMEM_TAG_PINNED) {
2421
2422 page = radix_tree_deref_slot(slot);
2423 if (radix_tree_exception(page)) {
Matthew Wilcox2cf938a2016-03-17 14:22:03 -07002424 if (radix_tree_deref_retry(page)) {
2425 slot = radix_tree_iter_retry(&iter);
2426 continue;
2427 }
David Herrmann05f65b52014-08-08 14:25:36 -07002428
2429 page = NULL;
2430 }
2431
2432 if (page &&
2433 page_count(page) - page_mapcount(page) != 1) {
2434 if (scan < LAST_SCAN)
2435 goto continue_resched;
2436
2437 /*
2438 * On the last scan, we clean up all those tags
2439 * we inserted; but make a note that we still
2440 * found pages pinned.
2441 */
2442 error = -EBUSY;
2443 }
2444
2445 spin_lock_irq(&mapping->tree_lock);
2446 radix_tree_tag_clear(&mapping->page_tree,
2447 iter.index, SHMEM_TAG_PINNED);
2448 spin_unlock_irq(&mapping->tree_lock);
2449continue_resched:
2450 if (need_resched()) {
2451 cond_resched_rcu();
Matthew Wilcox71650922016-03-17 14:22:06 -07002452 slot = radix_tree_iter_next(&iter);
David Herrmann05f65b52014-08-08 14:25:36 -07002453 }
2454 }
2455 rcu_read_unlock();
2456 }
2457
2458 return error;
David Herrmann40e041a2014-08-08 14:25:27 -07002459}
2460
2461#define F_ALL_SEALS (F_SEAL_SEAL | \
2462 F_SEAL_SHRINK | \
2463 F_SEAL_GROW | \
2464 F_SEAL_WRITE)
2465
2466int shmem_add_seals(struct file *file, unsigned int seals)
2467{
2468 struct inode *inode = file_inode(file);
2469 struct shmem_inode_info *info = SHMEM_I(inode);
2470 int error;
2471
2472 /*
2473 * SEALING
2474 * Sealing allows multiple parties to share a shmem-file but restrict
2475 * access to a specific subset of file operations. Seals can only be
2476 * added, but never removed. This way, mutually untrusted parties can
2477 * share common memory regions with a well-defined policy. A malicious
2478 * peer can thus never perform unwanted operations on a shared object.
2479 *
2480 * Seals are only supported on special shmem-files and always affect
2481 * the whole underlying inode. Once a seal is set, it may prevent some
2482 * kinds of access to the file. Currently, the following seals are
2483 * defined:
2484 * SEAL_SEAL: Prevent further seals from being set on this file
2485 * SEAL_SHRINK: Prevent the file from shrinking
2486 * SEAL_GROW: Prevent the file from growing
2487 * SEAL_WRITE: Prevent write access to the file
2488 *
2489 * As we don't require any trust relationship between two parties, we
2490 * must prevent seals from being removed. Therefore, sealing a file
2491 * only adds a given set of seals to the file, it never touches
2492 * existing seals. Furthermore, the "setting seals"-operation can be
2493 * sealed itself, which basically prevents any further seal from being
2494 * added.
2495 *
2496 * Semantics of sealing are only defined on volatile files. Only
2497 * anonymous shmem files support sealing. More importantly, seals are
2498 * never written to disk. Therefore, there's no plan to support it on
2499 * other file types.
2500 */
2501
2502 if (file->f_op != &shmem_file_operations)
2503 return -EINVAL;
2504 if (!(file->f_mode & FMODE_WRITE))
2505 return -EPERM;
2506 if (seals & ~(unsigned int)F_ALL_SEALS)
2507 return -EINVAL;
2508
Al Viro59551022016-01-22 15:40:57 -05002509 inode_lock(inode);
David Herrmann40e041a2014-08-08 14:25:27 -07002510
2511 if (info->seals & F_SEAL_SEAL) {
2512 error = -EPERM;
2513 goto unlock;
2514 }
2515
2516 if ((seals & F_SEAL_WRITE) && !(info->seals & F_SEAL_WRITE)) {
2517 error = mapping_deny_writable(file->f_mapping);
2518 if (error)
2519 goto unlock;
2520
2521 error = shmem_wait_for_pins(file->f_mapping);
2522 if (error) {
2523 mapping_allow_writable(file->f_mapping);
2524 goto unlock;
2525 }
2526 }
2527
2528 info->seals |= seals;
2529 error = 0;
2530
2531unlock:
Al Viro59551022016-01-22 15:40:57 -05002532 inode_unlock(inode);
David Herrmann40e041a2014-08-08 14:25:27 -07002533 return error;
2534}
2535EXPORT_SYMBOL_GPL(shmem_add_seals);
2536
2537int shmem_get_seals(struct file *file)
2538{
2539 if (file->f_op != &shmem_file_operations)
2540 return -EINVAL;
2541
2542 return SHMEM_I(file_inode(file))->seals;
2543}
2544EXPORT_SYMBOL_GPL(shmem_get_seals);
2545
2546long shmem_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
2547{
2548 long error;
2549
2550 switch (cmd) {
2551 case F_ADD_SEALS:
2552 /* disallow upper 32bit */
2553 if (arg > UINT_MAX)
2554 return -EINVAL;
2555
2556 error = shmem_add_seals(file, arg);
2557 break;
2558 case F_GET_SEALS:
2559 error = shmem_get_seals(file);
2560 break;
2561 default:
2562 error = -EINVAL;
2563 break;
2564 }
2565
2566 return error;
2567}
2568
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002569static long shmem_fallocate(struct file *file, int mode, loff_t offset,
2570 loff_t len)
2571{
Al Viro496ad9a2013-01-23 17:07:38 -05002572 struct inode *inode = file_inode(file);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002573 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
David Herrmann40e041a2014-08-08 14:25:27 -07002574 struct shmem_inode_info *info = SHMEM_I(inode);
Hugh Dickins1aac1402012-05-29 15:06:42 -07002575 struct shmem_falloc shmem_falloc;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002576 pgoff_t start, index, end;
2577 int error;
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002578
Hugh Dickins13ace4d2014-06-23 13:22:03 -07002579 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2580 return -EOPNOTSUPP;
2581
Al Viro59551022016-01-22 15:40:57 -05002582 inode_lock(inode);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002583
2584 if (mode & FALLOC_FL_PUNCH_HOLE) {
2585 struct address_space *mapping = file->f_mapping;
2586 loff_t unmap_start = round_up(offset, PAGE_SIZE);
2587 loff_t unmap_end = round_down(offset + len, PAGE_SIZE) - 1;
Hugh Dickins8e205f72014-07-23 14:00:10 -07002588 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(shmem_falloc_waitq);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002589
David Herrmann40e041a2014-08-08 14:25:27 -07002590 /* protected by i_mutex */
2591 if (info->seals & F_SEAL_WRITE) {
2592 error = -EPERM;
2593 goto out;
2594 }
2595
Hugh Dickins8e205f72014-07-23 14:00:10 -07002596 shmem_falloc.waitq = &shmem_falloc_waitq;
Hugh Dickinsf00cdc62014-06-23 13:22:06 -07002597 shmem_falloc.start = unmap_start >> PAGE_SHIFT;
2598 shmem_falloc.next = (unmap_end + 1) >> PAGE_SHIFT;
2599 spin_lock(&inode->i_lock);
2600 inode->i_private = &shmem_falloc;
2601 spin_unlock(&inode->i_lock);
2602
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002603 if ((u64)unmap_end > (u64)unmap_start)
2604 unmap_mapping_range(mapping, unmap_start,
2605 1 + unmap_end - unmap_start, 0);
2606 shmem_truncate_range(inode, offset, offset + len - 1);
2607 /* No need to unmap again: hole-punching leaves COWed pages */
Hugh Dickins8e205f72014-07-23 14:00:10 -07002608
2609 spin_lock(&inode->i_lock);
2610 inode->i_private = NULL;
2611 wake_up_all(&shmem_falloc_waitq);
2612 spin_unlock(&inode->i_lock);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002613 error = 0;
Hugh Dickins8e205f72014-07-23 14:00:10 -07002614 goto out;
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002615 }
2616
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002617 /* We need to check rlimit even when FALLOC_FL_KEEP_SIZE */
2618 error = inode_newsize_ok(inode, offset + len);
2619 if (error)
2620 goto out;
2621
David Herrmann40e041a2014-08-08 14:25:27 -07002622 if ((info->seals & F_SEAL_GROW) && offset + len > inode->i_size) {
2623 error = -EPERM;
2624 goto out;
2625 }
2626
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002627 start = offset >> PAGE_SHIFT;
2628 end = (offset + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002629 /* Try to avoid a swapstorm if len is impossible to satisfy */
2630 if (sbinfo->max_blocks && end - start > sbinfo->max_blocks) {
2631 error = -ENOSPC;
2632 goto out;
2633 }
2634
Hugh Dickins8e205f72014-07-23 14:00:10 -07002635 shmem_falloc.waitq = NULL;
Hugh Dickins1aac1402012-05-29 15:06:42 -07002636 shmem_falloc.start = start;
2637 shmem_falloc.next = start;
2638 shmem_falloc.nr_falloced = 0;
2639 shmem_falloc.nr_unswapped = 0;
2640 spin_lock(&inode->i_lock);
2641 inode->i_private = &shmem_falloc;
2642 spin_unlock(&inode->i_lock);
2643
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002644 for (index = start; index < end; index++) {
2645 struct page *page;
2646
2647 /*
2648 * Good, the fallocate(2) manpage permits EINTR: we may have
2649 * been interrupted because we are using up too much memory.
2650 */
2651 if (signal_pending(current))
2652 error = -EINTR;
Hugh Dickins1aac1402012-05-29 15:06:42 -07002653 else if (shmem_falloc.nr_unswapped > shmem_falloc.nr_falloced)
2654 error = -ENOMEM;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002655 else
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07002656 error = shmem_getpage(inode, index, &page, SGP_FALLOC);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002657 if (error) {
Hugh Dickins1635f6a2012-05-29 15:06:42 -07002658 /* Remove the !PageUptodate pages we added */
Hugh Dickins7f556562016-07-10 16:46:32 -07002659 if (index > start) {
2660 shmem_undo_range(inode,
2661 (loff_t)start << PAGE_SHIFT,
2662 ((loff_t)index << PAGE_SHIFT) - 1, true);
2663 }
Hugh Dickins1aac1402012-05-29 15:06:42 -07002664 goto undone;
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002665 }
2666
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002667 /*
Hugh Dickins1aac1402012-05-29 15:06:42 -07002668 * Inform shmem_writepage() how far we have reached.
2669 * No need for lock or barrier: we have the page lock.
2670 */
2671 shmem_falloc.next++;
2672 if (!PageUptodate(page))
2673 shmem_falloc.nr_falloced++;
2674
2675 /*
Hugh Dickins1635f6a2012-05-29 15:06:42 -07002676 * If !PageUptodate, leave it that way so that freeable pages
2677 * can be recognized if we need to rollback on error later.
2678 * But set_page_dirty so that memory pressure will swap rather
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002679 * than free the pages we are allocating (and SGP_CACHE pages
2680 * might still be clean: we now need to mark those dirty too).
2681 */
2682 set_page_dirty(page);
2683 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002684 put_page(page);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002685 cond_resched();
2686 }
2687
2688 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size)
2689 i_size_write(inode, offset + len);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002690 inode->i_ctime = CURRENT_TIME;
Hugh Dickins1aac1402012-05-29 15:06:42 -07002691undone:
2692 spin_lock(&inode->i_lock);
2693 inode->i_private = NULL;
2694 spin_unlock(&inode->i_lock);
Hugh Dickinse2d12e22012-05-29 15:06:41 -07002695out:
Al Viro59551022016-01-22 15:40:57 -05002696 inode_unlock(inode);
Hugh Dickins83e4fa92012-05-29 15:06:40 -07002697 return error;
2698}
2699
David Howells726c3342006-06-23 02:02:58 -07002700static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701{
David Howells726c3342006-06-23 02:02:58 -07002702 struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
2704 buf->f_type = TMPFS_MAGIC;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002705 buf->f_bsize = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 buf->f_namelen = NAME_MAX;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002707 if (sbinfo->max_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 buf->f_blocks = sbinfo->max_blocks;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07002709 buf->f_bavail =
2710 buf->f_bfree = sbinfo->max_blocks -
2711 percpu_counter_sum(&sbinfo->used_blocks);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002712 }
2713 if (sbinfo->max_inodes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 buf->f_files = sbinfo->max_inodes;
2715 buf->f_ffree = sbinfo->free_inodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 }
2717 /* else leave those fields 0 like simple_statfs */
2718 return 0;
2719}
2720
2721/*
2722 * File creation. Allocate an inode, and we're done..
2723 */
2724static int
Al Viro1a67aaf2011-07-26 01:52:52 -04002725shmem_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726{
Hugh Dickins0b0a0802009-02-24 20:51:52 +00002727 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 int error = -ENOSPC;
2729
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002730 inode = shmem_get_inode(dir->i_sb, dir, mode, dev, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 if (inode) {
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002732 error = simple_acl_create(dir, inode);
2733 if (error)
2734 goto out_iput;
Eric Paris2a7dba32011-02-01 11:05:39 -05002735 error = security_inode_init_security(inode, dir,
Mimi Zohar9d8f13b2011-06-06 15:29:25 -04002736 &dentry->d_name,
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07002737 shmem_initxattrs, NULL);
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002738 if (error && error != -EOPNOTSUPP)
2739 goto out_iput;
Mimi Zohar37ec43c2013-04-14 09:21:47 -04002740
Al Viro718deb62009-12-16 19:35:36 -05002741 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 dir->i_size += BOGO_DIRENT_SIZE;
2743 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
2744 d_instantiate(dentry, inode);
2745 dget(dentry); /* Extra count - pin the dentry in core */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 }
2747 return error;
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002748out_iput:
2749 iput(inode);
2750 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751}
2752
Al Viro60545d02013-06-07 01:20:27 -04002753static int
2754shmem_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
2755{
2756 struct inode *inode;
2757 int error = -ENOSPC;
2758
2759 inode = shmem_get_inode(dir->i_sb, dir, mode, 0, VM_NORESERVE);
2760 if (inode) {
2761 error = security_inode_init_security(inode, dir,
2762 NULL,
2763 shmem_initxattrs, NULL);
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002764 if (error && error != -EOPNOTSUPP)
2765 goto out_iput;
2766 error = simple_acl_create(dir, inode);
2767 if (error)
2768 goto out_iput;
Al Viro60545d02013-06-07 01:20:27 -04002769 d_tmpfile(dentry, inode);
2770 }
2771 return error;
Christoph Hellwigfeda8212013-12-20 05:16:54 -08002772out_iput:
2773 iput(inode);
2774 return error;
Al Viro60545d02013-06-07 01:20:27 -04002775}
2776
Al Viro18bb1db2011-07-26 01:41:39 -04002777static int shmem_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778{
2779 int error;
2780
2781 if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
2782 return error;
Dave Hansend8c76e62006-09-30 23:29:04 -07002783 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 return 0;
2785}
2786
Al Viro4acdaf22011-07-26 01:42:34 -04002787static int shmem_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -04002788 bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789{
2790 return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
2791}
2792
2793/*
2794 * Link a file..
2795 */
2796static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
2797{
David Howells75c3cfa2015-03-17 22:26:12 +00002798 struct inode *inode = d_inode(old_dentry);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002799 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
2801 /*
2802 * No ordinary (disk based) filesystem counts links as inodes;
2803 * but each new link needs a new dentry, pinning lowmem, and
2804 * tmpfs dentries cannot be pruned until they are unlinked.
2805 */
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002806 ret = shmem_reserve_inode(inode->i_sb);
2807 if (ret)
2808 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
2810 dir->i_size += BOGO_DIRENT_SIZE;
2811 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansend8c76e62006-09-30 23:29:04 -07002812 inc_nlink(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04002813 ihold(inode); /* New dentry reference */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 dget(dentry); /* Extra pinning count for the created dentry */
2815 d_instantiate(dentry, inode);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002816out:
2817 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818}
2819
2820static int shmem_unlink(struct inode *dir, struct dentry *dentry)
2821{
David Howells75c3cfa2015-03-17 22:26:12 +00002822 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08002824 if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode))
2825 shmem_free_inode(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
2827 dir->i_size -= BOGO_DIRENT_SIZE;
2828 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002829 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 dput(dentry); /* Undo the count from "create" - this does all the work */
2831 return 0;
2832}
2833
2834static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
2835{
2836 if (!simple_empty(dentry))
2837 return -ENOTEMPTY;
2838
David Howells75c3cfa2015-03-17 22:26:12 +00002839 drop_nlink(d_inode(dentry));
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002840 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 return shmem_unlink(dir, dentry);
2842}
2843
Miklos Szeredi37456772014-07-23 15:15:34 +02002844static int shmem_exchange(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
2845{
David Howellse36cb0b2015-01-29 12:02:35 +00002846 bool old_is_dir = d_is_dir(old_dentry);
2847 bool new_is_dir = d_is_dir(new_dentry);
Miklos Szeredi37456772014-07-23 15:15:34 +02002848
2849 if (old_dir != new_dir && old_is_dir != new_is_dir) {
2850 if (old_is_dir) {
2851 drop_nlink(old_dir);
2852 inc_nlink(new_dir);
2853 } else {
2854 drop_nlink(new_dir);
2855 inc_nlink(old_dir);
2856 }
2857 }
2858 old_dir->i_ctime = old_dir->i_mtime =
2859 new_dir->i_ctime = new_dir->i_mtime =
David Howells75c3cfa2015-03-17 22:26:12 +00002860 d_inode(old_dentry)->i_ctime =
2861 d_inode(new_dentry)->i_ctime = CURRENT_TIME;
Miklos Szeredi37456772014-07-23 15:15:34 +02002862
2863 return 0;
2864}
2865
Miklos Szeredi46fdb792014-10-24 00:14:37 +02002866static int shmem_whiteout(struct inode *old_dir, struct dentry *old_dentry)
2867{
2868 struct dentry *whiteout;
2869 int error;
2870
2871 whiteout = d_alloc(old_dentry->d_parent, &old_dentry->d_name);
2872 if (!whiteout)
2873 return -ENOMEM;
2874
2875 error = shmem_mknod(old_dir, whiteout,
2876 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
2877 dput(whiteout);
2878 if (error)
2879 return error;
2880
2881 /*
2882 * Cheat and hash the whiteout while the old dentry is still in
2883 * place, instead of playing games with FS_RENAME_DOES_D_MOVE.
2884 *
2885 * d_lookup() will consistently find one of them at this point,
2886 * not sure which one, but that isn't even important.
2887 */
2888 d_rehash(whiteout);
2889 return 0;
2890}
2891
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892/*
2893 * The VFS layer already does all the dentry stuff for rename,
2894 * we just have to decrement the usage count for the target if
2895 * it exists so that the VFS layer correctly free's it when it
2896 * gets overwritten.
2897 */
Miklos Szeredi3b69ff52014-07-23 15:15:33 +02002898static 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 -07002899{
David Howells75c3cfa2015-03-17 22:26:12 +00002900 struct inode *inode = d_inode(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 int they_are_dirs = S_ISDIR(inode->i_mode);
2902
Miklos Szeredi46fdb792014-10-24 00:14:37 +02002903 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi3b69ff52014-07-23 15:15:33 +02002904 return -EINVAL;
2905
Miklos Szeredi37456772014-07-23 15:15:34 +02002906 if (flags & RENAME_EXCHANGE)
2907 return shmem_exchange(old_dir, old_dentry, new_dir, new_dentry);
2908
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 if (!simple_empty(new_dentry))
2910 return -ENOTEMPTY;
2911
Miklos Szeredi46fdb792014-10-24 00:14:37 +02002912 if (flags & RENAME_WHITEOUT) {
2913 int error;
2914
2915 error = shmem_whiteout(old_dir, old_dentry);
2916 if (error)
2917 return error;
2918 }
2919
David Howells75c3cfa2015-03-17 22:26:12 +00002920 if (d_really_is_positive(new_dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 (void) shmem_unlink(new_dir, new_dentry);
Miklos Szeredib9280952014-09-24 17:56:17 +02002922 if (they_are_dirs) {
David Howells75c3cfa2015-03-17 22:26:12 +00002923 drop_nlink(d_inode(new_dentry));
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002924 drop_nlink(old_dir);
Miklos Szeredib9280952014-09-24 17:56:17 +02002925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 } else if (they_are_dirs) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002927 drop_nlink(old_dir);
Dave Hansend8c76e62006-09-30 23:29:04 -07002928 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 }
2930
2931 old_dir->i_size -= BOGO_DIRENT_SIZE;
2932 new_dir->i_size += BOGO_DIRENT_SIZE;
2933 old_dir->i_ctime = old_dir->i_mtime =
2934 new_dir->i_ctime = new_dir->i_mtime =
2935 inode->i_ctime = CURRENT_TIME;
2936 return 0;
2937}
2938
2939static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
2940{
2941 int error;
2942 int len;
2943 struct inode *inode;
Hugh Dickins9276aad2011-07-25 17:12:34 -07002944 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 struct shmem_inode_info *info;
2946
2947 len = strlen(symname) + 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002948 if (len > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 return -ENAMETOOLONG;
2950
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03002951 inode = shmem_get_inode(dir->i_sb, dir, S_IFLNK|S_IRWXUGO, 0, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 if (!inode)
2953 return -ENOSPC;
2954
Mimi Zohar9d8f13b2011-06-06 15:29:25 -04002955 error = security_inode_init_security(inode, dir, &dentry->d_name,
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07002956 shmem_initxattrs, NULL);
Stephen Smalley570bc1c2005-09-09 13:01:43 -07002957 if (error) {
2958 if (error != -EOPNOTSUPP) {
2959 iput(inode);
2960 return error;
2961 }
2962 error = 0;
2963 }
2964
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 info = SHMEM_I(inode);
2966 inode->i_size = len-1;
Hugh Dickins69f07ec2011-08-03 16:21:26 -07002967 if (len <= SHORT_SYMLINK_LEN) {
Al Viro3ed47db2016-01-22 18:08:52 -05002968 inode->i_link = kmemdup(symname, len, GFP_KERNEL);
2969 if (!inode->i_link) {
Hugh Dickins69f07ec2011-08-03 16:21:26 -07002970 iput(inode);
2971 return -ENOMEM;
2972 }
2973 inode->i_op = &shmem_short_symlink_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 } else {
Al Viroe8ecde22016-01-14 17:52:59 -05002975 inode_nohighmem(inode);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07002976 error = shmem_getpage(inode, 0, &page, SGP_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 if (error) {
2978 iput(inode);
2979 return error;
2980 }
Hugh Dickins14fcc232008-07-28 15:46:19 -07002981 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 inode->i_op = &shmem_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05002983 memcpy(page_address(page), symname, len);
Hugh Dickinsec9516f2012-05-29 15:06:39 -07002984 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 set_page_dirty(page);
Wu Fengguang6746aff2009-09-16 11:50:14 +02002986 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002987 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 dir->i_size += BOGO_DIRENT_SIZE;
2990 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
2991 d_instantiate(dentry, inode);
2992 dget(dentry);
2993 return 0;
2994}
2995
Al Virofceef392015-12-29 15:58:39 -05002996static void shmem_put_link(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997{
Al Virofceef392015-12-29 15:58:39 -05002998 mark_page_accessed(arg);
2999 put_page(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000}
3001
Al Viro6b255392015-11-17 10:20:54 -05003002static const char *shmem_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05003003 struct inode *inode,
3004 struct delayed_call *done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 struct page *page = NULL;
Al Viro6b255392015-11-17 10:20:54 -05003007 int error;
Al Viro6a6c9902015-11-17 10:54:32 -05003008 if (!dentry) {
3009 page = find_get_page(inode->i_mapping, 0);
3010 if (!page)
3011 return ERR_PTR(-ECHILD);
3012 if (!PageUptodate(page)) {
3013 put_page(page);
3014 return ERR_PTR(-ECHILD);
3015 }
3016 } else {
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07003017 error = shmem_getpage(inode, 0, &page, SGP_READ);
Al Viro6a6c9902015-11-17 10:54:32 -05003018 if (error)
3019 return ERR_PTR(error);
3020 unlock_page(page);
3021 }
Al Virofceef392015-12-29 15:58:39 -05003022 set_delayed_call(done, shmem_put_link, page);
Al Viro21fc61c2015-11-17 01:07:57 -05003023 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024}
3025
Eric Parisb09e0fa2011-05-24 17:12:39 -07003026#ifdef CONFIG_TMPFS_XATTR
3027/*
3028 * Superblocks without xattr inode operations may get some security.* xattr
3029 * support from the LSM "for free". As soon as we have any other xattrs
3030 * like ACLs, we also need to implement the security.* handlers at
3031 * filesystem level, though.
3032 */
3033
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003034/*
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003035 * Callback for security_inode_init_security() for acquiring xattrs.
3036 */
3037static int shmem_initxattrs(struct inode *inode,
3038 const struct xattr *xattr_array,
3039 void *fs_info)
3040{
3041 struct shmem_inode_info *info = SHMEM_I(inode);
3042 const struct xattr *xattr;
Aristeu Rozanski38f38652012-08-23 16:53:28 -04003043 struct simple_xattr *new_xattr;
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003044 size_t len;
3045
3046 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
Aristeu Rozanski38f38652012-08-23 16:53:28 -04003047 new_xattr = simple_xattr_alloc(xattr->value, xattr->value_len);
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003048 if (!new_xattr)
3049 return -ENOMEM;
3050
3051 len = strlen(xattr->name) + 1;
3052 new_xattr->name = kmalloc(XATTR_SECURITY_PREFIX_LEN + len,
3053 GFP_KERNEL);
3054 if (!new_xattr->name) {
3055 kfree(new_xattr);
3056 return -ENOMEM;
3057 }
3058
3059 memcpy(new_xattr->name, XATTR_SECURITY_PREFIX,
3060 XATTR_SECURITY_PREFIX_LEN);
3061 memcpy(new_xattr->name + XATTR_SECURITY_PREFIX_LEN,
3062 xattr->name, len);
3063
Aristeu Rozanski38f38652012-08-23 16:53:28 -04003064 simple_xattr_list_add(&info->xattrs, new_xattr);
Jarkko Sakkinen6d9d88d2012-03-21 16:34:05 -07003065 }
3066
3067 return 0;
3068}
3069
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003070static int shmem_xattr_handler_get(const struct xattr_handler *handler,
Al Virob2968212016-04-10 20:48:24 -04003071 struct dentry *unused, struct inode *inode,
3072 const char *name, void *buffer, size_t size)
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003073{
Al Virob2968212016-04-10 20:48:24 -04003074 struct shmem_inode_info *info = SHMEM_I(inode);
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003075
3076 name = xattr_full_name(handler, name);
3077 return simple_xattr_get(&info->xattrs, name, buffer, size);
3078}
3079
3080static int shmem_xattr_handler_set(const struct xattr_handler *handler,
Al Viro59301222016-05-27 10:19:30 -04003081 struct dentry *unused, struct inode *inode,
3082 const char *name, const void *value,
3083 size_t size, int flags)
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003084{
Al Viro59301222016-05-27 10:19:30 -04003085 struct shmem_inode_info *info = SHMEM_I(inode);
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003086
3087 name = xattr_full_name(handler, name);
3088 return simple_xattr_set(&info->xattrs, name, value, size, flags);
3089}
3090
3091static const struct xattr_handler shmem_security_xattr_handler = {
3092 .prefix = XATTR_SECURITY_PREFIX,
3093 .get = shmem_xattr_handler_get,
3094 .set = shmem_xattr_handler_set,
3095};
3096
3097static const struct xattr_handler shmem_trusted_xattr_handler = {
3098 .prefix = XATTR_TRUSTED_PREFIX,
3099 .get = shmem_xattr_handler_get,
3100 .set = shmem_xattr_handler_set,
3101};
3102
Eric Parisb09e0fa2011-05-24 17:12:39 -07003103static const struct xattr_handler *shmem_xattr_handlers[] = {
3104#ifdef CONFIG_TMPFS_POSIX_ACL
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003105 &posix_acl_access_xattr_handler,
3106 &posix_acl_default_xattr_handler,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003107#endif
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003108 &shmem_security_xattr_handler,
3109 &shmem_trusted_xattr_handler,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003110 NULL
3111};
3112
Eric Parisb09e0fa2011-05-24 17:12:39 -07003113static ssize_t shmem_listxattr(struct dentry *dentry, char *buffer, size_t size)
3114{
David Howells75c3cfa2015-03-17 22:26:12 +00003115 struct shmem_inode_info *info = SHMEM_I(d_inode(dentry));
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01003116 return simple_xattr_list(d_inode(dentry), &info->xattrs, buffer, size);
Eric Parisb09e0fa2011-05-24 17:12:39 -07003117}
3118#endif /* CONFIG_TMPFS_XATTR */
3119
Hugh Dickins69f07ec2011-08-03 16:21:26 -07003120static const struct inode_operations shmem_short_symlink_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 .readlink = generic_readlink,
Al Viro6b255392015-11-17 10:20:54 -05003122 .get_link = simple_get_link,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003123#ifdef CONFIG_TMPFS_XATTR
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003124 .setxattr = generic_setxattr,
3125 .getxattr = generic_getxattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003126 .listxattr = shmem_listxattr,
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003127 .removexattr = generic_removexattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003128#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129};
3130
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003131static const struct inode_operations shmem_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 .readlink = generic_readlink,
Al Viro6b255392015-11-17 10:20:54 -05003133 .get_link = shmem_get_link,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003134#ifdef CONFIG_TMPFS_XATTR
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003135 .setxattr = generic_setxattr,
3136 .getxattr = generic_getxattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003137 .listxattr = shmem_listxattr,
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003138 .removexattr = generic_removexattr,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003139#endif
Eric Parisb09e0fa2011-05-24 17:12:39 -07003140};
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003141
David M. Grimes91828a42006-10-17 00:09:45 -07003142static struct dentry *shmem_get_parent(struct dentry *child)
3143{
3144 return ERR_PTR(-ESTALE);
3145}
3146
3147static int shmem_match(struct inode *ino, void *vfh)
3148{
3149 __u32 *fh = vfh;
3150 __u64 inum = fh[2];
3151 inum = (inum << 32) | fh[1];
3152 return ino->i_ino == inum && fh[0] == ino->i_generation;
3153}
3154
Christoph Hellwig480b1162007-10-21 16:42:13 -07003155static struct dentry *shmem_fh_to_dentry(struct super_block *sb,
3156 struct fid *fid, int fh_len, int fh_type)
David M. Grimes91828a42006-10-17 00:09:45 -07003157{
David M. Grimes91828a42006-10-17 00:09:45 -07003158 struct inode *inode;
Christoph Hellwig480b1162007-10-21 16:42:13 -07003159 struct dentry *dentry = NULL;
Hugh Dickins35c2a7f2012-10-07 20:32:51 -07003160 u64 inum;
David M. Grimes91828a42006-10-17 00:09:45 -07003161
Christoph Hellwig480b1162007-10-21 16:42:13 -07003162 if (fh_len < 3)
3163 return NULL;
3164
Hugh Dickins35c2a7f2012-10-07 20:32:51 -07003165 inum = fid->raw[2];
3166 inum = (inum << 32) | fid->raw[1];
3167
Christoph Hellwig480b1162007-10-21 16:42:13 -07003168 inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]),
3169 shmem_match, fid->raw);
David M. Grimes91828a42006-10-17 00:09:45 -07003170 if (inode) {
Christoph Hellwig480b1162007-10-21 16:42:13 -07003171 dentry = d_find_alias(inode);
David M. Grimes91828a42006-10-17 00:09:45 -07003172 iput(inode);
3173 }
3174
Christoph Hellwig480b1162007-10-21 16:42:13 -07003175 return dentry;
David M. Grimes91828a42006-10-17 00:09:45 -07003176}
3177
Al Virob0b03822012-04-02 14:34:06 -04003178static int shmem_encode_fh(struct inode *inode, __u32 *fh, int *len,
3179 struct inode *parent)
David M. Grimes91828a42006-10-17 00:09:45 -07003180{
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05303181 if (*len < 3) {
3182 *len = 3;
Namjae Jeon94e07a752013-02-17 15:48:11 +09003183 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05303184 }
David M. Grimes91828a42006-10-17 00:09:45 -07003185
Al Viro1d3382cb2010-10-23 15:19:20 -04003186 if (inode_unhashed(inode)) {
David M. Grimes91828a42006-10-17 00:09:45 -07003187 /* Unfortunately insert_inode_hash is not idempotent,
3188 * so as we hash inodes here rather than at creation
3189 * time, we need a lock to ensure we only try
3190 * to do it once
3191 */
3192 static DEFINE_SPINLOCK(lock);
3193 spin_lock(&lock);
Al Viro1d3382cb2010-10-23 15:19:20 -04003194 if (inode_unhashed(inode))
David M. Grimes91828a42006-10-17 00:09:45 -07003195 __insert_inode_hash(inode,
3196 inode->i_ino + inode->i_generation);
3197 spin_unlock(&lock);
3198 }
3199
3200 fh[0] = inode->i_generation;
3201 fh[1] = inode->i_ino;
3202 fh[2] = ((__u64)inode->i_ino) >> 32;
3203
3204 *len = 3;
3205 return 1;
3206}
3207
Christoph Hellwig39655162007-10-21 16:42:17 -07003208static const struct export_operations shmem_export_ops = {
David M. Grimes91828a42006-10-17 00:09:45 -07003209 .get_parent = shmem_get_parent,
David M. Grimes91828a42006-10-17 00:09:45 -07003210 .encode_fh = shmem_encode_fh,
Christoph Hellwig480b1162007-10-21 16:42:13 -07003211 .fh_to_dentry = shmem_fh_to_dentry,
David M. Grimes91828a42006-10-17 00:09:45 -07003212};
3213
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003214static int shmem_parse_options(char *options, struct shmem_sb_info *sbinfo,
3215 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216{
3217 char *this_char, *value, *rest;
Greg Thelen49cd0a52013-02-22 16:36:02 -08003218 struct mempolicy *mpol = NULL;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003219 uid_t uid;
3220 gid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +00003222 while (options != NULL) {
3223 this_char = options;
3224 for (;;) {
3225 /*
3226 * NUL-terminate this option: unfortunately,
3227 * mount options form a comma-separated list,
3228 * but mpol's nodelist may also contain commas.
3229 */
3230 options = strchr(options, ',');
3231 if (options == NULL)
3232 break;
3233 options++;
3234 if (!isdigit(*options)) {
3235 options[-1] = '\0';
3236 break;
3237 }
3238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 if (!*this_char)
3240 continue;
3241 if ((value = strchr(this_char,'=')) != NULL) {
3242 *value++ = 0;
3243 } else {
Joe Perches11705322016-03-17 14:19:50 -07003244 pr_err("tmpfs: No value for mount option '%s'\n",
3245 this_char);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003246 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 }
3248
3249 if (!strcmp(this_char,"size")) {
3250 unsigned long long size;
3251 size = memparse(value,&rest);
3252 if (*rest == '%') {
3253 size <<= PAGE_SHIFT;
3254 size *= totalram_pages;
3255 do_div(size, 100);
3256 rest++;
3257 }
3258 if (*rest)
3259 goto bad_val;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003260 sbinfo->max_blocks =
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003261 DIV_ROUND_UP(size, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 } else if (!strcmp(this_char,"nr_blocks")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003263 sbinfo->max_blocks = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 if (*rest)
3265 goto bad_val;
3266 } else if (!strcmp(this_char,"nr_inodes")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003267 sbinfo->max_inodes = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 if (*rest)
3269 goto bad_val;
3270 } else if (!strcmp(this_char,"mode")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003271 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 continue;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003273 sbinfo->mode = simple_strtoul(value, &rest, 8) & 07777;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 if (*rest)
3275 goto bad_val;
3276 } else if (!strcmp(this_char,"uid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003277 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 continue;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003279 uid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 if (*rest)
3281 goto bad_val;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003282 sbinfo->uid = make_kuid(current_user_ns(), uid);
3283 if (!uid_valid(sbinfo->uid))
3284 goto bad_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 } else if (!strcmp(this_char,"gid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003286 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 continue;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003288 gid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 if (*rest)
3290 goto bad_val;
Eric W. Biederman8751e032012-02-07 16:46:12 -08003291 sbinfo->gid = make_kgid(current_user_ns(), gid);
3292 if (!gid_valid(sbinfo->gid))
3293 goto bad_val;
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003294#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3295 } else if (!strcmp(this_char, "huge")) {
3296 int huge;
3297 huge = shmem_parse_huge(value);
3298 if (huge < 0)
3299 goto bad_val;
3300 if (!has_transparent_hugepage() &&
3301 huge != SHMEM_HUGE_NEVER)
3302 goto bad_val;
3303 sbinfo->huge = huge;
3304#endif
3305#ifdef CONFIG_NUMA
Robin Holt7339ff82006-01-14 13:20:48 -08003306 } else if (!strcmp(this_char,"mpol")) {
Greg Thelen49cd0a52013-02-22 16:36:02 -08003307 mpol_put(mpol);
3308 mpol = NULL;
3309 if (mpol_parse_str(value, &mpol))
Robin Holt7339ff82006-01-14 13:20:48 -08003310 goto bad_val;
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003311#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 } else {
Joe Perches11705322016-03-17 14:19:50 -07003313 pr_err("tmpfs: Bad mount option %s\n", this_char);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003314 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 }
3316 }
Greg Thelen49cd0a52013-02-22 16:36:02 -08003317 sbinfo->mpol = mpol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 return 0;
3319
3320bad_val:
Joe Perches11705322016-03-17 14:19:50 -07003321 pr_err("tmpfs: Bad value '%s' for mount option '%s'\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 value, this_char);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003323error:
3324 mpol_put(mpol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 return 1;
3326
3327}
3328
3329static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
3330{
3331 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003332 struct shmem_sb_info config = *sbinfo;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003333 unsigned long inodes;
3334 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335
Greg Thelen5f001102013-02-22 16:36:01 -08003336 config.mpol = NULL;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003337 if (shmem_parse_options(data, &config, true))
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003338 return error;
3339
3340 spin_lock(&sbinfo->stat_lock);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003341 inodes = sbinfo->max_inodes - sbinfo->free_inodes;
Tim Chen7e496292010-08-09 17:19:05 -07003342 if (percpu_counter_compare(&sbinfo->used_blocks, config.max_blocks) > 0)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003343 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003344 if (config.max_inodes < inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003345 goto out;
3346 /*
Hugh Dickins54af60422011-08-03 16:21:24 -07003347 * Those tests disallow limited->unlimited while any are in use;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003348 * but we must separately disallow unlimited->limited, because
3349 * in that case we have no record of how much is already in use.
3350 */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003351 if (config.max_blocks && !sbinfo->max_blocks)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003352 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003353 if (config.max_inodes && !sbinfo->max_inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003354 goto out;
3355
3356 error = 0;
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003357 sbinfo->huge = config.huge;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003358 sbinfo->max_blocks = config.max_blocks;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003359 sbinfo->max_inodes = config.max_inodes;
3360 sbinfo->free_inodes = config.max_inodes - inodes;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07003361
Greg Thelen5f001102013-02-22 16:36:01 -08003362 /*
3363 * Preserve previous mempolicy unless mpol remount option was specified.
3364 */
3365 if (config.mpol) {
3366 mpol_put(sbinfo->mpol);
3367 sbinfo->mpol = config.mpol; /* transfers initial ref */
3368 }
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003369out:
3370 spin_unlock(&sbinfo->stat_lock);
3371 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003373
Al Viro34c80b12011-12-08 21:32:45 -05003374static int shmem_show_options(struct seq_file *seq, struct dentry *root)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003375{
Al Viro34c80b12011-12-08 21:32:45 -05003376 struct shmem_sb_info *sbinfo = SHMEM_SB(root->d_sb);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003377
3378 if (sbinfo->max_blocks != shmem_default_max_blocks())
3379 seq_printf(seq, ",size=%luk",
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003380 sbinfo->max_blocks << (PAGE_SHIFT - 10));
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003381 if (sbinfo->max_inodes != shmem_default_max_inodes())
3382 seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
3383 if (sbinfo->mode != (S_IRWXUGO | S_ISVTX))
Al Viro09208d12011-07-26 03:15:03 -04003384 seq_printf(seq, ",mode=%03ho", sbinfo->mode);
Eric W. Biederman8751e032012-02-07 16:46:12 -08003385 if (!uid_eq(sbinfo->uid, GLOBAL_ROOT_UID))
3386 seq_printf(seq, ",uid=%u",
3387 from_kuid_munged(&init_user_ns, sbinfo->uid));
3388 if (!gid_eq(sbinfo->gid, GLOBAL_ROOT_GID))
3389 seq_printf(seq, ",gid=%u",
3390 from_kgid_munged(&init_user_ns, sbinfo->gid));
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003391#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3392 /* Rightly or wrongly, show huge mount option unmasked by shmem_huge */
3393 if (sbinfo->huge)
3394 seq_printf(seq, ",huge=%s", shmem_format_huge(sbinfo->huge));
3395#endif
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07003396 shmem_show_mpol(seq, sbinfo->mpol);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003397 return 0;
3398}
David Herrmann9183df22014-08-08 14:25:29 -07003399
3400#define MFD_NAME_PREFIX "memfd:"
3401#define MFD_NAME_PREFIX_LEN (sizeof(MFD_NAME_PREFIX) - 1)
3402#define MFD_NAME_MAX_LEN (NAME_MAX - MFD_NAME_PREFIX_LEN)
3403
3404#define MFD_ALL_FLAGS (MFD_CLOEXEC | MFD_ALLOW_SEALING)
3405
3406SYSCALL_DEFINE2(memfd_create,
3407 const char __user *, uname,
3408 unsigned int, flags)
3409{
3410 struct shmem_inode_info *info;
3411 struct file *file;
3412 int fd, error;
3413 char *name;
3414 long len;
3415
3416 if (flags & ~(unsigned int)MFD_ALL_FLAGS)
3417 return -EINVAL;
3418
3419 /* length includes terminating zero */
3420 len = strnlen_user(uname, MFD_NAME_MAX_LEN + 1);
3421 if (len <= 0)
3422 return -EFAULT;
3423 if (len > MFD_NAME_MAX_LEN + 1)
3424 return -EINVAL;
3425
3426 name = kmalloc(len + MFD_NAME_PREFIX_LEN, GFP_TEMPORARY);
3427 if (!name)
3428 return -ENOMEM;
3429
3430 strcpy(name, MFD_NAME_PREFIX);
3431 if (copy_from_user(&name[MFD_NAME_PREFIX_LEN], uname, len)) {
3432 error = -EFAULT;
3433 goto err_name;
3434 }
3435
3436 /* terminating-zero may have changed after strnlen_user() returned */
3437 if (name[len + MFD_NAME_PREFIX_LEN - 1]) {
3438 error = -EFAULT;
3439 goto err_name;
3440 }
3441
3442 fd = get_unused_fd_flags((flags & MFD_CLOEXEC) ? O_CLOEXEC : 0);
3443 if (fd < 0) {
3444 error = fd;
3445 goto err_name;
3446 }
3447
3448 file = shmem_file_setup(name, 0, VM_NORESERVE);
3449 if (IS_ERR(file)) {
3450 error = PTR_ERR(file);
3451 goto err_fd;
3452 }
3453 info = SHMEM_I(file_inode(file));
3454 file->f_mode |= FMODE_LSEEK | FMODE_PREAD | FMODE_PWRITE;
3455 file->f_flags |= O_RDWR | O_LARGEFILE;
3456 if (flags & MFD_ALLOW_SEALING)
3457 info->seals &= ~F_SEAL_SEAL;
3458
3459 fd_install(fd, file);
3460 kfree(name);
3461 return fd;
3462
3463err_fd:
3464 put_unused_fd(fd);
3465err_name:
3466 kfree(name);
3467 return error;
3468}
3469
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003470#endif /* CONFIG_TMPFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
3472static void shmem_put_super(struct super_block *sb)
3473{
Hugh Dickins602586a2010-08-17 15:23:56 -07003474 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
3475
3476 percpu_counter_destroy(&sbinfo->used_blocks);
Greg Thelen49cd0a52013-02-22 16:36:02 -08003477 mpol_put(sbinfo->mpol);
Hugh Dickins602586a2010-08-17 15:23:56 -07003478 kfree(sbinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 sb->s_fs_info = NULL;
3480}
3481
Kay Sievers2b2af542009-04-30 15:23:42 +02003482int shmem_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483{
3484 struct inode *inode;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003485 struct shmem_sb_info *sbinfo;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003486 int err = -ENOMEM;
3487
3488 /* Round up to L1_CACHE_BYTES to resist false sharing */
Pekka Enberg425fbf02009-09-21 17:03:50 -07003489 sbinfo = kzalloc(max((int)sizeof(struct shmem_sb_info),
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003490 L1_CACHE_BYTES), GFP_KERNEL);
3491 if (!sbinfo)
3492 return -ENOMEM;
3493
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003494 sbinfo->mode = S_IRWXUGO | S_ISVTX;
David Howells76aac0e2008-11-14 10:39:12 +11003495 sbinfo->uid = current_fsuid();
3496 sbinfo->gid = current_fsgid();
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003497 sb->s_fs_info = sbinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003499#ifdef CONFIG_TMPFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 /*
3501 * Per default we only allow half of the physical ram per
3502 * tmpfs instance, limiting inodes to one per page of lowmem;
3503 * but the internal instance is left unlimited.
3504 */
Al Viroca4e0512013-08-31 12:57:10 -04003505 if (!(sb->s_flags & MS_KERNMOUNT)) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003506 sbinfo->max_blocks = shmem_default_max_blocks();
3507 sbinfo->max_inodes = shmem_default_max_inodes();
3508 if (shmem_parse_options(data, sbinfo, false)) {
3509 err = -EINVAL;
3510 goto failed;
3511 }
Al Viroca4e0512013-08-31 12:57:10 -04003512 } else {
3513 sb->s_flags |= MS_NOUSER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 }
David M. Grimes91828a42006-10-17 00:09:45 -07003515 sb->s_export_op = &shmem_export_ops;
Hugh Dickins2f6e38f2012-05-29 15:06:38 -07003516 sb->s_flags |= MS_NOSEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517#else
3518 sb->s_flags |= MS_NOUSER;
3519#endif
3520
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003521 spin_lock_init(&sbinfo->stat_lock);
Tejun Heo908c7f12014-09-08 09:51:29 +09003522 if (percpu_counter_init(&sbinfo->used_blocks, 0, GFP_KERNEL))
Hugh Dickins602586a2010-08-17 15:23:56 -07003523 goto failed;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003524 sbinfo->free_inodes = sbinfo->max_inodes;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003525
Hugh Dickins285b2c42011-08-03 16:21:20 -07003526 sb->s_maxbytes = MAX_LFS_FILESIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003527 sb->s_blocksize = PAGE_SIZE;
3528 sb->s_blocksize_bits = PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 sb->s_magic = TMPFS_MAGIC;
3530 sb->s_op = &shmem_ops;
Robin H. Johnsoncfd95a92006-06-12 21:50:25 +01003531 sb->s_time_gran = 1;
Eric Parisb09e0fa2011-05-24 17:12:39 -07003532#ifdef CONFIG_TMPFS_XATTR
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003533 sb->s_xattr = shmem_xattr_handlers;
Eric Parisb09e0fa2011-05-24 17:12:39 -07003534#endif
3535#ifdef CONFIG_TMPFS_POSIX_ACL
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003536 sb->s_flags |= MS_POSIXACL;
3537#endif
Hugh Dickins0edd73b2005-06-21 17:15:04 -07003538
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03003539 inode = shmem_get_inode(sb, NULL, S_IFDIR | sbinfo->mode, 0, VM_NORESERVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 if (!inode)
3541 goto failed;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003542 inode->i_uid = sbinfo->uid;
3543 inode->i_gid = sbinfo->gid;
Al Viro318ceed2012-02-12 22:08:01 -05003544 sb->s_root = d_make_root(inode);
3545 if (!sb->s_root)
Al Viro48fde702012-01-08 22:15:13 -05003546 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 return 0;
3548
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549failed:
3550 shmem_put_super(sb);
3551 return err;
3552}
3553
Pekka Enbergfcc234f2006-03-22 00:08:13 -08003554static struct kmem_cache *shmem_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
3556static struct inode *shmem_alloc_inode(struct super_block *sb)
3557{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003558 struct shmem_inode_info *info;
3559 info = kmem_cache_alloc(shmem_inode_cachep, GFP_KERNEL);
3560 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 return NULL;
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003562 return &info->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563}
3564
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003565static void shmem_destroy_callback(struct rcu_head *head)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11003566{
3567 struct inode *inode = container_of(head, struct inode, i_rcu);
Al Viro84e710d2016-04-15 00:58:55 -04003568 if (S_ISLNK(inode->i_mode))
3569 kfree(inode->i_link);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11003570 kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
3571}
3572
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573static void shmem_destroy_inode(struct inode *inode)
3574{
Al Viro09208d12011-07-26 03:15:03 -04003575 if (S_ISREG(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 mpol_free_shared_policy(&SHMEM_I(inode)->policy);
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003577 call_rcu(&inode->i_rcu, shmem_destroy_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578}
3579
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003580static void shmem_init_inode(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003582 struct shmem_inode_info *info = foo;
3583 inode_init_once(&info->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584}
3585
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003586static int shmem_init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587{
3588 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
3589 sizeof(struct shmem_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -08003590 0, SLAB_PANIC|SLAB_ACCOUNT, shmem_init_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 return 0;
3592}
3593
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003594static void shmem_destroy_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07003596 kmem_cache_destroy(shmem_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597}
3598
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07003599static const struct address_space_operations shmem_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 .writepage = shmem_writepage,
Ken Chen76719322007-02-10 01:43:15 -08003601 .set_page_dirty = __set_page_dirty_no_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602#ifdef CONFIG_TMPFS
Nick Piggin800d15a2007-10-16 01:25:03 -07003603 .write_begin = shmem_write_begin,
3604 .write_end = shmem_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605#endif
Andrew Morton1c939232014-10-09 15:27:59 -07003606#ifdef CONFIG_MIGRATION
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -07003607 .migratepage = migrate_page,
Andrew Morton1c939232014-10-09 15:27:59 -07003608#endif
Andi Kleenaa261f52009-09-16 11:50:16 +02003609 .error_remove_page = generic_error_remove_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610};
3611
Helge Deller15ad7cd2006-12-06 20:40:36 -08003612static const struct file_operations shmem_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 .mmap = shmem_mmap,
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07003614 .get_unmapped_area = shmem_get_unmapped_area,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615#ifdef CONFIG_TMPFS
Hugh Dickins220f2ac2012-12-12 13:52:21 -08003616 .llseek = shmem_file_llseek,
Al Viro2ba5bbe2014-04-02 20:00:02 -04003617 .read_iter = shmem_file_read_iter,
Al Viro81742022014-04-03 03:17:43 -04003618 .write_iter = generic_file_write_iter,
Christoph Hellwig1b061d92010-05-26 17:53:41 +02003619 .fsync = noop_fsync,
Hugh Dickins708e3502011-07-25 17:12:32 -07003620 .splice_read = shmem_file_splice_read,
Al Virof6cb85d2014-04-05 04:38:56 -04003621 .splice_write = iter_file_splice_write,
Hugh Dickins83e4fa92012-05-29 15:06:40 -07003622 .fallocate = shmem_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623#endif
3624};
3625
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003626static const struct inode_operations shmem_inode_operations = {
Yu Zhao44a30222015-09-08 15:03:33 -07003627 .getattr = shmem_getattr,
Hugh Dickins94c1e622011-06-27 16:18:03 -07003628 .setattr = shmem_setattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003629#ifdef CONFIG_TMPFS_XATTR
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003630 .setxattr = generic_setxattr,
3631 .getxattr = generic_getxattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003632 .listxattr = shmem_listxattr,
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003633 .removexattr = generic_removexattr,
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003634 .set_acl = simple_set_acl,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003635#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636};
3637
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003638static const struct inode_operations shmem_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639#ifdef CONFIG_TMPFS
3640 .create = shmem_create,
3641 .lookup = simple_lookup,
3642 .link = shmem_link,
3643 .unlink = shmem_unlink,
3644 .symlink = shmem_symlink,
3645 .mkdir = shmem_mkdir,
3646 .rmdir = shmem_rmdir,
3647 .mknod = shmem_mknod,
Miklos Szeredi3b69ff52014-07-23 15:15:33 +02003648 .rename2 = shmem_rename2,
Al Viro60545d02013-06-07 01:20:27 -04003649 .tmpfile = shmem_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650#endif
Eric Parisb09e0fa2011-05-24 17:12:39 -07003651#ifdef CONFIG_TMPFS_XATTR
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003652 .setxattr = generic_setxattr,
3653 .getxattr = generic_getxattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003654 .listxattr = shmem_listxattr,
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003655 .removexattr = generic_removexattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003656#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003657#ifdef CONFIG_TMPFS_POSIX_ACL
Hugh Dickins94c1e622011-06-27 16:18:03 -07003658 .setattr = shmem_setattr,
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003659 .set_acl = simple_set_acl,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003660#endif
3661};
3662
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003663static const struct inode_operations shmem_special_inode_operations = {
Eric Parisb09e0fa2011-05-24 17:12:39 -07003664#ifdef CONFIG_TMPFS_XATTR
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003665 .setxattr = generic_setxattr,
3666 .getxattr = generic_getxattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003667 .listxattr = shmem_listxattr,
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +01003668 .removexattr = generic_removexattr,
Eric Parisb09e0fa2011-05-24 17:12:39 -07003669#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003670#ifdef CONFIG_TMPFS_POSIX_ACL
Hugh Dickins94c1e622011-06-27 16:18:03 -07003671 .setattr = shmem_setattr,
Christoph Hellwigfeda8212013-12-20 05:16:54 -08003672 .set_acl = simple_set_acl,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07003673#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674};
3675
Hugh Dickins759b9772007-03-05 00:30:28 -08003676static const struct super_operations shmem_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 .alloc_inode = shmem_alloc_inode,
3678 .destroy_inode = shmem_destroy_inode,
3679#ifdef CONFIG_TMPFS
3680 .statfs = shmem_statfs,
3681 .remount_fs = shmem_remount_fs,
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08003682 .show_options = shmem_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683#endif
Al Viro1f895f72010-06-05 19:10:41 -04003684 .evict_inode = shmem_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 .drop_inode = generic_delete_inode,
3686 .put_super = shmem_put_super,
3687};
3688
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003689static const struct vm_operations_struct shmem_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07003690 .fault = shmem_fault,
Ning Qud7c17552014-04-07 15:37:24 -07003691 .map_pages = filemap_map_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692#ifdef CONFIG_NUMA
3693 .set_policy = shmem_set_policy,
3694 .get_policy = shmem_get_policy,
3695#endif
3696};
3697
Al Viro3c26ff62010-07-25 11:46:36 +04003698static struct dentry *shmem_mount(struct file_system_type *fs_type,
3699 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700{
Al Viro3c26ff62010-07-25 11:46:36 +04003701 return mount_nodev(fs_type, flags, data, shmem_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702}
3703
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003704static struct file_system_type shmem_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 .owner = THIS_MODULE,
3706 .name = "tmpfs",
Al Viro3c26ff62010-07-25 11:46:36 +04003707 .mount = shmem_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 .kill_sb = kill_litter_super,
Eric W. Biederman2b8576c2013-01-25 16:32:10 -08003709 .fs_flags = FS_USERNS_MOUNT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003712int __init shmem_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713{
3714 int error;
3715
Rob Landley16203a72013-09-11 14:26:12 -07003716 /* If rootfs called this, don't re-init */
3717 if (shmem_inode_cachep)
3718 return 0;
3719
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003720 error = shmem_init_inodecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 if (error)
3722 goto out3;
3723
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003724 error = register_filesystem(&shmem_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 if (error) {
Joe Perches11705322016-03-17 14:19:50 -07003726 pr_err("Could not register tmpfs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 goto out2;
3728 }
Greg Kroah-Hartman95dc1122005-06-20 21:15:16 -07003729
Al Viroca4e0512013-08-31 12:57:10 -04003730 shm_mnt = kern_mount(&shmem_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 if (IS_ERR(shm_mnt)) {
3732 error = PTR_ERR(shm_mnt);
Joe Perches11705322016-03-17 14:19:50 -07003733 pr_err("Could not kern_mount tmpfs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 goto out1;
3735 }
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003736
3737#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3738 if (has_transparent_hugepage() && shmem_huge < SHMEM_HUGE_DENY)
3739 SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge;
3740 else
3741 shmem_huge = 0; /* just in case it was patched */
3742#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 return 0;
3744
3745out1:
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003746 unregister_filesystem(&shmem_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747out2:
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003748 shmem_destroy_inodecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749out3:
3750 shm_mnt = ERR_PTR(error);
3751 return error;
3752}
Matt Mackall853ac432009-01-06 14:40:20 -08003753
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -07003754#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && defined(CONFIG_SYSFS)
3755static ssize_t shmem_enabled_show(struct kobject *kobj,
3756 struct kobj_attribute *attr, char *buf)
3757{
3758 int values[] = {
3759 SHMEM_HUGE_ALWAYS,
3760 SHMEM_HUGE_WITHIN_SIZE,
3761 SHMEM_HUGE_ADVISE,
3762 SHMEM_HUGE_NEVER,
3763 SHMEM_HUGE_DENY,
3764 SHMEM_HUGE_FORCE,
3765 };
3766 int i, count;
3767
3768 for (i = 0, count = 0; i < ARRAY_SIZE(values); i++) {
3769 const char *fmt = shmem_huge == values[i] ? "[%s] " : "%s ";
3770
3771 count += sprintf(buf + count, fmt,
3772 shmem_format_huge(values[i]));
3773 }
3774 buf[count - 1] = '\n';
3775 return count;
3776}
3777
3778static ssize_t shmem_enabled_store(struct kobject *kobj,
3779 struct kobj_attribute *attr, const char *buf, size_t count)
3780{
3781 char tmp[16];
3782 int huge;
3783
3784 if (count + 1 > sizeof(tmp))
3785 return -EINVAL;
3786 memcpy(tmp, buf, count);
3787 tmp[count] = '\0';
3788 if (count && tmp[count - 1] == '\n')
3789 tmp[count - 1] = '\0';
3790
3791 huge = shmem_parse_huge(tmp);
3792 if (huge == -EINVAL)
3793 return -EINVAL;
3794 if (!has_transparent_hugepage() &&
3795 huge != SHMEM_HUGE_NEVER && huge != SHMEM_HUGE_DENY)
3796 return -EINVAL;
3797
3798 shmem_huge = huge;
3799 if (shmem_huge < SHMEM_HUGE_DENY)
3800 SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge;
3801 return count;
3802}
3803
3804struct kobj_attribute shmem_enabled_attr =
3805 __ATTR(shmem_enabled, 0644, shmem_enabled_show, shmem_enabled_store);
3806#endif /* CONFIG_TRANSPARENT_HUGEPAGE && CONFIG_SYSFS */
3807
Matt Mackall853ac432009-01-06 14:40:20 -08003808#else /* !CONFIG_SHMEM */
3809
3810/*
3811 * tiny-shmem: simple shmemfs and tmpfs using ramfs code
3812 *
3813 * This is intended for small system where the benefits of the full
3814 * shmem code (swap-backed and resource-limited) are outweighed by
3815 * their complexity. On systems without swap this code should be
3816 * effectively equivalent, but much lighter weight.
3817 */
3818
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003819static struct file_system_type shmem_fs_type = {
Matt Mackall853ac432009-01-06 14:40:20 -08003820 .name = "tmpfs",
Al Viro3c26ff62010-07-25 11:46:36 +04003821 .mount = ramfs_mount,
Matt Mackall853ac432009-01-06 14:40:20 -08003822 .kill_sb = kill_litter_super,
Eric W. Biederman2b8576c2013-01-25 16:32:10 -08003823 .fs_flags = FS_USERNS_MOUNT,
Matt Mackall853ac432009-01-06 14:40:20 -08003824};
3825
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003826int __init shmem_init(void)
Matt Mackall853ac432009-01-06 14:40:20 -08003827{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003828 BUG_ON(register_filesystem(&shmem_fs_type) != 0);
Matt Mackall853ac432009-01-06 14:40:20 -08003829
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003830 shm_mnt = kern_mount(&shmem_fs_type);
Matt Mackall853ac432009-01-06 14:40:20 -08003831 BUG_ON(IS_ERR(shm_mnt));
3832
3833 return 0;
3834}
3835
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003836int shmem_unuse(swp_entry_t swap, struct page *page)
Matt Mackall853ac432009-01-06 14:40:20 -08003837{
3838 return 0;
3839}
3840
Hugh Dickins3f96b792009-09-21 17:03:37 -07003841int shmem_lock(struct file *file, int lock, struct user_struct *user)
3842{
3843 return 0;
3844}
3845
Hugh Dickins24513262012-01-20 14:34:21 -08003846void shmem_unlock_mapping(struct address_space *mapping)
3847{
3848}
3849
Hugh Dickinsc01d5b32016-07-26 15:26:15 -07003850#ifdef CONFIG_MMU
3851unsigned long shmem_get_unmapped_area(struct file *file,
3852 unsigned long addr, unsigned long len,
3853 unsigned long pgoff, unsigned long flags)
3854{
3855 return current->mm->get_unmapped_area(file, addr, len, pgoff, flags);
3856}
3857#endif
3858
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003859void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
Hugh Dickins94c1e622011-06-27 16:18:03 -07003860{
Hugh Dickins41ffe5d2011-08-03 16:21:21 -07003861 truncate_inode_pages_range(inode->i_mapping, lstart, lend);
Hugh Dickins94c1e622011-06-27 16:18:03 -07003862}
3863EXPORT_SYMBOL_GPL(shmem_truncate_range);
3864
Hugh Dickins0b0a0802009-02-24 20:51:52 +00003865#define shmem_vm_ops generic_file_vm_ops
3866#define shmem_file_operations ramfs_file_operations
Dmitry Monakhov454abaf2010-03-04 17:32:18 +03003867#define shmem_get_inode(sb, dir, mode, dev, flags) ramfs_get_inode(sb, dir, mode, dev)
Hugh Dickins0b0a0802009-02-24 20:51:52 +00003868#define shmem_acct_size(flags, size) 0
3869#define shmem_unacct_size(flags, size) do {} while (0)
Matt Mackall853ac432009-01-06 14:40:20 -08003870
3871#endif /* CONFIG_SHMEM */
3872
3873/* common code */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Al Viro34515382013-02-14 22:38:02 -05003875static struct dentry_operations anon_ops = {
Al Viro118b2302013-08-24 12:08:17 -04003876 .d_dname = simple_dname
Al Viro34515382013-02-14 22:38:02 -05003877};
3878
Eric Parisc7277092013-12-02 11:24:19 +00003879static struct file *__shmem_file_setup(const char *name, loff_t size,
3880 unsigned long flags, unsigned int i_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881{
Al Viro6b4d0b22013-02-14 21:37:26 -05003882 struct file *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883 struct inode *inode;
Al Viro2c48b9c2009-08-09 00:52:35 +04003884 struct path path;
Al Viro34515382013-02-14 22:38:02 -05003885 struct super_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 struct qstr this;
3887
3888 if (IS_ERR(shm_mnt))
Al Viro6b4d0b22013-02-14 21:37:26 -05003889 return ERR_CAST(shm_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890
Hugh Dickins285b2c42011-08-03 16:21:20 -07003891 if (size < 0 || size > MAX_LFS_FILESIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 return ERR_PTR(-EINVAL);
3893
3894 if (shmem_acct_size(flags, size))
3895 return ERR_PTR(-ENOMEM);
3896
Al Viro6b4d0b22013-02-14 21:37:26 -05003897 res = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 this.name = name;
3899 this.len = strlen(name);
3900 this.hash = 0; /* will go */
Al Viro34515382013-02-14 22:38:02 -05003901 sb = shm_mnt->mnt_sb;
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07003902 path.mnt = mntget(shm_mnt);
Al Viro34515382013-02-14 22:38:02 -05003903 path.dentry = d_alloc_pseudo(sb, &this);
Al Viro2c48b9c2009-08-09 00:52:35 +04003904 if (!path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 goto put_memory;
Al Viro34515382013-02-14 22:38:02 -05003906 d_set_d_op(path.dentry, &anon_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
Al Viro6b4d0b22013-02-14 21:37:26 -05003908 res = ERR_PTR(-ENOSPC);
Al Viro34515382013-02-14 22:38:02 -05003909 inode = shmem_get_inode(sb, NULL, S_IFREG | S_IRWXUGO, 0, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 if (!inode)
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07003911 goto put_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912
Eric Parisc7277092013-12-02 11:24:19 +00003913 inode->i_flags |= i_flags;
Al Viro2c48b9c2009-08-09 00:52:35 +04003914 d_instantiate(path.dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 inode->i_size = size;
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02003916 clear_nlink(inode); /* It is unlinked */
Al Viro26567cd2013-03-01 20:22:53 -05003917 res = ERR_PTR(ramfs_nommu_expand_for_mapping(inode, size));
3918 if (IS_ERR(res))
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07003919 goto put_path;
Al Viro4b42af82009-08-05 18:25:56 +04003920
Al Viro6b4d0b22013-02-14 21:37:26 -05003921 res = alloc_file(&path, FMODE_WRITE | FMODE_READ,
Al Viro4b42af82009-08-05 18:25:56 +04003922 &shmem_file_operations);
Al Viro6b4d0b22013-02-14 21:37:26 -05003923 if (IS_ERR(res))
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07003924 goto put_path;
Al Viro4b42af82009-08-05 18:25:56 +04003925
Al Viro6b4d0b22013-02-14 21:37:26 -05003926 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928put_memory:
3929 shmem_unacct_size(flags, size);
Konstantin Khlebnikov66ee4b82014-08-06 16:06:32 -07003930put_path:
3931 path_put(&path);
Al Viro6b4d0b22013-02-14 21:37:26 -05003932 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933}
Eric Parisc7277092013-12-02 11:24:19 +00003934
3935/**
3936 * shmem_kernel_file_setup - get an unlinked file living in tmpfs which must be
3937 * kernel internal. There will be NO LSM permission checks against the
3938 * underlying inode. So users of this interface must do LSM checks at a
Stephen Smalleye1832f22015-08-06 15:46:55 -07003939 * higher layer. The users are the big_key and shm implementations. LSM
3940 * checks are provided at the key or shm level rather than the inode.
Eric Parisc7277092013-12-02 11:24:19 +00003941 * @name: name for dentry (to be seen in /proc/<pid>/maps
3942 * @size: size to be set for the file
3943 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
3944 */
3945struct file *shmem_kernel_file_setup(const char *name, loff_t size, unsigned long flags)
3946{
3947 return __shmem_file_setup(name, size, flags, S_PRIVATE);
3948}
3949
3950/**
3951 * shmem_file_setup - get an unlinked file living in tmpfs
3952 * @name: name for dentry (to be seen in /proc/<pid>/maps
3953 * @size: size to be set for the file
3954 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
3955 */
3956struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags)
3957{
3958 return __shmem_file_setup(name, size, flags, 0);
3959}
Keith Packard395e0dd2008-06-20 00:08:06 -07003960EXPORT_SYMBOL_GPL(shmem_file_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961
Randy Dunlap46711812008-03-19 17:00:41 -07003962/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963 * shmem_zero_setup - setup a shared anonymous mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
3965 */
3966int shmem_zero_setup(struct vm_area_struct *vma)
3967{
3968 struct file *file;
3969 loff_t size = vma->vm_end - vma->vm_start;
3970
Hugh Dickins66fc1302015-06-14 09:48:09 -07003971 /*
3972 * Cloning a new file under mmap_sem leads to a lock ordering conflict
3973 * between XFS directory reading and selinux: since this file is only
3974 * accessible to the user through its mapping, use S_PRIVATE flag to
3975 * bypass file security, in the same way as shmem_kernel_file_setup().
3976 */
3977 file = __shmem_file_setup("dev/zero", size, vma->vm_flags, S_PRIVATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 if (IS_ERR(file))
3979 return PTR_ERR(file);
3980
3981 if (vma->vm_file)
3982 fput(vma->vm_file);
3983 vma->vm_file = file;
3984 vma->vm_ops = &shmem_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 return 0;
3986}
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07003987
3988/**
3989 * shmem_read_mapping_page_gfp - read into page cache, using specified page allocation flags.
3990 * @mapping: the page's address_space
3991 * @index: the page index
3992 * @gfp: the page allocator flags to use if allocating
3993 *
3994 * This behaves as a tmpfs "read_cache_page_gfp(mapping, index, gfp)",
3995 * with any new page allocations done using the specified allocation flags.
3996 * But read_cache_page_gfp() uses the ->readpage() method: which does not
3997 * suit tmpfs, since it may have pages in swapcache, and needs to find those
3998 * for itself; although drivers/gpu/drm i915 and ttm rely upon this support.
3999 *
Hugh Dickins68da9f02011-07-25 17:12:34 -07004000 * i915_gem_object_get_pages_gtt() mixes __GFP_NORETRY | __GFP_NOWARN in
4001 * with the mapping_gfp_mask(), to avoid OOMing the machine unnecessarily.
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07004002 */
4003struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
4004 pgoff_t index, gfp_t gfp)
4005{
Hugh Dickins68da9f02011-07-25 17:12:34 -07004006#ifdef CONFIG_SHMEM
4007 struct inode *inode = mapping->host;
Hugh Dickins9276aad2011-07-25 17:12:34 -07004008 struct page *page;
Hugh Dickins68da9f02011-07-25 17:12:34 -07004009 int error;
4010
4011 BUG_ON(mapping->a_ops != &shmem_aops);
Andres Lagar-Cavilla9e18eb22016-05-19 17:12:47 -07004012 error = shmem_getpage_gfp(inode, index, &page, SGP_CACHE,
4013 gfp, NULL, NULL);
Hugh Dickins68da9f02011-07-25 17:12:34 -07004014 if (error)
4015 page = ERR_PTR(error);
4016 else
4017 unlock_page(page);
4018 return page;
4019#else
4020 /*
4021 * The tiny !SHMEM case uses ramfs without swap
4022 */
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07004023 return read_cache_page_gfp(mapping, index, gfp);
Hugh Dickins68da9f02011-07-25 17:12:34 -07004024#endif
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07004025}
4026EXPORT_SYMBOL_GPL(shmem_read_mapping_page_gfp);