Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _LINUX_FS_H |
| 3 | #define _LINUX_FS_H |
| 4 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <linux/linkage.h> |
Ingo Molnar | 5dd43ce | 2017-06-20 12:19:09 +0200 | [diff] [blame] | 6 | #include <linux/wait_bit.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include <linux/kdev_t.h> |
| 8 | #include <linux/dcache.h> |
Al Viro | 3f8206d | 2008-07-26 03:46:43 -0400 | [diff] [blame] | 9 | #include <linux/path.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/stat.h> |
| 11 | #include <linux/cache.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/list.h> |
Dave Chinner | bc3b14c | 2013-08-28 10:17:58 +1000 | [diff] [blame] | 13 | #include <linux/list_lru.h> |
Oleg Nesterov | 4f5e65a | 2013-07-08 14:24:16 -0700 | [diff] [blame] | 14 | #include <linux/llist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/radix-tree.h> |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 16 | #include <linux/xarray.h> |
Michel Lespinasse | 6b2dbba | 2012-10-08 16:31:25 -0700 | [diff] [blame] | 17 | #include <linux/rbtree.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/init.h> |
Al Viro | 914e263 | 2006-10-18 13:55:46 -0400 | [diff] [blame] | 19 | #include <linux/pid.h> |
Paul Gortmaker | 187f188 | 2011-11-23 20:12:59 -0500 | [diff] [blame] | 20 | #include <linux/bug.h> |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 21 | #include <linux/mutex.h> |
Davidlohr Bueso | c8c06ef | 2014-12-12 16:54:24 -0800 | [diff] [blame] | 22 | #include <linux/rwsem.h> |
Dan Williams | baabda2 | 2017-07-10 15:48:25 -0700 | [diff] [blame] | 23 | #include <linux/mm_types.h> |
Satyam Sharma | 3bd858a | 2007-07-17 15:00:08 +0530 | [diff] [blame] | 24 | #include <linux/capability.h> |
Matthew Wilcox | 6188e10 | 2008-04-18 22:21:05 -0400 | [diff] [blame] | 25 | #include <linux/semaphore.h> |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 26 | #include <linux/fcntl.h> |
Mark Fasheh | c4b929b | 2008-10-08 19:44:18 -0400 | [diff] [blame] | 27 | #include <linux/fiemap.h> |
Nick Piggin | ceb5bdc | 2011-01-07 17:50:05 +1100 | [diff] [blame] | 28 | #include <linux/rculist_bl.h> |
Al Viro | 07b8ce1 | 2011-06-20 10:52:57 -0400 | [diff] [blame] | 29 | #include <linux/atomic.h> |
Konstantin Khlebnikov | 83aeead | 2011-12-08 14:33:54 -0800 | [diff] [blame] | 30 | #include <linux/shrinker.h> |
Stephen Rothwell | c1aab02 | 2012-01-24 11:41:32 +1100 | [diff] [blame] | 31 | #include <linux/migrate_mode.h> |
Eric W. Biederman | 9236163 | 2012-02-08 07:07:50 -0800 | [diff] [blame] | 32 | #include <linux/uidgid.h> |
Jan Kara | 5accdf8 | 2012-06-12 16:20:34 +0200 | [diff] [blame] | 33 | #include <linux/lockdep.h> |
Jens Axboe | c2b1ad8 | 2012-09-27 09:35:03 +0200 | [diff] [blame] | 34 | #include <linux/percpu-rwsem.h> |
Oleg Nesterov | 853b39a | 2015-07-22 20:21:13 +0200 | [diff] [blame] | 35 | #include <linux/workqueue.h> |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 36 | #include <linux/delayed_call.h> |
Christoph Hellwig | 8578709 | 2017-05-10 15:06:33 +0200 | [diff] [blame] | 37 | #include <linux/uuid.h> |
Jeff Layton | 5660e13 | 2017-07-06 07:02:25 -0400 | [diff] [blame] | 38 | #include <linux/errseq.h> |
Adam Manzanares | d9a08a9 | 2018-05-22 10:52:19 -0700 | [diff] [blame] | 39 | #include <linux/ioprio.h> |
Phillip Potter | bbe7449e | 2019-01-21 00:54:27 +0000 | [diff] [blame] | 40 | #include <linux/fs_types.h> |
Rasmus Villemoes | f1fffbd | 2019-03-07 16:27:07 -0800 | [diff] [blame] | 41 | #include <linux/build_bug.h> |
| 42 | #include <linux/stddef.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <asm/byteorder.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 45 | #include <uapi/linux/fs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Christoph Hellwig | b83ae6d | 2015-01-14 10:42:37 +0100 | [diff] [blame] | 47 | struct backing_dev_info; |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 48 | struct bdi_writeback; |
Christoph Hellwig | 2f8b544 | 2016-11-01 07:40:13 -0600 | [diff] [blame] | 49 | struct bio; |
Christoph Hellwig | a569425 | 2007-07-17 04:04:28 -0700 | [diff] [blame] | 50 | struct export_operations; |
Christoph Hellwig | a885c8c | 2006-01-08 01:02:50 -0800 | [diff] [blame] | 51 | struct hd_geometry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | struct iovec; |
Christoph Hellwig | 92198f7 | 2005-06-23 22:00:59 -0700 | [diff] [blame] | 53 | struct kiocb; |
Alexey Dobriyan | 57cc721 | 2011-01-10 08:18:25 +0200 | [diff] [blame] | 54 | struct kobject; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | struct pipe_inode_info; |
| 56 | struct poll_table_struct; |
| 57 | struct kstatfs; |
| 58 | struct vm_area_struct; |
| 59 | struct vfsmount; |
David Howells | 745ca24 | 2008-11-14 10:39:22 +1100 | [diff] [blame] | 60 | struct cred; |
Mel Gorman | a509bc1 | 2012-07-31 16:44:57 -0700 | [diff] [blame] | 61 | struct swap_info_struct; |
Cyrill Gorcunov | 55985dd | 2012-12-17 16:04:55 -0800 | [diff] [blame] | 62 | struct seq_file; |
Christoph Hellwig | 7b7a866 | 2013-09-04 15:04:39 +0200 | [diff] [blame] | 63 | struct workqueue_struct; |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 64 | struct iov_iter; |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 65 | struct fscrypt_info; |
| 66 | struct fscrypt_operations; |
Eric Biggers | 5585f2a | 2019-07-22 09:26:21 -0700 | [diff] [blame] | 67 | struct fsverity_info; |
| 68 | struct fsverity_operations; |
Al Viro | f3a09c9 | 2018-12-23 18:55:56 -0500 | [diff] [blame] | 69 | struct fs_context; |
Al Viro | d7167b1 | 2019-09-07 07:23:15 -0400 | [diff] [blame] | 70 | struct fs_parameter_spec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Denis Cheng | 74bf17c | 2007-10-16 23:26:30 -0700 | [diff] [blame] | 72 | extern void __init inode_init(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | extern void __init inode_init_early(void); |
Mel Gorman | 4248b0d | 2015-08-06 15:46:20 -0700 | [diff] [blame] | 74 | extern void __init files_init(void); |
| 75 | extern void __init files_maxfiles_init(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Jan Engelhardt | dded4f4 | 2008-12-01 14:34:50 -0800 | [diff] [blame] | 77 | extern struct files_stat_struct files_stat; |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 78 | extern unsigned long get_max_files(void); |
Alexey Dobriyan | 9b80a18 | 2016-09-02 00:38:52 +0300 | [diff] [blame] | 79 | extern unsigned int sysctl_nr_open; |
Jan Engelhardt | dded4f4 | 2008-12-01 14:34:50 -0800 | [diff] [blame] | 80 | extern struct inodes_stat_t inodes_stat; |
| 81 | extern int leases_enable, lease_break_time; |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 82 | extern int sysctl_protected_symlinks; |
| 83 | extern int sysctl_protected_hardlinks; |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 84 | extern int sysctl_protected_fifos; |
| 85 | extern int sysctl_protected_regular; |
Jan Engelhardt | dded4f4 | 2008-12-01 14:34:50 -0800 | [diff] [blame] | 86 | |
Christoph Hellwig | ddef7ed2 | 2017-07-06 18:58:37 +0200 | [diff] [blame] | 87 | typedef __kernel_rwf_t rwf_t; |
| 88 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | struct buffer_head; |
| 90 | typedef int (get_block_t)(struct inode *inode, sector_t iblock, |
| 91 | struct buffer_head *bh_result, int create); |
Christoph Hellwig | 187372a | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 92 | typedef int (dio_iodone_t)(struct kiocb *iocb, loff_t offset, |
Christoph Hellwig | 7b7a866 | 2013-09-04 15:04:39 +0200 | [diff] [blame] | 93 | ssize_t bytes, void *private); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 95 | #define MAY_EXEC 0x00000001 |
| 96 | #define MAY_WRITE 0x00000002 |
| 97 | #define MAY_READ 0x00000004 |
| 98 | #define MAY_APPEND 0x00000008 |
| 99 | #define MAY_ACCESS 0x00000010 |
| 100 | #define MAY_OPEN 0x00000020 |
| 101 | #define MAY_CHDIR 0x00000040 |
| 102 | /* called from RCU mode, don't block */ |
| 103 | #define MAY_NOT_BLOCK 0x00000080 |
| 104 | |
| 105 | /* |
| 106 | * flags in file.f_mode. Note that FMODE_READ and FMODE_WRITE must correspond |
Li Qiang | 75abe32 | 2018-05-17 19:01:03 -0700 | [diff] [blame] | 107 | * to O_WRONLY and O_RDWR via the strange trick in do_dentry_open() |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 108 | */ |
| 109 | |
| 110 | /* file is open for reading */ |
| 111 | #define FMODE_READ ((__force fmode_t)0x1) |
| 112 | /* file is open for writing */ |
| 113 | #define FMODE_WRITE ((__force fmode_t)0x2) |
| 114 | /* file is seekable */ |
| 115 | #define FMODE_LSEEK ((__force fmode_t)0x4) |
| 116 | /* file can be accessed using pread */ |
| 117 | #define FMODE_PREAD ((__force fmode_t)0x8) |
| 118 | /* file can be accessed using pwrite */ |
| 119 | #define FMODE_PWRITE ((__force fmode_t)0x10) |
| 120 | /* File is opened for execution with sys_execve / sys_uselib */ |
| 121 | #define FMODE_EXEC ((__force fmode_t)0x20) |
| 122 | /* File is opened with O_NDELAY (only set for block devices) */ |
| 123 | #define FMODE_NDELAY ((__force fmode_t)0x40) |
| 124 | /* File is opened with O_EXCL (only set for block devices) */ |
| 125 | #define FMODE_EXCL ((__force fmode_t)0x80) |
| 126 | /* File is opened using open(.., 3, ..) and is writeable only for ioctls |
| 127 | (specialy hack for floppy.c) */ |
| 128 | #define FMODE_WRITE_IOCTL ((__force fmode_t)0x100) |
| 129 | /* 32bit hashes as llseek() offset (for directories) */ |
| 130 | #define FMODE_32BITHASH ((__force fmode_t)0x200) |
| 131 | /* 64bit hashes as llseek() offset (for directories) */ |
| 132 | #define FMODE_64BITHASH ((__force fmode_t)0x400) |
| 133 | |
| 134 | /* |
| 135 | * Don't update ctime and mtime. |
| 136 | * |
| 137 | * Currently a special hack for the XFS open_by_handle ioctl, but we'll |
| 138 | * hopefully graduate it to a proper O_CMTIME flag supported by open(2) soon. |
| 139 | */ |
| 140 | #define FMODE_NOCMTIME ((__force fmode_t)0x800) |
| 141 | |
| 142 | /* Expect random access pattern */ |
| 143 | #define FMODE_RANDOM ((__force fmode_t)0x1000) |
| 144 | |
| 145 | /* File is huge (eg. /dev/kmem): treat loff_t as unsigned */ |
| 146 | #define FMODE_UNSIGNED_OFFSET ((__force fmode_t)0x2000) |
| 147 | |
| 148 | /* File is opened with O_PATH; almost nothing can be done with it */ |
| 149 | #define FMODE_PATH ((__force fmode_t)0x4000) |
| 150 | |
Linus Torvalds | 2be7d34 | 2019-11-26 11:34:06 -0800 | [diff] [blame] | 151 | /* File needs atomic accesses to f_pos */ |
| 152 | #define FMODE_ATOMIC_POS ((__force fmode_t)0x8000) |
Al Viro | 83f936c | 2014-03-14 12:02:47 -0400 | [diff] [blame] | 153 | /* Write access to underlying fs */ |
| 154 | #define FMODE_WRITER ((__force fmode_t)0x10000) |
Al Viro | 7f7f25e | 2014-02-11 17:49:24 -0500 | [diff] [blame] | 155 | /* Has read method(s) */ |
| 156 | #define FMODE_CAN_READ ((__force fmode_t)0x20000) |
| 157 | /* Has write method(s) */ |
| 158 | #define FMODE_CAN_WRITE ((__force fmode_t)0x40000) |
Linus Torvalds | 9c225f2 | 2014-03-03 09:36:58 -0800 | [diff] [blame] | 159 | |
Al Viro | f5d1140 | 2018-07-09 02:35:08 -0400 | [diff] [blame] | 160 | #define FMODE_OPENED ((__force fmode_t)0x80000) |
Al Viro | 73a09dd | 2018-06-08 13:22:02 -0400 | [diff] [blame] | 161 | #define FMODE_CREATED ((__force fmode_t)0x100000) |
Al Viro | f5d1140 | 2018-07-09 02:35:08 -0400 | [diff] [blame] | 162 | |
Kirill Smelkov | 10dce8a | 2019-03-26 22:20:43 +0000 | [diff] [blame] | 163 | /* File is stream-like */ |
| 164 | #define FMODE_STREAM ((__force fmode_t)0x200000) |
| 165 | |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 166 | /* File was opened by fanotify and shouldn't generate fanotify events */ |
David Drysdale | 75069f2 | 2015-01-08 14:32:29 -0800 | [diff] [blame] | 167 | #define FMODE_NONOTIFY ((__force fmode_t)0x4000000) |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 168 | |
Christoph Hellwig | 91f9943 | 2017-08-29 16:13:20 +0200 | [diff] [blame] | 169 | /* File is capable of returning -EAGAIN if I/O will block */ |
Al Viro | a07b200 | 2018-11-05 17:40:30 +0000 | [diff] [blame] | 170 | #define FMODE_NOWAIT ((__force fmode_t)0x8000000) |
| 171 | |
| 172 | /* File represents mount that needs unmounting */ |
| 173 | #define FMODE_NEED_UNMOUNT ((__force fmode_t)0x10000000) |
Goldwyn Rodrigues | b745faf | 2017-06-20 07:05:43 -0500 | [diff] [blame] | 174 | |
Miklos Szeredi | d3b1084 | 2018-07-18 15:44:40 +0200 | [diff] [blame] | 175 | /* File does not contribute to nr_files count */ |
Al Viro | a07b200 | 2018-11-05 17:40:30 +0000 | [diff] [blame] | 176 | #define FMODE_NOACCOUNT ((__force fmode_t)0x20000000) |
Miklos Szeredi | d3b1084 | 2018-07-18 15:44:40 +0200 | [diff] [blame] | 177 | |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 178 | /* |
| 179 | * Flag for rw_copy_check_uvector and compat_rw_copy_check_uvector |
| 180 | * that indicates that they should check the contents of the iovec are |
| 181 | * valid, but not check the memory that the iovec elements |
| 182 | * points too. |
| 183 | */ |
| 184 | #define CHECK_IOVEC_ONLY -1 |
| 185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | /* |
| 187 | * Attribute flags. These should be or-ed together to figure out what |
| 188 | * has been changed! |
| 189 | */ |
Miklos Szeredi | 9767d74 | 2008-07-01 15:01:26 +0200 | [diff] [blame] | 190 | #define ATTR_MODE (1 << 0) |
| 191 | #define ATTR_UID (1 << 1) |
| 192 | #define ATTR_GID (1 << 2) |
| 193 | #define ATTR_SIZE (1 << 3) |
| 194 | #define ATTR_ATIME (1 << 4) |
| 195 | #define ATTR_MTIME (1 << 5) |
| 196 | #define ATTR_CTIME (1 << 6) |
| 197 | #define ATTR_ATIME_SET (1 << 7) |
| 198 | #define ATTR_MTIME_SET (1 << 8) |
| 199 | #define ATTR_FORCE (1 << 9) /* Not a change, but a change it */ |
Miklos Szeredi | 9767d74 | 2008-07-01 15:01:26 +0200 | [diff] [blame] | 200 | #define ATTR_KILL_SUID (1 << 11) |
| 201 | #define ATTR_KILL_SGID (1 << 12) |
| 202 | #define ATTR_FILE (1 << 13) |
| 203 | #define ATTR_KILL_PRIV (1 << 14) |
| 204 | #define ATTR_OPEN (1 << 15) /* Truncating from open(O_TRUNC) */ |
| 205 | #define ATTR_TIMES_SET (1 << 16) |
Miklos Szeredi | f2b20f6 | 2016-09-16 12:44:20 +0200 | [diff] [blame] | 206 | #define ATTR_TOUCH (1 << 17) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
| 208 | /* |
Miklos Szeredi | 787fb6b | 2014-10-24 00:14:36 +0200 | [diff] [blame] | 209 | * Whiteout is represented by a char device. The following constants define the |
| 210 | * mode and device number to use. |
| 211 | */ |
| 212 | #define WHITEOUT_MODE 0 |
| 213 | #define WHITEOUT_DEV 0 |
| 214 | |
| 215 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | * This is the Inode Attributes structure, used for notify_change(). It |
| 217 | * uses the above definitions as flags, to know which values have changed. |
| 218 | * Also, in this manner, a Filesystem can look at only the values it cares |
| 219 | * about. Basically, these are the attributes that the VFS layer can |
| 220 | * request to change from the FS layer. |
| 221 | * |
| 222 | * Derek Atkins <warlord@MIT.EDU> 94-10-20 |
| 223 | */ |
| 224 | struct iattr { |
| 225 | unsigned int ia_valid; |
| 226 | umode_t ia_mode; |
Eric W. Biederman | 9236163 | 2012-02-08 07:07:50 -0800 | [diff] [blame] | 227 | kuid_t ia_uid; |
| 228 | kgid_t ia_gid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | loff_t ia_size; |
Deepa Dinamani | 95582b0 | 2018-05-08 19:36:02 -0700 | [diff] [blame] | 230 | struct timespec64 ia_atime; |
| 231 | struct timespec64 ia_mtime; |
| 232 | struct timespec64 ia_ctime; |
Miklos Szeredi | cc4e69d | 2005-11-07 00:59:49 -0800 | [diff] [blame] | 233 | |
| 234 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 235 | * Not an attribute, but an auxiliary info for filesystems wanting to |
Miklos Szeredi | cc4e69d | 2005-11-07 00:59:49 -0800 | [diff] [blame] | 236 | * implement an ftruncate() like method. NOTE: filesystem should |
| 237 | * check for (ia_valid & ATTR_FILE), and not for (ia_file != NULL). |
| 238 | */ |
| 239 | struct file *ia_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | }; |
| 241 | |
| 242 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | * Includes for diskquotas. |
| 244 | */ |
| 245 | #include <linux/quota.h> |
| 246 | |
Miklos Szeredi | 69c433e | 2014-10-24 00:14:39 +0200 | [diff] [blame] | 247 | /* |
| 248 | * Maximum number of layers of fs stack. Needs to be limited to |
| 249 | * prevent kernel stack overflow |
| 250 | */ |
| 251 | #define FILESYSTEM_MAX_STACK_DEPTH 2 |
| 252 | |
Zach Brown | 994fc28c | 2005-12-15 14:28:17 -0800 | [diff] [blame] | 253 | /** |
| 254 | * enum positive_aop_returns - aop return codes with specific semantics |
| 255 | * |
| 256 | * @AOP_WRITEPAGE_ACTIVATE: Informs the caller that page writeback has |
| 257 | * completed, that the page is still locked, and |
| 258 | * should be considered active. The VM uses this hint |
| 259 | * to return the page to the active list -- it won't |
| 260 | * be a candidate for writeback again in the near |
| 261 | * future. Other callers must be careful to unlock |
| 262 | * the page if they get this return. Returned by |
| 263 | * writepage(); |
| 264 | * |
| 265 | * @AOP_TRUNCATED_PAGE: The AOP method that was handed a locked page has |
| 266 | * unlocked it and the page might have been truncated. |
| 267 | * The caller should back up to acquiring a new page and |
| 268 | * trying again. The aop will be taking reasonable |
| 269 | * precautions not to livelock. If the caller held a page |
| 270 | * reference, it should drop it before retrying. Returned |
Nick Piggin | 5514476 | 2007-10-16 01:25:26 -0700 | [diff] [blame] | 271 | * by readpage(). |
Zach Brown | 994fc28c | 2005-12-15 14:28:17 -0800 | [diff] [blame] | 272 | * |
| 273 | * address_space_operation functions return these large constants to indicate |
| 274 | * special semantics to the caller. These are much larger than the bytes in a |
| 275 | * page to allow for functions that return the number of bytes operated on in a |
| 276 | * given page. |
| 277 | */ |
| 278 | |
| 279 | enum positive_aop_returns { |
| 280 | AOP_WRITEPAGE_ACTIVATE = 0x80000, |
| 281 | AOP_TRUNCATED_PAGE = 0x80001, |
| 282 | }; |
| 283 | |
Tetsuo Handa | c718a97 | 2017-05-08 15:58:59 -0700 | [diff] [blame] | 284 | #define AOP_FLAG_CONT_EXPAND 0x0001 /* called from cont_expand */ |
| 285 | #define AOP_FLAG_NOFS 0x0002 /* used by filesystem to direct |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 286 | * helper code (eg buffer layer) |
| 287 | * to clear GFP_FS from alloc */ |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 288 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | /* |
| 290 | * oh the beauties of C type declarations. |
| 291 | */ |
| 292 | struct page; |
| 293 | struct address_space; |
| 294 | struct writeback_control; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 296 | /* |
| 297 | * Write life time hint values. |
Amir Goldstein | 6944886 | 2018-07-05 09:25:43 +0300 | [diff] [blame] | 298 | * Stored in struct inode as u8. |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 299 | */ |
| 300 | enum rw_hint { |
| 301 | WRITE_LIFE_NOT_SET = 0, |
| 302 | WRITE_LIFE_NONE = RWH_WRITE_LIFE_NONE, |
| 303 | WRITE_LIFE_SHORT = RWH_WRITE_LIFE_SHORT, |
| 304 | WRITE_LIFE_MEDIUM = RWH_WRITE_LIFE_MEDIUM, |
| 305 | WRITE_LIFE_LONG = RWH_WRITE_LIFE_LONG, |
| 306 | WRITE_LIFE_EXTREME = RWH_WRITE_LIFE_EXTREME, |
| 307 | }; |
| 308 | |
Christoph Hellwig | e2e40f2 | 2015-02-22 08:58:50 -0800 | [diff] [blame] | 309 | #define IOCB_EVENTFD (1 << 0) |
Al Viro | 2ba48ce | 2015-04-09 13:52:01 -0400 | [diff] [blame] | 310 | #define IOCB_APPEND (1 << 1) |
| 311 | #define IOCB_DIRECT (1 << 2) |
Christoph Hellwig | 97be7eb | 2016-03-03 16:04:01 +0100 | [diff] [blame] | 312 | #define IOCB_HIPRI (1 << 3) |
Christoph Hellwig | dde0c2e | 2016-04-07 08:52:00 -0700 | [diff] [blame] | 313 | #define IOCB_DSYNC (1 << 4) |
| 314 | #define IOCB_SYNC (1 << 5) |
Jan Kara | 70fe2f4 | 2016-10-30 11:42:04 -0500 | [diff] [blame] | 315 | #define IOCB_WRITE (1 << 6) |
Goldwyn Rodrigues | b745faf | 2017-06-20 07:05:43 -0500 | [diff] [blame] | 316 | #define IOCB_NOWAIT (1 << 7) |
Christoph Hellwig | e2e40f2 | 2015-02-22 08:58:50 -0800 | [diff] [blame] | 317 | |
| 318 | struct kiocb { |
| 319 | struct file *ki_filp; |
Linus Torvalds | 84c4e1f8 | 2019-03-03 14:23:33 -0800 | [diff] [blame] | 320 | |
| 321 | /* The 'ki_filp' pointer is shared in a union for aio */ |
| 322 | randomized_struct_fields_start |
| 323 | |
Christoph Hellwig | e2e40f2 | 2015-02-22 08:58:50 -0800 | [diff] [blame] | 324 | loff_t ki_pos; |
| 325 | void (*ki_complete)(struct kiocb *iocb, long ret, long ret2); |
| 326 | void *private; |
| 327 | int ki_flags; |
Adam Manzanares | fc28724 | 2018-05-22 10:52:18 -0700 | [diff] [blame] | 328 | u16 ki_hint; |
Adam Manzanares | d9a08a9 | 2018-05-22 10:52:19 -0700 | [diff] [blame] | 329 | u16 ki_ioprio; /* See linux/ioprio.h */ |
Christoph Hellwig | fb7e160 | 2018-11-22 16:37:38 +0100 | [diff] [blame] | 330 | unsigned int ki_cookie; /* for ->iopoll */ |
Linus Torvalds | 84c4e1f8 | 2019-03-03 14:23:33 -0800 | [diff] [blame] | 331 | |
| 332 | randomized_struct_fields_end |
| 333 | }; |
Christoph Hellwig | e2e40f2 | 2015-02-22 08:58:50 -0800 | [diff] [blame] | 334 | |
| 335 | static inline bool is_sync_kiocb(struct kiocb *kiocb) |
| 336 | { |
| 337 | return kiocb->ki_complete == NULL; |
| 338 | } |
| 339 | |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 340 | /* |
| 341 | * "descriptor" for what we're up to with a read. |
| 342 | * This allows us to use the same read code yet |
| 343 | * have multiple different users of the data that |
| 344 | * we read from a file. |
| 345 | * |
| 346 | * The simplest case just copies the data to user |
| 347 | * mode. |
| 348 | */ |
| 349 | typedef struct { |
| 350 | size_t written; |
| 351 | size_t count; |
| 352 | union { |
| 353 | char __user *buf; |
| 354 | void *data; |
| 355 | } arg; |
| 356 | int error; |
| 357 | } read_descriptor_t; |
| 358 | |
| 359 | typedef int (*read_actor_t)(read_descriptor_t *, struct page *, |
| 360 | unsigned long, unsigned long); |
Nick Piggin | 2f718ff | 2007-10-16 01:24:59 -0700 | [diff] [blame] | 361 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | struct address_space_operations { |
| 363 | int (*writepage)(struct page *page, struct writeback_control *wbc); |
| 364 | int (*readpage)(struct file *, struct page *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
| 366 | /* Write back some dirty pages from this mapping. */ |
| 367 | int (*writepages)(struct address_space *, struct writeback_control *); |
| 368 | |
Andrew Morton | 4741c9f | 2006-03-24 03:18:11 -0800 | [diff] [blame] | 369 | /* Set a page dirty. Return true if this dirtied it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | int (*set_page_dirty)(struct page *page); |
| 371 | |
Jens Axboe | 74c8164 | 2018-08-17 15:45:36 -0700 | [diff] [blame] | 372 | /* |
| 373 | * Reads in the requested pages. Unlike ->readpage(), this is |
| 374 | * PURELY used for read-ahead!. |
| 375 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | int (*readpages)(struct file *filp, struct address_space *mapping, |
| 377 | struct list_head *pages, unsigned nr_pages); |
| 378 | |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 379 | int (*write_begin)(struct file *, struct address_space *mapping, |
| 380 | loff_t pos, unsigned len, unsigned flags, |
| 381 | struct page **pagep, void **fsdata); |
| 382 | int (*write_end)(struct file *, struct address_space *mapping, |
| 383 | loff_t pos, unsigned len, unsigned copied, |
| 384 | struct page *page, void *fsdata); |
| 385 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | /* Unfortunately this kludge is needed for FIBMAP. Don't use it */ |
| 387 | sector_t (*bmap)(struct address_space *, sector_t); |
Lukas Czerner | d47992f | 2013-05-21 23:17:23 -0400 | [diff] [blame] | 388 | void (*invalidatepage) (struct page *, unsigned int, unsigned int); |
Al Viro | 27496a8 | 2005-10-21 03:20:48 -0400 | [diff] [blame] | 389 | int (*releasepage) (struct page *, gfp_t); |
Linus Torvalds | 6072d13 | 2010-12-01 13:35:19 -0500 | [diff] [blame] | 390 | void (*freepage)(struct page *); |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 391 | ssize_t (*direct_IO)(struct kiocb *, struct iov_iter *iter); |
Mel Gorman | b969c4ab | 2012-01-12 17:19:34 -0800 | [diff] [blame] | 392 | /* |
Tang Chen | ef277c7 | 2013-07-08 16:00:21 -0700 | [diff] [blame] | 393 | * migrate the contents of a page to the specified target. If |
| 394 | * migrate_mode is MIGRATE_ASYNC, it must not block. |
Mel Gorman | b969c4ab | 2012-01-12 17:19:34 -0800 | [diff] [blame] | 395 | */ |
Christoph Lameter | 2d1db3b | 2006-06-23 02:03:33 -0700 | [diff] [blame] | 396 | int (*migratepage) (struct address_space *, |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame] | 397 | struct page *, struct page *, enum migrate_mode); |
Minchan Kim | bda807d | 2016-07-26 15:23:05 -0700 | [diff] [blame] | 398 | bool (*isolate_page)(struct page *, isolate_mode_t); |
| 399 | void (*putback_page)(struct page *); |
Trond Myklebust | e3db769 | 2007-01-10 23:15:39 -0800 | [diff] [blame] | 400 | int (*launder_page) (struct page *); |
Al Viro | c186afb4 | 2014-02-02 21:16:54 -0500 | [diff] [blame] | 401 | int (*is_partially_uptodate) (struct page *, unsigned long, |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 402 | unsigned long); |
Mel Gorman | b459722 | 2013-07-03 15:02:05 -0700 | [diff] [blame] | 403 | void (*is_dirty_writeback) (struct page *, bool *, bool *); |
Andi Kleen | 2571873 | 2009-09-16 11:50:13 +0200 | [diff] [blame] | 404 | int (*error_remove_page)(struct address_space *, struct page *); |
Mel Gorman | 62c230b | 2012-07-31 16:44:55 -0700 | [diff] [blame] | 405 | |
| 406 | /* swapfile support */ |
Mel Gorman | a509bc1 | 2012-07-31 16:44:57 -0700 | [diff] [blame] | 407 | int (*swap_activate)(struct swap_info_struct *sis, struct file *file, |
| 408 | sector_t *span); |
| 409 | void (*swap_deactivate)(struct file *file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | }; |
| 411 | |
Jens Axboe | 7dcda1c | 2011-04-05 23:51:48 +0200 | [diff] [blame] | 412 | extern const struct address_space_operations empty_aops; |
| 413 | |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 414 | /* |
| 415 | * pagecache_write_begin/pagecache_write_end must be used by general code |
| 416 | * to write into the pagecache. |
| 417 | */ |
| 418 | int pagecache_write_begin(struct file *, struct address_space *mapping, |
| 419 | loff_t pos, unsigned len, unsigned flags, |
| 420 | struct page **pagep, void **fsdata); |
| 421 | |
| 422 | int pagecache_write_end(struct file *, struct address_space *mapping, |
| 423 | loff_t pos, unsigned len, unsigned copied, |
| 424 | struct page *page, void *fsdata); |
| 425 | |
Matthew Wilcox | eb797a8 | 2018-03-05 22:46:03 -0500 | [diff] [blame] | 426 | /** |
| 427 | * struct address_space - Contents of a cacheable, mappable object. |
| 428 | * @host: Owner, either the inode or the block_device. |
| 429 | * @i_pages: Cached pages. |
| 430 | * @gfp_mask: Memory allocation flags to use for allocating pages. |
| 431 | * @i_mmap_writable: Number of VM_SHARED mappings. |
Song Liu | 09d91cd | 2019-09-23 15:38:03 -0700 | [diff] [blame] | 432 | * @nr_thps: Number of THPs in the pagecache (non-shmem only). |
Matthew Wilcox | eb797a8 | 2018-03-05 22:46:03 -0500 | [diff] [blame] | 433 | * @i_mmap: Tree of private and shared mappings. |
| 434 | * @i_mmap_rwsem: Protects @i_mmap and @i_mmap_writable. |
| 435 | * @nrpages: Number of page entries, protected by the i_pages lock. |
| 436 | * @nrexceptional: Shadow or DAX entries, protected by the i_pages lock. |
| 437 | * @writeback_index: Writeback starts here. |
| 438 | * @a_ops: Methods. |
| 439 | * @flags: Error bits and flags (AS_*). |
| 440 | * @wb_err: The most recent error which has occurred. |
| 441 | * @private_lock: For use by the owner of the address_space. |
| 442 | * @private_list: For use by the owner of the address_space. |
| 443 | * @private_data: For use by the owner of the address_space. |
| 444 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | struct address_space { |
Matthew Wilcox | eb797a8 | 2018-03-05 22:46:03 -0500 | [diff] [blame] | 446 | struct inode *host; |
| 447 | struct xarray i_pages; |
| 448 | gfp_t gfp_mask; |
| 449 | atomic_t i_mmap_writable; |
Song Liu | 09d91cd | 2019-09-23 15:38:03 -0700 | [diff] [blame] | 450 | #ifdef CONFIG_READ_ONLY_THP_FOR_FS |
| 451 | /* number of thp, only for non-shmem files */ |
| 452 | atomic_t nr_thps; |
| 453 | #endif |
Matthew Wilcox | eb797a8 | 2018-03-05 22:46:03 -0500 | [diff] [blame] | 454 | struct rb_root_cached i_mmap; |
| 455 | struct rw_semaphore i_mmap_rwsem; |
| 456 | unsigned long nrpages; |
Ross Zwisler | f9fe48b | 2016-01-22 15:10:40 -0800 | [diff] [blame] | 457 | unsigned long nrexceptional; |
Matthew Wilcox | eb797a8 | 2018-03-05 22:46:03 -0500 | [diff] [blame] | 458 | pgoff_t writeback_index; |
| 459 | const struct address_space_operations *a_ops; |
| 460 | unsigned long flags; |
Jeff Layton | 5660e13 | 2017-07-06 07:02:25 -0400 | [diff] [blame] | 461 | errseq_t wb_err; |
Matthew Wilcox | eb797a8 | 2018-03-05 22:46:03 -0500 | [diff] [blame] | 462 | spinlock_t private_lock; |
| 463 | struct list_head private_list; |
| 464 | void *private_data; |
Kees Cook | 3859a27 | 2016-10-28 01:22:25 -0700 | [diff] [blame] | 465 | } __attribute__((aligned(sizeof(long)))) __randomize_layout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | /* |
| 467 | * On most architectures that alignment is already the case; but |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 468 | * must be enforced here for CRIS, to let the least significant bit |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | * of struct page's "mapping" pointer be used for PAGE_MAPPING_ANON. |
| 470 | */ |
Andi Kleen | 87192a2 | 2012-01-12 17:20:34 -0800 | [diff] [blame] | 471 | struct request_queue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
| 473 | struct block_device { |
| 474 | dev_t bd_dev; /* not a kdev_t - it's a search key */ |
Richard Kennedy | f3ccfcd | 2011-03-22 16:33:56 -0700 | [diff] [blame] | 475 | int bd_openers; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | struct inode * bd_inode; /* will die */ |
Theodore Ts'o | 87d8fe1 | 2009-01-03 09:47:09 -0500 | [diff] [blame] | 477 | struct super_block * bd_super; |
Arjan van de Ven | c039e31 | 2006-03-23 03:00:28 -0800 | [diff] [blame] | 478 | struct mutex bd_mutex; /* open/close mutex */ |
Tejun Heo | 6b4517a | 2010-04-07 18:53:59 +0900 | [diff] [blame] | 479 | void * bd_claiming; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | void * bd_holder; |
| 481 | int bd_holders; |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 482 | bool bd_write_holder; |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 483 | #ifdef CONFIG_SYSFS |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 484 | struct list_head bd_holder_disks; |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 485 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | struct block_device * bd_contains; |
| 487 | unsigned bd_block_size; |
Christoph Hellwig | c2ee070 | 2017-08-23 19:10:31 +0200 | [diff] [blame] | 488 | u8 bd_partno; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | struct hd_struct * bd_part; |
| 490 | /* number of times partitions within this device have been opened. */ |
| 491 | unsigned bd_part_count; |
| 492 | int bd_invalidated; |
| 493 | struct gendisk * bd_disk; |
Andi Kleen | 87192a2 | 2012-01-12 17:20:34 -0800 | [diff] [blame] | 494 | struct request_queue * bd_queue; |
Jan Kara | b1d2dc56 | 2017-02-02 15:56:52 +0100 | [diff] [blame] | 495 | struct backing_dev_info *bd_bdi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | struct list_head bd_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | /* |
| 498 | * Private data. You must have bd_claim'ed the block_device |
| 499 | * to use this. NOTE: bd_claim allows an owner to claim |
| 500 | * the same device multiple times, the owner must take special |
| 501 | * care to not mess up bd_private for that case. |
| 502 | */ |
| 503 | unsigned long bd_private; |
Takashi Sato | fcccf50 | 2009-01-09 16:40:59 -0800 | [diff] [blame] | 504 | |
| 505 | /* The counter of freeze processes */ |
| 506 | int bd_fsfreeze_count; |
| 507 | /* Mutex for freeze */ |
| 508 | struct mutex bd_fsfreeze_mutex; |
Kees Cook | 3859a27 | 2016-10-28 01:22:25 -0700 | [diff] [blame] | 509 | } __randomize_layout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | |
Matthew Wilcox | ff9c745 | 2017-11-22 11:41:23 -0500 | [diff] [blame] | 511 | /* XArray tags, for tagging dirty and writeback pages in the pagecache. */ |
| 512 | #define PAGECACHE_TAG_DIRTY XA_MARK_0 |
| 513 | #define PAGECACHE_TAG_WRITEBACK XA_MARK_1 |
| 514 | #define PAGECACHE_TAG_TOWRITE XA_MARK_2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
Matthew Wilcox | ff9c745 | 2017-11-22 11:41:23 -0500 | [diff] [blame] | 516 | /* |
| 517 | * Returns true if any of the pages in the mapping are marked with the tag. |
| 518 | */ |
| 519 | static inline bool mapping_tagged(struct address_space *mapping, xa_mark_t tag) |
| 520 | { |
| 521 | return xa_marked(&mapping->i_pages, tag); |
| 522 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
Davidlohr Bueso | 8b28f62 | 2014-12-12 16:54:18 -0800 | [diff] [blame] | 524 | static inline void i_mmap_lock_write(struct address_space *mapping) |
| 525 | { |
Davidlohr Bueso | c8c06ef | 2014-12-12 16:54:24 -0800 | [diff] [blame] | 526 | down_write(&mapping->i_mmap_rwsem); |
Davidlohr Bueso | 8b28f62 | 2014-12-12 16:54:18 -0800 | [diff] [blame] | 527 | } |
| 528 | |
Mike Kravetz | c0d0381 | 2020-04-01 21:11:05 -0700 | [diff] [blame] | 529 | static inline int i_mmap_trylock_write(struct address_space *mapping) |
| 530 | { |
| 531 | return down_write_trylock(&mapping->i_mmap_rwsem); |
| 532 | } |
| 533 | |
Davidlohr Bueso | 8b28f62 | 2014-12-12 16:54:18 -0800 | [diff] [blame] | 534 | static inline void i_mmap_unlock_write(struct address_space *mapping) |
| 535 | { |
Davidlohr Bueso | c8c06ef | 2014-12-12 16:54:24 -0800 | [diff] [blame] | 536 | up_write(&mapping->i_mmap_rwsem); |
Davidlohr Bueso | 8b28f62 | 2014-12-12 16:54:18 -0800 | [diff] [blame] | 537 | } |
| 538 | |
Davidlohr Bueso | 3dec0ba | 2014-12-12 16:54:27 -0800 | [diff] [blame] | 539 | static inline void i_mmap_lock_read(struct address_space *mapping) |
| 540 | { |
| 541 | down_read(&mapping->i_mmap_rwsem); |
| 542 | } |
| 543 | |
| 544 | static inline void i_mmap_unlock_read(struct address_space *mapping) |
| 545 | { |
| 546 | up_read(&mapping->i_mmap_rwsem); |
| 547 | } |
| 548 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | /* |
| 550 | * Might pages of this file be mapped into userspace? |
| 551 | */ |
| 552 | static inline int mapping_mapped(struct address_space *mapping) |
| 553 | { |
Davidlohr Bueso | f808c13 | 2017-09-08 16:15:08 -0700 | [diff] [blame] | 554 | return !RB_EMPTY_ROOT(&mapping->i_mmap.rb_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | /* |
| 558 | * Might pages of this file have been modified in userspace? |
| 559 | * Note that i_mmap_writable counts all VM_SHARED vmas: do_mmap_pgoff |
| 560 | * marks vma as VM_SHARED if it is shared, and the file was opened for |
| 561 | * writing i.e. vma may be mprotected writable even if now readonly. |
David Herrmann | 4bb5f5d | 2014-08-08 14:25:25 -0700 | [diff] [blame] | 562 | * |
| 563 | * If i_mmap_writable is negative, no new writable mappings are allowed. You |
| 564 | * can only deny writable mappings, if none exists right now. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | */ |
| 566 | static inline int mapping_writably_mapped(struct address_space *mapping) |
| 567 | { |
David Herrmann | 4bb5f5d | 2014-08-08 14:25:25 -0700 | [diff] [blame] | 568 | return atomic_read(&mapping->i_mmap_writable) > 0; |
| 569 | } |
| 570 | |
| 571 | static inline int mapping_map_writable(struct address_space *mapping) |
| 572 | { |
| 573 | return atomic_inc_unless_negative(&mapping->i_mmap_writable) ? |
| 574 | 0 : -EPERM; |
| 575 | } |
| 576 | |
| 577 | static inline void mapping_unmap_writable(struct address_space *mapping) |
| 578 | { |
| 579 | atomic_dec(&mapping->i_mmap_writable); |
| 580 | } |
| 581 | |
| 582 | static inline int mapping_deny_writable(struct address_space *mapping) |
| 583 | { |
| 584 | return atomic_dec_unless_positive(&mapping->i_mmap_writable) ? |
| 585 | 0 : -EBUSY; |
| 586 | } |
| 587 | |
| 588 | static inline void mapping_allow_writable(struct address_space *mapping) |
| 589 | { |
| 590 | atomic_inc(&mapping->i_mmap_writable); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | } |
| 592 | |
| 593 | /* |
| 594 | * Use sequence counter to get consistent i_size on 32-bit processors. |
| 595 | */ |
| 596 | #if BITS_PER_LONG==32 && defined(CONFIG_SMP) |
| 597 | #include <linux/seqlock.h> |
| 598 | #define __NEED_I_SIZE_ORDERED |
| 599 | #define i_size_ordered_init(inode) seqcount_init(&inode->i_size_seqcount) |
| 600 | #else |
| 601 | #define i_size_ordered_init(inode) do { } while (0) |
| 602 | #endif |
| 603 | |
Al Viro | f19d4a8 | 2009-06-08 19:50:45 -0400 | [diff] [blame] | 604 | struct posix_acl; |
| 605 | #define ACL_NOT_CACHED ((void *)(-1)) |
Miklos Szeredi | 2a3a2a3 | 2016-09-01 11:11:59 +0200 | [diff] [blame] | 606 | #define ACL_DONT_CACHE ((void *)(-3)) |
Al Viro | f19d4a8 | 2009-06-08 19:50:45 -0400 | [diff] [blame] | 607 | |
Andreas Gruenbacher | b8a7a3a | 2016-03-24 14:38:37 +0100 | [diff] [blame] | 608 | static inline struct posix_acl * |
| 609 | uncached_acl_sentinel(struct task_struct *task) |
| 610 | { |
| 611 | return (void *)task + 1; |
| 612 | } |
| 613 | |
| 614 | static inline bool |
| 615 | is_uncached_acl(struct posix_acl *acl) |
| 616 | { |
| 617 | return (long)acl & 1; |
| 618 | } |
| 619 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 620 | #define IOP_FASTPERM 0x0001 |
| 621 | #define IOP_LOOKUP 0x0002 |
| 622 | #define IOP_NOFOLLOW 0x0004 |
Andreas Gruenbacher | d0a5b99 | 2016-09-29 17:48:39 +0200 | [diff] [blame] | 623 | #define IOP_XATTR 0x0008 |
Miklos Szeredi | 76fca90 | 2016-12-09 16:45:04 +0100 | [diff] [blame] | 624 | #define IOP_DEFAULT_READLINK 0x0010 |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 625 | |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 626 | struct fsnotify_mark_connector; |
| 627 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 628 | /* |
| 629 | * Keep mostly read-only and often accessed (especially for |
| 630 | * the RCU path lookup and 'stat' data) fields at the beginning |
| 631 | * of the 'struct inode' |
| 632 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | struct inode { |
Nick Piggin | 44a7d7a | 2011-01-07 17:49:56 +1100 | [diff] [blame] | 634 | umode_t i_mode; |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 635 | unsigned short i_opflags; |
Eric W. Biederman | 9236163 | 2012-02-08 07:07:50 -0800 | [diff] [blame] | 636 | kuid_t i_uid; |
| 637 | kgid_t i_gid; |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 638 | unsigned int i_flags; |
| 639 | |
| 640 | #ifdef CONFIG_FS_POSIX_ACL |
| 641 | struct posix_acl *i_acl; |
| 642 | struct posix_acl *i_default_acl; |
| 643 | #endif |
| 644 | |
Nick Piggin | 44a7d7a | 2011-01-07 17:49:56 +1100 | [diff] [blame] | 645 | const struct inode_operations *i_op; |
| 646 | struct super_block *i_sb; |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 647 | struct address_space *i_mapping; |
Nick Piggin | 44a7d7a | 2011-01-07 17:49:56 +1100 | [diff] [blame] | 648 | |
Linus Torvalds | 13e12d1 | 2011-06-08 15:18:19 -0700 | [diff] [blame] | 649 | #ifdef CONFIG_SECURITY |
| 650 | void *i_security; |
| 651 | #endif |
Nick Piggin | 44a7d7a | 2011-01-07 17:49:56 +1100 | [diff] [blame] | 652 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 653 | /* Stat data, not accessed from path walking */ |
| 654 | unsigned long i_ino; |
Miklos Szeredi | a78ef70 | 2011-10-28 14:13:30 +0200 | [diff] [blame] | 655 | /* |
| 656 | * Filesystems may only read i_nlink directly. They shall use the |
| 657 | * following functions for modification: |
| 658 | * |
| 659 | * (set|clear|inc|drop)_nlink |
| 660 | * inode_(inc|dec)_link_count |
| 661 | */ |
| 662 | union { |
| 663 | const unsigned int i_nlink; |
| 664 | unsigned int __i_nlink; |
| 665 | }; |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 666 | dev_t i_rdev; |
Linus Torvalds | 2f9d3df | 2012-06-03 14:50:19 -0700 | [diff] [blame] | 667 | loff_t i_size; |
Deepa Dinamani | 95582b0 | 2018-05-08 19:36:02 -0700 | [diff] [blame] | 668 | struct timespec64 i_atime; |
| 669 | struct timespec64 i_mtime; |
| 670 | struct timespec64 i_ctime; |
Theodore Ts'o | 6cdbb0e | 2011-10-29 08:24:18 -0400 | [diff] [blame] | 671 | spinlock_t i_lock; /* i_blocks, i_bytes, maybe i_size */ |
| 672 | unsigned short i_bytes; |
Amir Goldstein | 6944886 | 2018-07-05 09:25:43 +0300 | [diff] [blame] | 673 | u8 i_blkbits; |
| 674 | u8 i_write_hint; |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 675 | blkcnt_t i_blocks; |
| 676 | |
| 677 | #ifdef __NEED_I_SIZE_ORDERED |
| 678 | seqcount_t i_size_seqcount; |
| 679 | #endif |
| 680 | |
| 681 | /* Misc */ |
| 682 | unsigned long i_state; |
Al Viro | 9902af7 | 2016-04-15 15:08:36 -0400 | [diff] [blame] | 683 | struct rw_semaphore i_rwsem; |
Linus Torvalds | 13e12d1 | 2011-06-08 15:18:19 -0700 | [diff] [blame] | 684 | |
Nick Piggin | 44a7d7a | 2011-01-07 17:49:56 +1100 | [diff] [blame] | 685 | unsigned long dirtied_when; /* jiffies of first dirtying */ |
Theodore Ts'o | a2f4870 | 2015-03-17 12:23:19 -0400 | [diff] [blame] | 686 | unsigned long dirtied_time_when; |
Nick Piggin | 44a7d7a | 2011-01-07 17:49:56 +1100 | [diff] [blame] | 687 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | struct hlist_node i_hash; |
Dave Chinner | c7f5408 | 2015-03-04 14:07:22 -0500 | [diff] [blame] | 689 | struct list_head i_io_list; /* backing dev IO list */ |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 690 | #ifdef CONFIG_CGROUP_WRITEBACK |
| 691 | struct bdi_writeback *i_wb; /* the associated cgroup wb */ |
Tejun Heo | 2a81490 | 2015-05-28 14:50:51 -0400 | [diff] [blame] | 692 | |
| 693 | /* foreign inode detection, see wbc_detach_inode() */ |
| 694 | int i_wb_frn_winner; |
| 695 | u16 i_wb_frn_avg_time; |
| 696 | u16 i_wb_frn_history; |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 697 | #endif |
Nick Piggin | 7ccf19a | 2010-10-21 11:49:30 +1100 | [diff] [blame] | 698 | struct list_head i_lru; /* inode LRU list */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | struct list_head i_sb_list; |
Dave Chinner | 6c60d2b | 2016-07-26 15:21:50 -0700 | [diff] [blame] | 700 | struct list_head i_wb_list; /* backing dev writeback list */ |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 701 | union { |
Al Viro | b3d9b7a | 2012-06-09 13:51:19 -0400 | [diff] [blame] | 702 | struct hlist_head i_dentry; |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 703 | struct rcu_head i_rcu; |
| 704 | }; |
Jeff Layton | f02a9ad | 2017-12-21 07:45:44 -0500 | [diff] [blame] | 705 | atomic64_t i_version; |
Peter Zijlstra | 8019ad1 | 2020-03-04 11:28:31 +0100 | [diff] [blame] | 706 | atomic64_t i_sequence; /* see futex */ |
Linus Torvalds | 2f9d3df | 2012-06-03 14:50:19 -0700 | [diff] [blame] | 707 | atomic_t i_count; |
Christoph Hellwig | bd5fe6c | 2011-06-24 14:29:43 -0400 | [diff] [blame] | 708 | atomic_t i_dio_count; |
Theodore Ts'o | 6cdbb0e | 2011-10-29 08:24:18 -0400 | [diff] [blame] | 709 | atomic_t i_writecount; |
Amir Goldstein | 387e374 | 2019-06-07 17:24:38 +0300 | [diff] [blame] | 710 | #if defined(CONFIG_IMA) || defined(CONFIG_FILE_LOCKING) |
Mimi Zohar | d984ea6 | 2013-12-11 15:20:54 -0500 | [diff] [blame] | 711 | atomic_t i_readcount; /* struct files open RO */ |
| 712 | #endif |
Al Viro | fdb0da8 | 2019-04-10 14:43:44 -0400 | [diff] [blame] | 713 | union { |
| 714 | const struct file_operations *i_fop; /* former ->i_op->default_file_ops */ |
| 715 | void (*free_inode)(struct inode *); |
| 716 | }; |
Jeff Layton | 4a075e3 | 2015-01-16 15:05:54 -0500 | [diff] [blame] | 717 | struct file_lock_context *i_flctx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | struct address_space i_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | struct list_head i_devices; |
Theodore Ts'o | 4c15416 | 2006-09-27 01:50:47 -0700 | [diff] [blame] | 720 | union { |
| 721 | struct pipe_inode_info *i_pipe; |
Theodore Ts'o | eaf796e | 2006-09-27 01:50:48 -0700 | [diff] [blame] | 722 | struct block_device *i_bdev; |
Theodore Ts'o | 577c4eb | 2006-09-27 01:50:49 -0700 | [diff] [blame] | 723 | struct cdev *i_cdev; |
Al Viro | 61ba64f | 2015-05-02 09:54:06 -0400 | [diff] [blame] | 724 | char *i_link; |
Al Viro | 84e710d | 2016-04-15 00:58:55 -0400 | [diff] [blame] | 725 | unsigned i_dir_seq; |
Theodore Ts'o | 4c15416 | 2006-09-27 01:50:47 -0700 | [diff] [blame] | 726 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | |
| 728 | __u32 i_generation; |
| 729 | |
Eric Paris | 3be25f4 | 2009-05-21 17:01:26 -0400 | [diff] [blame] | 730 | #ifdef CONFIG_FSNOTIFY |
| 731 | __u32 i_fsnotify_mask; /* all events this inode cares about */ |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 732 | struct fsnotify_mark_connector __rcu *i_fsnotify_marks; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 733 | #endif |
| 734 | |
Chandan Rajendra | 643fa96 | 2018-12-12 15:20:12 +0530 | [diff] [blame] | 735 | #ifdef CONFIG_FS_ENCRYPTION |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 736 | struct fscrypt_info *i_crypt_info; |
| 737 | #endif |
| 738 | |
Eric Biggers | 5585f2a | 2019-07-22 09:26:21 -0700 | [diff] [blame] | 739 | #ifdef CONFIG_FS_VERITY |
| 740 | struct fsverity_info *i_verity_info; |
| 741 | #endif |
| 742 | |
Theodore Ts'o | 8e18e29 | 2006-09-27 01:50:46 -0700 | [diff] [blame] | 743 | void *i_private; /* fs or device private pointer */ |
Kees Cook | 3859a27 | 2016-10-28 01:22:25 -0700 | [diff] [blame] | 744 | } __randomize_layout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | |
Deepa Dinamani | 50e17c00 | 2018-01-21 18:04:25 -0800 | [diff] [blame] | 746 | struct timespec64 timestamp_truncate(struct timespec64 t, struct inode *inode); |
| 747 | |
Fabian Frederick | 9340747 | 2017-02-27 14:28:32 -0800 | [diff] [blame] | 748 | static inline unsigned int i_blocksize(const struct inode *node) |
| 749 | { |
| 750 | return (1 << node->i_blkbits); |
| 751 | } |
| 752 | |
Al Viro | 1d3382cb | 2010-10-23 15:19:20 -0400 | [diff] [blame] | 753 | static inline int inode_unhashed(struct inode *inode) |
| 754 | { |
| 755 | return hlist_unhashed(&inode->i_hash); |
| 756 | } |
| 757 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | /* |
Al Viro | 5bef915 | 2018-06-29 19:36:57 -0400 | [diff] [blame] | 759 | * __mark_inode_dirty expects inodes to be hashed. Since we don't |
| 760 | * want special inodes in the fileset inode space, we make them |
| 761 | * appear hashed, but do not put on any lists. hlist_del() |
| 762 | * will work fine and require no locking. |
| 763 | */ |
| 764 | static inline void inode_fake_hash(struct inode *inode) |
| 765 | { |
| 766 | hlist_add_fake(&inode->i_hash); |
| 767 | } |
| 768 | |
| 769 | /* |
Ingo Molnar | f2eace2 | 2006-07-03 00:25:05 -0700 | [diff] [blame] | 770 | * inode->i_mutex nesting subclasses for the lock validator: |
| 771 | * |
| 772 | * 0: the object of the current VFS operation |
| 773 | * 1: parent |
| 774 | * 2: child/target |
J. Bruce Fields | 40bd22c | 2012-04-18 15:21:34 -0400 | [diff] [blame] | 775 | * 3: xattr |
| 776 | * 4: second non-directory |
Miklos Szeredi | d1b72cc | 2014-10-27 15:42:01 +0100 | [diff] [blame] | 777 | * 5: second parent (when locking independent directories in rename) |
| 778 | * |
| 779 | * I_MUTEX_NONDIR2 is for certain operations (such as rename) which lock two |
J. Bruce Fields | 40bd22c | 2012-04-18 15:21:34 -0400 | [diff] [blame] | 780 | * non-directories at once. |
Ingo Molnar | f2eace2 | 2006-07-03 00:25:05 -0700 | [diff] [blame] | 781 | * |
| 782 | * The locking order between these classes is |
Miklos Szeredi | d1b72cc | 2014-10-27 15:42:01 +0100 | [diff] [blame] | 783 | * parent[2] -> child -> grandchild -> normal -> xattr -> second non-directory |
Ingo Molnar | f2eace2 | 2006-07-03 00:25:05 -0700 | [diff] [blame] | 784 | */ |
| 785 | enum inode_i_mutex_lock_class |
| 786 | { |
| 787 | I_MUTEX_NORMAL, |
| 788 | I_MUTEX_PARENT, |
| 789 | I_MUTEX_CHILD, |
Ingo Molnar | 4df4624 | 2006-08-27 01:23:56 -0700 | [diff] [blame] | 790 | I_MUTEX_XATTR, |
Miklos Szeredi | d1b72cc | 2014-10-27 15:42:01 +0100 | [diff] [blame] | 791 | I_MUTEX_NONDIR2, |
| 792 | I_MUTEX_PARENT2, |
Ingo Molnar | f2eace2 | 2006-07-03 00:25:05 -0700 | [diff] [blame] | 793 | }; |
| 794 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 795 | static inline void inode_lock(struct inode *inode) |
| 796 | { |
Al Viro | 9902af7 | 2016-04-15 15:08:36 -0400 | [diff] [blame] | 797 | down_write(&inode->i_rwsem); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 798 | } |
| 799 | |
| 800 | static inline void inode_unlock(struct inode *inode) |
| 801 | { |
Al Viro | 9902af7 | 2016-04-15 15:08:36 -0400 | [diff] [blame] | 802 | up_write(&inode->i_rwsem); |
| 803 | } |
| 804 | |
| 805 | static inline void inode_lock_shared(struct inode *inode) |
| 806 | { |
| 807 | down_read(&inode->i_rwsem); |
| 808 | } |
| 809 | |
| 810 | static inline void inode_unlock_shared(struct inode *inode) |
| 811 | { |
| 812 | up_read(&inode->i_rwsem); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 813 | } |
| 814 | |
| 815 | static inline int inode_trylock(struct inode *inode) |
| 816 | { |
Al Viro | 9902af7 | 2016-04-15 15:08:36 -0400 | [diff] [blame] | 817 | return down_write_trylock(&inode->i_rwsem); |
| 818 | } |
| 819 | |
| 820 | static inline int inode_trylock_shared(struct inode *inode) |
| 821 | { |
| 822 | return down_read_trylock(&inode->i_rwsem); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 823 | } |
| 824 | |
| 825 | static inline int inode_is_locked(struct inode *inode) |
| 826 | { |
Al Viro | 9902af7 | 2016-04-15 15:08:36 -0400 | [diff] [blame] | 827 | return rwsem_is_locked(&inode->i_rwsem); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 828 | } |
| 829 | |
| 830 | static inline void inode_lock_nested(struct inode *inode, unsigned subclass) |
| 831 | { |
Al Viro | 9902af7 | 2016-04-15 15:08:36 -0400 | [diff] [blame] | 832 | down_write_nested(&inode->i_rwsem, subclass); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 833 | } |
| 834 | |
Darrick J. Wong | 01c2e13 | 2018-01-18 14:07:53 -0800 | [diff] [blame] | 835 | static inline void inode_lock_shared_nested(struct inode *inode, unsigned subclass) |
| 836 | { |
| 837 | down_read_nested(&inode->i_rwsem, subclass); |
| 838 | } |
| 839 | |
J. Bruce Fields | 375e289 | 2012-04-18 15:16:33 -0400 | [diff] [blame] | 840 | void lock_two_nondirectories(struct inode *, struct inode*); |
| 841 | void unlock_two_nondirectories(struct inode *, struct inode*); |
| 842 | |
Ingo Molnar | f2eace2 | 2006-07-03 00:25:05 -0700 | [diff] [blame] | 843 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | * NOTE: in a 32bit arch with a preemptable kernel and |
| 845 | * an UP compile the i_size_read/write must be atomic |
| 846 | * with respect to the local cpu (unlike with preempt disabled), |
| 847 | * but they don't need to be atomic with respect to other cpus like in |
| 848 | * true SMP (so they need either to either locally disable irq around |
| 849 | * the read or for example on x86 they can be still implemented as a |
| 850 | * cmpxchg8b without the need of the lock prefix). For SMP compiles |
| 851 | * and 64bit archs it makes no difference if preempt is enabled or not. |
| 852 | */ |
Jan Engelhardt | 48ed214 | 2006-12-06 20:35:37 -0800 | [diff] [blame] | 853 | static inline loff_t i_size_read(const struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | { |
| 855 | #if BITS_PER_LONG==32 && defined(CONFIG_SMP) |
| 856 | loff_t i_size; |
| 857 | unsigned int seq; |
| 858 | |
| 859 | do { |
| 860 | seq = read_seqcount_begin(&inode->i_size_seqcount); |
| 861 | i_size = inode->i_size; |
| 862 | } while (read_seqcount_retry(&inode->i_size_seqcount, seq)); |
| 863 | return i_size; |
Thomas Gleixner | 2496396 | 2019-10-15 21:18:10 +0200 | [diff] [blame] | 864 | #elif BITS_PER_LONG==32 && defined(CONFIG_PREEMPTION) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | loff_t i_size; |
| 866 | |
| 867 | preempt_disable(); |
| 868 | i_size = inode->i_size; |
| 869 | preempt_enable(); |
| 870 | return i_size; |
| 871 | #else |
| 872 | return inode->i_size; |
| 873 | #endif |
| 874 | } |
| 875 | |
Miklos Szeredi | 7762f5a | 2006-10-17 00:10:07 -0700 | [diff] [blame] | 876 | /* |
| 877 | * NOTE: unlike i_size_read(), i_size_write() does need locking around it |
| 878 | * (normally i_mutex), otherwise on 32bit/SMP an update of i_size_seqcount |
| 879 | * can be lost, resulting in subsequent i_size_read() calls spinning forever. |
| 880 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | static inline void i_size_write(struct inode *inode, loff_t i_size) |
| 882 | { |
| 883 | #if BITS_PER_LONG==32 && defined(CONFIG_SMP) |
Fan Du | 74e3d1e | 2013-04-30 15:27:27 -0700 | [diff] [blame] | 884 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | write_seqcount_begin(&inode->i_size_seqcount); |
| 886 | inode->i_size = i_size; |
| 887 | write_seqcount_end(&inode->i_size_seqcount); |
Fan Du | 74e3d1e | 2013-04-30 15:27:27 -0700 | [diff] [blame] | 888 | preempt_enable(); |
Thomas Gleixner | 2496396 | 2019-10-15 21:18:10 +0200 | [diff] [blame] | 889 | #elif BITS_PER_LONG==32 && defined(CONFIG_PREEMPTION) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | preempt_disable(); |
| 891 | inode->i_size = i_size; |
| 892 | preempt_enable(); |
| 893 | #else |
| 894 | inode->i_size = i_size; |
| 895 | #endif |
| 896 | } |
| 897 | |
Jan Engelhardt | 48ed214 | 2006-12-06 20:35:37 -0800 | [diff] [blame] | 898 | static inline unsigned iminor(const struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | { |
| 900 | return MINOR(inode->i_rdev); |
| 901 | } |
| 902 | |
Jan Engelhardt | 48ed214 | 2006-12-06 20:35:37 -0800 | [diff] [blame] | 903 | static inline unsigned imajor(const struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | { |
| 905 | return MAJOR(inode->i_rdev); |
| 906 | } |
| 907 | |
| 908 | extern struct block_device *I_BDEV(struct inode *inode); |
| 909 | |
| 910 | struct fown_struct { |
| 911 | rwlock_t lock; /* protects pid, uid, euid fields */ |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 912 | struct pid *pid; /* pid or -pgrp where SIGIO should be sent */ |
| 913 | enum pid_type pid_type; /* Kind of process group SIGIO should be sent to */ |
Eric W. Biederman | 9236163 | 2012-02-08 07:07:50 -0800 | [diff] [blame] | 914 | kuid_t uid, euid; /* uid/euid of process setting the owner */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | int signum; /* posix.1b rt signal to be delivered on IO */ |
| 916 | }; |
| 917 | |
| 918 | /* |
| 919 | * Track a single file's readahead state |
| 920 | */ |
| 921 | struct file_ra_state { |
Fengguang Wu | 937085a | 2007-10-16 01:24:31 -0700 | [diff] [blame] | 922 | pgoff_t start; /* where readahead started */ |
| 923 | unsigned int size; /* # of readahead pages */ |
| 924 | unsigned int async_size; /* do asynchronous readahead when |
Fengguang Wu | f9acc8c | 2007-07-19 01:48:08 -0700 | [diff] [blame] | 925 | there are only # of pages ahead */ |
Fengguang Wu | 5ce1110 | 2007-07-19 01:47:59 -0700 | [diff] [blame] | 926 | |
Fengguang Wu | 937085a | 2007-10-16 01:24:31 -0700 | [diff] [blame] | 927 | unsigned int ra_pages; /* Maximum readahead window */ |
Wu Fengguang | 1ebf26a | 2009-06-16 15:31:19 -0700 | [diff] [blame] | 928 | unsigned int mmap_miss; /* Cache miss stat for mmap accesses */ |
Fengguang Wu | f4e6b49 | 2007-10-16 01:24:33 -0700 | [diff] [blame] | 929 | loff_t prev_pos; /* Cache last read() position */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | |
Fengguang Wu | 5ce1110 | 2007-07-19 01:47:59 -0700 | [diff] [blame] | 932 | /* |
Fengguang Wu | 5ce1110 | 2007-07-19 01:47:59 -0700 | [diff] [blame] | 933 | * Check if @index falls in the readahead windows. |
| 934 | */ |
| 935 | static inline int ra_has_index(struct file_ra_state *ra, pgoff_t index) |
| 936 | { |
Fengguang Wu | f9acc8c | 2007-07-19 01:48:08 -0700 | [diff] [blame] | 937 | return (index >= ra->start && |
| 938 | index < ra->start + ra->size); |
Fengguang Wu | 5ce1110 | 2007-07-19 01:47:59 -0700 | [diff] [blame] | 939 | } |
| 940 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | struct file { |
Eric Dumazet | 2f51201 | 2005-10-30 15:02:16 -0800 | [diff] [blame] | 942 | union { |
Oleg Nesterov | 4f5e65a | 2013-07-08 14:24:16 -0700 | [diff] [blame] | 943 | struct llist_node fu_llist; |
Eric Dumazet | 2f51201 | 2005-10-30 15:02:16 -0800 | [diff] [blame] | 944 | struct rcu_head fu_rcuhead; |
| 945 | } f_u; |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 946 | struct path f_path; |
Al Viro | dd37978 | 2013-03-01 19:48:30 -0500 | [diff] [blame] | 947 | struct inode *f_inode; /* cached value */ |
Arjan van de Ven | 99ac48f | 2006-03-28 01:56:41 -0800 | [diff] [blame] | 948 | const struct file_operations *f_op; |
Andi Kleen | ef3d0fd | 2011-09-15 16:06:48 -0700 | [diff] [blame] | 949 | |
| 950 | /* |
Linus Torvalds | 9c225f2 | 2014-03-03 09:36:58 -0800 | [diff] [blame] | 951 | * Protects f_ep_links, f_flags. |
Andi Kleen | ef3d0fd | 2011-09-15 16:06:48 -0700 | [diff] [blame] | 952 | * Must not be taken from IRQ context. |
| 953 | */ |
| 954 | spinlock_t f_lock; |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 955 | enum rw_hint f_write_hint; |
Al Viro | 516e0cc | 2008-07-26 00:39:17 -0400 | [diff] [blame] | 956 | atomic_long_t f_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | unsigned int f_flags; |
Al Viro | aeb5d72 | 2008-09-02 15:28:45 -0400 | [diff] [blame] | 958 | fmode_t f_mode; |
Linus Torvalds | 9c225f2 | 2014-03-03 09:36:58 -0800 | [diff] [blame] | 959 | struct mutex f_pos_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | loff_t f_pos; |
| 961 | struct fown_struct f_owner; |
David Howells | d76b0d9 | 2008-11-14 10:39:25 +1100 | [diff] [blame] | 962 | const struct cred *f_cred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | struct file_ra_state f_ra; |
| 964 | |
Mathieu Desnoyers | 2b47c36 | 2007-10-16 23:27:21 -0700 | [diff] [blame] | 965 | u64 f_version; |
Alexey Dobriyan | 5046206 | 2006-09-29 02:00:01 -0700 | [diff] [blame] | 966 | #ifdef CONFIG_SECURITY |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | void *f_security; |
Alexey Dobriyan | 5046206 | 2006-09-29 02:00:01 -0700 | [diff] [blame] | 968 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | /* needed for tty driver, and maybe others */ |
| 970 | void *private_data; |
| 971 | |
| 972 | #ifdef CONFIG_EPOLL |
| 973 | /* Used by fs/eventpoll.c to link all the hooks to this file */ |
| 974 | struct list_head f_ep_links; |
Jason Baron | 28d82dc | 2012-01-12 17:17:43 -0800 | [diff] [blame] | 975 | struct list_head f_tfile_llink; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | #endif /* #ifdef CONFIG_EPOLL */ |
| 977 | struct address_space *f_mapping; |
Jeff Layton | 5660e13 | 2017-07-06 07:02:25 -0400 | [diff] [blame] | 978 | errseq_t f_wb_err; |
Kees Cook | 3859a27 | 2016-10-28 01:22:25 -0700 | [diff] [blame] | 979 | } __randomize_layout |
| 980 | __attribute__((aligned(4))); /* lest something weird decides that 2 is OK */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | |
Aneesh Kumar K.V | 990d6c2 | 2011-01-29 18:43:26 +0530 | [diff] [blame] | 982 | struct file_handle { |
| 983 | __u32 handle_bytes; |
| 984 | int handle_type; |
| 985 | /* file identifier */ |
Linus Torvalds | 9d82973 | 2020-05-04 09:16:37 -0700 | [diff] [blame] | 986 | unsigned char f_handle[]; |
Aneesh Kumar K.V | 990d6c2 | 2011-01-29 18:43:26 +0530 | [diff] [blame] | 987 | }; |
| 988 | |
Al Viro | cb0942b | 2012-08-27 14:48:26 -0400 | [diff] [blame] | 989 | static inline struct file *get_file(struct file *f) |
| 990 | { |
| 991 | atomic_long_inc(&f->f_count); |
| 992 | return f; |
| 993 | } |
Jens Axboe | 091141a | 2018-11-21 10:32:39 -0700 | [diff] [blame] | 994 | #define get_file_rcu_many(x, cnt) \ |
| 995 | atomic_long_add_unless(&(x)->f_count, (cnt), 0) |
| 996 | #define get_file_rcu(x) get_file_rcu_many((x), 1) |
Al Viro | 516e0cc | 2008-07-26 00:39:17 -0400 | [diff] [blame] | 997 | #define file_count(x) atomic_long_read(&(x)->f_count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | |
| 999 | #define MAX_NON_LFS ((1UL<<31) - 1) |
| 1000 | |
| 1001 | /* Page cache limit. The filesystems should put that into their s_maxbytes |
| 1002 | limits, otherwise bad things can happen in VM. */ |
| 1003 | #if BITS_PER_LONG==32 |
Linus Torvalds | 0cc3b0e | 2017-08-27 12:12:25 -0700 | [diff] [blame] | 1004 | #define MAX_LFS_FILESIZE ((loff_t)ULONG_MAX << PAGE_SHIFT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | #elif BITS_PER_LONG==64 |
Linus Torvalds | 0cc3b0e | 2017-08-27 12:12:25 -0700 | [diff] [blame] | 1006 | #define MAX_LFS_FILESIZE ((loff_t)LLONG_MAX) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | #endif |
| 1008 | |
| 1009 | #define FL_POSIX 1 |
| 1010 | #define FL_FLOCK 2 |
J. Bruce Fields | 617588d | 2011-07-01 15:18:34 -0400 | [diff] [blame] | 1011 | #define FL_DELEG 4 /* NFSv4 delegation */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | #define FL_ACCESS 8 /* not trying to lock, just looking */ |
Trond Myklebust | f475ae9 | 2006-06-29 16:38:32 -0400 | [diff] [blame] | 1013 | #define FL_EXISTS 16 /* when unlocking, test for existence */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | #define FL_LEASE 32 /* lease held on this file */ |
Miklos Szeredi | 75e1fcc | 2006-06-23 02:05:12 -0700 | [diff] [blame] | 1015 | #define FL_CLOSE 64 /* unlock on close */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | #define FL_SLEEP 128 /* A blocking lock */ |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 1017 | #define FL_DOWNGRADE_PENDING 256 /* Lease is being downgraded */ |
| 1018 | #define FL_UNLOCK_PENDING 512 /* Lease is being broken */ |
Jeff Layton | cff2fce | 2014-04-22 08:24:32 -0400 | [diff] [blame] | 1019 | #define FL_OFDLCK 1024 /* lock is "owned" by struct file */ |
Christoph Hellwig | 11afe9f | 2015-01-21 19:17:03 +0100 | [diff] [blame] | 1020 | #define FL_LAYOUT 2048 /* outstanding pNFS layout */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | |
Benjamin Coddington | 50f2112 | 2017-04-11 12:50:09 -0400 | [diff] [blame] | 1022 | #define FL_CLOSE_POSIX (FL_POSIX | FL_CLOSE) |
| 1023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | /* |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1025 | * Special return value from posix_lock_file() and vfs_lock_file() for |
| 1026 | * asynchronous locking. |
| 1027 | */ |
| 1028 | #define FILE_LOCK_DEFERRED 1 |
| 1029 | |
Jeff Layton | 7ca7631 | 2014-09-01 19:04:48 -0400 | [diff] [blame] | 1030 | /* legacy typedef, should eventually be removed */ |
Christoph Hellwig | 17fa388 | 2014-07-13 17:00:37 +0200 | [diff] [blame] | 1031 | typedef void *fl_owner_t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | |
Jeff Layton | a7231a9 | 2015-01-16 15:05:56 -0500 | [diff] [blame] | 1033 | struct file_lock; |
| 1034 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | struct file_lock_operations { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | void (*fl_copy_lock)(struct file_lock *, struct file_lock *); |
| 1037 | void (*fl_release_private)(struct file_lock *); |
| 1038 | }; |
| 1039 | |
| 1040 | struct lock_manager_operations { |
Jeff Layton | cae80b3 | 2015-04-03 09:04:04 -0400 | [diff] [blame] | 1041 | fl_owner_t (*lm_get_owner)(fl_owner_t); |
| 1042 | void (*lm_put_owner)(fl_owner_t); |
J. Bruce Fields | 8fb47a4 | 2011-07-20 20:21:59 -0400 | [diff] [blame] | 1043 | void (*lm_notify)(struct file_lock *); /* unblock callback */ |
Joe Perches | d0449b9 | 2014-08-22 10:18:42 -0400 | [diff] [blame] | 1044 | int (*lm_grant)(struct file_lock *, int); |
Jeff Layton | 4d01b7f | 2014-09-01 15:06:54 -0400 | [diff] [blame] | 1045 | bool (*lm_break)(struct file_lock *); |
Jeff Layton | 7448cc3 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 1046 | int (*lm_change)(struct file_lock *, int, struct list_head *); |
Jeff Layton | 1c7dd2f | 2014-08-22 10:55:47 -0400 | [diff] [blame] | 1047 | void (*lm_setup)(struct file_lock *, void **); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | }; |
| 1049 | |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 1050 | struct lock_manager { |
| 1051 | struct list_head list; |
J. Bruce Fields | c87fb4a | 2015-08-06 12:47:02 -0400 | [diff] [blame] | 1052 | /* |
| 1053 | * NFSv4 and up also want opens blocked during the grace period; |
| 1054 | * NLM doesn't care: |
| 1055 | */ |
| 1056 | bool block_opens; |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 1057 | }; |
| 1058 | |
Stanislav Kinsbursky | 5ccb006 | 2012-07-25 16:57:22 +0400 | [diff] [blame] | 1059 | struct net; |
| 1060 | void locks_start_grace(struct net *, struct lock_manager *); |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 1061 | void locks_end_grace(struct lock_manager *); |
Corentin Labbe | 003278e | 2017-09-26 09:14:07 +0200 | [diff] [blame] | 1062 | bool locks_in_grace(struct net *); |
| 1063 | bool opens_in_grace(struct net *); |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 1064 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | /* that will die - we need it for nfs_lock_info */ |
| 1066 | #include <linux/nfs_fs_i.h> |
| 1067 | |
Jeff Layton | 1cb3601 | 2013-06-21 08:58:12 -0400 | [diff] [blame] | 1068 | /* |
| 1069 | * struct file_lock represents a generic "file lock". It's used to represent |
| 1070 | * POSIX byte range locks, BSD (flock) locks, and leases. It's important to |
| 1071 | * note that the same struct is used to represent both a request for a lock and |
| 1072 | * the lock itself, but the same object is never used for both. |
| 1073 | * |
| 1074 | * FIXME: should we create a separate "struct lock_request" to help distinguish |
| 1075 | * these two uses? |
| 1076 | * |
Jeff Layton | 8116bf4 | 2015-01-21 20:44:01 -0500 | [diff] [blame] | 1077 | * The varous i_flctx lists are ordered by: |
Jeff Layton | 1cb3601 | 2013-06-21 08:58:12 -0400 | [diff] [blame] | 1078 | * |
Jeff Layton | 8116bf4 | 2015-01-21 20:44:01 -0500 | [diff] [blame] | 1079 | * 1) lock owner |
| 1080 | * 2) lock range start |
| 1081 | * 3) lock range end |
Jeff Layton | 1cb3601 | 2013-06-21 08:58:12 -0400 | [diff] [blame] | 1082 | * |
| 1083 | * Obviously, the last two criteria only matter for POSIX locks. |
| 1084 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | struct file_lock { |
NeilBrown | ada5c1d | 2018-11-30 10:04:08 +1100 | [diff] [blame] | 1086 | struct file_lock *fl_blocker; /* The lock, that is blocking us */ |
Jeff Layton | 6dee60f | 2015-01-16 15:05:54 -0500 | [diff] [blame] | 1087 | struct list_head fl_list; /* link into file_lock_context */ |
Jeff Layton | 139ca04 | 2013-06-21 08:58:17 -0400 | [diff] [blame] | 1088 | struct hlist_node fl_link; /* node in global lists */ |
NeilBrown | ada5c1d | 2018-11-30 10:04:08 +1100 | [diff] [blame] | 1089 | struct list_head fl_blocked_requests; /* list of requests with |
| 1090 | * ->fl_blocker pointing here |
| 1091 | */ |
| 1092 | struct list_head fl_blocked_member; /* node in |
| 1093 | * ->fl_blocker->fl_blocked_requests |
| 1094 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | fl_owner_t fl_owner; |
J. Bruce Fields | 710b721 | 2011-07-26 16:28:29 -0400 | [diff] [blame] | 1096 | unsigned int fl_flags; |
Richard Kennedy | afc1246 | 2008-07-11 17:20:49 -0700 | [diff] [blame] | 1097 | unsigned char fl_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | unsigned int fl_pid; |
Jeff Layton | 7012b02 | 2013-06-21 08:58:22 -0400 | [diff] [blame] | 1099 | int fl_link_cpu; /* what cpu's list is this on? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | wait_queue_head_t fl_wait; |
| 1101 | struct file *fl_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | loff_t fl_start; |
| 1103 | loff_t fl_end; |
| 1104 | |
| 1105 | struct fasync_struct * fl_fasync; /* for lease break notifications */ |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 1106 | /* for lease breaks: */ |
| 1107 | unsigned long fl_break_time; |
| 1108 | unsigned long fl_downgrade_time; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | |
Alexey Dobriyan | 6aed628 | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 1110 | const struct file_lock_operations *fl_ops; /* Callbacks for filesystems */ |
Alexey Dobriyan | 7b02196 | 2009-09-21 17:01:12 -0700 | [diff] [blame] | 1111 | const struct lock_manager_operations *fl_lmops; /* Callbacks for lockmanagers */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | union { |
| 1113 | struct nfs_lock_info nfs_fl; |
Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 1114 | struct nfs4_lock_info nfs4_fl; |
David Howells | e8d6c55 | 2007-07-15 23:40:12 -0700 | [diff] [blame] | 1115 | struct { |
| 1116 | struct list_head link; /* link in AFS vnode's pending_locks list */ |
| 1117 | int state; /* state of grant or error if -ve */ |
David Howells | d469660 | 2019-04-25 14:26:50 +0100 | [diff] [blame] | 1118 | unsigned int debug_id; |
David Howells | e8d6c55 | 2007-07-15 23:40:12 -0700 | [diff] [blame] | 1119 | } afs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | } fl_u; |
Kees Cook | 3859a27 | 2016-10-28 01:22:25 -0700 | [diff] [blame] | 1121 | } __randomize_layout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | |
Jeff Layton | 4a075e3 | 2015-01-16 15:05:54 -0500 | [diff] [blame] | 1123 | struct file_lock_context { |
Jeff Layton | 6109c85 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 1124 | spinlock_t flc_lock; |
Jeff Layton | 4a075e3 | 2015-01-16 15:05:54 -0500 | [diff] [blame] | 1125 | struct list_head flc_flock; |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1126 | struct list_head flc_posix; |
Jeff Layton | 8634b51 | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1127 | struct list_head flc_lease; |
Jeff Layton | 4a075e3 | 2015-01-16 15:05:54 -0500 | [diff] [blame] | 1128 | }; |
| 1129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | /* The following constant reflects the upper bound of the file/locking space */ |
| 1131 | #ifndef OFFSET_MAX |
| 1132 | #define INT_LIMIT(x) (~((x)1 << (sizeof(x)*8 - 1))) |
| 1133 | #define OFFSET_MAX INT_LIMIT(loff_t) |
| 1134 | #define OFFT_OFFSET_MAX INT_LIMIT(off_t) |
| 1135 | #endif |
| 1136 | |
Thomas Petazzoni | bfcd17a | 2008-08-06 15:12:22 +0200 | [diff] [blame] | 1137 | extern void send_sigio(struct fown_struct *fown, int fd, int band); |
| 1138 | |
Miklos Szeredi | de2a4a5 | 2018-07-18 15:44:43 +0200 | [diff] [blame] | 1139 | #define locks_inode(f) file_inode(f) |
Miklos Szeredi | c568d68 | 2016-09-16 12:44:20 +0200 | [diff] [blame] | 1140 | |
Thomas Petazzoni | bfcd17a | 2008-08-06 15:12:22 +0200 | [diff] [blame] | 1141 | #ifdef CONFIG_FILE_LOCKING |
Christoph Hellwig | a75d30c | 2017-05-27 06:07:19 -0400 | [diff] [blame] | 1142 | extern int fcntl_getlk(struct file *, unsigned int, struct flock *); |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1143 | extern int fcntl_setlk(unsigned int, struct file *, unsigned int, |
Christoph Hellwig | a75d30c | 2017-05-27 06:07:19 -0400 | [diff] [blame] | 1144 | struct flock *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | |
| 1146 | #if BITS_PER_LONG == 32 |
Christoph Hellwig | a75d30c | 2017-05-27 06:07:19 -0400 | [diff] [blame] | 1147 | extern int fcntl_getlk64(struct file *, unsigned int, struct flock64 *); |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1148 | extern int fcntl_setlk64(unsigned int, struct file *, unsigned int, |
Christoph Hellwig | a75d30c | 2017-05-27 06:07:19 -0400 | [diff] [blame] | 1149 | struct flock64 *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | #endif |
| 1151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | extern int fcntl_setlease(unsigned int fd, struct file *filp, long arg); |
| 1153 | extern int fcntl_getlease(struct file *filp); |
| 1154 | |
| 1155 | /* fs/locks.c */ |
Jeff Layton | f27a0fe | 2016-01-07 15:08:51 -0500 | [diff] [blame] | 1156 | void locks_free_lock_context(struct inode *inode); |
J. Bruce Fields | 05fa313 | 2010-10-30 17:31:15 -0400 | [diff] [blame] | 1157 | void locks_free_lock(struct file_lock *fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | extern void locks_init_lock(struct file_lock *); |
Arnd Bergmann | c5b1f0d | 2010-10-27 15:46:08 +0200 | [diff] [blame] | 1159 | extern struct file_lock * locks_alloc_lock(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | extern void locks_copy_lock(struct file_lock *, struct file_lock *); |
Kinglong Mee | 3fe0fff1 | 2014-08-22 10:18:42 -0400 | [diff] [blame] | 1161 | extern void locks_copy_conflock(struct file_lock *, struct file_lock *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | extern void locks_remove_posix(struct file *, fl_owner_t); |
Jeff Layton | 78ed8a1 | 2014-02-03 12:13:08 -0500 | [diff] [blame] | 1163 | extern void locks_remove_file(struct file *); |
Felix Blyakher | a9e61e2 | 2009-03-31 15:12:56 -0500 | [diff] [blame] | 1164 | extern void locks_release_private(struct file_lock *); |
J. Bruce Fields | 6d34ac1 | 2007-05-11 16:09:32 -0400 | [diff] [blame] | 1165 | extern void posix_test_lock(struct file *, struct file_lock *); |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1166 | extern int posix_lock_file(struct file *, struct file_lock *, struct file_lock *); |
NeilBrown | cb03f94 | 2018-11-30 10:04:08 +1100 | [diff] [blame] | 1167 | extern int locks_delete_block(struct file_lock *); |
J. Bruce Fields | 3ee17ab | 2007-02-21 00:58:50 -0500 | [diff] [blame] | 1168 | extern int vfs_test_lock(struct file *, struct file_lock *); |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1169 | extern int vfs_lock_file(struct file *, unsigned int, struct file_lock *, struct file_lock *); |
Marc Eshel | 9b9d2ab | 2007-01-18 17:52:58 -0500 | [diff] [blame] | 1170 | extern int vfs_cancel_lock(struct file *filp, struct file_lock *fl); |
Benjamin Coddington | e55c34a | 2015-10-22 13:38:13 -0400 | [diff] [blame] | 1171 | extern int locks_lock_inode_wait(struct inode *inode, struct file_lock *fl); |
J. Bruce Fields | df4e8d2 | 2012-03-05 13:18:59 -0500 | [diff] [blame] | 1172 | extern int __break_lease(struct inode *inode, unsigned int flags, unsigned int type); |
Deepa Dinamani | 95582b0 | 2018-05-08 19:36:02 -0700 | [diff] [blame] | 1173 | extern void lease_get_mtime(struct inode *, struct timespec64 *time); |
Jeff Layton | e6f5c78 | 2014-08-22 10:40:25 -0400 | [diff] [blame] | 1174 | extern int generic_setlease(struct file *, long, struct file_lock **, void **priv); |
| 1175 | extern int vfs_setlease(struct file *, long, struct file_lock **, void **); |
Jeff Layton | 7448cc3 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 1176 | extern int lease_modify(struct file_lock *, int, struct list_head *); |
Jeff Layton | 18f6622 | 2019-08-18 14:18:45 -0400 | [diff] [blame] | 1177 | |
| 1178 | struct notifier_block; |
| 1179 | extern int lease_register_notifier(struct notifier_block *); |
| 1180 | extern void lease_unregister_notifier(struct notifier_block *); |
| 1181 | |
Andrey Vagin | 6c8c903 | 2015-04-16 12:49:38 -0700 | [diff] [blame] | 1182 | struct files_struct; |
| 1183 | extern void show_fd_locks(struct seq_file *f, |
| 1184 | struct file *filp, struct files_struct *files); |
Thomas Petazzoni | bfcd17a | 2008-08-06 15:12:22 +0200 | [diff] [blame] | 1185 | #else /* !CONFIG_FILE_LOCKING */ |
Jeff Layton | c1e62b8 | 2014-02-03 12:13:09 -0500 | [diff] [blame] | 1186 | static inline int fcntl_getlk(struct file *file, unsigned int cmd, |
| 1187 | struct flock __user *user) |
Steven Whitehouse | c2aca5e | 2009-01-20 10:29:45 +0000 | [diff] [blame] | 1188 | { |
| 1189 | return -EINVAL; |
| 1190 | } |
| 1191 | |
| 1192 | static inline int fcntl_setlk(unsigned int fd, struct file *file, |
| 1193 | unsigned int cmd, struct flock __user *user) |
| 1194 | { |
| 1195 | return -EACCES; |
| 1196 | } |
| 1197 | |
Thomas Petazzoni | bfcd17a | 2008-08-06 15:12:22 +0200 | [diff] [blame] | 1198 | #if BITS_PER_LONG == 32 |
Jeff Layton | c1e62b8 | 2014-02-03 12:13:09 -0500 | [diff] [blame] | 1199 | static inline int fcntl_getlk64(struct file *file, unsigned int cmd, |
| 1200 | struct flock64 __user *user) |
Steven Whitehouse | c2aca5e | 2009-01-20 10:29:45 +0000 | [diff] [blame] | 1201 | { |
| 1202 | return -EINVAL; |
| 1203 | } |
| 1204 | |
| 1205 | static inline int fcntl_setlk64(unsigned int fd, struct file *file, |
| 1206 | unsigned int cmd, struct flock64 __user *user) |
| 1207 | { |
| 1208 | return -EACCES; |
| 1209 | } |
Thomas Petazzoni | bfcd17a | 2008-08-06 15:12:22 +0200 | [diff] [blame] | 1210 | #endif |
Steven Whitehouse | c2aca5e | 2009-01-20 10:29:45 +0000 | [diff] [blame] | 1211 | static inline int fcntl_setlease(unsigned int fd, struct file *filp, long arg) |
| 1212 | { |
Jeff Layton | 1b2b32d | 2014-09-24 08:38:44 -0400 | [diff] [blame] | 1213 | return -EINVAL; |
Steven Whitehouse | c2aca5e | 2009-01-20 10:29:45 +0000 | [diff] [blame] | 1214 | } |
| 1215 | |
| 1216 | static inline int fcntl_getlease(struct file *filp) |
| 1217 | { |
Jeff Layton | 1b2b32d | 2014-09-24 08:38:44 -0400 | [diff] [blame] | 1218 | return F_UNLCK; |
Steven Whitehouse | c2aca5e | 2009-01-20 10:29:45 +0000 | [diff] [blame] | 1219 | } |
| 1220 | |
Jeff Layton | 4a075e3 | 2015-01-16 15:05:54 -0500 | [diff] [blame] | 1221 | static inline void |
Jeff Layton | f27a0fe | 2016-01-07 15:08:51 -0500 | [diff] [blame] | 1222 | locks_free_lock_context(struct inode *inode) |
Jeff Layton | 4a075e3 | 2015-01-16 15:05:54 -0500 | [diff] [blame] | 1223 | { |
| 1224 | } |
| 1225 | |
Steven Whitehouse | c2aca5e | 2009-01-20 10:29:45 +0000 | [diff] [blame] | 1226 | static inline void locks_init_lock(struct file_lock *fl) |
| 1227 | { |
| 1228 | return; |
| 1229 | } |
| 1230 | |
Kinglong Mee | 3fe0fff1 | 2014-08-22 10:18:42 -0400 | [diff] [blame] | 1231 | static inline void locks_copy_conflock(struct file_lock *new, struct file_lock *fl) |
Steven Whitehouse | c2aca5e | 2009-01-20 10:29:45 +0000 | [diff] [blame] | 1232 | { |
| 1233 | return; |
| 1234 | } |
| 1235 | |
| 1236 | static inline void locks_copy_lock(struct file_lock *new, struct file_lock *fl) |
| 1237 | { |
| 1238 | return; |
| 1239 | } |
| 1240 | |
| 1241 | static inline void locks_remove_posix(struct file *filp, fl_owner_t owner) |
| 1242 | { |
| 1243 | return; |
| 1244 | } |
| 1245 | |
Jeff Layton | 78ed8a1 | 2014-02-03 12:13:08 -0500 | [diff] [blame] | 1246 | static inline void locks_remove_file(struct file *filp) |
Steven Whitehouse | c2aca5e | 2009-01-20 10:29:45 +0000 | [diff] [blame] | 1247 | { |
| 1248 | return; |
| 1249 | } |
| 1250 | |
| 1251 | static inline void posix_test_lock(struct file *filp, struct file_lock *fl) |
| 1252 | { |
| 1253 | return; |
| 1254 | } |
| 1255 | |
| 1256 | static inline int posix_lock_file(struct file *filp, struct file_lock *fl, |
| 1257 | struct file_lock *conflock) |
| 1258 | { |
| 1259 | return -ENOLCK; |
| 1260 | } |
| 1261 | |
NeilBrown | cb03f94 | 2018-11-30 10:04:08 +1100 | [diff] [blame] | 1262 | static inline int locks_delete_block(struct file_lock *waiter) |
Steven Whitehouse | c2aca5e | 2009-01-20 10:29:45 +0000 | [diff] [blame] | 1263 | { |
| 1264 | return -ENOENT; |
| 1265 | } |
| 1266 | |
| 1267 | static inline int vfs_test_lock(struct file *filp, struct file_lock *fl) |
| 1268 | { |
| 1269 | return 0; |
| 1270 | } |
| 1271 | |
| 1272 | static inline int vfs_lock_file(struct file *filp, unsigned int cmd, |
| 1273 | struct file_lock *fl, struct file_lock *conf) |
| 1274 | { |
| 1275 | return -ENOLCK; |
| 1276 | } |
| 1277 | |
| 1278 | static inline int vfs_cancel_lock(struct file *filp, struct file_lock *fl) |
| 1279 | { |
| 1280 | return 0; |
| 1281 | } |
| 1282 | |
Benjamin Coddington | e55c34a | 2015-10-22 13:38:13 -0400 | [diff] [blame] | 1283 | static inline int locks_lock_inode_wait(struct inode *inode, struct file_lock *fl) |
| 1284 | { |
| 1285 | return -ENOLCK; |
| 1286 | } |
| 1287 | |
J. Bruce Fields | df4e8d2 | 2012-03-05 13:18:59 -0500 | [diff] [blame] | 1288 | static inline int __break_lease(struct inode *inode, unsigned int mode, unsigned int type) |
Steven Whitehouse | c2aca5e | 2009-01-20 10:29:45 +0000 | [diff] [blame] | 1289 | { |
| 1290 | return 0; |
| 1291 | } |
| 1292 | |
Deepa Dinamani | 95582b0 | 2018-05-08 19:36:02 -0700 | [diff] [blame] | 1293 | static inline void lease_get_mtime(struct inode *inode, |
| 1294 | struct timespec64 *time) |
Steven Whitehouse | c2aca5e | 2009-01-20 10:29:45 +0000 | [diff] [blame] | 1295 | { |
| 1296 | return; |
| 1297 | } |
| 1298 | |
| 1299 | static inline int generic_setlease(struct file *filp, long arg, |
Jeff Layton | e6f5c78 | 2014-08-22 10:40:25 -0400 | [diff] [blame] | 1300 | struct file_lock **flp, void **priv) |
Steven Whitehouse | c2aca5e | 2009-01-20 10:29:45 +0000 | [diff] [blame] | 1301 | { |
| 1302 | return -EINVAL; |
| 1303 | } |
| 1304 | |
| 1305 | static inline int vfs_setlease(struct file *filp, long arg, |
Jeff Layton | e6f5c78 | 2014-08-22 10:40:25 -0400 | [diff] [blame] | 1306 | struct file_lock **lease, void **priv) |
Steven Whitehouse | c2aca5e | 2009-01-20 10:29:45 +0000 | [diff] [blame] | 1307 | { |
| 1308 | return -EINVAL; |
| 1309 | } |
| 1310 | |
Jeff Layton | 7448cc3 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 1311 | static inline int lease_modify(struct file_lock *fl, int arg, |
Jeff Layton | c45198e | 2014-09-01 07:12:07 -0400 | [diff] [blame] | 1312 | struct list_head *dispose) |
Steven Whitehouse | c2aca5e | 2009-01-20 10:29:45 +0000 | [diff] [blame] | 1313 | { |
| 1314 | return -EINVAL; |
| 1315 | } |
Andrey Vagin | 6c8c903 | 2015-04-16 12:49:38 -0700 | [diff] [blame] | 1316 | |
| 1317 | struct files_struct; |
| 1318 | static inline void show_fd_locks(struct seq_file *f, |
| 1319 | struct file *filp, struct files_struct *files) {} |
Thomas Petazzoni | bfcd17a | 2008-08-06 15:12:22 +0200 | [diff] [blame] | 1320 | #endif /* !CONFIG_FILE_LOCKING */ |
| 1321 | |
Jeff Layton | ee296d7 | 2015-07-11 06:43:03 -0400 | [diff] [blame] | 1322 | static inline struct inode *file_inode(const struct file *f) |
| 1323 | { |
| 1324 | return f->f_inode; |
| 1325 | } |
| 1326 | |
Miklos Szeredi | d101a12 | 2016-03-26 16:14:37 -0400 | [diff] [blame] | 1327 | static inline struct dentry *file_dentry(const struct file *file) |
| 1328 | { |
Miklos Szeredi | fb16043 | 2018-07-18 15:44:44 +0200 | [diff] [blame] | 1329 | return d_real(file->f_path.dentry, file_inode(file)); |
Miklos Szeredi | d101a12 | 2016-03-26 16:14:37 -0400 | [diff] [blame] | 1330 | } |
| 1331 | |
Benjamin Coddington | e55c34a | 2015-10-22 13:38:13 -0400 | [diff] [blame] | 1332 | static inline int locks_lock_file_wait(struct file *filp, struct file_lock *fl) |
| 1333 | { |
Miklos Szeredi | c568d68 | 2016-09-16 12:44:20 +0200 | [diff] [blame] | 1334 | return locks_lock_inode_wait(locks_inode(filp), fl); |
Benjamin Coddington | e55c34a | 2015-10-22 13:38:13 -0400 | [diff] [blame] | 1335 | } |
| 1336 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | struct fasync_struct { |
Kirill Tkhai | 7a107c0 | 2018-04-05 14:58:06 +0300 | [diff] [blame] | 1338 | rwlock_t fa_lock; |
Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 1339 | int magic; |
| 1340 | int fa_fd; |
| 1341 | struct fasync_struct *fa_next; /* singly linked list */ |
| 1342 | struct file *fa_file; |
| 1343 | struct rcu_head fa_rcu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | }; |
| 1345 | |
| 1346 | #define FASYNC_MAGIC 0x4601 |
| 1347 | |
| 1348 | /* SMP safe fasync helpers: */ |
| 1349 | extern int fasync_helper(int, struct file *, int, struct fasync_struct **); |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 1350 | extern struct fasync_struct *fasync_insert_entry(int, struct file *, struct fasync_struct **, struct fasync_struct *); |
| 1351 | extern int fasync_remove_entry(struct file *, struct fasync_struct **); |
| 1352 | extern struct fasync_struct *fasync_alloc(void); |
| 1353 | extern void fasync_free(struct fasync_struct *); |
| 1354 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | /* can be called from interrupts */ |
| 1356 | extern void kill_fasync(struct fasync_struct **, int, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | |
Jeff Layton | e0b93ed | 2014-08-22 11:27:32 -0400 | [diff] [blame] | 1358 | extern void __f_setown(struct file *filp, struct pid *, enum pid_type, int force); |
Jiri Slaby | 393cc3f | 2017-06-13 13:35:50 +0200 | [diff] [blame] | 1359 | extern int f_setown(struct file *filp, unsigned long arg, int force); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | extern void f_delown(struct file *filp); |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 1361 | extern pid_t f_getown(struct file *filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | extern int send_sigurg(struct fown_struct *fown); |
| 1363 | |
| 1364 | /* |
David Howells | e462ec5 | 2017-07-17 08:45:35 +0100 | [diff] [blame] | 1365 | * sb->s_flags. Note that these mirror the equivalent MS_* flags where |
| 1366 | * represented in both. |
| 1367 | */ |
| 1368 | #define SB_RDONLY 1 /* Mount read-only */ |
| 1369 | #define SB_NOSUID 2 /* Ignore suid and sgid bits */ |
| 1370 | #define SB_NODEV 4 /* Disallow access to device special files */ |
| 1371 | #define SB_NOEXEC 8 /* Disallow program execution */ |
| 1372 | #define SB_SYNCHRONOUS 16 /* Writes are synced at once */ |
| 1373 | #define SB_MANDLOCK 64 /* Allow mandatory locks on an FS */ |
| 1374 | #define SB_DIRSYNC 128 /* Directory modifications are synchronous */ |
| 1375 | #define SB_NOATIME 1024 /* Do not update access times. */ |
| 1376 | #define SB_NODIRATIME 2048 /* Do not update directory access times */ |
| 1377 | #define SB_SILENT 32768 |
| 1378 | #define SB_POSIXACL (1<<16) /* VFS does not apply the umask */ |
| 1379 | #define SB_KERNMOUNT (1<<22) /* this is a kern_mount call */ |
| 1380 | #define SB_I_VERSION (1<<23) /* Update inode I_version field */ |
| 1381 | #define SB_LAZYTIME (1<<25) /* Update the on-disk [acm]times lazily */ |
| 1382 | |
| 1383 | /* These sb flags are internal to the kernel */ |
| 1384 | #define SB_SUBMOUNT (1<<26) |
David Howells | 8d0347f | 2018-11-04 09:28:36 -0500 | [diff] [blame] | 1385 | #define SB_FORCE (1<<27) |
David Howells | e462ec5 | 2017-07-17 08:45:35 +0100 | [diff] [blame] | 1386 | #define SB_NOSEC (1<<28) |
| 1387 | #define SB_BORN (1<<29) |
| 1388 | #define SB_ACTIVE (1<<30) |
| 1389 | #define SB_NOUSER (1<<31) |
| 1390 | |
| 1391 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | * Umount options |
| 1393 | */ |
| 1394 | |
| 1395 | #define MNT_FORCE 0x00000001 /* Attempt to forcibily umount */ |
| 1396 | #define MNT_DETACH 0x00000002 /* Just detach from the tree */ |
| 1397 | #define MNT_EXPIRE 0x00000004 /* Mark for expiry */ |
Miklos Szeredi | db1f05b | 2010-02-10 12:15:53 +0100 | [diff] [blame] | 1398 | #define UMOUNT_NOFOLLOW 0x00000008 /* Don't follow symlink on umount */ |
| 1399 | #define UMOUNT_UNUSED 0x80000000 /* Flag guaranteed to be unused */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | |
Tejun Heo | 46b15ca | 2015-06-16 18:48:31 -0400 | [diff] [blame] | 1401 | /* sb->s_iflags */ |
| 1402 | #define SB_I_CGROUPWB 0x00000001 /* cgroup-aware writeback enabled */ |
Eric W. Biederman | 90f8572 | 2015-06-29 14:42:03 -0500 | [diff] [blame] | 1403 | #define SB_I_NOEXEC 0x00000002 /* Ignore executables on this fs */ |
Eric W. Biederman | a2982cc | 2016-06-09 15:34:02 -0500 | [diff] [blame] | 1404 | #define SB_I_NODEV 0x00000004 /* Ignore devices on this fs */ |
Eric W. Biederman | 95dd775 | 2018-03-14 18:20:29 -0500 | [diff] [blame] | 1405 | #define SB_I_MULTIROOT 0x00000008 /* Multiple roots to the dentry tree */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | |
Eric W. Biederman | 8654df4 | 2016-06-09 16:06:06 -0500 | [diff] [blame] | 1407 | /* sb->s_iflags to limit user namespace mounts */ |
| 1408 | #define SB_I_USERNS_VISIBLE 0x00000010 /* fstype already mounted */ |
Mimi Zohar | 57b56ac | 2018-02-21 11:33:37 -0500 | [diff] [blame] | 1409 | #define SB_I_IMA_UNVERIFIABLE_SIGNATURE 0x00000020 |
| 1410 | #define SB_I_UNTRUSTED_MOUNTER 0x00000040 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1411 | |
Jan Kara | 5accdf8 | 2012-06-12 16:20:34 +0200 | [diff] [blame] | 1412 | /* Possible states of 'frozen' field */ |
| 1413 | enum { |
| 1414 | SB_UNFROZEN = 0, /* FS is unfrozen */ |
| 1415 | SB_FREEZE_WRITE = 1, /* Writes, dir ops, ioctls frozen */ |
Jan Kara | 5accdf8 | 2012-06-12 16:20:34 +0200 | [diff] [blame] | 1416 | SB_FREEZE_PAGEFAULT = 2, /* Page faults stopped as well */ |
| 1417 | SB_FREEZE_FS = 3, /* For internal FS use (e.g. to stop |
| 1418 | * internal threads if needed) */ |
| 1419 | SB_FREEZE_COMPLETE = 4, /* ->freeze_fs finished successfully */ |
| 1420 | }; |
| 1421 | |
| 1422 | #define SB_FREEZE_LEVELS (SB_FREEZE_COMPLETE - 1) |
| 1423 | |
| 1424 | struct sb_writers { |
Oleg Nesterov | 8129ed2 | 2015-08-11 17:05:04 +0200 | [diff] [blame] | 1425 | int frozen; /* Is sb frozen? */ |
| 1426 | wait_queue_head_t wait_unfrozen; /* for get_super_thawed() */ |
| 1427 | struct percpu_rw_semaphore rw_sem[SB_FREEZE_LEVELS]; |
Jan Kara | 5accdf8 | 2012-06-12 16:20:34 +0200 | [diff] [blame] | 1428 | }; |
| 1429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | struct super_block { |
| 1431 | struct list_head s_list; /* Keep this first */ |
| 1432 | dev_t s_dev; /* search index; _not_ kdev_t */ |
Richard Kennedy | 270ba5f | 2010-01-26 14:12:43 +0000 | [diff] [blame] | 1433 | unsigned char s_blocksize_bits; |
| 1434 | unsigned long s_blocksize; |
Jeff Layton | 42cb56a | 2009-09-18 13:05:53 -0700 | [diff] [blame] | 1435 | loff_t s_maxbytes; /* Max file size */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | struct file_system_type *s_type; |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 1437 | const struct super_operations *s_op; |
Alexey Dobriyan | 61e225d | 2009-09-21 17:01:08 -0700 | [diff] [blame] | 1438 | const struct dquot_operations *dq_op; |
Alexey Dobriyan | 0d54b21 | 2009-09-21 17:01:09 -0700 | [diff] [blame] | 1439 | const struct quotactl_ops *s_qcop; |
Christoph Hellwig | 3965516 | 2007-10-21 16:42:17 -0700 | [diff] [blame] | 1440 | const struct export_operations *s_export_op; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | unsigned long s_flags; |
Tejun Heo | 46b15ca | 2015-06-16 18:48:31 -0400 | [diff] [blame] | 1442 | unsigned long s_iflags; /* internal SB_I_* flags */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | unsigned long s_magic; |
| 1444 | struct dentry *s_root; |
| 1445 | struct rw_semaphore s_umount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | int s_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1447 | atomic_t s_active; |
Alexey Dobriyan | 5046206 | 2006-09-29 02:00:01 -0700 | [diff] [blame] | 1448 | #ifdef CONFIG_SECURITY |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1449 | void *s_security; |
Alexey Dobriyan | 5046206 | 2006-09-29 02:00:01 -0700 | [diff] [blame] | 1450 | #endif |
Stephen Hemminger | bb43545 | 2010-05-13 17:53:14 -0700 | [diff] [blame] | 1451 | const struct xattr_handler **s_xattr; |
Chandan Rajendra | 643fa96 | 2018-12-12 15:20:12 +0530 | [diff] [blame] | 1452 | #ifdef CONFIG_FS_ENCRYPTION |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 1453 | const struct fscrypt_operations *s_cop; |
Eric Biggers | 22d94f4 | 2019-08-04 19:35:46 -0700 | [diff] [blame] | 1454 | struct key *s_master_keys; /* master crypto keys in use */ |
Eric Biggers | bbbc3fb | 2018-04-30 15:51:35 -0700 | [diff] [blame] | 1455 | #endif |
Eric Biggers | 5585f2a | 2019-07-22 09:26:21 -0700 | [diff] [blame] | 1456 | #ifdef CONFIG_FS_VERITY |
| 1457 | const struct fsverity_operations *s_vop; |
| 1458 | #endif |
NeilBrown | f1ee616 | 2017-12-21 09:45:40 +1100 | [diff] [blame] | 1459 | struct hlist_bl_head s_roots; /* alternate root dentries for NFS */ |
Miklos Szeredi | 39f7c4d | 2011-11-21 12:11:30 +0100 | [diff] [blame] | 1460 | struct list_head s_mounts; /* list of mounts; _not_ for fs use */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | struct block_device *s_bdev; |
Jens Axboe | 32a88aa | 2009-09-16 15:02:33 +0200 | [diff] [blame] | 1462 | struct backing_dev_info *s_bdi; |
David Howells | acaebfd | 2007-05-10 22:51:50 -0700 | [diff] [blame] | 1463 | struct mtd_info *s_mtd; |
Al Viro | a516616 | 2011-12-12 22:53:00 -0500 | [diff] [blame] | 1464 | struct hlist_node s_instances; |
Jan Kara | 2c5f648 | 2014-09-30 10:43:09 +0200 | [diff] [blame] | 1465 | unsigned int s_quota_types; /* Bitmask of supported quota types */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | struct quota_info s_dquot; /* Diskquota specific options */ |
| 1467 | |
Jan Kara | 5accdf8 | 2012-06-12 16:20:34 +0200 | [diff] [blame] | 1468 | struct sb_writers s_writers; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | |
Amir Goldstein | 99c228a | 2018-10-18 14:22:55 +0300 | [diff] [blame] | 1470 | /* |
| 1471 | * Keep s_fs_info, s_time_gran, s_fsnotify_mask, and |
| 1472 | * s_fsnotify_marks together for cache efficiency. They are frequently |
| 1473 | * accessed and rarely modified. |
| 1474 | */ |
| 1475 | void *s_fs_info; /* Filesystem private info */ |
| 1476 | |
| 1477 | /* Granularity of c/m/atime in ns (cannot be worse than a second) */ |
| 1478 | u32 s_time_gran; |
Deepa Dinamani | 188d20bc | 2018-01-21 18:04:23 -0800 | [diff] [blame] | 1479 | /* Time limits for c/m/atime in seconds */ |
| 1480 | time64_t s_time_min; |
| 1481 | time64_t s_time_max; |
Amir Goldstein | 99c228a | 2018-10-18 14:22:55 +0300 | [diff] [blame] | 1482 | #ifdef CONFIG_FSNOTIFY |
| 1483 | __u32 s_fsnotify_mask; |
| 1484 | struct fsnotify_mark_connector __rcu *s_fsnotify_marks; |
| 1485 | #endif |
| 1486 | |
Christoph Hellwig | 8578709 | 2017-05-10 15:06:33 +0200 | [diff] [blame] | 1487 | char s_id[32]; /* Informational name */ |
| 1488 | uuid_t s_uuid; /* UUID */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 1490 | unsigned int s_max_links; |
Al Viro | 30c40d2 | 2008-02-22 19:50:45 -0500 | [diff] [blame] | 1491 | fmode_t s_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1492 | |
| 1493 | /* |
| 1494 | * The next field is for VFS *only*. No filesystems have any business |
| 1495 | * even looking at it. You had been warned. |
| 1496 | */ |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 1497 | struct mutex s_vfs_rename_mutex; /* Kludge */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | |
Miklos Szeredi | 79c0b2d | 2007-05-08 00:25:43 -0700 | [diff] [blame] | 1499 | /* |
| 1500 | * Filesystem subtype. If non-empty the filesystem type field |
| 1501 | * in /proc/mounts will be "type.subtype" |
| 1502 | */ |
Al Viro | a0c9a8b | 2018-11-04 07:18:51 -0500 | [diff] [blame] | 1503 | const char *s_subtype; |
Miklos Szeredi | b3b304a | 2008-02-08 04:21:35 -0800 | [diff] [blame] | 1504 | |
Al Viro | c8aebb0 | 2010-12-18 10:22:30 -0500 | [diff] [blame] | 1505 | const struct dentry_operations *s_d_op; /* default d_op for dentries */ |
Dan Magenheimer | 9fdfdcf | 2011-05-26 10:01:19 -0600 | [diff] [blame] | 1506 | |
| 1507 | /* |
| 1508 | * Saved pool identifier for cleancache (-1 means none) |
| 1509 | */ |
| 1510 | int cleancache_poolid; |
Dave Chinner | b0d40c9 | 2011-07-08 14:14:42 +1000 | [diff] [blame] | 1511 | |
| 1512 | struct shrinker s_shrink; /* per-sb shrinker handle */ |
Miklos Szeredi | 4ed5e82f | 2011-11-21 12:11:31 +0100 | [diff] [blame] | 1513 | |
Miklos Szeredi | 7ada4db | 2011-11-21 12:11:32 +0100 | [diff] [blame] | 1514 | /* Number of inodes with nlink == 0 but still referenced */ |
| 1515 | atomic_long_t s_remove_count; |
| 1516 | |
Jan Kara | 721fb6f | 2018-10-17 13:07:05 +0200 | [diff] [blame] | 1517 | /* Pending fsnotify inode refs */ |
| 1518 | atomic_long_t s_fsnotify_inode_refs; |
| 1519 | |
Miklos Szeredi | 4ed5e82f | 2011-11-21 12:11:31 +0100 | [diff] [blame] | 1520 | /* Being remounted read-only */ |
| 1521 | int s_readonly_remount; |
Christoph Hellwig | 7b7a866 | 2013-09-04 15:04:39 +0200 | [diff] [blame] | 1522 | |
| 1523 | /* AIO completions deferred from interrupt context */ |
| 1524 | struct workqueue_struct *s_dio_done_wq; |
Al Viro | 215752f | 2014-08-07 06:23:41 -0400 | [diff] [blame] | 1525 | struct hlist_head s_pins; |
Dave Chinner | f604156 | 2013-08-28 10:18:00 +1000 | [diff] [blame] | 1526 | |
| 1527 | /* |
Eric W. Biederman | 6e4eab5 | 2016-05-24 09:29:01 -0500 | [diff] [blame] | 1528 | * Owning user namespace and default context in which to |
| 1529 | * interpret filesystem uids, gids, quotas, device nodes, |
| 1530 | * xattrs and security labels. |
| 1531 | */ |
| 1532 | struct user_namespace *s_user_ns; |
| 1533 | |
| 1534 | /* |
Waiman Long | 7d10f70 | 2019-01-30 13:52:37 -0500 | [diff] [blame] | 1535 | * The list_lru structure is essentially just a pointer to a table |
| 1536 | * of per-node lru lists, each of which has its own spinlock. |
| 1537 | * There is no need to put them into separate cachelines. |
Dave Chinner | f604156 | 2013-08-28 10:18:00 +1000 | [diff] [blame] | 1538 | */ |
Waiman Long | 7d10f70 | 2019-01-30 13:52:37 -0500 | [diff] [blame] | 1539 | struct list_lru s_dentry_lru; |
| 1540 | struct list_lru s_inode_lru; |
Al Viro | e2fec7c | 2013-10-04 17:06:56 -0400 | [diff] [blame] | 1541 | struct rcu_head rcu; |
Oleg Nesterov | 853b39a | 2015-07-22 20:21:13 +0200 | [diff] [blame] | 1542 | struct work_struct destroy_work; |
Miklos Szeredi | 69c433e | 2014-10-24 00:14:39 +0200 | [diff] [blame] | 1543 | |
Dave Chinner | e97fedb | 2015-03-04 13:40:00 -0500 | [diff] [blame] | 1544 | struct mutex s_sync_lock; /* sync serialisation lock */ |
Miklos Szeredi | 69c433e | 2014-10-24 00:14:39 +0200 | [diff] [blame] | 1545 | |
| 1546 | /* |
| 1547 | * Indicates how deep in a filesystem stack this SB is |
| 1548 | */ |
| 1549 | int s_stack_depth; |
Dave Chinner | 74278da | 2015-03-04 12:37:22 -0500 | [diff] [blame] | 1550 | |
| 1551 | /* s_inode_list_lock protects s_inodes */ |
| 1552 | spinlock_t s_inode_list_lock ____cacheline_aligned_in_smp; |
| 1553 | struct list_head s_inodes; /* all inodes */ |
Dave Chinner | 6c60d2b | 2016-07-26 15:21:50 -0700 | [diff] [blame] | 1554 | |
| 1555 | spinlock_t s_inode_wblist_lock; |
| 1556 | struct list_head s_inodes_wb; /* writeback inodes */ |
Kees Cook | 3859a27 | 2016-10-28 01:22:25 -0700 | [diff] [blame] | 1557 | } __randomize_layout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1558 | |
Seth Forshee | 8175435 | 2014-12-11 10:15:45 -0600 | [diff] [blame] | 1559 | /* Helper functions so that in most cases filesystems will |
| 1560 | * not need to deal directly with kuid_t and kgid_t and can |
| 1561 | * instead deal with the raw numeric values that are stored |
| 1562 | * in the filesystem. |
| 1563 | */ |
| 1564 | static inline uid_t i_uid_read(const struct inode *inode) |
| 1565 | { |
| 1566 | return from_kuid(inode->i_sb->s_user_ns, inode->i_uid); |
| 1567 | } |
| 1568 | |
| 1569 | static inline gid_t i_gid_read(const struct inode *inode) |
| 1570 | { |
| 1571 | return from_kgid(inode->i_sb->s_user_ns, inode->i_gid); |
| 1572 | } |
| 1573 | |
| 1574 | static inline void i_uid_write(struct inode *inode, uid_t uid) |
| 1575 | { |
| 1576 | inode->i_uid = make_kuid(inode->i_sb->s_user_ns, uid); |
| 1577 | } |
| 1578 | |
| 1579 | static inline void i_gid_write(struct inode *inode, gid_t gid) |
| 1580 | { |
| 1581 | inode->i_gid = make_kgid(inode->i_sb->s_user_ns, gid); |
| 1582 | } |
| 1583 | |
Deepa Dinamani | 95582b0 | 2018-05-08 19:36:02 -0700 | [diff] [blame] | 1584 | extern struct timespec64 current_time(struct inode *inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | |
| 1586 | /* |
| 1587 | * Snapshotting support. |
| 1588 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | |
Jan Kara | 5accdf8 | 2012-06-12 16:20:34 +0200 | [diff] [blame] | 1590 | void __sb_end_write(struct super_block *sb, int level); |
| 1591 | int __sb_start_write(struct super_block *sb, int level, bool wait); |
| 1592 | |
Oleg Nesterov | bee9182 | 2015-07-19 23:48:20 +0200 | [diff] [blame] | 1593 | #define __sb_writers_acquired(sb, lev) \ |
Oleg Nesterov | 8129ed2 | 2015-08-11 17:05:04 +0200 | [diff] [blame] | 1594 | percpu_rwsem_acquire(&(sb)->s_writers.rw_sem[(lev)-1], 1, _THIS_IP_) |
Oleg Nesterov | bee9182 | 2015-07-19 23:48:20 +0200 | [diff] [blame] | 1595 | #define __sb_writers_release(sb, lev) \ |
Oleg Nesterov | 8129ed2 | 2015-08-11 17:05:04 +0200 | [diff] [blame] | 1596 | percpu_rwsem_release(&(sb)->s_writers.rw_sem[(lev)-1], 1, _THIS_IP_) |
Oleg Nesterov | bee9182 | 2015-07-19 23:48:20 +0200 | [diff] [blame] | 1597 | |
Jan Kara | 5accdf8 | 2012-06-12 16:20:34 +0200 | [diff] [blame] | 1598 | /** |
| 1599 | * sb_end_write - drop write access to a superblock |
| 1600 | * @sb: the super we wrote to |
| 1601 | * |
| 1602 | * Decrement number of writers to the filesystem. Wake up possible waiters |
| 1603 | * wanting to freeze the filesystem. |
| 1604 | */ |
| 1605 | static inline void sb_end_write(struct super_block *sb) |
| 1606 | { |
| 1607 | __sb_end_write(sb, SB_FREEZE_WRITE); |
| 1608 | } |
| 1609 | |
| 1610 | /** |
| 1611 | * sb_end_pagefault - drop write access to a superblock from a page fault |
| 1612 | * @sb: the super we wrote to |
| 1613 | * |
| 1614 | * Decrement number of processes handling write page fault to the filesystem. |
| 1615 | * Wake up possible waiters wanting to freeze the filesystem. |
| 1616 | */ |
| 1617 | static inline void sb_end_pagefault(struct super_block *sb) |
| 1618 | { |
| 1619 | __sb_end_write(sb, SB_FREEZE_PAGEFAULT); |
| 1620 | } |
| 1621 | |
| 1622 | /** |
| 1623 | * sb_end_intwrite - drop write access to a superblock for internal fs purposes |
| 1624 | * @sb: the super we wrote to |
| 1625 | * |
| 1626 | * Decrement fs-internal number of writers to the filesystem. Wake up possible |
| 1627 | * waiters wanting to freeze the filesystem. |
| 1628 | */ |
| 1629 | static inline void sb_end_intwrite(struct super_block *sb) |
| 1630 | { |
| 1631 | __sb_end_write(sb, SB_FREEZE_FS); |
| 1632 | } |
| 1633 | |
| 1634 | /** |
| 1635 | * sb_start_write - get write access to a superblock |
| 1636 | * @sb: the super we write to |
| 1637 | * |
| 1638 | * When a process wants to write data or metadata to a file system (i.e. dirty |
| 1639 | * a page or an inode), it should embed the operation in a sb_start_write() - |
| 1640 | * sb_end_write() pair to get exclusion against file system freezing. This |
| 1641 | * function increments number of writers preventing freezing. If the file |
| 1642 | * system is already frozen, the function waits until the file system is |
| 1643 | * thawed. |
| 1644 | * |
| 1645 | * Since freeze protection behaves as a lock, users have to preserve |
| 1646 | * ordering of freeze protection and other filesystem locks. Generally, |
| 1647 | * freeze protection should be the outermost lock. In particular, we have: |
| 1648 | * |
| 1649 | * sb_start_write |
| 1650 | * -> i_mutex (write path, truncate, directory ops, ...) |
| 1651 | * -> s_umount (freeze_super, thaw_super) |
| 1652 | */ |
| 1653 | static inline void sb_start_write(struct super_block *sb) |
| 1654 | { |
| 1655 | __sb_start_write(sb, SB_FREEZE_WRITE, true); |
| 1656 | } |
| 1657 | |
| 1658 | static inline int sb_start_write_trylock(struct super_block *sb) |
| 1659 | { |
| 1660 | return __sb_start_write(sb, SB_FREEZE_WRITE, false); |
| 1661 | } |
| 1662 | |
| 1663 | /** |
| 1664 | * sb_start_pagefault - get write access to a superblock from a page fault |
| 1665 | * @sb: the super we write to |
| 1666 | * |
| 1667 | * When a process starts handling write page fault, it should embed the |
| 1668 | * operation into sb_start_pagefault() - sb_end_pagefault() pair to get |
| 1669 | * exclusion against file system freezing. This is needed since the page fault |
| 1670 | * is going to dirty a page. This function increments number of running page |
| 1671 | * faults preventing freezing. If the file system is already frozen, the |
| 1672 | * function waits until the file system is thawed. |
| 1673 | * |
| 1674 | * Since page fault freeze protection behaves as a lock, users have to preserve |
| 1675 | * ordering of freeze protection and other filesystem locks. It is advised to |
| 1676 | * put sb_start_pagefault() close to mmap_sem in lock ordering. Page fault |
| 1677 | * handling code implies lock dependency: |
| 1678 | * |
| 1679 | * mmap_sem |
| 1680 | * -> sb_start_pagefault |
| 1681 | */ |
| 1682 | static inline void sb_start_pagefault(struct super_block *sb) |
| 1683 | { |
| 1684 | __sb_start_write(sb, SB_FREEZE_PAGEFAULT, true); |
| 1685 | } |
| 1686 | |
| 1687 | /* |
| 1688 | * sb_start_intwrite - get write access to a superblock for internal fs purposes |
| 1689 | * @sb: the super we write to |
| 1690 | * |
| 1691 | * This is the third level of protection against filesystem freezing. It is |
| 1692 | * free for use by a filesystem. The only requirement is that it must rank |
| 1693 | * below sb_start_pagefault. |
| 1694 | * |
| 1695 | * For example filesystem can call sb_start_intwrite() when starting a |
| 1696 | * transaction which somewhat eases handling of freezing for internal sources |
| 1697 | * of filesystem changes (internal fs threads, discarding preallocation on file |
| 1698 | * close, etc.). |
| 1699 | */ |
| 1700 | static inline void sb_start_intwrite(struct super_block *sb) |
| 1701 | { |
| 1702 | __sb_start_write(sb, SB_FREEZE_FS, true); |
| 1703 | } |
| 1704 | |
Amir Goldstein | 0c8e3fe | 2018-05-13 22:40:30 -0400 | [diff] [blame] | 1705 | static inline int sb_start_intwrite_trylock(struct super_block *sb) |
| 1706 | { |
| 1707 | return __sb_start_write(sb, SB_FREEZE_FS, false); |
| 1708 | } |
| 1709 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1710 | |
Serge E. Hallyn | 2e14967 | 2011-03-23 16:43:26 -0700 | [diff] [blame] | 1711 | extern bool inode_owner_or_capable(const struct inode *inode); |
Satyam Sharma | 3bd858a | 2007-07-17 15:00:08 +0530 | [diff] [blame] | 1712 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | /* |
| 1714 | * VFS helper functions.. |
| 1715 | */ |
Al Viro | 312b63f | 2012-06-10 18:09:36 -0400 | [diff] [blame] | 1716 | extern int vfs_create(struct inode *, struct dentry *, umode_t, bool); |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 1717 | extern int vfs_mkdir(struct inode *, struct dentry *, umode_t); |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 1718 | extern int vfs_mknod(struct inode *, struct dentry *, umode_t, dev_t); |
Miklos Szeredi | db2e747 | 2008-06-24 16:50:16 +0200 | [diff] [blame] | 1719 | extern int vfs_symlink(struct inode *, struct dentry *, const char *); |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 1720 | extern int vfs_link(struct dentry *, struct inode *, struct dentry *, struct inode **); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | extern int vfs_rmdir(struct inode *, struct dentry *); |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 1722 | extern int vfs_unlink(struct inode *, struct dentry *, struct inode **); |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 1723 | extern int vfs_rename(struct inode *, struct dentry *, struct inode *, struct dentry *, struct inode **, unsigned int); |
Miklos Szeredi | 787fb6b | 2014-10-24 00:14:36 +0200 | [diff] [blame] | 1724 | extern int vfs_whiteout(struct inode *, struct dentry *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | |
Amir Goldstein | af7bd4d | 2017-01-17 06:34:52 +0200 | [diff] [blame] | 1726 | extern struct dentry *vfs_tmpfile(struct dentry *dentry, umode_t mode, |
| 1727 | int open_flag); |
| 1728 | |
Al Viro | 8e6c848 | 2017-12-01 17:12:45 -0500 | [diff] [blame] | 1729 | int vfs_mkobj(struct dentry *, umode_t, |
| 1730 | int (*f)(struct dentry *, umode_t, void *), |
| 1731 | void *); |
| 1732 | |
Miklos Szeredi | 9df6702 | 2018-07-18 15:44:40 +0200 | [diff] [blame] | 1733 | extern long vfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg); |
| 1734 | |
Arnd Bergmann | 2952db0 | 2018-09-11 16:55:03 +0200 | [diff] [blame] | 1735 | #ifdef CONFIG_COMPAT |
| 1736 | extern long compat_ptr_ioctl(struct file *file, unsigned int cmd, |
| 1737 | unsigned long arg); |
| 1738 | #else |
| 1739 | #define compat_ptr_ioctl NULL |
| 1740 | #endif |
| 1741 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | /* |
Christoph Hellwig | 8c744fb | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 1743 | * VFS file helper functions. |
| 1744 | */ |
Dmitry Monakhov | a1bd120 | 2010-03-04 17:29:14 +0300 | [diff] [blame] | 1745 | extern void inode_init_owner(struct inode *inode, const struct inode *dir, |
Al Viro | 62bb109 | 2011-07-24 23:20:18 -0400 | [diff] [blame] | 1746 | umode_t mode); |
Eric W. Biederman | a2982cc | 2016-06-09 15:34:02 -0500 | [diff] [blame] | 1747 | extern bool may_open_dev(const struct path *path); |
Christoph Hellwig | 8c744fb | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 1748 | /* |
Mark Fasheh | c4b929b | 2008-10-08 19:44:18 -0400 | [diff] [blame] | 1749 | * VFS FS_IOC_FIEMAP helper definitions. |
| 1750 | */ |
| 1751 | struct fiemap_extent_info { |
| 1752 | unsigned int fi_flags; /* Flags as passed from user */ |
| 1753 | unsigned int fi_extents_mapped; /* Number of mapped extents */ |
| 1754 | unsigned int fi_extents_max; /* Size of fiemap_extent array */ |
Namhyung Kim | ecf5632 | 2011-01-16 23:28:17 +0900 | [diff] [blame] | 1755 | struct fiemap_extent __user *fi_extents_start; /* Start of |
| 1756 | fiemap_extent array */ |
Mark Fasheh | c4b929b | 2008-10-08 19:44:18 -0400 | [diff] [blame] | 1757 | }; |
| 1758 | int fiemap_fill_next_extent(struct fiemap_extent_info *info, u64 logical, |
| 1759 | u64 phys, u64 len, u32 flags); |
| 1760 | int fiemap_check_flags(struct fiemap_extent_info *fieinfo, u32 fs_flags); |
| 1761 | |
| 1762 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | * This is the "filldir" function type, used by readdir() to let |
| 1764 | * the kernel specify what kind of dirent layout it wants to have. |
| 1765 | * This allows the kernel to read directories into kernel space or |
| 1766 | * to have different dirent layouts depending on the binary type. |
| 1767 | */ |
Miklos Szeredi | ac7576f | 2014-10-30 17:37:34 +0100 | [diff] [blame] | 1768 | struct dir_context; |
| 1769 | typedef int (*filldir_t)(struct dir_context *, const char *, int, loff_t, u64, |
| 1770 | unsigned); |
| 1771 | |
Al Viro | 5c0ba4e | 2013-05-15 13:52:59 -0400 | [diff] [blame] | 1772 | struct dir_context { |
David Howells | a09acf4 | 2018-04-09 21:12:30 +0100 | [diff] [blame] | 1773 | filldir_t actor; |
Al Viro | bb6f619 | 2013-05-15 18:49:12 -0400 | [diff] [blame] | 1774 | loff_t pos; |
Al Viro | 5c0ba4e | 2013-05-15 13:52:59 -0400 | [diff] [blame] | 1775 | }; |
Al Viro | bb6f619 | 2013-05-15 18:49:12 -0400 | [diff] [blame] | 1776 | |
Al Viro | 08f8585 | 2007-10-08 13:26:20 -0400 | [diff] [blame] | 1777 | struct block_device_operations; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | /* These macros are for out of kernel modules to test that |
| 1780 | * the kernel supports the unlocked_ioctl and compat_ioctl |
| 1781 | * fields in struct file_operations. */ |
| 1782 | #define HAVE_COMPAT_IOCTL 1 |
| 1783 | #define HAVE_UNLOCKED_IOCTL 1 |
| 1784 | |
Christoph Hellwig | b4caecd | 2015-01-14 10:42:32 +0100 | [diff] [blame] | 1785 | /* |
| 1786 | * These flags let !MMU mmap() govern direct device mapping vs immediate |
| 1787 | * copying more easily for MAP_PRIVATE, especially for ROM filesystems. |
| 1788 | * |
| 1789 | * NOMMU_MAP_COPY: Copy can be mapped (MAP_PRIVATE) |
| 1790 | * NOMMU_MAP_DIRECT: Can be mapped directly (MAP_SHARED) |
| 1791 | * NOMMU_MAP_READ: Can be mapped for reading |
| 1792 | * NOMMU_MAP_WRITE: Can be mapped for writing |
| 1793 | * NOMMU_MAP_EXEC: Can be mapped for execution |
| 1794 | */ |
| 1795 | #define NOMMU_MAP_COPY 0x00000001 |
| 1796 | #define NOMMU_MAP_DIRECT 0x00000008 |
| 1797 | #define NOMMU_MAP_READ VM_MAYREAD |
| 1798 | #define NOMMU_MAP_WRITE VM_MAYWRITE |
| 1799 | #define NOMMU_MAP_EXEC VM_MAYEXEC |
| 1800 | |
| 1801 | #define NOMMU_VMFLAGS \ |
| 1802 | (NOMMU_MAP_READ | NOMMU_MAP_WRITE | NOMMU_MAP_EXEC) |
| 1803 | |
Darrick J. Wong | 2e5dfc9 | 2018-10-30 10:41:21 +1100 | [diff] [blame] | 1804 | /* |
| 1805 | * These flags control the behavior of the remap_file_range function pointer. |
| 1806 | * If it is called with len == 0 that means "remap to end of source file". |
Mauro Carvalho Chehab | 5c437fa | 2019-06-07 15:54:35 -0300 | [diff] [blame] | 1807 | * See Documentation/filesystems/vfs.rst for more details about this call. |
Darrick J. Wong | 2e5dfc9 | 2018-10-30 10:41:21 +1100 | [diff] [blame] | 1808 | * |
| 1809 | * REMAP_FILE_DEDUP: only remap if contents identical (i.e. deduplicate) |
Darrick J. Wong | eca3654 | 2018-10-30 10:42:10 +1100 | [diff] [blame] | 1810 | * REMAP_FILE_CAN_SHORTEN: caller can handle a shortened request |
Darrick J. Wong | 2e5dfc9 | 2018-10-30 10:41:21 +1100 | [diff] [blame] | 1811 | */ |
| 1812 | #define REMAP_FILE_DEDUP (1 << 0) |
Darrick J. Wong | eca3654 | 2018-10-30 10:42:10 +1100 | [diff] [blame] | 1813 | #define REMAP_FILE_CAN_SHORTEN (1 << 1) |
Darrick J. Wong | 2e5dfc9 | 2018-10-30 10:41:21 +1100 | [diff] [blame] | 1814 | |
| 1815 | /* |
| 1816 | * These flags signal that the caller is ok with altering various aspects of |
| 1817 | * the behavior of the remap operation. The changes must be made by the |
| 1818 | * implementation; the vfs remap helper functions can take advantage of them. |
| 1819 | * Flags in this category exist to preserve the quirky behavior of the hoisted |
| 1820 | * btrfs clone/dedupe ioctls. |
Darrick J. Wong | 2e5dfc9 | 2018-10-30 10:41:21 +1100 | [diff] [blame] | 1821 | */ |
Darrick J. Wong | eca3654 | 2018-10-30 10:42:10 +1100 | [diff] [blame] | 1822 | #define REMAP_FILE_ADVISORY (REMAP_FILE_CAN_SHORTEN) |
Christoph Hellwig | b4caecd | 2015-01-14 10:42:32 +0100 | [diff] [blame] | 1823 | |
Al Viro | 293bc98 | 2014-02-11 18:37:41 -0500 | [diff] [blame] | 1824 | struct iov_iter; |
| 1825 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1826 | struct file_operations { |
| 1827 | struct module *owner; |
| 1828 | loff_t (*llseek) (struct file *, loff_t, int); |
| 1829 | ssize_t (*read) (struct file *, char __user *, size_t, loff_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *); |
Al Viro | 293bc98 | 2014-02-11 18:37:41 -0500 | [diff] [blame] | 1831 | ssize_t (*read_iter) (struct kiocb *, struct iov_iter *); |
| 1832 | ssize_t (*write_iter) (struct kiocb *, struct iov_iter *); |
Christoph Hellwig | fb7e160 | 2018-11-22 16:37:38 +0100 | [diff] [blame] | 1833 | int (*iopoll)(struct kiocb *kiocb, bool spin); |
Al Viro | bb6f619 | 2013-05-15 18:49:12 -0400 | [diff] [blame] | 1834 | int (*iterate) (struct file *, struct dir_context *); |
Al Viro | 6192269 | 2016-04-20 23:08:32 -0400 | [diff] [blame] | 1835 | int (*iterate_shared) (struct file *, struct dir_context *); |
Al Viro | a3f8683 | 2017-07-02 22:22:01 -0400 | [diff] [blame] | 1836 | __poll_t (*poll) (struct file *, struct poll_table_struct *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1837 | long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long); |
| 1838 | long (*compat_ioctl) (struct file *, unsigned int, unsigned long); |
| 1839 | int (*mmap) (struct file *, struct vm_area_struct *); |
Dan Williams | 1c97259 | 2017-11-01 16:36:30 +0100 | [diff] [blame] | 1840 | unsigned long mmap_supported_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | int (*open) (struct inode *, struct file *); |
Miklos Szeredi | 75e1fcc | 2006-06-23 02:05:12 -0700 | [diff] [blame] | 1842 | int (*flush) (struct file *, fl_owner_t id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1843 | int (*release) (struct inode *, struct file *); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 1844 | int (*fsync) (struct file *, loff_t, loff_t, int datasync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | int (*fasync) (int, struct file *, int); |
| 1846 | int (*lock) (struct file *, int, struct file_lock *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int); |
| 1848 | unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long); |
| 1849 | int (*check_flags)(int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1850 | int (*flock) (struct file *, int, struct file_lock *); |
Jens Axboe | cbb7e57 | 2006-04-11 14:57:50 +0200 | [diff] [blame] | 1851 | ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int); |
| 1852 | ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); |
Jeff Layton | e6f5c78 | 2014-08-22 10:40:25 -0400 | [diff] [blame] | 1853 | int (*setlease)(struct file *, long, struct file_lock **, void **); |
Christoph Hellwig | 2fe17c1 | 2011-01-14 13:07:43 +0100 | [diff] [blame] | 1854 | long (*fallocate)(struct file *file, int mode, loff_t offset, |
| 1855 | loff_t len); |
Joe Perches | a3816ab | 2014-09-29 16:08:25 -0700 | [diff] [blame] | 1856 | void (*show_fdinfo)(struct seq_file *m, struct file *f); |
Christoph Hellwig | b4caecd | 2015-01-14 10:42:32 +0100 | [diff] [blame] | 1857 | #ifndef CONFIG_MMU |
| 1858 | unsigned (*mmap_capabilities)(struct file *); |
| 1859 | #endif |
Christoph Hellwig | 04b38d6 | 2015-12-03 12:59:50 +0100 | [diff] [blame] | 1860 | ssize_t (*copy_file_range)(struct file *, loff_t, struct file *, |
| 1861 | loff_t, size_t, unsigned int); |
Darrick J. Wong | 42ec3d4 | 2018-10-30 10:41:49 +1100 | [diff] [blame] | 1862 | loff_t (*remap_file_range)(struct file *file_in, loff_t pos_in, |
| 1863 | struct file *file_out, loff_t pos_out, |
| 1864 | loff_t len, unsigned int remap_flags); |
Amir Goldstein | 45cd0fa | 2018-08-27 15:56:02 +0300 | [diff] [blame] | 1865 | int (*fadvise)(struct file *, loff_t, loff_t, int); |
Kees Cook | 3859a27 | 2016-10-28 01:22:25 -0700 | [diff] [blame] | 1866 | } __randomize_layout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1867 | |
| 1868 | struct inode_operations { |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 1869 | struct dentry * (*lookup) (struct inode *,struct dentry *, unsigned int); |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1870 | const char * (*get_link) (struct dentry *, struct inode *, struct delayed_call *); |
Al Viro | 10556cb2 | 2011-06-20 19:28:19 -0400 | [diff] [blame] | 1871 | int (*permission) (struct inode *, int); |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 1872 | struct posix_acl * (*get_acl)(struct inode *, int); |
Nick Piggin | 44a7d7a | 2011-01-07 17:49:56 +1100 | [diff] [blame] | 1873 | |
| 1874 | int (*readlink) (struct dentry *, char __user *,int); |
Nick Piggin | 44a7d7a | 2011-01-07 17:49:56 +1100 | [diff] [blame] | 1875 | |
Al Viro | ebfc3b4 | 2012-06-10 18:05:36 -0400 | [diff] [blame] | 1876 | int (*create) (struct inode *,struct dentry *, umode_t, bool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1877 | int (*link) (struct dentry *,struct inode *,struct dentry *); |
| 1878 | int (*unlink) (struct inode *,struct dentry *); |
| 1879 | int (*symlink) (struct inode *,struct dentry *,const char *); |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 1880 | int (*mkdir) (struct inode *,struct dentry *,umode_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | int (*rmdir) (struct inode *,struct dentry *); |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 1882 | int (*mknod) (struct inode *,struct dentry *,umode_t,dev_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | int (*rename) (struct inode *, struct dentry *, |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 1884 | struct inode *, struct dentry *, unsigned int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | int (*setattr) (struct dentry *, struct iattr *); |
David Howells | a528d35 | 2017-01-31 16:46:22 +0000 | [diff] [blame] | 1886 | int (*getattr) (const struct path *, struct kstat *, u32, unsigned int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | ssize_t (*listxattr) (struct dentry *, char *, size_t); |
Mark Fasheh | c4b929b | 2008-10-08 19:44:18 -0400 | [diff] [blame] | 1888 | int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64 start, |
| 1889 | u64 len); |
Deepa Dinamani | 95582b0 | 2018-05-08 19:36:02 -0700 | [diff] [blame] | 1890 | int (*update_time)(struct inode *, struct timespec64 *, int); |
Al Viro | d958527 | 2012-06-22 12:39:14 +0400 | [diff] [blame] | 1891 | int (*atomic_open)(struct inode *, struct dentry *, |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 1892 | struct file *, unsigned open_flag, |
Al Viro | 44907d7 | 2018-06-08 13:32:02 -0400 | [diff] [blame] | 1893 | umode_t create_mode); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 1894 | int (*tmpfile) (struct inode *, struct dentry *, umode_t); |
Christoph Hellwig | 893d46e | 2013-12-20 05:16:39 -0800 | [diff] [blame] | 1895 | int (*set_acl)(struct inode *, struct posix_acl *, int); |
Nick Piggin | 44a7d7a | 2011-01-07 17:49:56 +1100 | [diff] [blame] | 1896 | } ____cacheline_aligned; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1897 | |
Miklos Szeredi | bb7462b | 2017-02-20 16:51:23 +0100 | [diff] [blame] | 1898 | static inline ssize_t call_read_iter(struct file *file, struct kiocb *kio, |
| 1899 | struct iov_iter *iter) |
| 1900 | { |
| 1901 | return file->f_op->read_iter(kio, iter); |
| 1902 | } |
| 1903 | |
| 1904 | static inline ssize_t call_write_iter(struct file *file, struct kiocb *kio, |
| 1905 | struct iov_iter *iter) |
| 1906 | { |
| 1907 | return file->f_op->write_iter(kio, iter); |
| 1908 | } |
| 1909 | |
Miklos Szeredi | f74ac01 | 2017-02-20 16:51:23 +0100 | [diff] [blame] | 1910 | static inline int call_mmap(struct file *file, struct vm_area_struct *vma) |
| 1911 | { |
| 1912 | return file->f_op->mmap(file, vma); |
| 1913 | } |
| 1914 | |
Badari Pulavarty | eed4e51 | 2006-09-30 23:28:49 -0700 | [diff] [blame] | 1915 | ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector, |
Christopher Yeoh | fcf6340 | 2011-10-31 17:06:39 -0700 | [diff] [blame] | 1916 | unsigned long nr_segs, unsigned long fast_segs, |
| 1917 | struct iovec *fast_pointer, |
Christopher Yeoh | ac34ebb | 2012-05-31 16:26:42 -0700 | [diff] [blame] | 1918 | struct iovec **ret_pointer); |
Badari Pulavarty | eed4e51 | 2006-09-30 23:28:49 -0700 | [diff] [blame] | 1919 | |
Dmitry Kasatkin | 6fb5032 | 2014-11-05 17:01:17 +0200 | [diff] [blame] | 1920 | extern ssize_t __vfs_read(struct file *, char __user *, size_t, loff_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1921 | extern ssize_t vfs_read(struct file *, char __user *, size_t, loff_t *); |
| 1922 | extern ssize_t vfs_write(struct file *, const char __user *, size_t, loff_t *); |
| 1923 | extern ssize_t vfs_readv(struct file *, const struct iovec __user *, |
Christoph Hellwig | ddef7ed2 | 2017-07-06 18:58:37 +0200 | [diff] [blame] | 1924 | unsigned long, loff_t *, rwf_t); |
Zach Brown | 2973293 | 2015-11-10 16:53:30 -0500 | [diff] [blame] | 1925 | extern ssize_t vfs_copy_file_range(struct file *, loff_t , struct file *, |
| 1926 | loff_t, size_t, unsigned int); |
Dave Chinner | f16acc9 | 2019-06-05 08:04:47 -0700 | [diff] [blame] | 1927 | extern ssize_t generic_copy_file_range(struct file *file_in, loff_t pos_in, |
| 1928 | struct file *file_out, loff_t pos_out, |
| 1929 | size_t len, unsigned int flags); |
Darrick J. Wong | a83ab01 | 2018-10-30 10:41:08 +1100 | [diff] [blame] | 1930 | extern int generic_remap_file_range_prep(struct file *file_in, loff_t pos_in, |
| 1931 | struct file *file_out, loff_t pos_out, |
Darrick J. Wong | 42ec3d4 | 2018-10-30 10:41:49 +1100 | [diff] [blame] | 1932 | loff_t *count, |
| 1933 | unsigned int remap_flags); |
| 1934 | extern loff_t do_clone_file_range(struct file *file_in, loff_t pos_in, |
| 1935 | struct file *file_out, loff_t pos_out, |
Darrick J. Wong | 452ce65 | 2018-10-30 10:41:56 +1100 | [diff] [blame] | 1936 | loff_t len, unsigned int remap_flags); |
Darrick J. Wong | 42ec3d4 | 2018-10-30 10:41:49 +1100 | [diff] [blame] | 1937 | extern loff_t vfs_clone_file_range(struct file *file_in, loff_t pos_in, |
| 1938 | struct file *file_out, loff_t pos_out, |
Darrick J. Wong | 452ce65 | 2018-10-30 10:41:56 +1100 | [diff] [blame] | 1939 | loff_t len, unsigned int remap_flags); |
Darrick J. Wong | 54dbc15 | 2015-12-19 00:55:59 -0800 | [diff] [blame] | 1940 | extern int vfs_dedupe_file_range(struct file *file, |
| 1941 | struct file_dedupe_range *same); |
Darrick J. Wong | 42ec3d4 | 2018-10-30 10:41:49 +1100 | [diff] [blame] | 1942 | extern loff_t vfs_dedupe_file_range_one(struct file *src_file, loff_t src_pos, |
| 1943 | struct file *dst_file, loff_t dst_pos, |
Darrick J. Wong | df36583 | 2018-10-30 10:42:03 +1100 | [diff] [blame] | 1944 | loff_t len, unsigned int remap_flags); |
Miklos Szeredi | f182536 | 2018-07-18 15:44:40 +0200 | [diff] [blame] | 1945 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | struct super_operations { |
| 1948 | struct inode *(*alloc_inode)(struct super_block *sb); |
| 1949 | void (*destroy_inode)(struct inode *); |
Al Viro | fdb0da8 | 2019-04-10 14:43:44 -0400 | [diff] [blame] | 1950 | void (*free_inode)(struct inode *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | |
Christoph Hellwig | aa38572 | 2011-05-27 06:53:02 -0400 | [diff] [blame] | 1952 | void (*dirty_inode) (struct inode *, int flags); |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 1953 | int (*write_inode) (struct inode *, struct writeback_control *wbc); |
Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 1954 | int (*drop_inode) (struct inode *); |
Al Viro | be7ce41 | 2010-06-04 19:40:39 -0400 | [diff] [blame] | 1955 | void (*evict_inode) (struct inode *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | void (*put_super) (struct super_block *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | int (*sync_fs)(struct super_block *sb, int wait); |
Benjamin Marzinski | 48b6bca | 2014-11-13 20:42:03 -0600 | [diff] [blame] | 1958 | int (*freeze_super) (struct super_block *); |
Takashi Sato | c4be0c1 | 2009-01-09 16:40:58 -0800 | [diff] [blame] | 1959 | int (*freeze_fs) (struct super_block *); |
Benjamin Marzinski | 48b6bca | 2014-11-13 20:42:03 -0600 | [diff] [blame] | 1960 | int (*thaw_super) (struct super_block *); |
Takashi Sato | c4be0c1 | 2009-01-09 16:40:58 -0800 | [diff] [blame] | 1961 | int (*unfreeze_fs) (struct super_block *); |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 1962 | int (*statfs) (struct dentry *, struct kstatfs *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | int (*remount_fs) (struct super_block *, int *, char *); |
Al Viro | 42faad9 | 2008-04-24 07:21:56 -0400 | [diff] [blame] | 1964 | void (*umount_begin) (struct super_block *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1965 | |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 1966 | int (*show_options)(struct seq_file *, struct dentry *); |
Al Viro | d861c63 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 1967 | int (*show_devname)(struct seq_file *, struct dentry *); |
Al Viro | a6322de | 2011-12-08 21:37:57 -0500 | [diff] [blame] | 1968 | int (*show_path)(struct seq_file *, struct dentry *); |
Al Viro | 6413237 | 2011-12-08 20:51:13 -0500 | [diff] [blame] | 1969 | int (*show_stats)(struct seq_file *, struct dentry *); |
Alexey Dobriyan | 0e51a72 | 2006-09-29 01:59:56 -0700 | [diff] [blame] | 1970 | #ifdef CONFIG_QUOTA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t); |
| 1972 | ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t); |
Jan Kara | 2d0fa46 | 2014-09-25 16:36:14 +0200 | [diff] [blame] | 1973 | struct dquot **(*get_dquots)(struct inode *); |
Alexey Dobriyan | 0e51a72 | 2006-09-29 01:59:56 -0700 | [diff] [blame] | 1974 | #endif |
Theodore Ts'o | 87d8fe1 | 2009-01-03 09:47:09 -0500 | [diff] [blame] | 1975 | int (*bdev_try_to_free_page)(struct super_block*, struct page*, gfp_t); |
Vladimir Davydov | 4101b62 | 2015-02-12 14:58:51 -0800 | [diff] [blame] | 1976 | long (*nr_cached_objects)(struct super_block *, |
| 1977 | struct shrink_control *); |
| 1978 | long (*free_cached_objects)(struct super_block *, |
| 1979 | struct shrink_control *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | }; |
| 1981 | |
Joern Engel | 1c0eeaf | 2007-10-16 23:30:44 -0700 | [diff] [blame] | 1982 | /* |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 1983 | * Inode flags - they have no relation to superblock flags now |
| 1984 | */ |
| 1985 | #define S_SYNC 1 /* Writes are synced at once */ |
| 1986 | #define S_NOATIME 2 /* Do not update access times */ |
| 1987 | #define S_APPEND 4 /* Append-only file */ |
| 1988 | #define S_IMMUTABLE 8 /* Immutable file */ |
| 1989 | #define S_DEAD 16 /* removed, but still open directory */ |
| 1990 | #define S_NOQUOTA 32 /* Inode is not counted to quota */ |
| 1991 | #define S_DIRSYNC 64 /* Directory modifications are synchronous */ |
| 1992 | #define S_NOCMTIME 128 /* Do not update file c/mtime */ |
| 1993 | #define S_SWAPFILE 256 /* Do not truncate: swapon got its bmaps */ |
| 1994 | #define S_PRIVATE 512 /* Inode is fs-internal */ |
| 1995 | #define S_IMA 1024 /* Inode has an associated IMA struct */ |
| 1996 | #define S_AUTOMOUNT 2048 /* Automount/referral quasi-directory */ |
| 1997 | #define S_NOSEC 4096 /* no suid or xattr security attributes */ |
Matthew Wilcox | 6cd176a | 2015-02-16 15:59:25 -0800 | [diff] [blame] | 1998 | #ifdef CONFIG_FS_DAX |
Matthew Wilcox | fbbbad4 | 2015-02-16 15:58:53 -0800 | [diff] [blame] | 1999 | #define S_DAX 8192 /* Direct Access, avoiding the page cache */ |
| 2000 | #else |
| 2001 | #define S_DAX 0 /* Make all the DAX code disappear */ |
| 2002 | #endif |
Eric Biggers | 2ee6a57 | 2017-10-09 12:15:35 -0700 | [diff] [blame] | 2003 | #define S_ENCRYPTED 16384 /* Encrypted file (using fs/crypto/) */ |
Gabriel Krisman Bertazi | b886ee3 | 2019-04-25 14:12:08 -0400 | [diff] [blame] | 2004 | #define S_CASEFOLD 32768 /* Casefolded file */ |
Eric Biggers | 5585f2a | 2019-07-22 09:26:21 -0700 | [diff] [blame] | 2005 | #define S_VERITY 65536 /* Verity file (using fs/verity/) */ |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 2006 | |
| 2007 | /* |
| 2008 | * Note that nosuid etc flags are inode-specific: setting some file-system |
| 2009 | * flags just means all the inodes inherit those flags by default. It might be |
| 2010 | * possible to override it selectively if you really wanted to with some |
| 2011 | * ioctl() that is not currently implemented. |
| 2012 | * |
David Howells | e462ec5 | 2017-07-17 08:45:35 +0100 | [diff] [blame] | 2013 | * Exception: SB_RDONLY is always applied to the entire file system. |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 2014 | * |
| 2015 | * Unfortunately, it is possible to change a filesystems flags with it mounted |
| 2016 | * with files in use. This means that all of the inodes will not have their |
| 2017 | * i_flags updated. Hence, i_flags no longer inherit the superblock mount |
| 2018 | * flags, so these have to be checked separately. -- rmk@arm.uk.linux.org |
| 2019 | */ |
| 2020 | #define __IS_FLG(inode, flg) ((inode)->i_sb->s_flags & (flg)) |
| 2021 | |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 2022 | static inline bool sb_rdonly(const struct super_block *sb) { return sb->s_flags & SB_RDONLY; } |
David Howells | 94e92e7 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 2023 | #define IS_RDONLY(inode) sb_rdonly((inode)->i_sb) |
David Howells | e462ec5 | 2017-07-17 08:45:35 +0100 | [diff] [blame] | 2024 | #define IS_SYNC(inode) (__IS_FLG(inode, SB_SYNCHRONOUS) || \ |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 2025 | ((inode)->i_flags & S_SYNC)) |
David Howells | e462ec5 | 2017-07-17 08:45:35 +0100 | [diff] [blame] | 2026 | #define IS_DIRSYNC(inode) (__IS_FLG(inode, SB_SYNCHRONOUS|SB_DIRSYNC) || \ |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 2027 | ((inode)->i_flags & (S_SYNC|S_DIRSYNC))) |
David Howells | e462ec5 | 2017-07-17 08:45:35 +0100 | [diff] [blame] | 2028 | #define IS_MANDLOCK(inode) __IS_FLG(inode, SB_MANDLOCK) |
| 2029 | #define IS_NOATIME(inode) __IS_FLG(inode, SB_RDONLY|SB_NOATIME) |
| 2030 | #define IS_I_VERSION(inode) __IS_FLG(inode, SB_I_VERSION) |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 2031 | |
| 2032 | #define IS_NOQUOTA(inode) ((inode)->i_flags & S_NOQUOTA) |
| 2033 | #define IS_APPEND(inode) ((inode)->i_flags & S_APPEND) |
| 2034 | #define IS_IMMUTABLE(inode) ((inode)->i_flags & S_IMMUTABLE) |
David Howells | e462ec5 | 2017-07-17 08:45:35 +0100 | [diff] [blame] | 2035 | #define IS_POSIXACL(inode) __IS_FLG(inode, SB_POSIXACL) |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 2036 | |
| 2037 | #define IS_DEADDIR(inode) ((inode)->i_flags & S_DEAD) |
| 2038 | #define IS_NOCMTIME(inode) ((inode)->i_flags & S_NOCMTIME) |
| 2039 | #define IS_SWAPFILE(inode) ((inode)->i_flags & S_SWAPFILE) |
| 2040 | #define IS_PRIVATE(inode) ((inode)->i_flags & S_PRIVATE) |
| 2041 | #define IS_IMA(inode) ((inode)->i_flags & S_IMA) |
| 2042 | #define IS_AUTOMOUNT(inode) ((inode)->i_flags & S_AUTOMOUNT) |
| 2043 | #define IS_NOSEC(inode) ((inode)->i_flags & S_NOSEC) |
Matthew Wilcox | fbbbad4 | 2015-02-16 15:58:53 -0800 | [diff] [blame] | 2044 | #define IS_DAX(inode) ((inode)->i_flags & S_DAX) |
Eric Biggers | 2ee6a57 | 2017-10-09 12:15:35 -0700 | [diff] [blame] | 2045 | #define IS_ENCRYPTED(inode) ((inode)->i_flags & S_ENCRYPTED) |
Gabriel Krisman Bertazi | b886ee3 | 2019-04-25 14:12:08 -0400 | [diff] [blame] | 2046 | #define IS_CASEFOLDED(inode) ((inode)->i_flags & S_CASEFOLD) |
Eric Biggers | 5585f2a | 2019-07-22 09:26:21 -0700 | [diff] [blame] | 2047 | #define IS_VERITY(inode) ((inode)->i_flags & S_VERITY) |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 2048 | |
Miklos Szeredi | 787fb6b | 2014-10-24 00:14:36 +0200 | [diff] [blame] | 2049 | #define IS_WHITEOUT(inode) (S_ISCHR(inode->i_mode) && \ |
| 2050 | (inode)->i_rdev == WHITEOUT_DEV) |
| 2051 | |
Eric W. Biederman | 0bd23d09 | 2016-06-29 14:54:46 -0500 | [diff] [blame] | 2052 | static inline bool HAS_UNMAPPED_ID(struct inode *inode) |
| 2053 | { |
| 2054 | return !uid_valid(inode->i_uid) || !gid_valid(inode->i_gid); |
| 2055 | } |
| 2056 | |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 2057 | static inline enum rw_hint file_write_hint(struct file *file) |
| 2058 | { |
| 2059 | if (file->f_write_hint != WRITE_LIFE_NOT_SET) |
| 2060 | return file->f_write_hint; |
| 2061 | |
| 2062 | return file_inode(file)->i_write_hint; |
| 2063 | } |
| 2064 | |
| 2065 | static inline int iocb_flags(struct file *file); |
| 2066 | |
Adam Manzanares | fc28724 | 2018-05-22 10:52:18 -0700 | [diff] [blame] | 2067 | static inline u16 ki_hint_validate(enum rw_hint hint) |
| 2068 | { |
| 2069 | typeof(((struct kiocb *)0)->ki_hint) max_hint = -1; |
| 2070 | |
| 2071 | if (hint <= max_hint) |
| 2072 | return hint; |
| 2073 | return 0; |
| 2074 | } |
| 2075 | |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 2076 | static inline void init_sync_kiocb(struct kiocb *kiocb, struct file *filp) |
| 2077 | { |
| 2078 | *kiocb = (struct kiocb) { |
| 2079 | .ki_filp = filp, |
| 2080 | .ki_flags = iocb_flags(filp), |
Adam Manzanares | fc28724 | 2018-05-22 10:52:18 -0700 | [diff] [blame] | 2081 | .ki_hint = ki_hint_validate(file_write_hint(filp)), |
Damien Le Moal | 20578bd | 2018-11-20 10:52:38 +0900 | [diff] [blame] | 2082 | .ki_ioprio = get_current_ioprio(), |
Jens Axboe | c75b1d9 | 2017-06-27 11:47:04 -0600 | [diff] [blame] | 2083 | }; |
| 2084 | } |
| 2085 | |
Jiufei Xue | 5dcdc43 | 2019-11-20 17:45:25 +0800 | [diff] [blame] | 2086 | static inline void kiocb_clone(struct kiocb *kiocb, struct kiocb *kiocb_src, |
| 2087 | struct file *filp) |
| 2088 | { |
| 2089 | *kiocb = (struct kiocb) { |
| 2090 | .ki_filp = filp, |
| 2091 | .ki_flags = kiocb_src->ki_flags, |
| 2092 | .ki_hint = kiocb_src->ki_hint, |
| 2093 | .ki_ioprio = kiocb_src->ki_ioprio, |
| 2094 | .ki_pos = kiocb_src->ki_pos, |
| 2095 | }; |
| 2096 | } |
| 2097 | |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 2098 | /* |
Dave Chinner | 250df6e | 2011-03-22 22:23:36 +1100 | [diff] [blame] | 2099 | * Inode state bits. Protected by inode->i_lock |
Joern Engel | 1c0eeaf | 2007-10-16 23:30:44 -0700 | [diff] [blame] | 2100 | * |
| 2101 | * Three bits determine the dirty state of the inode, I_DIRTY_SYNC, |
| 2102 | * I_DIRTY_DATASYNC and I_DIRTY_PAGES. |
| 2103 | * |
| 2104 | * Four bits define the lifetime of an inode. Initially, inodes are I_NEW, |
| 2105 | * until that flag is cleared. I_WILL_FREE, I_FREEING and I_CLEAR are set at |
| 2106 | * various stages of removing an inode. |
| 2107 | * |
Christoph Hellwig | eaff807 | 2009-12-17 14:25:01 +0100 | [diff] [blame] | 2108 | * Two bits are used for locking and completion notification, I_NEW and I_SYNC. |
Joern Engel | 1c0eeaf | 2007-10-16 23:30:44 -0700 | [diff] [blame] | 2109 | * |
Joern Engel | e7ca2d4 | 2008-02-06 01:36:59 -0800 | [diff] [blame] | 2110 | * I_DIRTY_SYNC Inode is dirty, but doesn't have to be written on |
| 2111 | * fdatasync(). i_atime is the usual cause. |
Jan Kara | 000cb48 | 2008-02-14 19:31:32 -0800 | [diff] [blame] | 2112 | * I_DIRTY_DATASYNC Data-related inode changes pending. We keep track of |
| 2113 | * these changes separately from I_DIRTY_SYNC so that we |
| 2114 | * don't have to write inode on fdatasync() when only |
| 2115 | * mtime has changed in it. |
Joern Engel | 1c0eeaf | 2007-10-16 23:30:44 -0700 | [diff] [blame] | 2116 | * I_DIRTY_PAGES Inode has dirty pages. Inode itself may be clean. |
Christoph Hellwig | eaff807 | 2009-12-17 14:25:01 +0100 | [diff] [blame] | 2117 | * I_NEW Serves as both a mutex and completion notification. |
| 2118 | * New inodes set I_NEW. If two processes both create |
| 2119 | * the same inode, one of them will release its inode and |
| 2120 | * wait for I_NEW to be released before returning. |
| 2121 | * Inodes in I_WILL_FREE, I_FREEING or I_CLEAR state can |
| 2122 | * also cause waiting on I_NEW, without I_NEW actually |
| 2123 | * being set. find_inode() uses this to prevent returning |
| 2124 | * nearly-dead inodes. |
Joern Engel | 1c0eeaf | 2007-10-16 23:30:44 -0700 | [diff] [blame] | 2125 | * I_WILL_FREE Must be set when calling write_inode_now() if i_count |
| 2126 | * is zero. I_FREEING must be set when I_WILL_FREE is |
| 2127 | * cleared. |
| 2128 | * I_FREEING Set when inode is about to be freed but still has dirty |
| 2129 | * pages or buffers attached or the inode itself is still |
| 2130 | * dirty. |
Jan Kara | dbd5768 | 2012-05-03 14:48:02 +0200 | [diff] [blame] | 2131 | * I_CLEAR Added by clear_inode(). In this state the inode is |
| 2132 | * clean and can be destroyed. Inode keeps I_FREEING. |
Joern Engel | 1c0eeaf | 2007-10-16 23:30:44 -0700 | [diff] [blame] | 2133 | * |
| 2134 | * Inodes that are I_WILL_FREE, I_FREEING or I_CLEAR are |
| 2135 | * prohibited for many purposes. iget() must wait for |
| 2136 | * the inode to be completely released, then create it |
| 2137 | * anew. Other functions will just ignore such inodes, |
Christoph Hellwig | eaff807 | 2009-12-17 14:25:01 +0100 | [diff] [blame] | 2138 | * if appropriate. I_NEW is used for waiting. |
Joern Engel | 1c0eeaf | 2007-10-16 23:30:44 -0700 | [diff] [blame] | 2139 | * |
Jan Kara | 169ebd9 | 2012-05-03 14:48:03 +0200 | [diff] [blame] | 2140 | * I_SYNC Writeback of inode is running. The bit is set during |
| 2141 | * data writeback, and cleared with a wakeup on the bit |
| 2142 | * address once it is done. The bit is also used to pin |
| 2143 | * the inode in memory for flusher thread. |
Joern Engel | 1c0eeaf | 2007-10-16 23:30:44 -0700 | [diff] [blame] | 2144 | * |
Christoph Hellwig | bd5fe6c | 2011-06-24 14:29:43 -0400 | [diff] [blame] | 2145 | * I_REFERENCED Marks the inode as recently references on the LRU list. |
| 2146 | * |
| 2147 | * I_DIO_WAKEUP Never set. Only used as a key for wait_on_bit(). |
| 2148 | * |
Tejun Heo | 682aa8e | 2015-05-28 14:50:53 -0400 | [diff] [blame] | 2149 | * I_WB_SWITCH Cgroup bdi_writeback switching in progress. Used to |
| 2150 | * synchronize competing switching instances and to tell |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 2151 | * wb stat updates to grab the i_pages lock. See |
Greg Thelen | a9519de | 2019-03-05 15:50:03 -0800 | [diff] [blame] | 2152 | * inode_switch_wbs_work_fn() for details. |
Tejun Heo | 682aa8e | 2015-05-28 14:50:53 -0400 | [diff] [blame] | 2153 | * |
Amir Goldstein | ad0af71 | 2017-06-21 15:28:32 +0300 | [diff] [blame] | 2154 | * I_OVL_INUSE Used by overlayfs to get exclusive ownership on upper |
| 2155 | * and work dirs among overlayfs mounts. |
| 2156 | * |
Al Viro | c2b6d62 | 2018-06-28 15:53:17 -0400 | [diff] [blame] | 2157 | * I_CREATING New object's inode in the middle of setting up. |
| 2158 | * |
Joern Engel | 1c0eeaf | 2007-10-16 23:30:44 -0700 | [diff] [blame] | 2159 | * Q: What is the difference between I_WILL_FREE and I_FREEING? |
Joern Engel | 1c0eeaf | 2007-10-16 23:30:44 -0700 | [diff] [blame] | 2160 | */ |
Nick Piggin | 9e38d86 | 2010-10-23 06:55:17 -0400 | [diff] [blame] | 2161 | #define I_DIRTY_SYNC (1 << 0) |
| 2162 | #define I_DIRTY_DATASYNC (1 << 1) |
| 2163 | #define I_DIRTY_PAGES (1 << 2) |
Christoph Hellwig | eaff807 | 2009-12-17 14:25:01 +0100 | [diff] [blame] | 2164 | #define __I_NEW 3 |
| 2165 | #define I_NEW (1 << __I_NEW) |
Nick Piggin | 9e38d86 | 2010-10-23 06:55:17 -0400 | [diff] [blame] | 2166 | #define I_WILL_FREE (1 << 4) |
| 2167 | #define I_FREEING (1 << 5) |
| 2168 | #define I_CLEAR (1 << 6) |
Christoph Hellwig | eaff807 | 2009-12-17 14:25:01 +0100 | [diff] [blame] | 2169 | #define __I_SYNC 7 |
Joern Engel | 1c0eeaf | 2007-10-16 23:30:44 -0700 | [diff] [blame] | 2170 | #define I_SYNC (1 << __I_SYNC) |
Nick Piggin | 9e38d86 | 2010-10-23 06:55:17 -0400 | [diff] [blame] | 2171 | #define I_REFERENCED (1 << 8) |
Christoph Hellwig | bd5fe6c | 2011-06-24 14:29:43 -0400 | [diff] [blame] | 2172 | #define __I_DIO_WAKEUP 9 |
Eric Sandeen | ac74d8d | 2015-04-16 15:04:56 -0500 | [diff] [blame] | 2173 | #define I_DIO_WAKEUP (1 << __I_DIO_WAKEUP) |
Al Viro | f4e0c30 | 2013-06-11 08:34:36 +0400 | [diff] [blame] | 2174 | #define I_LINKABLE (1 << 10) |
Theodore Ts'o | 0ae45f6 | 2015-02-02 00:37:00 -0500 | [diff] [blame] | 2175 | #define I_DIRTY_TIME (1 << 11) |
| 2176 | #define __I_DIRTY_TIME_EXPIRED 12 |
| 2177 | #define I_DIRTY_TIME_EXPIRED (1 << __I_DIRTY_TIME_EXPIRED) |
Tejun Heo | 682aa8e | 2015-05-28 14:50:53 -0400 | [diff] [blame] | 2178 | #define I_WB_SWITCH (1 << 13) |
Al Viro | c2b6d62 | 2018-06-28 15:53:17 -0400 | [diff] [blame] | 2179 | #define I_OVL_INUSE (1 << 14) |
| 2180 | #define I_CREATING (1 << 15) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | |
Christoph Hellwig | 0e11f64 | 2018-02-21 07:54:49 -0800 | [diff] [blame] | 2182 | #define I_DIRTY_INODE (I_DIRTY_SYNC | I_DIRTY_DATASYNC) |
| 2183 | #define I_DIRTY (I_DIRTY_INODE | I_DIRTY_PAGES) |
Theodore Ts'o | 0ae45f6 | 2015-02-02 00:37:00 -0500 | [diff] [blame] | 2184 | #define I_DIRTY_ALL (I_DIRTY | I_DIRTY_TIME) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2185 | |
| 2186 | extern void __mark_inode_dirty(struct inode *, int); |
| 2187 | static inline void mark_inode_dirty(struct inode *inode) |
| 2188 | { |
| 2189 | __mark_inode_dirty(inode, I_DIRTY); |
| 2190 | } |
| 2191 | |
| 2192 | static inline void mark_inode_dirty_sync(struct inode *inode) |
| 2193 | { |
| 2194 | __mark_inode_dirty(inode, I_DIRTY_SYNC); |
| 2195 | } |
| 2196 | |
Miklos Szeredi | 7ada4db | 2011-11-21 12:11:32 +0100 | [diff] [blame] | 2197 | extern void inc_nlink(struct inode *inode); |
| 2198 | extern void drop_nlink(struct inode *inode); |
| 2199 | extern void clear_nlink(struct inode *inode); |
| 2200 | extern void set_nlink(struct inode *inode, unsigned int nlink); |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 2201 | |
| 2202 | static inline void inode_inc_link_count(struct inode *inode) |
| 2203 | { |
| 2204 | inc_nlink(inode); |
Alexey Dobriyan | 66d2173 | 2006-03-23 03:00:51 -0800 | [diff] [blame] | 2205 | mark_inode_dirty(inode); |
| 2206 | } |
| 2207 | |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 2208 | static inline void inode_dec_link_count(struct inode *inode) |
| 2209 | { |
| 2210 | drop_nlink(inode); |
Alexey Dobriyan | 66d2173 | 2006-03-23 03:00:51 -0800 | [diff] [blame] | 2211 | mark_inode_dirty(inode); |
| 2212 | } |
| 2213 | |
Josef Bacik | c3b2da3 | 2012-03-26 09:59:21 -0400 | [diff] [blame] | 2214 | enum file_time_flags { |
| 2215 | S_ATIME = 1, |
| 2216 | S_MTIME = 2, |
| 2217 | S_CTIME = 4, |
| 2218 | S_VERSION = 8, |
| 2219 | }; |
| 2220 | |
Miklos Szeredi | c671854 | 2018-07-18 15:44:43 +0200 | [diff] [blame] | 2221 | extern bool atime_needs_update(const struct path *, struct inode *); |
Al Viro | badcf2b | 2013-07-16 18:15:46 +0400 | [diff] [blame] | 2222 | extern void touch_atime(const struct path *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2223 | static inline void file_accessed(struct file *file) |
| 2224 | { |
| 2225 | if (!(file->f_flags & O_NOATIME)) |
Al Viro | 68ac123 | 2012-03-15 08:21:57 -0400 | [diff] [blame] | 2226 | touch_atime(&file->f_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2227 | } |
| 2228 | |
Amir Goldstein | e38f7f5 | 2019-06-05 08:04:49 -0700 | [diff] [blame] | 2229 | extern int file_modified(struct file *file); |
| 2230 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2231 | int sync_inode(struct inode *inode, struct writeback_control *wbc); |
Christoph Hellwig | c3765016 | 2010-10-06 10:48:20 +0200 | [diff] [blame] | 2232 | int sync_inode_metadata(struct inode *inode, int wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2234 | struct file_system_type { |
| 2235 | const char *name; |
| 2236 | int fs_flags; |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 2237 | #define FS_REQUIRES_DEV 1 |
| 2238 | #define FS_BINARY_MOUNTDATA 2 |
| 2239 | #define FS_HAS_SUBTYPE 4 |
Eric W. Biederman | 0c55cfc | 2012-07-26 21:42:03 -0700 | [diff] [blame] | 2240 | #define FS_USERNS_MOUNT 8 /* Can be mounted by userns root */ |
Jan Kara | 0b3b094 | 2019-05-15 16:28:34 +0200 | [diff] [blame] | 2241 | #define FS_DISALLOW_NOTIFY_PERM 16 /* Disable fanotify permission events */ |
David Howells | bbc1096 | 2012-10-15 16:40:35 +0100 | [diff] [blame] | 2242 | #define FS_RENAME_DOES_D_MOVE 32768 /* FS will handle d_move() during rename() internally. */ |
Al Viro | f3a09c9 | 2018-12-23 18:55:56 -0500 | [diff] [blame] | 2243 | int (*init_fs_context)(struct fs_context *); |
Al Viro | d7167b1 | 2019-09-07 07:23:15 -0400 | [diff] [blame] | 2244 | const struct fs_parameter_spec *parameters; |
Al Viro | c96e41e | 2010-07-25 00:17:56 +0400 | [diff] [blame] | 2245 | struct dentry *(*mount) (struct file_system_type *, int, |
| 2246 | const char *, void *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2247 | void (*kill_sb) (struct super_block *); |
| 2248 | struct module *owner; |
| 2249 | struct file_system_type * next; |
Al Viro | a516616 | 2011-12-12 22:53:00 -0500 | [diff] [blame] | 2250 | struct hlist_head fs_supers; |
Peter Zijlstra | d475fd4 | 2007-10-15 14:51:31 +0200 | [diff] [blame] | 2251 | |
Ingo Molnar | cf51624 | 2006-07-03 00:25:27 -0700 | [diff] [blame] | 2252 | struct lock_class_key s_lock_key; |
Arjan van de Ven | 897c6ff | 2006-07-03 00:25:28 -0700 | [diff] [blame] | 2253 | struct lock_class_key s_umount_key; |
Roland Dreier | 51ee049 | 2010-04-27 14:23:57 -0700 | [diff] [blame] | 2254 | struct lock_class_key s_vfs_rename_key; |
Jan Kara | 5accdf8 | 2012-06-12 16:20:34 +0200 | [diff] [blame] | 2255 | struct lock_class_key s_writers_key[SB_FREEZE_LEVELS]; |
Peter Zijlstra | d475fd4 | 2007-10-15 14:51:31 +0200 | [diff] [blame] | 2256 | |
| 2257 | struct lock_class_key i_lock_key; |
| 2258 | struct lock_class_key i_mutex_key; |
Peter Zijlstra | 14358e6 | 2007-10-14 01:38:33 +0200 | [diff] [blame] | 2259 | struct lock_class_key i_mutex_dir_key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2260 | }; |
| 2261 | |
Eric W. Biederman | 7f78e03 | 2013-03-02 19:39:14 -0800 | [diff] [blame] | 2262 | #define MODULE_ALIAS_FS(NAME) MODULE_ALIAS("fs-" NAME) |
| 2263 | |
Al Viro | f175f30 | 2017-10-15 00:38:00 -0400 | [diff] [blame] | 2264 | #ifdef CONFIG_BLOCK |
Al Viro | 152a083 | 2010-07-25 00:46:55 +0400 | [diff] [blame] | 2265 | extern struct dentry *mount_bdev(struct file_system_type *fs_type, |
| 2266 | int flags, const char *dev_name, void *data, |
| 2267 | int (*fill_super)(struct super_block *, void *, int)); |
Al Viro | f175f30 | 2017-10-15 00:38:00 -0400 | [diff] [blame] | 2268 | #else |
| 2269 | static inline struct dentry *mount_bdev(struct file_system_type *fs_type, |
| 2270 | int flags, const char *dev_name, void *data, |
| 2271 | int (*fill_super)(struct super_block *, void *, int)) |
| 2272 | { |
| 2273 | return ERR_PTR(-ENODEV); |
| 2274 | } |
| 2275 | #endif |
Al Viro | fc14f2f | 2010-07-25 01:48:30 +0400 | [diff] [blame] | 2276 | extern struct dentry *mount_single(struct file_system_type *fs_type, |
| 2277 | int flags, void *data, |
| 2278 | int (*fill_super)(struct super_block *, void *, int)); |
Al Viro | 3c26ff6 | 2010-07-25 11:46:36 +0400 | [diff] [blame] | 2279 | extern struct dentry *mount_nodev(struct file_system_type *fs_type, |
| 2280 | int flags, void *data, |
| 2281 | int (*fill_super)(struct super_block *, void *, int)); |
Al Viro | ea441d1 | 2011-11-16 21:43:59 -0500 | [diff] [blame] | 2282 | extern struct dentry *mount_subtree(struct vfsmount *mnt, const char *path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 | void generic_shutdown_super(struct super_block *sb); |
Al Viro | f175f30 | 2017-10-15 00:38:00 -0400 | [diff] [blame] | 2284 | #ifdef CONFIG_BLOCK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2285 | void kill_block_super(struct super_block *sb); |
Al Viro | f175f30 | 2017-10-15 00:38:00 -0400 | [diff] [blame] | 2286 | #else |
| 2287 | static inline void kill_block_super(struct super_block *sb) |
| 2288 | { |
| 2289 | BUG(); |
| 2290 | } |
| 2291 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2292 | void kill_anon_super(struct super_block *sb); |
| 2293 | void kill_litter_super(struct super_block *sb); |
| 2294 | void deactivate_super(struct super_block *sb); |
Al Viro | 74dbbdd | 2009-05-06 01:07:50 -0400 | [diff] [blame] | 2295 | void deactivate_locked_super(struct super_block *sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2296 | int set_anon_super(struct super_block *s, void *data); |
Al Viro | cb50b34 | 2018-12-23 17:25:47 -0500 | [diff] [blame] | 2297 | int set_anon_super_fc(struct super_block *s, struct fs_context *fc); |
Al Viro | 0ee5dc6 | 2011-07-07 15:44:25 -0400 | [diff] [blame] | 2298 | int get_anon_bdev(dev_t *); |
| 2299 | void free_anon_bdev(dev_t); |
Al Viro | cb50b34 | 2018-12-23 17:25:47 -0500 | [diff] [blame] | 2300 | struct super_block *sget_fc(struct fs_context *fc, |
| 2301 | int (*test)(struct super_block *, struct fs_context *), |
| 2302 | int (*set)(struct super_block *, struct fs_context *)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2303 | struct super_block *sget(struct file_system_type *type, |
| 2304 | int (*test)(struct super_block *,void *), |
| 2305 | int (*set)(struct super_block *,void *), |
David Howells | 9249e17 | 2012-06-25 12:55:37 +0100 | [diff] [blame] | 2306 | int flags, void *data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2307 | |
| 2308 | /* Alas, no aliases. Too much hassle with bringing module.h everywhere */ |
| 2309 | #define fops_get(fops) \ |
| 2310 | (((fops) && try_module_get((fops)->owner) ? (fops) : NULL)) |
| 2311 | #define fops_put(fops) \ |
| 2312 | do { if (fops) module_put((fops)->owner); } while(0) |
Al Viro | e84f9e5 | 2013-09-22 14:17:15 -0400 | [diff] [blame] | 2313 | /* |
| 2314 | * This one is to be used *ONLY* from ->open() instances. |
| 2315 | * fops must be non-NULL, pinned down *and* module dependencies |
| 2316 | * should be sufficient to pin the caller down as well. |
| 2317 | */ |
| 2318 | #define replace_fops(f, fops) \ |
| 2319 | do { \ |
| 2320 | struct file *__file = (f); \ |
| 2321 | fops_put(__file->f_op); \ |
| 2322 | BUG_ON(!(__file->f_op = (fops))); \ |
| 2323 | } while(0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2324 | |
| 2325 | extern int register_filesystem(struct file_system_type *); |
| 2326 | extern int unregister_filesystem(struct file_system_type *); |
David Howells | d911b45 | 2018-11-01 23:07:26 +0000 | [diff] [blame] | 2327 | extern struct vfsmount *kern_mount(struct file_system_type *); |
Tim Chen | 423e0ab | 2011-07-19 09:32:38 -0700 | [diff] [blame] | 2328 | extern void kern_unmount(struct vfsmount *mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2329 | extern int may_umount_tree(struct vfsmount *); |
| 2330 | extern int may_umount(struct vfsmount *); |
Seunghun Lee | 5e6123f | 2014-09-14 22:15:10 +0900 | [diff] [blame] | 2331 | extern long do_mount(const char *, const char __user *, |
| 2332 | const char *, unsigned long, void *); |
Al Viro | ca71cf7 | 2016-11-20 19:45:28 -0500 | [diff] [blame] | 2333 | extern struct vfsmount *collect_mounts(const struct path *); |
Al Viro | 8aec080 | 2007-06-07 12:20:32 -0400 | [diff] [blame] | 2334 | extern void drop_collected_mounts(struct vfsmount *); |
Al Viro | 1f70713 | 2010-01-30 22:51:25 -0500 | [diff] [blame] | 2335 | extern int iterate_mounts(int (*)(struct vfsmount *, void *), void *, |
| 2336 | struct vfsmount *); |
Al Viro | f0bb5aa | 2016-11-20 20:27:12 -0500 | [diff] [blame] | 2337 | extern int vfs_statfs(const struct path *, struct kstatfs *); |
Al Viro | c8b91ac | 2011-03-12 10:41:39 -0500 | [diff] [blame] | 2338 | extern int user_statfs(const char __user *, struct kstatfs *); |
| 2339 | extern int fd_statfs(int, struct kstatfs *); |
Josef Bacik | 18e9e51 | 2010-03-23 10:34:56 -0400 | [diff] [blame] | 2340 | extern int freeze_super(struct super_block *super); |
| 2341 | extern int thaw_super(struct super_block *super); |
Al Viro | 02125a8 | 2011-12-05 08:43:34 -0500 | [diff] [blame] | 2342 | extern bool our_mnt(struct vfsmount *mnt); |
Jan Kara | fca3934 | 2017-04-12 12:24:28 +0200 | [diff] [blame] | 2343 | extern __printf(2, 3) |
| 2344 | int super_setup_bdi_name(struct super_block *sb, char *fmt, ...); |
| 2345 | extern int super_setup_bdi(struct super_block *sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2346 | |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 2347 | extern int current_umask(void); |
| 2348 | |
J. Bruce Fields | 5a14696 | 2012-08-28 07:50:40 -0700 | [diff] [blame] | 2349 | extern void ihold(struct inode * inode); |
| 2350 | extern void iput(struct inode *); |
Deepa Dinamani | 95582b0 | 2018-05-08 19:36:02 -0700 | [diff] [blame] | 2351 | extern int generic_update_time(struct inode *, struct timespec64 *, int); |
J. Bruce Fields | 5a14696 | 2012-08-28 07:50:40 -0700 | [diff] [blame] | 2352 | |
Miklos Szeredi | f87fd4c | 2006-01-16 22:14:23 -0800 | [diff] [blame] | 2353 | /* /sys/fs */ |
Greg Kroah-Hartman | 00d2666 | 2007-10-29 14:17:23 -0600 | [diff] [blame] | 2354 | extern struct kobject *fs_kobj; |
Miklos Szeredi | f87fd4c | 2006-01-16 22:14:23 -0800 | [diff] [blame] | 2355 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2356 | #define MAX_RW_COUNT (INT_MAX & PAGE_MASK) |
Thomas Petazzoni | bfcd17a | 2008-08-06 15:12:22 +0200 | [diff] [blame] | 2357 | |
Jeff Layton | 9e8925b | 2015-11-16 09:49:34 -0500 | [diff] [blame] | 2358 | #ifdef CONFIG_MANDATORY_FILE_LOCKING |
Jeff Layton | d7a0698 | 2014-03-10 09:54:15 -0400 | [diff] [blame] | 2359 | extern int locks_mandatory_locked(struct file *); |
Christoph Hellwig | acc1557 | 2015-12-03 12:59:49 +0100 | [diff] [blame] | 2360 | extern int locks_mandatory_area(struct inode *, struct file *, loff_t, loff_t, unsigned char); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2361 | |
| 2362 | /* |
| 2363 | * Candidates for mandatory locking have the setgid bit set |
| 2364 | * but no group execute bit - an otherwise meaningless combination. |
| 2365 | */ |
Pavel Emelyanov | a16877c | 2007-10-01 14:41:11 -0700 | [diff] [blame] | 2366 | |
| 2367 | static inline int __mandatory_lock(struct inode *ino) |
| 2368 | { |
| 2369 | return (ino->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID; |
| 2370 | } |
| 2371 | |
| 2372 | /* |
David Howells | e462ec5 | 2017-07-17 08:45:35 +0100 | [diff] [blame] | 2373 | * ... and these candidates should be on SB_MANDLOCK mounted fs, |
Pavel Emelyanov | a16877c | 2007-10-01 14:41:11 -0700 | [diff] [blame] | 2374 | * otherwise these will be advisory locks |
| 2375 | */ |
| 2376 | |
| 2377 | static inline int mandatory_lock(struct inode *ino) |
| 2378 | { |
| 2379 | return IS_MANDLOCK(ino) && __mandatory_lock(ino); |
| 2380 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2381 | |
Jeff Layton | d7a0698 | 2014-03-10 09:54:15 -0400 | [diff] [blame] | 2382 | static inline int locks_verify_locked(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2383 | { |
Miklos Szeredi | c568d68 | 2016-09-16 12:44:20 +0200 | [diff] [blame] | 2384 | if (mandatory_lock(locks_inode(file))) |
Jeff Layton | d7a0698 | 2014-03-10 09:54:15 -0400 | [diff] [blame] | 2385 | return locks_mandatory_locked(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2386 | return 0; |
| 2387 | } |
| 2388 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2389 | static inline int locks_verify_truncate(struct inode *inode, |
Christoph Hellwig | acc1557 | 2015-12-03 12:59:49 +0100 | [diff] [blame] | 2390 | struct file *f, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2391 | loff_t size) |
| 2392 | { |
Christoph Hellwig | acc1557 | 2015-12-03 12:59:49 +0100 | [diff] [blame] | 2393 | if (!inode->i_flctx || !mandatory_lock(inode)) |
| 2394 | return 0; |
| 2395 | |
| 2396 | if (size < inode->i_size) { |
| 2397 | return locks_mandatory_area(inode, f, size, inode->i_size - 1, |
| 2398 | F_WRLCK); |
| 2399 | } else { |
| 2400 | return locks_mandatory_area(inode, f, inode->i_size, size - 1, |
| 2401 | F_WRLCK); |
| 2402 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2403 | } |
| 2404 | |
Jeff Layton | 9e8925b | 2015-11-16 09:49:34 -0500 | [diff] [blame] | 2405 | #else /* !CONFIG_MANDATORY_FILE_LOCKING */ |
| 2406 | |
| 2407 | static inline int locks_mandatory_locked(struct file *file) |
| 2408 | { |
| 2409 | return 0; |
| 2410 | } |
| 2411 | |
Linus Torvalds | fce205e | 2016-01-12 16:30:34 -0800 | [diff] [blame] | 2412 | static inline int locks_mandatory_area(struct inode *inode, struct file *filp, |
| 2413 | loff_t start, loff_t end, unsigned char type) |
Jeff Layton | 9e8925b | 2015-11-16 09:49:34 -0500 | [diff] [blame] | 2414 | { |
| 2415 | return 0; |
| 2416 | } |
| 2417 | |
| 2418 | static inline int __mandatory_lock(struct inode *inode) |
| 2419 | { |
| 2420 | return 0; |
| 2421 | } |
| 2422 | |
| 2423 | static inline int mandatory_lock(struct inode *inode) |
| 2424 | { |
| 2425 | return 0; |
| 2426 | } |
| 2427 | |
| 2428 | static inline int locks_verify_locked(struct file *file) |
| 2429 | { |
| 2430 | return 0; |
| 2431 | } |
| 2432 | |
| 2433 | static inline int locks_verify_truncate(struct inode *inode, struct file *filp, |
| 2434 | size_t size) |
| 2435 | { |
| 2436 | return 0; |
| 2437 | } |
| 2438 | |
| 2439 | #endif /* CONFIG_MANDATORY_FILE_LOCKING */ |
| 2440 | |
| 2441 | |
| 2442 | #ifdef CONFIG_FILE_LOCKING |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2443 | static inline int break_lease(struct inode *inode, unsigned int mode) |
| 2444 | { |
Jeff Layton | 24cbe78 | 2014-02-03 12:13:06 -0500 | [diff] [blame] | 2445 | /* |
| 2446 | * Since this check is lockless, we must ensure that any refcounts |
Jeff Layton | 8116bf4 | 2015-01-21 20:44:01 -0500 | [diff] [blame] | 2447 | * taken are done before checking i_flctx->flc_lease. Otherwise, we |
| 2448 | * could end up racing with tasks trying to set a new lease on this |
| 2449 | * file. |
Jeff Layton | 24cbe78 | 2014-02-03 12:13:06 -0500 | [diff] [blame] | 2450 | */ |
| 2451 | smp_mb(); |
Jeff Layton | 8634b51 | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 2452 | if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease)) |
J. Bruce Fields | df4e8d2 | 2012-03-05 13:18:59 -0500 | [diff] [blame] | 2453 | return __break_lease(inode, mode, FL_LEASE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2454 | return 0; |
| 2455 | } |
J. Bruce Fields | df4e8d2 | 2012-03-05 13:18:59 -0500 | [diff] [blame] | 2456 | |
| 2457 | static inline int break_deleg(struct inode *inode, unsigned int mode) |
| 2458 | { |
Jeff Layton | 962bd40 | 2014-06-10 12:24:40 -0400 | [diff] [blame] | 2459 | /* |
| 2460 | * Since this check is lockless, we must ensure that any refcounts |
Jeff Layton | 8116bf4 | 2015-01-21 20:44:01 -0500 | [diff] [blame] | 2461 | * taken are done before checking i_flctx->flc_lease. Otherwise, we |
| 2462 | * could end up racing with tasks trying to set a new lease on this |
| 2463 | * file. |
Jeff Layton | 962bd40 | 2014-06-10 12:24:40 -0400 | [diff] [blame] | 2464 | */ |
| 2465 | smp_mb(); |
Jeff Layton | 8634b51 | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 2466 | if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease)) |
J. Bruce Fields | df4e8d2 | 2012-03-05 13:18:59 -0500 | [diff] [blame] | 2467 | return __break_lease(inode, mode, FL_DELEG); |
| 2468 | return 0; |
| 2469 | } |
| 2470 | |
J. Bruce Fields | 5a14696 | 2012-08-28 07:50:40 -0700 | [diff] [blame] | 2471 | static inline int try_break_deleg(struct inode *inode, struct inode **delegated_inode) |
| 2472 | { |
| 2473 | int ret; |
| 2474 | |
| 2475 | ret = break_deleg(inode, O_WRONLY|O_NONBLOCK); |
| 2476 | if (ret == -EWOULDBLOCK && delegated_inode) { |
| 2477 | *delegated_inode = inode; |
| 2478 | ihold(inode); |
| 2479 | } |
| 2480 | return ret; |
| 2481 | } |
| 2482 | |
| 2483 | static inline int break_deleg_wait(struct inode **delegated_inode) |
| 2484 | { |
| 2485 | int ret; |
| 2486 | |
| 2487 | ret = break_deleg(*delegated_inode, O_WRONLY); |
| 2488 | iput(*delegated_inode); |
| 2489 | *delegated_inode = NULL; |
| 2490 | return ret; |
| 2491 | } |
| 2492 | |
Christoph Hellwig | 11afe9f | 2015-01-21 19:17:03 +0100 | [diff] [blame] | 2493 | static inline int break_layout(struct inode *inode, bool wait) |
| 2494 | { |
| 2495 | smp_mb(); |
| 2496 | if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease)) |
| 2497 | return __break_lease(inode, |
| 2498 | wait ? O_WRONLY : O_WRONLY | O_NONBLOCK, |
| 2499 | FL_LAYOUT); |
| 2500 | return 0; |
| 2501 | } |
| 2502 | |
Thomas Petazzoni | bfcd17a | 2008-08-06 15:12:22 +0200 | [diff] [blame] | 2503 | #else /* !CONFIG_FILE_LOCKING */ |
Steven Whitehouse | af5df56 | 2009-01-20 10:29:46 +0000 | [diff] [blame] | 2504 | static inline int break_lease(struct inode *inode, unsigned int mode) |
| 2505 | { |
| 2506 | return 0; |
| 2507 | } |
| 2508 | |
J. Bruce Fields | df4e8d2 | 2012-03-05 13:18:59 -0500 | [diff] [blame] | 2509 | static inline int break_deleg(struct inode *inode, unsigned int mode) |
| 2510 | { |
| 2511 | return 0; |
| 2512 | } |
J. Bruce Fields | 5a14696 | 2012-08-28 07:50:40 -0700 | [diff] [blame] | 2513 | |
| 2514 | static inline int try_break_deleg(struct inode *inode, struct inode **delegated_inode) |
| 2515 | { |
| 2516 | return 0; |
| 2517 | } |
| 2518 | |
| 2519 | static inline int break_deleg_wait(struct inode **delegated_inode) |
| 2520 | { |
| 2521 | BUG(); |
| 2522 | return 0; |
| 2523 | } |
| 2524 | |
Christoph Hellwig | 11afe9f | 2015-01-21 19:17:03 +0100 | [diff] [blame] | 2525 | static inline int break_layout(struct inode *inode, bool wait) |
| 2526 | { |
| 2527 | return 0; |
| 2528 | } |
| 2529 | |
Thomas Petazzoni | bfcd17a | 2008-08-06 15:12:22 +0200 | [diff] [blame] | 2530 | #endif /* CONFIG_FILE_LOCKING */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2531 | |
| 2532 | /* fs/open.c */ |
Jeff Layton | adb5c24 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 2533 | struct audit_names; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 2534 | struct filename { |
Jeff Layton | adb5c24 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 2535 | const char *name; /* pointer to actual string */ |
| 2536 | const __user char *uptr; /* original userland pointer */ |
Paul Moore | 55422d0 | 2015-01-22 00:00:23 -0500 | [diff] [blame] | 2537 | int refcnt; |
Rasmus Villemoes | 1c949843 | 2018-03-01 00:19:21 +0100 | [diff] [blame] | 2538 | struct audit_names *aname; |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 2539 | const char iname[]; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 2540 | }; |
Rasmus Villemoes | f1fffbd | 2019-03-07 16:27:07 -0800 | [diff] [blame] | 2541 | static_assert(offsetof(struct filename, iname) % sizeof(long) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2542 | |
Al Viro | 7df818b | 2016-03-25 14:24:09 -0400 | [diff] [blame] | 2543 | extern long vfs_truncate(const struct path *, loff_t); |
NeilBrown | 4a30131 | 2006-01-08 01:02:39 -0800 | [diff] [blame] | 2544 | extern int do_truncate(struct dentry *, loff_t start, unsigned int time_attrs, |
| 2545 | struct file *filp); |
Anna Schumaker | 72c72bd | 2014-11-07 14:44:25 -0500 | [diff] [blame] | 2546 | extern int vfs_fallocate(struct file *file, int mode, loff_t offset, |
Ankit Jain | 3e63cbb | 2009-06-19 14:28:07 -0400 | [diff] [blame] | 2547 | loff_t len); |
Jason Uhlenkott | 8e8a140 | 2007-10-20 03:16:18 +0200 | [diff] [blame] | 2548 | extern long do_sys_open(int dfd, const char __user *filename, int flags, |
Al Viro | a218d0f | 2011-11-21 14:59:34 -0500 | [diff] [blame] | 2549 | umode_t mode); |
Jeff Layton | 669abf4 | 2012-10-10 16:43:10 -0400 | [diff] [blame] | 2550 | extern struct file *file_open_name(struct filename *, int, umode_t); |
Al Viro | a218d0f | 2011-11-21 14:59:34 -0500 | [diff] [blame] | 2551 | extern struct file *filp_open(const char *, int, umode_t); |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2552 | extern struct file *file_open_root(struct dentry *, struct vfsmount *, |
Jann Horn | 378c652 | 2016-03-22 14:25:36 -0700 | [diff] [blame] | 2553 | const char *, int, umode_t); |
Al Viro | 765927b | 2012-06-26 21:58:53 +0400 | [diff] [blame] | 2554 | extern struct file * dentry_open(const struct path *, int, const struct cred *); |
Al Viro | 2abc77a | 2018-07-12 11:18:42 -0400 | [diff] [blame] | 2555 | extern struct file * open_with_fake_path(const struct path *, int, |
| 2556 | struct inode*, const struct cred *); |
Al Viro | 19f391e | 2018-06-08 11:19:32 -0400 | [diff] [blame] | 2557 | static inline struct file *file_clone_open(struct file *file) |
| 2558 | { |
| 2559 | return dentry_open(&file->f_path, file->f_flags, file->f_cred); |
| 2560 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2561 | extern int filp_close(struct file *, fl_owner_t id); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 2562 | |
David Drysdale | 51f39a1 | 2014-12-12 16:57:29 -0800 | [diff] [blame] | 2563 | extern struct filename *getname_flags(const char __user *, int, int *); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 2564 | extern struct filename *getname(const char __user *); |
Linus Torvalds | c4ad8f9 | 2014-02-05 12:54:53 -0800 | [diff] [blame] | 2565 | extern struct filename *getname_kernel(const char *); |
Paul Moore | 55422d0 | 2015-01-22 00:00:23 -0500 | [diff] [blame] | 2566 | extern void putname(struct filename *name); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 2567 | |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2568 | extern int finish_open(struct file *file, struct dentry *dentry, |
Al Viro | be12af3 | 2018-06-08 11:44:56 -0400 | [diff] [blame] | 2569 | int (*open)(struct inode *, struct file *)); |
Al Viro | e45198a | 2012-06-10 06:48:09 -0400 | [diff] [blame] | 2570 | extern int finish_no_open(struct file *file, struct dentry *dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2571 | |
| 2572 | /* fs/dcache.c */ |
| 2573 | extern void __init vfs_caches_init_early(void); |
Mel Gorman | 4248b0d | 2015-08-06 15:46:20 -0700 | [diff] [blame] | 2574 | extern void __init vfs_caches_init(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | |
Christoph Lameter | b86c089 | 2006-12-06 20:32:57 -0800 | [diff] [blame] | 2576 | extern struct kmem_cache *names_cachep; |
| 2577 | |
Jeff Layton | a608ca2 | 2012-10-10 15:25:26 -0400 | [diff] [blame] | 2578 | #define __getname() kmem_cache_alloc(names_cachep, GFP_KERNEL) |
Vegard Nossum | 3446a8a | 2009-05-16 11:22:14 +0200 | [diff] [blame] | 2579 | #define __putname(name) kmem_cache_free(names_cachep, (void *)(name)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2580 | |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 2581 | #ifdef CONFIG_BLOCK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2582 | extern int register_blkdev(unsigned int, const char *); |
Akinobu Mita | f448024 | 2007-07-17 04:03:47 -0700 | [diff] [blame] | 2583 | extern void unregister_blkdev(unsigned int, const char *); |
Jan Kara | f44f1ab | 2017-02-02 15:56:49 +0100 | [diff] [blame] | 2584 | extern void bdev_unhash_inode(dev_t dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2585 | extern struct block_device *bdget(dev_t); |
Alan Jenkins | dddac6a | 2009-07-29 21:07:55 +0200 | [diff] [blame] | 2586 | extern struct block_device *bdgrab(struct block_device *bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2587 | extern void bd_set_size(struct block_device *, loff_t size); |
| 2588 | extern void bd_forget(struct inode *inode); |
| 2589 | extern void bdput(struct block_device *); |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 2590 | extern void invalidate_bdev(struct block_device *); |
Jan Kara | 5c0d6b6 | 2012-07-03 16:45:31 +0200 | [diff] [blame] | 2591 | extern void iterate_bdevs(void (*)(struct block_device *, void *), void *); |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 2592 | extern int sync_blockdev(struct block_device *bdev); |
Al Viro | ff01bb4 | 2011-09-16 02:31:11 -0400 | [diff] [blame] | 2593 | extern void kill_bdev(struct block_device *); |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 2594 | extern struct super_block *freeze_bdev(struct block_device *); |
Eric Sandeen | c2d7543 | 2009-03-31 15:23:46 -0700 | [diff] [blame] | 2595 | extern void emergency_thaw_all(void); |
Mateusz Guzik | 08fdc8a | 2017-10-03 18:17:41 +0200 | [diff] [blame] | 2596 | extern void emergency_thaw_bdev(struct super_block *sb); |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 2597 | extern int thaw_bdev(struct block_device *bdev, struct super_block *sb); |
| 2598 | extern int fsync_bdev(struct block_device *); |
Tejun Heo | a212b10 | 2015-05-22 17:13:33 -0400 | [diff] [blame] | 2599 | |
| 2600 | extern struct super_block *blockdev_superblock; |
| 2601 | |
| 2602 | static inline bool sb_is_blkdev_sb(struct super_block *sb) |
| 2603 | { |
| 2604 | return sb == blockdev_superblock; |
| 2605 | } |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 2606 | #else |
| 2607 | static inline void bd_forget(struct inode *inode) {} |
Al Viro | 47e4491 | 2009-04-01 07:07:16 -0400 | [diff] [blame] | 2608 | static inline int sync_blockdev(struct block_device *bdev) { return 0; } |
Al Viro | ff01bb4 | 2011-09-16 02:31:11 -0400 | [diff] [blame] | 2609 | static inline void kill_bdev(struct block_device *bdev) {} |
Al Viro | 47e4491 | 2009-04-01 07:07:16 -0400 | [diff] [blame] | 2610 | static inline void invalidate_bdev(struct block_device *bdev) {} |
| 2611 | |
| 2612 | static inline struct super_block *freeze_bdev(struct block_device *sb) |
| 2613 | { |
| 2614 | return NULL; |
| 2615 | } |
| 2616 | |
| 2617 | static inline int thaw_bdev(struct block_device *bdev, struct super_block *sb) |
| 2618 | { |
| 2619 | return 0; |
| 2620 | } |
Jan Kara | 5c0d6b6 | 2012-07-03 16:45:31 +0200 | [diff] [blame] | 2621 | |
Mateusz Guzik | 08fdc8a | 2017-10-03 18:17:41 +0200 | [diff] [blame] | 2622 | static inline int emergency_thaw_bdev(struct super_block *sb) |
| 2623 | { |
| 2624 | return 0; |
| 2625 | } |
| 2626 | |
Jan Kara | 5c0d6b6 | 2012-07-03 16:45:31 +0200 | [diff] [blame] | 2627 | static inline void iterate_bdevs(void (*f)(struct block_device *, void *), void *arg) |
| 2628 | { |
| 2629 | } |
Jan Kara | a885599 | 2013-07-09 22:36:45 +0800 | [diff] [blame] | 2630 | |
Yaowei Bai | 3e004ee | 2015-11-17 14:40:09 +0800 | [diff] [blame] | 2631 | static inline bool sb_is_blkdev_sb(struct super_block *sb) |
Jan Kara | a885599 | 2013-07-09 22:36:45 +0800 | [diff] [blame] | 2632 | { |
Yaowei Bai | 3e004ee | 2015-11-17 14:40:09 +0800 | [diff] [blame] | 2633 | return false; |
Jan Kara | a885599 | 2013-07-09 22:36:45 +0800 | [diff] [blame] | 2634 | } |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 2635 | #endif |
Jan Kara | 60b0680 | 2009-04-27 16:43:53 +0200 | [diff] [blame] | 2636 | extern int sync_filesystem(struct super_block *); |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 2637 | extern const struct file_operations def_blk_fops; |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 2638 | extern const struct file_operations def_chr_fops; |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 2639 | #ifdef CONFIG_BLOCK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2640 | extern int ioctl_by_bdev(struct block_device *, unsigned, unsigned long); |
Al Viro | 56b26ad | 2008-09-19 03:17:36 -0400 | [diff] [blame] | 2641 | extern int blkdev_ioctl(struct block_device *, fmode_t, unsigned, unsigned long); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2642 | extern long compat_blkdev_ioctl(struct file *, unsigned, unsigned long); |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 2643 | extern int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder); |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 2644 | extern struct block_device *blkdev_get_by_path(const char *path, fmode_t mode, |
| 2645 | void *holder); |
| 2646 | extern struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, |
| 2647 | void *holder); |
Jan Kara | 89e524c0 | 2019-07-30 13:10:14 +0200 | [diff] [blame] | 2648 | extern struct block_device *bd_start_claiming(struct block_device *bdev, |
| 2649 | void *holder); |
| 2650 | extern void bd_finish_claiming(struct block_device *bdev, |
| 2651 | struct block_device *whole, void *holder); |
| 2652 | extern void bd_abort_claiming(struct block_device *bdev, |
| 2653 | struct block_device *whole, void *holder); |
Al Viro | 4385bab | 2013-05-05 22:11:03 -0400 | [diff] [blame] | 2654 | extern void blkdev_put(struct block_device *bdev, fmode_t mode); |
Jarod Wilson | be32417 | 2015-05-06 12:26:22 +0800 | [diff] [blame] | 2655 | |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 2656 | #ifdef CONFIG_SYSFS |
Tejun Heo | e09b457 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 2657 | extern int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk); |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 2658 | extern void bd_unlink_disk_holder(struct block_device *bdev, |
| 2659 | struct gendisk *disk); |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 2660 | #else |
Tejun Heo | e09b457 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 2661 | static inline int bd_link_disk_holder(struct block_device *bdev, |
| 2662 | struct gendisk *disk) |
| 2663 | { |
| 2664 | return 0; |
| 2665 | } |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 2666 | static inline void bd_unlink_disk_holder(struct block_device *bdev, |
| 2667 | struct gendisk *disk) |
| 2668 | { |
| 2669 | } |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 2670 | #endif |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 2671 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2672 | |
| 2673 | /* fs/char_dev.c */ |
Logan Gunthorpe | 8a932f7 | 2017-06-15 14:05:21 -0600 | [diff] [blame] | 2674 | #define CHRDEV_MAJOR_MAX 512 |
Linus Walleij | 49db08c | 2016-02-19 15:36:07 +0100 | [diff] [blame] | 2675 | /* Marks the bottom of the first segment of free char majors */ |
| 2676 | #define CHRDEV_MAJOR_DYN_END 234 |
Logan Gunthorpe | a5d31a3 | 2017-06-15 14:05:20 -0600 | [diff] [blame] | 2677 | /* Marks the top and bottom of the second segment of free char majors */ |
| 2678 | #define CHRDEV_MAJOR_DYN_EXT_START 511 |
| 2679 | #define CHRDEV_MAJOR_DYN_EXT_END 384 |
| 2680 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | extern int alloc_chrdev_region(dev_t *, unsigned, unsigned, const char *); |
| 2682 | extern int register_chrdev_region(dev_t, unsigned, const char *); |
Tejun Heo | 1905b1b | 2009-08-06 18:13:23 +0900 | [diff] [blame] | 2683 | extern int __register_chrdev(unsigned int major, unsigned int baseminor, |
| 2684 | unsigned int count, const char *name, |
| 2685 | const struct file_operations *fops); |
| 2686 | extern void __unregister_chrdev(unsigned int major, unsigned int baseminor, |
| 2687 | unsigned int count, const char *name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2688 | extern void unregister_chrdev_region(dev_t, unsigned); |
Joe Korty | 68eef3b | 2006-03-31 02:30:32 -0800 | [diff] [blame] | 2689 | extern void chrdev_show(struct seq_file *,off_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2690 | |
Tejun Heo | 1905b1b | 2009-08-06 18:13:23 +0900 | [diff] [blame] | 2691 | static inline int register_chrdev(unsigned int major, const char *name, |
| 2692 | const struct file_operations *fops) |
| 2693 | { |
| 2694 | return __register_chrdev(major, 0, 256, name, fops); |
| 2695 | } |
| 2696 | |
| 2697 | static inline void unregister_chrdev(unsigned int major, const char *name) |
| 2698 | { |
| 2699 | __unregister_chrdev(major, 0, 256, name); |
| 2700 | } |
| 2701 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2702 | /* fs/block_dev.c */ |
| 2703 | #define BDEVNAME_SIZE 32 /* Largest string for a blockdev identifier */ |
Tejun Heo | 1f01429 | 2008-08-25 19:47:23 +0900 | [diff] [blame] | 2704 | #define BDEVT_SIZE 10 /* Largest string for MAJ:MIN for blkdev */ |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 2705 | |
| 2706 | #ifdef CONFIG_BLOCK |
Logan Gunthorpe | 133d55c | 2017-06-16 17:48:21 -0600 | [diff] [blame] | 2707 | #define BLKDEV_MAJOR_MAX 512 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2708 | extern const char *bdevname(struct block_device *bdev, char *buffer); |
| 2709 | extern struct block_device *lookup_bdev(const char *); |
Joe Korty | 68eef3b | 2006-03-31 02:30:32 -0800 | [diff] [blame] | 2710 | extern void blkdev_show(struct seq_file *,off_t); |
Al Viro | 30c40d2 | 2008-02-22 19:50:45 -0500 | [diff] [blame] | 2711 | |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 2712 | #else |
Logan Gunthorpe | 133d55c | 2017-06-16 17:48:21 -0600 | [diff] [blame] | 2713 | #define BLKDEV_MAJOR_MAX 0 |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 2714 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2715 | |
| 2716 | extern void init_special_inode(struct inode *, umode_t, dev_t); |
| 2717 | |
| 2718 | /* Invalid inode operations -- fs/bad_inode.c */ |
| 2719 | extern void make_bad_inode(struct inode *); |
Yaowei Bai | 0e3ef1f | 2015-11-19 21:00:11 +0800 | [diff] [blame] | 2720 | extern bool is_bad_inode(struct inode *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2721 | |
Jens Axboe | c11f0c0 | 2016-08-05 08:11:04 -0600 | [diff] [blame] | 2722 | #ifdef CONFIG_BLOCK |
Andrew Patterson | 0c002c2 | 2008-09-04 14:27:20 -0600 | [diff] [blame] | 2723 | extern int revalidate_disk(struct gendisk *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2724 | extern int check_disk_change(struct block_device *); |
NeilBrown | 93b270f | 2011-02-24 17:25:47 +1100 | [diff] [blame] | 2725 | extern int __invalidate_device(struct block_device *, bool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2726 | extern int invalidate_partition(struct gendisk *, int); |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 2727 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2728 | unsigned long invalidate_mapping_pages(struct address_space *mapping, |
| 2729 | pgoff_t start, pgoff_t end); |
Anton Altaparmakov | 54bc485 | 2007-02-10 01:45:38 -0800 | [diff] [blame] | 2730 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2731 | static inline void invalidate_remote_inode(struct inode *inode) |
| 2732 | { |
| 2733 | if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || |
| 2734 | S_ISLNK(inode->i_mode)) |
Andrew Morton | fc0ecff | 2007-02-10 01:45:39 -0800 | [diff] [blame] | 2735 | invalidate_mapping_pages(inode->i_mapping, 0, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2736 | } |
| 2737 | extern int invalidate_inode_pages2(struct address_space *mapping); |
| 2738 | extern int invalidate_inode_pages2_range(struct address_space *mapping, |
| 2739 | pgoff_t start, pgoff_t end); |
| 2740 | extern int write_inode_now(struct inode *, int); |
| 2741 | extern int filemap_fdatawrite(struct address_space *); |
| 2742 | extern int filemap_flush(struct address_space *); |
Jeff Layton | 76341ca | 2017-07-06 07:02:22 -0400 | [diff] [blame] | 2743 | extern int filemap_fdatawait_keep_errors(struct address_space *mapping); |
Jan Kara | d3bccb6f | 2009-08-17 19:30:27 +0200 | [diff] [blame] | 2744 | extern int filemap_fdatawait_range(struct address_space *, loff_t lstart, |
| 2745 | loff_t lend); |
Ross Zwisler | aa0bfcd | 2019-06-20 17:05:37 -0400 | [diff] [blame] | 2746 | extern int filemap_fdatawait_range_keep_errors(struct address_space *mapping, |
| 2747 | loff_t start_byte, loff_t end_byte); |
Jeff Layton | ffb959b | 2017-07-31 10:29:38 -0400 | [diff] [blame] | 2748 | |
| 2749 | static inline int filemap_fdatawait(struct address_space *mapping) |
| 2750 | { |
| 2751 | return filemap_fdatawait_range(mapping, 0, LLONG_MAX); |
| 2752 | } |
| 2753 | |
Goldwyn Rodrigues | 7fc9e47 | 2017-06-20 07:05:41 -0500 | [diff] [blame] | 2754 | extern bool filemap_range_has_page(struct address_space *, loff_t lstart, |
| 2755 | loff_t lend); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2756 | extern int filemap_write_and_wait_range(struct address_space *mapping, |
| 2757 | loff_t lstart, loff_t lend); |
Andrew Morton | ebcf28e | 2006-03-24 03:18:04 -0800 | [diff] [blame] | 2758 | extern int __filemap_fdatawrite_range(struct address_space *mapping, |
| 2759 | loff_t start, loff_t end, int sync_mode); |
Jan Kara | f4c0a0f | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2760 | extern int filemap_fdatawrite_range(struct address_space *mapping, |
| 2761 | loff_t start, loff_t end); |
Miklos Szeredi | d72d9e2 | 2016-07-29 14:10:57 +0200 | [diff] [blame] | 2762 | extern int filemap_check_errors(struct address_space *mapping); |
Jeff Layton | 5660e13 | 2017-07-06 07:02:25 -0400 | [diff] [blame] | 2763 | extern void __filemap_set_wb_err(struct address_space *mapping, int err); |
Jeff Layton | a823e45 | 2017-07-28 07:24:43 -0400 | [diff] [blame] | 2764 | |
Ira Weiny | ddf8f37 | 2020-01-30 22:12:07 -0800 | [diff] [blame] | 2765 | static inline int filemap_write_and_wait(struct address_space *mapping) |
| 2766 | { |
| 2767 | return filemap_write_and_wait_range(mapping, 0, LLONG_MAX); |
| 2768 | } |
| 2769 | |
Jeff Layton | a823e45 | 2017-07-28 07:24:43 -0400 | [diff] [blame] | 2770 | extern int __must_check file_fdatawait_range(struct file *file, loff_t lstart, |
| 2771 | loff_t lend); |
Jeff Layton | 5660e13 | 2017-07-06 07:02:25 -0400 | [diff] [blame] | 2772 | extern int __must_check file_check_and_advance_wb_err(struct file *file); |
| 2773 | extern int __must_check file_write_and_wait_range(struct file *file, |
| 2774 | loff_t start, loff_t end); |
| 2775 | |
Jeff Layton | a823e45 | 2017-07-28 07:24:43 -0400 | [diff] [blame] | 2776 | static inline int file_write_and_wait(struct file *file) |
| 2777 | { |
| 2778 | return file_write_and_wait_range(file, 0, LLONG_MAX); |
| 2779 | } |
| 2780 | |
Jeff Layton | 5660e13 | 2017-07-06 07:02:25 -0400 | [diff] [blame] | 2781 | /** |
| 2782 | * filemap_set_wb_err - set a writeback error on an address_space |
| 2783 | * @mapping: mapping in which to set writeback error |
| 2784 | * @err: error to be set in mapping |
| 2785 | * |
| 2786 | * When writeback fails in some way, we must record that error so that |
| 2787 | * userspace can be informed when fsync and the like are called. We endeavor |
| 2788 | * to report errors on any file that was open at the time of the error. Some |
| 2789 | * internal callers also need to know when writeback errors have occurred. |
| 2790 | * |
| 2791 | * When a writeback error occurs, most filesystems will want to call |
| 2792 | * filemap_set_wb_err to record the error in the mapping so that it will be |
| 2793 | * automatically reported whenever fsync is called on the file. |
Jeff Layton | 5660e13 | 2017-07-06 07:02:25 -0400 | [diff] [blame] | 2794 | */ |
| 2795 | static inline void filemap_set_wb_err(struct address_space *mapping, int err) |
| 2796 | { |
| 2797 | /* Fastpath for common case of no error */ |
| 2798 | if (unlikely(err)) |
| 2799 | __filemap_set_wb_err(mapping, err); |
| 2800 | } |
| 2801 | |
| 2802 | /** |
| 2803 | * filemap_check_wb_error - has an error occurred since the mark was sampled? |
| 2804 | * @mapping: mapping to check for writeback errors |
| 2805 | * @since: previously-sampled errseq_t |
| 2806 | * |
| 2807 | * Grab the errseq_t value from the mapping, and see if it has changed "since" |
| 2808 | * the given value was sampled. |
| 2809 | * |
| 2810 | * If it has then report the latest error set, otherwise return 0. |
| 2811 | */ |
| 2812 | static inline int filemap_check_wb_err(struct address_space *mapping, |
| 2813 | errseq_t since) |
| 2814 | { |
| 2815 | return errseq_check(&mapping->wb_err, since); |
| 2816 | } |
| 2817 | |
| 2818 | /** |
| 2819 | * filemap_sample_wb_err - sample the current errseq_t to test for later errors |
| 2820 | * @mapping: mapping to be sampled |
| 2821 | * |
| 2822 | * Writeback errors are always reported relative to a particular sample point |
| 2823 | * in the past. This function provides those sample points. |
| 2824 | */ |
| 2825 | static inline errseq_t filemap_sample_wb_err(struct address_space *mapping) |
| 2826 | { |
| 2827 | return errseq_sample(&mapping->wb_err); |
| 2828 | } |
| 2829 | |
Song Liu | 09d91cd | 2019-09-23 15:38:03 -0700 | [diff] [blame] | 2830 | static inline int filemap_nr_thps(struct address_space *mapping) |
| 2831 | { |
| 2832 | #ifdef CONFIG_READ_ONLY_THP_FOR_FS |
| 2833 | return atomic_read(&mapping->nr_thps); |
| 2834 | #else |
| 2835 | return 0; |
| 2836 | #endif |
| 2837 | } |
| 2838 | |
| 2839 | static inline void filemap_nr_thps_inc(struct address_space *mapping) |
| 2840 | { |
| 2841 | #ifdef CONFIG_READ_ONLY_THP_FOR_FS |
| 2842 | atomic_inc(&mapping->nr_thps); |
| 2843 | #else |
| 2844 | WARN_ON_ONCE(1); |
| 2845 | #endif |
| 2846 | } |
| 2847 | |
| 2848 | static inline void filemap_nr_thps_dec(struct address_space *mapping) |
| 2849 | { |
| 2850 | #ifdef CONFIG_READ_ONLY_THP_FOR_FS |
| 2851 | atomic_dec(&mapping->nr_thps); |
| 2852 | #else |
| 2853 | WARN_ON_ONCE(1); |
| 2854 | #endif |
| 2855 | } |
| 2856 | |
Christoph Hellwig | 8018ab0 | 2010-03-22 17:32:25 +0100 | [diff] [blame] | 2857 | extern int vfs_fsync_range(struct file *file, loff_t start, loff_t end, |
| 2858 | int datasync); |
| 2859 | extern int vfs_fsync(struct file *file, int datasync); |
Christoph Hellwig | e259221 | 2016-04-07 08:52:01 -0700 | [diff] [blame] | 2860 | |
Jens Axboe | 22f96b3 | 2019-04-09 14:51:48 -0600 | [diff] [blame] | 2861 | extern int sync_file_range(struct file *file, loff_t offset, loff_t nbytes, |
| 2862 | unsigned int flags); |
| 2863 | |
Christoph Hellwig | e259221 | 2016-04-07 08:52:01 -0700 | [diff] [blame] | 2864 | /* |
| 2865 | * Sync the bytes written if this was a synchronous write. Expect ki_pos |
| 2866 | * to already be updated for the write, and will return either the amount |
| 2867 | * of bytes passed in, or an error if syncing the file failed. |
| 2868 | */ |
| 2869 | static inline ssize_t generic_write_sync(struct kiocb *iocb, ssize_t count) |
Al Viro | d311d79 | 2014-02-09 15:18:09 -0500 | [diff] [blame] | 2870 | { |
Christoph Hellwig | e259221 | 2016-04-07 08:52:01 -0700 | [diff] [blame] | 2871 | if (iocb->ki_flags & IOCB_DSYNC) { |
| 2872 | int ret = vfs_fsync_range(iocb->ki_filp, |
| 2873 | iocb->ki_pos - count, iocb->ki_pos - 1, |
| 2874 | (iocb->ki_flags & IOCB_SYNC) ? 0 : 1); |
| 2875 | if (ret) |
| 2876 | return ret; |
| 2877 | } |
| 2878 | |
| 2879 | return count; |
Al Viro | d311d79 | 2014-02-09 15:18:09 -0500 | [diff] [blame] | 2880 | } |
Christoph Hellwig | e259221 | 2016-04-07 08:52:01 -0700 | [diff] [blame] | 2881 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2882 | extern void emergency_sync(void); |
| 2883 | extern void emergency_remount(void); |
Carlos Maiolino | 30460e1 | 2020-01-09 14:30:41 +0100 | [diff] [blame] | 2884 | |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 2885 | #ifdef CONFIG_BLOCK |
Carlos Maiolino | 30460e1 | 2020-01-09 14:30:41 +0100 | [diff] [blame] | 2886 | extern int bmap(struct inode *inode, sector_t *block); |
| 2887 | #else |
| 2888 | static inline int bmap(struct inode *inode, sector_t *block) |
| 2889 | { |
| 2890 | return -EINVAL; |
| 2891 | } |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 2892 | #endif |
Carlos Maiolino | 30460e1 | 2020-01-09 14:30:41 +0100 | [diff] [blame] | 2893 | |
J. Bruce Fields | 27ac0ff | 2011-09-20 17:19:26 -0400 | [diff] [blame] | 2894 | extern int notify_change(struct dentry *, struct iattr *, struct inode **); |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 2895 | extern int inode_permission(struct inode *, int); |
Al Viro | 2830ba7 | 2011-06-20 19:16:29 -0400 | [diff] [blame] | 2896 | extern int generic_permission(struct inode *, int); |
Miklos Szeredi | cbdf35b | 2014-10-24 00:14:36 +0200 | [diff] [blame] | 2897 | extern int __check_sticky(struct inode *dir, struct inode *inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2898 | |
Miklos Szeredi | f696a36 | 2008-07-31 13:41:58 +0200 | [diff] [blame] | 2899 | static inline bool execute_ok(struct inode *inode) |
| 2900 | { |
| 2901 | return (inode->i_mode & S_IXUGO) || S_ISDIR(inode->i_mode); |
| 2902 | } |
| 2903 | |
Al Viro | 8d71db4 | 2013-03-19 21:01:03 -0400 | [diff] [blame] | 2904 | static inline void file_start_write(struct file *file) |
| 2905 | { |
| 2906 | if (!S_ISREG(file_inode(file)->i_mode)) |
| 2907 | return; |
| 2908 | __sb_start_write(file_inode(file)->i_sb, SB_FREEZE_WRITE, true); |
| 2909 | } |
| 2910 | |
Jan Kara | 5ae98f1 | 2013-05-04 00:11:23 +0200 | [diff] [blame] | 2911 | static inline bool file_start_write_trylock(struct file *file) |
| 2912 | { |
| 2913 | if (!S_ISREG(file_inode(file)->i_mode)) |
| 2914 | return true; |
| 2915 | return __sb_start_write(file_inode(file)->i_sb, SB_FREEZE_WRITE, false); |
| 2916 | } |
| 2917 | |
Al Viro | 8d71db4 | 2013-03-19 21:01:03 -0400 | [diff] [blame] | 2918 | static inline void file_end_write(struct file *file) |
| 2919 | { |
| 2920 | if (!S_ISREG(file_inode(file)->i_mode)) |
| 2921 | return; |
| 2922 | __sb_end_write(file_inode(file)->i_sb, SB_FREEZE_WRITE); |
| 2923 | } |
| 2924 | |
Al Viro | 07b8ce1 | 2011-06-20 10:52:57 -0400 | [diff] [blame] | 2925 | /* |
| 2926 | * get_write_access() gets write permission for a file. |
| 2927 | * put_write_access() releases this write permission. |
| 2928 | * This is used for regular files. |
| 2929 | * We cannot support write (and maybe mmap read-write shared) accesses and |
| 2930 | * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode |
| 2931 | * can have the following values: |
| 2932 | * 0: no writers, no VM_DENYWRITE mappings |
| 2933 | * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist |
| 2934 | * > 0: (i_writecount) users are writing to the file. |
| 2935 | * |
| 2936 | * Normally we operate on that counter with atomic_{inc,dec} and it's safe |
| 2937 | * except for the cases where we don't hold i_writecount yet. Then we need to |
| 2938 | * use {get,deny}_write_access() - these functions check the sign and refuse |
| 2939 | * to do the change if sign is wrong. |
| 2940 | */ |
| 2941 | static inline int get_write_access(struct inode *inode) |
| 2942 | { |
| 2943 | return atomic_inc_unless_negative(&inode->i_writecount) ? 0 : -ETXTBSY; |
| 2944 | } |
| 2945 | static inline int deny_write_access(struct file *file) |
| 2946 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 2947 | struct inode *inode = file_inode(file); |
Al Viro | 07b8ce1 | 2011-06-20 10:52:57 -0400 | [diff] [blame] | 2948 | return atomic_dec_unless_positive(&inode->i_writecount) ? 0 : -ETXTBSY; |
| 2949 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2950 | static inline void put_write_access(struct inode * inode) |
| 2951 | { |
| 2952 | atomic_dec(&inode->i_writecount); |
| 2953 | } |
| 2954 | static inline void allow_write_access(struct file *file) |
| 2955 | { |
| 2956 | if (file) |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 2957 | atomic_inc(&file_inode(file)->i_writecount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2958 | } |
David Howells | f1fe29b | 2013-09-27 11:20:03 +0100 | [diff] [blame] | 2959 | static inline bool inode_is_open_for_write(const struct inode *inode) |
| 2960 | { |
| 2961 | return atomic_read(&inode->i_writecount) > 0; |
| 2962 | } |
| 2963 | |
Amir Goldstein | 387e374 | 2019-06-07 17:24:38 +0300 | [diff] [blame] | 2964 | #if defined(CONFIG_IMA) || defined(CONFIG_FILE_LOCKING) |
Mimi Zohar | a5c96eb | 2010-11-02 10:11:37 -0400 | [diff] [blame] | 2965 | static inline void i_readcount_dec(struct inode *inode) |
| 2966 | { |
| 2967 | BUG_ON(!atomic_read(&inode->i_readcount)); |
| 2968 | atomic_dec(&inode->i_readcount); |
| 2969 | } |
| 2970 | static inline void i_readcount_inc(struct inode *inode) |
| 2971 | { |
| 2972 | atomic_inc(&inode->i_readcount); |
| 2973 | } |
| 2974 | #else |
| 2975 | static inline void i_readcount_dec(struct inode *inode) |
| 2976 | { |
| 2977 | return; |
| 2978 | } |
| 2979 | static inline void i_readcount_inc(struct inode *inode) |
| 2980 | { |
| 2981 | return; |
| 2982 | } |
| 2983 | #endif |
Ulrich Drepper | ed8cae8 | 2008-07-23 21:29:30 -0700 | [diff] [blame] | 2984 | extern int do_pipe_flags(int *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2985 | |
Mimi Zohar | 1284ab5 | 2016-04-20 15:46:27 -0700 | [diff] [blame] | 2986 | #define __kernel_read_file_id(id) \ |
| 2987 | id(UNKNOWN, unknown) \ |
| 2988 | id(FIRMWARE, firmware) \ |
Stephen Boyd | a098ecd | 2016-08-02 14:04:28 -0700 | [diff] [blame] | 2989 | id(FIRMWARE_PREALLOC_BUFFER, firmware) \ |
Hans de Goede | e4c2c0f | 2020-01-15 17:35:48 +0100 | [diff] [blame] | 2990 | id(FIRMWARE_EFI_EMBEDDED, firmware) \ |
Mimi Zohar | 1284ab5 | 2016-04-20 15:46:27 -0700 | [diff] [blame] | 2991 | id(MODULE, kernel-module) \ |
| 2992 | id(KEXEC_IMAGE, kexec-image) \ |
| 2993 | id(KEXEC_INITRAMFS, kexec-initramfs) \ |
| 2994 | id(POLICY, security-policy) \ |
Christoph Hellwig | a7d3d03 | 2017-09-10 09:49:45 +0200 | [diff] [blame] | 2995 | id(X509_CERTIFICATE, x509-certificate) \ |
Mimi Zohar | 1284ab5 | 2016-04-20 15:46:27 -0700 | [diff] [blame] | 2996 | id(MAX_ID, ) |
| 2997 | |
| 2998 | #define __fid_enumify(ENUM, dummy) READING_ ## ENUM, |
| 2999 | #define __fid_stringify(dummy, str) #str, |
| 3000 | |
Mimi Zohar | bc8ca5b | 2016-01-24 10:07:32 -0500 | [diff] [blame] | 3001 | enum kernel_read_file_id { |
Mimi Zohar | 1284ab5 | 2016-04-20 15:46:27 -0700 | [diff] [blame] | 3002 | __kernel_read_file_id(__fid_enumify) |
Mimi Zohar | bc8ca5b | 2016-01-24 10:07:32 -0500 | [diff] [blame] | 3003 | }; |
| 3004 | |
Mimi Zohar | 1284ab5 | 2016-04-20 15:46:27 -0700 | [diff] [blame] | 3005 | static const char * const kernel_read_file_str[] = { |
| 3006 | __kernel_read_file_id(__fid_stringify) |
| 3007 | }; |
| 3008 | |
Kees Cook | da20dfe | 2016-04-21 12:53:29 -0700 | [diff] [blame] | 3009 | static inline const char *kernel_read_file_id_str(enum kernel_read_file_id id) |
Mimi Zohar | 1284ab5 | 2016-04-20 15:46:27 -0700 | [diff] [blame] | 3010 | { |
Arnd Bergmann | cbfd0c1 | 2017-03-09 16:16:57 -0800 | [diff] [blame] | 3011 | if ((unsigned)id >= READING_MAX_ID) |
Mimi Zohar | 1284ab5 | 2016-04-20 15:46:27 -0700 | [diff] [blame] | 3012 | return kernel_read_file_str[READING_UNKNOWN]; |
| 3013 | |
| 3014 | return kernel_read_file_str[id]; |
| 3015 | } |
| 3016 | |
Mimi Zohar | bc8ca5b | 2016-01-24 10:07:32 -0500 | [diff] [blame] | 3017 | extern int kernel_read_file(struct file *, void **, loff_t *, loff_t, |
| 3018 | enum kernel_read_file_id); |
Mimi Zohar | 711aab1 | 2017-09-12 22:45:33 -0400 | [diff] [blame] | 3019 | extern int kernel_read_file_from_path(const char *, void **, loff_t *, loff_t, |
Mimi Zohar | 09596b9 | 2015-11-19 12:39:22 -0500 | [diff] [blame] | 3020 | enum kernel_read_file_id); |
Topi Miettinen | 901cff7 | 2020-01-23 14:58:38 +0200 | [diff] [blame] | 3021 | extern int kernel_read_file_from_path_initns(const char *, void **, loff_t *, loff_t, |
| 3022 | enum kernel_read_file_id); |
Mimi Zohar | b844f0e | 2016-02-01 08:36:21 -0500 | [diff] [blame] | 3023 | extern int kernel_read_file_from_fd(int, void **, loff_t *, loff_t, |
| 3024 | enum kernel_read_file_id); |
Christoph Hellwig | bdd1d2d | 2017-09-01 17:39:13 +0200 | [diff] [blame] | 3025 | extern ssize_t kernel_read(struct file *, void *, size_t, loff_t *); |
Christoph Hellwig | e13ec93 | 2017-09-01 17:39:14 +0200 | [diff] [blame] | 3026 | extern ssize_t kernel_write(struct file *, const void *, size_t, loff_t *); |
Christoph Hellwig | 73e18f7 | 2017-09-01 17:39:15 +0200 | [diff] [blame] | 3027 | extern ssize_t __kernel_write(struct file *, const void *, size_t, loff_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3028 | extern struct file * open_exec(const char *); |
| 3029 | |
| 3030 | /* fs/dcache.c -- generic fs support functions */ |
Yaowei Bai | a6e5787 | 2015-11-17 14:40:11 +0800 | [diff] [blame] | 3031 | extern bool is_subdir(struct dentry *, struct dentry *); |
Mickaël Salaün | 640eb7e | 2016-11-14 22:14:35 +0100 | [diff] [blame] | 3032 | extern bool path_is_under(const struct path *, const struct path *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3033 | |
Miklos Szeredi | 9bf39ab | 2015-06-19 10:29:13 +0200 | [diff] [blame] | 3034 | extern char *file_path(struct file *, char *, int); |
| 3035 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3036 | #include <linux/err.h> |
| 3037 | |
| 3038 | /* needed for stackable file system support */ |
Andrew Morton | 965c8e5 | 2012-12-17 15:59:39 -0800 | [diff] [blame] | 3039 | extern loff_t default_llseek(struct file *file, loff_t offset, int whence); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3040 | |
Andrew Morton | 965c8e5 | 2012-12-17 15:59:39 -0800 | [diff] [blame] | 3041 | extern loff_t vfs_llseek(struct file *file, loff_t offset, int whence); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3042 | |
Christoph Hellwig | 54e3462 | 2009-08-07 14:38:25 -0300 | [diff] [blame] | 3043 | extern int inode_init_always(struct super_block *, struct inode *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3044 | extern void inode_init_once(struct inode *); |
Miklos Szeredi | 2aa1589 | 2011-02-23 13:49:47 +0100 | [diff] [blame] | 3045 | extern void address_space_init_once(struct address_space *mapping); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3046 | extern struct inode * igrab(struct inode *); |
| 3047 | extern ino_t iunique(struct super_block *, ino_t); |
| 3048 | extern int inode_needs_sync(struct inode *inode); |
Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 3049 | extern int generic_delete_inode(struct inode *inode); |
Al Viro | 9bcb4b7 | 2012-02-12 19:43:17 -0500 | [diff] [blame] | 3050 | static inline int generic_drop_inode(struct inode *inode) |
| 3051 | { |
| 3052 | return !inode->i_nlink || inode_unhashed(inode); |
| 3053 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3054 | |
Anton Altaparmakov | 88bd512 | 2005-07-13 01:10:44 -0700 | [diff] [blame] | 3055 | extern struct inode *ilookup5_nowait(struct super_block *sb, |
| 3056 | unsigned long hashval, int (*test)(struct inode *, void *), |
| 3057 | void *data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3058 | extern struct inode *ilookup5(struct super_block *sb, unsigned long hashval, |
| 3059 | int (*test)(struct inode *, void *), void *data); |
| 3060 | extern struct inode *ilookup(struct super_block *sb, unsigned long ino); |
| 3061 | |
Miklos Szeredi | 80ea09a | 2018-05-17 10:53:05 +0200 | [diff] [blame] | 3062 | extern struct inode *inode_insert5(struct inode *inode, unsigned long hashval, |
| 3063 | int (*test)(struct inode *, void *), |
| 3064 | int (*set)(struct inode *, void *), |
| 3065 | void *data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3066 | extern struct inode * iget5_locked(struct super_block *, unsigned long, int (*test)(struct inode *, void *), int (*set)(struct inode *, void *), void *); |
| 3067 | extern struct inode * iget_locked(struct super_block *, unsigned long); |
Theodore Ts'o | fe032c4 | 2015-02-02 00:37:01 -0500 | [diff] [blame] | 3068 | extern struct inode *find_inode_nowait(struct super_block *, |
| 3069 | unsigned long, |
| 3070 | int (*match)(struct inode *, |
| 3071 | unsigned long, void *), |
| 3072 | void *data); |
Al Viro | 261bca8 | 2008-12-30 01:48:21 -0500 | [diff] [blame] | 3073 | extern int insert_inode_locked4(struct inode *, unsigned long, int (*test)(struct inode *, void *), void *); |
| 3074 | extern int insert_inode_locked(struct inode *); |
Josh Boyer | e096d0c | 2011-08-25 07:48:12 -0400 | [diff] [blame] | 3075 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 3076 | extern void lockdep_annotate_inode_mutex_key(struct inode *inode); |
| 3077 | #else |
| 3078 | static inline void lockdep_annotate_inode_mutex_key(struct inode *inode) { }; |
| 3079 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3080 | extern void unlock_new_inode(struct inode *); |
Al Viro | c2b6d62 | 2018-06-28 15:53:17 -0400 | [diff] [blame] | 3081 | extern void discard_new_inode(struct inode *); |
Christoph Hellwig | 85fe402 | 2010-10-23 11:19:54 -0400 | [diff] [blame] | 3082 | extern unsigned int get_next_ino(void); |
Darrick J. Wong | 799ea9e | 2017-08-18 18:08:25 -0700 | [diff] [blame] | 3083 | extern void evict_inodes(struct super_block *sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3084 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3085 | extern void __iget(struct inode * inode); |
David Howells | b46980f | 2008-02-07 00:15:27 -0800 | [diff] [blame] | 3086 | extern void iget_failed(struct inode *); |
Jan Kara | dbd5768 | 2012-05-03 14:48:02 +0200 | [diff] [blame] | 3087 | extern void clear_inode(struct inode *); |
Christoph Hellwig | 2e00c97 | 2009-08-07 14:38:29 -0300 | [diff] [blame] | 3088 | extern void __destroy_inode(struct inode *); |
Eric Dumazet | a209dfc | 2011-07-26 11:36:34 +0200 | [diff] [blame] | 3089 | extern struct inode *new_inode_pseudo(struct super_block *sb); |
| 3090 | extern struct inode *new_inode(struct super_block *sb); |
Nick Piggin | ff0c7d1 | 2011-01-07 17:49:50 +1100 | [diff] [blame] | 3091 | extern void free_inode_nonrcu(struct inode *inode); |
Jens Axboe | 01de85e | 2006-10-17 19:50:36 +0200 | [diff] [blame] | 3092 | extern int should_remove_suid(struct dentry *); |
Jan Kara | 5fa8e0a | 2015-05-21 16:05:53 +0200 | [diff] [blame] | 3093 | extern int file_remove_privs(struct file *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3094 | |
| 3095 | extern void __insert_inode_hash(struct inode *, unsigned long hashval); |
Christoph Hellwig | 646ec46 | 2010-10-23 07:15:32 -0400 | [diff] [blame] | 3096 | static inline void insert_inode_hash(struct inode *inode) |
| 3097 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3098 | __insert_inode_hash(inode, inode->i_ino); |
| 3099 | } |
Eric Dumazet | f2ee7ab | 2011-07-28 06:41:09 +0200 | [diff] [blame] | 3100 | |
| 3101 | extern void __remove_inode_hash(struct inode *); |
| 3102 | static inline void remove_inode_hash(struct inode *inode) |
| 3103 | { |
Josef Bacik | cbedaac | 2015-03-12 08:19:11 -0400 | [diff] [blame] | 3104 | if (!inode_unhashed(inode) && !hlist_fake(&inode->i_hash)) |
Eric Dumazet | f2ee7ab | 2011-07-28 06:41:09 +0200 | [diff] [blame] | 3105 | __remove_inode_hash(inode); |
| 3106 | } |
| 3107 | |
Christoph Hellwig | 646ec46 | 2010-10-23 07:15:32 -0400 | [diff] [blame] | 3108 | extern void inode_sb_list_add(struct inode *inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3109 | |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 3110 | #ifdef CONFIG_BLOCK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3111 | extern int bdev_read_only(struct block_device *); |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 3112 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3113 | extern int set_blocksize(struct block_device *, int); |
| 3114 | extern int sb_set_blocksize(struct super_block *, int); |
| 3115 | extern int sb_min_blocksize(struct super_block *, int); |
| 3116 | |
| 3117 | extern int generic_file_mmap(struct file *, struct vm_area_struct *); |
| 3118 | extern int generic_file_readonly_mmap(struct file *, struct vm_area_struct *); |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 3119 | extern ssize_t generic_write_checks(struct kiocb *, struct iov_iter *); |
Darrick J. Wong | 1383a7e | 2018-10-30 10:40:31 +1100 | [diff] [blame] | 3120 | extern int generic_remap_checks(struct file *file_in, loff_t pos_in, |
| 3121 | struct file *file_out, loff_t pos_out, |
Darrick J. Wong | 42ec3d4 | 2018-10-30 10:41:49 +1100 | [diff] [blame] | 3122 | loff_t *count, unsigned int remap_flags); |
Amir Goldstein | a317135 | 2019-06-05 08:04:48 -0700 | [diff] [blame] | 3123 | extern int generic_file_rw_checks(struct file *file_in, struct file *file_out); |
Amir Goldstein | 96e6e8f | 2019-06-05 08:04:49 -0700 | [diff] [blame] | 3124 | extern int generic_copy_file_checks(struct file *file_in, loff_t pos_in, |
| 3125 | struct file *file_out, loff_t pos_out, |
| 3126 | size_t *count, unsigned int flags); |
Goldwyn Rodrigues | d85dc2e | 2019-08-30 12:09:24 -0500 | [diff] [blame^] | 3127 | extern ssize_t generic_file_buffered_read(struct kiocb *iocb, |
| 3128 | struct iov_iter *to, ssize_t already_read); |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 3129 | extern ssize_t generic_file_read_iter(struct kiocb *, struct iov_iter *); |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 3130 | extern ssize_t __generic_file_write_iter(struct kiocb *, struct iov_iter *); |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 3131 | extern ssize_t generic_file_write_iter(struct kiocb *, struct iov_iter *); |
Christoph Hellwig | 1af5bb4 | 2016-04-07 08:51:56 -0700 | [diff] [blame] | 3132 | extern ssize_t generic_file_direct_write(struct kiocb *, struct iov_iter *); |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 3133 | extern ssize_t generic_perform_write(struct file *, struct iov_iter *, loff_t); |
Andrew Morton | 88e6fae | 2006-04-11 13:59:36 +0200 | [diff] [blame] | 3134 | |
Christoph Hellwig | 18e9710 | 2017-05-27 11:16:51 +0300 | [diff] [blame] | 3135 | ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos, |
Christoph Hellwig | ddef7ed2 | 2017-07-06 18:58:37 +0200 | [diff] [blame] | 3136 | rwf_t flags); |
Christoph Hellwig | abbb6589 | 2017-05-27 11:16:52 +0300 | [diff] [blame] | 3137 | ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos, |
Christoph Hellwig | ddef7ed2 | 2017-07-06 18:58:37 +0200 | [diff] [blame] | 3138 | rwf_t flags); |
Jiufei Xue | 5dcdc43 | 2019-11-20 17:45:25 +0800 | [diff] [blame] | 3139 | ssize_t vfs_iocb_iter_read(struct file *file, struct kiocb *iocb, |
| 3140 | struct iov_iter *iter); |
| 3141 | ssize_t vfs_iocb_iter_write(struct file *file, struct kiocb *iocb, |
| 3142 | struct iov_iter *iter); |
Christoph Hellwig | dbe4e19 | 2015-01-25 21:11:59 +0100 | [diff] [blame] | 3143 | |
Christoph Hellwig | eef9938 | 2009-08-20 17:43:41 +0200 | [diff] [blame] | 3144 | /* fs/block_dev.c */ |
David Jeffery | b2de525 | 2014-09-29 10:21:10 -0400 | [diff] [blame] | 3145 | extern ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to); |
Al Viro | 1456c0a | 2014-04-03 03:21:50 -0400 | [diff] [blame] | 3146 | extern ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 3147 | extern int blkdev_fsync(struct file *filp, loff_t start, loff_t end, |
| 3148 | int datasync); |
Al Viro | ff01bb4 | 2011-09-16 02:31:11 -0400 | [diff] [blame] | 3149 | extern void block_sync_page(struct page *page); |
Christoph Hellwig | eef9938 | 2009-08-20 17:43:41 +0200 | [diff] [blame] | 3150 | |
Andrew Morton | 88e6fae | 2006-04-11 13:59:36 +0200 | [diff] [blame] | 3151 | /* fs/splice.c */ |
Jens Axboe | cbb7e57 | 2006-04-11 14:57:50 +0200 | [diff] [blame] | 3152 | extern ssize_t generic_file_splice_read(struct file *, loff_t *, |
Andrew Morton | 88e6fae | 2006-04-11 13:59:36 +0200 | [diff] [blame] | 3153 | struct pipe_inode_info *, size_t, unsigned int); |
Al Viro | 8d02076 | 2014-04-05 04:27:08 -0400 | [diff] [blame] | 3154 | extern ssize_t iter_file_splice_write(struct pipe_inode_info *, |
Jens Axboe | cbb7e57 | 2006-04-11 14:57:50 +0200 | [diff] [blame] | 3155 | struct file *, loff_t *, size_t, unsigned int); |
Andrew Morton | 88e6fae | 2006-04-11 13:59:36 +0200 | [diff] [blame] | 3156 | extern ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, |
Jens Axboe | cbb7e57 | 2006-04-11 14:57:50 +0200 | [diff] [blame] | 3157 | struct file *out, loff_t *, size_t len, unsigned int flags); |
Miklos Szeredi | 1c11859 | 2014-10-24 00:14:35 +0200 | [diff] [blame] | 3158 | extern long do_splice_direct(struct file *in, loff_t *ppos, struct file *out, |
| 3159 | loff_t *opos, size_t len, unsigned int flags); |
| 3160 | |
Andrew Morton | 88e6fae | 2006-04-11 13:59:36 +0200 | [diff] [blame] | 3161 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3162 | extern void |
| 3163 | file_ra_state_init(struct file_ra_state *ra, struct address_space *mapping); |
Andrew Morton | 965c8e5 | 2012-12-17 15:59:39 -0800 | [diff] [blame] | 3164 | extern loff_t noop_llseek(struct file *file, loff_t offset, int whence); |
| 3165 | extern loff_t no_llseek(struct file *file, loff_t offset, int whence); |
Jie Liu | 46a1c2c | 2013-06-25 12:02:13 +0800 | [diff] [blame] | 3166 | extern loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize); |
Andrew Morton | 965c8e5 | 2012-12-17 15:59:39 -0800 | [diff] [blame] | 3167 | extern loff_t generic_file_llseek(struct file *file, loff_t offset, int whence); |
Andi Kleen | 5760495 | 2011-09-15 16:06:50 -0700 | [diff] [blame] | 3168 | extern loff_t generic_file_llseek_size(struct file *file, loff_t offset, |
Andrew Morton | 965c8e5 | 2012-12-17 15:59:39 -0800 | [diff] [blame] | 3169 | int whence, loff_t maxsize, loff_t eof); |
Al Viro | 1bf9d14 | 2013-06-16 20:27:42 +0400 | [diff] [blame] | 3170 | extern loff_t fixed_size_llseek(struct file *file, loff_t offset, |
| 3171 | int whence, loff_t size); |
Al Viro | b25472f | 2015-12-05 22:04:48 -0500 | [diff] [blame] | 3172 | extern loff_t no_seek_end_llseek_size(struct file *, loff_t, int, loff_t); |
| 3173 | extern loff_t no_seek_end_llseek(struct file *, loff_t, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3174 | extern int generic_file_open(struct inode * inode, struct file * filp); |
| 3175 | extern int nonseekable_open(struct inode * inode, struct file * filp); |
Kirill Smelkov | 10dce8a | 2019-03-26 22:20:43 +0000 | [diff] [blame] | 3176 | extern int stream_open(struct inode * inode, struct file * filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3177 | |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 3178 | #ifdef CONFIG_BLOCK |
Mike Christie | 8a4c1e4 | 2016-06-05 14:31:50 -0500 | [diff] [blame] | 3179 | typedef void (dio_submit_t)(struct bio *bio, struct inode *inode, |
Josef Bacik | facd07b | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 3180 | loff_t file_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3181 | |
| 3182 | enum { |
Christoph Hellwig | 1e431f5 | 2009-11-03 16:44:53 +0100 | [diff] [blame] | 3183 | /* need locking between buffered and direct access */ |
| 3184 | DIO_LOCKING = 0x01, |
| 3185 | |
| 3186 | /* filesystem does not support filling holes */ |
| 3187 | DIO_SKIP_HOLES = 0x02, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3188 | }; |
| 3189 | |
Christoph Hellwig | 4055351 | 2017-06-03 09:37:58 +0200 | [diff] [blame] | 3190 | void dio_end_io(struct bio *bio); |
npiggin@suse.de | 7bb46a6 | 2010-05-27 01:05:33 +1000 | [diff] [blame] | 3191 | |
Omar Sandoval | 17f8c84 | 2015-03-16 04:33:50 -0700 | [diff] [blame] | 3192 | ssize_t __blockdev_direct_IO(struct kiocb *iocb, struct inode *inode, |
| 3193 | struct block_device *bdev, struct iov_iter *iter, |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 3194 | get_block_t get_block, |
Omar Sandoval | 17f8c84 | 2015-03-16 04:33:50 -0700 | [diff] [blame] | 3195 | dio_iodone_t end_io, dio_submit_t submit_io, |
| 3196 | int flags); |
Christoph Hellwig | eafdc7d | 2010-06-04 11:29:53 +0200 | [diff] [blame] | 3197 | |
Omar Sandoval | 17f8c84 | 2015-03-16 04:33:50 -0700 | [diff] [blame] | 3198 | static inline ssize_t blockdev_direct_IO(struct kiocb *iocb, |
| 3199 | struct inode *inode, |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 3200 | struct iov_iter *iter, |
Omar Sandoval | 17f8c84 | 2015-03-16 04:33:50 -0700 | [diff] [blame] | 3201 | get_block_t get_block) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3202 | { |
Omar Sandoval | 17f8c84 | 2015-03-16 04:33:50 -0700 | [diff] [blame] | 3203 | return __blockdev_direct_IO(iocb, inode, inode->i_sb->s_bdev, iter, |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 3204 | get_block, NULL, NULL, DIO_LOCKING | DIO_SKIP_HOLES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3205 | } |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 3206 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3207 | |
Trond Myklebust | 1d59d61 | 2012-05-31 12:22:33 -0400 | [diff] [blame] | 3208 | void inode_dio_wait(struct inode *inode); |
Jens Axboe | fe0f07d | 2015-04-15 17:05:48 -0600 | [diff] [blame] | 3209 | |
| 3210 | /* |
| 3211 | * inode_dio_begin - signal start of a direct I/O requests |
| 3212 | * @inode: inode the direct I/O happens on |
| 3213 | * |
| 3214 | * This is called once we've finished processing a direct I/O request, |
| 3215 | * and is used to wake up callers waiting for direct I/O to be quiesced. |
| 3216 | */ |
| 3217 | static inline void inode_dio_begin(struct inode *inode) |
| 3218 | { |
| 3219 | atomic_inc(&inode->i_dio_count); |
| 3220 | } |
| 3221 | |
| 3222 | /* |
| 3223 | * inode_dio_end - signal finish of a direct I/O requests |
| 3224 | * @inode: inode the direct I/O happens on |
| 3225 | * |
| 3226 | * This is called once we've finished processing a direct I/O request, |
| 3227 | * and is used to wake up callers waiting for direct I/O to be quiesced. |
| 3228 | */ |
| 3229 | static inline void inode_dio_end(struct inode *inode) |
| 3230 | { |
| 3231 | if (atomic_dec_and_test(&inode->i_dio_count)) |
| 3232 | wake_up_bit(&inode->i_state, __I_DIO_WAKEUP); |
| 3233 | } |
Trond Myklebust | 1d59d61 | 2012-05-31 12:22:33 -0400 | [diff] [blame] | 3234 | |
Konstantin Khlebnikov | a92853b | 2019-11-30 17:49:44 -0800 | [diff] [blame] | 3235 | /* |
| 3236 | * Warn about a page cache invalidation failure diring a direct I/O write. |
| 3237 | */ |
| 3238 | void dio_warn_stale_pagecache(struct file *filp); |
| 3239 | |
Theodore Ts'o | 5f16f32 | 2014-03-24 14:43:12 -0400 | [diff] [blame] | 3240 | extern void inode_set_flags(struct inode *inode, unsigned int flags, |
| 3241 | unsigned int mask); |
| 3242 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 3243 | extern const struct file_operations generic_ro_fops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3244 | |
| 3245 | #define special_file(m) (S_ISCHR(m)||S_ISBLK(m)||S_ISFIFO(m)||S_ISSOCK(m)) |
| 3246 | |
Al Viro | 5d826c8 | 2014-03-14 13:42:45 -0400 | [diff] [blame] | 3247 | extern int readlink_copy(char __user *, int, const char *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3248 | extern int page_readlink(struct dentry *, char __user *, int); |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 3249 | extern const char *page_get_link(struct dentry *, struct inode *, |
| 3250 | struct delayed_call *); |
| 3251 | extern void page_put_link(void *); |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 3252 | extern int __page_symlink(struct inode *inode, const char *symname, int len, |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 3253 | int nofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3254 | extern int page_symlink(struct inode *inode, const char *symname, int len); |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 3255 | extern const struct inode_operations page_symlink_inode_operations; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 3256 | extern void kfree_link(void *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3257 | extern void generic_fillattr(struct inode *, struct kstat *); |
David Howells | a528d35 | 2017-01-31 16:46:22 +0000 | [diff] [blame] | 3258 | extern int vfs_getattr_nosec(const struct path *, struct kstat *, u32, unsigned int); |
| 3259 | extern int vfs_getattr(const struct path *, struct kstat *, u32, unsigned int); |
Dmitry Monakhov | b462707 | 2009-12-14 15:21:12 +0300 | [diff] [blame] | 3260 | void __inode_add_bytes(struct inode *inode, loff_t bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3261 | void inode_add_bytes(struct inode *inode, loff_t bytes); |
Jan Kara | 1c8924e | 2013-08-17 09:32:32 -0400 | [diff] [blame] | 3262 | void __inode_sub_bytes(struct inode *inode, loff_t bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3263 | void inode_sub_bytes(struct inode *inode, loff_t bytes); |
Jan Kara | f4a8116a | 2017-08-08 09:54:36 +0200 | [diff] [blame] | 3264 | static inline loff_t __inode_get_bytes(struct inode *inode) |
| 3265 | { |
| 3266 | return (((loff_t)inode->i_blocks) << 9) + inode->i_bytes; |
| 3267 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3268 | loff_t inode_get_bytes(struct inode *inode); |
| 3269 | void inode_set_bytes(struct inode *inode, loff_t bytes); |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 3270 | const char *simple_get_link(struct dentry *, struct inode *, |
| 3271 | struct delayed_call *); |
Al Viro | 61ba64f | 2015-05-02 09:54:06 -0400 | [diff] [blame] | 3272 | extern const struct inode_operations simple_symlink_inode_operations; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3273 | |
Al Viro | 5c0ba4e | 2013-05-15 13:52:59 -0400 | [diff] [blame] | 3274 | extern int iterate_dir(struct file *, struct dir_context *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3275 | |
David Howells | a528d35 | 2017-01-31 16:46:22 +0000 | [diff] [blame] | 3276 | extern int vfs_statx(int, const char __user *, int, struct kstat *, u32); |
| 3277 | extern int vfs_statx_fd(unsigned int, struct kstat *, u32, unsigned int); |
| 3278 | |
| 3279 | static inline int vfs_stat(const char __user *filename, struct kstat *stat) |
| 3280 | { |
David Howells | deccf49 | 2017-05-04 23:30:16 +0100 | [diff] [blame] | 3281 | return vfs_statx(AT_FDCWD, filename, AT_NO_AUTOMOUNT, |
| 3282 | stat, STATX_BASIC_STATS); |
David Howells | a528d35 | 2017-01-31 16:46:22 +0000 | [diff] [blame] | 3283 | } |
| 3284 | static inline int vfs_lstat(const char __user *name, struct kstat *stat) |
| 3285 | { |
David Howells | deccf49 | 2017-05-04 23:30:16 +0100 | [diff] [blame] | 3286 | return vfs_statx(AT_FDCWD, name, AT_SYMLINK_NOFOLLOW | AT_NO_AUTOMOUNT, |
David Howells | a528d35 | 2017-01-31 16:46:22 +0000 | [diff] [blame] | 3287 | stat, STATX_BASIC_STATS); |
| 3288 | } |
| 3289 | static inline int vfs_fstatat(int dfd, const char __user *filename, |
| 3290 | struct kstat *stat, int flags) |
| 3291 | { |
Ian Kent | 5d38f04 | 2017-11-29 16:11:26 -0800 | [diff] [blame] | 3292 | return vfs_statx(dfd, filename, flags | AT_NO_AUTOMOUNT, |
| 3293 | stat, STATX_BASIC_STATS); |
David Howells | a528d35 | 2017-01-31 16:46:22 +0000 | [diff] [blame] | 3294 | } |
| 3295 | static inline int vfs_fstat(int fd, struct kstat *stat) |
| 3296 | { |
| 3297 | return vfs_statx_fd(fd, stat, STATX_BASIC_STATS, 0); |
| 3298 | } |
| 3299 | |
| 3300 | |
Miklos Szeredi | d60874c | 2016-10-04 14:40:45 +0200 | [diff] [blame] | 3301 | extern const char *vfs_get_link(struct dentry *, struct delayed_call *); |
Miklos Szeredi | fd4a0edf | 2016-12-09 16:45:04 +0100 | [diff] [blame] | 3302 | extern int vfs_readlink(struct dentry *, char __user *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3303 | |
Steven Whitehouse | e9079cc | 2008-10-14 14:43:29 +0100 | [diff] [blame] | 3304 | extern int __generic_block_fiemap(struct inode *inode, |
Josef Bacik | 3a3076f | 2010-04-23 12:17:17 -0400 | [diff] [blame] | 3305 | struct fiemap_extent_info *fieinfo, |
| 3306 | loff_t start, loff_t len, |
| 3307 | get_block_t *get_block); |
Josef Bacik | 68c9d70 | 2008-10-03 17:32:43 -0400 | [diff] [blame] | 3308 | extern int generic_block_fiemap(struct inode *inode, |
| 3309 | struct fiemap_extent_info *fieinfo, u64 start, |
| 3310 | u64 len, get_block_t *get_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3311 | |
David Howells | ee416bc | 2017-07-04 17:25:16 +0100 | [diff] [blame] | 3312 | extern struct file_system_type *get_filesystem(struct file_system_type *fs); |
Miklos Szeredi | c18479f | 2007-10-18 23:39:11 -0700 | [diff] [blame] | 3313 | extern void put_filesystem(struct file_system_type *fs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3314 | extern struct file_system_type *get_fs_type(const char *name); |
| 3315 | extern struct super_block *get_super(struct block_device *); |
Jan Kara | 6b6dc83 | 2012-02-10 11:03:00 +0100 | [diff] [blame] | 3316 | extern struct super_block *get_super_thawed(struct block_device *); |
Jan Kara | ba6379f | 2016-11-23 12:53:00 +0100 | [diff] [blame] | 3317 | extern struct super_block *get_super_exclusive_thawed(struct block_device *bdev); |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 3318 | extern struct super_block *get_active_super(struct block_device *bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3319 | extern void drop_super(struct super_block *sb); |
Jan Kara | ba6379f | 2016-11-23 12:53:00 +0100 | [diff] [blame] | 3320 | extern void drop_super_exclusive(struct super_block *sb); |
Al Viro | 01a05b3 | 2010-03-23 06:06:58 -0400 | [diff] [blame] | 3321 | extern void iterate_supers(void (*)(struct super_block *, void *), void *); |
Al Viro | 43e15cd | 2011-06-03 20:16:57 -0400 | [diff] [blame] | 3322 | extern void iterate_supers_type(struct file_system_type *, |
| 3323 | void (*)(struct super_block *, void *), void *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3324 | |
| 3325 | extern int dcache_dir_open(struct inode *, struct file *); |
| 3326 | extern int dcache_dir_close(struct inode *, struct file *); |
| 3327 | extern loff_t dcache_dir_lseek(struct file *, loff_t, int); |
Al Viro | 5f99f4e | 2013-05-15 20:23:06 -0400 | [diff] [blame] | 3328 | extern int dcache_readdir(struct file *, struct dir_context *); |
npiggin@suse.de | 7bb46a6 | 2010-05-27 01:05:33 +1000 | [diff] [blame] | 3329 | extern int simple_setattr(struct dentry *, struct iattr *); |
David Howells | a528d35 | 2017-01-31 16:46:22 +0000 | [diff] [blame] | 3330 | extern int simple_getattr(const struct path *, struct kstat *, u32, unsigned int); |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 3331 | extern int simple_statfs(struct dentry *, struct kstatfs *); |
Stephen Boyd | 20955e8 | 2012-04-05 14:25:09 -0700 | [diff] [blame] | 3332 | extern int simple_open(struct inode *inode, struct file *file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3333 | extern int simple_link(struct dentry *, struct inode *, struct dentry *); |
| 3334 | extern int simple_unlink(struct inode *, struct dentry *); |
| 3335 | extern int simple_rmdir(struct inode *, struct dentry *); |
Miklos Szeredi | e0e0be8 | 2016-09-27 11:03:57 +0200 | [diff] [blame] | 3336 | extern int simple_rename(struct inode *, struct dentry *, |
| 3337 | struct inode *, struct dentry *, unsigned int); |
Al Viro | a3d1e7e | 2019-11-18 09:43:10 -0500 | [diff] [blame] | 3338 | extern void simple_recursive_removal(struct dentry *, |
| 3339 | void (*callback)(struct dentry *)); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 3340 | extern int noop_fsync(struct file *, loff_t, loff_t, int); |
Dan Williams | f44c776 | 2018-03-07 15:26:44 -0800 | [diff] [blame] | 3341 | extern int noop_set_page_dirty(struct page *page); |
| 3342 | extern void noop_invalidatepage(struct page *page, unsigned int offset, |
| 3343 | unsigned int length); |
| 3344 | extern ssize_t noop_direct_IO(struct kiocb *iocb, struct iov_iter *iter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3345 | extern int simple_empty(struct dentry *); |
| 3346 | extern int simple_readpage(struct file *file, struct page *page); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3347 | extern int simple_write_begin(struct file *file, struct address_space *mapping, |
| 3348 | loff_t pos, unsigned len, unsigned flags, |
| 3349 | struct page **pagep, void **fsdata); |
| 3350 | extern int simple_write_end(struct file *file, struct address_space *mapping, |
| 3351 | loff_t pos, unsigned len, unsigned copied, |
| 3352 | struct page *page, void *fsdata); |
Al Viro | b26d4cd | 2013-10-25 18:47:37 -0400 | [diff] [blame] | 3353 | extern int always_delete_dentry(const struct dentry *); |
Al Viro | 6987843 | 2013-10-02 22:35:11 -0400 | [diff] [blame] | 3354 | extern struct inode *alloc_anon_inode(struct super_block *); |
Jeff Layton | e6f5c78 | 2014-08-22 10:40:25 -0400 | [diff] [blame] | 3355 | extern int simple_nosetlease(struct file *, long, struct file_lock **, void **); |
Al Viro | b26d4cd | 2013-10-25 18:47:37 -0400 | [diff] [blame] | 3356 | extern const struct dentry_operations simple_dentry_operations; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3357 | |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 3358 | extern struct dentry *simple_lookup(struct inode *, struct dentry *, unsigned int flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3359 | extern ssize_t generic_read_dir(struct file *, char __user *, size_t, loff_t *); |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 3360 | extern const struct file_operations simple_dir_operations; |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 3361 | extern const struct inode_operations simple_dir_inode_operations; |
Eric W. Biederman | fbabfd0 | 2015-05-09 15:54:49 -0500 | [diff] [blame] | 3362 | extern void make_empty_dir_inode(struct inode *inode); |
| 3363 | extern bool is_empty_dir_inode(struct inode *inode); |
Eric Biggers | cda3712 | 2017-03-25 21:15:37 -0700 | [diff] [blame] | 3364 | struct tree_descr { const char *name; const struct file_operations *ops; int mode; }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3365 | struct dentry *d_alloc_name(struct dentry *, const char *); |
Eric Biggers | cda3712 | 2017-03-25 21:15:37 -0700 | [diff] [blame] | 3366 | extern int simple_fill_super(struct super_block *, unsigned long, |
| 3367 | const struct tree_descr *); |
Trond Myklebust | 1f5ce9e | 2006-06-09 09:34:16 -0400 | [diff] [blame] | 3368 | extern int simple_pin_fs(struct file_system_type *, struct vfsmount **mount, int *count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3369 | extern void simple_release_fs(struct vfsmount **mount, int *count); |
| 3370 | |
Akinobu Mita | 93b0711 | 2008-06-05 22:46:21 -0700 | [diff] [blame] | 3371 | extern ssize_t simple_read_from_buffer(void __user *to, size_t count, |
| 3372 | loff_t *ppos, const void *from, size_t available); |
Jiri Slaby | 6a727b4 | 2010-05-01 23:51:22 +0200 | [diff] [blame] | 3373 | extern ssize_t simple_write_to_buffer(void *to, size_t available, loff_t *ppos, |
| 3374 | const void __user *from, size_t count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3375 | |
Fabian Frederick | ac13a82 | 2014-06-04 16:06:27 -0700 | [diff] [blame] | 3376 | extern int __generic_file_fsync(struct file *, loff_t, loff_t, int); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 3377 | extern int generic_file_fsync(struct file *, loff_t, loff_t, int); |
Al Viro | d5aacad | 2009-06-07 14:56:44 -0400 | [diff] [blame] | 3378 | |
Patrick J. LoPresti | 30ca22c | 2010-07-22 15:03:41 -0700 | [diff] [blame] | 3379 | extern int generic_check_addressable(unsigned, u64); |
| 3380 | |
Christoph Lameter | e965f96 | 2006-02-01 03:05:41 -0800 | [diff] [blame] | 3381 | #ifdef CONFIG_MIGRATION |
Christoph Lameter | 2d1db3b | 2006-06-23 02:03:33 -0700 | [diff] [blame] | 3382 | extern int buffer_migrate_page(struct address_space *, |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame] | 3383 | struct page *, struct page *, |
| 3384 | enum migrate_mode); |
Jan Kara | 89cb088 | 2018-12-28 00:39:12 -0800 | [diff] [blame] | 3385 | extern int buffer_migrate_page_norefs(struct address_space *, |
| 3386 | struct page *, struct page *, |
| 3387 | enum migrate_mode); |
Christoph Lameter | e965f96 | 2006-02-01 03:05:41 -0800 | [diff] [blame] | 3388 | #else |
| 3389 | #define buffer_migrate_page NULL |
Jan Kara | 89cb088 | 2018-12-28 00:39:12 -0800 | [diff] [blame] | 3390 | #define buffer_migrate_page_norefs NULL |
Christoph Lameter | e965f96 | 2006-02-01 03:05:41 -0800 | [diff] [blame] | 3391 | #endif |
| 3392 | |
Jan Kara | 31051c8 | 2016-05-26 16:55:18 +0200 | [diff] [blame] | 3393 | extern int setattr_prepare(struct dentry *, struct iattr *); |
npiggin@suse.de | 25d9e2d | 2009-08-21 02:35:05 +1000 | [diff] [blame] | 3394 | extern int inode_newsize_ok(const struct inode *, loff_t offset); |
Christoph Hellwig | 6a1a90a | 2010-06-04 11:30:00 +0200 | [diff] [blame] | 3395 | extern void setattr_copy(struct inode *inode, const struct iattr *attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3396 | |
Josef Bacik | c3b2da3 | 2012-03-26 09:59:21 -0400 | [diff] [blame] | 3397 | extern int file_update_time(struct file *file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3398 | |
Matthew Wilcox | d475c63 | 2015-02-16 15:58:56 -0800 | [diff] [blame] | 3399 | static inline bool io_is_direct(struct file *filp) |
| 3400 | { |
Dan Williams | 65f87ee | 2016-01-25 17:23:18 -0800 | [diff] [blame] | 3401 | return (filp->f_flags & O_DIRECT) || IS_DAX(filp->f_mapping->host); |
Matthew Wilcox | d475c63 | 2015-02-16 15:58:56 -0800 | [diff] [blame] | 3402 | } |
| 3403 | |
Thomas Hellstrom (VMware) | f05a384 | 2020-03-24 18:46:48 +0100 | [diff] [blame] | 3404 | static inline bool vma_is_dax(const struct vm_area_struct *vma) |
Dan Williams | baabda2 | 2017-07-10 15:48:25 -0700 | [diff] [blame] | 3405 | { |
| 3406 | return vma->vm_file && IS_DAX(vma->vm_file->f_mapping->host); |
| 3407 | } |
| 3408 | |
Dan Williams | 2bb6d28 | 2017-11-29 16:10:35 -0800 | [diff] [blame] | 3409 | static inline bool vma_is_fsdax(struct vm_area_struct *vma) |
| 3410 | { |
| 3411 | struct inode *inode; |
| 3412 | |
| 3413 | if (!vma->vm_file) |
| 3414 | return false; |
| 3415 | if (!vma_is_dax(vma)) |
| 3416 | return false; |
| 3417 | inode = file_inode(vma->vm_file); |
Dan Williams | 230f5a8 | 2018-02-21 17:08:01 -0800 | [diff] [blame] | 3418 | if (S_ISCHR(inode->i_mode)) |
Dan Williams | 2bb6d28 | 2017-11-29 16:10:35 -0800 | [diff] [blame] | 3419 | return false; /* device-dax */ |
| 3420 | return true; |
| 3421 | } |
| 3422 | |
Al Viro | 2ba48ce | 2015-04-09 13:52:01 -0400 | [diff] [blame] | 3423 | static inline int iocb_flags(struct file *file) |
| 3424 | { |
| 3425 | int res = 0; |
| 3426 | if (file->f_flags & O_APPEND) |
| 3427 | res |= IOCB_APPEND; |
| 3428 | if (io_is_direct(file)) |
| 3429 | res |= IOCB_DIRECT; |
Christoph Hellwig | dde0c2e | 2016-04-07 08:52:00 -0700 | [diff] [blame] | 3430 | if ((file->f_flags & O_DSYNC) || IS_SYNC(file->f_mapping->host)) |
| 3431 | res |= IOCB_DSYNC; |
| 3432 | if (file->f_flags & __O_SYNC) |
| 3433 | res |= IOCB_SYNC; |
Al Viro | 2ba48ce | 2015-04-09 13:52:01 -0400 | [diff] [blame] | 3434 | return res; |
| 3435 | } |
| 3436 | |
Christoph Hellwig | ddef7ed2 | 2017-07-06 18:58:37 +0200 | [diff] [blame] | 3437 | static inline int kiocb_set_rw_flags(struct kiocb *ki, rwf_t flags) |
Goldwyn Rodrigues | fdd2f5b | 2017-06-20 07:05:40 -0500 | [diff] [blame] | 3438 | { |
| 3439 | if (unlikely(flags & ~RWF_SUPPORTED)) |
| 3440 | return -EOPNOTSUPP; |
| 3441 | |
Goldwyn Rodrigues | b745faf | 2017-06-20 07:05:43 -0500 | [diff] [blame] | 3442 | if (flags & RWF_NOWAIT) { |
Christoph Hellwig | 91f9943 | 2017-08-29 16:13:20 +0200 | [diff] [blame] | 3443 | if (!(ki->ki_filp->f_mode & FMODE_NOWAIT)) |
Goldwyn Rodrigues | b745faf | 2017-06-20 07:05:43 -0500 | [diff] [blame] | 3444 | return -EOPNOTSUPP; |
| 3445 | ki->ki_flags |= IOCB_NOWAIT; |
| 3446 | } |
Goldwyn Rodrigues | fdd2f5b | 2017-06-20 07:05:40 -0500 | [diff] [blame] | 3447 | if (flags & RWF_HIPRI) |
| 3448 | ki->ki_flags |= IOCB_HIPRI; |
| 3449 | if (flags & RWF_DSYNC) |
| 3450 | ki->ki_flags |= IOCB_DSYNC; |
| 3451 | if (flags & RWF_SYNC) |
| 3452 | ki->ki_flags |= (IOCB_DSYNC | IOCB_SYNC); |
Jürg Billeter | e1fc742 | 2017-09-29 14:07:17 +0200 | [diff] [blame] | 3453 | if (flags & RWF_APPEND) |
| 3454 | ki->ki_flags |= IOCB_APPEND; |
Goldwyn Rodrigues | fdd2f5b | 2017-06-20 07:05:40 -0500 | [diff] [blame] | 3455 | return 0; |
| 3456 | } |
| 3457 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3458 | static inline ino_t parent_ino(struct dentry *dentry) |
| 3459 | { |
| 3460 | ino_t res; |
| 3461 | |
Nick Piggin | b5c84bf | 2011-01-07 17:49:38 +1100 | [diff] [blame] | 3462 | /* |
| 3463 | * Don't strictly need d_lock here? If the parent ino could change |
| 3464 | * then surely we'd have a deeper race in the caller? |
| 3465 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3466 | spin_lock(&dentry->d_lock); |
| 3467 | res = dentry->d_parent->d_inode->i_ino; |
| 3468 | spin_unlock(&dentry->d_lock); |
| 3469 | return res; |
| 3470 | } |
| 3471 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3472 | /* Transaction based IO helpers */ |
| 3473 | |
| 3474 | /* |
| 3475 | * An argresp is stored in an allocated page and holds the |
| 3476 | * size of the argument or response, along with its content |
| 3477 | */ |
| 3478 | struct simple_transaction_argresp { |
| 3479 | ssize_t size; |
| 3480 | char data[0]; |
| 3481 | }; |
| 3482 | |
| 3483 | #define SIMPLE_TRANSACTION_LIMIT (PAGE_SIZE - sizeof(struct simple_transaction_argresp)) |
| 3484 | |
| 3485 | char *simple_transaction_get(struct file *file, const char __user *buf, |
| 3486 | size_t size); |
| 3487 | ssize_t simple_transaction_read(struct file *file, char __user *buf, |
| 3488 | size_t size, loff_t *pos); |
| 3489 | int simple_transaction_release(struct inode *inode, struct file *file); |
| 3490 | |
Ingo Molnar | 76791ab | 2009-03-25 16:48:35 +0100 | [diff] [blame] | 3491 | void simple_transaction_set(struct file *file, size_t n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3492 | |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 3493 | /* |
| 3494 | * simple attribute files |
| 3495 | * |
| 3496 | * These attributes behave similar to those in sysfs: |
| 3497 | * |
| 3498 | * Writing to an attribute immediately sets a value, an open file can be |
| 3499 | * written to multiple times. |
| 3500 | * |
| 3501 | * Reading from an attribute creates a buffer from the value that might get |
| 3502 | * read with multiple read calls. When the attribute has been read |
| 3503 | * completely, no further read calls are possible until the file is opened |
| 3504 | * again. |
| 3505 | * |
| 3506 | * All attributes contain a text representation of a numeric value |
| 3507 | * that are accessed with the get() and set() functions. |
| 3508 | */ |
| 3509 | #define DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt) \ |
| 3510 | static int __fops ## _open(struct inode *inode, struct file *file) \ |
| 3511 | { \ |
| 3512 | __simple_attr_check_format(__fmt, 0ull); \ |
| 3513 | return simple_attr_open(inode, file, __get, __set, __fmt); \ |
| 3514 | } \ |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 3515 | static const struct file_operations __fops = { \ |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 3516 | .owner = THIS_MODULE, \ |
| 3517 | .open = __fops ## _open, \ |
Christoph Hellwig | 74bedc4 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 3518 | .release = simple_attr_release, \ |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 3519 | .read = simple_attr_read, \ |
| 3520 | .write = simple_attr_write, \ |
Arnd Bergmann | 1ec5584 | 2010-08-15 21:50:52 +0200 | [diff] [blame] | 3521 | .llseek = generic_file_llseek, \ |
Joe Perches | 68be302 | 2014-08-06 16:08:45 -0700 | [diff] [blame] | 3522 | } |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 3523 | |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 3524 | static inline __printf(1, 2) |
| 3525 | void __simple_attr_check_format(const char *fmt, ...) |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 3526 | { |
| 3527 | /* don't do anything, just let the compiler check the arguments; */ |
| 3528 | } |
| 3529 | |
| 3530 | int simple_attr_open(struct inode *inode, struct file *file, |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 3531 | int (*get)(void *, u64 *), int (*set)(void *, u64), |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 3532 | const char *fmt); |
Christoph Hellwig | 74bedc4 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 3533 | int simple_attr_release(struct inode *inode, struct file *file); |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 3534 | ssize_t simple_attr_read(struct file *file, char __user *buf, |
| 3535 | size_t len, loff_t *ppos); |
| 3536 | ssize_t simple_attr_write(struct file *file, const char __user *buf, |
| 3537 | size_t len, loff_t *ppos); |
| 3538 | |
Alexey Dobriyan | 4be2854 | 2007-10-16 23:26:21 -0700 | [diff] [blame] | 3539 | struct ctl_table; |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 3540 | int proc_nr_files(struct ctl_table *table, int write, |
Adrian Bunk | 62239ac | 2007-07-17 04:03:45 -0700 | [diff] [blame] | 3541 | void __user *buffer, size_t *lenp, loff_t *ppos); |
Christoph Hellwig | 312d3ca | 2010-10-10 05:36:23 -0400 | [diff] [blame] | 3542 | int proc_nr_dentry(struct ctl_table *table, int write, |
| 3543 | void __user *buffer, size_t *lenp, loff_t *ppos); |
Dave Chinner | cffbc8a | 2010-10-23 05:03:02 -0400 | [diff] [blame] | 3544 | int proc_nr_inodes(struct ctl_table *table, int write, |
| 3545 | void __user *buffer, size_t *lenp, loff_t *ppos); |
Tetsuo Handa | 38e23c9 | 2009-04-09 20:17:52 +0900 | [diff] [blame] | 3546 | int __init get_filesystem_list(char *buf); |
Adrian Bunk | 62239ac | 2007-07-17 04:03:45 -0700 | [diff] [blame] | 3547 | |
Namhyung Kim | 3cd90ea | 2011-02-01 15:52:46 -0800 | [diff] [blame] | 3548 | #define __FMODE_EXEC ((__force int) FMODE_EXEC) |
Namhyung Kim | 1a44bc8 | 2011-02-01 15:52:46 -0800 | [diff] [blame] | 3549 | #define __FMODE_NONOTIFY ((__force int) FMODE_NONOTIFY) |
| 3550 | |
Al Viro | 6d12552 | 2009-12-24 06:58:56 -0500 | [diff] [blame] | 3551 | #define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE]) |
Eric Paris | ecf081d | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 3552 | #define OPEN_FMODE(flag) ((__force fmode_t)(((flag + 1) & O_ACCMODE) | \ |
Namhyung Kim | 1a44bc8 | 2011-02-01 15:52:46 -0800 | [diff] [blame] | 3553 | (flag & __FMODE_NONOTIFY))) |
Al Viro | 5300990 | 2009-12-19 10:15:07 -0500 | [diff] [blame] | 3554 | |
Yaowei Bai | d37177b | 2015-11-19 21:00:12 +0800 | [diff] [blame] | 3555 | static inline bool is_sxid(umode_t mode) |
Andi Kleen | 69b4573 | 2011-05-28 08:25:51 -0700 | [diff] [blame] | 3556 | { |
| 3557 | return (mode & S_ISUID) || ((mode & S_ISGID) && (mode & S_IXGRP)); |
| 3558 | } |
| 3559 | |
Miklos Szeredi | cbdf35b | 2014-10-24 00:14:36 +0200 | [diff] [blame] | 3560 | static inline int check_sticky(struct inode *dir, struct inode *inode) |
| 3561 | { |
| 3562 | if (!(dir->i_mode & S_ISVTX)) |
| 3563 | return 0; |
| 3564 | |
| 3565 | return __check_sticky(dir, inode); |
| 3566 | } |
| 3567 | |
Andi Kleen | 69b4573 | 2011-05-28 08:25:51 -0700 | [diff] [blame] | 3568 | static inline void inode_has_no_xattr(struct inode *inode) |
| 3569 | { |
David Howells | e462ec5 | 2017-07-17 08:45:35 +0100 | [diff] [blame] | 3570 | if (!is_sxid(inode->i_mode) && (inode->i_sb->s_flags & SB_NOSEC)) |
Andi Kleen | 69b4573 | 2011-05-28 08:25:51 -0700 | [diff] [blame] | 3571 | inode->i_flags |= S_NOSEC; |
| 3572 | } |
| 3573 | |
Al Viro | a740022 | 2014-10-21 15:20:42 -0400 | [diff] [blame] | 3574 | static inline bool is_root_inode(struct inode *inode) |
| 3575 | { |
| 3576 | return inode == inode->i_sb->s_root->d_inode; |
| 3577 | } |
| 3578 | |
Al Viro | 5f99f4e | 2013-05-15 20:23:06 -0400 | [diff] [blame] | 3579 | static inline bool dir_emit(struct dir_context *ctx, |
| 3580 | const char *name, int namelen, |
| 3581 | u64 ino, unsigned type) |
| 3582 | { |
| 3583 | return ctx->actor(ctx, name, namelen, ctx->pos, ino, type) == 0; |
| 3584 | } |
| 3585 | static inline bool dir_emit_dot(struct file *file, struct dir_context *ctx) |
| 3586 | { |
| 3587 | return ctx->actor(ctx, ".", 1, ctx->pos, |
| 3588 | file->f_path.dentry->d_inode->i_ino, DT_DIR) == 0; |
| 3589 | } |
| 3590 | static inline bool dir_emit_dotdot(struct file *file, struct dir_context *ctx) |
| 3591 | { |
| 3592 | return ctx->actor(ctx, "..", 2, ctx->pos, |
| 3593 | parent_ino(file->f_path.dentry), DT_DIR) == 0; |
| 3594 | } |
| 3595 | static inline bool dir_emit_dots(struct file *file, struct dir_context *ctx) |
| 3596 | { |
| 3597 | if (ctx->pos == 0) { |
| 3598 | if (!dir_emit_dot(file, ctx)) |
| 3599 | return false; |
| 3600 | ctx->pos = 1; |
| 3601 | } |
| 3602 | if (ctx->pos == 1) { |
| 3603 | if (!dir_emit_dotdot(file, ctx)) |
| 3604 | return false; |
| 3605 | ctx->pos = 2; |
| 3606 | } |
| 3607 | return true; |
| 3608 | } |
Al Viro | 5ded75e | 2013-05-15 21:02:48 -0400 | [diff] [blame] | 3609 | static inline bool dir_relax(struct inode *inode) |
| 3610 | { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3611 | inode_unlock(inode); |
| 3612 | inode_lock(inode); |
Al Viro | 5ded75e | 2013-05-15 21:02:48 -0400 | [diff] [blame] | 3613 | return !IS_DEADDIR(inode); |
| 3614 | } |
Al Viro | 5f99f4e | 2013-05-15 20:23:06 -0400 | [diff] [blame] | 3615 | |
Al Viro | ae05327 | 2016-05-12 20:36:01 -0400 | [diff] [blame] | 3616 | static inline bool dir_relax_shared(struct inode *inode) |
| 3617 | { |
| 3618 | inode_unlock_shared(inode); |
| 3619 | inode_lock_shared(inode); |
| 3620 | return !IS_DEADDIR(inode); |
| 3621 | } |
| 3622 | |
Eric W. Biederman | 90f8572 | 2015-06-29 14:42:03 -0500 | [diff] [blame] | 3623 | extern bool path_noexec(const struct path *path); |
Al Viro | 21fc61c | 2015-11-17 01:07:57 -0500 | [diff] [blame] | 3624 | extern void inode_nohighmem(struct inode *inode); |
Eric W. Biederman | 90f8572 | 2015-06-29 14:42:03 -0500 | [diff] [blame] | 3625 | |
Amir Goldstein | 45cd0fa | 2018-08-27 15:56:02 +0300 | [diff] [blame] | 3626 | /* mm/fadvise.c */ |
| 3627 | extern int vfs_fadvise(struct file *file, loff_t offset, loff_t len, |
| 3628 | int advice); |
Jan Kara | cf1ea05 | 2019-08-29 09:04:11 -0700 | [diff] [blame] | 3629 | extern int generic_fadvise(struct file *file, loff_t offset, loff_t len, |
| 3630 | int advice); |
Amir Goldstein | 45cd0fa | 2018-08-27 15:56:02 +0300 | [diff] [blame] | 3631 | |
Jens Axboe | 2b188cc | 2019-01-07 10:46:33 -0700 | [diff] [blame] | 3632 | #if defined(CONFIG_IO_URING) |
| 3633 | extern struct sock *io_uring_get_socket(struct file *file); |
| 3634 | #else |
| 3635 | static inline struct sock *io_uring_get_socket(struct file *file) |
| 3636 | { |
| 3637 | return NULL; |
| 3638 | } |
| 3639 | #endif |
| 3640 | |
Darrick J. Wong | 5aca284 | 2019-07-01 08:25:34 -0700 | [diff] [blame] | 3641 | int vfs_ioc_setflags_prepare(struct inode *inode, unsigned int oldflags, |
| 3642 | unsigned int flags); |
| 3643 | |
Darrick J. Wong | 7b0e492 | 2019-07-01 08:25:35 -0700 | [diff] [blame] | 3644 | int vfs_ioc_fssetxattr_check(struct inode *inode, const struct fsxattr *old_fa, |
| 3645 | struct fsxattr *fa); |
| 3646 | |
| 3647 | static inline void simple_fill_fsxattr(struct fsxattr *fa, __u32 xflags) |
| 3648 | { |
| 3649 | memset(fa, 0, sizeof(*fa)); |
| 3650 | fa->fsx_xflags = xflags; |
| 3651 | } |
| 3652 | |
Darrick J. Wong | dc617f2 | 2019-08-20 07:55:16 -0700 | [diff] [blame] | 3653 | /* |
| 3654 | * Flush file data before changing attributes. Caller must hold any locks |
| 3655 | * required to prevent further writes to this file until we're done setting |
| 3656 | * flags. |
| 3657 | */ |
| 3658 | static inline int inode_drain_writes(struct inode *inode) |
| 3659 | { |
| 3660 | inode_dio_wait(inode); |
| 3661 | return filemap_write_and_wait(inode->i_mapping); |
| 3662 | } |
| 3663 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3664 | #endif /* _LINUX_FS_H */ |