blob: 73b5e655a76ea835639629d8b9faab7f6399a721 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef __SHMEM_FS_H
3#define __SHMEM_FS_H
4
David Herrmann40e041a2014-08-08 14:25:27 -07005#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/swap.h>
7#include <linux/mempolicy.h>
Hugh Dickinsd9d90e52011-06-27 16:18:04 -07008#include <linux/pagemap.h>
Tim Chen7e496292010-08-09 17:19:05 -07009#include <linux/percpu_counter.h>
Aristeu Rozanski38f38652012-08-23 16:53:28 -040010#include <linux/xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12/* inode in-kernel data */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014struct shmem_inode_info {
15 spinlock_t lock;
David Herrmann40e041a2014-08-08 14:25:27 -070016 unsigned int seals; /* shmem seals */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 unsigned long flags;
18 unsigned long alloced; /* data pages alloced to file */
Al Viro3ed47db2016-01-22 18:08:52 -050019 unsigned long swapped; /* subtotal assigned to swap */
Kirill A. Shutemov779750d2016-07-26 15:26:38 -070020 struct list_head shrinklist; /* shrinkable hpage inodes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 struct list_head swaplist; /* chain of maybes on swap */
Kirill A. Shutemov779750d2016-07-26 15:26:38 -070022 struct shared_policy policy; /* NUMA memory alloc policy */
Aristeu Rozanski38f38652012-08-23 16:53:28 -040023 struct simple_xattrs xattrs; /* list of xattrs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 struct inode vfs_inode;
25};
26
27struct shmem_sb_info {
28 unsigned long max_blocks; /* How many blocks are allowed */
Tim Chen7e496292010-08-09 17:19:05 -070029 struct percpu_counter used_blocks; /* How many are allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 unsigned long max_inodes; /* How many inodes are allowed */
31 unsigned long free_inodes; /* How many are left for allocation */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -080032 spinlock_t stat_lock; /* Serialize shmem_sb_info changes */
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -070033 umode_t mode; /* Mount mode for root directory */
34 unsigned char huge; /* Whether to try for hugepages */
Eric W. Biederman8751e032012-02-07 16:46:12 -080035 kuid_t uid; /* Mount uid for root directory */
36 kgid_t gid; /* Mount gid for root directory */
Lee Schermerhorn71fe8042008-04-28 02:13:26 -070037 struct mempolicy *mpol; /* default memory policy for mappings */
Kirill A. Shutemov779750d2016-07-26 15:26:38 -070038 spinlock_t shrinklist_lock; /* Protects shrinklist */
39 struct list_head shrinklist; /* List of shinkable inodes */
40 unsigned long shrinklist_len; /* Length of shrinklist */
Linus Torvalds1da177e2005-04-16 15:20:36 -070041};
42
43static inline struct shmem_inode_info *SHMEM_I(struct inode *inode)
44{
45 return container_of(inode, struct shmem_inode_info, vfs_inode);
46}
47
Hugh Dickins072441e2011-06-27 16:18:02 -070048/*
49 * Functions in mm/shmem.c called directly from elsewhere:
50 */
Hugh Dickins41ffe5d2011-08-03 16:21:21 -070051extern int shmem_init(void);
Kay Sievers2b2af542009-04-30 15:23:42 +020052extern int shmem_fill_super(struct super_block *sb, void *data, int silent);
Hugh Dickins072441e2011-06-27 16:18:02 -070053extern struct file *shmem_file_setup(const char *name,
54 loff_t size, unsigned long flags);
Eric Parisc7277092013-12-02 11:24:19 +000055extern struct file *shmem_kernel_file_setup(const char *name, loff_t size,
56 unsigned long flags);
Matthew Auld703321b2017-10-06 23:18:13 +010057extern struct file *shmem_file_setup_with_mnt(struct vfsmount *mnt,
58 const char *name, loff_t size, unsigned long flags);
Hugh Dickins072441e2011-06-27 16:18:02 -070059extern int shmem_zero_setup(struct vm_area_struct *);
Hugh Dickinsc01d5b32016-07-26 15:26:15 -070060extern unsigned long shmem_get_unmapped_area(struct file *, unsigned long addr,
61 unsigned long len, unsigned long pgoff, unsigned long flags);
Hugh Dickins072441e2011-06-27 16:18:02 -070062extern int shmem_lock(struct file *file, int lock, struct user_struct *user);
Hugh Dickins3a4f8a02017-02-24 14:59:36 -080063#ifdef CONFIG_SHMEM
Johannes Weiner0cd61442014-04-03 14:47:46 -070064extern bool shmem_mapping(struct address_space *mapping);
Hugh Dickins3a4f8a02017-02-24 14:59:36 -080065#else
66static inline bool shmem_mapping(struct address_space *mapping)
67{
68 return false;
69}
70#endif /* CONFIG_SHMEM */
Hugh Dickins24513262012-01-20 14:34:21 -080071extern void shmem_unlock_mapping(struct address_space *mapping);
Hugh Dickinsd9d90e52011-06-27 16:18:04 -070072extern struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
73 pgoff_t index, gfp_t gfp_mask);
Hugh Dickins94c1e622011-06-27 16:18:03 -070074extern void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end);
Hugh Dickins072441e2011-06-27 16:18:02 -070075extern int shmem_unuse(swp_entry_t entry, struct page *page);
Kay Sievers2b2af542009-04-30 15:23:42 +020076
Vlastimil Babka6a15a372016-01-14 15:19:20 -080077extern unsigned long shmem_swap_usage(struct vm_area_struct *vma);
Vlastimil Babka48131e02016-01-14 15:19:23 -080078extern unsigned long shmem_partial_swap_usage(struct address_space *mapping,
79 pgoff_t start, pgoff_t end);
Vlastimil Babka6a15a372016-01-14 15:19:20 -080080
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -070081/* Flag allocation requirements to shmem_getpage */
82enum sgp_type {
83 SGP_READ, /* don't exceed i_size, don't allocate page */
84 SGP_CACHE, /* don't exceed i_size, may allocate page */
85 SGP_NOHUGE, /* like SGP_CACHE, but no huge pages */
86 SGP_HUGE, /* like SGP_CACHE, huge pages preferred */
87 SGP_WRITE, /* may exceed i_size, may allocate !Uptodate page */
88 SGP_FALLOC, /* like SGP_WRITE, but make existing page Uptodate */
89};
90
91extern int shmem_getpage(struct inode *inode, pgoff_t index,
92 struct page **pagep, enum sgp_type sgp);
93
Hugh Dickinsd9d90e52011-06-27 16:18:04 -070094static inline struct page *shmem_read_mapping_page(
95 struct address_space *mapping, pgoff_t index)
96{
97 return shmem_read_mapping_page_gfp(mapping, index,
98 mapping_gfp_mask(mapping));
99}
100
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -0700101static inline bool shmem_file(struct file *file)
102{
103 if (!IS_ENABLED(CONFIG_SHMEM))
104 return false;
105 if (!file || !file->f_mapping)
106 return false;
107 return shmem_mapping(file->f_mapping);
108}
109
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700110extern bool shmem_charge(struct inode *inode, long pages);
111extern void shmem_uncharge(struct inode *inode, long pages);
112
David Herrmann40e041a2014-08-08 14:25:27 -0700113#ifdef CONFIG_TMPFS
114
Marc-André Lureau5aadc432018-01-31 16:19:18 -0800115extern long memfd_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
David Herrmann40e041a2014-08-08 14:25:27 -0700116
117#else
118
Marc-André Lureau5aadc432018-01-31 16:19:18 -0800119static inline long memfd_fcntl(struct file *f, unsigned int c, unsigned long a)
David Herrmann40e041a2014-08-08 14:25:27 -0700120{
121 return -EINVAL;
122}
123
124#endif
125
Kirill A. Shutemove496cf32016-07-26 15:26:35 -0700126#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
127extern bool shmem_huge_enabled(struct vm_area_struct *vma);
128#else
129static inline bool shmem_huge_enabled(struct vm_area_struct *vma)
130{
131 return false;
132}
133#endif
134
Mike Rapoport4c27fe42017-02-22 15:43:25 -0800135#ifdef CONFIG_SHMEM
136extern int shmem_mcopy_atomic_pte(struct mm_struct *dst_mm, pmd_t *dst_pmd,
137 struct vm_area_struct *dst_vma,
138 unsigned long dst_addr,
139 unsigned long src_addr,
140 struct page **pagep);
Mike Rapoport8d103962017-09-06 16:23:02 -0700141extern int shmem_mfill_zeropage_pte(struct mm_struct *dst_mm,
142 pmd_t *dst_pmd,
143 struct vm_area_struct *dst_vma,
144 unsigned long dst_addr);
Mike Rapoport4c27fe42017-02-22 15:43:25 -0800145#else
146#define shmem_mcopy_atomic_pte(dst_mm, dst_pte, dst_vma, dst_addr, \
147 src_addr, pagep) ({ BUG(); 0; })
Mike Rapoport8d103962017-09-06 16:23:02 -0700148#define shmem_mfill_zeropage_pte(dst_mm, dst_pmd, dst_vma, \
149 dst_addr) ({ BUG(); 0; })
Mike Rapoport4c27fe42017-02-22 15:43:25 -0800150#endif
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#endif