11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * Resizable virtual memory filesystem for Linux. 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Copyright (C) 2000 Linus Torvalds. 51da177e4SLinus Torvalds * 2000 Transmeta Corp. 61da177e4SLinus Torvalds * 2000-2001 Christoph Rohland 71da177e4SLinus Torvalds * 2000-2001 SAP AG 81da177e4SLinus Torvalds * 2002 Red Hat Inc. 96922c0c7SHugh Dickins * Copyright (C) 2002-2011 Hugh Dickins. 106922c0c7SHugh Dickins * Copyright (C) 2011 Google Inc. 110edd73b3SHugh Dickins * Copyright (C) 2002-2005 VERITAS Software Corporation. 121da177e4SLinus Torvalds * Copyright (C) 2004 Andi Kleen, SuSE Labs 131da177e4SLinus Torvalds * 141da177e4SLinus Torvalds * Extended attribute support for tmpfs: 151da177e4SLinus Torvalds * Copyright (c) 2004, Luke Kenneth Casson Leighton <lkcl@lkcl.net> 161da177e4SLinus Torvalds * Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com> 171da177e4SLinus Torvalds * 18853ac43aSMatt Mackall * tiny-shmem: 19853ac43aSMatt Mackall * Copyright (c) 2004, 2008 Matt Mackall <mpm@selenic.com> 20853ac43aSMatt Mackall * 211da177e4SLinus Torvalds * This file is released under the GPL. 221da177e4SLinus Torvalds */ 231da177e4SLinus Torvalds 24853ac43aSMatt Mackall #include <linux/fs.h> 25853ac43aSMatt Mackall #include <linux/init.h> 26853ac43aSMatt Mackall #include <linux/vfs.h> 27853ac43aSMatt Mackall #include <linux/mount.h> 28250297edSAndrew Morton #include <linux/ramfs.h> 29caefba17SHugh Dickins #include <linux/pagemap.h> 30853ac43aSMatt Mackall #include <linux/file.h> 31853ac43aSMatt Mackall #include <linux/mm.h> 3246c9a946SArnd Bergmann #include <linux/random.h> 33174cd4b1SIngo Molnar #include <linux/sched/signal.h> 34b95f1b31SPaul Gortmaker #include <linux/export.h> 35853ac43aSMatt Mackall #include <linux/swap.h> 36e2e40f2cSChristoph Hellwig #include <linux/uio.h> 37f3f0e1d2SKirill A. Shutemov #include <linux/khugepaged.h> 38749df87bSMike Kravetz #include <linux/hugetlb.h> 39b56a2d8aSVineeth Remanan Pillai #include <linux/frontswap.h> 40626c3920SAl Viro #include <linux/fs_parser.h> 41853ac43aSMatt Mackall 4295cc09d6SAndrea Arcangeli #include <asm/tlbflush.h> /* for arch/microblaze update_mmu_cache() */ 4395cc09d6SAndrea Arcangeli 44853ac43aSMatt Mackall static struct vfsmount *shm_mnt; 45853ac43aSMatt Mackall 46853ac43aSMatt Mackall #ifdef CONFIG_SHMEM 471da177e4SLinus Torvalds /* 481da177e4SLinus Torvalds * This virtual memory filesystem is heavily based on the ramfs. It 491da177e4SLinus Torvalds * extends ramfs by the ability to use swap and honor resource limits 501da177e4SLinus Torvalds * which makes it a completely usable filesystem. 511da177e4SLinus Torvalds */ 521da177e4SLinus Torvalds 5339f0247dSAndreas Gruenbacher #include <linux/xattr.h> 54a5694255SChristoph Hellwig #include <linux/exportfs.h> 551c7c474cSChristoph Hellwig #include <linux/posix_acl.h> 56feda821eSChristoph Hellwig #include <linux/posix_acl_xattr.h> 571da177e4SLinus Torvalds #include <linux/mman.h> 581da177e4SLinus Torvalds #include <linux/string.h> 591da177e4SLinus Torvalds #include <linux/slab.h> 601da177e4SLinus Torvalds #include <linux/backing-dev.h> 611da177e4SLinus Torvalds #include <linux/shmem_fs.h> 621da177e4SLinus Torvalds #include <linux/writeback.h> 631da177e4SLinus Torvalds #include <linux/blkdev.h> 64bda97eabSHugh Dickins #include <linux/pagevec.h> 6541ffe5d5SHugh Dickins #include <linux/percpu_counter.h> 6683e4fa9cSHugh Dickins #include <linux/falloc.h> 67708e3508SHugh Dickins #include <linux/splice.h> 681da177e4SLinus Torvalds #include <linux/security.h> 691da177e4SLinus Torvalds #include <linux/swapops.h> 701da177e4SLinus Torvalds #include <linux/mempolicy.h> 711da177e4SLinus Torvalds #include <linux/namei.h> 72b00dc3adSHugh Dickins #include <linux/ctype.h> 73304dbdb7SLee Schermerhorn #include <linux/migrate.h> 74c1f60a5aSChristoph Lameter #include <linux/highmem.h> 75680d794bSakpm@linux-foundation.org #include <linux/seq_file.h> 7692562927SMimi Zohar #include <linux/magic.h> 779183df25SDavid Herrmann #include <linux/syscalls.h> 7840e041a2SDavid Herrmann #include <linux/fcntl.h> 799183df25SDavid Herrmann #include <uapi/linux/memfd.h> 80cfda0526SMike Rapoport #include <linux/userfaultfd_k.h> 814c27fe4cSMike Rapoport #include <linux/rmap.h> 822b4db796SAmir Goldstein #include <linux/uuid.h> 83304dbdb7SLee Schermerhorn 847c0f6ba6SLinus Torvalds #include <linux/uaccess.h> 851da177e4SLinus Torvalds #include <asm/pgtable.h> 861da177e4SLinus Torvalds 87dd56b046SMel Gorman #include "internal.h" 88dd56b046SMel Gorman 8909cbfeafSKirill A. Shutemov #define BLOCKS_PER_PAGE (PAGE_SIZE/512) 9009cbfeafSKirill A. Shutemov #define VM_ACCT(size) (PAGE_ALIGN(size) >> PAGE_SHIFT) 911da177e4SLinus Torvalds 921da177e4SLinus Torvalds /* Pretend that each entry is of this size in directory's i_size */ 931da177e4SLinus Torvalds #define BOGO_DIRENT_SIZE 20 941da177e4SLinus Torvalds 9569f07ec9SHugh Dickins /* Symlink up to this size is kmalloc'ed instead of using a swappable page */ 9669f07ec9SHugh Dickins #define SHORT_SYMLINK_LEN 128 9769f07ec9SHugh Dickins 981aac1400SHugh Dickins /* 99f00cdc6dSHugh Dickins * shmem_fallocate communicates with shmem_fault or shmem_writepage via 100f00cdc6dSHugh Dickins * inode->i_private (with i_mutex making sure that it has only one user at 101f00cdc6dSHugh Dickins * a time): we would prefer not to enlarge the shmem inode just for that. 1021aac1400SHugh Dickins */ 1031aac1400SHugh Dickins struct shmem_falloc { 1048e205f77SHugh Dickins wait_queue_head_t *waitq; /* faults into hole wait for punch to end */ 1051aac1400SHugh Dickins pgoff_t start; /* start of range currently being fallocated */ 1061aac1400SHugh Dickins pgoff_t next; /* the next page offset to be fallocated */ 1071aac1400SHugh Dickins pgoff_t nr_falloced; /* how many new pages have been fallocated */ 1081aac1400SHugh Dickins pgoff_t nr_unswapped; /* how often writepage refused to swap out */ 1091aac1400SHugh Dickins }; 1101aac1400SHugh Dickins 1110b5071ddSAl Viro struct shmem_options { 1120b5071ddSAl Viro unsigned long long blocks; 1130b5071ddSAl Viro unsigned long long inodes; 1140b5071ddSAl Viro struct mempolicy *mpol; 1150b5071ddSAl Viro kuid_t uid; 1160b5071ddSAl Viro kgid_t gid; 1170b5071ddSAl Viro umode_t mode; 1180b5071ddSAl Viro int huge; 1190b5071ddSAl Viro int seen; 1200b5071ddSAl Viro #define SHMEM_SEEN_BLOCKS 1 1210b5071ddSAl Viro #define SHMEM_SEEN_INODES 2 1220b5071ddSAl Viro #define SHMEM_SEEN_HUGE 4 1230b5071ddSAl Viro }; 1240b5071ddSAl Viro 125b76db735SAndrew Morton #ifdef CONFIG_TMPFS 126680d794bSakpm@linux-foundation.org static unsigned long shmem_default_max_blocks(void) 127680d794bSakpm@linux-foundation.org { 128ca79b0c2SArun KS return totalram_pages() / 2; 129680d794bSakpm@linux-foundation.org } 130680d794bSakpm@linux-foundation.org 131680d794bSakpm@linux-foundation.org static unsigned long shmem_default_max_inodes(void) 132680d794bSakpm@linux-foundation.org { 133ca79b0c2SArun KS unsigned long nr_pages = totalram_pages(); 134ca79b0c2SArun KS 135ca79b0c2SArun KS return min(nr_pages - totalhigh_pages(), nr_pages / 2); 136680d794bSakpm@linux-foundation.org } 137b76db735SAndrew Morton #endif 138680d794bSakpm@linux-foundation.org 139bde05d1cSHugh Dickins static bool shmem_should_replace_page(struct page *page, gfp_t gfp); 140bde05d1cSHugh Dickins static int shmem_replace_page(struct page **pagep, gfp_t gfp, 141bde05d1cSHugh Dickins struct shmem_inode_info *info, pgoff_t index); 142c5bf121eSVineeth Remanan Pillai static int shmem_swapin_page(struct inode *inode, pgoff_t index, 143c5bf121eSVineeth Remanan Pillai struct page **pagep, enum sgp_type sgp, 144c5bf121eSVineeth Remanan Pillai gfp_t gfp, struct vm_area_struct *vma, 145c5bf121eSVineeth Remanan Pillai vm_fault_t *fault_type); 14668da9f05SHugh Dickins static int shmem_getpage_gfp(struct inode *inode, pgoff_t index, 1479e18eb29SAndres Lagar-Cavilla struct page **pagep, enum sgp_type sgp, 148cfda0526SMike Rapoport gfp_t gfp, struct vm_area_struct *vma, 1492b740303SSouptick Joarder struct vm_fault *vmf, vm_fault_t *fault_type); 15068da9f05SHugh Dickins 151f3f0e1d2SKirill A. Shutemov int shmem_getpage(struct inode *inode, pgoff_t index, 1529e18eb29SAndres Lagar-Cavilla struct page **pagep, enum sgp_type sgp) 15368da9f05SHugh Dickins { 15468da9f05SHugh Dickins return shmem_getpage_gfp(inode, index, pagep, sgp, 155cfda0526SMike Rapoport mapping_gfp_mask(inode->i_mapping), NULL, NULL, NULL); 15668da9f05SHugh Dickins } 1571da177e4SLinus Torvalds 1581da177e4SLinus Torvalds static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb) 1591da177e4SLinus Torvalds { 1601da177e4SLinus Torvalds return sb->s_fs_info; 1611da177e4SLinus Torvalds } 1621da177e4SLinus Torvalds 1631da177e4SLinus Torvalds /* 1641da177e4SLinus Torvalds * shmem_file_setup pre-accounts the whole fixed size of a VM object, 1651da177e4SLinus Torvalds * for shared memory and for shared anonymous (/dev/zero) mappings 1661da177e4SLinus Torvalds * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1), 1671da177e4SLinus Torvalds * consistent with the pre-accounting of private mappings ... 1681da177e4SLinus Torvalds */ 1691da177e4SLinus Torvalds static inline int shmem_acct_size(unsigned long flags, loff_t size) 1701da177e4SLinus Torvalds { 1710b0a0806SHugh Dickins return (flags & VM_NORESERVE) ? 172191c5424SAl Viro 0 : security_vm_enough_memory_mm(current->mm, VM_ACCT(size)); 1731da177e4SLinus Torvalds } 1741da177e4SLinus Torvalds 1751da177e4SLinus Torvalds static inline void shmem_unacct_size(unsigned long flags, loff_t size) 1761da177e4SLinus Torvalds { 1770b0a0806SHugh Dickins if (!(flags & VM_NORESERVE)) 1781da177e4SLinus Torvalds vm_unacct_memory(VM_ACCT(size)); 1791da177e4SLinus Torvalds } 1801da177e4SLinus Torvalds 18177142517SKonstantin Khlebnikov static inline int shmem_reacct_size(unsigned long flags, 18277142517SKonstantin Khlebnikov loff_t oldsize, loff_t newsize) 18377142517SKonstantin Khlebnikov { 18477142517SKonstantin Khlebnikov if (!(flags & VM_NORESERVE)) { 18577142517SKonstantin Khlebnikov if (VM_ACCT(newsize) > VM_ACCT(oldsize)) 18677142517SKonstantin Khlebnikov return security_vm_enough_memory_mm(current->mm, 18777142517SKonstantin Khlebnikov VM_ACCT(newsize) - VM_ACCT(oldsize)); 18877142517SKonstantin Khlebnikov else if (VM_ACCT(newsize) < VM_ACCT(oldsize)) 18977142517SKonstantin Khlebnikov vm_unacct_memory(VM_ACCT(oldsize) - VM_ACCT(newsize)); 19077142517SKonstantin Khlebnikov } 19177142517SKonstantin Khlebnikov return 0; 19277142517SKonstantin Khlebnikov } 19377142517SKonstantin Khlebnikov 1941da177e4SLinus Torvalds /* 1951da177e4SLinus Torvalds * ... whereas tmpfs objects are accounted incrementally as 19675edd345SHugh Dickins * pages are allocated, in order to allow large sparse files. 1971da177e4SLinus Torvalds * shmem_getpage reports shmem_acct_block failure as -ENOSPC not -ENOMEM, 1981da177e4SLinus Torvalds * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM. 1991da177e4SLinus Torvalds */ 200800d8c63SKirill A. Shutemov static inline int shmem_acct_block(unsigned long flags, long pages) 2011da177e4SLinus Torvalds { 202800d8c63SKirill A. Shutemov if (!(flags & VM_NORESERVE)) 203800d8c63SKirill A. Shutemov return 0; 204800d8c63SKirill A. Shutemov 205800d8c63SKirill A. Shutemov return security_vm_enough_memory_mm(current->mm, 206800d8c63SKirill A. Shutemov pages * VM_ACCT(PAGE_SIZE)); 2071da177e4SLinus Torvalds } 2081da177e4SLinus Torvalds 2091da177e4SLinus Torvalds static inline void shmem_unacct_blocks(unsigned long flags, long pages) 2101da177e4SLinus Torvalds { 2110b0a0806SHugh Dickins if (flags & VM_NORESERVE) 21209cbfeafSKirill A. Shutemov vm_unacct_memory(pages * VM_ACCT(PAGE_SIZE)); 2131da177e4SLinus Torvalds } 2141da177e4SLinus Torvalds 2150f079694SMike Rapoport static inline bool shmem_inode_acct_block(struct inode *inode, long pages) 2160f079694SMike Rapoport { 2170f079694SMike Rapoport struct shmem_inode_info *info = SHMEM_I(inode); 2180f079694SMike Rapoport struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb); 2190f079694SMike Rapoport 2200f079694SMike Rapoport if (shmem_acct_block(info->flags, pages)) 2210f079694SMike Rapoport return false; 2220f079694SMike Rapoport 2230f079694SMike Rapoport if (sbinfo->max_blocks) { 2240f079694SMike Rapoport if (percpu_counter_compare(&sbinfo->used_blocks, 2250f079694SMike Rapoport sbinfo->max_blocks - pages) > 0) 2260f079694SMike Rapoport goto unacct; 2270f079694SMike Rapoport percpu_counter_add(&sbinfo->used_blocks, pages); 2280f079694SMike Rapoport } 2290f079694SMike Rapoport 2300f079694SMike Rapoport return true; 2310f079694SMike Rapoport 2320f079694SMike Rapoport unacct: 2330f079694SMike Rapoport shmem_unacct_blocks(info->flags, pages); 2340f079694SMike Rapoport return false; 2350f079694SMike Rapoport } 2360f079694SMike Rapoport 2370f079694SMike Rapoport static inline void shmem_inode_unacct_blocks(struct inode *inode, long pages) 2380f079694SMike Rapoport { 2390f079694SMike Rapoport struct shmem_inode_info *info = SHMEM_I(inode); 2400f079694SMike Rapoport struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb); 2410f079694SMike Rapoport 2420f079694SMike Rapoport if (sbinfo->max_blocks) 2430f079694SMike Rapoport percpu_counter_sub(&sbinfo->used_blocks, pages); 2440f079694SMike Rapoport shmem_unacct_blocks(info->flags, pages); 2450f079694SMike Rapoport } 2460f079694SMike Rapoport 247759b9775SHugh Dickins static const struct super_operations shmem_ops; 248f5e54d6eSChristoph Hellwig static const struct address_space_operations shmem_aops; 24915ad7cdcSHelge Deller static const struct file_operations shmem_file_operations; 25092e1d5beSArjan van de Ven static const struct inode_operations shmem_inode_operations; 25192e1d5beSArjan van de Ven static const struct inode_operations shmem_dir_inode_operations; 25292e1d5beSArjan van de Ven static const struct inode_operations shmem_special_inode_operations; 253f0f37e2fSAlexey Dobriyan static const struct vm_operations_struct shmem_vm_ops; 254779750d2SKirill A. Shutemov static struct file_system_type shmem_fs_type; 2551da177e4SLinus Torvalds 256b0506e48SMike Rapoport bool vma_is_shmem(struct vm_area_struct *vma) 257b0506e48SMike Rapoport { 258b0506e48SMike Rapoport return vma->vm_ops == &shmem_vm_ops; 259b0506e48SMike Rapoport } 260b0506e48SMike Rapoport 2611da177e4SLinus Torvalds static LIST_HEAD(shmem_swaplist); 262cb5f7b9aSHugh Dickins static DEFINE_MUTEX(shmem_swaplist_mutex); 2631da177e4SLinus Torvalds 2645b04c689SPavel Emelyanov static int shmem_reserve_inode(struct super_block *sb) 2655b04c689SPavel Emelyanov { 2665b04c689SPavel Emelyanov struct shmem_sb_info *sbinfo = SHMEM_SB(sb); 2675b04c689SPavel Emelyanov if (sbinfo->max_inodes) { 2685b04c689SPavel Emelyanov spin_lock(&sbinfo->stat_lock); 2695b04c689SPavel Emelyanov if (!sbinfo->free_inodes) { 2705b04c689SPavel Emelyanov spin_unlock(&sbinfo->stat_lock); 2715b04c689SPavel Emelyanov return -ENOSPC; 2725b04c689SPavel Emelyanov } 2735b04c689SPavel Emelyanov sbinfo->free_inodes--; 2745b04c689SPavel Emelyanov spin_unlock(&sbinfo->stat_lock); 2755b04c689SPavel Emelyanov } 2765b04c689SPavel Emelyanov return 0; 2775b04c689SPavel Emelyanov } 2785b04c689SPavel Emelyanov 2795b04c689SPavel Emelyanov static void shmem_free_inode(struct super_block *sb) 2805b04c689SPavel Emelyanov { 2815b04c689SPavel Emelyanov struct shmem_sb_info *sbinfo = SHMEM_SB(sb); 2825b04c689SPavel Emelyanov if (sbinfo->max_inodes) { 2835b04c689SPavel Emelyanov spin_lock(&sbinfo->stat_lock); 2845b04c689SPavel Emelyanov sbinfo->free_inodes++; 2855b04c689SPavel Emelyanov spin_unlock(&sbinfo->stat_lock); 2865b04c689SPavel Emelyanov } 2875b04c689SPavel Emelyanov } 2885b04c689SPavel Emelyanov 28946711810SRandy Dunlap /** 29041ffe5d5SHugh Dickins * shmem_recalc_inode - recalculate the block usage of an inode 2911da177e4SLinus Torvalds * @inode: inode to recalc 2921da177e4SLinus Torvalds * 2931da177e4SLinus Torvalds * We have to calculate the free blocks since the mm can drop 2941da177e4SLinus Torvalds * undirtied hole pages behind our back. 2951da177e4SLinus Torvalds * 2961da177e4SLinus Torvalds * But normally info->alloced == inode->i_mapping->nrpages + info->swapped 2971da177e4SLinus Torvalds * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped) 2981da177e4SLinus Torvalds * 2991da177e4SLinus Torvalds * It has to be called with the spinlock held. 3001da177e4SLinus Torvalds */ 3011da177e4SLinus Torvalds static void shmem_recalc_inode(struct inode *inode) 3021da177e4SLinus Torvalds { 3031da177e4SLinus Torvalds struct shmem_inode_info *info = SHMEM_I(inode); 3041da177e4SLinus Torvalds long freed; 3051da177e4SLinus Torvalds 3061da177e4SLinus Torvalds freed = info->alloced - info->swapped - inode->i_mapping->nrpages; 3071da177e4SLinus Torvalds if (freed > 0) { 3081da177e4SLinus Torvalds info->alloced -= freed; 30954af6042SHugh Dickins inode->i_blocks -= freed * BLOCKS_PER_PAGE; 3100f079694SMike Rapoport shmem_inode_unacct_blocks(inode, freed); 3111da177e4SLinus Torvalds } 3121da177e4SLinus Torvalds } 3131da177e4SLinus Torvalds 314800d8c63SKirill A. Shutemov bool shmem_charge(struct inode *inode, long pages) 315800d8c63SKirill A. Shutemov { 316800d8c63SKirill A. Shutemov struct shmem_inode_info *info = SHMEM_I(inode); 3174595ef88SKirill A. Shutemov unsigned long flags; 318800d8c63SKirill A. Shutemov 3190f079694SMike Rapoport if (!shmem_inode_acct_block(inode, pages)) 320800d8c63SKirill A. Shutemov return false; 321b1cc94abSMike Rapoport 322aaa52e34SHugh Dickins /* nrpages adjustment first, then shmem_recalc_inode() when balanced */ 323aaa52e34SHugh Dickins inode->i_mapping->nrpages += pages; 324aaa52e34SHugh Dickins 3254595ef88SKirill A. Shutemov spin_lock_irqsave(&info->lock, flags); 326800d8c63SKirill A. Shutemov info->alloced += pages; 327800d8c63SKirill A. Shutemov inode->i_blocks += pages * BLOCKS_PER_PAGE; 328800d8c63SKirill A. Shutemov shmem_recalc_inode(inode); 3294595ef88SKirill A. Shutemov spin_unlock_irqrestore(&info->lock, flags); 330800d8c63SKirill A. Shutemov 331800d8c63SKirill A. Shutemov return true; 332800d8c63SKirill A. Shutemov } 333800d8c63SKirill A. Shutemov 334800d8c63SKirill A. Shutemov void shmem_uncharge(struct inode *inode, long pages) 335800d8c63SKirill A. Shutemov { 336800d8c63SKirill A. Shutemov struct shmem_inode_info *info = SHMEM_I(inode); 3374595ef88SKirill A. Shutemov unsigned long flags; 338800d8c63SKirill A. Shutemov 339aaa52e34SHugh Dickins /* nrpages adjustment done by __delete_from_page_cache() or caller */ 340aaa52e34SHugh Dickins 3414595ef88SKirill A. Shutemov spin_lock_irqsave(&info->lock, flags); 342800d8c63SKirill A. Shutemov info->alloced -= pages; 343800d8c63SKirill A. Shutemov inode->i_blocks -= pages * BLOCKS_PER_PAGE; 344800d8c63SKirill A. Shutemov shmem_recalc_inode(inode); 3454595ef88SKirill A. Shutemov spin_unlock_irqrestore(&info->lock, flags); 346800d8c63SKirill A. Shutemov 3470f079694SMike Rapoport shmem_inode_unacct_blocks(inode, pages); 348800d8c63SKirill A. Shutemov } 349800d8c63SKirill A. Shutemov 3507a5d0fbbSHugh Dickins /* 35162f945b6SMatthew Wilcox * Replace item expected in xarray by a new item, while holding xa_lock. 3527a5d0fbbSHugh Dickins */ 35362f945b6SMatthew Wilcox static int shmem_replace_entry(struct address_space *mapping, 3547a5d0fbbSHugh Dickins pgoff_t index, void *expected, void *replacement) 3557a5d0fbbSHugh Dickins { 35662f945b6SMatthew Wilcox XA_STATE(xas, &mapping->i_pages, index); 3576dbaf22cSJohannes Weiner void *item; 3587a5d0fbbSHugh Dickins 3597a5d0fbbSHugh Dickins VM_BUG_ON(!expected); 3606dbaf22cSJohannes Weiner VM_BUG_ON(!replacement); 36162f945b6SMatthew Wilcox item = xas_load(&xas); 3627a5d0fbbSHugh Dickins if (item != expected) 3637a5d0fbbSHugh Dickins return -ENOENT; 36462f945b6SMatthew Wilcox xas_store(&xas, replacement); 3657a5d0fbbSHugh Dickins return 0; 3667a5d0fbbSHugh Dickins } 3677a5d0fbbSHugh Dickins 3687a5d0fbbSHugh Dickins /* 369d1899228SHugh Dickins * Sometimes, before we decide whether to proceed or to fail, we must check 370d1899228SHugh Dickins * that an entry was not already brought back from swap by a racing thread. 371d1899228SHugh Dickins * 372d1899228SHugh Dickins * Checking page is not enough: by the time a SwapCache page is locked, it 373d1899228SHugh Dickins * might be reused, and again be SwapCache, using the same swap as before. 374d1899228SHugh Dickins */ 375d1899228SHugh Dickins static bool shmem_confirm_swap(struct address_space *mapping, 376d1899228SHugh Dickins pgoff_t index, swp_entry_t swap) 377d1899228SHugh Dickins { 378a12831bfSMatthew Wilcox return xa_load(&mapping->i_pages, index) == swp_to_radix_entry(swap); 379d1899228SHugh Dickins } 380d1899228SHugh Dickins 381d1899228SHugh Dickins /* 3825a6e75f8SKirill A. Shutemov * Definitions for "huge tmpfs": tmpfs mounted with the huge= option 3835a6e75f8SKirill A. Shutemov * 3845a6e75f8SKirill A. Shutemov * SHMEM_HUGE_NEVER: 3855a6e75f8SKirill A. Shutemov * disables huge pages for the mount; 3865a6e75f8SKirill A. Shutemov * SHMEM_HUGE_ALWAYS: 3875a6e75f8SKirill A. Shutemov * enables huge pages for the mount; 3885a6e75f8SKirill A. Shutemov * SHMEM_HUGE_WITHIN_SIZE: 3895a6e75f8SKirill A. Shutemov * only allocate huge pages if the page will be fully within i_size, 3905a6e75f8SKirill A. Shutemov * also respect fadvise()/madvise() hints; 3915a6e75f8SKirill A. Shutemov * SHMEM_HUGE_ADVISE: 3925a6e75f8SKirill A. Shutemov * only allocate huge pages if requested with fadvise()/madvise(); 3935a6e75f8SKirill A. Shutemov */ 3945a6e75f8SKirill A. Shutemov 3955a6e75f8SKirill A. Shutemov #define SHMEM_HUGE_NEVER 0 3965a6e75f8SKirill A. Shutemov #define SHMEM_HUGE_ALWAYS 1 3975a6e75f8SKirill A. Shutemov #define SHMEM_HUGE_WITHIN_SIZE 2 3985a6e75f8SKirill A. Shutemov #define SHMEM_HUGE_ADVISE 3 3995a6e75f8SKirill A. Shutemov 4005a6e75f8SKirill A. Shutemov /* 4015a6e75f8SKirill A. Shutemov * Special values. 4025a6e75f8SKirill A. Shutemov * Only can be set via /sys/kernel/mm/transparent_hugepage/shmem_enabled: 4035a6e75f8SKirill A. Shutemov * 4045a6e75f8SKirill A. Shutemov * SHMEM_HUGE_DENY: 4055a6e75f8SKirill A. Shutemov * disables huge on shm_mnt and all mounts, for emergency use; 4065a6e75f8SKirill A. Shutemov * SHMEM_HUGE_FORCE: 4075a6e75f8SKirill A. Shutemov * enables huge on shm_mnt and all mounts, w/o needing option, for testing; 4085a6e75f8SKirill A. Shutemov * 4095a6e75f8SKirill A. Shutemov */ 4105a6e75f8SKirill A. Shutemov #define SHMEM_HUGE_DENY (-1) 4115a6e75f8SKirill A. Shutemov #define SHMEM_HUGE_FORCE (-2) 4125a6e75f8SKirill A. Shutemov 413e496cf3dSKirill A. Shutemov #ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE 4145a6e75f8SKirill A. Shutemov /* ifdef here to avoid bloating shmem.o when not necessary */ 4155a6e75f8SKirill A. Shutemov 4165b9c98f3SMike Kravetz static int shmem_huge __read_mostly; 4175a6e75f8SKirill A. Shutemov 418e5f2249aSArnd Bergmann #if defined(CONFIG_SYSFS) 4195a6e75f8SKirill A. Shutemov static int shmem_parse_huge(const char *str) 4205a6e75f8SKirill A. Shutemov { 4215a6e75f8SKirill A. Shutemov if (!strcmp(str, "never")) 4225a6e75f8SKirill A. Shutemov return SHMEM_HUGE_NEVER; 4235a6e75f8SKirill A. Shutemov if (!strcmp(str, "always")) 4245a6e75f8SKirill A. Shutemov return SHMEM_HUGE_ALWAYS; 4255a6e75f8SKirill A. Shutemov if (!strcmp(str, "within_size")) 4265a6e75f8SKirill A. Shutemov return SHMEM_HUGE_WITHIN_SIZE; 4275a6e75f8SKirill A. Shutemov if (!strcmp(str, "advise")) 4285a6e75f8SKirill A. Shutemov return SHMEM_HUGE_ADVISE; 4295a6e75f8SKirill A. Shutemov if (!strcmp(str, "deny")) 4305a6e75f8SKirill A. Shutemov return SHMEM_HUGE_DENY; 4315a6e75f8SKirill A. Shutemov if (!strcmp(str, "force")) 4325a6e75f8SKirill A. Shutemov return SHMEM_HUGE_FORCE; 4335a6e75f8SKirill A. Shutemov return -EINVAL; 4345a6e75f8SKirill A. Shutemov } 435e5f2249aSArnd Bergmann #endif 4365a6e75f8SKirill A. Shutemov 437e5f2249aSArnd Bergmann #if defined(CONFIG_SYSFS) || defined(CONFIG_TMPFS) 4385a6e75f8SKirill A. Shutemov static const char *shmem_format_huge(int huge) 4395a6e75f8SKirill A. Shutemov { 4405a6e75f8SKirill A. Shutemov switch (huge) { 4415a6e75f8SKirill A. Shutemov case SHMEM_HUGE_NEVER: 4425a6e75f8SKirill A. Shutemov return "never"; 4435a6e75f8SKirill A. Shutemov case SHMEM_HUGE_ALWAYS: 4445a6e75f8SKirill A. Shutemov return "always"; 4455a6e75f8SKirill A. Shutemov case SHMEM_HUGE_WITHIN_SIZE: 4465a6e75f8SKirill A. Shutemov return "within_size"; 4475a6e75f8SKirill A. Shutemov case SHMEM_HUGE_ADVISE: 4485a6e75f8SKirill A. Shutemov return "advise"; 4495a6e75f8SKirill A. Shutemov case SHMEM_HUGE_DENY: 4505a6e75f8SKirill A. Shutemov return "deny"; 4515a6e75f8SKirill A. Shutemov case SHMEM_HUGE_FORCE: 4525a6e75f8SKirill A. Shutemov return "force"; 4535a6e75f8SKirill A. Shutemov default: 4545a6e75f8SKirill A. Shutemov VM_BUG_ON(1); 4555a6e75f8SKirill A. Shutemov return "bad_val"; 4565a6e75f8SKirill A. Shutemov } 4575a6e75f8SKirill A. Shutemov } 458f1f5929cSJérémy Lefaure #endif 4595a6e75f8SKirill A. Shutemov 460779750d2SKirill A. Shutemov static unsigned long shmem_unused_huge_shrink(struct shmem_sb_info *sbinfo, 461779750d2SKirill A. Shutemov struct shrink_control *sc, unsigned long nr_to_split) 462779750d2SKirill A. Shutemov { 463779750d2SKirill A. Shutemov LIST_HEAD(list), *pos, *next; 464253fd0f0SKirill A. Shutemov LIST_HEAD(to_remove); 465779750d2SKirill A. Shutemov struct inode *inode; 466779750d2SKirill A. Shutemov struct shmem_inode_info *info; 467779750d2SKirill A. Shutemov struct page *page; 468779750d2SKirill A. Shutemov unsigned long batch = sc ? sc->nr_to_scan : 128; 469779750d2SKirill A. Shutemov int removed = 0, split = 0; 470779750d2SKirill A. Shutemov 471779750d2SKirill A. Shutemov if (list_empty(&sbinfo->shrinklist)) 472779750d2SKirill A. Shutemov return SHRINK_STOP; 473779750d2SKirill A. Shutemov 474779750d2SKirill A. Shutemov spin_lock(&sbinfo->shrinklist_lock); 475779750d2SKirill A. Shutemov list_for_each_safe(pos, next, &sbinfo->shrinklist) { 476779750d2SKirill A. Shutemov info = list_entry(pos, struct shmem_inode_info, shrinklist); 477779750d2SKirill A. Shutemov 478779750d2SKirill A. Shutemov /* pin the inode */ 479779750d2SKirill A. Shutemov inode = igrab(&info->vfs_inode); 480779750d2SKirill A. Shutemov 481779750d2SKirill A. Shutemov /* inode is about to be evicted */ 482779750d2SKirill A. Shutemov if (!inode) { 483779750d2SKirill A. Shutemov list_del_init(&info->shrinklist); 484779750d2SKirill A. Shutemov removed++; 485779750d2SKirill A. Shutemov goto next; 486779750d2SKirill A. Shutemov } 487779750d2SKirill A. Shutemov 488779750d2SKirill A. Shutemov /* Check if there's anything to gain */ 489779750d2SKirill A. Shutemov if (round_up(inode->i_size, PAGE_SIZE) == 490779750d2SKirill A. Shutemov round_up(inode->i_size, HPAGE_PMD_SIZE)) { 491253fd0f0SKirill A. Shutemov list_move(&info->shrinklist, &to_remove); 492779750d2SKirill A. Shutemov removed++; 493779750d2SKirill A. Shutemov goto next; 494779750d2SKirill A. Shutemov } 495779750d2SKirill A. Shutemov 496779750d2SKirill A. Shutemov list_move(&info->shrinklist, &list); 497779750d2SKirill A. Shutemov next: 498779750d2SKirill A. Shutemov if (!--batch) 499779750d2SKirill A. Shutemov break; 500779750d2SKirill A. Shutemov } 501779750d2SKirill A. Shutemov spin_unlock(&sbinfo->shrinklist_lock); 502779750d2SKirill A. Shutemov 503253fd0f0SKirill A. Shutemov list_for_each_safe(pos, next, &to_remove) { 504253fd0f0SKirill A. Shutemov info = list_entry(pos, struct shmem_inode_info, shrinklist); 505253fd0f0SKirill A. Shutemov inode = &info->vfs_inode; 506253fd0f0SKirill A. Shutemov list_del_init(&info->shrinklist); 507253fd0f0SKirill A. Shutemov iput(inode); 508253fd0f0SKirill A. Shutemov } 509253fd0f0SKirill A. Shutemov 510779750d2SKirill A. Shutemov list_for_each_safe(pos, next, &list) { 511779750d2SKirill A. Shutemov int ret; 512779750d2SKirill A. Shutemov 513779750d2SKirill A. Shutemov info = list_entry(pos, struct shmem_inode_info, shrinklist); 514779750d2SKirill A. Shutemov inode = &info->vfs_inode; 515779750d2SKirill A. Shutemov 516b3cd54b2SKirill A. Shutemov if (nr_to_split && split >= nr_to_split) 517b3cd54b2SKirill A. Shutemov goto leave; 518779750d2SKirill A. Shutemov 519b3cd54b2SKirill A. Shutemov page = find_get_page(inode->i_mapping, 520779750d2SKirill A. Shutemov (inode->i_size & HPAGE_PMD_MASK) >> PAGE_SHIFT); 521779750d2SKirill A. Shutemov if (!page) 522779750d2SKirill A. Shutemov goto drop; 523779750d2SKirill A. Shutemov 524b3cd54b2SKirill A. Shutemov /* No huge page at the end of the file: nothing to split */ 525779750d2SKirill A. Shutemov if (!PageTransHuge(page)) { 526779750d2SKirill A. Shutemov put_page(page); 527779750d2SKirill A. Shutemov goto drop; 528779750d2SKirill A. Shutemov } 529779750d2SKirill A. Shutemov 530b3cd54b2SKirill A. Shutemov /* 531b3cd54b2SKirill A. Shutemov * Leave the inode on the list if we failed to lock 532b3cd54b2SKirill A. Shutemov * the page at this time. 533b3cd54b2SKirill A. Shutemov * 534b3cd54b2SKirill A. Shutemov * Waiting for the lock may lead to deadlock in the 535b3cd54b2SKirill A. Shutemov * reclaim path. 536b3cd54b2SKirill A. Shutemov */ 537b3cd54b2SKirill A. Shutemov if (!trylock_page(page)) { 538b3cd54b2SKirill A. Shutemov put_page(page); 539b3cd54b2SKirill A. Shutemov goto leave; 540b3cd54b2SKirill A. Shutemov } 541b3cd54b2SKirill A. Shutemov 542779750d2SKirill A. Shutemov ret = split_huge_page(page); 543779750d2SKirill A. Shutemov unlock_page(page); 544779750d2SKirill A. Shutemov put_page(page); 545779750d2SKirill A. Shutemov 546b3cd54b2SKirill A. Shutemov /* If split failed leave the inode on the list */ 547b3cd54b2SKirill A. Shutemov if (ret) 548b3cd54b2SKirill A. Shutemov goto leave; 549779750d2SKirill A. Shutemov 550779750d2SKirill A. Shutemov split++; 551779750d2SKirill A. Shutemov drop: 552779750d2SKirill A. Shutemov list_del_init(&info->shrinklist); 553779750d2SKirill A. Shutemov removed++; 554b3cd54b2SKirill A. Shutemov leave: 555779750d2SKirill A. Shutemov iput(inode); 556779750d2SKirill A. Shutemov } 557779750d2SKirill A. Shutemov 558779750d2SKirill A. Shutemov spin_lock(&sbinfo->shrinklist_lock); 559779750d2SKirill A. Shutemov list_splice_tail(&list, &sbinfo->shrinklist); 560779750d2SKirill A. Shutemov sbinfo->shrinklist_len -= removed; 561779750d2SKirill A. Shutemov spin_unlock(&sbinfo->shrinklist_lock); 562779750d2SKirill A. Shutemov 563779750d2SKirill A. Shutemov return split; 564779750d2SKirill A. Shutemov } 565779750d2SKirill A. Shutemov 566779750d2SKirill A. Shutemov static long shmem_unused_huge_scan(struct super_block *sb, 567779750d2SKirill A. Shutemov struct shrink_control *sc) 568779750d2SKirill A. Shutemov { 569779750d2SKirill A. Shutemov struct shmem_sb_info *sbinfo = SHMEM_SB(sb); 570779750d2SKirill A. Shutemov 571779750d2SKirill A. Shutemov if (!READ_ONCE(sbinfo->shrinklist_len)) 572779750d2SKirill A. Shutemov return SHRINK_STOP; 573779750d2SKirill A. Shutemov 574779750d2SKirill A. Shutemov return shmem_unused_huge_shrink(sbinfo, sc, 0); 575779750d2SKirill A. Shutemov } 576779750d2SKirill A. Shutemov 577779750d2SKirill A. Shutemov static long shmem_unused_huge_count(struct super_block *sb, 578779750d2SKirill A. Shutemov struct shrink_control *sc) 579779750d2SKirill A. Shutemov { 580779750d2SKirill A. Shutemov struct shmem_sb_info *sbinfo = SHMEM_SB(sb); 581779750d2SKirill A. Shutemov return READ_ONCE(sbinfo->shrinklist_len); 582779750d2SKirill A. Shutemov } 583e496cf3dSKirill A. Shutemov #else /* !CONFIG_TRANSPARENT_HUGE_PAGECACHE */ 5845a6e75f8SKirill A. Shutemov 5855a6e75f8SKirill A. Shutemov #define shmem_huge SHMEM_HUGE_DENY 5865a6e75f8SKirill A. Shutemov 587779750d2SKirill A. Shutemov static unsigned long shmem_unused_huge_shrink(struct shmem_sb_info *sbinfo, 588779750d2SKirill A. Shutemov struct shrink_control *sc, unsigned long nr_to_split) 589779750d2SKirill A. Shutemov { 590779750d2SKirill A. Shutemov return 0; 591779750d2SKirill A. Shutemov } 592e496cf3dSKirill A. Shutemov #endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE */ 5935a6e75f8SKirill A. Shutemov 59489fdcd26SYang Shi static inline bool is_huge_enabled(struct shmem_sb_info *sbinfo) 59589fdcd26SYang Shi { 59689fdcd26SYang Shi if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE) && 59789fdcd26SYang Shi (shmem_huge == SHMEM_HUGE_FORCE || sbinfo->huge) && 59889fdcd26SYang Shi shmem_huge != SHMEM_HUGE_DENY) 59989fdcd26SYang Shi return true; 60089fdcd26SYang Shi return false; 60189fdcd26SYang Shi } 60289fdcd26SYang Shi 6035a6e75f8SKirill A. Shutemov /* 60446f65ec1SHugh Dickins * Like add_to_page_cache_locked, but error if expected item has gone. 60546f65ec1SHugh Dickins */ 60646f65ec1SHugh Dickins static int shmem_add_to_page_cache(struct page *page, 60746f65ec1SHugh Dickins struct address_space *mapping, 608552446a4SMatthew Wilcox pgoff_t index, void *expected, gfp_t gfp) 60946f65ec1SHugh Dickins { 610552446a4SMatthew Wilcox XA_STATE_ORDER(xas, &mapping->i_pages, index, compound_order(page)); 611552446a4SMatthew Wilcox unsigned long i = 0; 612d8c6546bSMatthew Wilcox (Oracle) unsigned long nr = compound_nr(page); 61346f65ec1SHugh Dickins 614800d8c63SKirill A. Shutemov VM_BUG_ON_PAGE(PageTail(page), page); 615800d8c63SKirill A. Shutemov VM_BUG_ON_PAGE(index != round_down(index, nr), page); 616309381feSSasha Levin VM_BUG_ON_PAGE(!PageLocked(page), page); 617309381feSSasha Levin VM_BUG_ON_PAGE(!PageSwapBacked(page), page); 618800d8c63SKirill A. Shutemov VM_BUG_ON(expected && PageTransHuge(page)); 61946f65ec1SHugh Dickins 620800d8c63SKirill A. Shutemov page_ref_add(page, nr); 62146f65ec1SHugh Dickins page->mapping = mapping; 62246f65ec1SHugh Dickins page->index = index; 62346f65ec1SHugh Dickins 624552446a4SMatthew Wilcox do { 625552446a4SMatthew Wilcox void *entry; 626552446a4SMatthew Wilcox xas_lock_irq(&xas); 627552446a4SMatthew Wilcox entry = xas_find_conflict(&xas); 628552446a4SMatthew Wilcox if (entry != expected) 629552446a4SMatthew Wilcox xas_set_err(&xas, -EEXIST); 630552446a4SMatthew Wilcox xas_create_range(&xas); 631552446a4SMatthew Wilcox if (xas_error(&xas)) 632552446a4SMatthew Wilcox goto unlock; 633552446a4SMatthew Wilcox next: 6344101196bSMatthew Wilcox (Oracle) xas_store(&xas, page); 635552446a4SMatthew Wilcox if (++i < nr) { 636552446a4SMatthew Wilcox xas_next(&xas); 637552446a4SMatthew Wilcox goto next; 638552446a4SMatthew Wilcox } 639800d8c63SKirill A. Shutemov if (PageTransHuge(page)) { 640800d8c63SKirill A. Shutemov count_vm_event(THP_FILE_ALLOC); 64111fb9989SMel Gorman __inc_node_page_state(page, NR_SHMEM_THPS); 642552446a4SMatthew Wilcox } 643552446a4SMatthew Wilcox mapping->nrpages += nr; 64411fb9989SMel Gorman __mod_node_page_state(page_pgdat(page), NR_FILE_PAGES, nr); 64511fb9989SMel Gorman __mod_node_page_state(page_pgdat(page), NR_SHMEM, nr); 646552446a4SMatthew Wilcox unlock: 647552446a4SMatthew Wilcox xas_unlock_irq(&xas); 648552446a4SMatthew Wilcox } while (xas_nomem(&xas, gfp)); 649552446a4SMatthew Wilcox 650552446a4SMatthew Wilcox if (xas_error(&xas)) { 65146f65ec1SHugh Dickins page->mapping = NULL; 652800d8c63SKirill A. Shutemov page_ref_sub(page, nr); 653552446a4SMatthew Wilcox return xas_error(&xas); 65446f65ec1SHugh Dickins } 655552446a4SMatthew Wilcox 656552446a4SMatthew Wilcox return 0; 65746f65ec1SHugh Dickins } 65846f65ec1SHugh Dickins 65946f65ec1SHugh Dickins /* 6606922c0c7SHugh Dickins * Like delete_from_page_cache, but substitutes swap for page. 6616922c0c7SHugh Dickins */ 6626922c0c7SHugh Dickins static void shmem_delete_from_page_cache(struct page *page, void *radswap) 6636922c0c7SHugh Dickins { 6646922c0c7SHugh Dickins struct address_space *mapping = page->mapping; 6656922c0c7SHugh Dickins int error; 6666922c0c7SHugh Dickins 667800d8c63SKirill A. Shutemov VM_BUG_ON_PAGE(PageCompound(page), page); 668800d8c63SKirill A. Shutemov 669b93b0163SMatthew Wilcox xa_lock_irq(&mapping->i_pages); 67062f945b6SMatthew Wilcox error = shmem_replace_entry(mapping, page->index, page, radswap); 6716922c0c7SHugh Dickins page->mapping = NULL; 6726922c0c7SHugh Dickins mapping->nrpages--; 67311fb9989SMel Gorman __dec_node_page_state(page, NR_FILE_PAGES); 67411fb9989SMel Gorman __dec_node_page_state(page, NR_SHMEM); 675b93b0163SMatthew Wilcox xa_unlock_irq(&mapping->i_pages); 67609cbfeafSKirill A. Shutemov put_page(page); 6776922c0c7SHugh Dickins BUG_ON(error); 6786922c0c7SHugh Dickins } 6796922c0c7SHugh Dickins 6806922c0c7SHugh Dickins /* 681c121d3bbSMatthew Wilcox * Remove swap entry from page cache, free the swap and its page cache. 6827a5d0fbbSHugh Dickins */ 6837a5d0fbbSHugh Dickins static int shmem_free_swap(struct address_space *mapping, 6847a5d0fbbSHugh Dickins pgoff_t index, void *radswap) 6857a5d0fbbSHugh Dickins { 6866dbaf22cSJohannes Weiner void *old; 6877a5d0fbbSHugh Dickins 68855f3f7eaSMatthew Wilcox old = xa_cmpxchg_irq(&mapping->i_pages, index, radswap, NULL, 0); 6896dbaf22cSJohannes Weiner if (old != radswap) 6906dbaf22cSJohannes Weiner return -ENOENT; 6917a5d0fbbSHugh Dickins free_swap_and_cache(radix_to_swp_entry(radswap)); 6926dbaf22cSJohannes Weiner return 0; 6937a5d0fbbSHugh Dickins } 6947a5d0fbbSHugh Dickins 6957a5d0fbbSHugh Dickins /* 6966a15a370SVlastimil Babka * Determine (in bytes) how many of the shmem object's pages mapped by the 69748131e03SVlastimil Babka * given offsets are swapped out. 6986a15a370SVlastimil Babka * 699b93b0163SMatthew Wilcox * This is safe to call without i_mutex or the i_pages lock thanks to RCU, 7006a15a370SVlastimil Babka * as long as the inode doesn't go away and racy results are not a problem. 7016a15a370SVlastimil Babka */ 70248131e03SVlastimil Babka unsigned long shmem_partial_swap_usage(struct address_space *mapping, 70348131e03SVlastimil Babka pgoff_t start, pgoff_t end) 7046a15a370SVlastimil Babka { 7057ae3424fSMatthew Wilcox XA_STATE(xas, &mapping->i_pages, start); 7066a15a370SVlastimil Babka struct page *page; 70748131e03SVlastimil Babka unsigned long swapped = 0; 7086a15a370SVlastimil Babka 7096a15a370SVlastimil Babka rcu_read_lock(); 7107ae3424fSMatthew Wilcox xas_for_each(&xas, page, end - 1) { 7117ae3424fSMatthew Wilcox if (xas_retry(&xas, page)) 7122cf938aaSMatthew Wilcox continue; 7133159f943SMatthew Wilcox if (xa_is_value(page)) 7146a15a370SVlastimil Babka swapped++; 7156a15a370SVlastimil Babka 7166a15a370SVlastimil Babka if (need_resched()) { 7177ae3424fSMatthew Wilcox xas_pause(&xas); 7186a15a370SVlastimil Babka cond_resched_rcu(); 7196a15a370SVlastimil Babka } 7206a15a370SVlastimil Babka } 7216a15a370SVlastimil Babka 7226a15a370SVlastimil Babka rcu_read_unlock(); 7236a15a370SVlastimil Babka 7246a15a370SVlastimil Babka return swapped << PAGE_SHIFT; 7256a15a370SVlastimil Babka } 7266a15a370SVlastimil Babka 7276a15a370SVlastimil Babka /* 72848131e03SVlastimil Babka * Determine (in bytes) how many of the shmem object's pages mapped by the 72948131e03SVlastimil Babka * given vma is swapped out. 73048131e03SVlastimil Babka * 731b93b0163SMatthew Wilcox * This is safe to call without i_mutex or the i_pages lock thanks to RCU, 73248131e03SVlastimil Babka * as long as the inode doesn't go away and racy results are not a problem. 73348131e03SVlastimil Babka */ 73448131e03SVlastimil Babka unsigned long shmem_swap_usage(struct vm_area_struct *vma) 73548131e03SVlastimil Babka { 73648131e03SVlastimil Babka struct inode *inode = file_inode(vma->vm_file); 73748131e03SVlastimil Babka struct shmem_inode_info *info = SHMEM_I(inode); 73848131e03SVlastimil Babka struct address_space *mapping = inode->i_mapping; 73948131e03SVlastimil Babka unsigned long swapped; 74048131e03SVlastimil Babka 74148131e03SVlastimil Babka /* Be careful as we don't hold info->lock */ 74248131e03SVlastimil Babka swapped = READ_ONCE(info->swapped); 74348131e03SVlastimil Babka 74448131e03SVlastimil Babka /* 74548131e03SVlastimil Babka * The easier cases are when the shmem object has nothing in swap, or 74648131e03SVlastimil Babka * the vma maps it whole. Then we can simply use the stats that we 74748131e03SVlastimil Babka * already track. 74848131e03SVlastimil Babka */ 74948131e03SVlastimil Babka if (!swapped) 75048131e03SVlastimil Babka return 0; 75148131e03SVlastimil Babka 75248131e03SVlastimil Babka if (!vma->vm_pgoff && vma->vm_end - vma->vm_start >= inode->i_size) 75348131e03SVlastimil Babka return swapped << PAGE_SHIFT; 75448131e03SVlastimil Babka 75548131e03SVlastimil Babka /* Here comes the more involved part */ 75648131e03SVlastimil Babka return shmem_partial_swap_usage(mapping, 75748131e03SVlastimil Babka linear_page_index(vma, vma->vm_start), 75848131e03SVlastimil Babka linear_page_index(vma, vma->vm_end)); 75948131e03SVlastimil Babka } 76048131e03SVlastimil Babka 76148131e03SVlastimil Babka /* 76224513264SHugh Dickins * SysV IPC SHM_UNLOCK restore Unevictable pages to their evictable lists. 76324513264SHugh Dickins */ 76424513264SHugh Dickins void shmem_unlock_mapping(struct address_space *mapping) 76524513264SHugh Dickins { 76624513264SHugh Dickins struct pagevec pvec; 76724513264SHugh Dickins pgoff_t indices[PAGEVEC_SIZE]; 76824513264SHugh Dickins pgoff_t index = 0; 76924513264SHugh Dickins 77086679820SMel Gorman pagevec_init(&pvec); 77124513264SHugh Dickins /* 77224513264SHugh Dickins * Minor point, but we might as well stop if someone else SHM_LOCKs it. 77324513264SHugh Dickins */ 77424513264SHugh Dickins while (!mapping_unevictable(mapping)) { 77524513264SHugh Dickins /* 77624513264SHugh Dickins * Avoid pagevec_lookup(): find_get_pages() returns 0 as if it 77724513264SHugh Dickins * has finished, if it hits a row of PAGEVEC_SIZE swap entries. 77824513264SHugh Dickins */ 7790cd6144aSJohannes Weiner pvec.nr = find_get_entries(mapping, index, 78024513264SHugh Dickins PAGEVEC_SIZE, pvec.pages, indices); 78124513264SHugh Dickins if (!pvec.nr) 78224513264SHugh Dickins break; 78324513264SHugh Dickins index = indices[pvec.nr - 1] + 1; 7840cd6144aSJohannes Weiner pagevec_remove_exceptionals(&pvec); 78564e3d12fSKuo-Hsin Yang check_move_unevictable_pages(&pvec); 78624513264SHugh Dickins pagevec_release(&pvec); 78724513264SHugh Dickins cond_resched(); 78824513264SHugh Dickins } 7897a5d0fbbSHugh Dickins } 7907a5d0fbbSHugh Dickins 7917a5d0fbbSHugh Dickins /* 7927f4446eeSMatthew Wilcox * Remove range of pages and swap entries from page cache, and free them. 7931635f6a7SHugh Dickins * If !unfalloc, truncate or punch hole; if unfalloc, undo failed fallocate. 7947a5d0fbbSHugh Dickins */ 7951635f6a7SHugh Dickins static void shmem_undo_range(struct inode *inode, loff_t lstart, loff_t lend, 7961635f6a7SHugh Dickins bool unfalloc) 7971da177e4SLinus Torvalds { 798285b2c4fSHugh Dickins struct address_space *mapping = inode->i_mapping; 7991da177e4SLinus Torvalds struct shmem_inode_info *info = SHMEM_I(inode); 80009cbfeafSKirill A. Shutemov pgoff_t start = (lstart + PAGE_SIZE - 1) >> PAGE_SHIFT; 80109cbfeafSKirill A. Shutemov pgoff_t end = (lend + 1) >> PAGE_SHIFT; 80209cbfeafSKirill A. Shutemov unsigned int partial_start = lstart & (PAGE_SIZE - 1); 80309cbfeafSKirill A. Shutemov unsigned int partial_end = (lend + 1) & (PAGE_SIZE - 1); 804bda97eabSHugh Dickins struct pagevec pvec; 8057a5d0fbbSHugh Dickins pgoff_t indices[PAGEVEC_SIZE]; 8067a5d0fbbSHugh Dickins long nr_swaps_freed = 0; 807285b2c4fSHugh Dickins pgoff_t index; 808bda97eabSHugh Dickins int i; 8091da177e4SLinus Torvalds 81083e4fa9cSHugh Dickins if (lend == -1) 81183e4fa9cSHugh Dickins end = -1; /* unsigned, so actually very big */ 812bda97eabSHugh Dickins 81386679820SMel Gorman pagevec_init(&pvec); 814bda97eabSHugh Dickins index = start; 81583e4fa9cSHugh Dickins while (index < end) { 8160cd6144aSJohannes Weiner pvec.nr = find_get_entries(mapping, index, 81783e4fa9cSHugh Dickins min(end - index, (pgoff_t)PAGEVEC_SIZE), 8187a5d0fbbSHugh Dickins pvec.pages, indices); 8197a5d0fbbSHugh Dickins if (!pvec.nr) 8207a5d0fbbSHugh Dickins break; 821bda97eabSHugh Dickins for (i = 0; i < pagevec_count(&pvec); i++) { 822bda97eabSHugh Dickins struct page *page = pvec.pages[i]; 823bda97eabSHugh Dickins 8247a5d0fbbSHugh Dickins index = indices[i]; 82583e4fa9cSHugh Dickins if (index >= end) 826bda97eabSHugh Dickins break; 827bda97eabSHugh Dickins 8283159f943SMatthew Wilcox if (xa_is_value(page)) { 8291635f6a7SHugh Dickins if (unfalloc) 8301635f6a7SHugh Dickins continue; 8317a5d0fbbSHugh Dickins nr_swaps_freed += !shmem_free_swap(mapping, 8327a5d0fbbSHugh Dickins index, page); 8337a5d0fbbSHugh Dickins continue; 8347a5d0fbbSHugh Dickins } 8357a5d0fbbSHugh Dickins 836800d8c63SKirill A. Shutemov VM_BUG_ON_PAGE(page_to_pgoff(page) != index, page); 837800d8c63SKirill A. Shutemov 838bda97eabSHugh Dickins if (!trylock_page(page)) 839bda97eabSHugh Dickins continue; 840800d8c63SKirill A. Shutemov 841800d8c63SKirill A. Shutemov if (PageTransTail(page)) { 842800d8c63SKirill A. Shutemov /* Middle of THP: zero out the page */ 843800d8c63SKirill A. Shutemov clear_highpage(page); 844800d8c63SKirill A. Shutemov unlock_page(page); 845800d8c63SKirill A. Shutemov continue; 846800d8c63SKirill A. Shutemov } else if (PageTransHuge(page)) { 847800d8c63SKirill A. Shutemov if (index == round_down(end, HPAGE_PMD_NR)) { 848800d8c63SKirill A. Shutemov /* 849800d8c63SKirill A. Shutemov * Range ends in the middle of THP: 850800d8c63SKirill A. Shutemov * zero out the page 851800d8c63SKirill A. Shutemov */ 852800d8c63SKirill A. Shutemov clear_highpage(page); 853800d8c63SKirill A. Shutemov unlock_page(page); 854800d8c63SKirill A. Shutemov continue; 855800d8c63SKirill A. Shutemov } 856800d8c63SKirill A. Shutemov index += HPAGE_PMD_NR - 1; 857800d8c63SKirill A. Shutemov i += HPAGE_PMD_NR - 1; 858800d8c63SKirill A. Shutemov } 859800d8c63SKirill A. Shutemov 8601635f6a7SHugh Dickins if (!unfalloc || !PageUptodate(page)) { 861800d8c63SKirill A. Shutemov VM_BUG_ON_PAGE(PageTail(page), page); 862800d8c63SKirill A. Shutemov if (page_mapping(page) == mapping) { 863309381feSSasha Levin VM_BUG_ON_PAGE(PageWriteback(page), page); 864bda97eabSHugh Dickins truncate_inode_page(mapping, page); 8657a5d0fbbSHugh Dickins } 8661635f6a7SHugh Dickins } 867bda97eabSHugh Dickins unlock_page(page); 868bda97eabSHugh Dickins } 8690cd6144aSJohannes Weiner pagevec_remove_exceptionals(&pvec); 87024513264SHugh Dickins pagevec_release(&pvec); 871bda97eabSHugh Dickins cond_resched(); 872bda97eabSHugh Dickins index++; 873bda97eabSHugh Dickins } 874bda97eabSHugh Dickins 87583e4fa9cSHugh Dickins if (partial_start) { 876bda97eabSHugh Dickins struct page *page = NULL; 8779e18eb29SAndres Lagar-Cavilla shmem_getpage(inode, start - 1, &page, SGP_READ); 878bda97eabSHugh Dickins if (page) { 87909cbfeafSKirill A. Shutemov unsigned int top = PAGE_SIZE; 88083e4fa9cSHugh Dickins if (start > end) { 88183e4fa9cSHugh Dickins top = partial_end; 88283e4fa9cSHugh Dickins partial_end = 0; 88383e4fa9cSHugh Dickins } 88483e4fa9cSHugh Dickins zero_user_segment(page, partial_start, top); 885bda97eabSHugh Dickins set_page_dirty(page); 886bda97eabSHugh Dickins unlock_page(page); 88709cbfeafSKirill A. Shutemov put_page(page); 888bda97eabSHugh Dickins } 889bda97eabSHugh Dickins } 89083e4fa9cSHugh Dickins if (partial_end) { 89183e4fa9cSHugh Dickins struct page *page = NULL; 8929e18eb29SAndres Lagar-Cavilla shmem_getpage(inode, end, &page, SGP_READ); 89383e4fa9cSHugh Dickins if (page) { 89483e4fa9cSHugh Dickins zero_user_segment(page, 0, partial_end); 89583e4fa9cSHugh Dickins set_page_dirty(page); 89683e4fa9cSHugh Dickins unlock_page(page); 89709cbfeafSKirill A. Shutemov put_page(page); 89883e4fa9cSHugh Dickins } 89983e4fa9cSHugh Dickins } 90083e4fa9cSHugh Dickins if (start >= end) 90183e4fa9cSHugh Dickins return; 902bda97eabSHugh Dickins 903bda97eabSHugh Dickins index = start; 904b1a36650SHugh Dickins while (index < end) { 905bda97eabSHugh Dickins cond_resched(); 9060cd6144aSJohannes Weiner 9070cd6144aSJohannes Weiner pvec.nr = find_get_entries(mapping, index, 90883e4fa9cSHugh Dickins min(end - index, (pgoff_t)PAGEVEC_SIZE), 9097a5d0fbbSHugh Dickins pvec.pages, indices); 9107a5d0fbbSHugh Dickins if (!pvec.nr) { 911b1a36650SHugh Dickins /* If all gone or hole-punch or unfalloc, we're done */ 912b1a36650SHugh Dickins if (index == start || end != -1) 913bda97eabSHugh Dickins break; 914b1a36650SHugh Dickins /* But if truncating, restart to make sure all gone */ 915bda97eabSHugh Dickins index = start; 916bda97eabSHugh Dickins continue; 917bda97eabSHugh Dickins } 918bda97eabSHugh Dickins for (i = 0; i < pagevec_count(&pvec); i++) { 919bda97eabSHugh Dickins struct page *page = pvec.pages[i]; 920bda97eabSHugh Dickins 9217a5d0fbbSHugh Dickins index = indices[i]; 92283e4fa9cSHugh Dickins if (index >= end) 923bda97eabSHugh Dickins break; 924bda97eabSHugh Dickins 9253159f943SMatthew Wilcox if (xa_is_value(page)) { 9261635f6a7SHugh Dickins if (unfalloc) 9271635f6a7SHugh Dickins continue; 928b1a36650SHugh Dickins if (shmem_free_swap(mapping, index, page)) { 929b1a36650SHugh Dickins /* Swap was replaced by page: retry */ 930b1a36650SHugh Dickins index--; 931b1a36650SHugh Dickins break; 932b1a36650SHugh Dickins } 933b1a36650SHugh Dickins nr_swaps_freed++; 9347a5d0fbbSHugh Dickins continue; 9357a5d0fbbSHugh Dickins } 9367a5d0fbbSHugh Dickins 937bda97eabSHugh Dickins lock_page(page); 938800d8c63SKirill A. Shutemov 939800d8c63SKirill A. Shutemov if (PageTransTail(page)) { 940800d8c63SKirill A. Shutemov /* Middle of THP: zero out the page */ 941800d8c63SKirill A. Shutemov clear_highpage(page); 942800d8c63SKirill A. Shutemov unlock_page(page); 943800d8c63SKirill A. Shutemov /* 944800d8c63SKirill A. Shutemov * Partial thp truncate due 'start' in middle 945800d8c63SKirill A. Shutemov * of THP: don't need to look on these pages 946800d8c63SKirill A. Shutemov * again on !pvec.nr restart. 947800d8c63SKirill A. Shutemov */ 948800d8c63SKirill A. Shutemov if (index != round_down(end, HPAGE_PMD_NR)) 949800d8c63SKirill A. Shutemov start++; 950800d8c63SKirill A. Shutemov continue; 951800d8c63SKirill A. Shutemov } else if (PageTransHuge(page)) { 952800d8c63SKirill A. Shutemov if (index == round_down(end, HPAGE_PMD_NR)) { 953800d8c63SKirill A. Shutemov /* 954800d8c63SKirill A. Shutemov * Range ends in the middle of THP: 955800d8c63SKirill A. Shutemov * zero out the page 956800d8c63SKirill A. Shutemov */ 957800d8c63SKirill A. Shutemov clear_highpage(page); 958800d8c63SKirill A. Shutemov unlock_page(page); 959800d8c63SKirill A. Shutemov continue; 960800d8c63SKirill A. Shutemov } 961800d8c63SKirill A. Shutemov index += HPAGE_PMD_NR - 1; 962800d8c63SKirill A. Shutemov i += HPAGE_PMD_NR - 1; 963800d8c63SKirill A. Shutemov } 964800d8c63SKirill A. Shutemov 9651635f6a7SHugh Dickins if (!unfalloc || !PageUptodate(page)) { 966800d8c63SKirill A. Shutemov VM_BUG_ON_PAGE(PageTail(page), page); 967800d8c63SKirill A. Shutemov if (page_mapping(page) == mapping) { 968309381feSSasha Levin VM_BUG_ON_PAGE(PageWriteback(page), page); 969bda97eabSHugh Dickins truncate_inode_page(mapping, page); 970b1a36650SHugh Dickins } else { 971b1a36650SHugh Dickins /* Page was replaced by swap: retry */ 972b1a36650SHugh Dickins unlock_page(page); 973b1a36650SHugh Dickins index--; 974b1a36650SHugh Dickins break; 9757a5d0fbbSHugh Dickins } 9761635f6a7SHugh Dickins } 977bda97eabSHugh Dickins unlock_page(page); 978bda97eabSHugh Dickins } 9790cd6144aSJohannes Weiner pagevec_remove_exceptionals(&pvec); 98024513264SHugh Dickins pagevec_release(&pvec); 981bda97eabSHugh Dickins index++; 982bda97eabSHugh Dickins } 98394c1e62dSHugh Dickins 9844595ef88SKirill A. Shutemov spin_lock_irq(&info->lock); 9857a5d0fbbSHugh Dickins info->swapped -= nr_swaps_freed; 9861da177e4SLinus Torvalds shmem_recalc_inode(inode); 9874595ef88SKirill A. Shutemov spin_unlock_irq(&info->lock); 9881635f6a7SHugh Dickins } 9891da177e4SLinus Torvalds 9901635f6a7SHugh Dickins void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend) 9911635f6a7SHugh Dickins { 9921635f6a7SHugh Dickins shmem_undo_range(inode, lstart, lend, false); 993078cd827SDeepa Dinamani inode->i_ctime = inode->i_mtime = current_time(inode); 9941da177e4SLinus Torvalds } 99594c1e62dSHugh Dickins EXPORT_SYMBOL_GPL(shmem_truncate_range); 9961da177e4SLinus Torvalds 997a528d35eSDavid Howells static int shmem_getattr(const struct path *path, struct kstat *stat, 998a528d35eSDavid Howells u32 request_mask, unsigned int query_flags) 99944a30220SYu Zhao { 1000a528d35eSDavid Howells struct inode *inode = path->dentry->d_inode; 100144a30220SYu Zhao struct shmem_inode_info *info = SHMEM_I(inode); 100289fdcd26SYang Shi struct shmem_sb_info *sb_info = SHMEM_SB(inode->i_sb); 100344a30220SYu Zhao 1004d0424c42SHugh Dickins if (info->alloced - info->swapped != inode->i_mapping->nrpages) { 10054595ef88SKirill A. Shutemov spin_lock_irq(&info->lock); 100644a30220SYu Zhao shmem_recalc_inode(inode); 10074595ef88SKirill A. Shutemov spin_unlock_irq(&info->lock); 1008d0424c42SHugh Dickins } 100944a30220SYu Zhao generic_fillattr(inode, stat); 101089fdcd26SYang Shi 101189fdcd26SYang Shi if (is_huge_enabled(sb_info)) 101289fdcd26SYang Shi stat->blksize = HPAGE_PMD_SIZE; 101389fdcd26SYang Shi 101444a30220SYu Zhao return 0; 101544a30220SYu Zhao } 101644a30220SYu Zhao 101794c1e62dSHugh Dickins static int shmem_setattr(struct dentry *dentry, struct iattr *attr) 10181da177e4SLinus Torvalds { 101975c3cfa8SDavid Howells struct inode *inode = d_inode(dentry); 102040e041a2SDavid Herrmann struct shmem_inode_info *info = SHMEM_I(inode); 1021779750d2SKirill A. Shutemov struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb); 10221da177e4SLinus Torvalds int error; 10231da177e4SLinus Torvalds 102431051c85SJan Kara error = setattr_prepare(dentry, attr); 1025db78b877SChristoph Hellwig if (error) 1026db78b877SChristoph Hellwig return error; 1027db78b877SChristoph Hellwig 102894c1e62dSHugh Dickins if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) { 102994c1e62dSHugh Dickins loff_t oldsize = inode->i_size; 103094c1e62dSHugh Dickins loff_t newsize = attr->ia_size; 10313889e6e7Snpiggin@suse.de 103240e041a2SDavid Herrmann /* protected by i_mutex */ 103340e041a2SDavid Herrmann if ((newsize < oldsize && (info->seals & F_SEAL_SHRINK)) || 103440e041a2SDavid Herrmann (newsize > oldsize && (info->seals & F_SEAL_GROW))) 103540e041a2SDavid Herrmann return -EPERM; 103640e041a2SDavid Herrmann 103794c1e62dSHugh Dickins if (newsize != oldsize) { 103877142517SKonstantin Khlebnikov error = shmem_reacct_size(SHMEM_I(inode)->flags, 103977142517SKonstantin Khlebnikov oldsize, newsize); 104077142517SKonstantin Khlebnikov if (error) 104177142517SKonstantin Khlebnikov return error; 104294c1e62dSHugh Dickins i_size_write(inode, newsize); 1043078cd827SDeepa Dinamani inode->i_ctime = inode->i_mtime = current_time(inode); 104494c1e62dSHugh Dickins } 1045afa2db2fSJosef Bacik if (newsize <= oldsize) { 104694c1e62dSHugh Dickins loff_t holebegin = round_up(newsize, PAGE_SIZE); 1047d0424c42SHugh Dickins if (oldsize > holebegin) 1048d0424c42SHugh Dickins unmap_mapping_range(inode->i_mapping, 1049d0424c42SHugh Dickins holebegin, 0, 1); 1050d0424c42SHugh Dickins if (info->alloced) 1051d0424c42SHugh Dickins shmem_truncate_range(inode, 1052d0424c42SHugh Dickins newsize, (loff_t)-1); 105394c1e62dSHugh Dickins /* unmap again to remove racily COWed private pages */ 1054d0424c42SHugh Dickins if (oldsize > holebegin) 1055d0424c42SHugh Dickins unmap_mapping_range(inode->i_mapping, 1056d0424c42SHugh Dickins holebegin, 0, 1); 1057779750d2SKirill A. Shutemov 1058779750d2SKirill A. Shutemov /* 1059779750d2SKirill A. Shutemov * Part of the huge page can be beyond i_size: subject 1060779750d2SKirill A. Shutemov * to shrink under memory pressure. 1061779750d2SKirill A. Shutemov */ 1062779750d2SKirill A. Shutemov if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE)) { 1063779750d2SKirill A. Shutemov spin_lock(&sbinfo->shrinklist_lock); 1064d041353dSCong Wang /* 1065d041353dSCong Wang * _careful to defend against unlocked access to 1066d041353dSCong Wang * ->shrink_list in shmem_unused_huge_shrink() 1067d041353dSCong Wang */ 1068d041353dSCong Wang if (list_empty_careful(&info->shrinklist)) { 1069779750d2SKirill A. Shutemov list_add_tail(&info->shrinklist, 1070779750d2SKirill A. Shutemov &sbinfo->shrinklist); 1071779750d2SKirill A. Shutemov sbinfo->shrinklist_len++; 1072779750d2SKirill A. Shutemov } 1073779750d2SKirill A. Shutemov spin_unlock(&sbinfo->shrinklist_lock); 1074779750d2SKirill A. Shutemov } 107594c1e62dSHugh Dickins } 10761da177e4SLinus Torvalds } 10771da177e4SLinus Torvalds 10786a1a90adSChristoph Hellwig setattr_copy(inode, attr); 1079db78b877SChristoph Hellwig if (attr->ia_valid & ATTR_MODE) 1080feda821eSChristoph Hellwig error = posix_acl_chmod(inode, inode->i_mode); 10811da177e4SLinus Torvalds return error; 10821da177e4SLinus Torvalds } 10831da177e4SLinus Torvalds 10841f895f75SAl Viro static void shmem_evict_inode(struct inode *inode) 10851da177e4SLinus Torvalds { 10861da177e4SLinus Torvalds struct shmem_inode_info *info = SHMEM_I(inode); 1087779750d2SKirill A. Shutemov struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb); 10881da177e4SLinus Torvalds 10893889e6e7Snpiggin@suse.de if (inode->i_mapping->a_ops == &shmem_aops) { 10901da177e4SLinus Torvalds shmem_unacct_size(info->flags, inode->i_size); 10911da177e4SLinus Torvalds inode->i_size = 0; 10923889e6e7Snpiggin@suse.de shmem_truncate_range(inode, 0, (loff_t)-1); 1093779750d2SKirill A. Shutemov if (!list_empty(&info->shrinklist)) { 1094779750d2SKirill A. Shutemov spin_lock(&sbinfo->shrinklist_lock); 1095779750d2SKirill A. Shutemov if (!list_empty(&info->shrinklist)) { 1096779750d2SKirill A. Shutemov list_del_init(&info->shrinklist); 1097779750d2SKirill A. Shutemov sbinfo->shrinklist_len--; 1098779750d2SKirill A. Shutemov } 1099779750d2SKirill A. Shutemov spin_unlock(&sbinfo->shrinklist_lock); 1100779750d2SKirill A. Shutemov } 1101af53d3e9SHugh Dickins while (!list_empty(&info->swaplist)) { 1102af53d3e9SHugh Dickins /* Wait while shmem_unuse() is scanning this inode... */ 1103af53d3e9SHugh Dickins wait_var_event(&info->stop_eviction, 1104af53d3e9SHugh Dickins !atomic_read(&info->stop_eviction)); 1105cb5f7b9aSHugh Dickins mutex_lock(&shmem_swaplist_mutex); 1106af53d3e9SHugh Dickins /* ...but beware of the race if we peeked too early */ 1107af53d3e9SHugh Dickins if (!atomic_read(&info->stop_eviction)) 11081da177e4SLinus Torvalds list_del_init(&info->swaplist); 1109cb5f7b9aSHugh Dickins mutex_unlock(&shmem_swaplist_mutex); 11101da177e4SLinus Torvalds } 11113ed47db3SAl Viro } 1112b09e0fa4SEric Paris 111338f38657SAristeu Rozanski simple_xattrs_free(&info->xattrs); 11140f3c42f5SHugh Dickins WARN_ON(inode->i_blocks); 11155b04c689SPavel Emelyanov shmem_free_inode(inode->i_sb); 1116dbd5768fSJan Kara clear_inode(inode); 11171da177e4SLinus Torvalds } 11181da177e4SLinus Torvalds 1119b56a2d8aSVineeth Remanan Pillai extern struct swap_info_struct *swap_info[]; 1120b56a2d8aSVineeth Remanan Pillai 1121b56a2d8aSVineeth Remanan Pillai static int shmem_find_swap_entries(struct address_space *mapping, 1122b56a2d8aSVineeth Remanan Pillai pgoff_t start, unsigned int nr_entries, 1123b56a2d8aSVineeth Remanan Pillai struct page **entries, pgoff_t *indices, 112487039546SHugh Dickins unsigned int type, bool frontswap) 1125478922e2SMatthew Wilcox { 1126b56a2d8aSVineeth Remanan Pillai XA_STATE(xas, &mapping->i_pages, start); 1127b56a2d8aSVineeth Remanan Pillai struct page *page; 112887039546SHugh Dickins swp_entry_t entry; 1129b56a2d8aSVineeth Remanan Pillai unsigned int ret = 0; 1130b56a2d8aSVineeth Remanan Pillai 1131b56a2d8aSVineeth Remanan Pillai if (!nr_entries) 1132b56a2d8aSVineeth Remanan Pillai return 0; 1133478922e2SMatthew Wilcox 1134478922e2SMatthew Wilcox rcu_read_lock(); 1135b56a2d8aSVineeth Remanan Pillai xas_for_each(&xas, page, ULONG_MAX) { 1136b56a2d8aSVineeth Remanan Pillai if (xas_retry(&xas, page)) 11375b9c98f3SMike Kravetz continue; 1138b56a2d8aSVineeth Remanan Pillai 1139b56a2d8aSVineeth Remanan Pillai if (!xa_is_value(page)) 1140478922e2SMatthew Wilcox continue; 1141b56a2d8aSVineeth Remanan Pillai 114287039546SHugh Dickins entry = radix_to_swp_entry(page); 114387039546SHugh Dickins if (swp_type(entry) != type) 1144b56a2d8aSVineeth Remanan Pillai continue; 114587039546SHugh Dickins if (frontswap && 114687039546SHugh Dickins !frontswap_test(swap_info[type], swp_offset(entry))) 114787039546SHugh Dickins continue; 1148b56a2d8aSVineeth Remanan Pillai 1149b56a2d8aSVineeth Remanan Pillai indices[ret] = xas.xa_index; 1150b56a2d8aSVineeth Remanan Pillai entries[ret] = page; 1151b56a2d8aSVineeth Remanan Pillai 1152b56a2d8aSVineeth Remanan Pillai if (need_resched()) { 1153e21a2955SMatthew Wilcox xas_pause(&xas); 1154478922e2SMatthew Wilcox cond_resched_rcu(); 1155478922e2SMatthew Wilcox } 1156b56a2d8aSVineeth Remanan Pillai if (++ret == nr_entries) 1157b56a2d8aSVineeth Remanan Pillai break; 1158b56a2d8aSVineeth Remanan Pillai } 1159478922e2SMatthew Wilcox rcu_read_unlock(); 1160e21a2955SMatthew Wilcox 1161b56a2d8aSVineeth Remanan Pillai return ret; 1162b56a2d8aSVineeth Remanan Pillai } 1163b56a2d8aSVineeth Remanan Pillai 1164b56a2d8aSVineeth Remanan Pillai /* 1165b56a2d8aSVineeth Remanan Pillai * Move the swapped pages for an inode to page cache. Returns the count 1166b56a2d8aSVineeth Remanan Pillai * of pages swapped in, or the error in case of failure. 1167b56a2d8aSVineeth Remanan Pillai */ 1168b56a2d8aSVineeth Remanan Pillai static int shmem_unuse_swap_entries(struct inode *inode, struct pagevec pvec, 1169b56a2d8aSVineeth Remanan Pillai pgoff_t *indices) 1170b56a2d8aSVineeth Remanan Pillai { 1171b56a2d8aSVineeth Remanan Pillai int i = 0; 1172b56a2d8aSVineeth Remanan Pillai int ret = 0; 1173b56a2d8aSVineeth Remanan Pillai int error = 0; 1174b56a2d8aSVineeth Remanan Pillai struct address_space *mapping = inode->i_mapping; 1175b56a2d8aSVineeth Remanan Pillai 1176b56a2d8aSVineeth Remanan Pillai for (i = 0; i < pvec.nr; i++) { 1177b56a2d8aSVineeth Remanan Pillai struct page *page = pvec.pages[i]; 1178b56a2d8aSVineeth Remanan Pillai 1179b56a2d8aSVineeth Remanan Pillai if (!xa_is_value(page)) 1180b56a2d8aSVineeth Remanan Pillai continue; 1181b56a2d8aSVineeth Remanan Pillai error = shmem_swapin_page(inode, indices[i], 1182b56a2d8aSVineeth Remanan Pillai &page, SGP_CACHE, 1183b56a2d8aSVineeth Remanan Pillai mapping_gfp_mask(mapping), 1184b56a2d8aSVineeth Remanan Pillai NULL, NULL); 1185b56a2d8aSVineeth Remanan Pillai if (error == 0) { 1186b56a2d8aSVineeth Remanan Pillai unlock_page(page); 1187b56a2d8aSVineeth Remanan Pillai put_page(page); 1188b56a2d8aSVineeth Remanan Pillai ret++; 1189b56a2d8aSVineeth Remanan Pillai } 1190b56a2d8aSVineeth Remanan Pillai if (error == -ENOMEM) 1191b56a2d8aSVineeth Remanan Pillai break; 1192b56a2d8aSVineeth Remanan Pillai error = 0; 1193b56a2d8aSVineeth Remanan Pillai } 1194b56a2d8aSVineeth Remanan Pillai return error ? error : ret; 1195478922e2SMatthew Wilcox } 1196478922e2SMatthew Wilcox 119746f65ec1SHugh Dickins /* 119846f65ec1SHugh Dickins * If swap found in inode, free it and move page from swapcache to filecache. 119946f65ec1SHugh Dickins */ 1200b56a2d8aSVineeth Remanan Pillai static int shmem_unuse_inode(struct inode *inode, unsigned int type, 1201b56a2d8aSVineeth Remanan Pillai bool frontswap, unsigned long *fs_pages_to_unuse) 12021da177e4SLinus Torvalds { 1203b56a2d8aSVineeth Remanan Pillai struct address_space *mapping = inode->i_mapping; 1204b56a2d8aSVineeth Remanan Pillai pgoff_t start = 0; 1205b56a2d8aSVineeth Remanan Pillai struct pagevec pvec; 1206b56a2d8aSVineeth Remanan Pillai pgoff_t indices[PAGEVEC_SIZE]; 1207b56a2d8aSVineeth Remanan Pillai bool frontswap_partial = (frontswap && *fs_pages_to_unuse > 0); 1208b56a2d8aSVineeth Remanan Pillai int ret = 0; 12091da177e4SLinus Torvalds 1210b56a2d8aSVineeth Remanan Pillai pagevec_init(&pvec); 1211b56a2d8aSVineeth Remanan Pillai do { 1212b56a2d8aSVineeth Remanan Pillai unsigned int nr_entries = PAGEVEC_SIZE; 12132e0e26c7SHugh Dickins 1214b56a2d8aSVineeth Remanan Pillai if (frontswap_partial && *fs_pages_to_unuse < PAGEVEC_SIZE) 1215b56a2d8aSVineeth Remanan Pillai nr_entries = *fs_pages_to_unuse; 12162e0e26c7SHugh Dickins 1217b56a2d8aSVineeth Remanan Pillai pvec.nr = shmem_find_swap_entries(mapping, start, nr_entries, 1218b56a2d8aSVineeth Remanan Pillai pvec.pages, indices, 121987039546SHugh Dickins type, frontswap); 1220b56a2d8aSVineeth Remanan Pillai if (pvec.nr == 0) { 1221b56a2d8aSVineeth Remanan Pillai ret = 0; 1222778dd893SHugh Dickins break; 1223b56a2d8aSVineeth Remanan Pillai } 1224b56a2d8aSVineeth Remanan Pillai 1225b56a2d8aSVineeth Remanan Pillai ret = shmem_unuse_swap_entries(inode, pvec, indices); 1226b56a2d8aSVineeth Remanan Pillai if (ret < 0) 1227b56a2d8aSVineeth Remanan Pillai break; 1228b56a2d8aSVineeth Remanan Pillai 1229b56a2d8aSVineeth Remanan Pillai if (frontswap_partial) { 1230b56a2d8aSVineeth Remanan Pillai *fs_pages_to_unuse -= ret; 1231b56a2d8aSVineeth Remanan Pillai if (*fs_pages_to_unuse == 0) { 1232b56a2d8aSVineeth Remanan Pillai ret = FRONTSWAP_PAGES_UNUSED; 1233b56a2d8aSVineeth Remanan Pillai break; 1234b56a2d8aSVineeth Remanan Pillai } 1235b56a2d8aSVineeth Remanan Pillai } 1236b56a2d8aSVineeth Remanan Pillai 1237b56a2d8aSVineeth Remanan Pillai start = indices[pvec.nr - 1]; 1238b56a2d8aSVineeth Remanan Pillai } while (true); 1239b56a2d8aSVineeth Remanan Pillai 1240b56a2d8aSVineeth Remanan Pillai return ret; 1241b56a2d8aSVineeth Remanan Pillai } 1242b56a2d8aSVineeth Remanan Pillai 1243b56a2d8aSVineeth Remanan Pillai /* 1244b56a2d8aSVineeth Remanan Pillai * Read all the shared memory data that resides in the swap 1245b56a2d8aSVineeth Remanan Pillai * device 'type' back into memory, so the swap device can be 1246b56a2d8aSVineeth Remanan Pillai * unused. 1247b56a2d8aSVineeth Remanan Pillai */ 1248b56a2d8aSVineeth Remanan Pillai int shmem_unuse(unsigned int type, bool frontswap, 1249b56a2d8aSVineeth Remanan Pillai unsigned long *fs_pages_to_unuse) 1250b56a2d8aSVineeth Remanan Pillai { 1251b56a2d8aSVineeth Remanan Pillai struct shmem_inode_info *info, *next; 1252b56a2d8aSVineeth Remanan Pillai int error = 0; 1253b56a2d8aSVineeth Remanan Pillai 1254b56a2d8aSVineeth Remanan Pillai if (list_empty(&shmem_swaplist)) 1255b56a2d8aSVineeth Remanan Pillai return 0; 1256b56a2d8aSVineeth Remanan Pillai 1257b56a2d8aSVineeth Remanan Pillai mutex_lock(&shmem_swaplist_mutex); 1258b56a2d8aSVineeth Remanan Pillai list_for_each_entry_safe(info, next, &shmem_swaplist, swaplist) { 1259b56a2d8aSVineeth Remanan Pillai if (!info->swapped) { 1260b56a2d8aSVineeth Remanan Pillai list_del_init(&info->swaplist); 1261b56a2d8aSVineeth Remanan Pillai continue; 1262b56a2d8aSVineeth Remanan Pillai } 1263af53d3e9SHugh Dickins /* 1264af53d3e9SHugh Dickins * Drop the swaplist mutex while searching the inode for swap; 1265af53d3e9SHugh Dickins * but before doing so, make sure shmem_evict_inode() will not 1266af53d3e9SHugh Dickins * remove placeholder inode from swaplist, nor let it be freed 1267af53d3e9SHugh Dickins * (igrab() would protect from unlink, but not from unmount). 1268af53d3e9SHugh Dickins */ 1269af53d3e9SHugh Dickins atomic_inc(&info->stop_eviction); 1270b56a2d8aSVineeth Remanan Pillai mutex_unlock(&shmem_swaplist_mutex); 1271b56a2d8aSVineeth Remanan Pillai 1272af53d3e9SHugh Dickins error = shmem_unuse_inode(&info->vfs_inode, type, frontswap, 1273b56a2d8aSVineeth Remanan Pillai fs_pages_to_unuse); 1274b56a2d8aSVineeth Remanan Pillai cond_resched(); 1275b56a2d8aSVineeth Remanan Pillai 1276b56a2d8aSVineeth Remanan Pillai mutex_lock(&shmem_swaplist_mutex); 1277b56a2d8aSVineeth Remanan Pillai next = list_next_entry(info, swaplist); 1278b56a2d8aSVineeth Remanan Pillai if (!info->swapped) 1279b56a2d8aSVineeth Remanan Pillai list_del_init(&info->swaplist); 1280af53d3e9SHugh Dickins if (atomic_dec_and_test(&info->stop_eviction)) 1281af53d3e9SHugh Dickins wake_up_var(&info->stop_eviction); 1282b56a2d8aSVineeth Remanan Pillai if (error) 1283b56a2d8aSVineeth Remanan Pillai break; 12841da177e4SLinus Torvalds } 1285cb5f7b9aSHugh Dickins mutex_unlock(&shmem_swaplist_mutex); 1286778dd893SHugh Dickins 1287778dd893SHugh Dickins return error; 12881da177e4SLinus Torvalds } 12891da177e4SLinus Torvalds 12901da177e4SLinus Torvalds /* 12911da177e4SLinus Torvalds * Move the page from the page cache to the swap cache. 12921da177e4SLinus Torvalds */ 12931da177e4SLinus Torvalds static int shmem_writepage(struct page *page, struct writeback_control *wbc) 12941da177e4SLinus Torvalds { 12951da177e4SLinus Torvalds struct shmem_inode_info *info; 12961da177e4SLinus Torvalds struct address_space *mapping; 12971da177e4SLinus Torvalds struct inode *inode; 12986922c0c7SHugh Dickins swp_entry_t swap; 12996922c0c7SHugh Dickins pgoff_t index; 13001da177e4SLinus Torvalds 1301800d8c63SKirill A. Shutemov VM_BUG_ON_PAGE(PageCompound(page), page); 13021da177e4SLinus Torvalds BUG_ON(!PageLocked(page)); 13031da177e4SLinus Torvalds mapping = page->mapping; 13041da177e4SLinus Torvalds index = page->index; 13051da177e4SLinus Torvalds inode = mapping->host; 13061da177e4SLinus Torvalds info = SHMEM_I(inode); 13071da177e4SLinus Torvalds if (info->flags & VM_LOCKED) 13081da177e4SLinus Torvalds goto redirty; 1309d9fe526aSHugh Dickins if (!total_swap_pages) 13101da177e4SLinus Torvalds goto redirty; 13111da177e4SLinus Torvalds 1312d9fe526aSHugh Dickins /* 131397b713baSChristoph Hellwig * Our capabilities prevent regular writeback or sync from ever calling 131497b713baSChristoph Hellwig * shmem_writepage; but a stacking filesystem might use ->writepage of 131597b713baSChristoph Hellwig * its underlying filesystem, in which case tmpfs should write out to 131697b713baSChristoph Hellwig * swap only in response to memory pressure, and not for the writeback 131797b713baSChristoph Hellwig * threads or sync. 1318d9fe526aSHugh Dickins */ 131948f170fbSHugh Dickins if (!wbc->for_reclaim) { 132048f170fbSHugh Dickins WARN_ON_ONCE(1); /* Still happens? Tell us about it! */ 132148f170fbSHugh Dickins goto redirty; 132248f170fbSHugh Dickins } 13231635f6a7SHugh Dickins 13241635f6a7SHugh Dickins /* 13251635f6a7SHugh Dickins * This is somewhat ridiculous, but without plumbing a SWAP_MAP_FALLOC 13261635f6a7SHugh Dickins * value into swapfile.c, the only way we can correctly account for a 13271635f6a7SHugh Dickins * fallocated page arriving here is now to initialize it and write it. 13281aac1400SHugh Dickins * 13291aac1400SHugh Dickins * That's okay for a page already fallocated earlier, but if we have 13301aac1400SHugh Dickins * not yet completed the fallocation, then (a) we want to keep track 13311aac1400SHugh Dickins * of this page in case we have to undo it, and (b) it may not be a 13321aac1400SHugh Dickins * good idea to continue anyway, once we're pushing into swap. So 13331aac1400SHugh Dickins * reactivate the page, and let shmem_fallocate() quit when too many. 13341635f6a7SHugh Dickins */ 13351635f6a7SHugh Dickins if (!PageUptodate(page)) { 13361aac1400SHugh Dickins if (inode->i_private) { 13371aac1400SHugh Dickins struct shmem_falloc *shmem_falloc; 13381aac1400SHugh Dickins spin_lock(&inode->i_lock); 13391aac1400SHugh Dickins shmem_falloc = inode->i_private; 13401aac1400SHugh Dickins if (shmem_falloc && 13418e205f77SHugh Dickins !shmem_falloc->waitq && 13421aac1400SHugh Dickins index >= shmem_falloc->start && 13431aac1400SHugh Dickins index < shmem_falloc->next) 13441aac1400SHugh Dickins shmem_falloc->nr_unswapped++; 13451aac1400SHugh Dickins else 13461aac1400SHugh Dickins shmem_falloc = NULL; 13471aac1400SHugh Dickins spin_unlock(&inode->i_lock); 13481aac1400SHugh Dickins if (shmem_falloc) 13491aac1400SHugh Dickins goto redirty; 13501aac1400SHugh Dickins } 13511635f6a7SHugh Dickins clear_highpage(page); 13521635f6a7SHugh Dickins flush_dcache_page(page); 13531635f6a7SHugh Dickins SetPageUptodate(page); 13541635f6a7SHugh Dickins } 13551635f6a7SHugh Dickins 135638d8b4e6SHuang Ying swap = get_swap_page(page); 135748f170fbSHugh Dickins if (!swap.val) 135848f170fbSHugh Dickins goto redirty; 1359d9fe526aSHugh Dickins 1360b1dea800SHugh Dickins /* 1361b1dea800SHugh Dickins * Add inode to shmem_unuse()'s list of swapped-out inodes, 13626922c0c7SHugh Dickins * if it's not already there. Do it now before the page is 13636922c0c7SHugh Dickins * moved to swap cache, when its pagelock no longer protects 1364b1dea800SHugh Dickins * the inode from eviction. But don't unlock the mutex until 13656922c0c7SHugh Dickins * we've incremented swapped, because shmem_unuse_inode() will 13666922c0c7SHugh Dickins * prune a !swapped inode from the swaplist under this mutex. 1367b1dea800SHugh Dickins */ 1368b1dea800SHugh Dickins mutex_lock(&shmem_swaplist_mutex); 136905bf86b4SHugh Dickins if (list_empty(&info->swaplist)) 1370b56a2d8aSVineeth Remanan Pillai list_add(&info->swaplist, &shmem_swaplist); 1371b1dea800SHugh Dickins 13724afab1cdSYang Shi if (add_to_swap_cache(page, swap, 13734afab1cdSYang Shi __GFP_HIGH | __GFP_NOMEMALLOC | __GFP_NOWARN) == 0) { 13744595ef88SKirill A. Shutemov spin_lock_irq(&info->lock); 1375267a4c76SHugh Dickins shmem_recalc_inode(inode); 1376267a4c76SHugh Dickins info->swapped++; 13774595ef88SKirill A. Shutemov spin_unlock_irq(&info->lock); 1378267a4c76SHugh Dickins 1379aaa46865SHugh Dickins swap_shmem_alloc(swap); 13806922c0c7SHugh Dickins shmem_delete_from_page_cache(page, swp_to_radix_entry(swap)); 13816922c0c7SHugh Dickins 13826922c0c7SHugh Dickins mutex_unlock(&shmem_swaplist_mutex); 1383d9fe526aSHugh Dickins BUG_ON(page_mapped(page)); 13849fab5619SHugh Dickins swap_writepage(page, wbc); 13851da177e4SLinus Torvalds return 0; 13861da177e4SLinus Torvalds } 13871da177e4SLinus Torvalds 13886922c0c7SHugh Dickins mutex_unlock(&shmem_swaplist_mutex); 138975f6d6d2SMinchan Kim put_swap_page(page, swap); 13901da177e4SLinus Torvalds redirty: 13911da177e4SLinus Torvalds set_page_dirty(page); 1392d9fe526aSHugh Dickins if (wbc->for_reclaim) 1393d9fe526aSHugh Dickins return AOP_WRITEPAGE_ACTIVATE; /* Return with page locked */ 1394d9fe526aSHugh Dickins unlock_page(page); 1395d9fe526aSHugh Dickins return 0; 13961da177e4SLinus Torvalds } 13971da177e4SLinus Torvalds 139875edd345SHugh Dickins #if defined(CONFIG_NUMA) && defined(CONFIG_TMPFS) 139971fe804bSLee Schermerhorn static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol) 1400680d794bSakpm@linux-foundation.org { 1401680d794bSakpm@linux-foundation.org char buffer[64]; 1402680d794bSakpm@linux-foundation.org 140371fe804bSLee Schermerhorn if (!mpol || mpol->mode == MPOL_DEFAULT) 1404095f1fc4SLee Schermerhorn return; /* show nothing */ 1405095f1fc4SLee Schermerhorn 1406a7a88b23SHugh Dickins mpol_to_str(buffer, sizeof(buffer), mpol); 1407095f1fc4SLee Schermerhorn 1408095f1fc4SLee Schermerhorn seq_printf(seq, ",mpol=%s", buffer); 1409680d794bSakpm@linux-foundation.org } 141071fe804bSLee Schermerhorn 141171fe804bSLee Schermerhorn static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo) 141271fe804bSLee Schermerhorn { 141371fe804bSLee Schermerhorn struct mempolicy *mpol = NULL; 141471fe804bSLee Schermerhorn if (sbinfo->mpol) { 141571fe804bSLee Schermerhorn spin_lock(&sbinfo->stat_lock); /* prevent replace/use races */ 141671fe804bSLee Schermerhorn mpol = sbinfo->mpol; 141771fe804bSLee Schermerhorn mpol_get(mpol); 141871fe804bSLee Schermerhorn spin_unlock(&sbinfo->stat_lock); 141971fe804bSLee Schermerhorn } 142071fe804bSLee Schermerhorn return mpol; 142171fe804bSLee Schermerhorn } 142275edd345SHugh Dickins #else /* !CONFIG_NUMA || !CONFIG_TMPFS */ 142375edd345SHugh Dickins static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol) 142475edd345SHugh Dickins { 142575edd345SHugh Dickins } 142675edd345SHugh Dickins static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo) 142775edd345SHugh Dickins { 142875edd345SHugh Dickins return NULL; 142975edd345SHugh Dickins } 143075edd345SHugh Dickins #endif /* CONFIG_NUMA && CONFIG_TMPFS */ 143175edd345SHugh Dickins #ifndef CONFIG_NUMA 143275edd345SHugh Dickins #define vm_policy vm_private_data 143375edd345SHugh Dickins #endif 1434680d794bSakpm@linux-foundation.org 1435800d8c63SKirill A. Shutemov static void shmem_pseudo_vma_init(struct vm_area_struct *vma, 1436800d8c63SKirill A. Shutemov struct shmem_inode_info *info, pgoff_t index) 1437800d8c63SKirill A. Shutemov { 1438800d8c63SKirill A. Shutemov /* Create a pseudo vma that just contains the policy */ 14392c4541e2SKirill A. Shutemov vma_init(vma, NULL); 1440800d8c63SKirill A. Shutemov /* Bias interleave by inode number to distribute better across nodes */ 1441800d8c63SKirill A. Shutemov vma->vm_pgoff = index + info->vfs_inode.i_ino; 1442800d8c63SKirill A. Shutemov vma->vm_policy = mpol_shared_policy_lookup(&info->policy, index); 1443800d8c63SKirill A. Shutemov } 1444800d8c63SKirill A. Shutemov 1445800d8c63SKirill A. Shutemov static void shmem_pseudo_vma_destroy(struct vm_area_struct *vma) 1446800d8c63SKirill A. Shutemov { 1447800d8c63SKirill A. Shutemov /* Drop reference taken by mpol_shared_policy_lookup() */ 1448800d8c63SKirill A. Shutemov mpol_cond_put(vma->vm_policy); 1449800d8c63SKirill A. Shutemov } 1450800d8c63SKirill A. Shutemov 145141ffe5d5SHugh Dickins static struct page *shmem_swapin(swp_entry_t swap, gfp_t gfp, 145241ffe5d5SHugh Dickins struct shmem_inode_info *info, pgoff_t index) 14531da177e4SLinus Torvalds { 14541da177e4SLinus Torvalds struct vm_area_struct pvma; 145518a2f371SMel Gorman struct page *page; 1456e9e9b7ecSMinchan Kim struct vm_fault vmf; 14571da177e4SLinus Torvalds 1458800d8c63SKirill A. Shutemov shmem_pseudo_vma_init(&pvma, info, index); 1459e9e9b7ecSMinchan Kim vmf.vma = &pvma; 1460e9e9b7ecSMinchan Kim vmf.address = 0; 1461e9e9b7ecSMinchan Kim page = swap_cluster_readahead(swap, gfp, &vmf); 1462800d8c63SKirill A. Shutemov shmem_pseudo_vma_destroy(&pvma); 146318a2f371SMel Gorman 1464800d8c63SKirill A. Shutemov return page; 1465800d8c63SKirill A. Shutemov } 146618a2f371SMel Gorman 1467800d8c63SKirill A. Shutemov static struct page *shmem_alloc_hugepage(gfp_t gfp, 1468800d8c63SKirill A. Shutemov struct shmem_inode_info *info, pgoff_t index) 1469800d8c63SKirill A. Shutemov { 1470800d8c63SKirill A. Shutemov struct vm_area_struct pvma; 14717b8d046fSMatthew Wilcox struct address_space *mapping = info->vfs_inode.i_mapping; 14727b8d046fSMatthew Wilcox pgoff_t hindex; 1473800d8c63SKirill A. Shutemov struct page *page; 1474800d8c63SKirill A. Shutemov 1475e496cf3dSKirill A. Shutemov if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE)) 1476800d8c63SKirill A. Shutemov return NULL; 1477800d8c63SKirill A. Shutemov 14784620a06eSGeert Uytterhoeven hindex = round_down(index, HPAGE_PMD_NR); 14797b8d046fSMatthew Wilcox if (xa_find(&mapping->i_pages, &hindex, hindex + HPAGE_PMD_NR - 1, 14807b8d046fSMatthew Wilcox XA_PRESENT)) 1481800d8c63SKirill A. Shutemov return NULL; 1482800d8c63SKirill A. Shutemov 1483800d8c63SKirill A. Shutemov shmem_pseudo_vma_init(&pvma, info, hindex); 1484800d8c63SKirill A. Shutemov page = alloc_pages_vma(gfp | __GFP_COMP | __GFP_NORETRY | __GFP_NOWARN, 148519deb769SDavid Rientjes HPAGE_PMD_ORDER, &pvma, 0, numa_node_id(), true); 1486800d8c63SKirill A. Shutemov shmem_pseudo_vma_destroy(&pvma); 1487800d8c63SKirill A. Shutemov if (page) 1488800d8c63SKirill A. Shutemov prep_transhuge_page(page); 148918a2f371SMel Gorman return page; 149018a2f371SMel Gorman } 149118a2f371SMel Gorman 149218a2f371SMel Gorman static struct page *shmem_alloc_page(gfp_t gfp, 149318a2f371SMel Gorman struct shmem_inode_info *info, pgoff_t index) 149418a2f371SMel Gorman { 149518a2f371SMel Gorman struct vm_area_struct pvma; 149618a2f371SMel Gorman struct page *page; 149718a2f371SMel Gorman 1498800d8c63SKirill A. Shutemov shmem_pseudo_vma_init(&pvma, info, index); 1499800d8c63SKirill A. Shutemov page = alloc_page_vma(gfp, &pvma, 0); 1500800d8c63SKirill A. Shutemov shmem_pseudo_vma_destroy(&pvma); 150118a2f371SMel Gorman 1502800d8c63SKirill A. Shutemov return page; 1503800d8c63SKirill A. Shutemov } 1504800d8c63SKirill A. Shutemov 1505800d8c63SKirill A. Shutemov static struct page *shmem_alloc_and_acct_page(gfp_t gfp, 15060f079694SMike Rapoport struct inode *inode, 1507800d8c63SKirill A. Shutemov pgoff_t index, bool huge) 1508800d8c63SKirill A. Shutemov { 15090f079694SMike Rapoport struct shmem_inode_info *info = SHMEM_I(inode); 1510800d8c63SKirill A. Shutemov struct page *page; 1511800d8c63SKirill A. Shutemov int nr; 1512800d8c63SKirill A. Shutemov int err = -ENOSPC; 1513800d8c63SKirill A. Shutemov 1514e496cf3dSKirill A. Shutemov if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE)) 1515800d8c63SKirill A. Shutemov huge = false; 1516800d8c63SKirill A. Shutemov nr = huge ? HPAGE_PMD_NR : 1; 1517800d8c63SKirill A. Shutemov 15180f079694SMike Rapoport if (!shmem_inode_acct_block(inode, nr)) 1519800d8c63SKirill A. Shutemov goto failed; 1520800d8c63SKirill A. Shutemov 1521800d8c63SKirill A. Shutemov if (huge) 1522800d8c63SKirill A. Shutemov page = shmem_alloc_hugepage(gfp, info, index); 1523800d8c63SKirill A. Shutemov else 1524800d8c63SKirill A. Shutemov page = shmem_alloc_page(gfp, info, index); 152575edd345SHugh Dickins if (page) { 152675edd345SHugh Dickins __SetPageLocked(page); 152775edd345SHugh Dickins __SetPageSwapBacked(page); 1528800d8c63SKirill A. Shutemov return page; 152975edd345SHugh Dickins } 153018a2f371SMel Gorman 1531800d8c63SKirill A. Shutemov err = -ENOMEM; 15320f079694SMike Rapoport shmem_inode_unacct_blocks(inode, nr); 1533800d8c63SKirill A. Shutemov failed: 1534800d8c63SKirill A. Shutemov return ERR_PTR(err); 15351da177e4SLinus Torvalds } 153671fe804bSLee Schermerhorn 15371da177e4SLinus Torvalds /* 1538bde05d1cSHugh Dickins * When a page is moved from swapcache to shmem filecache (either by the 1539bde05d1cSHugh Dickins * usual swapin of shmem_getpage_gfp(), or by the less common swapoff of 1540bde05d1cSHugh Dickins * shmem_unuse_inode()), it may have been read in earlier from swap, in 1541bde05d1cSHugh Dickins * ignorance of the mapping it belongs to. If that mapping has special 1542bde05d1cSHugh Dickins * constraints (like the gma500 GEM driver, which requires RAM below 4GB), 1543bde05d1cSHugh Dickins * we may need to copy to a suitable page before moving to filecache. 1544bde05d1cSHugh Dickins * 1545bde05d1cSHugh Dickins * In a future release, this may well be extended to respect cpuset and 1546bde05d1cSHugh Dickins * NUMA mempolicy, and applied also to anonymous pages in do_swap_page(); 1547bde05d1cSHugh Dickins * but for now it is a simple matter of zone. 1548bde05d1cSHugh Dickins */ 1549bde05d1cSHugh Dickins static bool shmem_should_replace_page(struct page *page, gfp_t gfp) 1550bde05d1cSHugh Dickins { 1551bde05d1cSHugh Dickins return page_zonenum(page) > gfp_zone(gfp); 1552bde05d1cSHugh Dickins } 1553bde05d1cSHugh Dickins 1554bde05d1cSHugh Dickins static int shmem_replace_page(struct page **pagep, gfp_t gfp, 1555bde05d1cSHugh Dickins struct shmem_inode_info *info, pgoff_t index) 1556bde05d1cSHugh Dickins { 1557bde05d1cSHugh Dickins struct page *oldpage, *newpage; 1558bde05d1cSHugh Dickins struct address_space *swap_mapping; 1559c1cb20d4SYu Zhao swp_entry_t entry; 1560bde05d1cSHugh Dickins pgoff_t swap_index; 1561bde05d1cSHugh Dickins int error; 1562bde05d1cSHugh Dickins 1563bde05d1cSHugh Dickins oldpage = *pagep; 1564c1cb20d4SYu Zhao entry.val = page_private(oldpage); 1565c1cb20d4SYu Zhao swap_index = swp_offset(entry); 1566bde05d1cSHugh Dickins swap_mapping = page_mapping(oldpage); 1567bde05d1cSHugh Dickins 1568bde05d1cSHugh Dickins /* 1569bde05d1cSHugh Dickins * We have arrived here because our zones are constrained, so don't 1570bde05d1cSHugh Dickins * limit chance of success by further cpuset and node constraints. 1571bde05d1cSHugh Dickins */ 1572bde05d1cSHugh Dickins gfp &= ~GFP_CONSTRAINT_MASK; 1573bde05d1cSHugh Dickins newpage = shmem_alloc_page(gfp, info, index); 1574bde05d1cSHugh Dickins if (!newpage) 1575bde05d1cSHugh Dickins return -ENOMEM; 1576bde05d1cSHugh Dickins 157709cbfeafSKirill A. Shutemov get_page(newpage); 1578bde05d1cSHugh Dickins copy_highpage(newpage, oldpage); 15790142ef6cSHugh Dickins flush_dcache_page(newpage); 1580bde05d1cSHugh Dickins 15819956edf3SHugh Dickins __SetPageLocked(newpage); 15829956edf3SHugh Dickins __SetPageSwapBacked(newpage); 1583bde05d1cSHugh Dickins SetPageUptodate(newpage); 1584c1cb20d4SYu Zhao set_page_private(newpage, entry.val); 1585bde05d1cSHugh Dickins SetPageSwapCache(newpage); 1586bde05d1cSHugh Dickins 1587bde05d1cSHugh Dickins /* 1588bde05d1cSHugh Dickins * Our caller will very soon move newpage out of swapcache, but it's 1589bde05d1cSHugh Dickins * a nice clean interface for us to replace oldpage by newpage there. 1590bde05d1cSHugh Dickins */ 1591b93b0163SMatthew Wilcox xa_lock_irq(&swap_mapping->i_pages); 159262f945b6SMatthew Wilcox error = shmem_replace_entry(swap_mapping, swap_index, oldpage, newpage); 15930142ef6cSHugh Dickins if (!error) { 159411fb9989SMel Gorman __inc_node_page_state(newpage, NR_FILE_PAGES); 159511fb9989SMel Gorman __dec_node_page_state(oldpage, NR_FILE_PAGES); 15960142ef6cSHugh Dickins } 1597b93b0163SMatthew Wilcox xa_unlock_irq(&swap_mapping->i_pages); 1598bde05d1cSHugh Dickins 15990142ef6cSHugh Dickins if (unlikely(error)) { 16000142ef6cSHugh Dickins /* 16010142ef6cSHugh Dickins * Is this possible? I think not, now that our callers check 16020142ef6cSHugh Dickins * both PageSwapCache and page_private after getting page lock; 16030142ef6cSHugh Dickins * but be defensive. Reverse old to newpage for clear and free. 16040142ef6cSHugh Dickins */ 16050142ef6cSHugh Dickins oldpage = newpage; 16060142ef6cSHugh Dickins } else { 16076a93ca8fSJohannes Weiner mem_cgroup_migrate(oldpage, newpage); 1608bde05d1cSHugh Dickins lru_cache_add_anon(newpage); 16090142ef6cSHugh Dickins *pagep = newpage; 16100142ef6cSHugh Dickins } 1611bde05d1cSHugh Dickins 1612bde05d1cSHugh Dickins ClearPageSwapCache(oldpage); 1613bde05d1cSHugh Dickins set_page_private(oldpage, 0); 1614bde05d1cSHugh Dickins 1615bde05d1cSHugh Dickins unlock_page(oldpage); 161609cbfeafSKirill A. Shutemov put_page(oldpage); 161709cbfeafSKirill A. Shutemov put_page(oldpage); 16180142ef6cSHugh Dickins return error; 1619bde05d1cSHugh Dickins } 1620bde05d1cSHugh Dickins 1621bde05d1cSHugh Dickins /* 1622c5bf121eSVineeth Remanan Pillai * Swap in the page pointed to by *pagep. 1623c5bf121eSVineeth Remanan Pillai * Caller has to make sure that *pagep contains a valid swapped page. 1624c5bf121eSVineeth Remanan Pillai * Returns 0 and the page in pagep if success. On failure, returns the 1625c5bf121eSVineeth Remanan Pillai * the error code and NULL in *pagep. 16261da177e4SLinus Torvalds */ 1627c5bf121eSVineeth Remanan Pillai static int shmem_swapin_page(struct inode *inode, pgoff_t index, 1628c5bf121eSVineeth Remanan Pillai struct page **pagep, enum sgp_type sgp, 1629c5bf121eSVineeth Remanan Pillai gfp_t gfp, struct vm_area_struct *vma, 16302b740303SSouptick Joarder vm_fault_t *fault_type) 16311da177e4SLinus Torvalds { 16321da177e4SLinus Torvalds struct address_space *mapping = inode->i_mapping; 163323f919d4SArnd Bergmann struct shmem_inode_info *info = SHMEM_I(inode); 1634c5bf121eSVineeth Remanan Pillai struct mm_struct *charge_mm = vma ? vma->vm_mm : current->mm; 163500501b53SJohannes Weiner struct mem_cgroup *memcg; 163627ab7006SHugh Dickins struct page *page; 16371da177e4SLinus Torvalds swp_entry_t swap; 16381da177e4SLinus Torvalds int error; 16391da177e4SLinus Torvalds 1640c5bf121eSVineeth Remanan Pillai VM_BUG_ON(!*pagep || !xa_is_value(*pagep)); 1641c5bf121eSVineeth Remanan Pillai swap = radix_to_swp_entry(*pagep); 1642c5bf121eSVineeth Remanan Pillai *pagep = NULL; 164354af6042SHugh Dickins 16441da177e4SLinus Torvalds /* Look it up and read it in.. */ 1645ec560175SHuang Ying page = lookup_swap_cache(swap, NULL, 0); 164627ab7006SHugh Dickins if (!page) { 16479e18eb29SAndres Lagar-Cavilla /* Or update major stats only when swapin succeeds?? */ 16489e18eb29SAndres Lagar-Cavilla if (fault_type) { 164968da9f05SHugh Dickins *fault_type |= VM_FAULT_MAJOR; 16509e18eb29SAndres Lagar-Cavilla count_vm_event(PGMAJFAULT); 16512262185cSRoman Gushchin count_memcg_event_mm(charge_mm, PGMAJFAULT); 16529e18eb29SAndres Lagar-Cavilla } 16539e18eb29SAndres Lagar-Cavilla /* Here we actually start the io */ 165441ffe5d5SHugh Dickins page = shmem_swapin(swap, gfp, info, index); 165527ab7006SHugh Dickins if (!page) { 16561da177e4SLinus Torvalds error = -ENOMEM; 165754af6042SHugh Dickins goto failed; 1658285b2c4fSHugh Dickins } 16591da177e4SLinus Torvalds } 16601da177e4SLinus Torvalds 16611da177e4SLinus Torvalds /* We have to do this with page locked to prevent races */ 166254af6042SHugh Dickins lock_page(page); 16630142ef6cSHugh Dickins if (!PageSwapCache(page) || page_private(page) != swap.val || 1664d1899228SHugh Dickins !shmem_confirm_swap(mapping, index, swap)) { 1665c5bf121eSVineeth Remanan Pillai error = -EEXIST; 1666d1899228SHugh Dickins goto unlock; 1667bde05d1cSHugh Dickins } 166827ab7006SHugh Dickins if (!PageUptodate(page)) { 16691da177e4SLinus Torvalds error = -EIO; 167054af6042SHugh Dickins goto failed; 167154af6042SHugh Dickins } 167254af6042SHugh Dickins wait_on_page_writeback(page); 167354af6042SHugh Dickins 1674bde05d1cSHugh Dickins if (shmem_should_replace_page(page, gfp)) { 1675bde05d1cSHugh Dickins error = shmem_replace_page(&page, gfp, info, index); 1676bde05d1cSHugh Dickins if (error) 167754af6042SHugh Dickins goto failed; 16781da177e4SLinus Torvalds } 16791da177e4SLinus Torvalds 16802cf85583STejun Heo error = mem_cgroup_try_charge_delay(page, charge_mm, gfp, &memcg, 1681f627c2f5SKirill A. Shutemov false); 1682d1899228SHugh Dickins if (!error) { 168354af6042SHugh Dickins error = shmem_add_to_page_cache(page, mapping, index, 1684552446a4SMatthew Wilcox swp_to_radix_entry(swap), gfp); 1685215c02bcSHugh Dickins /* 1686215c02bcSHugh Dickins * We already confirmed swap under page lock, and make 1687215c02bcSHugh Dickins * no memory allocation here, so usually no possibility 1688215c02bcSHugh Dickins * of error; but free_swap_and_cache() only trylocks a 1689215c02bcSHugh Dickins * page, so it is just possible that the entry has been 1690215c02bcSHugh Dickins * truncated or holepunched since swap was confirmed. 1691215c02bcSHugh Dickins * shmem_undo_range() will have done some of the 1692215c02bcSHugh Dickins * unaccounting, now delete_from_swap_cache() will do 169393aa7d95SVladimir Davydov * the rest. 1694215c02bcSHugh Dickins */ 169500501b53SJohannes Weiner if (error) { 1696f627c2f5SKirill A. Shutemov mem_cgroup_cancel_charge(page, memcg, false); 1697215c02bcSHugh Dickins delete_from_swap_cache(page); 1698d1899228SHugh Dickins } 169900501b53SJohannes Weiner } 170054af6042SHugh Dickins if (error) 170154af6042SHugh Dickins goto failed; 170254af6042SHugh Dickins 1703f627c2f5SKirill A. Shutemov mem_cgroup_commit_charge(page, memcg, true, false); 170400501b53SJohannes Weiner 17054595ef88SKirill A. Shutemov spin_lock_irq(&info->lock); 170654af6042SHugh Dickins info->swapped--; 170754af6042SHugh Dickins shmem_recalc_inode(inode); 17084595ef88SKirill A. Shutemov spin_unlock_irq(&info->lock); 170927ab7006SHugh Dickins 171066d2f4d2SHugh Dickins if (sgp == SGP_WRITE) 171166d2f4d2SHugh Dickins mark_page_accessed(page); 171266d2f4d2SHugh Dickins 171327ab7006SHugh Dickins delete_from_swap_cache(page); 171427ab7006SHugh Dickins set_page_dirty(page); 171527ab7006SHugh Dickins swap_free(swap); 171627ab7006SHugh Dickins 1717c5bf121eSVineeth Remanan Pillai *pagep = page; 1718c5bf121eSVineeth Remanan Pillai return 0; 1719c5bf121eSVineeth Remanan Pillai failed: 1720c5bf121eSVineeth Remanan Pillai if (!shmem_confirm_swap(mapping, index, swap)) 1721c5bf121eSVineeth Remanan Pillai error = -EEXIST; 1722c5bf121eSVineeth Remanan Pillai unlock: 1723c5bf121eSVineeth Remanan Pillai if (page) { 1724c5bf121eSVineeth Remanan Pillai unlock_page(page); 1725c5bf121eSVineeth Remanan Pillai put_page(page); 1726c5bf121eSVineeth Remanan Pillai } 1727c5bf121eSVineeth Remanan Pillai 1728c5bf121eSVineeth Remanan Pillai return error; 1729c5bf121eSVineeth Remanan Pillai } 1730c5bf121eSVineeth Remanan Pillai 1731c5bf121eSVineeth Remanan Pillai /* 1732c5bf121eSVineeth Remanan Pillai * shmem_getpage_gfp - find page in cache, or get from swap, or allocate 1733c5bf121eSVineeth Remanan Pillai * 1734c5bf121eSVineeth Remanan Pillai * If we allocate a new one we do not mark it dirty. That's up to the 1735c5bf121eSVineeth Remanan Pillai * vm. If we swap it in we mark it dirty since we also free the swap 1736c5bf121eSVineeth Remanan Pillai * entry since a page cannot live in both the swap and page cache. 1737c5bf121eSVineeth Remanan Pillai * 173828eb3c80SMiles Chen * vmf and fault_type are only supplied by shmem_fault: 1739c5bf121eSVineeth Remanan Pillai * otherwise they are NULL. 1740c5bf121eSVineeth Remanan Pillai */ 1741c5bf121eSVineeth Remanan Pillai static int shmem_getpage_gfp(struct inode *inode, pgoff_t index, 1742c5bf121eSVineeth Remanan Pillai struct page **pagep, enum sgp_type sgp, gfp_t gfp, 1743c5bf121eSVineeth Remanan Pillai struct vm_area_struct *vma, struct vm_fault *vmf, 1744c5bf121eSVineeth Remanan Pillai vm_fault_t *fault_type) 1745c5bf121eSVineeth Remanan Pillai { 1746c5bf121eSVineeth Remanan Pillai struct address_space *mapping = inode->i_mapping; 1747c5bf121eSVineeth Remanan Pillai struct shmem_inode_info *info = SHMEM_I(inode); 1748c5bf121eSVineeth Remanan Pillai struct shmem_sb_info *sbinfo; 1749c5bf121eSVineeth Remanan Pillai struct mm_struct *charge_mm; 1750c5bf121eSVineeth Remanan Pillai struct mem_cgroup *memcg; 1751c5bf121eSVineeth Remanan Pillai struct page *page; 1752c5bf121eSVineeth Remanan Pillai enum sgp_type sgp_huge = sgp; 1753c5bf121eSVineeth Remanan Pillai pgoff_t hindex = index; 1754c5bf121eSVineeth Remanan Pillai int error; 1755c5bf121eSVineeth Remanan Pillai int once = 0; 1756c5bf121eSVineeth Remanan Pillai int alloced = 0; 1757c5bf121eSVineeth Remanan Pillai 1758c5bf121eSVineeth Remanan Pillai if (index > (MAX_LFS_FILESIZE >> PAGE_SHIFT)) 1759c5bf121eSVineeth Remanan Pillai return -EFBIG; 1760c5bf121eSVineeth Remanan Pillai if (sgp == SGP_NOHUGE || sgp == SGP_HUGE) 1761c5bf121eSVineeth Remanan Pillai sgp = SGP_CACHE; 1762c5bf121eSVineeth Remanan Pillai repeat: 1763c5bf121eSVineeth Remanan Pillai if (sgp <= SGP_CACHE && 1764c5bf121eSVineeth Remanan Pillai ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) { 1765c5bf121eSVineeth Remanan Pillai return -EINVAL; 1766c5bf121eSVineeth Remanan Pillai } 1767c5bf121eSVineeth Remanan Pillai 1768c5bf121eSVineeth Remanan Pillai sbinfo = SHMEM_SB(inode->i_sb); 1769c5bf121eSVineeth Remanan Pillai charge_mm = vma ? vma->vm_mm : current->mm; 1770c5bf121eSVineeth Remanan Pillai 1771c5bf121eSVineeth Remanan Pillai page = find_lock_entry(mapping, index); 1772c5bf121eSVineeth Remanan Pillai if (xa_is_value(page)) { 1773c5bf121eSVineeth Remanan Pillai error = shmem_swapin_page(inode, index, &page, 1774c5bf121eSVineeth Remanan Pillai sgp, gfp, vma, fault_type); 1775c5bf121eSVineeth Remanan Pillai if (error == -EEXIST) 1776c5bf121eSVineeth Remanan Pillai goto repeat; 1777c5bf121eSVineeth Remanan Pillai 1778c5bf121eSVineeth Remanan Pillai *pagep = page; 1779c5bf121eSVineeth Remanan Pillai return error; 1780c5bf121eSVineeth Remanan Pillai } 1781c5bf121eSVineeth Remanan Pillai 1782c5bf121eSVineeth Remanan Pillai if (page && sgp == SGP_WRITE) 1783c5bf121eSVineeth Remanan Pillai mark_page_accessed(page); 1784c5bf121eSVineeth Remanan Pillai 1785c5bf121eSVineeth Remanan Pillai /* fallocated page? */ 1786c5bf121eSVineeth Remanan Pillai if (page && !PageUptodate(page)) { 1787c5bf121eSVineeth Remanan Pillai if (sgp != SGP_READ) 1788c5bf121eSVineeth Remanan Pillai goto clear; 1789c5bf121eSVineeth Remanan Pillai unlock_page(page); 1790c5bf121eSVineeth Remanan Pillai put_page(page); 1791c5bf121eSVineeth Remanan Pillai page = NULL; 1792c5bf121eSVineeth Remanan Pillai } 1793c5bf121eSVineeth Remanan Pillai if (page || sgp == SGP_READ) { 1794c5bf121eSVineeth Remanan Pillai *pagep = page; 1795c5bf121eSVineeth Remanan Pillai return 0; 1796c5bf121eSVineeth Remanan Pillai } 1797c5bf121eSVineeth Remanan Pillai 1798c5bf121eSVineeth Remanan Pillai /* 1799c5bf121eSVineeth Remanan Pillai * Fast cache lookup did not find it: 1800c5bf121eSVineeth Remanan Pillai * bring it back from swap or allocate. 1801c5bf121eSVineeth Remanan Pillai */ 1802c5bf121eSVineeth Remanan Pillai 1803cfda0526SMike Rapoport if (vma && userfaultfd_missing(vma)) { 1804cfda0526SMike Rapoport *fault_type = handle_userfault(vmf, VM_UFFD_MISSING); 1805cfda0526SMike Rapoport return 0; 1806cfda0526SMike Rapoport } 1807cfda0526SMike Rapoport 1808800d8c63SKirill A. Shutemov /* shmem_symlink() */ 1809800d8c63SKirill A. Shutemov if (mapping->a_ops != &shmem_aops) 1810800d8c63SKirill A. Shutemov goto alloc_nohuge; 1811657e3038SKirill A. Shutemov if (shmem_huge == SHMEM_HUGE_DENY || sgp_huge == SGP_NOHUGE) 1812800d8c63SKirill A. Shutemov goto alloc_nohuge; 1813800d8c63SKirill A. Shutemov if (shmem_huge == SHMEM_HUGE_FORCE) 1814800d8c63SKirill A. Shutemov goto alloc_huge; 1815800d8c63SKirill A. Shutemov switch (sbinfo->huge) { 1816800d8c63SKirill A. Shutemov loff_t i_size; 1817800d8c63SKirill A. Shutemov pgoff_t off; 1818800d8c63SKirill A. Shutemov case SHMEM_HUGE_NEVER: 1819800d8c63SKirill A. Shutemov goto alloc_nohuge; 1820800d8c63SKirill A. Shutemov case SHMEM_HUGE_WITHIN_SIZE: 1821800d8c63SKirill A. Shutemov off = round_up(index, HPAGE_PMD_NR); 1822800d8c63SKirill A. Shutemov i_size = round_up(i_size_read(inode), PAGE_SIZE); 1823800d8c63SKirill A. Shutemov if (i_size >= HPAGE_PMD_SIZE && 1824800d8c63SKirill A. Shutemov i_size >> PAGE_SHIFT >= off) 1825800d8c63SKirill A. Shutemov goto alloc_huge; 1826800d8c63SKirill A. Shutemov /* fallthrough */ 1827800d8c63SKirill A. Shutemov case SHMEM_HUGE_ADVISE: 1828657e3038SKirill A. Shutemov if (sgp_huge == SGP_HUGE) 1829657e3038SKirill A. Shutemov goto alloc_huge; 1830657e3038SKirill A. Shutemov /* TODO: implement fadvise() hints */ 1831800d8c63SKirill A. Shutemov goto alloc_nohuge; 183259a16eadSHugh Dickins } 18331da177e4SLinus Torvalds 1834800d8c63SKirill A. Shutemov alloc_huge: 18350f079694SMike Rapoport page = shmem_alloc_and_acct_page(gfp, inode, index, true); 1836800d8c63SKirill A. Shutemov if (IS_ERR(page)) { 1837c5bf121eSVineeth Remanan Pillai alloc_nohuge: 1838c5bf121eSVineeth Remanan Pillai page = shmem_alloc_and_acct_page(gfp, inode, 1839800d8c63SKirill A. Shutemov index, false); 184054af6042SHugh Dickins } 1841800d8c63SKirill A. Shutemov if (IS_ERR(page)) { 1842779750d2SKirill A. Shutemov int retry = 5; 1843c5bf121eSVineeth Remanan Pillai 1844800d8c63SKirill A. Shutemov error = PTR_ERR(page); 1845800d8c63SKirill A. Shutemov page = NULL; 1846779750d2SKirill A. Shutemov if (error != -ENOSPC) 1847c5bf121eSVineeth Remanan Pillai goto unlock; 1848779750d2SKirill A. Shutemov /* 1849c5bf121eSVineeth Remanan Pillai * Try to reclaim some space by splitting a huge page 1850779750d2SKirill A. Shutemov * beyond i_size on the filesystem. 1851779750d2SKirill A. Shutemov */ 1852779750d2SKirill A. Shutemov while (retry--) { 1853779750d2SKirill A. Shutemov int ret; 1854c5bf121eSVineeth Remanan Pillai 1855779750d2SKirill A. Shutemov ret = shmem_unused_huge_shrink(sbinfo, NULL, 1); 1856779750d2SKirill A. Shutemov if (ret == SHRINK_STOP) 1857779750d2SKirill A. Shutemov break; 1858779750d2SKirill A. Shutemov if (ret) 1859779750d2SKirill A. Shutemov goto alloc_nohuge; 1860779750d2SKirill A. Shutemov } 1861c5bf121eSVineeth Remanan Pillai goto unlock; 1862800d8c63SKirill A. Shutemov } 1863800d8c63SKirill A. Shutemov 1864800d8c63SKirill A. Shutemov if (PageTransHuge(page)) 1865800d8c63SKirill A. Shutemov hindex = round_down(index, HPAGE_PMD_NR); 1866800d8c63SKirill A. Shutemov else 1867800d8c63SKirill A. Shutemov hindex = index; 1868800d8c63SKirill A. Shutemov 186966d2f4d2SHugh Dickins if (sgp == SGP_WRITE) 1870eb39d618SHugh Dickins __SetPageReferenced(page); 187166d2f4d2SHugh Dickins 18722cf85583STejun Heo error = mem_cgroup_try_charge_delay(page, charge_mm, gfp, &memcg, 1873800d8c63SKirill A. Shutemov PageTransHuge(page)); 187454af6042SHugh Dickins if (error) 1875800d8c63SKirill A. Shutemov goto unacct; 1876800d8c63SKirill A. Shutemov error = shmem_add_to_page_cache(page, mapping, hindex, 1877552446a4SMatthew Wilcox NULL, gfp & GFP_RECLAIM_MASK); 1878b065b432SHugh Dickins if (error) { 1879800d8c63SKirill A. Shutemov mem_cgroup_cancel_charge(page, memcg, 1880800d8c63SKirill A. Shutemov PageTransHuge(page)); 1881800d8c63SKirill A. Shutemov goto unacct; 1882b065b432SHugh Dickins } 1883800d8c63SKirill A. Shutemov mem_cgroup_commit_charge(page, memcg, false, 1884800d8c63SKirill A. Shutemov PageTransHuge(page)); 188554af6042SHugh Dickins lru_cache_add_anon(page); 188654af6042SHugh Dickins 18874595ef88SKirill A. Shutemov spin_lock_irq(&info->lock); 1888d8c6546bSMatthew Wilcox (Oracle) info->alloced += compound_nr(page); 1889800d8c63SKirill A. Shutemov inode->i_blocks += BLOCKS_PER_PAGE << compound_order(page); 189054af6042SHugh Dickins shmem_recalc_inode(inode); 18914595ef88SKirill A. Shutemov spin_unlock_irq(&info->lock); 18921635f6a7SHugh Dickins alloced = true; 189354af6042SHugh Dickins 1894779750d2SKirill A. Shutemov if (PageTransHuge(page) && 1895779750d2SKirill A. Shutemov DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE) < 1896779750d2SKirill A. Shutemov hindex + HPAGE_PMD_NR - 1) { 1897779750d2SKirill A. Shutemov /* 1898779750d2SKirill A. Shutemov * Part of the huge page is beyond i_size: subject 1899779750d2SKirill A. Shutemov * to shrink under memory pressure. 1900779750d2SKirill A. Shutemov */ 1901779750d2SKirill A. Shutemov spin_lock(&sbinfo->shrinklist_lock); 1902d041353dSCong Wang /* 1903d041353dSCong Wang * _careful to defend against unlocked access to 1904d041353dSCong Wang * ->shrink_list in shmem_unused_huge_shrink() 1905d041353dSCong Wang */ 1906d041353dSCong Wang if (list_empty_careful(&info->shrinklist)) { 1907779750d2SKirill A. Shutemov list_add_tail(&info->shrinklist, 1908779750d2SKirill A. Shutemov &sbinfo->shrinklist); 1909779750d2SKirill A. Shutemov sbinfo->shrinklist_len++; 1910779750d2SKirill A. Shutemov } 1911779750d2SKirill A. Shutemov spin_unlock(&sbinfo->shrinklist_lock); 1912779750d2SKirill A. Shutemov } 1913779750d2SKirill A. Shutemov 1914ec9516fbSHugh Dickins /* 19151635f6a7SHugh Dickins * Let SGP_FALLOC use the SGP_WRITE optimization on a new page. 19161635f6a7SHugh Dickins */ 19171635f6a7SHugh Dickins if (sgp == SGP_FALLOC) 19181635f6a7SHugh Dickins sgp = SGP_WRITE; 19191635f6a7SHugh Dickins clear: 19201635f6a7SHugh Dickins /* 19211635f6a7SHugh Dickins * Let SGP_WRITE caller clear ends if write does not fill page; 19221635f6a7SHugh Dickins * but SGP_FALLOC on a page fallocated earlier must initialize 19231635f6a7SHugh Dickins * it now, lest undo on failure cancel our earlier guarantee. 1924ec9516fbSHugh Dickins */ 1925800d8c63SKirill A. Shutemov if (sgp != SGP_WRITE && !PageUptodate(page)) { 1926800d8c63SKirill A. Shutemov struct page *head = compound_head(page); 1927800d8c63SKirill A. Shutemov int i; 1928800d8c63SKirill A. Shutemov 1929d8c6546bSMatthew Wilcox (Oracle) for (i = 0; i < compound_nr(head); i++) { 1930800d8c63SKirill A. Shutemov clear_highpage(head + i); 1931800d8c63SKirill A. Shutemov flush_dcache_page(head + i); 1932800d8c63SKirill A. Shutemov } 1933800d8c63SKirill A. Shutemov SetPageUptodate(head); 1934ec9516fbSHugh Dickins } 1935bde05d1cSHugh Dickins 193654af6042SHugh Dickins /* Perhaps the file has been truncated since we checked */ 193775edd345SHugh Dickins if (sgp <= SGP_CACHE && 193809cbfeafSKirill A. Shutemov ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) { 1939267a4c76SHugh Dickins if (alloced) { 1940267a4c76SHugh Dickins ClearPageDirty(page); 1941267a4c76SHugh Dickins delete_from_page_cache(page); 19424595ef88SKirill A. Shutemov spin_lock_irq(&info->lock); 1943267a4c76SHugh Dickins shmem_recalc_inode(inode); 19444595ef88SKirill A. Shutemov spin_unlock_irq(&info->lock); 1945267a4c76SHugh Dickins } 194654af6042SHugh Dickins error = -EINVAL; 1947267a4c76SHugh Dickins goto unlock; 1948ff36b801SShaohua Li } 1949800d8c63SKirill A. Shutemov *pagep = page + index - hindex; 195054af6042SHugh Dickins return 0; 1951d00806b1SNick Piggin 1952d0217ac0SNick Piggin /* 195354af6042SHugh Dickins * Error recovery. 19541da177e4SLinus Torvalds */ 195554af6042SHugh Dickins unacct: 1956d8c6546bSMatthew Wilcox (Oracle) shmem_inode_unacct_blocks(inode, compound_nr(page)); 1957800d8c63SKirill A. Shutemov 1958800d8c63SKirill A. Shutemov if (PageTransHuge(page)) { 1959800d8c63SKirill A. Shutemov unlock_page(page); 1960800d8c63SKirill A. Shutemov put_page(page); 1961800d8c63SKirill A. Shutemov goto alloc_nohuge; 1962800d8c63SKirill A. Shutemov } 1963d1899228SHugh Dickins unlock: 196427ab7006SHugh Dickins if (page) { 196554af6042SHugh Dickins unlock_page(page); 196609cbfeafSKirill A. Shutemov put_page(page); 196754af6042SHugh Dickins } 196854af6042SHugh Dickins if (error == -ENOSPC && !once++) { 19694595ef88SKirill A. Shutemov spin_lock_irq(&info->lock); 197054af6042SHugh Dickins shmem_recalc_inode(inode); 19714595ef88SKirill A. Shutemov spin_unlock_irq(&info->lock); 19721da177e4SLinus Torvalds goto repeat; 1973d8dc74f2SAdrian Bunk } 19747f4446eeSMatthew Wilcox if (error == -EEXIST) 197554af6042SHugh Dickins goto repeat; 197654af6042SHugh Dickins return error; 19771da177e4SLinus Torvalds } 19781da177e4SLinus Torvalds 197910d20bd2SLinus Torvalds /* 198010d20bd2SLinus Torvalds * This is like autoremove_wake_function, but it removes the wait queue 198110d20bd2SLinus Torvalds * entry unconditionally - even if something else had already woken the 198210d20bd2SLinus Torvalds * target. 198310d20bd2SLinus Torvalds */ 1984ac6424b9SIngo Molnar static int synchronous_wake_function(wait_queue_entry_t *wait, unsigned mode, int sync, void *key) 198510d20bd2SLinus Torvalds { 198610d20bd2SLinus Torvalds int ret = default_wake_function(wait, mode, sync, key); 19872055da97SIngo Molnar list_del_init(&wait->entry); 198810d20bd2SLinus Torvalds return ret; 198910d20bd2SLinus Torvalds } 199010d20bd2SLinus Torvalds 199120acce67SSouptick Joarder static vm_fault_t shmem_fault(struct vm_fault *vmf) 19921da177e4SLinus Torvalds { 199311bac800SDave Jiang struct vm_area_struct *vma = vmf->vma; 1994496ad9aaSAl Viro struct inode *inode = file_inode(vma->vm_file); 19959e18eb29SAndres Lagar-Cavilla gfp_t gfp = mapping_gfp_mask(inode->i_mapping); 1996657e3038SKirill A. Shutemov enum sgp_type sgp; 199720acce67SSouptick Joarder int err; 199820acce67SSouptick Joarder vm_fault_t ret = VM_FAULT_LOCKED; 19991da177e4SLinus Torvalds 2000f00cdc6dSHugh Dickins /* 2001f00cdc6dSHugh Dickins * Trinity finds that probing a hole which tmpfs is punching can 2002f00cdc6dSHugh Dickins * prevent the hole-punch from ever completing: which in turn 2003f00cdc6dSHugh Dickins * locks writers out with its hold on i_mutex. So refrain from 20048e205f77SHugh Dickins * faulting pages into the hole while it's being punched. Although 20058e205f77SHugh Dickins * shmem_undo_range() does remove the additions, it may be unable to 20068e205f77SHugh Dickins * keep up, as each new page needs its own unmap_mapping_range() call, 20078e205f77SHugh Dickins * and the i_mmap tree grows ever slower to scan if new vmas are added. 20088e205f77SHugh Dickins * 20098e205f77SHugh Dickins * It does not matter if we sometimes reach this check just before the 20108e205f77SHugh Dickins * hole-punch begins, so that one fault then races with the punch: 20118e205f77SHugh Dickins * we just need to make racing faults a rare case. 20128e205f77SHugh Dickins * 20138e205f77SHugh Dickins * The implementation below would be much simpler if we just used a 20148e205f77SHugh Dickins * standard mutex or completion: but we cannot take i_mutex in fault, 20158e205f77SHugh Dickins * and bloating every shmem inode for this unlikely case would be sad. 2016f00cdc6dSHugh Dickins */ 2017f00cdc6dSHugh Dickins if (unlikely(inode->i_private)) { 2018f00cdc6dSHugh Dickins struct shmem_falloc *shmem_falloc; 2019f00cdc6dSHugh Dickins 2020f00cdc6dSHugh Dickins spin_lock(&inode->i_lock); 2021f00cdc6dSHugh Dickins shmem_falloc = inode->i_private; 20228e205f77SHugh Dickins if (shmem_falloc && 20238e205f77SHugh Dickins shmem_falloc->waitq && 20248e205f77SHugh Dickins vmf->pgoff >= shmem_falloc->start && 20258e205f77SHugh Dickins vmf->pgoff < shmem_falloc->next) { 20268897c1b1SKirill A. Shutemov struct file *fpin; 20278e205f77SHugh Dickins wait_queue_head_t *shmem_falloc_waitq; 202810d20bd2SLinus Torvalds DEFINE_WAIT_FUNC(shmem_fault_wait, synchronous_wake_function); 20298e205f77SHugh Dickins 20308e205f77SHugh Dickins ret = VM_FAULT_NOPAGE; 20318897c1b1SKirill A. Shutemov fpin = maybe_unlock_mmap_for_io(vmf, NULL); 20328897c1b1SKirill A. Shutemov if (fpin) 20338e205f77SHugh Dickins ret = VM_FAULT_RETRY; 20348e205f77SHugh Dickins 20358e205f77SHugh Dickins shmem_falloc_waitq = shmem_falloc->waitq; 20368e205f77SHugh Dickins prepare_to_wait(shmem_falloc_waitq, &shmem_fault_wait, 20378e205f77SHugh Dickins TASK_UNINTERRUPTIBLE); 20388e205f77SHugh Dickins spin_unlock(&inode->i_lock); 20398e205f77SHugh Dickins schedule(); 20408e205f77SHugh Dickins 20418e205f77SHugh Dickins /* 20428e205f77SHugh Dickins * shmem_falloc_waitq points into the shmem_fallocate() 20438e205f77SHugh Dickins * stack of the hole-punching task: shmem_falloc_waitq 20448e205f77SHugh Dickins * is usually invalid by the time we reach here, but 20458e205f77SHugh Dickins * finish_wait() does not dereference it in that case; 20468e205f77SHugh Dickins * though i_lock needed lest racing with wake_up_all(). 20478e205f77SHugh Dickins */ 20488e205f77SHugh Dickins spin_lock(&inode->i_lock); 20498e205f77SHugh Dickins finish_wait(shmem_falloc_waitq, &shmem_fault_wait); 20508e205f77SHugh Dickins spin_unlock(&inode->i_lock); 20518897c1b1SKirill A. Shutemov 20528897c1b1SKirill A. Shutemov if (fpin) 20538897c1b1SKirill A. Shutemov fput(fpin); 20548e205f77SHugh Dickins return ret; 2055f00cdc6dSHugh Dickins } 20568e205f77SHugh Dickins spin_unlock(&inode->i_lock); 2057f00cdc6dSHugh Dickins } 2058f00cdc6dSHugh Dickins 2059657e3038SKirill A. Shutemov sgp = SGP_CACHE; 206018600332SMichal Hocko 206118600332SMichal Hocko if ((vma->vm_flags & VM_NOHUGEPAGE) || 206218600332SMichal Hocko test_bit(MMF_DISABLE_THP, &vma->vm_mm->flags)) 2063657e3038SKirill A. Shutemov sgp = SGP_NOHUGE; 206418600332SMichal Hocko else if (vma->vm_flags & VM_HUGEPAGE) 206518600332SMichal Hocko sgp = SGP_HUGE; 2066657e3038SKirill A. Shutemov 206720acce67SSouptick Joarder err = shmem_getpage_gfp(inode, vmf->pgoff, &vmf->page, sgp, 2068cfda0526SMike Rapoport gfp, vma, vmf, &ret); 206920acce67SSouptick Joarder if (err) 207020acce67SSouptick Joarder return vmf_error(err); 207168da9f05SHugh Dickins return ret; 20721da177e4SLinus Torvalds } 20731da177e4SLinus Torvalds 2074c01d5b30SHugh Dickins unsigned long shmem_get_unmapped_area(struct file *file, 2075c01d5b30SHugh Dickins unsigned long uaddr, unsigned long len, 2076c01d5b30SHugh Dickins unsigned long pgoff, unsigned long flags) 2077c01d5b30SHugh Dickins { 2078c01d5b30SHugh Dickins unsigned long (*get_area)(struct file *, 2079c01d5b30SHugh Dickins unsigned long, unsigned long, unsigned long, unsigned long); 2080c01d5b30SHugh Dickins unsigned long addr; 2081c01d5b30SHugh Dickins unsigned long offset; 2082c01d5b30SHugh Dickins unsigned long inflated_len; 2083c01d5b30SHugh Dickins unsigned long inflated_addr; 2084c01d5b30SHugh Dickins unsigned long inflated_offset; 2085c01d5b30SHugh Dickins 2086c01d5b30SHugh Dickins if (len > TASK_SIZE) 2087c01d5b30SHugh Dickins return -ENOMEM; 2088c01d5b30SHugh Dickins 2089c01d5b30SHugh Dickins get_area = current->mm->get_unmapped_area; 2090c01d5b30SHugh Dickins addr = get_area(file, uaddr, len, pgoff, flags); 2091c01d5b30SHugh Dickins 2092e496cf3dSKirill A. Shutemov if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE)) 2093c01d5b30SHugh Dickins return addr; 2094c01d5b30SHugh Dickins if (IS_ERR_VALUE(addr)) 2095c01d5b30SHugh Dickins return addr; 2096c01d5b30SHugh Dickins if (addr & ~PAGE_MASK) 2097c01d5b30SHugh Dickins return addr; 2098c01d5b30SHugh Dickins if (addr > TASK_SIZE - len) 2099c01d5b30SHugh Dickins return addr; 2100c01d5b30SHugh Dickins 2101c01d5b30SHugh Dickins if (shmem_huge == SHMEM_HUGE_DENY) 2102c01d5b30SHugh Dickins return addr; 2103c01d5b30SHugh Dickins if (len < HPAGE_PMD_SIZE) 2104c01d5b30SHugh Dickins return addr; 2105c01d5b30SHugh Dickins if (flags & MAP_FIXED) 2106c01d5b30SHugh Dickins return addr; 2107c01d5b30SHugh Dickins /* 2108c01d5b30SHugh Dickins * Our priority is to support MAP_SHARED mapped hugely; 2109c01d5b30SHugh Dickins * and support MAP_PRIVATE mapped hugely too, until it is COWed. 2110*99158997SKirill A. Shutemov * But if caller specified an address hint and we allocated area there 2111*99158997SKirill A. Shutemov * successfully, respect that as before. 2112c01d5b30SHugh Dickins */ 2113*99158997SKirill A. Shutemov if (uaddr == addr) 2114c01d5b30SHugh Dickins return addr; 2115c01d5b30SHugh Dickins 2116c01d5b30SHugh Dickins if (shmem_huge != SHMEM_HUGE_FORCE) { 2117c01d5b30SHugh Dickins struct super_block *sb; 2118c01d5b30SHugh Dickins 2119c01d5b30SHugh Dickins if (file) { 2120c01d5b30SHugh Dickins VM_BUG_ON(file->f_op != &shmem_file_operations); 2121c01d5b30SHugh Dickins sb = file_inode(file)->i_sb; 2122c01d5b30SHugh Dickins } else { 2123c01d5b30SHugh Dickins /* 2124c01d5b30SHugh Dickins * Called directly from mm/mmap.c, or drivers/char/mem.c 2125c01d5b30SHugh Dickins * for "/dev/zero", to create a shared anonymous object. 2126c01d5b30SHugh Dickins */ 2127c01d5b30SHugh Dickins if (IS_ERR(shm_mnt)) 2128c01d5b30SHugh Dickins return addr; 2129c01d5b30SHugh Dickins sb = shm_mnt->mnt_sb; 2130c01d5b30SHugh Dickins } 21313089bf61SToshi Kani if (SHMEM_SB(sb)->huge == SHMEM_HUGE_NEVER) 2132c01d5b30SHugh Dickins return addr; 2133c01d5b30SHugh Dickins } 2134c01d5b30SHugh Dickins 2135c01d5b30SHugh Dickins offset = (pgoff << PAGE_SHIFT) & (HPAGE_PMD_SIZE-1); 2136c01d5b30SHugh Dickins if (offset && offset + len < 2 * HPAGE_PMD_SIZE) 2137c01d5b30SHugh Dickins return addr; 2138c01d5b30SHugh Dickins if ((addr & (HPAGE_PMD_SIZE-1)) == offset) 2139c01d5b30SHugh Dickins return addr; 2140c01d5b30SHugh Dickins 2141c01d5b30SHugh Dickins inflated_len = len + HPAGE_PMD_SIZE - PAGE_SIZE; 2142c01d5b30SHugh Dickins if (inflated_len > TASK_SIZE) 2143c01d5b30SHugh Dickins return addr; 2144c01d5b30SHugh Dickins if (inflated_len < len) 2145c01d5b30SHugh Dickins return addr; 2146c01d5b30SHugh Dickins 2147*99158997SKirill A. Shutemov inflated_addr = get_area(NULL, uaddr, inflated_len, 0, flags); 2148c01d5b30SHugh Dickins if (IS_ERR_VALUE(inflated_addr)) 2149c01d5b30SHugh Dickins return addr; 2150c01d5b30SHugh Dickins if (inflated_addr & ~PAGE_MASK) 2151c01d5b30SHugh Dickins return addr; 2152c01d5b30SHugh Dickins 2153c01d5b30SHugh Dickins inflated_offset = inflated_addr & (HPAGE_PMD_SIZE-1); 2154c01d5b30SHugh Dickins inflated_addr += offset - inflated_offset; 2155c01d5b30SHugh Dickins if (inflated_offset > offset) 2156c01d5b30SHugh Dickins inflated_addr += HPAGE_PMD_SIZE; 2157c01d5b30SHugh Dickins 2158c01d5b30SHugh Dickins if (inflated_addr > TASK_SIZE - len) 2159c01d5b30SHugh Dickins return addr; 2160c01d5b30SHugh Dickins return inflated_addr; 2161c01d5b30SHugh Dickins } 2162c01d5b30SHugh Dickins 21631da177e4SLinus Torvalds #ifdef CONFIG_NUMA 216441ffe5d5SHugh Dickins static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *mpol) 21651da177e4SLinus Torvalds { 2166496ad9aaSAl Viro struct inode *inode = file_inode(vma->vm_file); 216741ffe5d5SHugh Dickins return mpol_set_shared_policy(&SHMEM_I(inode)->policy, vma, mpol); 21681da177e4SLinus Torvalds } 21691da177e4SLinus Torvalds 2170d8dc74f2SAdrian Bunk static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma, 2171d8dc74f2SAdrian Bunk unsigned long addr) 21721da177e4SLinus Torvalds { 2173496ad9aaSAl Viro struct inode *inode = file_inode(vma->vm_file); 217441ffe5d5SHugh Dickins pgoff_t index; 21751da177e4SLinus Torvalds 217641ffe5d5SHugh Dickins index = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff; 217741ffe5d5SHugh Dickins return mpol_shared_policy_lookup(&SHMEM_I(inode)->policy, index); 21781da177e4SLinus Torvalds } 21791da177e4SLinus Torvalds #endif 21801da177e4SLinus Torvalds 21811da177e4SLinus Torvalds int shmem_lock(struct file *file, int lock, struct user_struct *user) 21821da177e4SLinus Torvalds { 2183496ad9aaSAl Viro struct inode *inode = file_inode(file); 21841da177e4SLinus Torvalds struct shmem_inode_info *info = SHMEM_I(inode); 21851da177e4SLinus Torvalds int retval = -ENOMEM; 21861da177e4SLinus Torvalds 21874595ef88SKirill A. Shutemov spin_lock_irq(&info->lock); 21881da177e4SLinus Torvalds if (lock && !(info->flags & VM_LOCKED)) { 21891da177e4SLinus Torvalds if (!user_shm_lock(inode->i_size, user)) 21901da177e4SLinus Torvalds goto out_nomem; 21911da177e4SLinus Torvalds info->flags |= VM_LOCKED; 219289e004eaSLee Schermerhorn mapping_set_unevictable(file->f_mapping); 21931da177e4SLinus Torvalds } 21941da177e4SLinus Torvalds if (!lock && (info->flags & VM_LOCKED) && user) { 21951da177e4SLinus Torvalds user_shm_unlock(inode->i_size, user); 21961da177e4SLinus Torvalds info->flags &= ~VM_LOCKED; 219789e004eaSLee Schermerhorn mapping_clear_unevictable(file->f_mapping); 21981da177e4SLinus Torvalds } 21991da177e4SLinus Torvalds retval = 0; 220089e004eaSLee Schermerhorn 22011da177e4SLinus Torvalds out_nomem: 22024595ef88SKirill A. Shutemov spin_unlock_irq(&info->lock); 22031da177e4SLinus Torvalds return retval; 22041da177e4SLinus Torvalds } 22051da177e4SLinus Torvalds 22069b83a6a8SAdrian Bunk static int shmem_mmap(struct file *file, struct vm_area_struct *vma) 22071da177e4SLinus Torvalds { 2208ab3948f5SJoel Fernandes (Google) struct shmem_inode_info *info = SHMEM_I(file_inode(file)); 2209ab3948f5SJoel Fernandes (Google) 2210ab3948f5SJoel Fernandes (Google) if (info->seals & F_SEAL_FUTURE_WRITE) { 2211ab3948f5SJoel Fernandes (Google) /* 2212ab3948f5SJoel Fernandes (Google) * New PROT_WRITE and MAP_SHARED mmaps are not allowed when 2213ab3948f5SJoel Fernandes (Google) * "future write" seal active. 2214ab3948f5SJoel Fernandes (Google) */ 2215ab3948f5SJoel Fernandes (Google) if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_WRITE)) 2216ab3948f5SJoel Fernandes (Google) return -EPERM; 2217ab3948f5SJoel Fernandes (Google) 2218ab3948f5SJoel Fernandes (Google) /* 221905d35110SNicolas Geoffray * Since an F_SEAL_FUTURE_WRITE sealed memfd can be mapped as 222005d35110SNicolas Geoffray * MAP_SHARED and read-only, take care to not allow mprotect to 222105d35110SNicolas Geoffray * revert protections on such mappings. Do this only for shared 222205d35110SNicolas Geoffray * mappings. For private mappings, don't need to mask 222305d35110SNicolas Geoffray * VM_MAYWRITE as we still want them to be COW-writable. 2224ab3948f5SJoel Fernandes (Google) */ 222505d35110SNicolas Geoffray if (vma->vm_flags & VM_SHARED) 2226ab3948f5SJoel Fernandes (Google) vma->vm_flags &= ~(VM_MAYWRITE); 2227ab3948f5SJoel Fernandes (Google) } 2228ab3948f5SJoel Fernandes (Google) 22291da177e4SLinus Torvalds file_accessed(file); 22301da177e4SLinus Torvalds vma->vm_ops = &shmem_vm_ops; 2231e496cf3dSKirill A. Shutemov if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE) && 2232f3f0e1d2SKirill A. Shutemov ((vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK) < 2233f3f0e1d2SKirill A. Shutemov (vma->vm_end & HPAGE_PMD_MASK)) { 2234f3f0e1d2SKirill A. Shutemov khugepaged_enter(vma, vma->vm_flags); 2235f3f0e1d2SKirill A. Shutemov } 22361da177e4SLinus Torvalds return 0; 22371da177e4SLinus Torvalds } 22381da177e4SLinus Torvalds 2239454abafeSDmitry Monakhov static struct inode *shmem_get_inode(struct super_block *sb, const struct inode *dir, 224009208d15SAl Viro umode_t mode, dev_t dev, unsigned long flags) 22411da177e4SLinus Torvalds { 22421da177e4SLinus Torvalds struct inode *inode; 22431da177e4SLinus Torvalds struct shmem_inode_info *info; 22441da177e4SLinus Torvalds struct shmem_sb_info *sbinfo = SHMEM_SB(sb); 22451da177e4SLinus Torvalds 22465b04c689SPavel Emelyanov if (shmem_reserve_inode(sb)) 22471da177e4SLinus Torvalds return NULL; 22481da177e4SLinus Torvalds 22491da177e4SLinus Torvalds inode = new_inode(sb); 22501da177e4SLinus Torvalds if (inode) { 225185fe4025SChristoph Hellwig inode->i_ino = get_next_ino(); 2252454abafeSDmitry Monakhov inode_init_owner(inode, dir, mode); 22531da177e4SLinus Torvalds inode->i_blocks = 0; 2254078cd827SDeepa Dinamani inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode); 225546c9a946SArnd Bergmann inode->i_generation = prandom_u32(); 22561da177e4SLinus Torvalds info = SHMEM_I(inode); 22571da177e4SLinus Torvalds memset(info, 0, (char *)inode - (char *)info); 22581da177e4SLinus Torvalds spin_lock_init(&info->lock); 2259af53d3e9SHugh Dickins atomic_set(&info->stop_eviction, 0); 226040e041a2SDavid Herrmann info->seals = F_SEAL_SEAL; 22610b0a0806SHugh Dickins info->flags = flags & VM_NORESERVE; 2262779750d2SKirill A. Shutemov INIT_LIST_HEAD(&info->shrinklist); 22631da177e4SLinus Torvalds INIT_LIST_HEAD(&info->swaplist); 226438f38657SAristeu Rozanski simple_xattrs_init(&info->xattrs); 226572c04902SAl Viro cache_no_acl(inode); 22661da177e4SLinus Torvalds 22671da177e4SLinus Torvalds switch (mode & S_IFMT) { 22681da177e4SLinus Torvalds default: 226939f0247dSAndreas Gruenbacher inode->i_op = &shmem_special_inode_operations; 22701da177e4SLinus Torvalds init_special_inode(inode, mode, dev); 22711da177e4SLinus Torvalds break; 22721da177e4SLinus Torvalds case S_IFREG: 227314fcc23fSHugh Dickins inode->i_mapping->a_ops = &shmem_aops; 22741da177e4SLinus Torvalds inode->i_op = &shmem_inode_operations; 22751da177e4SLinus Torvalds inode->i_fop = &shmem_file_operations; 227671fe804bSLee Schermerhorn mpol_shared_policy_init(&info->policy, 227771fe804bSLee Schermerhorn shmem_get_sbmpol(sbinfo)); 22781da177e4SLinus Torvalds break; 22791da177e4SLinus Torvalds case S_IFDIR: 2280d8c76e6fSDave Hansen inc_nlink(inode); 22811da177e4SLinus Torvalds /* Some things misbehave if size == 0 on a directory */ 22821da177e4SLinus Torvalds inode->i_size = 2 * BOGO_DIRENT_SIZE; 22831da177e4SLinus Torvalds inode->i_op = &shmem_dir_inode_operations; 22841da177e4SLinus Torvalds inode->i_fop = &simple_dir_operations; 22851da177e4SLinus Torvalds break; 22861da177e4SLinus Torvalds case S_IFLNK: 22871da177e4SLinus Torvalds /* 22881da177e4SLinus Torvalds * Must not load anything in the rbtree, 22891da177e4SLinus Torvalds * mpol_free_shared_policy will not be called. 22901da177e4SLinus Torvalds */ 229171fe804bSLee Schermerhorn mpol_shared_policy_init(&info->policy, NULL); 22921da177e4SLinus Torvalds break; 22931da177e4SLinus Torvalds } 2294b45d71fbSJoel Fernandes (Google) 2295b45d71fbSJoel Fernandes (Google) lockdep_annotate_inode_mutex_key(inode); 22965b04c689SPavel Emelyanov } else 22975b04c689SPavel Emelyanov shmem_free_inode(sb); 22981da177e4SLinus Torvalds return inode; 22991da177e4SLinus Torvalds } 23001da177e4SLinus Torvalds 23010cd6144aSJohannes Weiner bool shmem_mapping(struct address_space *mapping) 23020cd6144aSJohannes Weiner { 2303f8005451SHugh Dickins return mapping->a_ops == &shmem_aops; 23040cd6144aSJohannes Weiner } 23050cd6144aSJohannes Weiner 23068d103963SMike Rapoport static int shmem_mfill_atomic_pte(struct mm_struct *dst_mm, 23074c27fe4cSMike Rapoport pmd_t *dst_pmd, 23084c27fe4cSMike Rapoport struct vm_area_struct *dst_vma, 23094c27fe4cSMike Rapoport unsigned long dst_addr, 23104c27fe4cSMike Rapoport unsigned long src_addr, 23118d103963SMike Rapoport bool zeropage, 23124c27fe4cSMike Rapoport struct page **pagep) 23134c27fe4cSMike Rapoport { 23144c27fe4cSMike Rapoport struct inode *inode = file_inode(dst_vma->vm_file); 23154c27fe4cSMike Rapoport struct shmem_inode_info *info = SHMEM_I(inode); 23164c27fe4cSMike Rapoport struct address_space *mapping = inode->i_mapping; 23174c27fe4cSMike Rapoport gfp_t gfp = mapping_gfp_mask(mapping); 23184c27fe4cSMike Rapoport pgoff_t pgoff = linear_page_index(dst_vma, dst_addr); 23194c27fe4cSMike Rapoport struct mem_cgroup *memcg; 23204c27fe4cSMike Rapoport spinlock_t *ptl; 23214c27fe4cSMike Rapoport void *page_kaddr; 23224c27fe4cSMike Rapoport struct page *page; 23234c27fe4cSMike Rapoport pte_t _dst_pte, *dst_pte; 23244c27fe4cSMike Rapoport int ret; 2325e2a50c1fSAndrea Arcangeli pgoff_t offset, max_off; 23264c27fe4cSMike Rapoport 23274c27fe4cSMike Rapoport ret = -ENOMEM; 23280f079694SMike Rapoport if (!shmem_inode_acct_block(inode, 1)) 23294c27fe4cSMike Rapoport goto out; 23304c27fe4cSMike Rapoport 2331cb658a45SAndrea Arcangeli if (!*pagep) { 23324c27fe4cSMike Rapoport page = shmem_alloc_page(gfp, info, pgoff); 23334c27fe4cSMike Rapoport if (!page) 23340f079694SMike Rapoport goto out_unacct_blocks; 23354c27fe4cSMike Rapoport 23368d103963SMike Rapoport if (!zeropage) { /* mcopy_atomic */ 23374c27fe4cSMike Rapoport page_kaddr = kmap_atomic(page); 23388d103963SMike Rapoport ret = copy_from_user(page_kaddr, 23398d103963SMike Rapoport (const void __user *)src_addr, 23404c27fe4cSMike Rapoport PAGE_SIZE); 23414c27fe4cSMike Rapoport kunmap_atomic(page_kaddr); 23424c27fe4cSMike Rapoport 23434c27fe4cSMike Rapoport /* fallback to copy_from_user outside mmap_sem */ 23444c27fe4cSMike Rapoport if (unlikely(ret)) { 23454c27fe4cSMike Rapoport *pagep = page; 23460f079694SMike Rapoport shmem_inode_unacct_blocks(inode, 1); 23474c27fe4cSMike Rapoport /* don't free the page */ 23489e368259SAndrea Arcangeli return -ENOENT; 23494c27fe4cSMike Rapoport } 23508d103963SMike Rapoport } else { /* mfill_zeropage_atomic */ 23518d103963SMike Rapoport clear_highpage(page); 23528d103963SMike Rapoport } 23534c27fe4cSMike Rapoport } else { 23544c27fe4cSMike Rapoport page = *pagep; 23554c27fe4cSMike Rapoport *pagep = NULL; 23564c27fe4cSMike Rapoport } 23574c27fe4cSMike Rapoport 23589cc90c66SAndrea Arcangeli VM_BUG_ON(PageLocked(page) || PageSwapBacked(page)); 23599cc90c66SAndrea Arcangeli __SetPageLocked(page); 23609cc90c66SAndrea Arcangeli __SetPageSwapBacked(page); 2361a425d358SAndrea Arcangeli __SetPageUptodate(page); 23629cc90c66SAndrea Arcangeli 2363e2a50c1fSAndrea Arcangeli ret = -EFAULT; 2364e2a50c1fSAndrea Arcangeli offset = linear_page_index(dst_vma, dst_addr); 2365e2a50c1fSAndrea Arcangeli max_off = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE); 2366e2a50c1fSAndrea Arcangeli if (unlikely(offset >= max_off)) 2367e2a50c1fSAndrea Arcangeli goto out_release; 2368e2a50c1fSAndrea Arcangeli 23692cf85583STejun Heo ret = mem_cgroup_try_charge_delay(page, dst_mm, gfp, &memcg, false); 23704c27fe4cSMike Rapoport if (ret) 23714c27fe4cSMike Rapoport goto out_release; 23724c27fe4cSMike Rapoport 2373552446a4SMatthew Wilcox ret = shmem_add_to_page_cache(page, mapping, pgoff, NULL, 2374552446a4SMatthew Wilcox gfp & GFP_RECLAIM_MASK); 23754c27fe4cSMike Rapoport if (ret) 23764c27fe4cSMike Rapoport goto out_release_uncharge; 23774c27fe4cSMike Rapoport 23784c27fe4cSMike Rapoport mem_cgroup_commit_charge(page, memcg, false, false); 23794c27fe4cSMike Rapoport 23804c27fe4cSMike Rapoport _dst_pte = mk_pte(page, dst_vma->vm_page_prot); 23814c27fe4cSMike Rapoport if (dst_vma->vm_flags & VM_WRITE) 23824c27fe4cSMike Rapoport _dst_pte = pte_mkwrite(pte_mkdirty(_dst_pte)); 2383dcf7fe9dSAndrea Arcangeli else { 2384dcf7fe9dSAndrea Arcangeli /* 2385dcf7fe9dSAndrea Arcangeli * We don't set the pte dirty if the vma has no 2386dcf7fe9dSAndrea Arcangeli * VM_WRITE permission, so mark the page dirty or it 2387dcf7fe9dSAndrea Arcangeli * could be freed from under us. We could do it 2388dcf7fe9dSAndrea Arcangeli * unconditionally before unlock_page(), but doing it 2389dcf7fe9dSAndrea Arcangeli * only if VM_WRITE is not set is faster. 2390dcf7fe9dSAndrea Arcangeli */ 2391dcf7fe9dSAndrea Arcangeli set_page_dirty(page); 2392dcf7fe9dSAndrea Arcangeli } 23934c27fe4cSMike Rapoport 23944c27fe4cSMike Rapoport dst_pte = pte_offset_map_lock(dst_mm, dst_pmd, dst_addr, &ptl); 2395e2a50c1fSAndrea Arcangeli 2396e2a50c1fSAndrea Arcangeli ret = -EFAULT; 2397e2a50c1fSAndrea Arcangeli max_off = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE); 2398e2a50c1fSAndrea Arcangeli if (unlikely(offset >= max_off)) 2399e2a50c1fSAndrea Arcangeli goto out_release_uncharge_unlock; 2400e2a50c1fSAndrea Arcangeli 2401e2a50c1fSAndrea Arcangeli ret = -EEXIST; 24024c27fe4cSMike Rapoport if (!pte_none(*dst_pte)) 24034c27fe4cSMike Rapoport goto out_release_uncharge_unlock; 24044c27fe4cSMike Rapoport 24054c27fe4cSMike Rapoport lru_cache_add_anon(page); 24064c27fe4cSMike Rapoport 24074c27fe4cSMike Rapoport spin_lock(&info->lock); 24084c27fe4cSMike Rapoport info->alloced++; 24094c27fe4cSMike Rapoport inode->i_blocks += BLOCKS_PER_PAGE; 24104c27fe4cSMike Rapoport shmem_recalc_inode(inode); 24114c27fe4cSMike Rapoport spin_unlock(&info->lock); 24124c27fe4cSMike Rapoport 24134c27fe4cSMike Rapoport inc_mm_counter(dst_mm, mm_counter_file(page)); 24144c27fe4cSMike Rapoport page_add_file_rmap(page, false); 24154c27fe4cSMike Rapoport set_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte); 24164c27fe4cSMike Rapoport 24174c27fe4cSMike Rapoport /* No need to invalidate - it was non-present before */ 24184c27fe4cSMike Rapoport update_mmu_cache(dst_vma, dst_addr, dst_pte); 24194c27fe4cSMike Rapoport pte_unmap_unlock(dst_pte, ptl); 2420e2a50c1fSAndrea Arcangeli unlock_page(page); 24214c27fe4cSMike Rapoport ret = 0; 24224c27fe4cSMike Rapoport out: 24234c27fe4cSMike Rapoport return ret; 24244c27fe4cSMike Rapoport out_release_uncharge_unlock: 24254c27fe4cSMike Rapoport pte_unmap_unlock(dst_pte, ptl); 2426dcf7fe9dSAndrea Arcangeli ClearPageDirty(page); 2427e2a50c1fSAndrea Arcangeli delete_from_page_cache(page); 24284c27fe4cSMike Rapoport out_release_uncharge: 24294c27fe4cSMike Rapoport mem_cgroup_cancel_charge(page, memcg, false); 24304c27fe4cSMike Rapoport out_release: 24319cc90c66SAndrea Arcangeli unlock_page(page); 24324c27fe4cSMike Rapoport put_page(page); 24334c27fe4cSMike Rapoport out_unacct_blocks: 24340f079694SMike Rapoport shmem_inode_unacct_blocks(inode, 1); 24354c27fe4cSMike Rapoport goto out; 24364c27fe4cSMike Rapoport } 24374c27fe4cSMike Rapoport 24388d103963SMike Rapoport int shmem_mcopy_atomic_pte(struct mm_struct *dst_mm, 24398d103963SMike Rapoport pmd_t *dst_pmd, 24408d103963SMike Rapoport struct vm_area_struct *dst_vma, 24418d103963SMike Rapoport unsigned long dst_addr, 24428d103963SMike Rapoport unsigned long src_addr, 24438d103963SMike Rapoport struct page **pagep) 24448d103963SMike Rapoport { 24458d103963SMike Rapoport return shmem_mfill_atomic_pte(dst_mm, dst_pmd, dst_vma, 24468d103963SMike Rapoport dst_addr, src_addr, false, pagep); 24478d103963SMike Rapoport } 24488d103963SMike Rapoport 24498d103963SMike Rapoport int shmem_mfill_zeropage_pte(struct mm_struct *dst_mm, 24508d103963SMike Rapoport pmd_t *dst_pmd, 24518d103963SMike Rapoport struct vm_area_struct *dst_vma, 24528d103963SMike Rapoport unsigned long dst_addr) 24538d103963SMike Rapoport { 24548d103963SMike Rapoport struct page *page = NULL; 24558d103963SMike Rapoport 24568d103963SMike Rapoport return shmem_mfill_atomic_pte(dst_mm, dst_pmd, dst_vma, 24578d103963SMike Rapoport dst_addr, 0, true, &page); 24588d103963SMike Rapoport } 24598d103963SMike Rapoport 24601da177e4SLinus Torvalds #ifdef CONFIG_TMPFS 246192e1d5beSArjan van de Ven static const struct inode_operations shmem_symlink_inode_operations; 246269f07ec9SHugh Dickins static const struct inode_operations shmem_short_symlink_operations; 24631da177e4SLinus Torvalds 24646d9d88d0SJarkko Sakkinen #ifdef CONFIG_TMPFS_XATTR 24656d9d88d0SJarkko Sakkinen static int shmem_initxattrs(struct inode *, const struct xattr *, void *); 24666d9d88d0SJarkko Sakkinen #else 24676d9d88d0SJarkko Sakkinen #define shmem_initxattrs NULL 24686d9d88d0SJarkko Sakkinen #endif 24696d9d88d0SJarkko Sakkinen 24701da177e4SLinus Torvalds static int 2471800d15a5SNick Piggin shmem_write_begin(struct file *file, struct address_space *mapping, 2472800d15a5SNick Piggin loff_t pos, unsigned len, unsigned flags, 2473800d15a5SNick Piggin struct page **pagep, void **fsdata) 24741da177e4SLinus Torvalds { 2475800d15a5SNick Piggin struct inode *inode = mapping->host; 247640e041a2SDavid Herrmann struct shmem_inode_info *info = SHMEM_I(inode); 247709cbfeafSKirill A. Shutemov pgoff_t index = pos >> PAGE_SHIFT; 247840e041a2SDavid Herrmann 247940e041a2SDavid Herrmann /* i_mutex is held by caller */ 2480ab3948f5SJoel Fernandes (Google) if (unlikely(info->seals & (F_SEAL_GROW | 2481ab3948f5SJoel Fernandes (Google) F_SEAL_WRITE | F_SEAL_FUTURE_WRITE))) { 2482ab3948f5SJoel Fernandes (Google) if (info->seals & (F_SEAL_WRITE | F_SEAL_FUTURE_WRITE)) 248340e041a2SDavid Herrmann return -EPERM; 248440e041a2SDavid Herrmann if ((info->seals & F_SEAL_GROW) && pos + len > inode->i_size) 248540e041a2SDavid Herrmann return -EPERM; 248640e041a2SDavid Herrmann } 248740e041a2SDavid Herrmann 24889e18eb29SAndres Lagar-Cavilla return shmem_getpage(inode, index, pagep, SGP_WRITE); 2489800d15a5SNick Piggin } 2490800d15a5SNick Piggin 2491800d15a5SNick Piggin static int 2492800d15a5SNick Piggin shmem_write_end(struct file *file, struct address_space *mapping, 2493800d15a5SNick Piggin loff_t pos, unsigned len, unsigned copied, 2494800d15a5SNick Piggin struct page *page, void *fsdata) 2495800d15a5SNick Piggin { 2496800d15a5SNick Piggin struct inode *inode = mapping->host; 2497800d15a5SNick Piggin 2498800d15a5SNick Piggin if (pos + copied > inode->i_size) 2499800d15a5SNick Piggin i_size_write(inode, pos + copied); 2500800d15a5SNick Piggin 2501ec9516fbSHugh Dickins if (!PageUptodate(page)) { 2502800d8c63SKirill A. Shutemov struct page *head = compound_head(page); 2503800d8c63SKirill A. Shutemov if (PageTransCompound(page)) { 2504800d8c63SKirill A. Shutemov int i; 2505800d8c63SKirill A. Shutemov 2506800d8c63SKirill A. Shutemov for (i = 0; i < HPAGE_PMD_NR; i++) { 2507800d8c63SKirill A. Shutemov if (head + i == page) 2508800d8c63SKirill A. Shutemov continue; 2509800d8c63SKirill A. Shutemov clear_highpage(head + i); 2510800d8c63SKirill A. Shutemov flush_dcache_page(head + i); 2511800d8c63SKirill A. Shutemov } 2512800d8c63SKirill A. Shutemov } 251309cbfeafSKirill A. Shutemov if (copied < PAGE_SIZE) { 251409cbfeafSKirill A. Shutemov unsigned from = pos & (PAGE_SIZE - 1); 2515ec9516fbSHugh Dickins zero_user_segments(page, 0, from, 251609cbfeafSKirill A. Shutemov from + copied, PAGE_SIZE); 2517ec9516fbSHugh Dickins } 2518800d8c63SKirill A. Shutemov SetPageUptodate(head); 2519ec9516fbSHugh Dickins } 2520d3602444SHugh Dickins set_page_dirty(page); 25216746aff7SWu Fengguang unlock_page(page); 252209cbfeafSKirill A. Shutemov put_page(page); 2523d3602444SHugh Dickins 2524800d15a5SNick Piggin return copied; 25251da177e4SLinus Torvalds } 25261da177e4SLinus Torvalds 25272ba5bbedSAl Viro static ssize_t shmem_file_read_iter(struct kiocb *iocb, struct iov_iter *to) 25281da177e4SLinus Torvalds { 25296e58e79dSAl Viro struct file *file = iocb->ki_filp; 25306e58e79dSAl Viro struct inode *inode = file_inode(file); 25311da177e4SLinus Torvalds struct address_space *mapping = inode->i_mapping; 253241ffe5d5SHugh Dickins pgoff_t index; 253341ffe5d5SHugh Dickins unsigned long offset; 2534a0ee5ec5SHugh Dickins enum sgp_type sgp = SGP_READ; 2535f7c1d074SGeert Uytterhoeven int error = 0; 2536cb66a7a1SAl Viro ssize_t retval = 0; 25376e58e79dSAl Viro loff_t *ppos = &iocb->ki_pos; 2538a0ee5ec5SHugh Dickins 2539a0ee5ec5SHugh Dickins /* 2540a0ee5ec5SHugh Dickins * Might this read be for a stacking filesystem? Then when reading 2541a0ee5ec5SHugh Dickins * holes of a sparse file, we actually need to allocate those pages, 2542a0ee5ec5SHugh Dickins * and even mark them dirty, so it cannot exceed the max_blocks limit. 2543a0ee5ec5SHugh Dickins */ 2544777eda2cSAl Viro if (!iter_is_iovec(to)) 254575edd345SHugh Dickins sgp = SGP_CACHE; 25461da177e4SLinus Torvalds 254709cbfeafSKirill A. Shutemov index = *ppos >> PAGE_SHIFT; 254809cbfeafSKirill A. Shutemov offset = *ppos & ~PAGE_MASK; 25491da177e4SLinus Torvalds 25501da177e4SLinus Torvalds for (;;) { 25511da177e4SLinus Torvalds struct page *page = NULL; 255241ffe5d5SHugh Dickins pgoff_t end_index; 255341ffe5d5SHugh Dickins unsigned long nr, ret; 25541da177e4SLinus Torvalds loff_t i_size = i_size_read(inode); 25551da177e4SLinus Torvalds 255609cbfeafSKirill A. Shutemov end_index = i_size >> PAGE_SHIFT; 25571da177e4SLinus Torvalds if (index > end_index) 25581da177e4SLinus Torvalds break; 25591da177e4SLinus Torvalds if (index == end_index) { 256009cbfeafSKirill A. Shutemov nr = i_size & ~PAGE_MASK; 25611da177e4SLinus Torvalds if (nr <= offset) 25621da177e4SLinus Torvalds break; 25631da177e4SLinus Torvalds } 25641da177e4SLinus Torvalds 25659e18eb29SAndres Lagar-Cavilla error = shmem_getpage(inode, index, &page, sgp); 25666e58e79dSAl Viro if (error) { 25676e58e79dSAl Viro if (error == -EINVAL) 25686e58e79dSAl Viro error = 0; 25691da177e4SLinus Torvalds break; 25701da177e4SLinus Torvalds } 257175edd345SHugh Dickins if (page) { 257275edd345SHugh Dickins if (sgp == SGP_CACHE) 257375edd345SHugh Dickins set_page_dirty(page); 2574d3602444SHugh Dickins unlock_page(page); 257575edd345SHugh Dickins } 25761da177e4SLinus Torvalds 25771da177e4SLinus Torvalds /* 25781da177e4SLinus Torvalds * We must evaluate after, since reads (unlike writes) 25791b1dcc1bSJes Sorensen * are called without i_mutex protection against truncate 25801da177e4SLinus Torvalds */ 258109cbfeafSKirill A. Shutemov nr = PAGE_SIZE; 25821da177e4SLinus Torvalds i_size = i_size_read(inode); 258309cbfeafSKirill A. Shutemov end_index = i_size >> PAGE_SHIFT; 25841da177e4SLinus Torvalds if (index == end_index) { 258509cbfeafSKirill A. Shutemov nr = i_size & ~PAGE_MASK; 25861da177e4SLinus Torvalds if (nr <= offset) { 25871da177e4SLinus Torvalds if (page) 258809cbfeafSKirill A. Shutemov put_page(page); 25891da177e4SLinus Torvalds break; 25901da177e4SLinus Torvalds } 25911da177e4SLinus Torvalds } 25921da177e4SLinus Torvalds nr -= offset; 25931da177e4SLinus Torvalds 25941da177e4SLinus Torvalds if (page) { 25951da177e4SLinus Torvalds /* 25961da177e4SLinus Torvalds * If users can be writing to this page using arbitrary 25971da177e4SLinus Torvalds * virtual addresses, take care about potential aliasing 25981da177e4SLinus Torvalds * before reading the page on the kernel side. 25991da177e4SLinus Torvalds */ 26001da177e4SLinus Torvalds if (mapping_writably_mapped(mapping)) 26011da177e4SLinus Torvalds flush_dcache_page(page); 26021da177e4SLinus Torvalds /* 26031da177e4SLinus Torvalds * Mark the page accessed if we read the beginning. 26041da177e4SLinus Torvalds */ 26051da177e4SLinus Torvalds if (!offset) 26061da177e4SLinus Torvalds mark_page_accessed(page); 2607b5810039SNick Piggin } else { 26081da177e4SLinus Torvalds page = ZERO_PAGE(0); 260909cbfeafSKirill A. Shutemov get_page(page); 2610b5810039SNick Piggin } 26111da177e4SLinus Torvalds 26121da177e4SLinus Torvalds /* 26131da177e4SLinus Torvalds * Ok, we have the page, and it's up-to-date, so 26141da177e4SLinus Torvalds * now we can copy it to user space... 26151da177e4SLinus Torvalds */ 26162ba5bbedSAl Viro ret = copy_page_to_iter(page, offset, nr, to); 26176e58e79dSAl Viro retval += ret; 26181da177e4SLinus Torvalds offset += ret; 261909cbfeafSKirill A. Shutemov index += offset >> PAGE_SHIFT; 262009cbfeafSKirill A. Shutemov offset &= ~PAGE_MASK; 26211da177e4SLinus Torvalds 262209cbfeafSKirill A. Shutemov put_page(page); 26232ba5bbedSAl Viro if (!iov_iter_count(to)) 26241da177e4SLinus Torvalds break; 26256e58e79dSAl Viro if (ret < nr) { 26266e58e79dSAl Viro error = -EFAULT; 26276e58e79dSAl Viro break; 26286e58e79dSAl Viro } 26291da177e4SLinus Torvalds cond_resched(); 26301da177e4SLinus Torvalds } 26311da177e4SLinus Torvalds 263209cbfeafSKirill A. Shutemov *ppos = ((loff_t) index << PAGE_SHIFT) + offset; 26336e58e79dSAl Viro file_accessed(file); 26346e58e79dSAl Viro return retval ? retval : error; 26351da177e4SLinus Torvalds } 26361da177e4SLinus Torvalds 2637220f2ac9SHugh Dickins /* 26387f4446eeSMatthew Wilcox * llseek SEEK_DATA or SEEK_HOLE through the page cache. 2639220f2ac9SHugh Dickins */ 2640220f2ac9SHugh Dickins static pgoff_t shmem_seek_hole_data(struct address_space *mapping, 2641965c8e59SAndrew Morton pgoff_t index, pgoff_t end, int whence) 2642220f2ac9SHugh Dickins { 2643220f2ac9SHugh Dickins struct page *page; 2644220f2ac9SHugh Dickins struct pagevec pvec; 2645220f2ac9SHugh Dickins pgoff_t indices[PAGEVEC_SIZE]; 2646220f2ac9SHugh Dickins bool done = false; 2647220f2ac9SHugh Dickins int i; 2648220f2ac9SHugh Dickins 264986679820SMel Gorman pagevec_init(&pvec); 2650220f2ac9SHugh Dickins pvec.nr = 1; /* start small: we may be there already */ 2651220f2ac9SHugh Dickins while (!done) { 26520cd6144aSJohannes Weiner pvec.nr = find_get_entries(mapping, index, 2653220f2ac9SHugh Dickins pvec.nr, pvec.pages, indices); 2654220f2ac9SHugh Dickins if (!pvec.nr) { 2655965c8e59SAndrew Morton if (whence == SEEK_DATA) 2656220f2ac9SHugh Dickins index = end; 2657220f2ac9SHugh Dickins break; 2658220f2ac9SHugh Dickins } 2659220f2ac9SHugh Dickins for (i = 0; i < pvec.nr; i++, index++) { 2660220f2ac9SHugh Dickins if (index < indices[i]) { 2661965c8e59SAndrew Morton if (whence == SEEK_HOLE) { 2662220f2ac9SHugh Dickins done = true; 2663220f2ac9SHugh Dickins break; 2664220f2ac9SHugh Dickins } 2665220f2ac9SHugh Dickins index = indices[i]; 2666220f2ac9SHugh Dickins } 2667220f2ac9SHugh Dickins page = pvec.pages[i]; 26683159f943SMatthew Wilcox if (page && !xa_is_value(page)) { 2669220f2ac9SHugh Dickins if (!PageUptodate(page)) 2670220f2ac9SHugh Dickins page = NULL; 2671220f2ac9SHugh Dickins } 2672220f2ac9SHugh Dickins if (index >= end || 2673965c8e59SAndrew Morton (page && whence == SEEK_DATA) || 2674965c8e59SAndrew Morton (!page && whence == SEEK_HOLE)) { 2675220f2ac9SHugh Dickins done = true; 2676220f2ac9SHugh Dickins break; 2677220f2ac9SHugh Dickins } 2678220f2ac9SHugh Dickins } 26790cd6144aSJohannes Weiner pagevec_remove_exceptionals(&pvec); 2680220f2ac9SHugh Dickins pagevec_release(&pvec); 2681220f2ac9SHugh Dickins pvec.nr = PAGEVEC_SIZE; 2682220f2ac9SHugh Dickins cond_resched(); 2683220f2ac9SHugh Dickins } 2684220f2ac9SHugh Dickins return index; 2685220f2ac9SHugh Dickins } 2686220f2ac9SHugh Dickins 2687965c8e59SAndrew Morton static loff_t shmem_file_llseek(struct file *file, loff_t offset, int whence) 2688220f2ac9SHugh Dickins { 2689220f2ac9SHugh Dickins struct address_space *mapping = file->f_mapping; 2690220f2ac9SHugh Dickins struct inode *inode = mapping->host; 2691220f2ac9SHugh Dickins pgoff_t start, end; 2692220f2ac9SHugh Dickins loff_t new_offset; 2693220f2ac9SHugh Dickins 2694965c8e59SAndrew Morton if (whence != SEEK_DATA && whence != SEEK_HOLE) 2695965c8e59SAndrew Morton return generic_file_llseek_size(file, offset, whence, 2696220f2ac9SHugh Dickins MAX_LFS_FILESIZE, i_size_read(inode)); 26975955102cSAl Viro inode_lock(inode); 2698220f2ac9SHugh Dickins /* We're holding i_mutex so we can access i_size directly */ 2699220f2ac9SHugh Dickins 27001a413646SYufen Yu if (offset < 0 || offset >= inode->i_size) 2701220f2ac9SHugh Dickins offset = -ENXIO; 2702220f2ac9SHugh Dickins else { 270309cbfeafSKirill A. Shutemov start = offset >> PAGE_SHIFT; 270409cbfeafSKirill A. Shutemov end = (inode->i_size + PAGE_SIZE - 1) >> PAGE_SHIFT; 2705965c8e59SAndrew Morton new_offset = shmem_seek_hole_data(mapping, start, end, whence); 270609cbfeafSKirill A. Shutemov new_offset <<= PAGE_SHIFT; 2707220f2ac9SHugh Dickins if (new_offset > offset) { 2708220f2ac9SHugh Dickins if (new_offset < inode->i_size) 2709220f2ac9SHugh Dickins offset = new_offset; 2710965c8e59SAndrew Morton else if (whence == SEEK_DATA) 2711220f2ac9SHugh Dickins offset = -ENXIO; 2712220f2ac9SHugh Dickins else 2713220f2ac9SHugh Dickins offset = inode->i_size; 2714220f2ac9SHugh Dickins } 2715220f2ac9SHugh Dickins } 2716220f2ac9SHugh Dickins 2717387aae6fSHugh Dickins if (offset >= 0) 271846a1c2c7SJie Liu offset = vfs_setpos(file, offset, MAX_LFS_FILESIZE); 27195955102cSAl Viro inode_unlock(inode); 2720220f2ac9SHugh Dickins return offset; 2721220f2ac9SHugh Dickins } 2722220f2ac9SHugh Dickins 272383e4fa9cSHugh Dickins static long shmem_fallocate(struct file *file, int mode, loff_t offset, 272483e4fa9cSHugh Dickins loff_t len) 272583e4fa9cSHugh Dickins { 2726496ad9aaSAl Viro struct inode *inode = file_inode(file); 2727e2d12e22SHugh Dickins struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb); 272840e041a2SDavid Herrmann struct shmem_inode_info *info = SHMEM_I(inode); 27291aac1400SHugh Dickins struct shmem_falloc shmem_falloc; 2730e2d12e22SHugh Dickins pgoff_t start, index, end; 2731e2d12e22SHugh Dickins int error; 273283e4fa9cSHugh Dickins 273313ace4d0SHugh Dickins if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE)) 273413ace4d0SHugh Dickins return -EOPNOTSUPP; 273513ace4d0SHugh Dickins 27365955102cSAl Viro inode_lock(inode); 273783e4fa9cSHugh Dickins 273883e4fa9cSHugh Dickins if (mode & FALLOC_FL_PUNCH_HOLE) { 273983e4fa9cSHugh Dickins struct address_space *mapping = file->f_mapping; 274083e4fa9cSHugh Dickins loff_t unmap_start = round_up(offset, PAGE_SIZE); 274183e4fa9cSHugh Dickins loff_t unmap_end = round_down(offset + len, PAGE_SIZE) - 1; 27428e205f77SHugh Dickins DECLARE_WAIT_QUEUE_HEAD_ONSTACK(shmem_falloc_waitq); 274383e4fa9cSHugh Dickins 274440e041a2SDavid Herrmann /* protected by i_mutex */ 2745ab3948f5SJoel Fernandes (Google) if (info->seals & (F_SEAL_WRITE | F_SEAL_FUTURE_WRITE)) { 274640e041a2SDavid Herrmann error = -EPERM; 274740e041a2SDavid Herrmann goto out; 274840e041a2SDavid Herrmann } 274940e041a2SDavid Herrmann 27508e205f77SHugh Dickins shmem_falloc.waitq = &shmem_falloc_waitq; 2751aa71ecd8SChen Jun shmem_falloc.start = (u64)unmap_start >> PAGE_SHIFT; 2752f00cdc6dSHugh Dickins shmem_falloc.next = (unmap_end + 1) >> PAGE_SHIFT; 2753f00cdc6dSHugh Dickins spin_lock(&inode->i_lock); 2754f00cdc6dSHugh Dickins inode->i_private = &shmem_falloc; 2755f00cdc6dSHugh Dickins spin_unlock(&inode->i_lock); 2756f00cdc6dSHugh Dickins 275783e4fa9cSHugh Dickins if ((u64)unmap_end > (u64)unmap_start) 275883e4fa9cSHugh Dickins unmap_mapping_range(mapping, unmap_start, 275983e4fa9cSHugh Dickins 1 + unmap_end - unmap_start, 0); 276083e4fa9cSHugh Dickins shmem_truncate_range(inode, offset, offset + len - 1); 276183e4fa9cSHugh Dickins /* No need to unmap again: hole-punching leaves COWed pages */ 27628e205f77SHugh Dickins 27638e205f77SHugh Dickins spin_lock(&inode->i_lock); 27648e205f77SHugh Dickins inode->i_private = NULL; 27658e205f77SHugh Dickins wake_up_all(&shmem_falloc_waitq); 27662055da97SIngo Molnar WARN_ON_ONCE(!list_empty(&shmem_falloc_waitq.head)); 27678e205f77SHugh Dickins spin_unlock(&inode->i_lock); 276883e4fa9cSHugh Dickins error = 0; 27698e205f77SHugh Dickins goto out; 277083e4fa9cSHugh Dickins } 277183e4fa9cSHugh Dickins 2772e2d12e22SHugh Dickins /* We need to check rlimit even when FALLOC_FL_KEEP_SIZE */ 2773e2d12e22SHugh Dickins error = inode_newsize_ok(inode, offset + len); 2774e2d12e22SHugh Dickins if (error) 2775e2d12e22SHugh Dickins goto out; 2776e2d12e22SHugh Dickins 277740e041a2SDavid Herrmann if ((info->seals & F_SEAL_GROW) && offset + len > inode->i_size) { 277840e041a2SDavid Herrmann error = -EPERM; 277940e041a2SDavid Herrmann goto out; 278040e041a2SDavid Herrmann } 278140e041a2SDavid Herrmann 278209cbfeafSKirill A. Shutemov start = offset >> PAGE_SHIFT; 278309cbfeafSKirill A. Shutemov end = (offset + len + PAGE_SIZE - 1) >> PAGE_SHIFT; 2784e2d12e22SHugh Dickins /* Try to avoid a swapstorm if len is impossible to satisfy */ 2785e2d12e22SHugh Dickins if (sbinfo->max_blocks && end - start > sbinfo->max_blocks) { 2786e2d12e22SHugh Dickins error = -ENOSPC; 2787e2d12e22SHugh Dickins goto out; 2788e2d12e22SHugh Dickins } 2789e2d12e22SHugh Dickins 27908e205f77SHugh Dickins shmem_falloc.waitq = NULL; 27911aac1400SHugh Dickins shmem_falloc.start = start; 27921aac1400SHugh Dickins shmem_falloc.next = start; 27931aac1400SHugh Dickins shmem_falloc.nr_falloced = 0; 27941aac1400SHugh Dickins shmem_falloc.nr_unswapped = 0; 27951aac1400SHugh Dickins spin_lock(&inode->i_lock); 27961aac1400SHugh Dickins inode->i_private = &shmem_falloc; 27971aac1400SHugh Dickins spin_unlock(&inode->i_lock); 27981aac1400SHugh Dickins 2799e2d12e22SHugh Dickins for (index = start; index < end; index++) { 2800e2d12e22SHugh Dickins struct page *page; 2801e2d12e22SHugh Dickins 2802e2d12e22SHugh Dickins /* 2803e2d12e22SHugh Dickins * Good, the fallocate(2) manpage permits EINTR: we may have 2804e2d12e22SHugh Dickins * been interrupted because we are using up too much memory. 2805e2d12e22SHugh Dickins */ 2806e2d12e22SHugh Dickins if (signal_pending(current)) 2807e2d12e22SHugh Dickins error = -EINTR; 28081aac1400SHugh Dickins else if (shmem_falloc.nr_unswapped > shmem_falloc.nr_falloced) 28091aac1400SHugh Dickins error = -ENOMEM; 2810e2d12e22SHugh Dickins else 28119e18eb29SAndres Lagar-Cavilla error = shmem_getpage(inode, index, &page, SGP_FALLOC); 2812e2d12e22SHugh Dickins if (error) { 28131635f6a7SHugh Dickins /* Remove the !PageUptodate pages we added */ 28147f556567SHugh Dickins if (index > start) { 28151635f6a7SHugh Dickins shmem_undo_range(inode, 281609cbfeafSKirill A. Shutemov (loff_t)start << PAGE_SHIFT, 2817b9b4bb26SAnthony Romano ((loff_t)index << PAGE_SHIFT) - 1, true); 28187f556567SHugh Dickins } 28191aac1400SHugh Dickins goto undone; 2820e2d12e22SHugh Dickins } 2821e2d12e22SHugh Dickins 2822e2d12e22SHugh Dickins /* 28231aac1400SHugh Dickins * Inform shmem_writepage() how far we have reached. 28241aac1400SHugh Dickins * No need for lock or barrier: we have the page lock. 28251aac1400SHugh Dickins */ 28261aac1400SHugh Dickins shmem_falloc.next++; 28271aac1400SHugh Dickins if (!PageUptodate(page)) 28281aac1400SHugh Dickins shmem_falloc.nr_falloced++; 28291aac1400SHugh Dickins 28301aac1400SHugh Dickins /* 28311635f6a7SHugh Dickins * If !PageUptodate, leave it that way so that freeable pages 28321635f6a7SHugh Dickins * can be recognized if we need to rollback on error later. 28331635f6a7SHugh Dickins * But set_page_dirty so that memory pressure will swap rather 2834e2d12e22SHugh Dickins * than free the pages we are allocating (and SGP_CACHE pages 2835e2d12e22SHugh Dickins * might still be clean: we now need to mark those dirty too). 2836e2d12e22SHugh Dickins */ 2837e2d12e22SHugh Dickins set_page_dirty(page); 2838e2d12e22SHugh Dickins unlock_page(page); 283909cbfeafSKirill A. Shutemov put_page(page); 2840e2d12e22SHugh Dickins cond_resched(); 2841e2d12e22SHugh Dickins } 2842e2d12e22SHugh Dickins 2843e2d12e22SHugh Dickins if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) 2844e2d12e22SHugh Dickins i_size_write(inode, offset + len); 2845078cd827SDeepa Dinamani inode->i_ctime = current_time(inode); 28461aac1400SHugh Dickins undone: 28471aac1400SHugh Dickins spin_lock(&inode->i_lock); 28481aac1400SHugh Dickins inode->i_private = NULL; 28491aac1400SHugh Dickins spin_unlock(&inode->i_lock); 2850e2d12e22SHugh Dickins out: 28515955102cSAl Viro inode_unlock(inode); 285283e4fa9cSHugh Dickins return error; 285383e4fa9cSHugh Dickins } 285483e4fa9cSHugh Dickins 2855726c3342SDavid Howells static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf) 28561da177e4SLinus Torvalds { 2857726c3342SDavid Howells struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb); 28581da177e4SLinus Torvalds 28591da177e4SLinus Torvalds buf->f_type = TMPFS_MAGIC; 286009cbfeafSKirill A. Shutemov buf->f_bsize = PAGE_SIZE; 28611da177e4SLinus Torvalds buf->f_namelen = NAME_MAX; 28620edd73b3SHugh Dickins if (sbinfo->max_blocks) { 28631da177e4SLinus Torvalds buf->f_blocks = sbinfo->max_blocks; 286441ffe5d5SHugh Dickins buf->f_bavail = 286541ffe5d5SHugh Dickins buf->f_bfree = sbinfo->max_blocks - 286641ffe5d5SHugh Dickins percpu_counter_sum(&sbinfo->used_blocks); 28670edd73b3SHugh Dickins } 28680edd73b3SHugh Dickins if (sbinfo->max_inodes) { 28691da177e4SLinus Torvalds buf->f_files = sbinfo->max_inodes; 28701da177e4SLinus Torvalds buf->f_ffree = sbinfo->free_inodes; 28711da177e4SLinus Torvalds } 28721da177e4SLinus Torvalds /* else leave those fields 0 like simple_statfs */ 28731da177e4SLinus Torvalds return 0; 28741da177e4SLinus Torvalds } 28751da177e4SLinus Torvalds 28761da177e4SLinus Torvalds /* 28771da177e4SLinus Torvalds * File creation. Allocate an inode, and we're done.. 28781da177e4SLinus Torvalds */ 28791da177e4SLinus Torvalds static int 28801a67aafbSAl Viro shmem_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev) 28811da177e4SLinus Torvalds { 28820b0a0806SHugh Dickins struct inode *inode; 28831da177e4SLinus Torvalds int error = -ENOSPC; 28841da177e4SLinus Torvalds 2885454abafeSDmitry Monakhov inode = shmem_get_inode(dir->i_sb, dir, mode, dev, VM_NORESERVE); 28861da177e4SLinus Torvalds if (inode) { 2887feda821eSChristoph Hellwig error = simple_acl_create(dir, inode); 2888feda821eSChristoph Hellwig if (error) 2889feda821eSChristoph Hellwig goto out_iput; 28902a7dba39SEric Paris error = security_inode_init_security(inode, dir, 28919d8f13baSMimi Zohar &dentry->d_name, 28926d9d88d0SJarkko Sakkinen shmem_initxattrs, NULL); 2893feda821eSChristoph Hellwig if (error && error != -EOPNOTSUPP) 2894feda821eSChristoph Hellwig goto out_iput; 289537ec43cdSMimi Zohar 2896718deb6bSAl Viro error = 0; 28971da177e4SLinus Torvalds dir->i_size += BOGO_DIRENT_SIZE; 2898078cd827SDeepa Dinamani dir->i_ctime = dir->i_mtime = current_time(dir); 28991da177e4SLinus Torvalds d_instantiate(dentry, inode); 29001da177e4SLinus Torvalds dget(dentry); /* Extra count - pin the dentry in core */ 29011da177e4SLinus Torvalds } 29021da177e4SLinus Torvalds return error; 2903feda821eSChristoph Hellwig out_iput: 2904feda821eSChristoph Hellwig iput(inode); 2905feda821eSChristoph Hellwig return error; 29061da177e4SLinus Torvalds } 29071da177e4SLinus Torvalds 290860545d0dSAl Viro static int 290960545d0dSAl Viro shmem_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode) 291060545d0dSAl Viro { 291160545d0dSAl Viro struct inode *inode; 291260545d0dSAl Viro int error = -ENOSPC; 291360545d0dSAl Viro 291460545d0dSAl Viro inode = shmem_get_inode(dir->i_sb, dir, mode, 0, VM_NORESERVE); 291560545d0dSAl Viro if (inode) { 291660545d0dSAl Viro error = security_inode_init_security(inode, dir, 291760545d0dSAl Viro NULL, 291860545d0dSAl Viro shmem_initxattrs, NULL); 2919feda821eSChristoph Hellwig if (error && error != -EOPNOTSUPP) 2920feda821eSChristoph Hellwig goto out_iput; 2921feda821eSChristoph Hellwig error = simple_acl_create(dir, inode); 2922feda821eSChristoph Hellwig if (error) 2923feda821eSChristoph Hellwig goto out_iput; 292460545d0dSAl Viro d_tmpfile(dentry, inode); 292560545d0dSAl Viro } 292660545d0dSAl Viro return error; 2927feda821eSChristoph Hellwig out_iput: 2928feda821eSChristoph Hellwig iput(inode); 2929feda821eSChristoph Hellwig return error; 293060545d0dSAl Viro } 293160545d0dSAl Viro 293218bb1db3SAl Viro static int shmem_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) 29331da177e4SLinus Torvalds { 29341da177e4SLinus Torvalds int error; 29351da177e4SLinus Torvalds 29361da177e4SLinus Torvalds if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0))) 29371da177e4SLinus Torvalds return error; 2938d8c76e6fSDave Hansen inc_nlink(dir); 29391da177e4SLinus Torvalds return 0; 29401da177e4SLinus Torvalds } 29411da177e4SLinus Torvalds 29424acdaf27SAl Viro static int shmem_create(struct inode *dir, struct dentry *dentry, umode_t mode, 2943ebfc3b49SAl Viro bool excl) 29441da177e4SLinus Torvalds { 29451da177e4SLinus Torvalds return shmem_mknod(dir, dentry, mode | S_IFREG, 0); 29461da177e4SLinus Torvalds } 29471da177e4SLinus Torvalds 29481da177e4SLinus Torvalds /* 29491da177e4SLinus Torvalds * Link a file.. 29501da177e4SLinus Torvalds */ 29511da177e4SLinus Torvalds static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry) 29521da177e4SLinus Torvalds { 295375c3cfa8SDavid Howells struct inode *inode = d_inode(old_dentry); 295429b00e60SDarrick J. Wong int ret = 0; 29551da177e4SLinus Torvalds 29561da177e4SLinus Torvalds /* 29571da177e4SLinus Torvalds * No ordinary (disk based) filesystem counts links as inodes; 29581da177e4SLinus Torvalds * but each new link needs a new dentry, pinning lowmem, and 29591da177e4SLinus Torvalds * tmpfs dentries cannot be pruned until they are unlinked. 29601062af92SDarrick J. Wong * But if an O_TMPFILE file is linked into the tmpfs, the 29611062af92SDarrick J. Wong * first link must skip that, to get the accounting right. 29621da177e4SLinus Torvalds */ 29631062af92SDarrick J. Wong if (inode->i_nlink) { 29645b04c689SPavel Emelyanov ret = shmem_reserve_inode(inode->i_sb); 29655b04c689SPavel Emelyanov if (ret) 29665b04c689SPavel Emelyanov goto out; 29671062af92SDarrick J. Wong } 29681da177e4SLinus Torvalds 29691da177e4SLinus Torvalds dir->i_size += BOGO_DIRENT_SIZE; 2970078cd827SDeepa Dinamani inode->i_ctime = dir->i_ctime = dir->i_mtime = current_time(inode); 2971d8c76e6fSDave Hansen inc_nlink(inode); 29727de9c6eeSAl Viro ihold(inode); /* New dentry reference */ 29731da177e4SLinus Torvalds dget(dentry); /* Extra pinning count for the created dentry */ 29741da177e4SLinus Torvalds d_instantiate(dentry, inode); 29755b04c689SPavel Emelyanov out: 29765b04c689SPavel Emelyanov return ret; 29771da177e4SLinus Torvalds } 29781da177e4SLinus Torvalds 29791da177e4SLinus Torvalds static int shmem_unlink(struct inode *dir, struct dentry *dentry) 29801da177e4SLinus Torvalds { 298175c3cfa8SDavid Howells struct inode *inode = d_inode(dentry); 29821da177e4SLinus Torvalds 29835b04c689SPavel Emelyanov if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode)) 29845b04c689SPavel Emelyanov shmem_free_inode(inode->i_sb); 29851da177e4SLinus Torvalds 29861da177e4SLinus Torvalds dir->i_size -= BOGO_DIRENT_SIZE; 2987078cd827SDeepa Dinamani inode->i_ctime = dir->i_ctime = dir->i_mtime = current_time(inode); 29889a53c3a7SDave Hansen drop_nlink(inode); 29891da177e4SLinus Torvalds dput(dentry); /* Undo the count from "create" - this does all the work */ 29901da177e4SLinus Torvalds return 0; 29911da177e4SLinus Torvalds } 29921da177e4SLinus Torvalds 29931da177e4SLinus Torvalds static int shmem_rmdir(struct inode *dir, struct dentry *dentry) 29941da177e4SLinus Torvalds { 29951da177e4SLinus Torvalds if (!simple_empty(dentry)) 29961da177e4SLinus Torvalds return -ENOTEMPTY; 29971da177e4SLinus Torvalds 299875c3cfa8SDavid Howells drop_nlink(d_inode(dentry)); 29999a53c3a7SDave Hansen drop_nlink(dir); 30001da177e4SLinus Torvalds return shmem_unlink(dir, dentry); 30011da177e4SLinus Torvalds } 30021da177e4SLinus Torvalds 300337456771SMiklos Szeredi static int shmem_exchange(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry) 300437456771SMiklos Szeredi { 3005e36cb0b8SDavid Howells bool old_is_dir = d_is_dir(old_dentry); 3006e36cb0b8SDavid Howells bool new_is_dir = d_is_dir(new_dentry); 300737456771SMiklos Szeredi 300837456771SMiklos Szeredi if (old_dir != new_dir && old_is_dir != new_is_dir) { 300937456771SMiklos Szeredi if (old_is_dir) { 301037456771SMiklos Szeredi drop_nlink(old_dir); 301137456771SMiklos Szeredi inc_nlink(new_dir); 301237456771SMiklos Szeredi } else { 301337456771SMiklos Szeredi drop_nlink(new_dir); 301437456771SMiklos Szeredi inc_nlink(old_dir); 301537456771SMiklos Szeredi } 301637456771SMiklos Szeredi } 301737456771SMiklos Szeredi old_dir->i_ctime = old_dir->i_mtime = 301837456771SMiklos Szeredi new_dir->i_ctime = new_dir->i_mtime = 301975c3cfa8SDavid Howells d_inode(old_dentry)->i_ctime = 3020078cd827SDeepa Dinamani d_inode(new_dentry)->i_ctime = current_time(old_dir); 302137456771SMiklos Szeredi 302237456771SMiklos Szeredi return 0; 302337456771SMiklos Szeredi } 302437456771SMiklos Szeredi 302546fdb794SMiklos Szeredi static int shmem_whiteout(struct inode *old_dir, struct dentry *old_dentry) 302646fdb794SMiklos Szeredi { 302746fdb794SMiklos Szeredi struct dentry *whiteout; 302846fdb794SMiklos Szeredi int error; 302946fdb794SMiklos Szeredi 303046fdb794SMiklos Szeredi whiteout = d_alloc(old_dentry->d_parent, &old_dentry->d_name); 303146fdb794SMiklos Szeredi if (!whiteout) 303246fdb794SMiklos Szeredi return -ENOMEM; 303346fdb794SMiklos Szeredi 303446fdb794SMiklos Szeredi error = shmem_mknod(old_dir, whiteout, 303546fdb794SMiklos Szeredi S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV); 303646fdb794SMiklos Szeredi dput(whiteout); 303746fdb794SMiklos Szeredi if (error) 303846fdb794SMiklos Szeredi return error; 303946fdb794SMiklos Szeredi 304046fdb794SMiklos Szeredi /* 304146fdb794SMiklos Szeredi * Cheat and hash the whiteout while the old dentry is still in 304246fdb794SMiklos Szeredi * place, instead of playing games with FS_RENAME_DOES_D_MOVE. 304346fdb794SMiklos Szeredi * 304446fdb794SMiklos Szeredi * d_lookup() will consistently find one of them at this point, 304546fdb794SMiklos Szeredi * not sure which one, but that isn't even important. 304646fdb794SMiklos Szeredi */ 304746fdb794SMiklos Szeredi d_rehash(whiteout); 304846fdb794SMiklos Szeredi return 0; 304946fdb794SMiklos Szeredi } 305046fdb794SMiklos Szeredi 30511da177e4SLinus Torvalds /* 30521da177e4SLinus Torvalds * The VFS layer already does all the dentry stuff for rename, 30531da177e4SLinus Torvalds * we just have to decrement the usage count for the target if 30541da177e4SLinus Torvalds * it exists so that the VFS layer correctly free's it when it 30551da177e4SLinus Torvalds * gets overwritten. 30561da177e4SLinus Torvalds */ 30573b69ff51SMiklos Szeredi static int shmem_rename2(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags) 30581da177e4SLinus Torvalds { 305975c3cfa8SDavid Howells struct inode *inode = d_inode(old_dentry); 30601da177e4SLinus Torvalds int they_are_dirs = S_ISDIR(inode->i_mode); 30611da177e4SLinus Torvalds 306246fdb794SMiklos Szeredi if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT)) 30633b69ff51SMiklos Szeredi return -EINVAL; 30643b69ff51SMiklos Szeredi 306537456771SMiklos Szeredi if (flags & RENAME_EXCHANGE) 306637456771SMiklos Szeredi return shmem_exchange(old_dir, old_dentry, new_dir, new_dentry); 306737456771SMiklos Szeredi 30681da177e4SLinus Torvalds if (!simple_empty(new_dentry)) 30691da177e4SLinus Torvalds return -ENOTEMPTY; 30701da177e4SLinus Torvalds 307146fdb794SMiklos Szeredi if (flags & RENAME_WHITEOUT) { 307246fdb794SMiklos Szeredi int error; 307346fdb794SMiklos Szeredi 307446fdb794SMiklos Szeredi error = shmem_whiteout(old_dir, old_dentry); 307546fdb794SMiklos Szeredi if (error) 307646fdb794SMiklos Szeredi return error; 307746fdb794SMiklos Szeredi } 307846fdb794SMiklos Szeredi 307975c3cfa8SDavid Howells if (d_really_is_positive(new_dentry)) { 30801da177e4SLinus Torvalds (void) shmem_unlink(new_dir, new_dentry); 3081b928095bSMiklos Szeredi if (they_are_dirs) { 308275c3cfa8SDavid Howells drop_nlink(d_inode(new_dentry)); 30839a53c3a7SDave Hansen drop_nlink(old_dir); 3084b928095bSMiklos Szeredi } 30851da177e4SLinus Torvalds } else if (they_are_dirs) { 30869a53c3a7SDave Hansen drop_nlink(old_dir); 3087d8c76e6fSDave Hansen inc_nlink(new_dir); 30881da177e4SLinus Torvalds } 30891da177e4SLinus Torvalds 30901da177e4SLinus Torvalds old_dir->i_size -= BOGO_DIRENT_SIZE; 30911da177e4SLinus Torvalds new_dir->i_size += BOGO_DIRENT_SIZE; 30921da177e4SLinus Torvalds old_dir->i_ctime = old_dir->i_mtime = 30931da177e4SLinus Torvalds new_dir->i_ctime = new_dir->i_mtime = 3094078cd827SDeepa Dinamani inode->i_ctime = current_time(old_dir); 30951da177e4SLinus Torvalds return 0; 30961da177e4SLinus Torvalds } 30971da177e4SLinus Torvalds 30981da177e4SLinus Torvalds static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname) 30991da177e4SLinus Torvalds { 31001da177e4SLinus Torvalds int error; 31011da177e4SLinus Torvalds int len; 31021da177e4SLinus Torvalds struct inode *inode; 31039276aad6SHugh Dickins struct page *page; 31041da177e4SLinus Torvalds 31051da177e4SLinus Torvalds len = strlen(symname) + 1; 310609cbfeafSKirill A. Shutemov if (len > PAGE_SIZE) 31071da177e4SLinus Torvalds return -ENAMETOOLONG; 31081da177e4SLinus Torvalds 31090825a6f9SJoe Perches inode = shmem_get_inode(dir->i_sb, dir, S_IFLNK | 0777, 0, 31100825a6f9SJoe Perches VM_NORESERVE); 31111da177e4SLinus Torvalds if (!inode) 31121da177e4SLinus Torvalds return -ENOSPC; 31131da177e4SLinus Torvalds 31149d8f13baSMimi Zohar error = security_inode_init_security(inode, dir, &dentry->d_name, 31156d9d88d0SJarkko Sakkinen shmem_initxattrs, NULL); 3116570bc1c2SStephen Smalley if (error) { 3117570bc1c2SStephen Smalley if (error != -EOPNOTSUPP) { 3118570bc1c2SStephen Smalley iput(inode); 3119570bc1c2SStephen Smalley return error; 3120570bc1c2SStephen Smalley } 3121570bc1c2SStephen Smalley error = 0; 3122570bc1c2SStephen Smalley } 3123570bc1c2SStephen Smalley 31241da177e4SLinus Torvalds inode->i_size = len-1; 312569f07ec9SHugh Dickins if (len <= SHORT_SYMLINK_LEN) { 31263ed47db3SAl Viro inode->i_link = kmemdup(symname, len, GFP_KERNEL); 31273ed47db3SAl Viro if (!inode->i_link) { 312869f07ec9SHugh Dickins iput(inode); 312969f07ec9SHugh Dickins return -ENOMEM; 313069f07ec9SHugh Dickins } 313169f07ec9SHugh Dickins inode->i_op = &shmem_short_symlink_operations; 31321da177e4SLinus Torvalds } else { 3133e8ecde25SAl Viro inode_nohighmem(inode); 31349e18eb29SAndres Lagar-Cavilla error = shmem_getpage(inode, 0, &page, SGP_WRITE); 31351da177e4SLinus Torvalds if (error) { 31361da177e4SLinus Torvalds iput(inode); 31371da177e4SLinus Torvalds return error; 31381da177e4SLinus Torvalds } 313914fcc23fSHugh Dickins inode->i_mapping->a_ops = &shmem_aops; 31401da177e4SLinus Torvalds inode->i_op = &shmem_symlink_inode_operations; 314121fc61c7SAl Viro memcpy(page_address(page), symname, len); 3142ec9516fbSHugh Dickins SetPageUptodate(page); 31431da177e4SLinus Torvalds set_page_dirty(page); 31446746aff7SWu Fengguang unlock_page(page); 314509cbfeafSKirill A. Shutemov put_page(page); 31461da177e4SLinus Torvalds } 31471da177e4SLinus Torvalds dir->i_size += BOGO_DIRENT_SIZE; 3148078cd827SDeepa Dinamani dir->i_ctime = dir->i_mtime = current_time(dir); 31491da177e4SLinus Torvalds d_instantiate(dentry, inode); 31501da177e4SLinus Torvalds dget(dentry); 31511da177e4SLinus Torvalds return 0; 31521da177e4SLinus Torvalds } 31531da177e4SLinus Torvalds 3154fceef393SAl Viro static void shmem_put_link(void *arg) 3155fceef393SAl Viro { 3156fceef393SAl Viro mark_page_accessed(arg); 3157fceef393SAl Viro put_page(arg); 3158fceef393SAl Viro } 3159fceef393SAl Viro 31606b255391SAl Viro static const char *shmem_get_link(struct dentry *dentry, 3161fceef393SAl Viro struct inode *inode, 3162fceef393SAl Viro struct delayed_call *done) 31631da177e4SLinus Torvalds { 31641da177e4SLinus Torvalds struct page *page = NULL; 31656b255391SAl Viro int error; 31666a6c9904SAl Viro if (!dentry) { 31676a6c9904SAl Viro page = find_get_page(inode->i_mapping, 0); 31686a6c9904SAl Viro if (!page) 31696b255391SAl Viro return ERR_PTR(-ECHILD); 31706a6c9904SAl Viro if (!PageUptodate(page)) { 31716a6c9904SAl Viro put_page(page); 31726a6c9904SAl Viro return ERR_PTR(-ECHILD); 31736a6c9904SAl Viro } 31746a6c9904SAl Viro } else { 31759e18eb29SAndres Lagar-Cavilla error = shmem_getpage(inode, 0, &page, SGP_READ); 3176680baacbSAl Viro if (error) 3177680baacbSAl Viro return ERR_PTR(error); 3178d3602444SHugh Dickins unlock_page(page); 31791da177e4SLinus Torvalds } 3180fceef393SAl Viro set_delayed_call(done, shmem_put_link, page); 318121fc61c7SAl Viro return page_address(page); 31821da177e4SLinus Torvalds } 31831da177e4SLinus Torvalds 3184b09e0fa4SEric Paris #ifdef CONFIG_TMPFS_XATTR 3185b09e0fa4SEric Paris /* 3186b09e0fa4SEric Paris * Superblocks without xattr inode operations may get some security.* xattr 3187b09e0fa4SEric Paris * support from the LSM "for free". As soon as we have any other xattrs 3188b09e0fa4SEric Paris * like ACLs, we also need to implement the security.* handlers at 3189b09e0fa4SEric Paris * filesystem level, though. 3190b09e0fa4SEric Paris */ 3191b09e0fa4SEric Paris 31926d9d88d0SJarkko Sakkinen /* 31936d9d88d0SJarkko Sakkinen * Callback for security_inode_init_security() for acquiring xattrs. 31946d9d88d0SJarkko Sakkinen */ 31956d9d88d0SJarkko Sakkinen static int shmem_initxattrs(struct inode *inode, 31966d9d88d0SJarkko Sakkinen const struct xattr *xattr_array, 31976d9d88d0SJarkko Sakkinen void *fs_info) 31986d9d88d0SJarkko Sakkinen { 31996d9d88d0SJarkko Sakkinen struct shmem_inode_info *info = SHMEM_I(inode); 32006d9d88d0SJarkko Sakkinen const struct xattr *xattr; 320138f38657SAristeu Rozanski struct simple_xattr *new_xattr; 32026d9d88d0SJarkko Sakkinen size_t len; 32036d9d88d0SJarkko Sakkinen 32046d9d88d0SJarkko Sakkinen for (xattr = xattr_array; xattr->name != NULL; xattr++) { 320538f38657SAristeu Rozanski new_xattr = simple_xattr_alloc(xattr->value, xattr->value_len); 32066d9d88d0SJarkko Sakkinen if (!new_xattr) 32076d9d88d0SJarkko Sakkinen return -ENOMEM; 32086d9d88d0SJarkko Sakkinen 32096d9d88d0SJarkko Sakkinen len = strlen(xattr->name) + 1; 32106d9d88d0SJarkko Sakkinen new_xattr->name = kmalloc(XATTR_SECURITY_PREFIX_LEN + len, 32116d9d88d0SJarkko Sakkinen GFP_KERNEL); 32126d9d88d0SJarkko Sakkinen if (!new_xattr->name) { 32136d9d88d0SJarkko Sakkinen kfree(new_xattr); 32146d9d88d0SJarkko Sakkinen return -ENOMEM; 32156d9d88d0SJarkko Sakkinen } 32166d9d88d0SJarkko Sakkinen 32176d9d88d0SJarkko Sakkinen memcpy(new_xattr->name, XATTR_SECURITY_PREFIX, 32186d9d88d0SJarkko Sakkinen XATTR_SECURITY_PREFIX_LEN); 32196d9d88d0SJarkko Sakkinen memcpy(new_xattr->name + XATTR_SECURITY_PREFIX_LEN, 32206d9d88d0SJarkko Sakkinen xattr->name, len); 32216d9d88d0SJarkko Sakkinen 322238f38657SAristeu Rozanski simple_xattr_list_add(&info->xattrs, new_xattr); 32236d9d88d0SJarkko Sakkinen } 32246d9d88d0SJarkko Sakkinen 32256d9d88d0SJarkko Sakkinen return 0; 32266d9d88d0SJarkko Sakkinen } 32276d9d88d0SJarkko Sakkinen 3228aa7c5241SAndreas Gruenbacher static int shmem_xattr_handler_get(const struct xattr_handler *handler, 3229b296821aSAl Viro struct dentry *unused, struct inode *inode, 3230b296821aSAl Viro const char *name, void *buffer, size_t size) 3231aa7c5241SAndreas Gruenbacher { 3232b296821aSAl Viro struct shmem_inode_info *info = SHMEM_I(inode); 3233aa7c5241SAndreas Gruenbacher 3234aa7c5241SAndreas Gruenbacher name = xattr_full_name(handler, name); 3235aa7c5241SAndreas Gruenbacher return simple_xattr_get(&info->xattrs, name, buffer, size); 3236aa7c5241SAndreas Gruenbacher } 3237aa7c5241SAndreas Gruenbacher 3238aa7c5241SAndreas Gruenbacher static int shmem_xattr_handler_set(const struct xattr_handler *handler, 323959301226SAl Viro struct dentry *unused, struct inode *inode, 324059301226SAl Viro const char *name, const void *value, 324159301226SAl Viro size_t size, int flags) 3242aa7c5241SAndreas Gruenbacher { 324359301226SAl Viro struct shmem_inode_info *info = SHMEM_I(inode); 3244aa7c5241SAndreas Gruenbacher 3245aa7c5241SAndreas Gruenbacher name = xattr_full_name(handler, name); 3246aa7c5241SAndreas Gruenbacher return simple_xattr_set(&info->xattrs, name, value, size, flags); 3247aa7c5241SAndreas Gruenbacher } 3248aa7c5241SAndreas Gruenbacher 3249aa7c5241SAndreas Gruenbacher static const struct xattr_handler shmem_security_xattr_handler = { 3250aa7c5241SAndreas Gruenbacher .prefix = XATTR_SECURITY_PREFIX, 3251aa7c5241SAndreas Gruenbacher .get = shmem_xattr_handler_get, 3252aa7c5241SAndreas Gruenbacher .set = shmem_xattr_handler_set, 3253aa7c5241SAndreas Gruenbacher }; 3254aa7c5241SAndreas Gruenbacher 3255aa7c5241SAndreas Gruenbacher static const struct xattr_handler shmem_trusted_xattr_handler = { 3256aa7c5241SAndreas Gruenbacher .prefix = XATTR_TRUSTED_PREFIX, 3257aa7c5241SAndreas Gruenbacher .get = shmem_xattr_handler_get, 3258aa7c5241SAndreas Gruenbacher .set = shmem_xattr_handler_set, 3259aa7c5241SAndreas Gruenbacher }; 3260aa7c5241SAndreas Gruenbacher 3261b09e0fa4SEric Paris static const struct xattr_handler *shmem_xattr_handlers[] = { 3262b09e0fa4SEric Paris #ifdef CONFIG_TMPFS_POSIX_ACL 3263feda821eSChristoph Hellwig &posix_acl_access_xattr_handler, 3264feda821eSChristoph Hellwig &posix_acl_default_xattr_handler, 3265b09e0fa4SEric Paris #endif 3266aa7c5241SAndreas Gruenbacher &shmem_security_xattr_handler, 3267aa7c5241SAndreas Gruenbacher &shmem_trusted_xattr_handler, 3268b09e0fa4SEric Paris NULL 3269b09e0fa4SEric Paris }; 3270b09e0fa4SEric Paris 3271b09e0fa4SEric Paris static ssize_t shmem_listxattr(struct dentry *dentry, char *buffer, size_t size) 3272b09e0fa4SEric Paris { 327375c3cfa8SDavid Howells struct shmem_inode_info *info = SHMEM_I(d_inode(dentry)); 3274786534b9SAndreas Gruenbacher return simple_xattr_list(d_inode(dentry), &info->xattrs, buffer, size); 3275b09e0fa4SEric Paris } 3276b09e0fa4SEric Paris #endif /* CONFIG_TMPFS_XATTR */ 3277b09e0fa4SEric Paris 327869f07ec9SHugh Dickins static const struct inode_operations shmem_short_symlink_operations = { 32796b255391SAl Viro .get_link = simple_get_link, 3280b09e0fa4SEric Paris #ifdef CONFIG_TMPFS_XATTR 3281b09e0fa4SEric Paris .listxattr = shmem_listxattr, 3282b09e0fa4SEric Paris #endif 32831da177e4SLinus Torvalds }; 32841da177e4SLinus Torvalds 328592e1d5beSArjan van de Ven static const struct inode_operations shmem_symlink_inode_operations = { 32866b255391SAl Viro .get_link = shmem_get_link, 3287b09e0fa4SEric Paris #ifdef CONFIG_TMPFS_XATTR 3288b09e0fa4SEric Paris .listxattr = shmem_listxattr, 328939f0247dSAndreas Gruenbacher #endif 3290b09e0fa4SEric Paris }; 329139f0247dSAndreas Gruenbacher 329291828a40SDavid M. Grimes static struct dentry *shmem_get_parent(struct dentry *child) 329391828a40SDavid M. Grimes { 329491828a40SDavid M. Grimes return ERR_PTR(-ESTALE); 329591828a40SDavid M. Grimes } 329691828a40SDavid M. Grimes 329791828a40SDavid M. Grimes static int shmem_match(struct inode *ino, void *vfh) 329891828a40SDavid M. Grimes { 329991828a40SDavid M. Grimes __u32 *fh = vfh; 330091828a40SDavid M. Grimes __u64 inum = fh[2]; 330191828a40SDavid M. Grimes inum = (inum << 32) | fh[1]; 330291828a40SDavid M. Grimes return ino->i_ino == inum && fh[0] == ino->i_generation; 330391828a40SDavid M. Grimes } 330491828a40SDavid M. Grimes 330512ba780dSAmir Goldstein /* Find any alias of inode, but prefer a hashed alias */ 330612ba780dSAmir Goldstein static struct dentry *shmem_find_alias(struct inode *inode) 330712ba780dSAmir Goldstein { 330812ba780dSAmir Goldstein struct dentry *alias = d_find_alias(inode); 330912ba780dSAmir Goldstein 331012ba780dSAmir Goldstein return alias ?: d_find_any_alias(inode); 331112ba780dSAmir Goldstein } 331212ba780dSAmir Goldstein 331312ba780dSAmir Goldstein 3314480b116cSChristoph Hellwig static struct dentry *shmem_fh_to_dentry(struct super_block *sb, 3315480b116cSChristoph Hellwig struct fid *fid, int fh_len, int fh_type) 331691828a40SDavid M. Grimes { 331791828a40SDavid M. Grimes struct inode *inode; 3318480b116cSChristoph Hellwig struct dentry *dentry = NULL; 331935c2a7f4SHugh Dickins u64 inum; 332091828a40SDavid M. Grimes 3321480b116cSChristoph Hellwig if (fh_len < 3) 3322480b116cSChristoph Hellwig return NULL; 3323480b116cSChristoph Hellwig 332435c2a7f4SHugh Dickins inum = fid->raw[2]; 332535c2a7f4SHugh Dickins inum = (inum << 32) | fid->raw[1]; 332635c2a7f4SHugh Dickins 3327480b116cSChristoph Hellwig inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]), 3328480b116cSChristoph Hellwig shmem_match, fid->raw); 332991828a40SDavid M. Grimes if (inode) { 333012ba780dSAmir Goldstein dentry = shmem_find_alias(inode); 333191828a40SDavid M. Grimes iput(inode); 333291828a40SDavid M. Grimes } 333391828a40SDavid M. Grimes 3334480b116cSChristoph Hellwig return dentry; 333591828a40SDavid M. Grimes } 333691828a40SDavid M. Grimes 3337b0b0382bSAl Viro static int shmem_encode_fh(struct inode *inode, __u32 *fh, int *len, 3338b0b0382bSAl Viro struct inode *parent) 333991828a40SDavid M. Grimes { 33405fe0c237SAneesh Kumar K.V if (*len < 3) { 33415fe0c237SAneesh Kumar K.V *len = 3; 334294e07a75SNamjae Jeon return FILEID_INVALID; 33435fe0c237SAneesh Kumar K.V } 334491828a40SDavid M. Grimes 33451d3382cbSAl Viro if (inode_unhashed(inode)) { 334691828a40SDavid M. Grimes /* Unfortunately insert_inode_hash is not idempotent, 334791828a40SDavid M. Grimes * so as we hash inodes here rather than at creation 334891828a40SDavid M. Grimes * time, we need a lock to ensure we only try 334991828a40SDavid M. Grimes * to do it once 335091828a40SDavid M. Grimes */ 335191828a40SDavid M. Grimes static DEFINE_SPINLOCK(lock); 335291828a40SDavid M. Grimes spin_lock(&lock); 33531d3382cbSAl Viro if (inode_unhashed(inode)) 335491828a40SDavid M. Grimes __insert_inode_hash(inode, 335591828a40SDavid M. Grimes inode->i_ino + inode->i_generation); 335691828a40SDavid M. Grimes spin_unlock(&lock); 335791828a40SDavid M. Grimes } 335891828a40SDavid M. Grimes 335991828a40SDavid M. Grimes fh[0] = inode->i_generation; 336091828a40SDavid M. Grimes fh[1] = inode->i_ino; 336191828a40SDavid M. Grimes fh[2] = ((__u64)inode->i_ino) >> 32; 336291828a40SDavid M. Grimes 336391828a40SDavid M. Grimes *len = 3; 336491828a40SDavid M. Grimes return 1; 336591828a40SDavid M. Grimes } 336691828a40SDavid M. Grimes 336739655164SChristoph Hellwig static const struct export_operations shmem_export_ops = { 336891828a40SDavid M. Grimes .get_parent = shmem_get_parent, 336991828a40SDavid M. Grimes .encode_fh = shmem_encode_fh, 3370480b116cSChristoph Hellwig .fh_to_dentry = shmem_fh_to_dentry, 337191828a40SDavid M. Grimes }; 337291828a40SDavid M. Grimes 3373626c3920SAl Viro enum shmem_param { 3374626c3920SAl Viro Opt_gid, 3375626c3920SAl Viro Opt_huge, 3376626c3920SAl Viro Opt_mode, 3377626c3920SAl Viro Opt_mpol, 3378626c3920SAl Viro Opt_nr_blocks, 3379626c3920SAl Viro Opt_nr_inodes, 3380626c3920SAl Viro Opt_size, 3381626c3920SAl Viro Opt_uid, 3382626c3920SAl Viro }; 33831da177e4SLinus Torvalds 3384626c3920SAl Viro static const struct fs_parameter_spec shmem_param_specs[] = { 3385626c3920SAl Viro fsparam_u32 ("gid", Opt_gid), 3386626c3920SAl Viro fsparam_enum ("huge", Opt_huge), 3387626c3920SAl Viro fsparam_u32oct("mode", Opt_mode), 3388626c3920SAl Viro fsparam_string("mpol", Opt_mpol), 3389626c3920SAl Viro fsparam_string("nr_blocks", Opt_nr_blocks), 3390626c3920SAl Viro fsparam_string("nr_inodes", Opt_nr_inodes), 3391626c3920SAl Viro fsparam_string("size", Opt_size), 3392626c3920SAl Viro fsparam_u32 ("uid", Opt_uid), 3393626c3920SAl Viro {} 3394626c3920SAl Viro }; 3395626c3920SAl Viro 3396626c3920SAl Viro static const struct fs_parameter_enum shmem_param_enums[] = { 3397626c3920SAl Viro { Opt_huge, "never", SHMEM_HUGE_NEVER }, 3398626c3920SAl Viro { Opt_huge, "always", SHMEM_HUGE_ALWAYS }, 3399626c3920SAl Viro { Opt_huge, "within_size", SHMEM_HUGE_WITHIN_SIZE }, 3400626c3920SAl Viro { Opt_huge, "advise", SHMEM_HUGE_ADVISE }, 3401626c3920SAl Viro {} 3402626c3920SAl Viro }; 3403626c3920SAl Viro 3404626c3920SAl Viro const struct fs_parameter_description shmem_fs_parameters = { 3405626c3920SAl Viro .name = "tmpfs", 3406626c3920SAl Viro .specs = shmem_param_specs, 3407626c3920SAl Viro .enums = shmem_param_enums, 3408626c3920SAl Viro }; 3409626c3920SAl Viro 3410f3235626SDavid Howells static int shmem_parse_one(struct fs_context *fc, struct fs_parameter *param) 3411626c3920SAl Viro { 3412f3235626SDavid Howells struct shmem_options *ctx = fc->fs_private; 3413626c3920SAl Viro struct fs_parse_result result; 3414e04dc423SAl Viro unsigned long long size; 3415626c3920SAl Viro char *rest; 3416626c3920SAl Viro int opt; 3417626c3920SAl Viro 3418626c3920SAl Viro opt = fs_parse(fc, &shmem_fs_parameters, param, &result); 3419f3235626SDavid Howells if (opt < 0) 3420626c3920SAl Viro return opt; 3421626c3920SAl Viro 3422626c3920SAl Viro switch (opt) { 3423626c3920SAl Viro case Opt_size: 3424626c3920SAl Viro size = memparse(param->string, &rest); 3425e04dc423SAl Viro if (*rest == '%') { 3426e04dc423SAl Viro size <<= PAGE_SHIFT; 3427e04dc423SAl Viro size *= totalram_pages(); 3428e04dc423SAl Viro do_div(size, 100); 3429e04dc423SAl Viro rest++; 3430e04dc423SAl Viro } 3431e04dc423SAl Viro if (*rest) 3432626c3920SAl Viro goto bad_value; 3433e04dc423SAl Viro ctx->blocks = DIV_ROUND_UP(size, PAGE_SIZE); 3434e04dc423SAl Viro ctx->seen |= SHMEM_SEEN_BLOCKS; 3435626c3920SAl Viro break; 3436626c3920SAl Viro case Opt_nr_blocks: 3437626c3920SAl Viro ctx->blocks = memparse(param->string, &rest); 3438e04dc423SAl Viro if (*rest) 3439626c3920SAl Viro goto bad_value; 3440e04dc423SAl Viro ctx->seen |= SHMEM_SEEN_BLOCKS; 3441626c3920SAl Viro break; 3442626c3920SAl Viro case Opt_nr_inodes: 3443626c3920SAl Viro ctx->inodes = memparse(param->string, &rest); 3444e04dc423SAl Viro if (*rest) 3445626c3920SAl Viro goto bad_value; 3446e04dc423SAl Viro ctx->seen |= SHMEM_SEEN_INODES; 3447626c3920SAl Viro break; 3448626c3920SAl Viro case Opt_mode: 3449626c3920SAl Viro ctx->mode = result.uint_32 & 07777; 3450626c3920SAl Viro break; 3451626c3920SAl Viro case Opt_uid: 3452626c3920SAl Viro ctx->uid = make_kuid(current_user_ns(), result.uint_32); 3453e04dc423SAl Viro if (!uid_valid(ctx->uid)) 3454626c3920SAl Viro goto bad_value; 3455626c3920SAl Viro break; 3456626c3920SAl Viro case Opt_gid: 3457626c3920SAl Viro ctx->gid = make_kgid(current_user_ns(), result.uint_32); 3458e04dc423SAl Viro if (!gid_valid(ctx->gid)) 3459626c3920SAl Viro goto bad_value; 3460626c3920SAl Viro break; 3461626c3920SAl Viro case Opt_huge: 3462626c3920SAl Viro ctx->huge = result.uint_32; 3463626c3920SAl Viro if (ctx->huge != SHMEM_HUGE_NEVER && 3464626c3920SAl Viro !(IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE) && 3465626c3920SAl Viro has_transparent_hugepage())) 3466626c3920SAl Viro goto unsupported_parameter; 3467e04dc423SAl Viro ctx->seen |= SHMEM_SEEN_HUGE; 3468626c3920SAl Viro break; 3469626c3920SAl Viro case Opt_mpol: 3470626c3920SAl Viro if (IS_ENABLED(CONFIG_NUMA)) { 3471e04dc423SAl Viro mpol_put(ctx->mpol); 3472e04dc423SAl Viro ctx->mpol = NULL; 3473626c3920SAl Viro if (mpol_parse_str(param->string, &ctx->mpol)) 3474626c3920SAl Viro goto bad_value; 3475626c3920SAl Viro break; 3476626c3920SAl Viro } 3477626c3920SAl Viro goto unsupported_parameter; 3478e04dc423SAl Viro } 3479e04dc423SAl Viro return 0; 3480e04dc423SAl Viro 3481626c3920SAl Viro unsupported_parameter: 3482626c3920SAl Viro return invalf(fc, "tmpfs: Unsupported parameter '%s'", param->key); 3483626c3920SAl Viro bad_value: 3484626c3920SAl Viro return invalf(fc, "tmpfs: Bad value for '%s'", param->key); 3485e04dc423SAl Viro } 3486e04dc423SAl Viro 3487f3235626SDavid Howells static int shmem_parse_options(struct fs_context *fc, void *data) 3488e04dc423SAl Viro { 3489f3235626SDavid Howells char *options = data; 3490f3235626SDavid Howells 349133f37c64SAl Viro if (options) { 349233f37c64SAl Viro int err = security_sb_eat_lsm_opts(options, &fc->security); 349333f37c64SAl Viro if (err) 349433f37c64SAl Viro return err; 349533f37c64SAl Viro } 349633f37c64SAl Viro 3497b00dc3adSHugh Dickins while (options != NULL) { 3498626c3920SAl Viro char *this_char = options; 3499b00dc3adSHugh Dickins for (;;) { 3500b00dc3adSHugh Dickins /* 3501b00dc3adSHugh Dickins * NUL-terminate this option: unfortunately, 3502b00dc3adSHugh Dickins * mount options form a comma-separated list, 3503b00dc3adSHugh Dickins * but mpol's nodelist may also contain commas. 3504b00dc3adSHugh Dickins */ 3505b00dc3adSHugh Dickins options = strchr(options, ','); 3506b00dc3adSHugh Dickins if (options == NULL) 3507b00dc3adSHugh Dickins break; 3508b00dc3adSHugh Dickins options++; 3509b00dc3adSHugh Dickins if (!isdigit(*options)) { 3510b00dc3adSHugh Dickins options[-1] = '\0'; 3511b00dc3adSHugh Dickins break; 3512b00dc3adSHugh Dickins } 3513b00dc3adSHugh Dickins } 3514626c3920SAl Viro if (*this_char) { 3515626c3920SAl Viro char *value = strchr(this_char,'='); 3516f3235626SDavid Howells size_t len = 0; 3517626c3920SAl Viro int err; 3518626c3920SAl Viro 3519626c3920SAl Viro if (value) { 3520626c3920SAl Viro *value++ = '\0'; 3521f3235626SDavid Howells len = strlen(value); 35221da177e4SLinus Torvalds } 3523f3235626SDavid Howells err = vfs_parse_fs_string(fc, this_char, value, len); 3524f3235626SDavid Howells if (err < 0) 3525f3235626SDavid Howells return err; 35261da177e4SLinus Torvalds } 3527626c3920SAl Viro } 35281da177e4SLinus Torvalds return 0; 35291da177e4SLinus Torvalds } 35301da177e4SLinus Torvalds 3531f3235626SDavid Howells /* 3532f3235626SDavid Howells * Reconfigure a shmem filesystem. 3533f3235626SDavid Howells * 3534f3235626SDavid Howells * Note that we disallow change from limited->unlimited blocks/inodes while any 3535f3235626SDavid Howells * are in use; but we must separately disallow unlimited->limited, because in 3536f3235626SDavid Howells * that case we have no record of how much is already in use. 3537f3235626SDavid Howells */ 3538f3235626SDavid Howells static int shmem_reconfigure(struct fs_context *fc) 35391da177e4SLinus Torvalds { 3540f3235626SDavid Howells struct shmem_options *ctx = fc->fs_private; 3541f3235626SDavid Howells struct shmem_sb_info *sbinfo = SHMEM_SB(fc->root->d_sb); 35420edd73b3SHugh Dickins unsigned long inodes; 3543f3235626SDavid Howells const char *err; 35440edd73b3SHugh Dickins 35450edd73b3SHugh Dickins spin_lock(&sbinfo->stat_lock); 35460edd73b3SHugh Dickins inodes = sbinfo->max_inodes - sbinfo->free_inodes; 3547f3235626SDavid Howells if ((ctx->seen & SHMEM_SEEN_BLOCKS) && ctx->blocks) { 3548f3235626SDavid Howells if (!sbinfo->max_blocks) { 3549f3235626SDavid Howells err = "Cannot retroactively limit size"; 35500edd73b3SHugh Dickins goto out; 35510b5071ddSAl Viro } 3552f3235626SDavid Howells if (percpu_counter_compare(&sbinfo->used_blocks, 3553f3235626SDavid Howells ctx->blocks) > 0) { 3554f3235626SDavid Howells err = "Too small a size for current use"; 35550b5071ddSAl Viro goto out; 3556f3235626SDavid Howells } 3557f3235626SDavid Howells } 3558f3235626SDavid Howells if ((ctx->seen & SHMEM_SEEN_INODES) && ctx->inodes) { 3559f3235626SDavid Howells if (!sbinfo->max_inodes) { 3560f3235626SDavid Howells err = "Cannot retroactively limit inodes"; 35610b5071ddSAl Viro goto out; 35620b5071ddSAl Viro } 3563f3235626SDavid Howells if (ctx->inodes < inodes) { 3564f3235626SDavid Howells err = "Too few inodes for current use"; 3565f3235626SDavid Howells goto out; 3566f3235626SDavid Howells } 3567f3235626SDavid Howells } 35680edd73b3SHugh Dickins 3569f3235626SDavid Howells if (ctx->seen & SHMEM_SEEN_HUGE) 3570f3235626SDavid Howells sbinfo->huge = ctx->huge; 3571f3235626SDavid Howells if (ctx->seen & SHMEM_SEEN_BLOCKS) 3572f3235626SDavid Howells sbinfo->max_blocks = ctx->blocks; 3573f3235626SDavid Howells if (ctx->seen & SHMEM_SEEN_INODES) { 3574f3235626SDavid Howells sbinfo->max_inodes = ctx->inodes; 3575f3235626SDavid Howells sbinfo->free_inodes = ctx->inodes - inodes; 35760b5071ddSAl Viro } 357771fe804bSLee Schermerhorn 35785f00110fSGreg Thelen /* 35795f00110fSGreg Thelen * Preserve previous mempolicy unless mpol remount option was specified. 35805f00110fSGreg Thelen */ 3581f3235626SDavid Howells if (ctx->mpol) { 358271fe804bSLee Schermerhorn mpol_put(sbinfo->mpol); 3583f3235626SDavid Howells sbinfo->mpol = ctx->mpol; /* transfers initial ref */ 3584f3235626SDavid Howells ctx->mpol = NULL; 35855f00110fSGreg Thelen } 3586f3235626SDavid Howells spin_unlock(&sbinfo->stat_lock); 3587f3235626SDavid Howells return 0; 35880edd73b3SHugh Dickins out: 35890edd73b3SHugh Dickins spin_unlock(&sbinfo->stat_lock); 3590f3235626SDavid Howells return invalf(fc, "tmpfs: %s", err); 35911da177e4SLinus Torvalds } 3592680d794bSakpm@linux-foundation.org 359334c80b1dSAl Viro static int shmem_show_options(struct seq_file *seq, struct dentry *root) 3594680d794bSakpm@linux-foundation.org { 359534c80b1dSAl Viro struct shmem_sb_info *sbinfo = SHMEM_SB(root->d_sb); 3596680d794bSakpm@linux-foundation.org 3597680d794bSakpm@linux-foundation.org if (sbinfo->max_blocks != shmem_default_max_blocks()) 3598680d794bSakpm@linux-foundation.org seq_printf(seq, ",size=%luk", 359909cbfeafSKirill A. Shutemov sbinfo->max_blocks << (PAGE_SHIFT - 10)); 3600680d794bSakpm@linux-foundation.org if (sbinfo->max_inodes != shmem_default_max_inodes()) 3601680d794bSakpm@linux-foundation.org seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes); 36020825a6f9SJoe Perches if (sbinfo->mode != (0777 | S_ISVTX)) 360309208d15SAl Viro seq_printf(seq, ",mode=%03ho", sbinfo->mode); 36048751e039SEric W. Biederman if (!uid_eq(sbinfo->uid, GLOBAL_ROOT_UID)) 36058751e039SEric W. Biederman seq_printf(seq, ",uid=%u", 36068751e039SEric W. Biederman from_kuid_munged(&init_user_ns, sbinfo->uid)); 36078751e039SEric W. Biederman if (!gid_eq(sbinfo->gid, GLOBAL_ROOT_GID)) 36088751e039SEric W. Biederman seq_printf(seq, ",gid=%u", 36098751e039SEric W. Biederman from_kgid_munged(&init_user_ns, sbinfo->gid)); 3610e496cf3dSKirill A. Shutemov #ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE 36115a6e75f8SKirill A. Shutemov /* Rightly or wrongly, show huge mount option unmasked by shmem_huge */ 36125a6e75f8SKirill A. Shutemov if (sbinfo->huge) 36135a6e75f8SKirill A. Shutemov seq_printf(seq, ",huge=%s", shmem_format_huge(sbinfo->huge)); 36145a6e75f8SKirill A. Shutemov #endif 361571fe804bSLee Schermerhorn shmem_show_mpol(seq, sbinfo->mpol); 3616680d794bSakpm@linux-foundation.org return 0; 3617680d794bSakpm@linux-foundation.org } 36189183df25SDavid Herrmann 3619680d794bSakpm@linux-foundation.org #endif /* CONFIG_TMPFS */ 36201da177e4SLinus Torvalds 36211da177e4SLinus Torvalds static void shmem_put_super(struct super_block *sb) 36221da177e4SLinus Torvalds { 3623602586a8SHugh Dickins struct shmem_sb_info *sbinfo = SHMEM_SB(sb); 3624602586a8SHugh Dickins 3625602586a8SHugh Dickins percpu_counter_destroy(&sbinfo->used_blocks); 362649cd0a5cSGreg Thelen mpol_put(sbinfo->mpol); 3627602586a8SHugh Dickins kfree(sbinfo); 36281da177e4SLinus Torvalds sb->s_fs_info = NULL; 36291da177e4SLinus Torvalds } 36301da177e4SLinus Torvalds 3631f3235626SDavid Howells static int shmem_fill_super(struct super_block *sb, struct fs_context *fc) 36321da177e4SLinus Torvalds { 3633f3235626SDavid Howells struct shmem_options *ctx = fc->fs_private; 36341da177e4SLinus Torvalds struct inode *inode; 36350edd73b3SHugh Dickins struct shmem_sb_info *sbinfo; 3636680d794bSakpm@linux-foundation.org int err = -ENOMEM; 3637680d794bSakpm@linux-foundation.org 3638680d794bSakpm@linux-foundation.org /* Round up to L1_CACHE_BYTES to resist false sharing */ 3639425fbf04SPekka Enberg sbinfo = kzalloc(max((int)sizeof(struct shmem_sb_info), 3640680d794bSakpm@linux-foundation.org L1_CACHE_BYTES), GFP_KERNEL); 3641680d794bSakpm@linux-foundation.org if (!sbinfo) 3642680d794bSakpm@linux-foundation.org return -ENOMEM; 3643680d794bSakpm@linux-foundation.org 3644680d794bSakpm@linux-foundation.org sb->s_fs_info = sbinfo; 36451da177e4SLinus Torvalds 36460edd73b3SHugh Dickins #ifdef CONFIG_TMPFS 36471da177e4SLinus Torvalds /* 36481da177e4SLinus Torvalds * Per default we only allow half of the physical ram per 36491da177e4SLinus Torvalds * tmpfs instance, limiting inodes to one per page of lowmem; 36501da177e4SLinus Torvalds * but the internal instance is left unlimited. 36511da177e4SLinus Torvalds */ 36521751e8a6SLinus Torvalds if (!(sb->s_flags & SB_KERNMOUNT)) { 3653f3235626SDavid Howells if (!(ctx->seen & SHMEM_SEEN_BLOCKS)) 3654f3235626SDavid Howells ctx->blocks = shmem_default_max_blocks(); 3655f3235626SDavid Howells if (!(ctx->seen & SHMEM_SEEN_INODES)) 3656f3235626SDavid Howells ctx->inodes = shmem_default_max_inodes(); 3657ca4e0519SAl Viro } else { 36581751e8a6SLinus Torvalds sb->s_flags |= SB_NOUSER; 36591da177e4SLinus Torvalds } 366091828a40SDavid M. Grimes sb->s_export_op = &shmem_export_ops; 36611751e8a6SLinus Torvalds sb->s_flags |= SB_NOSEC; 36620edd73b3SHugh Dickins #else 36631751e8a6SLinus Torvalds sb->s_flags |= SB_NOUSER; 36640edd73b3SHugh Dickins #endif 3665f3235626SDavid Howells sbinfo->max_blocks = ctx->blocks; 3666f3235626SDavid Howells sbinfo->free_inodes = sbinfo->max_inodes = ctx->inodes; 3667f3235626SDavid Howells sbinfo->uid = ctx->uid; 3668f3235626SDavid Howells sbinfo->gid = ctx->gid; 3669f3235626SDavid Howells sbinfo->mode = ctx->mode; 3670f3235626SDavid Howells sbinfo->huge = ctx->huge; 3671f3235626SDavid Howells sbinfo->mpol = ctx->mpol; 3672f3235626SDavid Howells ctx->mpol = NULL; 36731da177e4SLinus Torvalds 36741da177e4SLinus Torvalds spin_lock_init(&sbinfo->stat_lock); 3675908c7f19STejun Heo if (percpu_counter_init(&sbinfo->used_blocks, 0, GFP_KERNEL)) 3676602586a8SHugh Dickins goto failed; 3677779750d2SKirill A. Shutemov spin_lock_init(&sbinfo->shrinklist_lock); 3678779750d2SKirill A. Shutemov INIT_LIST_HEAD(&sbinfo->shrinklist); 36791da177e4SLinus Torvalds 3680285b2c4fSHugh Dickins sb->s_maxbytes = MAX_LFS_FILESIZE; 368109cbfeafSKirill A. Shutemov sb->s_blocksize = PAGE_SIZE; 368209cbfeafSKirill A. Shutemov sb->s_blocksize_bits = PAGE_SHIFT; 36831da177e4SLinus Torvalds sb->s_magic = TMPFS_MAGIC; 36841da177e4SLinus Torvalds sb->s_op = &shmem_ops; 3685cfd95a9cSRobin H. Johnson sb->s_time_gran = 1; 3686b09e0fa4SEric Paris #ifdef CONFIG_TMPFS_XATTR 368739f0247dSAndreas Gruenbacher sb->s_xattr = shmem_xattr_handlers; 3688b09e0fa4SEric Paris #endif 3689b09e0fa4SEric Paris #ifdef CONFIG_TMPFS_POSIX_ACL 36901751e8a6SLinus Torvalds sb->s_flags |= SB_POSIXACL; 369139f0247dSAndreas Gruenbacher #endif 36922b4db796SAmir Goldstein uuid_gen(&sb->s_uuid); 36930edd73b3SHugh Dickins 3694454abafeSDmitry Monakhov inode = shmem_get_inode(sb, NULL, S_IFDIR | sbinfo->mode, 0, VM_NORESERVE); 36951da177e4SLinus Torvalds if (!inode) 36961da177e4SLinus Torvalds goto failed; 3697680d794bSakpm@linux-foundation.org inode->i_uid = sbinfo->uid; 3698680d794bSakpm@linux-foundation.org inode->i_gid = sbinfo->gid; 3699318ceed0SAl Viro sb->s_root = d_make_root(inode); 3700318ceed0SAl Viro if (!sb->s_root) 370148fde701SAl Viro goto failed; 37021da177e4SLinus Torvalds return 0; 37031da177e4SLinus Torvalds 37041da177e4SLinus Torvalds failed: 37051da177e4SLinus Torvalds shmem_put_super(sb); 37061da177e4SLinus Torvalds return err; 37071da177e4SLinus Torvalds } 37081da177e4SLinus Torvalds 3709f3235626SDavid Howells static int shmem_get_tree(struct fs_context *fc) 3710f3235626SDavid Howells { 3711f3235626SDavid Howells return get_tree_nodev(fc, shmem_fill_super); 3712f3235626SDavid Howells } 3713f3235626SDavid Howells 3714f3235626SDavid Howells static void shmem_free_fc(struct fs_context *fc) 3715f3235626SDavid Howells { 3716f3235626SDavid Howells struct shmem_options *ctx = fc->fs_private; 3717f3235626SDavid Howells 3718f3235626SDavid Howells if (ctx) { 3719f3235626SDavid Howells mpol_put(ctx->mpol); 3720f3235626SDavid Howells kfree(ctx); 3721f3235626SDavid Howells } 3722f3235626SDavid Howells } 3723f3235626SDavid Howells 3724f3235626SDavid Howells static const struct fs_context_operations shmem_fs_context_ops = { 3725f3235626SDavid Howells .free = shmem_free_fc, 3726f3235626SDavid Howells .get_tree = shmem_get_tree, 3727f3235626SDavid Howells #ifdef CONFIG_TMPFS 3728f3235626SDavid Howells .parse_monolithic = shmem_parse_options, 3729f3235626SDavid Howells .parse_param = shmem_parse_one, 3730f3235626SDavid Howells .reconfigure = shmem_reconfigure, 3731f3235626SDavid Howells #endif 3732f3235626SDavid Howells }; 3733f3235626SDavid Howells 3734fcc234f8SPekka Enberg static struct kmem_cache *shmem_inode_cachep; 37351da177e4SLinus Torvalds 37361da177e4SLinus Torvalds static struct inode *shmem_alloc_inode(struct super_block *sb) 37371da177e4SLinus Torvalds { 373841ffe5d5SHugh Dickins struct shmem_inode_info *info; 373941ffe5d5SHugh Dickins info = kmem_cache_alloc(shmem_inode_cachep, GFP_KERNEL); 374041ffe5d5SHugh Dickins if (!info) 37411da177e4SLinus Torvalds return NULL; 374241ffe5d5SHugh Dickins return &info->vfs_inode; 37431da177e4SLinus Torvalds } 37441da177e4SLinus Torvalds 374574b1da56SAl Viro static void shmem_free_in_core_inode(struct inode *inode) 3746fa0d7e3dSNick Piggin { 374784e710daSAl Viro if (S_ISLNK(inode->i_mode)) 37483ed47db3SAl Viro kfree(inode->i_link); 3749fa0d7e3dSNick Piggin kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode)); 3750fa0d7e3dSNick Piggin } 3751fa0d7e3dSNick Piggin 37521da177e4SLinus Torvalds static void shmem_destroy_inode(struct inode *inode) 37531da177e4SLinus Torvalds { 375409208d15SAl Viro if (S_ISREG(inode->i_mode)) 37551da177e4SLinus Torvalds mpol_free_shared_policy(&SHMEM_I(inode)->policy); 37561da177e4SLinus Torvalds } 37571da177e4SLinus Torvalds 375841ffe5d5SHugh Dickins static void shmem_init_inode(void *foo) 37591da177e4SLinus Torvalds { 376041ffe5d5SHugh Dickins struct shmem_inode_info *info = foo; 376141ffe5d5SHugh Dickins inode_init_once(&info->vfs_inode); 37621da177e4SLinus Torvalds } 37631da177e4SLinus Torvalds 37649a8ec03eSweiping zhang static void shmem_init_inodecache(void) 37651da177e4SLinus Torvalds { 37661da177e4SLinus Torvalds shmem_inode_cachep = kmem_cache_create("shmem_inode_cache", 37671da177e4SLinus Torvalds sizeof(struct shmem_inode_info), 37685d097056SVladimir Davydov 0, SLAB_PANIC|SLAB_ACCOUNT, shmem_init_inode); 37691da177e4SLinus Torvalds } 37701da177e4SLinus Torvalds 377141ffe5d5SHugh Dickins static void shmem_destroy_inodecache(void) 37721da177e4SLinus Torvalds { 37731a1d92c1SAlexey Dobriyan kmem_cache_destroy(shmem_inode_cachep); 37741da177e4SLinus Torvalds } 37751da177e4SLinus Torvalds 3776f5e54d6eSChristoph Hellwig static const struct address_space_operations shmem_aops = { 37771da177e4SLinus Torvalds .writepage = shmem_writepage, 377876719325SKen Chen .set_page_dirty = __set_page_dirty_no_writeback, 37791da177e4SLinus Torvalds #ifdef CONFIG_TMPFS 3780800d15a5SNick Piggin .write_begin = shmem_write_begin, 3781800d15a5SNick Piggin .write_end = shmem_write_end, 37821da177e4SLinus Torvalds #endif 37831c93923cSAndrew Morton #ifdef CONFIG_MIGRATION 3784304dbdb7SLee Schermerhorn .migratepage = migrate_page, 37851c93923cSAndrew Morton #endif 3786aa261f54SAndi Kleen .error_remove_page = generic_error_remove_page, 37871da177e4SLinus Torvalds }; 37881da177e4SLinus Torvalds 378915ad7cdcSHelge Deller static const struct file_operations shmem_file_operations = { 37901da177e4SLinus Torvalds .mmap = shmem_mmap, 3791c01d5b30SHugh Dickins .get_unmapped_area = shmem_get_unmapped_area, 37921da177e4SLinus Torvalds #ifdef CONFIG_TMPFS 3793220f2ac9SHugh Dickins .llseek = shmem_file_llseek, 37942ba5bbedSAl Viro .read_iter = shmem_file_read_iter, 37958174202bSAl Viro .write_iter = generic_file_write_iter, 37961b061d92SChristoph Hellwig .fsync = noop_fsync, 379782c156f8SAl Viro .splice_read = generic_file_splice_read, 3798f6cb85d0SAl Viro .splice_write = iter_file_splice_write, 379983e4fa9cSHugh Dickins .fallocate = shmem_fallocate, 38001da177e4SLinus Torvalds #endif 38011da177e4SLinus Torvalds }; 38021da177e4SLinus Torvalds 380392e1d5beSArjan van de Ven static const struct inode_operations shmem_inode_operations = { 380444a30220SYu Zhao .getattr = shmem_getattr, 380594c1e62dSHugh Dickins .setattr = shmem_setattr, 3806b09e0fa4SEric Paris #ifdef CONFIG_TMPFS_XATTR 3807b09e0fa4SEric Paris .listxattr = shmem_listxattr, 3808feda821eSChristoph Hellwig .set_acl = simple_set_acl, 3809b09e0fa4SEric Paris #endif 38101da177e4SLinus Torvalds }; 38111da177e4SLinus Torvalds 381292e1d5beSArjan van de Ven static const struct inode_operations shmem_dir_inode_operations = { 38131da177e4SLinus Torvalds #ifdef CONFIG_TMPFS 38141da177e4SLinus Torvalds .create = shmem_create, 38151da177e4SLinus Torvalds .lookup = simple_lookup, 38161da177e4SLinus Torvalds .link = shmem_link, 38171da177e4SLinus Torvalds .unlink = shmem_unlink, 38181da177e4SLinus Torvalds .symlink = shmem_symlink, 38191da177e4SLinus Torvalds .mkdir = shmem_mkdir, 38201da177e4SLinus Torvalds .rmdir = shmem_rmdir, 38211da177e4SLinus Torvalds .mknod = shmem_mknod, 38222773bf00SMiklos Szeredi .rename = shmem_rename2, 382360545d0dSAl Viro .tmpfile = shmem_tmpfile, 38241da177e4SLinus Torvalds #endif 3825b09e0fa4SEric Paris #ifdef CONFIG_TMPFS_XATTR 3826b09e0fa4SEric Paris .listxattr = shmem_listxattr, 3827b09e0fa4SEric Paris #endif 382839f0247dSAndreas Gruenbacher #ifdef CONFIG_TMPFS_POSIX_ACL 382994c1e62dSHugh Dickins .setattr = shmem_setattr, 3830feda821eSChristoph Hellwig .set_acl = simple_set_acl, 383139f0247dSAndreas Gruenbacher #endif 383239f0247dSAndreas Gruenbacher }; 383339f0247dSAndreas Gruenbacher 383492e1d5beSArjan van de Ven static const struct inode_operations shmem_special_inode_operations = { 3835b09e0fa4SEric Paris #ifdef CONFIG_TMPFS_XATTR 3836b09e0fa4SEric Paris .listxattr = shmem_listxattr, 3837b09e0fa4SEric Paris #endif 383839f0247dSAndreas Gruenbacher #ifdef CONFIG_TMPFS_POSIX_ACL 383994c1e62dSHugh Dickins .setattr = shmem_setattr, 3840feda821eSChristoph Hellwig .set_acl = simple_set_acl, 384139f0247dSAndreas Gruenbacher #endif 38421da177e4SLinus Torvalds }; 38431da177e4SLinus Torvalds 3844759b9775SHugh Dickins static const struct super_operations shmem_ops = { 38451da177e4SLinus Torvalds .alloc_inode = shmem_alloc_inode, 384674b1da56SAl Viro .free_inode = shmem_free_in_core_inode, 38471da177e4SLinus Torvalds .destroy_inode = shmem_destroy_inode, 38481da177e4SLinus Torvalds #ifdef CONFIG_TMPFS 38491da177e4SLinus Torvalds .statfs = shmem_statfs, 3850680d794bSakpm@linux-foundation.org .show_options = shmem_show_options, 38511da177e4SLinus Torvalds #endif 38521f895f75SAl Viro .evict_inode = shmem_evict_inode, 38531da177e4SLinus Torvalds .drop_inode = generic_delete_inode, 38541da177e4SLinus Torvalds .put_super = shmem_put_super, 3855779750d2SKirill A. Shutemov #ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE 3856779750d2SKirill A. Shutemov .nr_cached_objects = shmem_unused_huge_count, 3857779750d2SKirill A. Shutemov .free_cached_objects = shmem_unused_huge_scan, 3858779750d2SKirill A. Shutemov #endif 38591da177e4SLinus Torvalds }; 38601da177e4SLinus Torvalds 3861f0f37e2fSAlexey Dobriyan static const struct vm_operations_struct shmem_vm_ops = { 386254cb8821SNick Piggin .fault = shmem_fault, 3863d7c17551SNing Qu .map_pages = filemap_map_pages, 38641da177e4SLinus Torvalds #ifdef CONFIG_NUMA 38651da177e4SLinus Torvalds .set_policy = shmem_set_policy, 38661da177e4SLinus Torvalds .get_policy = shmem_get_policy, 38671da177e4SLinus Torvalds #endif 38681da177e4SLinus Torvalds }; 38691da177e4SLinus Torvalds 3870f3235626SDavid Howells int shmem_init_fs_context(struct fs_context *fc) 38711da177e4SLinus Torvalds { 3872f3235626SDavid Howells struct shmem_options *ctx; 3873f3235626SDavid Howells 3874f3235626SDavid Howells ctx = kzalloc(sizeof(struct shmem_options), GFP_KERNEL); 3875f3235626SDavid Howells if (!ctx) 3876f3235626SDavid Howells return -ENOMEM; 3877f3235626SDavid Howells 3878f3235626SDavid Howells ctx->mode = 0777 | S_ISVTX; 3879f3235626SDavid Howells ctx->uid = current_fsuid(); 3880f3235626SDavid Howells ctx->gid = current_fsgid(); 3881f3235626SDavid Howells 3882f3235626SDavid Howells fc->fs_private = ctx; 3883f3235626SDavid Howells fc->ops = &shmem_fs_context_ops; 3884f3235626SDavid Howells return 0; 38851da177e4SLinus Torvalds } 38861da177e4SLinus Torvalds 388741ffe5d5SHugh Dickins static struct file_system_type shmem_fs_type = { 38881da177e4SLinus Torvalds .owner = THIS_MODULE, 38891da177e4SLinus Torvalds .name = "tmpfs", 3890f3235626SDavid Howells .init_fs_context = shmem_init_fs_context, 3891f3235626SDavid Howells #ifdef CONFIG_TMPFS 3892f3235626SDavid Howells .parameters = &shmem_fs_parameters, 3893f3235626SDavid Howells #endif 38941da177e4SLinus Torvalds .kill_sb = kill_litter_super, 38952b8576cbSEric W. Biederman .fs_flags = FS_USERNS_MOUNT, 38961da177e4SLinus Torvalds }; 38971da177e4SLinus Torvalds 389841ffe5d5SHugh Dickins int __init shmem_init(void) 38991da177e4SLinus Torvalds { 39001da177e4SLinus Torvalds int error; 39011da177e4SLinus Torvalds 39029a8ec03eSweiping zhang shmem_init_inodecache(); 39031da177e4SLinus Torvalds 390441ffe5d5SHugh Dickins error = register_filesystem(&shmem_fs_type); 39051da177e4SLinus Torvalds if (error) { 39061170532bSJoe Perches pr_err("Could not register tmpfs\n"); 39071da177e4SLinus Torvalds goto out2; 39081da177e4SLinus Torvalds } 390995dc112aSGreg Kroah-Hartman 3910ca4e0519SAl Viro shm_mnt = kern_mount(&shmem_fs_type); 39111da177e4SLinus Torvalds if (IS_ERR(shm_mnt)) { 39121da177e4SLinus Torvalds error = PTR_ERR(shm_mnt); 39131170532bSJoe Perches pr_err("Could not kern_mount tmpfs\n"); 39141da177e4SLinus Torvalds goto out1; 39151da177e4SLinus Torvalds } 39165a6e75f8SKirill A. Shutemov 3917e496cf3dSKirill A. Shutemov #ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE 3918435c0b87SKirill A. Shutemov if (has_transparent_hugepage() && shmem_huge > SHMEM_HUGE_DENY) 39195a6e75f8SKirill A. Shutemov SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge; 39205a6e75f8SKirill A. Shutemov else 39215a6e75f8SKirill A. Shutemov shmem_huge = 0; /* just in case it was patched */ 39225a6e75f8SKirill A. Shutemov #endif 39231da177e4SLinus Torvalds return 0; 39241da177e4SLinus Torvalds 39251da177e4SLinus Torvalds out1: 392641ffe5d5SHugh Dickins unregister_filesystem(&shmem_fs_type); 39271da177e4SLinus Torvalds out2: 392841ffe5d5SHugh Dickins shmem_destroy_inodecache(); 39291da177e4SLinus Torvalds shm_mnt = ERR_PTR(error); 39301da177e4SLinus Torvalds return error; 39311da177e4SLinus Torvalds } 3932853ac43aSMatt Mackall 3933e496cf3dSKirill A. Shutemov #if defined(CONFIG_TRANSPARENT_HUGE_PAGECACHE) && defined(CONFIG_SYSFS) 39345a6e75f8SKirill A. Shutemov static ssize_t shmem_enabled_show(struct kobject *kobj, 39355a6e75f8SKirill A. Shutemov struct kobj_attribute *attr, char *buf) 39365a6e75f8SKirill A. Shutemov { 393726083eb6SColin Ian King static const int values[] = { 39385a6e75f8SKirill A. Shutemov SHMEM_HUGE_ALWAYS, 39395a6e75f8SKirill A. Shutemov SHMEM_HUGE_WITHIN_SIZE, 39405a6e75f8SKirill A. Shutemov SHMEM_HUGE_ADVISE, 39415a6e75f8SKirill A. Shutemov SHMEM_HUGE_NEVER, 39425a6e75f8SKirill A. Shutemov SHMEM_HUGE_DENY, 39435a6e75f8SKirill A. Shutemov SHMEM_HUGE_FORCE, 39445a6e75f8SKirill A. Shutemov }; 39455a6e75f8SKirill A. Shutemov int i, count; 39465a6e75f8SKirill A. Shutemov 39475a6e75f8SKirill A. Shutemov for (i = 0, count = 0; i < ARRAY_SIZE(values); i++) { 39485a6e75f8SKirill A. Shutemov const char *fmt = shmem_huge == values[i] ? "[%s] " : "%s "; 39495a6e75f8SKirill A. Shutemov 39505a6e75f8SKirill A. Shutemov count += sprintf(buf + count, fmt, 39515a6e75f8SKirill A. Shutemov shmem_format_huge(values[i])); 39525a6e75f8SKirill A. Shutemov } 39535a6e75f8SKirill A. Shutemov buf[count - 1] = '\n'; 39545a6e75f8SKirill A. Shutemov return count; 39555a6e75f8SKirill A. Shutemov } 39565a6e75f8SKirill A. Shutemov 39575a6e75f8SKirill A. Shutemov static ssize_t shmem_enabled_store(struct kobject *kobj, 39585a6e75f8SKirill A. Shutemov struct kobj_attribute *attr, const char *buf, size_t count) 39595a6e75f8SKirill A. Shutemov { 39605a6e75f8SKirill A. Shutemov char tmp[16]; 39615a6e75f8SKirill A. Shutemov int huge; 39625a6e75f8SKirill A. Shutemov 39635a6e75f8SKirill A. Shutemov if (count + 1 > sizeof(tmp)) 39645a6e75f8SKirill A. Shutemov return -EINVAL; 39655a6e75f8SKirill A. Shutemov memcpy(tmp, buf, count); 39665a6e75f8SKirill A. Shutemov tmp[count] = '\0'; 39675a6e75f8SKirill A. Shutemov if (count && tmp[count - 1] == '\n') 39685a6e75f8SKirill A. Shutemov tmp[count - 1] = '\0'; 39695a6e75f8SKirill A. Shutemov 39705a6e75f8SKirill A. Shutemov huge = shmem_parse_huge(tmp); 39715a6e75f8SKirill A. Shutemov if (huge == -EINVAL) 39725a6e75f8SKirill A. Shutemov return -EINVAL; 39735a6e75f8SKirill A. Shutemov if (!has_transparent_hugepage() && 39745a6e75f8SKirill A. Shutemov huge != SHMEM_HUGE_NEVER && huge != SHMEM_HUGE_DENY) 39755a6e75f8SKirill A. Shutemov return -EINVAL; 39765a6e75f8SKirill A. Shutemov 39775a6e75f8SKirill A. Shutemov shmem_huge = huge; 3978435c0b87SKirill A. Shutemov if (shmem_huge > SHMEM_HUGE_DENY) 39795a6e75f8SKirill A. Shutemov SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge; 39805a6e75f8SKirill A. Shutemov return count; 39815a6e75f8SKirill A. Shutemov } 39825a6e75f8SKirill A. Shutemov 39835a6e75f8SKirill A. Shutemov struct kobj_attribute shmem_enabled_attr = 39845a6e75f8SKirill A. Shutemov __ATTR(shmem_enabled, 0644, shmem_enabled_show, shmem_enabled_store); 39853b33719cSArnd Bergmann #endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE && CONFIG_SYSFS */ 3986f3f0e1d2SKirill A. Shutemov 39873b33719cSArnd Bergmann #ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE 3988f3f0e1d2SKirill A. Shutemov bool shmem_huge_enabled(struct vm_area_struct *vma) 3989f3f0e1d2SKirill A. Shutemov { 3990f3f0e1d2SKirill A. Shutemov struct inode *inode = file_inode(vma->vm_file); 3991f3f0e1d2SKirill A. Shutemov struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb); 3992f3f0e1d2SKirill A. Shutemov loff_t i_size; 3993f3f0e1d2SKirill A. Shutemov pgoff_t off; 3994f3f0e1d2SKirill A. Shutemov 3995c0630669SYang Shi if ((vma->vm_flags & VM_NOHUGEPAGE) || 3996c0630669SYang Shi test_bit(MMF_DISABLE_THP, &vma->vm_mm->flags)) 3997c0630669SYang Shi return false; 3998f3f0e1d2SKirill A. Shutemov if (shmem_huge == SHMEM_HUGE_FORCE) 3999f3f0e1d2SKirill A. Shutemov return true; 4000f3f0e1d2SKirill A. Shutemov if (shmem_huge == SHMEM_HUGE_DENY) 4001f3f0e1d2SKirill A. Shutemov return false; 4002f3f0e1d2SKirill A. Shutemov switch (sbinfo->huge) { 4003f3f0e1d2SKirill A. Shutemov case SHMEM_HUGE_NEVER: 4004f3f0e1d2SKirill A. Shutemov return false; 4005f3f0e1d2SKirill A. Shutemov case SHMEM_HUGE_ALWAYS: 4006f3f0e1d2SKirill A. Shutemov return true; 4007f3f0e1d2SKirill A. Shutemov case SHMEM_HUGE_WITHIN_SIZE: 4008f3f0e1d2SKirill A. Shutemov off = round_up(vma->vm_pgoff, HPAGE_PMD_NR); 4009f3f0e1d2SKirill A. Shutemov i_size = round_up(i_size_read(inode), PAGE_SIZE); 4010f3f0e1d2SKirill A. Shutemov if (i_size >= HPAGE_PMD_SIZE && 4011f3f0e1d2SKirill A. Shutemov i_size >> PAGE_SHIFT >= off) 4012f3f0e1d2SKirill A. Shutemov return true; 4013c8402871SGustavo A. R. Silva /* fall through */ 4014f3f0e1d2SKirill A. Shutemov case SHMEM_HUGE_ADVISE: 4015f3f0e1d2SKirill A. Shutemov /* TODO: implement fadvise() hints */ 4016f3f0e1d2SKirill A. Shutemov return (vma->vm_flags & VM_HUGEPAGE); 4017f3f0e1d2SKirill A. Shutemov default: 4018f3f0e1d2SKirill A. Shutemov VM_BUG_ON(1); 4019f3f0e1d2SKirill A. Shutemov return false; 4020f3f0e1d2SKirill A. Shutemov } 4021f3f0e1d2SKirill A. Shutemov } 40223b33719cSArnd Bergmann #endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE */ 40235a6e75f8SKirill A. Shutemov 4024853ac43aSMatt Mackall #else /* !CONFIG_SHMEM */ 4025853ac43aSMatt Mackall 4026853ac43aSMatt Mackall /* 4027853ac43aSMatt Mackall * tiny-shmem: simple shmemfs and tmpfs using ramfs code 4028853ac43aSMatt Mackall * 4029853ac43aSMatt Mackall * This is intended for small system where the benefits of the full 4030853ac43aSMatt Mackall * shmem code (swap-backed and resource-limited) are outweighed by 4031853ac43aSMatt Mackall * their complexity. On systems without swap this code should be 4032853ac43aSMatt Mackall * effectively equivalent, but much lighter weight. 4033853ac43aSMatt Mackall */ 4034853ac43aSMatt Mackall 403541ffe5d5SHugh Dickins static struct file_system_type shmem_fs_type = { 4036853ac43aSMatt Mackall .name = "tmpfs", 4037f3235626SDavid Howells .init_fs_context = ramfs_init_fs_context, 4038f3235626SDavid Howells .parameters = &ramfs_fs_parameters, 4039853ac43aSMatt Mackall .kill_sb = kill_litter_super, 40402b8576cbSEric W. Biederman .fs_flags = FS_USERNS_MOUNT, 4041853ac43aSMatt Mackall }; 4042853ac43aSMatt Mackall 404341ffe5d5SHugh Dickins int __init shmem_init(void) 4044853ac43aSMatt Mackall { 404541ffe5d5SHugh Dickins BUG_ON(register_filesystem(&shmem_fs_type) != 0); 4046853ac43aSMatt Mackall 404741ffe5d5SHugh Dickins shm_mnt = kern_mount(&shmem_fs_type); 4048853ac43aSMatt Mackall BUG_ON(IS_ERR(shm_mnt)); 4049853ac43aSMatt Mackall 4050853ac43aSMatt Mackall return 0; 4051853ac43aSMatt Mackall } 4052853ac43aSMatt Mackall 4053b56a2d8aSVineeth Remanan Pillai int shmem_unuse(unsigned int type, bool frontswap, 4054b56a2d8aSVineeth Remanan Pillai unsigned long *fs_pages_to_unuse) 4055853ac43aSMatt Mackall { 4056853ac43aSMatt Mackall return 0; 4057853ac43aSMatt Mackall } 4058853ac43aSMatt Mackall 40593f96b79aSHugh Dickins int shmem_lock(struct file *file, int lock, struct user_struct *user) 40603f96b79aSHugh Dickins { 40613f96b79aSHugh Dickins return 0; 40623f96b79aSHugh Dickins } 40633f96b79aSHugh Dickins 406424513264SHugh Dickins void shmem_unlock_mapping(struct address_space *mapping) 406524513264SHugh Dickins { 406624513264SHugh Dickins } 406724513264SHugh Dickins 4068c01d5b30SHugh Dickins #ifdef CONFIG_MMU 4069c01d5b30SHugh Dickins unsigned long shmem_get_unmapped_area(struct file *file, 4070c01d5b30SHugh Dickins unsigned long addr, unsigned long len, 4071c01d5b30SHugh Dickins unsigned long pgoff, unsigned long flags) 4072c01d5b30SHugh Dickins { 4073c01d5b30SHugh Dickins return current->mm->get_unmapped_area(file, addr, len, pgoff, flags); 4074c01d5b30SHugh Dickins } 4075c01d5b30SHugh Dickins #endif 4076c01d5b30SHugh Dickins 407741ffe5d5SHugh Dickins void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend) 407894c1e62dSHugh Dickins { 407941ffe5d5SHugh Dickins truncate_inode_pages_range(inode->i_mapping, lstart, lend); 408094c1e62dSHugh Dickins } 408194c1e62dSHugh Dickins EXPORT_SYMBOL_GPL(shmem_truncate_range); 408294c1e62dSHugh Dickins 4083853ac43aSMatt Mackall #define shmem_vm_ops generic_file_vm_ops 40840b0a0806SHugh Dickins #define shmem_file_operations ramfs_file_operations 4085454abafeSDmitry Monakhov #define shmem_get_inode(sb, dir, mode, dev, flags) ramfs_get_inode(sb, dir, mode, dev) 40860b0a0806SHugh Dickins #define shmem_acct_size(flags, size) 0 40870b0a0806SHugh Dickins #define shmem_unacct_size(flags, size) do {} while (0) 4088853ac43aSMatt Mackall 4089853ac43aSMatt Mackall #endif /* CONFIG_SHMEM */ 4090853ac43aSMatt Mackall 4091853ac43aSMatt Mackall /* common code */ 40921da177e4SLinus Torvalds 4093703321b6SMatthew Auld static struct file *__shmem_file_setup(struct vfsmount *mnt, const char *name, loff_t size, 4094c7277090SEric Paris unsigned long flags, unsigned int i_flags) 40951da177e4SLinus Torvalds { 40961da177e4SLinus Torvalds struct inode *inode; 409793dec2daSAl Viro struct file *res; 40981da177e4SLinus Torvalds 4099703321b6SMatthew Auld if (IS_ERR(mnt)) 4100703321b6SMatthew Auld return ERR_CAST(mnt); 41011da177e4SLinus Torvalds 4102285b2c4fSHugh Dickins if (size < 0 || size > MAX_LFS_FILESIZE) 41031da177e4SLinus Torvalds return ERR_PTR(-EINVAL); 41041da177e4SLinus Torvalds 41051da177e4SLinus Torvalds if (shmem_acct_size(flags, size)) 41061da177e4SLinus Torvalds return ERR_PTR(-ENOMEM); 41071da177e4SLinus Torvalds 410893dec2daSAl Viro inode = shmem_get_inode(mnt->mnt_sb, NULL, S_IFREG | S_IRWXUGO, 0, 410993dec2daSAl Viro flags); 4110dac2d1f6SAl Viro if (unlikely(!inode)) { 4111dac2d1f6SAl Viro shmem_unacct_size(flags, size); 4112dac2d1f6SAl Viro return ERR_PTR(-ENOSPC); 4113dac2d1f6SAl Viro } 4114c7277090SEric Paris inode->i_flags |= i_flags; 41151da177e4SLinus Torvalds inode->i_size = size; 41166d6b77f1SMiklos Szeredi clear_nlink(inode); /* It is unlinked */ 411726567cdbSAl Viro res = ERR_PTR(ramfs_nommu_expand_for_mapping(inode, size)); 411893dec2daSAl Viro if (!IS_ERR(res)) 411993dec2daSAl Viro res = alloc_file_pseudo(inode, mnt, name, O_RDWR, 41204b42af81SAl Viro &shmem_file_operations); 41216b4d0b27SAl Viro if (IS_ERR(res)) 412293dec2daSAl Viro iput(inode); 41236b4d0b27SAl Viro return res; 41241da177e4SLinus Torvalds } 4125c7277090SEric Paris 4126c7277090SEric Paris /** 4127c7277090SEric Paris * shmem_kernel_file_setup - get an unlinked file living in tmpfs which must be 4128c7277090SEric Paris * kernel internal. There will be NO LSM permission checks against the 4129c7277090SEric Paris * underlying inode. So users of this interface must do LSM checks at a 4130e1832f29SStephen Smalley * higher layer. The users are the big_key and shm implementations. LSM 4131e1832f29SStephen Smalley * checks are provided at the key or shm level rather than the inode. 4132c7277090SEric Paris * @name: name for dentry (to be seen in /proc/<pid>/maps 4133c7277090SEric Paris * @size: size to be set for the file 4134c7277090SEric Paris * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size 4135c7277090SEric Paris */ 4136c7277090SEric Paris struct file *shmem_kernel_file_setup(const char *name, loff_t size, unsigned long flags) 4137c7277090SEric Paris { 4138703321b6SMatthew Auld return __shmem_file_setup(shm_mnt, name, size, flags, S_PRIVATE); 4139c7277090SEric Paris } 4140c7277090SEric Paris 4141c7277090SEric Paris /** 4142c7277090SEric Paris * shmem_file_setup - get an unlinked file living in tmpfs 4143c7277090SEric Paris * @name: name for dentry (to be seen in /proc/<pid>/maps 4144c7277090SEric Paris * @size: size to be set for the file 4145c7277090SEric Paris * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size 4146c7277090SEric Paris */ 4147c7277090SEric Paris struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags) 4148c7277090SEric Paris { 4149703321b6SMatthew Auld return __shmem_file_setup(shm_mnt, name, size, flags, 0); 4150c7277090SEric Paris } 4151395e0ddcSKeith Packard EXPORT_SYMBOL_GPL(shmem_file_setup); 41521da177e4SLinus Torvalds 415346711810SRandy Dunlap /** 4154703321b6SMatthew Auld * shmem_file_setup_with_mnt - get an unlinked file living in tmpfs 4155703321b6SMatthew Auld * @mnt: the tmpfs mount where the file will be created 4156703321b6SMatthew Auld * @name: name for dentry (to be seen in /proc/<pid>/maps 4157703321b6SMatthew Auld * @size: size to be set for the file 4158703321b6SMatthew Auld * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size 4159703321b6SMatthew Auld */ 4160703321b6SMatthew Auld struct file *shmem_file_setup_with_mnt(struct vfsmount *mnt, const char *name, 4161703321b6SMatthew Auld loff_t size, unsigned long flags) 4162703321b6SMatthew Auld { 4163703321b6SMatthew Auld return __shmem_file_setup(mnt, name, size, flags, 0); 4164703321b6SMatthew Auld } 4165703321b6SMatthew Auld EXPORT_SYMBOL_GPL(shmem_file_setup_with_mnt); 4166703321b6SMatthew Auld 4167703321b6SMatthew Auld /** 41681da177e4SLinus Torvalds * shmem_zero_setup - setup a shared anonymous mapping 41691da177e4SLinus Torvalds * @vma: the vma to be mmapped is prepared by do_mmap_pgoff 41701da177e4SLinus Torvalds */ 41711da177e4SLinus Torvalds int shmem_zero_setup(struct vm_area_struct *vma) 41721da177e4SLinus Torvalds { 41731da177e4SLinus Torvalds struct file *file; 41741da177e4SLinus Torvalds loff_t size = vma->vm_end - vma->vm_start; 41751da177e4SLinus Torvalds 417666fc1303SHugh Dickins /* 417766fc1303SHugh Dickins * Cloning a new file under mmap_sem leads to a lock ordering conflict 417866fc1303SHugh Dickins * between XFS directory reading and selinux: since this file is only 417966fc1303SHugh Dickins * accessible to the user through its mapping, use S_PRIVATE flag to 418066fc1303SHugh Dickins * bypass file security, in the same way as shmem_kernel_file_setup(). 418166fc1303SHugh Dickins */ 4182703321b6SMatthew Auld file = shmem_kernel_file_setup("dev/zero", size, vma->vm_flags); 41831da177e4SLinus Torvalds if (IS_ERR(file)) 41841da177e4SLinus Torvalds return PTR_ERR(file); 41851da177e4SLinus Torvalds 41861da177e4SLinus Torvalds if (vma->vm_file) 41871da177e4SLinus Torvalds fput(vma->vm_file); 41881da177e4SLinus Torvalds vma->vm_file = file; 41891da177e4SLinus Torvalds vma->vm_ops = &shmem_vm_ops; 4190f3f0e1d2SKirill A. Shutemov 4191e496cf3dSKirill A. Shutemov if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE) && 4192f3f0e1d2SKirill A. Shutemov ((vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK) < 4193f3f0e1d2SKirill A. Shutemov (vma->vm_end & HPAGE_PMD_MASK)) { 4194f3f0e1d2SKirill A. Shutemov khugepaged_enter(vma, vma->vm_flags); 4195f3f0e1d2SKirill A. Shutemov } 4196f3f0e1d2SKirill A. Shutemov 41971da177e4SLinus Torvalds return 0; 41981da177e4SLinus Torvalds } 4199d9d90e5eSHugh Dickins 4200d9d90e5eSHugh Dickins /** 4201d9d90e5eSHugh Dickins * shmem_read_mapping_page_gfp - read into page cache, using specified page allocation flags. 4202d9d90e5eSHugh Dickins * @mapping: the page's address_space 4203d9d90e5eSHugh Dickins * @index: the page index 4204d9d90e5eSHugh Dickins * @gfp: the page allocator flags to use if allocating 4205d9d90e5eSHugh Dickins * 4206d9d90e5eSHugh Dickins * This behaves as a tmpfs "read_cache_page_gfp(mapping, index, gfp)", 4207d9d90e5eSHugh Dickins * with any new page allocations done using the specified allocation flags. 4208d9d90e5eSHugh Dickins * But read_cache_page_gfp() uses the ->readpage() method: which does not 4209d9d90e5eSHugh Dickins * suit tmpfs, since it may have pages in swapcache, and needs to find those 4210d9d90e5eSHugh Dickins * for itself; although drivers/gpu/drm i915 and ttm rely upon this support. 4211d9d90e5eSHugh Dickins * 421268da9f05SHugh Dickins * i915_gem_object_get_pages_gtt() mixes __GFP_NORETRY | __GFP_NOWARN in 421368da9f05SHugh Dickins * with the mapping_gfp_mask(), to avoid OOMing the machine unnecessarily. 4214d9d90e5eSHugh Dickins */ 4215d9d90e5eSHugh Dickins struct page *shmem_read_mapping_page_gfp(struct address_space *mapping, 4216d9d90e5eSHugh Dickins pgoff_t index, gfp_t gfp) 4217d9d90e5eSHugh Dickins { 421868da9f05SHugh Dickins #ifdef CONFIG_SHMEM 421968da9f05SHugh Dickins struct inode *inode = mapping->host; 42209276aad6SHugh Dickins struct page *page; 422168da9f05SHugh Dickins int error; 422268da9f05SHugh Dickins 422368da9f05SHugh Dickins BUG_ON(mapping->a_ops != &shmem_aops); 42249e18eb29SAndres Lagar-Cavilla error = shmem_getpage_gfp(inode, index, &page, SGP_CACHE, 4225cfda0526SMike Rapoport gfp, NULL, NULL, NULL); 422668da9f05SHugh Dickins if (error) 422768da9f05SHugh Dickins page = ERR_PTR(error); 422868da9f05SHugh Dickins else 422968da9f05SHugh Dickins unlock_page(page); 423068da9f05SHugh Dickins return page; 423168da9f05SHugh Dickins #else 423268da9f05SHugh Dickins /* 423368da9f05SHugh Dickins * The tiny !SHMEM case uses ramfs without swap 423468da9f05SHugh Dickins */ 4235d9d90e5eSHugh Dickins return read_cache_page_gfp(mapping, index, gfp); 423668da9f05SHugh Dickins #endif 4237d9d90e5eSHugh Dickins } 4238d9d90e5eSHugh Dickins EXPORT_SYMBOL_GPL(shmem_read_mapping_page_gfp); 4239