xref: /linux/include/linux/fs.h (revision c84d3e3130dfe1058cb27dc78e7ad8bd36f0545a)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_FS_H
3 #define _LINUX_FS_H
4 
5 #include <linux/fs/super.h>
6 #include <linux/vfsdebug.h>
7 #include <linux/linkage.h>
8 #include <linux/wait_bit.h>
9 #include <linux/kdev_t.h>
10 #include <linux/dcache.h>
11 #include <linux/path.h>
12 #include <linux/stat.h>
13 #include <linux/cache.h>
14 #include <linux/list.h>
15 #include <linux/llist.h>
16 #include <linux/radix-tree.h>
17 #include <linux/xarray.h>
18 #include <linux/rbtree.h>
19 #include <linux/init.h>
20 #include <linux/pid.h>
21 #include <linux/bug.h>
22 #include <linux/mutex.h>
23 #include <linux/rwsem.h>
24 #include <linux/mm_types.h>
25 #include <linux/capability.h>
26 #include <linux/semaphore.h>
27 #include <linux/fcntl.h>
28 #include <linux/rculist_bl.h>
29 #include <linux/atomic.h>
30 #include <linux/shrinker.h>
31 #include <linux/migrate_mode.h>
32 #include <linux/uidgid.h>
33 #include <linux/lockdep.h>
34 #include <linux/percpu-rwsem.h>
35 #include <linux/workqueue.h>
36 #include <linux/delayed_call.h>
37 #include <linux/uuid.h>
38 #include <linux/errseq.h>
39 #include <linux/ioprio.h>
40 #include <linux/build_bug.h>
41 #include <linux/stddef.h>
42 #include <linux/mount.h>
43 #include <linux/cred.h>
44 #include <linux/mnt_idmapping.h>
45 #include <linux/slab.h>
46 #include <linux/maple_tree.h>
47 #include <linux/rw_hint.h>
48 #include <linux/file_ref.h>
49 #include <linux/unicode.h>
50 
51 #include <asm/byteorder.h>
52 #include <uapi/linux/fs.h>
53 
54 struct bdi_writeback;
55 struct bio;
56 struct io_comp_batch;
57 struct fiemap_extent_info;
58 struct kiocb;
59 struct kobject;
60 struct pipe_inode_info;
61 struct poll_table_struct;
62 struct kstatfs;
63 struct vm_area_struct;
64 struct vfsmount;
65 struct cred;
66 struct swap_info_struct;
67 struct seq_file;
68 struct iov_iter;
69 struct fsnotify_mark_connector;
70 struct fs_context;
71 struct fs_parameter_spec;
72 struct file_kattr;
73 struct iomap_ops;
74 struct delegated_inode;
75 
76 extern void __init inode_init(void);
77 extern void __init inode_init_early(void);
78 extern void __init files_init(void);
79 extern void __init files_maxfiles_init(void);
80 
81 extern unsigned long get_max_files(void);
82 extern unsigned int sysctl_nr_open;
83 
84 typedef __kernel_rwf_t rwf_t;
85 
86 struct buffer_head;
87 typedef int (get_block_t)(struct inode *inode, sector_t iblock,
88 			struct buffer_head *bh_result, int create);
89 typedef int (dio_iodone_t)(struct kiocb *iocb, loff_t offset,
90 			ssize_t bytes, void *private);
91 
92 #define MAY_EXEC		0x00000001
93 #define MAY_WRITE		0x00000002
94 #define MAY_READ		0x00000004
95 #define MAY_APPEND		0x00000008
96 #define MAY_ACCESS		0x00000010
97 #define MAY_OPEN		0x00000020
98 #define MAY_CHDIR		0x00000040
99 /* called from RCU mode, don't block */
100 #define MAY_NOT_BLOCK		0x00000080
101 
102 /*
103  * flags in file.f_mode.  Note that FMODE_READ and FMODE_WRITE must correspond
104  * to O_WRONLY and O_RDWR via the strange trick in do_dentry_open()
105  */
106 
107 /* file is open for reading */
108 #define FMODE_READ		((__force fmode_t)(1 << 0))
109 /* file is open for writing */
110 #define FMODE_WRITE		((__force fmode_t)(1 << 1))
111 /* file is seekable */
112 #define FMODE_LSEEK		((__force fmode_t)(1 << 2))
113 /* file can be accessed using pread */
114 #define FMODE_PREAD		((__force fmode_t)(1 << 3))
115 /* file can be accessed using pwrite */
116 #define FMODE_PWRITE		((__force fmode_t)(1 << 4))
117 /* File is opened for execution with sys_execve / sys_uselib */
118 #define FMODE_EXEC		((__force fmode_t)(1 << 5))
119 /* File writes are restricted (block device specific) */
120 #define FMODE_WRITE_RESTRICTED	((__force fmode_t)(1 << 6))
121 /* File supports atomic writes */
122 #define FMODE_CAN_ATOMIC_WRITE	((__force fmode_t)(1 << 7))
123 
124 /* FMODE_* bit 8 */
125 
126 /* 32bit hashes as llseek() offset (for directories) */
127 #define FMODE_32BITHASH         ((__force fmode_t)(1 << 9))
128 /* 64bit hashes as llseek() offset (for directories) */
129 #define FMODE_64BITHASH         ((__force fmode_t)(1 << 10))
130 
131 /*
132  * Don't update ctime and mtime.
133  *
134  * Currently a special hack for the XFS open_by_handle ioctl, but we'll
135  * hopefully graduate it to a proper O_CMTIME flag supported by open(2) soon.
136  */
137 #define FMODE_NOCMTIME		((__force fmode_t)(1 << 11))
138 
139 /* Expect random access pattern */
140 #define FMODE_RANDOM		((__force fmode_t)(1 << 12))
141 
142 /* Supports IOCB_HAS_METADATA */
143 #define FMODE_HAS_METADATA	((__force fmode_t)(1 << 13))
144 
145 /* File is opened with O_PATH; almost nothing can be done with it */
146 #define FMODE_PATH		((__force fmode_t)(1 << 14))
147 
148 /* File needs atomic accesses to f_pos */
149 #define FMODE_ATOMIC_POS	((__force fmode_t)(1 << 15))
150 /* Write access to underlying fs */
151 #define FMODE_WRITER		((__force fmode_t)(1 << 16))
152 /* Has read method(s) */
153 #define FMODE_CAN_READ          ((__force fmode_t)(1 << 17))
154 /* Has write method(s) */
155 #define FMODE_CAN_WRITE         ((__force fmode_t)(1 << 18))
156 
157 #define FMODE_OPENED		((__force fmode_t)(1 << 19))
158 #define FMODE_CREATED		((__force fmode_t)(1 << 20))
159 
160 /* File is stream-like */
161 #define FMODE_STREAM		((__force fmode_t)(1 << 21))
162 
163 /* File supports DIRECT IO */
164 #define	FMODE_CAN_ODIRECT	((__force fmode_t)(1 << 22))
165 
166 #define	FMODE_NOREUSE		((__force fmode_t)(1 << 23))
167 
168 /* File is embedded in backing_file object */
169 #define FMODE_BACKING		((__force fmode_t)(1 << 24))
170 
171 /*
172  * Together with FMODE_NONOTIFY_PERM defines which fsnotify events shouldn't be
173  * generated (see below)
174  */
175 #define FMODE_NONOTIFY		((__force fmode_t)(1 << 25))
176 
177 /*
178  * Together with FMODE_NONOTIFY defines which fsnotify events shouldn't be
179  * generated (see below)
180  */
181 #define FMODE_NONOTIFY_PERM	((__force fmode_t)(1 << 26))
182 
183 /* File is capable of returning -EAGAIN if I/O will block */
184 #define FMODE_NOWAIT		((__force fmode_t)(1 << 27))
185 
186 /* File represents mount that needs unmounting */
187 #define FMODE_NEED_UNMOUNT	((__force fmode_t)(1 << 28))
188 
189 /* File does not contribute to nr_files count */
190 #define FMODE_NOACCOUNT		((__force fmode_t)(1 << 29))
191 
192 /*
193  * The two FMODE_NONOTIFY* define which fsnotify events should not be generated
194  * for an open file. These are the possible values of
195  * (f->f_mode & FMODE_FSNOTIFY_MASK) and their meaning:
196  *
197  * FMODE_NONOTIFY - suppress all (incl. non-permission) events.
198  * FMODE_NONOTIFY_PERM - suppress permission (incl. pre-content) events.
199  * FMODE_NONOTIFY | FMODE_NONOTIFY_PERM - suppress only FAN_ACCESS_PERM.
200  */
201 #define FMODE_FSNOTIFY_MASK \
202 	(FMODE_NONOTIFY | FMODE_NONOTIFY_PERM)
203 
204 #define FMODE_FSNOTIFY_NONE(mode) \
205 	((mode & FMODE_FSNOTIFY_MASK) == FMODE_NONOTIFY)
206 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
207 #define FMODE_FSNOTIFY_HSM(mode) \
208 	((mode & FMODE_FSNOTIFY_MASK) == 0 || \
209 	 (mode & FMODE_FSNOTIFY_MASK) == (FMODE_NONOTIFY | FMODE_NONOTIFY_PERM))
210 #define FMODE_FSNOTIFY_ACCESS_PERM(mode) \
211 	((mode & FMODE_FSNOTIFY_MASK) == 0)
212 #else
213 #define FMODE_FSNOTIFY_ACCESS_PERM(mode) 0
214 #define FMODE_FSNOTIFY_HSM(mode)	0
215 #endif
216 
217 /*
218  * Attribute flags.  These should be or-ed together to figure out what
219  * has been changed!
220  */
221 #define ATTR_MODE	(1 << 0)
222 #define ATTR_UID	(1 << 1)
223 #define ATTR_GID	(1 << 2)
224 #define ATTR_SIZE	(1 << 3)
225 #define ATTR_ATIME	(1 << 4)
226 #define ATTR_MTIME	(1 << 5)
227 #define ATTR_CTIME	(1 << 6)
228 #define ATTR_ATIME_SET	(1 << 7)
229 #define ATTR_MTIME_SET	(1 << 8)
230 #define ATTR_FORCE	(1 << 9) /* Not a change, but a change it */
231 #define ATTR_CTIME_SET	(1 << 10)
232 #define ATTR_KILL_SUID	(1 << 11)
233 #define ATTR_KILL_SGID	(1 << 12)
234 #define ATTR_FILE	(1 << 13)
235 #define ATTR_KILL_PRIV	(1 << 14)
236 #define ATTR_OPEN	(1 << 15) /* Truncating from open(O_TRUNC) */
237 #define ATTR_TIMES_SET	(1 << 16)
238 #define ATTR_TOUCH	(1 << 17)
239 #define ATTR_DELEG	(1 << 18) /* Delegated attrs. Don't break write delegations */
240 
241 /*
242  * Whiteout is represented by a char device.  The following constants define the
243  * mode and device number to use.
244  */
245 #define WHITEOUT_MODE 0
246 #define WHITEOUT_DEV 0
247 
248 /*
249  * This is the Inode Attributes structure, used for notify_change().  It
250  * uses the above definitions as flags, to know which values have changed.
251  * Also, in this manner, a Filesystem can look at only the values it cares
252  * about.  Basically, these are the attributes that the VFS layer can
253  * request to change from the FS layer.
254  *
255  * Derek Atkins <warlord@MIT.EDU> 94-10-20
256  */
257 struct iattr {
258 	unsigned int	ia_valid;
259 	umode_t		ia_mode;
260 	/*
261 	 * The two anonymous unions wrap structures with the same member.
262 	 *
263 	 * Filesystems raising FS_ALLOW_IDMAP need to use ia_vfs{g,u}id which
264 	 * are a dedicated type requiring the filesystem to use the dedicated
265 	 * helpers. Other filesystem can continue to use ia_{g,u}id until they
266 	 * have been ported.
267 	 *
268 	 * They always contain the same value. In other words FS_ALLOW_IDMAP
269 	 * pass down the same value on idmapped mounts as they would on regular
270 	 * mounts.
271 	 */
272 	union {
273 		kuid_t		ia_uid;
274 		vfsuid_t	ia_vfsuid;
275 	};
276 	union {
277 		kgid_t		ia_gid;
278 		vfsgid_t	ia_vfsgid;
279 	};
280 	loff_t		ia_size;
281 	struct timespec64 ia_atime;
282 	struct timespec64 ia_mtime;
283 	struct timespec64 ia_ctime;
284 
285 	/*
286 	 * Not an attribute, but an auxiliary info for filesystems wanting to
287 	 * implement an ftruncate() like method.  NOTE: filesystem should
288 	 * check for (ia_valid & ATTR_FILE), and not for (ia_file != NULL).
289 	 */
290 	struct file	*ia_file;
291 };
292 
293 /*
294  * Maximum number of layers of fs stack.  Needs to be limited to
295  * prevent kernel stack overflow
296  */
297 #define FILESYSTEM_MAX_STACK_DEPTH 2
298 
299 /**
300  * enum positive_aop_returns - aop return codes with specific semantics
301  *
302  * @AOP_WRITEPAGE_ACTIVATE: Informs the caller that page writeback has
303  * 			    completed, that the page is still locked, and
304  * 			    should be considered active.  The VM uses this hint
305  * 			    to return the page to the active list -- it won't
306  * 			    be a candidate for writeback again in the near
307  * 			    future.  Other callers must be careful to unlock
308  * 			    the page if they get this return.  Returned by
309  * 			    writepage();
310  *
311  * @AOP_TRUNCATED_PAGE: The AOP method that was handed a locked page has
312  *  			unlocked it and the page might have been truncated.
313  *  			The caller should back up to acquiring a new page and
314  *  			trying again.  The aop will be taking reasonable
315  *  			precautions not to livelock.  If the caller held a page
316  *  			reference, it should drop it before retrying.  Returned
317  *  			by read_folio().
318  *
319  * address_space_operation functions return these large constants to indicate
320  * special semantics to the caller.  These are much larger than the bytes in a
321  * page to allow for functions that return the number of bytes operated on in a
322  * given page.
323  */
324 
325 enum positive_aop_returns {
326 	AOP_WRITEPAGE_ACTIVATE	= 0x80000,
327 	AOP_TRUNCATED_PAGE	= 0x80001,
328 };
329 
330 /*
331  * oh the beauties of C type declarations.
332  */
333 struct page;
334 struct address_space;
335 struct writeback_control;
336 struct readahead_control;
337 
338 /* Match RWF_* bits to IOCB bits */
339 #define IOCB_HIPRI		(__force int) RWF_HIPRI
340 #define IOCB_DSYNC		(__force int) RWF_DSYNC
341 #define IOCB_SYNC		(__force int) RWF_SYNC
342 #define IOCB_NOWAIT		(__force int) RWF_NOWAIT
343 #define IOCB_APPEND		(__force int) RWF_APPEND
344 #define IOCB_ATOMIC		(__force int) RWF_ATOMIC
345 #define IOCB_DONTCACHE		(__force int) RWF_DONTCACHE
346 #define IOCB_NOSIGNAL		(__force int) RWF_NOSIGNAL
347 
348 /* non-RWF related bits - start at 16 */
349 #define IOCB_EVENTFD		(1 << 16)
350 #define IOCB_DIRECT		(1 << 17)
351 #define IOCB_WRITE		(1 << 18)
352 /* iocb->ki_waitq is valid */
353 #define IOCB_WAITQ		(1 << 19)
354 #define IOCB_NOIO		(1 << 20)
355 /* can use bio alloc cache */
356 #define IOCB_ALLOC_CACHE	(1 << 21)
357 /* kiocb is a read or write operation submitted by fs/aio.c. */
358 #define IOCB_AIO_RW		(1 << 22)
359 #define IOCB_HAS_METADATA	(1 << 23)
360 
361 /* for use in trace events */
362 #define TRACE_IOCB_STRINGS \
363 	{ IOCB_HIPRI,		"HIPRI" }, \
364 	{ IOCB_DSYNC,		"DSYNC" }, \
365 	{ IOCB_SYNC,		"SYNC" }, \
366 	{ IOCB_NOWAIT,		"NOWAIT" }, \
367 	{ IOCB_APPEND,		"APPEND" }, \
368 	{ IOCB_ATOMIC,		"ATOMIC" }, \
369 	{ IOCB_DONTCACHE,	"DONTCACHE" }, \
370 	{ IOCB_EVENTFD,		"EVENTFD"}, \
371 	{ IOCB_DIRECT,		"DIRECT" }, \
372 	{ IOCB_WRITE,		"WRITE" }, \
373 	{ IOCB_WAITQ,		"WAITQ" }, \
374 	{ IOCB_NOIO,		"NOIO" }, \
375 	{ IOCB_ALLOC_CACHE,	"ALLOC_CACHE" }, \
376 	{ IOCB_AIO_RW,		"AIO_RW" }, \
377 	{ IOCB_HAS_METADATA,	"AIO_HAS_METADATA" }
378 
379 struct kiocb {
380 	struct file		*ki_filp;
381 	loff_t			ki_pos;
382 	void (*ki_complete)(struct kiocb *iocb, long ret);
383 	void			*private;
384 	int			ki_flags;
385 	u16			ki_ioprio; /* See linux/ioprio.h */
386 	u8			ki_write_stream;
387 
388 	/*
389 	 * Only used for async buffered reads, where it denotes the page
390 	 * waitqueue associated with completing the read.
391 	 * Valid IFF IOCB_WAITQ is set.
392 	 */
393 	struct wait_page_queue	*ki_waitq;
394 };
395 
is_sync_kiocb(struct kiocb * kiocb)396 static inline bool is_sync_kiocb(struct kiocb *kiocb)
397 {
398 	return kiocb->ki_complete == NULL;
399 }
400 
401 struct address_space_operations {
402 	int (*read_folio)(struct file *, struct folio *);
403 
404 	/* Write back some dirty pages from this mapping. */
405 	int (*writepages)(struct address_space *, struct writeback_control *);
406 
407 	/* Mark a folio dirty.  Return true if this dirtied it */
408 	bool (*dirty_folio)(struct address_space *, struct folio *);
409 
410 	void (*readahead)(struct readahead_control *);
411 
412 	int (*write_begin)(const struct kiocb *, struct address_space *mapping,
413 				loff_t pos, unsigned len,
414 				struct folio **foliop, void **fsdata);
415 	int (*write_end)(const struct kiocb *, struct address_space *mapping,
416 				loff_t pos, unsigned len, unsigned copied,
417 				struct folio *folio, void *fsdata);
418 
419 	/* Unfortunately this kludge is needed for FIBMAP. Don't use it */
420 	sector_t (*bmap)(struct address_space *, sector_t);
421 	void (*invalidate_folio) (struct folio *, size_t offset, size_t len);
422 	bool (*release_folio)(struct folio *, gfp_t);
423 	void (*free_folio)(struct folio *folio);
424 	ssize_t (*direct_IO)(struct kiocb *, struct iov_iter *iter);
425 	/*
426 	 * migrate the contents of a folio to the specified target. If
427 	 * migrate_mode is MIGRATE_ASYNC, it must not block.
428 	 */
429 	int (*migrate_folio)(struct address_space *, struct folio *dst,
430 			struct folio *src, enum migrate_mode);
431 	int (*launder_folio)(struct folio *);
432 	bool (*is_partially_uptodate) (struct folio *, size_t from,
433 			size_t count);
434 	void (*is_dirty_writeback) (struct folio *, bool *dirty, bool *wb);
435 	int (*error_remove_folio)(struct address_space *, struct folio *);
436 
437 	/* swapfile support */
438 	int (*swap_activate)(struct swap_info_struct *sis, struct file *file,
439 				sector_t *span);
440 	void (*swap_deactivate)(struct file *file);
441 	int (*swap_rw)(struct kiocb *iocb, struct iov_iter *iter);
442 };
443 
444 extern const struct address_space_operations empty_aops;
445 
446 /* Structure for tracking metadata buffer heads associated with the mapping */
447 struct mapping_metadata_bhs {
448 	struct address_space *mapping;	/* Mapping bhs are associated with */
449 	spinlock_t lock;	/* Lock protecting bh list */
450 	struct list_head list;	/* The list of bhs (b_assoc_buffers) */
451 };
452 
453 /**
454  * struct address_space - Contents of a cacheable, mappable object.
455  * @host: Owner, either the inode or the block_device.
456  * @i_pages: Cached pages.
457  * @invalidate_lock: Guards coherency between page cache contents and
458  *   file offset->disk block mappings in the filesystem during invalidates.
459  *   It is also used to block modification of page cache contents through
460  *   memory mappings.
461  * @gfp_mask: Memory allocation flags to use for allocating pages.
462  * @i_mmap_writable: Number of VM_SHARED, VM_MAYWRITE mappings.
463  * @i_mmap: Tree of private and shared mappings.
464  * @i_mmap_rwsem: Protects @i_mmap and @i_mmap_writable.
465  * @nrpages: Number of page entries, protected by the i_pages lock.
466  * @writeback_index: Writeback starts here.
467  * @a_ops: Methods.
468  * @flags: Error bits and flags (AS_*).
469  * @wb_err: The most recent error which has occurred.
470  * @i_private_lock: For use by the owner of the address_space.
471  */
472 struct address_space {
473 	struct inode		*host;
474 	struct xarray		i_pages;
475 	struct rw_semaphore	invalidate_lock;
476 	gfp_t			gfp_mask;
477 	atomic_t		i_mmap_writable;
478 	struct rb_root_cached	i_mmap;
479 	unsigned long		nrpages;
480 	pgoff_t			writeback_index;
481 	const struct address_space_operations *a_ops;
482 	unsigned long		flags;
483 	errseq_t		wb_err;
484 	spinlock_t		i_private_lock;
485 	struct rw_semaphore	i_mmap_rwsem;
486 } __attribute__((aligned(sizeof(long)))) __randomize_layout;
487 	/*
488 	 * On most architectures that alignment is already the case; but
489 	 * must be enforced here for CRIS, to let the least significant bit
490 	 * of struct folio's "mapping" pointer be used for FOLIO_MAPPING_ANON.
491 	 */
492 
493 /* XArray tags, for tagging dirty and writeback pages in the pagecache. */
494 #define PAGECACHE_TAG_DIRTY	XA_MARK_0
495 #define PAGECACHE_TAG_WRITEBACK	XA_MARK_1
496 #define PAGECACHE_TAG_TOWRITE	XA_MARK_2
497 
498 /*
499  * Returns true if any of the pages in the mapping are marked with the tag.
500  */
mapping_tagged(const struct address_space * mapping,xa_mark_t tag)501 static inline bool mapping_tagged(const struct address_space *mapping, xa_mark_t tag)
502 {
503 	return xa_marked(&mapping->i_pages, tag);
504 }
505 
i_mmap_lock_write(struct address_space * mapping)506 static inline void i_mmap_lock_write(struct address_space *mapping)
507 {
508 	down_write(&mapping->i_mmap_rwsem);
509 }
510 
i_mmap_trylock_write(struct address_space * mapping)511 static inline int i_mmap_trylock_write(struct address_space *mapping)
512 {
513 	return down_write_trylock(&mapping->i_mmap_rwsem);
514 }
515 
i_mmap_unlock_write(struct address_space * mapping)516 static inline void i_mmap_unlock_write(struct address_space *mapping)
517 {
518 	up_write(&mapping->i_mmap_rwsem);
519 }
520 
i_mmap_trylock_read(struct address_space * mapping)521 static inline int i_mmap_trylock_read(struct address_space *mapping)
522 {
523 	return down_read_trylock(&mapping->i_mmap_rwsem);
524 }
525 
i_mmap_lock_read(struct address_space * mapping)526 static inline void i_mmap_lock_read(struct address_space *mapping)
527 {
528 	down_read(&mapping->i_mmap_rwsem);
529 }
530 
i_mmap_unlock_read(struct address_space * mapping)531 static inline void i_mmap_unlock_read(struct address_space *mapping)
532 {
533 	up_read(&mapping->i_mmap_rwsem);
534 }
535 
i_mmap_assert_locked(struct address_space * mapping)536 static inline void i_mmap_assert_locked(struct address_space *mapping)
537 {
538 	lockdep_assert_held(&mapping->i_mmap_rwsem);
539 }
540 
i_mmap_assert_write_locked(struct address_space * mapping)541 static inline void i_mmap_assert_write_locked(struct address_space *mapping)
542 {
543 	lockdep_assert_held_write(&mapping->i_mmap_rwsem);
544 }
545 
546 /*
547  * Might pages of this file be mapped into userspace?
548  */
mapping_mapped(const struct address_space * mapping)549 static inline int mapping_mapped(const struct address_space *mapping)
550 {
551 	return	!RB_EMPTY_ROOT(&mapping->i_mmap.rb_root);
552 }
553 
554 /*
555  * Might pages of this file have been modified in userspace?
556  * Note that i_mmap_writable counts all VM_SHARED, VM_MAYWRITE vmas: do_mmap
557  * marks vma as VM_SHARED if it is shared, and the file was opened for
558  * writing i.e. vma may be mprotected writable even if now readonly.
559  *
560  * If i_mmap_writable is negative, no new writable mappings are allowed. You
561  * can only deny writable mappings, if none exists right now.
562  */
mapping_writably_mapped(const struct address_space * mapping)563 static inline int mapping_writably_mapped(const struct address_space *mapping)
564 {
565 	return atomic_read(&mapping->i_mmap_writable) > 0;
566 }
567 
mapping_map_writable(struct address_space * mapping)568 static inline int mapping_map_writable(struct address_space *mapping)
569 {
570 	return atomic_inc_unless_negative(&mapping->i_mmap_writable) ?
571 		0 : -EPERM;
572 }
573 
mapping_unmap_writable(struct address_space * mapping)574 static inline void mapping_unmap_writable(struct address_space *mapping)
575 {
576 	atomic_dec(&mapping->i_mmap_writable);
577 }
578 
mapping_deny_writable(struct address_space * mapping)579 static inline int mapping_deny_writable(struct address_space *mapping)
580 {
581 	return atomic_dec_unless_positive(&mapping->i_mmap_writable) ?
582 		0 : -EBUSY;
583 }
584 
mapping_allow_writable(struct address_space * mapping)585 static inline void mapping_allow_writable(struct address_space *mapping)
586 {
587 	atomic_inc(&mapping->i_mmap_writable);
588 }
589 
590 /*
591  * Use sequence counter to get consistent i_size on 32-bit processors.
592  */
593 #if BITS_PER_LONG==32 && defined(CONFIG_SMP)
594 #include <linux/seqlock.h>
595 #define __NEED_I_SIZE_ORDERED
596 #define i_size_ordered_init(inode) seqcount_init(&inode->i_size_seqcount)
597 #else
598 #define i_size_ordered_init(inode) do { } while (0)
599 #endif
600 
601 struct posix_acl;
602 #define ACL_NOT_CACHED ((void *)(-1))
603 /*
604  * ACL_DONT_CACHE is for stacked filesystems, that rely on underlying fs to
605  * cache the ACL.  This also means that ->get_inode_acl() can be called in RCU
606  * mode with the LOOKUP_RCU flag.
607  */
608 #define ACL_DONT_CACHE ((void *)(-3))
609 
610 static inline struct posix_acl *
uncached_acl_sentinel(struct task_struct * task)611 uncached_acl_sentinel(struct task_struct *task)
612 {
613 	return (void *)task + 1;
614 }
615 
616 static inline bool
is_uncached_acl(struct posix_acl * acl)617 is_uncached_acl(struct posix_acl *acl)
618 {
619 	return (long)acl & 1;
620 }
621 
622 #define IOP_FASTPERM		0x0001
623 #define IOP_LOOKUP		0x0002
624 #define IOP_NOFOLLOW		0x0004
625 #define IOP_XATTR		0x0008
626 #define IOP_DEFAULT_READLINK	0x0010
627 #define IOP_MGTIME		0x0020
628 #define IOP_CACHED_LINK		0x0040
629 #define IOP_FASTPERM_MAY_EXEC	0x0080
630 #define IOP_FLCTX		0x0100
631 
632 /*
633  * Inode state bits.  Protected by inode->i_lock
634  *
635  * Four bits determine the dirty state of the inode: I_DIRTY_SYNC,
636  * I_DIRTY_DATASYNC, I_DIRTY_PAGES, and I_DIRTY_TIME.
637  *
638  * Four bits define the lifetime of an inode.  Initially, inodes are I_NEW,
639  * until that flag is cleared.  I_WILL_FREE, I_FREEING and I_CLEAR are set at
640  * various stages of removing an inode.
641  *
642  * Two bits are used for locking and completion notification, I_NEW and I_SYNC.
643  *
644  * I_DIRTY_SYNC		Inode is dirty, but doesn't have to be written on
645  *			fdatasync() (unless I_DIRTY_DATASYNC is also set).
646  *			Timestamp updates are the usual cause.
647  * I_DIRTY_DATASYNC	Data-related inode changes pending.  We keep track of
648  *			these changes separately from I_DIRTY_SYNC so that we
649  *			don't have to write inode on fdatasync() when only
650  *			e.g. the timestamps have changed.
651  * I_DIRTY_PAGES	Inode has dirty pages.  Inode itself may be clean.
652  * I_DIRTY_TIME		The inode itself has dirty timestamps, and the
653  *			lazytime mount option is enabled.  We keep track of this
654  *			separately from I_DIRTY_SYNC in order to implement
655  *			lazytime.  This gets cleared if I_DIRTY_INODE
656  *			(I_DIRTY_SYNC and/or I_DIRTY_DATASYNC) gets set. But
657  *			I_DIRTY_TIME can still be set if I_DIRTY_SYNC is already
658  *			in place because writeback might already be in progress
659  *			and we don't want to lose the time update
660  * I_NEW		Serves as both a mutex and completion notification.
661  *			New inodes set I_NEW.  If two processes both create
662  *			the same inode, one of them will release its inode and
663  *			wait for I_NEW to be released before returning.
664  *			Inodes in I_WILL_FREE, I_FREEING or I_CLEAR state can
665  *			also cause waiting on I_NEW, without I_NEW actually
666  *			being set.  find_inode() uses this to prevent returning
667  *			nearly-dead inodes.
668  * I_WILL_FREE		Must be set when calling write_inode_now() if i_count
669  *			is zero.  I_FREEING must be set when I_WILL_FREE is
670  *			cleared.
671  * I_FREEING		Set when inode is about to be freed but still has dirty
672  *			pages or buffers attached or the inode itself is still
673  *			dirty.
674  * I_CLEAR		Added by clear_inode().  In this state the inode is
675  *			clean and can be destroyed.  Inode keeps I_FREEING.
676  *
677  *			Inodes that are I_WILL_FREE, I_FREEING or I_CLEAR are
678  *			prohibited for many purposes.  iget() must wait for
679  *			the inode to be completely released, then create it
680  *			anew.  Other functions will just ignore such inodes,
681  *			if appropriate.  I_NEW is used for waiting.
682  *
683  * I_SYNC		Writeback of inode is running. The bit is set during
684  *			data writeback, and cleared with a wakeup on the bit
685  *			address once it is done. The bit is also used to pin
686  *			the inode in memory for flusher thread.
687  *
688  * I_REFERENCED		Marks the inode as recently references on the LRU list.
689  *
690  * I_WB_SWITCH		Cgroup bdi_writeback switching in progress.  Used to
691  *			synchronize competing switching instances and to tell
692  *			wb stat updates to grab the i_pages lock.  See
693  *			inode_switch_wbs_work_fn() for details.
694  *
695  * I_OVL_INUSE		Used by overlayfs to get exclusive ownership on upper
696  *			and work dirs among overlayfs mounts.
697  *
698  * I_CREATING		New object's inode in the middle of setting up.
699  *
700  * I_DONTCACHE		Evict inode as soon as it is not used anymore.
701  *
702  * I_SYNC_QUEUED	Inode is queued in b_io or b_more_io writeback lists.
703  *			Used to detect that mark_inode_dirty() should not move
704  *			inode between dirty lists.
705  *
706  * I_PINNING_FSCACHE_WB	Inode is pinning an fscache object for writeback.
707  *
708  * I_LRU_ISOLATING	Inode is pinned being isolated from LRU without holding
709  *			i_count.
710  *
711  * Q: What is the difference between I_WILL_FREE and I_FREEING?
712  *
713  * __I_{SYNC,NEW,LRU_ISOLATING} are used to derive unique addresses to wait
714  * upon. There's one free address left.
715  */
716 
717 enum inode_state_bits {
718 	__I_NEW			= 0U,
719 	__I_SYNC		= 1U,
720 	__I_LRU_ISOLATING	= 2U
721 	/* reserved wait address bit 3 */
722 };
723 
724 enum inode_state_flags_enum {
725 	I_NEW			= (1U << __I_NEW),
726 	I_SYNC			= (1U << __I_SYNC),
727 	I_LRU_ISOLATING         = (1U << __I_LRU_ISOLATING),
728 	/* reserved flag bit 3 */
729 	I_DIRTY_SYNC		= (1U << 4),
730 	I_DIRTY_DATASYNC	= (1U << 5),
731 	I_DIRTY_PAGES		= (1U << 6),
732 	I_WILL_FREE		= (1U << 7),
733 	I_FREEING		= (1U << 8),
734 	I_CLEAR			= (1U << 9),
735 	I_REFERENCED		= (1U << 10),
736 	I_LINKABLE		= (1U << 11),
737 	I_DIRTY_TIME		= (1U << 12),
738 	I_WB_SWITCH		= (1U << 13),
739 	I_OVL_INUSE		= (1U << 14),
740 	I_CREATING		= (1U << 15),
741 	I_DONTCACHE		= (1U << 16),
742 	I_SYNC_QUEUED		= (1U << 17),
743 	I_PINNING_NETFS_WB	= (1U << 18),
744 	I_METADATA_WRITEBACK	= (1U << 19),
745 };
746 
747 #define I_DIRTY_INODE (I_DIRTY_SYNC | I_DIRTY_DATASYNC)
748 #define I_DIRTY (I_DIRTY_INODE | I_DIRTY_PAGES)
749 #define I_DIRTY_ALL (I_DIRTY | I_DIRTY_TIME)
750 
751 /*
752  * Use inode_state_read() & friends to access.
753  */
754 struct inode_state_flags {
755 	enum inode_state_flags_enum __state;
756 };
757 
758 /*
759  * Keep mostly read-only and often accessed (especially for
760  * the RCU path lookup and 'stat' data) fields at the beginning
761  * of the 'struct inode'
762  */
763 struct inode {
764 	umode_t			i_mode;
765 	unsigned short		i_opflags;
766 	unsigned int		i_flags;
767 #ifdef CONFIG_FS_POSIX_ACL
768 	struct posix_acl	*i_acl;
769 	struct posix_acl	*i_default_acl;
770 #endif
771 	kuid_t			i_uid;
772 	kgid_t			i_gid;
773 
774 	const struct inode_operations	*i_op;
775 	struct super_block	*i_sb;
776 	struct address_space	*i_mapping;
777 
778 #ifdef CONFIG_SECURITY
779 	void			*i_security;
780 #endif
781 
782 	/* Stat data, not accessed from path walking */
783 	u64			i_ino;
784 	/*
785 	 * Filesystems may only read i_nlink directly.  They shall use the
786 	 * following functions for modification:
787 	 *
788 	 *    (set|clear|inc|drop)_nlink
789 	 *    inode_(inc|dec)_link_count
790 	 */
791 	union {
792 		const unsigned int i_nlink;
793 		unsigned int __i_nlink;
794 	};
795 	dev_t			i_rdev;
796 	loff_t			i_size;
797 	time64_t		i_atime_sec;
798 	time64_t		i_mtime_sec;
799 	time64_t		i_ctime_sec;
800 	u32			i_atime_nsec;
801 	u32			i_mtime_nsec;
802 	u32			i_ctime_nsec;
803 	u32			i_generation;
804 	spinlock_t		i_lock;	/* i_blocks, i_bytes, maybe i_size */
805 	unsigned short          i_bytes;
806 	u8			i_blkbits;
807 	enum rw_hint		i_write_hint;
808 	blkcnt_t		i_blocks;
809 
810 #ifdef __NEED_I_SIZE_ORDERED
811 	seqcount_t		i_size_seqcount;
812 #endif
813 
814 	/* Misc */
815 	struct inode_state_flags i_state;
816 	/* 32-bit hole */
817 	struct rw_semaphore	i_rwsem;
818 
819 	unsigned long		dirtied_when;	/* jiffies of first dirtying */
820 	unsigned long		dirtied_time_when;
821 
822 	struct hlist_node	i_hash;
823 	struct list_head	i_io_list;	/* backing dev IO list */
824 #ifdef CONFIG_CGROUP_WRITEBACK
825 	struct bdi_writeback	*i_wb;		/* the associated cgroup wb */
826 
827 	/* foreign inode detection, see wbc_detach_inode() */
828 	int			i_wb_frn_winner;
829 	u16			i_wb_frn_avg_time;
830 	u16			i_wb_frn_history;
831 #endif
832 	struct list_head	i_lru;		/* inode LRU list */
833 	struct list_head	i_sb_list;
834 	struct list_head	i_wb_list;	/* backing dev writeback list */
835 	union {
836 		struct hlist_head	i_dentry;
837 		struct rcu_head		i_rcu;
838 	};
839 	atomic64_t		i_version;
840 	atomic64_t		i_sequence; /* see futex */
841 	atomic_t		i_count;
842 	atomic_t		i_dio_count;
843 	atomic_t		i_writecount;
844 #if defined(CONFIG_IMA) || defined(CONFIG_FILE_LOCKING)
845 	atomic_t		i_readcount; /* struct files open RO */
846 #endif
847 	union {
848 		const struct file_operations	*i_fop;	/* former ->i_op->default_file_ops */
849 		void (*free_inode)(struct inode *);
850 	};
851 	struct file_lock_context	*i_flctx;
852 	struct address_space	i_data;
853 	union {
854 		struct list_head	i_devices;
855 		int			i_linklen;
856 	};
857 	union {
858 		struct pipe_inode_info	*i_pipe;
859 		struct cdev		*i_cdev;
860 		char			*i_link;
861 		unsigned		i_dir_seq;
862 	};
863 
864 
865 #ifdef CONFIG_FSNOTIFY
866 	__u32			i_fsnotify_mask; /* all events this inode cares about */
867 	/* 32-bit hole reserved for expanding i_fsnotify_mask */
868 	struct fsnotify_mark_connector __rcu	*i_fsnotify_marks;
869 #endif
870 
871 	void			*i_private; /* fs or device private pointer */
872 } __randomize_layout;
873 
874 /*
875  * i_state handling
876  *
877  * We hide all of it behind helpers so that we can validate consumers.
878  */
inode_state_read_once(struct inode * inode)879 static inline enum inode_state_flags_enum inode_state_read_once(struct inode *inode)
880 {
881 	return READ_ONCE(inode->i_state.__state);
882 }
883 
inode_state_read(struct inode * inode)884 static inline enum inode_state_flags_enum inode_state_read(struct inode *inode)
885 {
886 	lockdep_assert_held(&inode->i_lock);
887 	return inode->i_state.__state;
888 }
889 
inode_state_set_raw(struct inode * inode,enum inode_state_flags_enum flags)890 static inline void inode_state_set_raw(struct inode *inode,
891 				       enum inode_state_flags_enum flags)
892 {
893 	WRITE_ONCE(inode->i_state.__state, inode->i_state.__state | flags);
894 }
895 
inode_state_set(struct inode * inode,enum inode_state_flags_enum flags)896 static inline void inode_state_set(struct inode *inode,
897 				   enum inode_state_flags_enum flags)
898 {
899 	lockdep_assert_held(&inode->i_lock);
900 	inode_state_set_raw(inode, flags);
901 }
902 
inode_state_clear_raw(struct inode * inode,enum inode_state_flags_enum flags)903 static inline void inode_state_clear_raw(struct inode *inode,
904 					 enum inode_state_flags_enum flags)
905 {
906 	WRITE_ONCE(inode->i_state.__state, inode->i_state.__state & ~flags);
907 }
908 
inode_state_clear(struct inode * inode,enum inode_state_flags_enum flags)909 static inline void inode_state_clear(struct inode *inode,
910 				     enum inode_state_flags_enum flags)
911 {
912 	lockdep_assert_held(&inode->i_lock);
913 	inode_state_clear_raw(inode, flags);
914 }
915 
inode_state_assign_raw(struct inode * inode,enum inode_state_flags_enum flags)916 static inline void inode_state_assign_raw(struct inode *inode,
917 					  enum inode_state_flags_enum flags)
918 {
919 	WRITE_ONCE(inode->i_state.__state, flags);
920 }
921 
inode_state_assign(struct inode * inode,enum inode_state_flags_enum flags)922 static inline void inode_state_assign(struct inode *inode,
923 				      enum inode_state_flags_enum flags)
924 {
925 	lockdep_assert_held(&inode->i_lock);
926 	inode_state_assign_raw(inode, flags);
927 }
928 
inode_state_replace_raw(struct inode * inode,enum inode_state_flags_enum clearflags,enum inode_state_flags_enum setflags)929 static inline void inode_state_replace_raw(struct inode *inode,
930 					   enum inode_state_flags_enum clearflags,
931 					   enum inode_state_flags_enum setflags)
932 {
933 	enum inode_state_flags_enum flags;
934 	flags = inode->i_state.__state;
935 	flags &= ~clearflags;
936 	flags |= setflags;
937 	inode_state_assign_raw(inode, flags);
938 }
939 
inode_state_replace(struct inode * inode,enum inode_state_flags_enum clearflags,enum inode_state_flags_enum setflags)940 static inline void inode_state_replace(struct inode *inode,
941 				       enum inode_state_flags_enum clearflags,
942 				       enum inode_state_flags_enum setflags)
943 {
944 	lockdep_assert_held(&inode->i_lock);
945 	inode_state_replace_raw(inode, clearflags, setflags);
946 }
947 
inode_set_cached_link(struct inode * inode,char * link,int linklen)948 static inline void inode_set_cached_link(struct inode *inode, char *link, int linklen)
949 {
950 	VFS_WARN_ON_INODE(strlen(link) != linklen, inode);
951 	VFS_WARN_ON_INODE(inode->i_opflags & IOP_CACHED_LINK, inode);
952 	inode->i_link = link;
953 	inode->i_linklen = linklen;
954 	inode->i_opflags |= IOP_CACHED_LINK;
955 }
956 
957 /*
958  * Get bit address from inode->i_state to use with wait_var_event()
959  * infrastructre.
960  */
961 #define inode_state_wait_address(inode, bit) ((char *)&(inode)->i_state + (bit))
962 
963 struct wait_queue_head *inode_bit_waitqueue(struct wait_bit_queue_entry *wqe,
964 					    struct inode *inode, u32 bit);
965 
inode_wake_up_bit(struct inode * inode,u32 bit)966 static inline void inode_wake_up_bit(struct inode *inode, u32 bit)
967 {
968 	/* Caller is responsible for correct memory barriers. */
969 	wake_up_var(inode_state_wait_address(inode, bit));
970 }
971 
972 struct timespec64 timestamp_truncate(struct timespec64 t, struct inode *inode);
973 
i_blocksize(const struct inode * node)974 static inline unsigned int i_blocksize(const struct inode *node)
975 {
976 	return (1 << node->i_blkbits);
977 }
978 
inode_unhashed(struct inode * inode)979 static inline int inode_unhashed(struct inode *inode)
980 {
981 	return hlist_unhashed(&inode->i_hash);
982 }
983 
984 /*
985  * __mark_inode_dirty expects inodes to be hashed.  Since we don't
986  * want special inodes in the fileset inode space, we make them
987  * appear hashed, but do not put on any lists.  hlist_del()
988  * will work fine and require no locking.
989  */
inode_fake_hash(struct inode * inode)990 static inline void inode_fake_hash(struct inode *inode)
991 {
992 	hlist_add_fake(&inode->i_hash);
993 }
994 
995 void wait_on_new_inode(struct inode *inode);
996 
997 /*
998  * inode->i_rwsem nesting subclasses for the lock validator:
999  *
1000  * 0: the object of the current VFS operation
1001  * 1: parent
1002  * 2: child/target
1003  * 3: xattr
1004  * 4: second non-directory
1005  * 5: second parent (when locking independent directories in rename)
1006  *
1007  * I_MUTEX_NONDIR2 is for certain operations (such as rename) which lock two
1008  * non-directories at once.
1009  *
1010  * The locking order between these classes is
1011  * parent[2] -> child -> grandchild -> normal -> xattr -> second non-directory
1012  */
1013 enum inode_i_mutex_lock_class
1014 {
1015 	I_MUTEX_NORMAL,
1016 	I_MUTEX_PARENT,
1017 	I_MUTEX_CHILD,
1018 	I_MUTEX_XATTR,
1019 	I_MUTEX_NONDIR2,
1020 	I_MUTEX_PARENT2,
1021 };
1022 
inode_lock(struct inode * inode)1023 static inline void inode_lock(struct inode *inode)
1024 {
1025 	down_write(&inode->i_rwsem);
1026 }
1027 
inode_lock_killable(struct inode * inode)1028 static inline __must_check int inode_lock_killable(struct inode *inode)
1029 {
1030 	return down_write_killable(&inode->i_rwsem);
1031 }
1032 
inode_unlock(struct inode * inode)1033 static inline void inode_unlock(struct inode *inode)
1034 {
1035 	up_write(&inode->i_rwsem);
1036 }
1037 
inode_lock_shared(struct inode * inode)1038 static inline void inode_lock_shared(struct inode *inode)
1039 {
1040 	down_read(&inode->i_rwsem);
1041 }
1042 
inode_lock_shared_killable(struct inode * inode)1043 static inline __must_check int inode_lock_shared_killable(struct inode *inode)
1044 {
1045 	return down_read_killable(&inode->i_rwsem);
1046 }
1047 
inode_unlock_shared(struct inode * inode)1048 static inline void inode_unlock_shared(struct inode *inode)
1049 {
1050 	up_read(&inode->i_rwsem);
1051 }
1052 
inode_trylock(struct inode * inode)1053 static inline int inode_trylock(struct inode *inode)
1054 {
1055 	return down_write_trylock(&inode->i_rwsem);
1056 }
1057 
inode_trylock_shared(struct inode * inode)1058 static inline int inode_trylock_shared(struct inode *inode)
1059 {
1060 	return down_read_trylock(&inode->i_rwsem);
1061 }
1062 
inode_is_locked(struct inode * inode)1063 static inline int inode_is_locked(struct inode *inode)
1064 {
1065 	return rwsem_is_locked(&inode->i_rwsem);
1066 }
1067 
inode_lock_nested(struct inode * inode,unsigned subclass)1068 static inline void inode_lock_nested(struct inode *inode, unsigned subclass)
1069 {
1070 	down_write_nested(&inode->i_rwsem, subclass);
1071 }
1072 
inode_lock_shared_nested(struct inode * inode,unsigned subclass)1073 static inline void inode_lock_shared_nested(struct inode *inode, unsigned subclass)
1074 {
1075 	down_read_nested(&inode->i_rwsem, subclass);
1076 }
1077 
filemap_invalidate_lock(struct address_space * mapping)1078 static inline void filemap_invalidate_lock(struct address_space *mapping)
1079 {
1080 	down_write(&mapping->invalidate_lock);
1081 }
1082 
filemap_invalidate_unlock(struct address_space * mapping)1083 static inline void filemap_invalidate_unlock(struct address_space *mapping)
1084 {
1085 	up_write(&mapping->invalidate_lock);
1086 }
1087 
filemap_invalidate_lock_shared(struct address_space * mapping)1088 static inline void filemap_invalidate_lock_shared(struct address_space *mapping)
1089 {
1090 	down_read(&mapping->invalidate_lock);
1091 }
1092 
filemap_invalidate_trylock_shared(struct address_space * mapping)1093 static inline int filemap_invalidate_trylock_shared(
1094 					struct address_space *mapping)
1095 {
1096 	return down_read_trylock(&mapping->invalidate_lock);
1097 }
1098 
filemap_invalidate_unlock_shared(struct address_space * mapping)1099 static inline void filemap_invalidate_unlock_shared(
1100 					struct address_space *mapping)
1101 {
1102 	up_read(&mapping->invalidate_lock);
1103 }
1104 
1105 void lock_two_nondirectories(struct inode *, struct inode*);
1106 void unlock_two_nondirectories(struct inode *, struct inode*);
1107 
1108 void filemap_invalidate_lock_two(struct address_space *mapping1,
1109 				 struct address_space *mapping2);
1110 void filemap_invalidate_unlock_two(struct address_space *mapping1,
1111 				   struct address_space *mapping2);
1112 
1113 
1114 /*
1115  * NOTE: in a 32bit arch with a preemptable kernel and
1116  * an UP compile the i_size_read/write must be atomic
1117  * with respect to the local cpu (unlike with preempt disabled),
1118  * but they don't need to be atomic with respect to other cpus like in
1119  * true SMP (so they need either to either locally disable irq around
1120  * the read or for example on x86 they can be still implemented as a
1121  * cmpxchg8b without the need of the lock prefix). For SMP compiles
1122  * and 64bit archs it makes no difference if preempt is enabled or not.
1123  */
i_size_read(const struct inode * inode)1124 static inline loff_t i_size_read(const struct inode *inode)
1125 {
1126 #if BITS_PER_LONG==32 && defined(CONFIG_SMP)
1127 	loff_t i_size;
1128 	unsigned int seq;
1129 
1130 	do {
1131 		seq = read_seqcount_begin(&inode->i_size_seqcount);
1132 		i_size = inode->i_size;
1133 	} while (read_seqcount_retry(&inode->i_size_seqcount, seq));
1134 	return i_size;
1135 #elif BITS_PER_LONG==32 && defined(CONFIG_PREEMPTION)
1136 	loff_t i_size;
1137 
1138 	preempt_disable();
1139 	i_size = inode->i_size;
1140 	preempt_enable();
1141 	return i_size;
1142 #else
1143 	/* Pairs with smp_store_release() in i_size_write() */
1144 	return smp_load_acquire(&inode->i_size);
1145 #endif
1146 }
1147 
1148 /*
1149  * NOTE: unlike i_size_read(), i_size_write() does need locking around it
1150  * (normally i_rwsem), otherwise on 32bit/SMP an update of i_size_seqcount
1151  * can be lost, resulting in subsequent i_size_read() calls spinning forever.
1152  */
i_size_write(struct inode * inode,loff_t i_size)1153 static inline void i_size_write(struct inode *inode, loff_t i_size)
1154 {
1155 #if BITS_PER_LONG==32 && defined(CONFIG_SMP)
1156 	preempt_disable();
1157 	write_seqcount_begin(&inode->i_size_seqcount);
1158 	inode->i_size = i_size;
1159 	write_seqcount_end(&inode->i_size_seqcount);
1160 	preempt_enable();
1161 #elif BITS_PER_LONG==32 && defined(CONFIG_PREEMPTION)
1162 	preempt_disable();
1163 	inode->i_size = i_size;
1164 	preempt_enable();
1165 #else
1166 	/*
1167 	 * Pairs with smp_load_acquire() in i_size_read() to ensure
1168 	 * changes related to inode size (such as page contents) are
1169 	 * visible before we see the changed inode size.
1170 	 */
1171 	smp_store_release(&inode->i_size, i_size);
1172 #endif
1173 }
1174 
iminor(const struct inode * inode)1175 static inline unsigned iminor(const struct inode *inode)
1176 {
1177 	return MINOR(inode->i_rdev);
1178 }
1179 
imajor(const struct inode * inode)1180 static inline unsigned imajor(const struct inode *inode)
1181 {
1182 	return MAJOR(inode->i_rdev);
1183 }
1184 
1185 struct fown_struct {
1186 	struct file *file;	/* backpointer for security modules */
1187 	rwlock_t lock;          /* protects pid, uid, euid fields */
1188 	struct pid *pid;	/* pid or -pgrp where SIGIO should be sent */
1189 	enum pid_type pid_type;	/* Kind of process group SIGIO should be sent to */
1190 	kuid_t uid, euid;	/* uid/euid of process setting the owner */
1191 	int signum;		/* posix.1b rt signal to be delivered on IO */
1192 };
1193 
1194 /**
1195  * struct file_ra_state - Track a file's readahead state.
1196  * @start: Where the most recent readahead started.
1197  * @size: Number of pages read in the most recent readahead.
1198  * @async_size: Numer of pages that were/are not needed immediately
1199  *      and so were/are genuinely "ahead".  Start next readahead when
1200  *      the first of these pages is accessed.
1201  * @ra_pages: Maximum size of a readahead request, copied from the bdi.
1202  * @order: Preferred folio order used for most recent readahead.
1203  * @mmap_miss: How many mmap accesses missed in the page cache.
1204  * @prev_pos: The last byte in the most recent read request.
1205  *
1206  * When this structure is passed to ->readahead(), the "most recent"
1207  * readahead means the current readahead.
1208  */
1209 struct file_ra_state {
1210 	pgoff_t start;
1211 	unsigned int size;
1212 	unsigned int async_size;
1213 	unsigned int ra_pages;
1214 	unsigned short order;
1215 	unsigned short mmap_miss;
1216 	loff_t prev_pos;
1217 };
1218 
1219 /*
1220  * Check if @index falls in the readahead windows.
1221  */
ra_has_index(struct file_ra_state * ra,pgoff_t index)1222 static inline int ra_has_index(struct file_ra_state *ra, pgoff_t index)
1223 {
1224 	return (index >= ra->start &&
1225 		index <  ra->start + ra->size);
1226 }
1227 
1228 /**
1229  * struct file - Represents a file
1230  * @f_lock: Protects f_ep, f_flags. Must not be taken from IRQ context.
1231  * @f_mode: FMODE_* flags often used in hotpaths
1232  * @f_op: file operations
1233  * @f_mapping: Contents of a cacheable, mappable object.
1234  * @private_data: filesystem or driver specific data
1235  * @f_inode: cached inode
1236  * @f_flags: file flags
1237  * @f_iocb_flags: iocb flags
1238  * @f_cred: stashed credentials of creator/opener
1239  * @f_owner: file owner
1240  * @f_path: path of the file
1241  * @__f_path: writable alias for @f_path; *ONLY* for core VFS and only before
1242  *   the file gets open
1243  * @f_pos_lock: lock protecting file position
1244  * @f_pipe: specific to pipes
1245  * @f_pos: file position
1246  * @f_security: LSM security context of this file
1247  * @f_wb_err: writeback error
1248  * @f_sb_err: per sb writeback errors
1249  * @f_ep: link of all epoll hooks for this file
1250  * @f_task_work: task work entry point
1251  * @f_llist: work queue entrypoint
1252  * @f_ra: file's readahead state
1253  * @f_freeptr: Pointer used by SLAB_TYPESAFE_BY_RCU file cache (don't touch.)
1254  * @f_ref: reference count
1255  */
1256 struct file {
1257 	spinlock_t			f_lock;
1258 	fmode_t				f_mode;
1259 	const struct file_operations	*f_op;
1260 	struct address_space		*f_mapping;
1261 	void				*private_data;
1262 	struct inode			*f_inode;
1263 	unsigned int			f_flags;
1264 	unsigned int			f_iocb_flags;
1265 	const struct cred		*f_cred;
1266 	struct fown_struct		*f_owner;
1267 	/* --- cacheline 1 boundary (64 bytes) --- */
1268 	union {
1269 		const struct path	f_path;
1270 		struct path		__f_path;
1271 	};
1272 	union {
1273 		/* regular files (with FMODE_ATOMIC_POS) and directories */
1274 		struct mutex		f_pos_lock;
1275 		/* pipes */
1276 		u64			f_pipe;
1277 	};
1278 	loff_t				f_pos;
1279 #ifdef CONFIG_SECURITY
1280 	void				*f_security;
1281 #endif
1282 	/* --- cacheline 2 boundary (128 bytes) --- */
1283 	errseq_t			f_wb_err;
1284 	errseq_t			f_sb_err;
1285 #ifdef CONFIG_EPOLL
1286 	struct hlist_head		*f_ep;
1287 #endif
1288 	union {
1289 		struct callback_head	f_task_work;
1290 		struct llist_node	f_llist;
1291 		struct file_ra_state	f_ra;
1292 		freeptr_t		f_freeptr;
1293 	};
1294 	file_ref_t			f_ref;
1295 	/* --- cacheline 3 boundary (192 bytes) --- */
1296 } __randomize_layout
1297   __attribute__((aligned(4)));	/* lest something weird decides that 2 is OK */
1298 
1299 struct file_handle {
1300 	__u32 handle_bytes;
1301 	int handle_type;
1302 	/* file identifier */
1303 	unsigned char f_handle[] __counted_by(handle_bytes);
1304 };
1305 
get_file(struct file * f)1306 static inline struct file *get_file(struct file *f)
1307 {
1308 	file_ref_inc(&f->f_ref);
1309 	return f;
1310 }
1311 
1312 struct file *get_file_rcu(struct file __rcu **f);
1313 struct file *get_file_active(struct file **f);
1314 
1315 #define file_count(f)	file_ref_read(&(f)->f_ref)
1316 
1317 #define	MAX_NON_LFS	((1UL<<31) - 1)
1318 
1319 /* Page cache limit. The filesystems should put that into their s_maxbytes
1320    limits, otherwise bad things can happen in VM. */
1321 #if BITS_PER_LONG==32
1322 #define MAX_LFS_FILESIZE	((loff_t)ULONG_MAX << PAGE_SHIFT)
1323 #elif BITS_PER_LONG==64
1324 #define MAX_LFS_FILESIZE 	((loff_t)LLONG_MAX)
1325 #endif
1326 
1327 /* legacy typedef, should eventually be removed */
1328 typedef void *fl_owner_t;
1329 
1330 struct file_lock;
1331 struct file_lease;
1332 
1333 /* The following constant reflects the upper bound of the file/locking space */
1334 #ifndef OFFSET_MAX
1335 #define OFFSET_MAX	type_max(loff_t)
1336 #define OFFT_OFFSET_MAX	type_max(off_t)
1337 #endif
1338 
1339 int file_f_owner_allocate(struct file *file);
file_f_owner(const struct file * file)1340 static inline struct fown_struct *file_f_owner(const struct file *file)
1341 {
1342 	return READ_ONCE(file->f_owner);
1343 }
1344 
1345 extern void send_sigio(struct fown_struct *fown, int fd, int band);
1346 
file_inode(const struct file * f)1347 static inline struct inode *file_inode(const struct file *f)
1348 {
1349 	return f->f_inode;
1350 }
1351 
1352 /*
1353  * file_dentry() is a relic from the days that overlayfs was using files with a
1354  * "fake" path, meaning, f_path on overlayfs and f_inode on underlying fs.
1355  * In those days, file_dentry() was needed to get the underlying fs dentry that
1356  * matches f_inode.
1357  * Files with "fake" path should not exist nowadays, so use an assertion to make
1358  * sure that file_dentry() was not papering over filesystem bugs.
1359  */
file_dentry(const struct file * file)1360 static inline struct dentry *file_dentry(const struct file *file)
1361 {
1362 	struct dentry *dentry = file->f_path.dentry;
1363 
1364 	WARN_ON_ONCE(d_inode(dentry) != file_inode(file));
1365 	return dentry;
1366 }
1367 
1368 struct fasync_struct {
1369 	rwlock_t		fa_lock;
1370 	int			magic;
1371 	int			fa_fd;
1372 	struct fasync_struct	*fa_next; /* singly linked list */
1373 	struct file		*fa_file;
1374 	struct rcu_head		fa_rcu;
1375 };
1376 
1377 #define FASYNC_MAGIC 0x4601
1378 
1379 /* SMP safe fasync helpers: */
1380 extern int fasync_helper(int, struct file *, int, struct fasync_struct **);
1381 extern struct fasync_struct *fasync_insert_entry(int, struct file *, struct fasync_struct **, struct fasync_struct *);
1382 extern int fasync_remove_entry(struct file *, struct fasync_struct **);
1383 extern struct fasync_struct *fasync_alloc(void);
1384 extern void fasync_free(struct fasync_struct *);
1385 
1386 /* can be called from interrupts */
1387 extern void kill_fasync(struct fasync_struct **, int, int);
1388 
1389 extern void __f_setown(struct file *filp, struct pid *, enum pid_type, int force);
1390 extern int f_setown(struct file *filp, int who, int force);
1391 extern void f_delown(struct file *filp);
1392 extern pid_t f_getown(struct file *filp);
1393 extern int send_sigurg(struct file *file);
1394 
1395 /*
1396  *	Umount options
1397  */
1398 
1399 #define MNT_FORCE	0x00000001	/* Attempt to forcibily umount */
1400 #define MNT_DETACH	0x00000002	/* Just detach from the tree */
1401 #define MNT_EXPIRE	0x00000004	/* Mark for expiry */
1402 #define UMOUNT_NOFOLLOW	0x00000008	/* Don't follow symlink on umount */
1403 #define UMOUNT_UNUSED	0x80000000	/* Flag guaranteed to be unused */
1404 
i_user_ns(const struct inode * inode)1405 static inline struct user_namespace *i_user_ns(const struct inode *inode)
1406 {
1407 	return inode->i_sb->s_user_ns;
1408 }
1409 
1410 /* Helper functions so that in most cases filesystems will
1411  * not need to deal directly with kuid_t and kgid_t and can
1412  * instead deal with the raw numeric values that are stored
1413  * in the filesystem.
1414  */
i_uid_read(const struct inode * inode)1415 static inline uid_t i_uid_read(const struct inode *inode)
1416 {
1417 	return from_kuid(i_user_ns(inode), inode->i_uid);
1418 }
1419 
i_gid_read(const struct inode * inode)1420 static inline gid_t i_gid_read(const struct inode *inode)
1421 {
1422 	return from_kgid(i_user_ns(inode), inode->i_gid);
1423 }
1424 
i_uid_write(struct inode * inode,uid_t uid)1425 static inline void i_uid_write(struct inode *inode, uid_t uid)
1426 {
1427 	inode->i_uid = make_kuid(i_user_ns(inode), uid);
1428 }
1429 
i_gid_write(struct inode * inode,gid_t gid)1430 static inline void i_gid_write(struct inode *inode, gid_t gid)
1431 {
1432 	inode->i_gid = make_kgid(i_user_ns(inode), gid);
1433 }
1434 
1435 /**
1436  * i_uid_into_vfsuid - map an inode's i_uid down according to an idmapping
1437  * @idmap: idmap of the mount the inode was found from
1438  * @inode: inode to map
1439  *
1440  * Return: whe inode's i_uid mapped down according to @idmap.
1441  * If the inode's i_uid has no mapping INVALID_VFSUID is returned.
1442  */
i_uid_into_vfsuid(struct mnt_idmap * idmap,const struct inode * inode)1443 static inline vfsuid_t i_uid_into_vfsuid(struct mnt_idmap *idmap,
1444 					 const struct inode *inode)
1445 {
1446 	return make_vfsuid(idmap, i_user_ns(inode), inode->i_uid);
1447 }
1448 
1449 /**
1450  * i_uid_needs_update - check whether inode's i_uid needs to be updated
1451  * @idmap: idmap of the mount the inode was found from
1452  * @attr: the new attributes of @inode
1453  * @inode: the inode to update
1454  *
1455  * Check whether the $inode's i_uid field needs to be updated taking idmapped
1456  * mounts into account if the filesystem supports it.
1457  *
1458  * Return: true if @inode's i_uid field needs to be updated, false if not.
1459  */
i_uid_needs_update(struct mnt_idmap * idmap,const struct iattr * attr,const struct inode * inode)1460 static inline bool i_uid_needs_update(struct mnt_idmap *idmap,
1461 				      const struct iattr *attr,
1462 				      const struct inode *inode)
1463 {
1464 	return ((attr->ia_valid & ATTR_UID) &&
1465 		!vfsuid_eq(attr->ia_vfsuid,
1466 			   i_uid_into_vfsuid(idmap, inode)));
1467 }
1468 
1469 /**
1470  * i_uid_update - update @inode's i_uid field
1471  * @idmap: idmap of the mount the inode was found from
1472  * @attr: the new attributes of @inode
1473  * @inode: the inode to update
1474  *
1475  * Safely update @inode's i_uid field translating the vfsuid of any idmapped
1476  * mount into the filesystem kuid.
1477  */
i_uid_update(struct mnt_idmap * idmap,const struct iattr * attr,struct inode * inode)1478 static inline void i_uid_update(struct mnt_idmap *idmap,
1479 				const struct iattr *attr,
1480 				struct inode *inode)
1481 {
1482 	if (attr->ia_valid & ATTR_UID)
1483 		inode->i_uid = from_vfsuid(idmap, i_user_ns(inode),
1484 					   attr->ia_vfsuid);
1485 }
1486 
1487 /**
1488  * i_gid_into_vfsgid - map an inode's i_gid down according to an idmapping
1489  * @idmap: idmap of the mount the inode was found from
1490  * @inode: inode to map
1491  *
1492  * Return: the inode's i_gid mapped down according to @idmap.
1493  * If the inode's i_gid has no mapping INVALID_VFSGID is returned.
1494  */
i_gid_into_vfsgid(struct mnt_idmap * idmap,const struct inode * inode)1495 static inline vfsgid_t i_gid_into_vfsgid(struct mnt_idmap *idmap,
1496 					 const struct inode *inode)
1497 {
1498 	return make_vfsgid(idmap, i_user_ns(inode), inode->i_gid);
1499 }
1500 
1501 /**
1502  * i_gid_needs_update - check whether inode's i_gid needs to be updated
1503  * @idmap: idmap of the mount the inode was found from
1504  * @attr: the new attributes of @inode
1505  * @inode: the inode to update
1506  *
1507  * Check whether the $inode's i_gid field needs to be updated taking idmapped
1508  * mounts into account if the filesystem supports it.
1509  *
1510  * Return: true if @inode's i_gid field needs to be updated, false if not.
1511  */
i_gid_needs_update(struct mnt_idmap * idmap,const struct iattr * attr,const struct inode * inode)1512 static inline bool i_gid_needs_update(struct mnt_idmap *idmap,
1513 				      const struct iattr *attr,
1514 				      const struct inode *inode)
1515 {
1516 	return ((attr->ia_valid & ATTR_GID) &&
1517 		!vfsgid_eq(attr->ia_vfsgid,
1518 			   i_gid_into_vfsgid(idmap, inode)));
1519 }
1520 
1521 /**
1522  * i_gid_update - update @inode's i_gid field
1523  * @idmap: idmap of the mount the inode was found from
1524  * @attr: the new attributes of @inode
1525  * @inode: the inode to update
1526  *
1527  * Safely update @inode's i_gid field translating the vfsgid of any idmapped
1528  * mount into the filesystem kgid.
1529  */
i_gid_update(struct mnt_idmap * idmap,const struct iattr * attr,struct inode * inode)1530 static inline void i_gid_update(struct mnt_idmap *idmap,
1531 				const struct iattr *attr,
1532 				struct inode *inode)
1533 {
1534 	if (attr->ia_valid & ATTR_GID)
1535 		inode->i_gid = from_vfsgid(idmap, i_user_ns(inode),
1536 					   attr->ia_vfsgid);
1537 }
1538 
1539 /**
1540  * inode_fsuid_set - initialize inode's i_uid field with callers fsuid
1541  * @inode: inode to initialize
1542  * @idmap: idmap of the mount the inode was found from
1543  *
1544  * Initialize the i_uid field of @inode. If the inode was found/created via
1545  * an idmapped mount map the caller's fsuid according to @idmap.
1546  */
inode_fsuid_set(struct inode * inode,struct mnt_idmap * idmap)1547 static inline void inode_fsuid_set(struct inode *inode,
1548 				   struct mnt_idmap *idmap)
1549 {
1550 	inode->i_uid = mapped_fsuid(idmap, i_user_ns(inode));
1551 }
1552 
1553 /**
1554  * inode_fsgid_set - initialize inode's i_gid field with callers fsgid
1555  * @inode: inode to initialize
1556  * @idmap: idmap of the mount the inode was found from
1557  *
1558  * Initialize the i_gid field of @inode. If the inode was found/created via
1559  * an idmapped mount map the caller's fsgid according to @idmap.
1560  */
inode_fsgid_set(struct inode * inode,struct mnt_idmap * idmap)1561 static inline void inode_fsgid_set(struct inode *inode,
1562 				   struct mnt_idmap *idmap)
1563 {
1564 	inode->i_gid = mapped_fsgid(idmap, i_user_ns(inode));
1565 }
1566 
1567 /**
1568  * fsuidgid_has_mapping() - check whether caller's fsuid/fsgid is mapped
1569  * @sb: the superblock we want a mapping in
1570  * @idmap: idmap of the relevant mount
1571  *
1572  * Check whether the caller's fsuid and fsgid have a valid mapping in the
1573  * s_user_ns of the superblock @sb. If the caller is on an idmapped mount map
1574  * the caller's fsuid and fsgid according to the @idmap first.
1575  *
1576  * Return: true if fsuid and fsgid is mapped, false if not.
1577  */
fsuidgid_has_mapping(struct super_block * sb,struct mnt_idmap * idmap)1578 static inline bool fsuidgid_has_mapping(struct super_block *sb,
1579 					struct mnt_idmap *idmap)
1580 {
1581 	struct user_namespace *fs_userns = sb->s_user_ns;
1582 	kuid_t kuid;
1583 	kgid_t kgid;
1584 
1585 	kuid = mapped_fsuid(idmap, fs_userns);
1586 	if (!uid_valid(kuid))
1587 		return false;
1588 	kgid = mapped_fsgid(idmap, fs_userns);
1589 	if (!gid_valid(kgid))
1590 		return false;
1591 	return kuid_has_mapping(fs_userns, kuid) &&
1592 	       kgid_has_mapping(fs_userns, kgid);
1593 }
1594 
1595 struct timespec64 current_time(struct inode *inode);
1596 struct timespec64 inode_set_ctime_current(struct inode *inode);
1597 struct timespec64 inode_set_ctime_deleg(struct inode *inode,
1598 					struct timespec64 update);
1599 
inode_get_atime_sec(const struct inode * inode)1600 static inline time64_t inode_get_atime_sec(const struct inode *inode)
1601 {
1602 	return READ_ONCE(inode->i_atime_sec);
1603 }
1604 
inode_get_atime_nsec(const struct inode * inode)1605 static inline long inode_get_atime_nsec(const struct inode *inode)
1606 {
1607 	return READ_ONCE(inode->i_atime_nsec);
1608 }
1609 
inode_get_atime(const struct inode * inode)1610 static inline struct timespec64 inode_get_atime(const struct inode *inode)
1611 {
1612 	struct timespec64 ts = { .tv_sec  = inode_get_atime_sec(inode),
1613 				 .tv_nsec = inode_get_atime_nsec(inode) };
1614 
1615 	return ts;
1616 }
1617 
inode_set_atime_to_ts(struct inode * inode,struct timespec64 ts)1618 static inline struct timespec64 inode_set_atime_to_ts(struct inode *inode,
1619 						      struct timespec64 ts)
1620 {
1621 	WRITE_ONCE(inode->i_atime_sec, ts.tv_sec);
1622 	WRITE_ONCE(inode->i_atime_nsec, ts.tv_nsec);
1623 	return ts;
1624 }
1625 
inode_set_atime(struct inode * inode,time64_t sec,long nsec)1626 static inline struct timespec64 inode_set_atime(struct inode *inode,
1627 						time64_t sec, long nsec)
1628 {
1629 	struct timespec64 ts = { .tv_sec  = sec,
1630 				 .tv_nsec = nsec };
1631 
1632 	return inode_set_atime_to_ts(inode, ts);
1633 }
1634 
inode_get_mtime_sec(const struct inode * inode)1635 static inline time64_t inode_get_mtime_sec(const struct inode *inode)
1636 {
1637 	return READ_ONCE(inode->i_mtime_sec);
1638 }
1639 
inode_get_mtime_nsec(const struct inode * inode)1640 static inline long inode_get_mtime_nsec(const struct inode *inode)
1641 {
1642 	return READ_ONCE(inode->i_mtime_nsec);
1643 }
1644 
inode_get_mtime(const struct inode * inode)1645 static inline struct timespec64 inode_get_mtime(const struct inode *inode)
1646 {
1647 	struct timespec64 ts = { .tv_sec  = inode_get_mtime_sec(inode),
1648 				 .tv_nsec = inode_get_mtime_nsec(inode) };
1649 	return ts;
1650 }
1651 
inode_set_mtime_to_ts(struct inode * inode,struct timespec64 ts)1652 static inline struct timespec64 inode_set_mtime_to_ts(struct inode *inode,
1653 						      struct timespec64 ts)
1654 {
1655 	WRITE_ONCE(inode->i_mtime_sec, ts.tv_sec);
1656 	WRITE_ONCE(inode->i_mtime_nsec, ts.tv_nsec);
1657 	return ts;
1658 }
1659 
inode_set_mtime(struct inode * inode,time64_t sec,long nsec)1660 static inline struct timespec64 inode_set_mtime(struct inode *inode,
1661 						time64_t sec, long nsec)
1662 {
1663 	struct timespec64 ts = { .tv_sec  = sec,
1664 				 .tv_nsec = nsec };
1665 	return inode_set_mtime_to_ts(inode, ts);
1666 }
1667 
1668 /*
1669  * Multigrain timestamps
1670  *
1671  * Conditionally use fine-grained ctime and mtime timestamps when there
1672  * are users actively observing them via getattr. The primary use-case
1673  * for this is NFS clients that use the ctime to distinguish between
1674  * different states of the file, and that are often fooled by multiple
1675  * operations that occur in the same coarse-grained timer tick.
1676  */
1677 #define I_CTIME_QUERIED		((u32)BIT(31))
1678 
inode_get_ctime_sec(const struct inode * inode)1679 static inline time64_t inode_get_ctime_sec(const struct inode *inode)
1680 {
1681 	return READ_ONCE(inode->i_ctime_sec);
1682 }
1683 
inode_get_ctime_nsec(const struct inode * inode)1684 static inline long inode_get_ctime_nsec(const struct inode *inode)
1685 {
1686 	return READ_ONCE(inode->i_ctime_nsec) & ~I_CTIME_QUERIED;
1687 }
1688 
inode_get_ctime(const struct inode * inode)1689 static inline struct timespec64 inode_get_ctime(const struct inode *inode)
1690 {
1691 	struct timespec64 ts = { .tv_sec  = inode_get_ctime_sec(inode),
1692 				 .tv_nsec = inode_get_ctime_nsec(inode) };
1693 
1694 	return ts;
1695 }
1696 
1697 struct timespec64 inode_set_ctime_to_ts(struct inode *inode, struct timespec64 ts);
1698 
1699 /**
1700  * inode_set_ctime - set the ctime in the inode
1701  * @inode: inode in which to set the ctime
1702  * @sec: tv_sec value to set
1703  * @nsec: tv_nsec value to set
1704  *
1705  * Set the ctime in @inode to { @sec, @nsec }
1706  */
inode_set_ctime(struct inode * inode,time64_t sec,long nsec)1707 static inline struct timespec64 inode_set_ctime(struct inode *inode,
1708 						time64_t sec, long nsec)
1709 {
1710 	struct timespec64 ts = { .tv_sec  = sec,
1711 				 .tv_nsec = nsec };
1712 
1713 	return inode_set_ctime_to_ts(inode, ts);
1714 }
1715 
1716 struct timespec64 simple_inode_init_ts(struct inode *inode);
1717 
inode_time_dirty_flag(struct inode * inode)1718 static inline int inode_time_dirty_flag(struct inode *inode)
1719 {
1720 	if (inode->i_sb->s_flags & SB_LAZYTIME)
1721 		return I_DIRTY_TIME;
1722 	return I_DIRTY_SYNC;
1723 }
1724 
1725 /*
1726  * Snapshotting support.
1727  */
1728 
1729 /**
1730  * file_write_started - check if SB_FREEZE_WRITE is held
1731  * @file: the file we write to
1732  *
1733  * May be false positive with !CONFIG_LOCKDEP/LOCK_STATE_UNKNOWN.
1734  * May be false positive with !S_ISREG, because file_start_write() has
1735  * no effect on !S_ISREG.
1736  */
file_write_started(const struct file * file)1737 static inline bool file_write_started(const struct file *file)
1738 {
1739 	if (!S_ISREG(file_inode(file)->i_mode))
1740 		return true;
1741 	return sb_write_started(file_inode(file)->i_sb);
1742 }
1743 
1744 /**
1745  * file_write_not_started - check if SB_FREEZE_WRITE is not held
1746  * @file: the file we write to
1747  *
1748  * May be false positive with !CONFIG_LOCKDEP/LOCK_STATE_UNKNOWN.
1749  * May be false positive with !S_ISREG, because file_start_write() has
1750  * no effect on !S_ISREG.
1751  */
file_write_not_started(const struct file * file)1752 static inline bool file_write_not_started(const struct file *file)
1753 {
1754 	if (!S_ISREG(file_inode(file)->i_mode))
1755 		return true;
1756 	return sb_write_not_started(file_inode(file)->i_sb);
1757 }
1758 
1759 bool inode_owner_or_capable(struct mnt_idmap *idmap,
1760 			    const struct inode *inode);
1761 
1762 /*
1763  * VFS helper functions..
1764  */
1765 int vfs_create(struct mnt_idmap *, struct dentry *, umode_t,
1766 	       struct delegated_inode *);
1767 struct dentry *vfs_mkdir(struct mnt_idmap *, struct inode *,
1768 			 struct dentry *, umode_t, struct delegated_inode *);
1769 int vfs_mknod(struct mnt_idmap *, struct inode *, struct dentry *,
1770 	      umode_t, dev_t, struct delegated_inode *);
1771 int vfs_symlink(struct mnt_idmap *, struct inode *,
1772 		struct dentry *, const char *, struct delegated_inode *);
1773 int vfs_link(struct dentry *, struct mnt_idmap *, struct inode *,
1774 	     struct dentry *, struct delegated_inode *);
1775 int vfs_rmdir(struct mnt_idmap *, struct inode *, struct dentry *,
1776 	      struct delegated_inode *);
1777 int vfs_unlink(struct mnt_idmap *, struct inode *, struct dentry *,
1778 	       struct delegated_inode *);
1779 
1780 /**
1781  * struct renamedata - contains all information required for renaming
1782  * @mnt_idmap:     idmap of the mount in which the rename is happening.
1783  * @old_parent:        parent of source
1784  * @old_dentry:                source
1785  * @new_parent:        parent of destination
1786  * @new_dentry:                destination
1787  * @delegated_inode:   returns an inode needing a delegation break
1788  * @flags:             rename flags
1789  */
1790 struct renamedata {
1791 	struct mnt_idmap *mnt_idmap;
1792 	struct dentry *old_parent;
1793 	struct dentry *old_dentry;
1794 	struct dentry *new_parent;
1795 	struct dentry *new_dentry;
1796 	struct delegated_inode *delegated_inode;
1797 	unsigned int flags;
1798 } __randomize_layout;
1799 
1800 int vfs_rename(struct renamedata *);
1801 
vfs_whiteout(struct mnt_idmap * idmap,struct inode * dir,struct dentry * dentry)1802 static inline int vfs_whiteout(struct mnt_idmap *idmap,
1803 			       struct inode *dir, struct dentry *dentry)
1804 {
1805 	return vfs_mknod(idmap, dir, dentry, S_IFCHR | WHITEOUT_MODE,
1806 			 WHITEOUT_DEV, NULL);
1807 }
1808 
1809 struct file *kernel_tmpfile_open(struct mnt_idmap *idmap,
1810 				 const struct path *parentpath,
1811 				 umode_t mode, int open_flag,
1812 				 const struct cred *cred);
1813 struct file *kernel_file_open(const struct path *path, int flags,
1814 			      const struct cred *cred);
1815 
1816 int vfs_mkobj(struct dentry *, umode_t,
1817 		int (*f)(struct dentry *, umode_t, void *),
1818 		void *);
1819 
1820 int vfs_fchown(struct file *file, uid_t user, gid_t group);
1821 int vfs_fchmod(struct file *file, umode_t mode);
1822 int vfs_utimes(const struct path *path, struct timespec64 *times);
1823 
1824 #ifdef CONFIG_COMPAT
1825 extern long compat_ptr_ioctl(struct file *file, unsigned int cmd,
1826 					unsigned long arg);
1827 #else
1828 #define compat_ptr_ioctl NULL
1829 #endif
1830 
1831 /*
1832  * VFS file helper functions.
1833  */
1834 void inode_init_owner(struct mnt_idmap *idmap, struct inode *inode,
1835 		      const struct inode *dir, umode_t mode);
1836 extern bool may_open_dev(const struct path *path);
1837 umode_t mode_strip_sgid(struct mnt_idmap *idmap,
1838 			const struct inode *dir, umode_t mode);
1839 bool in_group_or_capable(struct mnt_idmap *idmap,
1840 			 const struct inode *inode, vfsgid_t vfsgid);
1841 
1842 /*
1843  * This is the "filldir" function type, used by readdir() to let
1844  * the kernel specify what kind of dirent layout it wants to have.
1845  * This allows the kernel to read directories into kernel space or
1846  * to have different dirent layouts depending on the binary type.
1847  * Return 'true' to keep going and 'false' if there are no more entries.
1848  */
1849 struct dir_context;
1850 typedef bool (*filldir_t)(struct dir_context *, const char *, int, loff_t, u64,
1851 			 unsigned);
1852 
1853 struct dir_context {
1854 	filldir_t actor;
1855 	loff_t pos;
1856 	/*
1857 	 * Filesystems MUST NOT MODIFY count, but may use as a hint:
1858 	 * 0	    unknown
1859 	 * > 0      space in buffer (assume at least one entry)
1860 	 * INT_MAX  unlimited
1861 	 */
1862 	int count;
1863 	/* @actor supports these flags in d_type high bits */
1864 	unsigned int dt_flags_mask;
1865 };
1866 
1867 /* If OR-ed with d_type, pending signals are not checked */
1868 #define FILLDIR_FLAG_NOINTR	0x1000
1869 
1870 /*
1871  * These flags let !MMU mmap() govern direct device mapping vs immediate
1872  * copying more easily for MAP_PRIVATE, especially for ROM filesystems.
1873  *
1874  * NOMMU_MAP_COPY:	Copy can be mapped (MAP_PRIVATE)
1875  * NOMMU_MAP_DIRECT:	Can be mapped directly (MAP_SHARED)
1876  * NOMMU_MAP_READ:	Can be mapped for reading
1877  * NOMMU_MAP_WRITE:	Can be mapped for writing
1878  * NOMMU_MAP_EXEC:	Can be mapped for execution
1879  */
1880 #define NOMMU_MAP_COPY		0x00000001
1881 #define NOMMU_MAP_DIRECT	0x00000008
1882 #define NOMMU_MAP_READ		VM_MAYREAD
1883 #define NOMMU_MAP_WRITE		VM_MAYWRITE
1884 #define NOMMU_MAP_EXEC		VM_MAYEXEC
1885 
1886 #define NOMMU_VMFLAGS \
1887 	(NOMMU_MAP_READ | NOMMU_MAP_WRITE | NOMMU_MAP_EXEC)
1888 
1889 /*
1890  * These flags control the behavior of the remap_file_range function pointer.
1891  * If it is called with len == 0 that means "remap to end of source file".
1892  * See Documentation/filesystems/vfs.rst for more details about this call.
1893  *
1894  * REMAP_FILE_DEDUP: only remap if contents identical (i.e. deduplicate)
1895  * REMAP_FILE_CAN_SHORTEN: caller can handle a shortened request
1896  */
1897 #define REMAP_FILE_DEDUP		(1 << 0)
1898 #define REMAP_FILE_CAN_SHORTEN		(1 << 1)
1899 
1900 /*
1901  * These flags signal that the caller is ok with altering various aspects of
1902  * the behavior of the remap operation.  The changes must be made by the
1903  * implementation; the vfs remap helper functions can take advantage of them.
1904  * Flags in this category exist to preserve the quirky behavior of the hoisted
1905  * btrfs clone/dedupe ioctls.
1906  */
1907 #define REMAP_FILE_ADVISORY		(REMAP_FILE_CAN_SHORTEN)
1908 
1909 /*
1910  * These flags control the behavior of vfs_copy_file_range().
1911  * They are not available to the user via syscall.
1912  *
1913  * COPY_FILE_SPLICE: call splice direct instead of fs clone/copy ops
1914  */
1915 #define COPY_FILE_SPLICE		(1 << 0)
1916 
1917 struct io_uring_cmd;
1918 struct offset_ctx;
1919 
1920 struct file_operations {
1921 	struct module *owner;
1922 	fop_flags_t fop_flags;
1923 	loff_t (*llseek) (struct file *, loff_t, int);
1924 	ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
1925 	ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
1926 	ssize_t (*read_iter) (struct kiocb *, struct iov_iter *);
1927 	ssize_t (*write_iter) (struct kiocb *, struct iov_iter *);
1928 	int (*iopoll)(struct kiocb *kiocb, struct io_comp_batch *,
1929 			unsigned int flags);
1930 	int (*iterate_shared) (struct file *, struct dir_context *);
1931 	__poll_t (*poll) (struct file *, struct poll_table_struct *);
1932 	long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
1933 	long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
1934 	int (*mmap) (struct file *, struct vm_area_struct *);
1935 	int (*open) (struct inode *, struct file *);
1936 	int (*flush) (struct file *, fl_owner_t id);
1937 	int (*release) (struct inode *, struct file *);
1938 	int (*fsync) (struct file *, loff_t, loff_t, int datasync);
1939 	int (*fasync) (int, struct file *, int);
1940 	int (*lock) (struct file *, int, struct file_lock *);
1941 	unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
1942 	int (*check_flags)(int);
1943 	int (*flock) (struct file *, int, struct file_lock *);
1944 	ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int);
1945 	ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int);
1946 	void (*splice_eof)(struct file *file);
1947 	int (*setlease)(struct file *, int, struct file_lease **, void **);
1948 	long (*fallocate)(struct file *file, int mode, loff_t offset,
1949 			  loff_t len);
1950 	void (*show_fdinfo)(struct seq_file *m, struct file *f);
1951 #ifndef CONFIG_MMU
1952 	unsigned (*mmap_capabilities)(struct file *);
1953 #endif
1954 	ssize_t (*copy_file_range)(struct file *, loff_t, struct file *,
1955 			loff_t, size_t, unsigned int);
1956 	loff_t (*remap_file_range)(struct file *file_in, loff_t pos_in,
1957 				   struct file *file_out, loff_t pos_out,
1958 				   loff_t len, unsigned int remap_flags);
1959 	int (*fadvise)(struct file *, loff_t, loff_t, int);
1960 	int (*uring_cmd)(struct io_uring_cmd *ioucmd, unsigned int issue_flags);
1961 	int (*uring_cmd_iopoll)(struct io_uring_cmd *, struct io_comp_batch *,
1962 				unsigned int poll_flags);
1963 	int (*mmap_prepare)(struct vm_area_desc *);
1964 } __randomize_layout;
1965 
1966 /* Supports async buffered reads */
1967 #define FOP_BUFFER_RASYNC	((__force fop_flags_t)(1 << 0))
1968 /* Supports async buffered writes */
1969 #define FOP_BUFFER_WASYNC	((__force fop_flags_t)(1 << 1))
1970 /* Supports synchronous page faults for mappings */
1971 #define FOP_MMAP_SYNC		((__force fop_flags_t)(1 << 2))
1972 /* Supports non-exclusive O_DIRECT writes from multiple threads */
1973 #define FOP_DIO_PARALLEL_WRITE	((__force fop_flags_t)(1 << 3))
1974 /* Contains huge pages */
1975 #define FOP_HUGE_PAGES		((__force fop_flags_t)(1 << 4))
1976 /* Treat loff_t as unsigned (e.g., /dev/mem) */
1977 #define FOP_UNSIGNED_OFFSET	((__force fop_flags_t)(1 << 5))
1978 /* Supports asynchronous lock callbacks */
1979 #define FOP_ASYNC_LOCK		((__force fop_flags_t)(1 << 6))
1980 /* File system supports uncached read/write buffered IO */
1981 #define FOP_DONTCACHE		((__force fop_flags_t)(1 << 7))
1982 
1983 /* Wrap a directory iterator that needs exclusive inode access */
1984 int wrap_directory_iterator(struct file *, struct dir_context *,
1985 			    int (*) (struct file *, struct dir_context *));
1986 #define WRAP_DIR_ITER(x) \
1987 	static int shared_##x(struct file *file , struct dir_context *ctx) \
1988 	{ return wrap_directory_iterator(file, ctx, x); }
1989 
1990 enum fs_update_time {
1991 	FS_UPD_ATIME,
1992 	FS_UPD_CMTIME,
1993 };
1994 
1995 struct inode_operations {
1996 	struct dentry * (*lookup) (struct inode *,struct dentry *, unsigned int);
1997 	const char * (*get_link) (struct dentry *, struct inode *, struct delayed_call *);
1998 	int (*permission) (struct mnt_idmap *, struct inode *, int);
1999 	struct posix_acl * (*get_inode_acl)(struct inode *, int, bool);
2000 
2001 	int (*readlink) (struct dentry *, char __user *,int);
2002 
2003 	int (*create) (struct mnt_idmap *, struct inode *,struct dentry *,
2004 		       umode_t);
2005 	int (*link) (struct dentry *,struct inode *,struct dentry *);
2006 	int (*unlink) (struct inode *,struct dentry *);
2007 	int (*symlink) (struct mnt_idmap *, struct inode *,struct dentry *,
2008 			const char *);
2009 	struct dentry *(*mkdir) (struct mnt_idmap *, struct inode *,
2010 				 struct dentry *, umode_t);
2011 	int (*rmdir) (struct inode *,struct dentry *);
2012 	int (*mknod) (struct mnt_idmap *, struct inode *,struct dentry *,
2013 		      umode_t,dev_t);
2014 	int (*rename) (struct mnt_idmap *, struct inode *, struct dentry *,
2015 			struct inode *, struct dentry *, unsigned int);
2016 	int (*setattr) (struct mnt_idmap *, struct dentry *, struct iattr *);
2017 	int (*getattr) (struct mnt_idmap *, const struct path *,
2018 			struct kstat *, u32, unsigned int);
2019 	ssize_t (*listxattr) (struct dentry *, char *, size_t);
2020 	int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64 start,
2021 		      u64 len);
2022 	int (*update_time)(struct inode *inode, enum fs_update_time type,
2023 			   unsigned int flags);
2024 	void (*sync_lazytime)(struct inode *inode);
2025 	int (*atomic_open)(struct inode *, struct dentry *,
2026 			   struct file *, unsigned open_flag,
2027 			   umode_t create_mode);
2028 	int (*tmpfile) (struct mnt_idmap *, struct inode *,
2029 			struct file *, umode_t);
2030 	struct posix_acl *(*get_acl)(struct mnt_idmap *, struct dentry *,
2031 				     int);
2032 	int (*set_acl)(struct mnt_idmap *, struct dentry *,
2033 		       struct posix_acl *, int);
2034 	int (*fileattr_set)(struct mnt_idmap *idmap,
2035 			    struct dentry *dentry, struct file_kattr *fa);
2036 	int (*fileattr_get)(struct dentry *dentry, struct file_kattr *fa);
2037 	struct offset_ctx *(*get_offset_ctx)(struct inode *inode);
2038 } ____cacheline_aligned;
2039 
2040 /* Did the driver provide valid mmap hook configuration? */
can_mmap_file(struct file * file)2041 static inline bool can_mmap_file(struct file *file)
2042 {
2043 	bool has_mmap = file->f_op->mmap;
2044 	bool has_mmap_prepare = file->f_op->mmap_prepare;
2045 
2046 	/* Hooks are mutually exclusive. */
2047 	if (WARN_ON_ONCE(has_mmap && has_mmap_prepare))
2048 		return false;
2049 	if (!has_mmap && !has_mmap_prepare)
2050 		return false;
2051 
2052 	return true;
2053 }
2054 
2055 void compat_set_desc_from_vma(struct vm_area_desc *desc, const struct file *file,
2056 			      const struct vm_area_struct *vma);
2057 int __compat_vma_mmap(struct vm_area_desc *desc, struct vm_area_struct *vma);
2058 int compat_vma_mmap(struct file *file, struct vm_area_struct *vma);
2059 
vfs_mmap(struct file * file,struct vm_area_struct * vma)2060 static inline int vfs_mmap(struct file *file, struct vm_area_struct *vma)
2061 {
2062 	if (file->f_op->mmap_prepare)
2063 		return compat_vma_mmap(file, vma);
2064 
2065 	return file->f_op->mmap(file, vma);
2066 }
2067 
vfs_mmap_prepare(struct file * file,struct vm_area_desc * desc)2068 static inline int vfs_mmap_prepare(struct file *file, struct vm_area_desc *desc)
2069 {
2070 	return file->f_op->mmap_prepare(desc);
2071 }
2072 
2073 extern ssize_t vfs_read(struct file *, char __user *, size_t, loff_t *);
2074 extern ssize_t vfs_write(struct file *, const char __user *, size_t, loff_t *);
2075 extern ssize_t vfs_copy_file_range(struct file *, loff_t , struct file *,
2076 				   loff_t, size_t, unsigned int);
2077 int remap_verify_area(struct file *file, loff_t pos, loff_t len, bool write);
2078 int __generic_remap_file_range_prep(struct file *file_in, loff_t pos_in,
2079 				    struct file *file_out, loff_t pos_out,
2080 				    loff_t *len, unsigned int remap_flags,
2081 				    const struct iomap_ops *dax_read_ops);
2082 int generic_remap_file_range_prep(struct file *file_in, loff_t pos_in,
2083 				  struct file *file_out, loff_t pos_out,
2084 				  loff_t *count, unsigned int remap_flags);
2085 extern loff_t vfs_clone_file_range(struct file *file_in, loff_t pos_in,
2086 				   struct file *file_out, loff_t pos_out,
2087 				   loff_t len, unsigned int remap_flags);
2088 extern int vfs_dedupe_file_range(struct file *file,
2089 				 struct file_dedupe_range *same);
2090 extern loff_t vfs_dedupe_file_range_one(struct file *src_file, loff_t src_pos,
2091 					struct file *dst_file, loff_t dst_pos,
2092 					loff_t len, unsigned int remap_flags);
2093 
2094 /*
2095  * Inode flags - they have no relation to superblock flags now
2096  */
2097 #define S_SYNC		(1 << 0)  /* Writes are synced at once */
2098 #define S_NOATIME	(1 << 1)  /* Do not update access times */
2099 #define S_APPEND	(1 << 2)  /* Append-only file */
2100 #define S_IMMUTABLE	(1 << 3)  /* Immutable file */
2101 #define S_DEAD		(1 << 4)  /* removed, but still open directory */
2102 #define S_NOQUOTA	(1 << 5)  /* Inode is not counted to quota */
2103 #define S_DIRSYNC	(1 << 6)  /* Directory modifications are synchronous */
2104 #define S_NOCMTIME	(1 << 7)  /* Do not update file c/mtime */
2105 #define S_SWAPFILE	(1 << 8)  /* Do not truncate: swapon got its bmaps */
2106 #define S_PRIVATE	(1 << 9)  /* Inode is fs-internal */
2107 #define S_IMA		(1 << 10) /* Inode has an associated IMA struct */
2108 #define S_AUTOMOUNT	(1 << 11) /* Automount/referral quasi-directory */
2109 #define S_NOSEC		(1 << 12) /* no suid or xattr security attributes */
2110 #ifdef CONFIG_FS_DAX
2111 #define S_DAX		(1 << 13) /* Direct Access, avoiding the page cache */
2112 #else
2113 #define S_DAX		0	  /* Make all the DAX code disappear */
2114 #endif
2115 #define S_ENCRYPTED	(1 << 14) /* Encrypted file (using fs/crypto/) */
2116 #define S_CASEFOLD	(1 << 15) /* Casefolded file */
2117 #define S_VERITY	(1 << 16) /* Verity file (using fs/verity/) */
2118 #define S_KERNEL_FILE	(1 << 17) /* File is in use by the kernel (eg. fs/cachefiles) */
2119 #define S_ANON_INODE	(1 << 19) /* Inode is an anonymous inode */
2120 
2121 /*
2122  * Note that nosuid etc flags are inode-specific: setting some file-system
2123  * flags just means all the inodes inherit those flags by default. It might be
2124  * possible to override it selectively if you really wanted to with some
2125  * ioctl() that is not currently implemented.
2126  *
2127  * Exception: SB_RDONLY is always applied to the entire file system.
2128  *
2129  * Unfortunately, it is possible to change a filesystems flags with it mounted
2130  * with files in use.  This means that all of the inodes will not have their
2131  * i_flags updated.  Hence, i_flags no longer inherit the superblock mount
2132  * flags, so these have to be checked separately. -- rmk@arm.uk.linux.org
2133  */
2134 #define __IS_FLG(inode, flg)	((inode)->i_sb->s_flags & (flg))
2135 
2136 #define IS_RDONLY(inode)	sb_rdonly((inode)->i_sb)
2137 #define IS_SYNC(inode)		(__IS_FLG(inode, SB_SYNCHRONOUS) || \
2138 					((inode)->i_flags & S_SYNC))
2139 #define IS_DIRSYNC(inode)	(__IS_FLG(inode, SB_SYNCHRONOUS|SB_DIRSYNC) || \
2140 					((inode)->i_flags & (S_SYNC|S_DIRSYNC)))
2141 #define IS_MANDLOCK(inode)	__IS_FLG(inode, SB_MANDLOCK)
2142 #define IS_NOATIME(inode)	__IS_FLG(inode, SB_RDONLY|SB_NOATIME)
2143 #define IS_I_VERSION(inode)	__IS_FLG(inode, SB_I_VERSION)
2144 
2145 #define IS_NOQUOTA(inode)	((inode)->i_flags & S_NOQUOTA)
2146 #define IS_APPEND(inode)	((inode)->i_flags & S_APPEND)
2147 #define IS_IMMUTABLE(inode)	((inode)->i_flags & S_IMMUTABLE)
2148 
2149 #ifdef CONFIG_FS_POSIX_ACL
2150 #define IS_POSIXACL(inode)	__IS_FLG(inode, SB_POSIXACL)
2151 #else
2152 #define IS_POSIXACL(inode)	0
2153 #endif
2154 
2155 #define IS_DEADDIR(inode)	((inode)->i_flags & S_DEAD)
2156 #define IS_NOCMTIME(inode)	((inode)->i_flags & S_NOCMTIME)
2157 
2158 #ifdef CONFIG_SWAP
2159 #define IS_SWAPFILE(inode)	((inode)->i_flags & S_SWAPFILE)
2160 #else
2161 #define IS_SWAPFILE(inode)	((void)(inode), 0U)
2162 #endif
2163 
2164 #define IS_PRIVATE(inode)	((inode)->i_flags & S_PRIVATE)
2165 #define IS_IMA(inode)		((inode)->i_flags & S_IMA)
2166 #define IS_AUTOMOUNT(inode)	((inode)->i_flags & S_AUTOMOUNT)
2167 #define IS_NOSEC(inode)		((inode)->i_flags & S_NOSEC)
2168 #define IS_DAX(inode)		((inode)->i_flags & S_DAX)
2169 #define IS_ENCRYPTED(inode)	((inode)->i_flags & S_ENCRYPTED)
2170 #define IS_CASEFOLDED(inode)	((inode)->i_flags & S_CASEFOLD)
2171 #define IS_VERITY(inode)	((inode)->i_flags & S_VERITY)
2172 
2173 #define IS_WHITEOUT(inode)	(S_ISCHR(inode->i_mode) && \
2174 				 (inode)->i_rdev == WHITEOUT_DEV)
2175 #define IS_ANON_FILE(inode)	((inode)->i_flags & S_ANON_INODE)
2176 
HAS_UNMAPPED_ID(struct mnt_idmap * idmap,struct inode * inode)2177 static inline bool HAS_UNMAPPED_ID(struct mnt_idmap *idmap,
2178 				   struct inode *inode)
2179 {
2180 	return !vfsuid_valid(i_uid_into_vfsuid(idmap, inode)) ||
2181 	       !vfsgid_valid(i_gid_into_vfsgid(idmap, inode));
2182 }
2183 
init_sync_kiocb(struct kiocb * kiocb,struct file * filp)2184 static inline void init_sync_kiocb(struct kiocb *kiocb, struct file *filp)
2185 {
2186 	*kiocb = (struct kiocb) {
2187 		.ki_filp = filp,
2188 		.ki_flags = filp->f_iocb_flags,
2189 		.ki_ioprio = get_current_ioprio(),
2190 	};
2191 }
2192 
kiocb_clone(struct kiocb * kiocb,struct kiocb * kiocb_src,struct file * filp)2193 static inline void kiocb_clone(struct kiocb *kiocb, struct kiocb *kiocb_src,
2194 			       struct file *filp)
2195 {
2196 	*kiocb = (struct kiocb) {
2197 		.ki_filp = filp,
2198 		.ki_flags = kiocb_src->ki_flags,
2199 		.ki_ioprio = kiocb_src->ki_ioprio,
2200 		.ki_pos = kiocb_src->ki_pos,
2201 	};
2202 }
2203 
2204 extern void __mark_inode_dirty(struct inode *, int);
mark_inode_dirty(struct inode * inode)2205 static inline void mark_inode_dirty(struct inode *inode)
2206 {
2207 	__mark_inode_dirty(inode, I_DIRTY);
2208 }
2209 
mark_inode_dirty_sync(struct inode * inode)2210 static inline void mark_inode_dirty_sync(struct inode *inode)
2211 {
2212 	__mark_inode_dirty(inode, I_DIRTY_SYNC);
2213 }
2214 
set_inode_metadata_writeback(struct inode * inode)2215 static inline void set_inode_metadata_writeback(struct inode *inode)
2216 {
2217 	spin_lock(&inode->i_lock);
2218 	inode_state_set(inode, I_METADATA_WRITEBACK);
2219 	spin_unlock(&inode->i_lock);
2220 }
2221 
2222 /*
2223  * returns the refcount on the inode. it can change arbitrarily.
2224  */
icount_read_once(const struct inode * inode)2225 static inline int icount_read_once(const struct inode *inode)
2226 {
2227 	return atomic_read(&inode->i_count);
2228 }
2229 
2230 /*
2231  * returns the refcount on the inode. The lock guarantees no 0->1 or 1->0 transitions
2232  * of the count are going to take place, otherwise it changes arbitrarily.
2233  */
icount_read(const struct inode * inode)2234 static inline int icount_read(const struct inode *inode)
2235 {
2236 	lockdep_assert_held(&inode->i_lock);
2237 	return atomic_read(&inode->i_count);
2238 }
2239 
2240 /*
2241  * Returns true if the given inode itself only has dirty timestamps (its pages
2242  * may still be dirty) and isn't currently being allocated or freed.
2243  * Filesystems should call this if when writing an inode when lazytime is
2244  * enabled, they want to opportunistically write the timestamps of other inodes
2245  * located very nearby on-disk, e.g. in the same inode block.  This returns true
2246  * if the given inode is in need of such an opportunistic update.  Requires
2247  * i_lock, or at least later re-checking under i_lock.
2248  */
inode_is_dirtytime_only(struct inode * inode)2249 static inline bool inode_is_dirtytime_only(struct inode *inode)
2250 {
2251 	return (inode_state_read_once(inode) &
2252 	       (I_DIRTY_TIME | I_NEW | I_FREEING | I_WILL_FREE)) == I_DIRTY_TIME;
2253 }
2254 
2255 extern void inc_nlink(struct inode *inode);
2256 extern void drop_nlink(struct inode *inode);
2257 extern void clear_nlink(struct inode *inode);
2258 extern void set_nlink(struct inode *inode, unsigned int nlink);
2259 
inode_inc_link_count(struct inode * inode)2260 static inline void inode_inc_link_count(struct inode *inode)
2261 {
2262 	inc_nlink(inode);
2263 	mark_inode_dirty(inode);
2264 }
2265 
inode_dec_link_count(struct inode * inode)2266 static inline void inode_dec_link_count(struct inode *inode)
2267 {
2268 	drop_nlink(inode);
2269 	mark_inode_dirty(inode);
2270 }
2271 
2272 extern bool atime_needs_update(const struct path *, struct inode *);
2273 extern void touch_atime(const struct path *);
2274 
file_accessed(struct file * file)2275 static inline void file_accessed(struct file *file)
2276 {
2277 	if (!(file->f_flags & O_NOATIME))
2278 		touch_atime(&file->f_path);
2279 }
2280 
2281 extern int file_modified(struct file *file);
2282 int kiocb_modified(struct kiocb *iocb);
2283 
2284 int sync_inode_metadata(struct inode *inode, int wait);
2285 
2286 struct file_system_type {
2287 	const char *name;
2288 	int fs_flags;
2289 #define FS_REQUIRES_DEV		1
2290 #define FS_BINARY_MOUNTDATA	2
2291 #define FS_HAS_SUBTYPE		4
2292 #define FS_USERNS_MOUNT		8	/* Can be mounted by userns root */
2293 #define FS_DISALLOW_NOTIFY_PERM	16	/* Disable fanotify permission events */
2294 #define FS_ALLOW_IDMAP         32      /* FS has been updated to handle vfs idmappings. */
2295 #define FS_MGTIME		64	/* FS uses multigrain timestamps */
2296 #define FS_LBS			128	/* FS supports LBS */
2297 #define FS_POWER_FREEZE		256	/* Always freeze on suspend/hibernate */
2298 #define FS_USERNS_MOUNT_RESTRICTED 512	/* Restrict mount in userns if not already visible */
2299 #define FS_USERNS_DELEGATABLE	1024	/* Can be mounted inside userns from outside */
2300 #define FS_RENAME_DOES_D_MOVE	32768	/* FS will handle d_move() during rename() internally. */
2301 	int (*init_fs_context)(struct fs_context *);
2302 	const struct fs_parameter_spec *parameters;
2303 	void (*kill_sb) (struct super_block *);
2304 	struct module *owner;
2305 	struct hlist_node list;
2306 	struct hlist_head fs_supers;
2307 
2308 	struct lock_class_key s_lock_key;
2309 	struct lock_class_key s_umount_key;
2310 	struct lock_class_key s_vfs_rename_key;
2311 	struct lock_class_key s_writers_key[SB_FREEZE_LEVELS];
2312 
2313 	struct lock_class_key i_lock_key;
2314 	struct lock_class_key i_mutex_key;
2315 	struct lock_class_key invalidate_lock_key;
2316 	struct lock_class_key i_mutex_dir_key;
2317 };
2318 
2319 #define MODULE_ALIAS_FS(NAME) MODULE_ALIAS("fs-" NAME)
2320 
2321 /**
2322  * is_mgtime: is this inode using multigrain timestamps
2323  * @inode: inode to test for multigrain timestamps
2324  *
2325  * Return true if the inode uses multigrain timestamps, false otherwise.
2326  */
is_mgtime(const struct inode * inode)2327 static inline bool is_mgtime(const struct inode *inode)
2328 {
2329 	return inode->i_opflags & IOP_MGTIME;
2330 }
2331 
2332 extern struct dentry *mount_subtree(struct vfsmount *mnt, const char *path);
2333 void retire_super(struct super_block *sb);
2334 void generic_shutdown_super(struct super_block *sb);
2335 void kill_block_super(struct super_block *sb);
2336 void kill_anon_super(struct super_block *sb);
2337 void deactivate_super(struct super_block *sb);
2338 void deactivate_locked_super(struct super_block *sb);
2339 int set_anon_super(struct super_block *s, void *data);
2340 int set_anon_super_fc(struct super_block *s, struct fs_context *fc);
2341 int get_anon_bdev(dev_t *);
2342 void free_anon_bdev(dev_t);
2343 struct super_block *sget_fc(struct fs_context *fc,
2344 			    int (*test)(struct super_block *, struct fs_context *),
2345 			    int (*set)(struct super_block *, struct fs_context *));
2346 struct super_block *sget_dev(struct fs_context *fc, dev_t dev);
2347 
2348 /* Alas, no aliases. Too much hassle with bringing module.h everywhere */
2349 #define fops_get(fops) ({						\
2350 	const struct file_operations *_fops = (fops);			\
2351 	(((_fops) && try_module_get((_fops)->owner) ? (_fops) : NULL));	\
2352 })
2353 
2354 #define fops_put(fops) ({						\
2355 	const struct file_operations *_fops = (fops);			\
2356 	if (_fops)							\
2357 		module_put((_fops)->owner);				\
2358 })
2359 
2360 /*
2361  * This one is to be used *ONLY* from ->open() instances.
2362  * fops must be non-NULL, pinned down *and* module dependencies
2363  * should be sufficient to pin the caller down as well.
2364  */
2365 #define replace_fops(f, fops) \
2366 	do {	\
2367 		struct file *__file = (f); \
2368 		fops_put(__file->f_op); \
2369 		BUG_ON(!(__file->f_op = (fops))); \
2370 	} while(0)
2371 
2372 extern int register_filesystem(struct file_system_type *);
2373 extern int unregister_filesystem(struct file_system_type *);
2374 extern int vfs_statfs(const struct path *, struct kstatfs *);
2375 extern int user_statfs(const char __user *, struct kstatfs *);
2376 extern int fd_statfs(int, struct kstatfs *);
2377 extern __printf(2, 3)
2378 int super_setup_bdi_name(struct super_block *sb, char *fmt, ...);
2379 extern int super_setup_bdi(struct super_block *sb);
2380 
super_set_uuid(struct super_block * sb,const u8 * uuid,unsigned len)2381 static inline void super_set_uuid(struct super_block *sb, const u8 *uuid, unsigned len)
2382 {
2383 	if (WARN_ON(len > sizeof(sb->s_uuid)))
2384 		len = sizeof(sb->s_uuid);
2385 	sb->s_uuid_len = len;
2386 	memcpy(&sb->s_uuid, uuid, len);
2387 }
2388 
2389 /* set sb sysfs name based on sb->s_bdev */
super_set_sysfs_name_bdev(struct super_block * sb)2390 static inline void super_set_sysfs_name_bdev(struct super_block *sb)
2391 {
2392 	snprintf(sb->s_sysfs_name, sizeof(sb->s_sysfs_name), "%pg", sb->s_bdev);
2393 }
2394 
2395 /* set sb sysfs name based on sb->s_uuid */
super_set_sysfs_name_uuid(struct super_block * sb)2396 static inline void super_set_sysfs_name_uuid(struct super_block *sb)
2397 {
2398 	WARN_ON(sb->s_uuid_len != sizeof(sb->s_uuid));
2399 	snprintf(sb->s_sysfs_name, sizeof(sb->s_sysfs_name), "%pU", sb->s_uuid.b);
2400 }
2401 
2402 /* set sb sysfs name based on sb->s_id */
super_set_sysfs_name_id(struct super_block * sb)2403 static inline void super_set_sysfs_name_id(struct super_block *sb)
2404 {
2405 	strscpy(sb->s_sysfs_name, sb->s_id, sizeof(sb->s_sysfs_name));
2406 }
2407 
2408 /* try to use something standard before you use this */
2409 __printf(2, 3)
super_set_sysfs_name_generic(struct super_block * sb,const char * fmt,...)2410 static inline void super_set_sysfs_name_generic(struct super_block *sb, const char *fmt, ...)
2411 {
2412 	va_list args;
2413 
2414 	va_start(args, fmt);
2415 	vsnprintf(sb->s_sysfs_name, sizeof(sb->s_sysfs_name), fmt, args);
2416 	va_end(args);
2417 }
2418 
2419 extern void ihold(struct inode * inode);
2420 extern void iput(struct inode *);
2421 void iput_not_last(struct inode *);
2422 
2423 /**
2424  * iput_if_not_last - drop an inode reference only if it is not the last one
2425  * @inode: inode to put
2426  *
2427  * Returns true if the reference was dropped, false if this was the last
2428  * reference and the caller must arrange for final iput() in a safe context.
2429  */
iput_if_not_last(struct inode * inode)2430 static inline bool __must_check iput_if_not_last(struct inode *inode)
2431 {
2432 	VFS_BUG_ON_INODE(inode_state_read_once(inode) & (I_FREEING | I_CLEAR), inode);
2433 	VFS_BUG_ON_INODE(icount_read_once(inode) < 1, inode);
2434 	return atomic_add_unless(&inode->i_count, -1, 1);
2435 }
2436 
2437 int inode_update_time(struct inode *inode, enum fs_update_time type,
2438 		unsigned int flags);
2439 int generic_update_time(struct inode *inode, enum fs_update_time type,
2440 		unsigned int flags);
2441 
2442 /* /sys/fs */
2443 extern struct kobject *fs_kobj;
2444 
2445 #define MAX_RW_COUNT (INT_MAX & PAGE_MASK)
2446 
2447 /* fs/open.c */
2448 struct audit_names;
2449 
2450 struct __filename_head {
2451 	const char		*name;	/* pointer to actual string */
2452 	int			refcnt;
2453 	struct audit_names	*aname;
2454 };
2455 #define EMBEDDED_NAME_MAX	(192 - sizeof(struct __filename_head))
2456 struct filename {
2457 	struct __filename_head;
2458 	const char		iname[EMBEDDED_NAME_MAX];
2459 };
2460 static_assert(offsetof(struct filename, iname) % sizeof(long) == 0);
2461 static_assert(sizeof(struct filename) % 64 == 0);
2462 
file_mnt_idmap(const struct file * file)2463 static inline struct mnt_idmap *file_mnt_idmap(const struct file *file)
2464 {
2465 	return mnt_idmap(file->f_path.mnt);
2466 }
2467 
file_owner_or_capable(const struct file * file)2468 static inline bool file_owner_or_capable(const struct file *file)
2469 {
2470 	return inode_owner_or_capable(file_mnt_idmap(file), file_inode(file));
2471 }
2472 
2473 /**
2474  * is_idmapped_mnt - check whether a mount is mapped
2475  * @mnt: the mount to check
2476  *
2477  * If @mnt has an non @nop_mnt_idmap attached to it then @mnt is mapped.
2478  *
2479  * Return: true if mount is mapped, false if not.
2480  */
is_idmapped_mnt(const struct vfsmount * mnt)2481 static inline bool is_idmapped_mnt(const struct vfsmount *mnt)
2482 {
2483 	return mnt_idmap(mnt) != &nop_mnt_idmap;
2484 }
2485 
2486 int vfs_truncate(const struct path *, loff_t);
2487 int do_truncate(struct mnt_idmap *, struct dentry *, loff_t start,
2488 		unsigned int time_attrs, struct file *filp);
2489 extern int vfs_fallocate(struct file *file, int mode, loff_t offset,
2490 			loff_t len);
2491 int do_sys_open(int dfd, const char __user *filename, int flags,
2492 		umode_t mode);
2493 extern struct file *file_open_name(struct filename *, int, umode_t);
2494 extern struct file *filp_open(const char *, int, umode_t);
2495 extern struct file *file_open_root(const struct path *,
2496 				   const char *, int, umode_t);
file_open_root_mnt(struct vfsmount * mnt,const char * name,int flags,umode_t mode)2497 static inline struct file *file_open_root_mnt(struct vfsmount *mnt,
2498 				   const char *name, int flags, umode_t mode)
2499 {
2500 	return file_open_root(&(struct path){.mnt = mnt, .dentry = mnt->mnt_root},
2501 			      name, flags, mode);
2502 }
2503 struct file *dentry_open(const struct path *path, int flags,
2504 			 const struct cred *creds);
2505 struct file *dentry_open_nonotify(const struct path *path, int flags,
2506 				  const struct cred *cred);
2507 struct file *dentry_create(struct path *path, int flags, umode_t mode,
2508 			   const struct cred *cred);
2509 const struct path *backing_file_user_path(const struct file *f);
2510 
2511 #ifdef CONFIG_SECURITY
2512 void *backing_file_security(const struct file *f);
2513 void backing_file_set_security(struct file *f, void *security);
2514 #else
backing_file_security(const struct file * f)2515 static inline void *backing_file_security(const struct file *f)
2516 {
2517 	return NULL;
2518 }
backing_file_set_security(struct file * f,void * security)2519 static inline void backing_file_set_security(struct file *f, void *security)
2520 {
2521 }
2522 #endif /* CONFIG_SECURITY */
2523 
2524 /*
2525  * When mmapping a file on a stackable filesystem (e.g., overlayfs), the file
2526  * stored in ->vm_file is a backing file whose f_inode is on the underlying
2527  * filesystem.  When the mapped file path and inode number are displayed to
2528  * user (e.g. via /proc/<pid>/maps), these helpers should be used to get the
2529  * path and inode number to display to the user, which is the path of the fd
2530  * that user has requested to map and the inode number that would be returned
2531  * by fstat() on that same fd.
2532  */
2533 /* Get the path to display in /proc/<pid>/maps */
file_user_path(const struct file * f)2534 static inline const struct path *file_user_path(const struct file *f)
2535 {
2536 	if (unlikely(f->f_mode & FMODE_BACKING))
2537 		return backing_file_user_path(f);
2538 	return &f->f_path;
2539 }
2540 /* Get the inode whose inode number to display in /proc/<pid>/maps */
file_user_inode(const struct file * f)2541 static inline const struct inode *file_user_inode(const struct file *f)
2542 {
2543 	if (unlikely(f->f_mode & FMODE_BACKING))
2544 		return d_inode(backing_file_user_path(f)->dentry);
2545 	return file_inode(f);
2546 }
2547 
file_clone_open(struct file * file)2548 static inline struct file *file_clone_open(struct file *file)
2549 {
2550 	return dentry_open(&file->f_path, file->f_flags, file->f_cred);
2551 }
2552 extern int filp_close(struct file *, fl_owner_t id);
2553 
2554 extern struct filename *getname_flags(const char __user *, int);
2555 extern struct filename *getname_uflags(const char __user *, int);
getname(const char __user * name)2556 static inline struct filename *getname(const char __user *name)
2557 {
2558 	return getname_flags(name, 0);
2559 }
2560 extern struct filename *getname_kernel(const char *);
2561 extern struct filename *__getname_maybe_null(const char __user *);
getname_maybe_null(const char __user * name,int flags)2562 static inline struct filename *getname_maybe_null(const char __user *name, int flags)
2563 {
2564 	if (!(flags & AT_EMPTY_PATH))
2565 		return getname(name);
2566 
2567 	if (!name)
2568 		return NULL;
2569 	return __getname_maybe_null(name);
2570 }
2571 extern void putname(struct filename *name);
2572 DEFINE_FREE(putname, struct filename *, if (!IS_ERR_OR_NULL(_T)) putname(_T))
2573 
2574 struct delayed_filename {
2575 	struct filename *__incomplete_filename;	// don't touch
2576 };
2577 #define INIT_DELAYED_FILENAME(ptr) \
2578 	((void)(*(ptr) = (struct delayed_filename){}))
2579 int delayed_getname(struct delayed_filename *, const char __user *);
2580 int delayed_getname_uflags(struct delayed_filename *v, const char __user *, int);
2581 void dismiss_delayed_filename(struct delayed_filename *);
2582 int putname_to_delayed(struct delayed_filename *, struct filename *);
2583 struct filename *complete_getname(struct delayed_filename *);
2584 
2585 DEFINE_CLASS(filename, struct filename *, putname(_T), getname(p), const char __user *p)
2586 EXTEND_CLASS(filename, _kernel, getname_kernel(p), const char *p)
2587 EXTEND_CLASS(filename, _flags, getname_flags(p, f), const char __user *p, unsigned int f)
2588 EXTEND_CLASS(filename, _uflags, getname_uflags(p, f), const char __user *p, unsigned int f)
2589 EXTEND_CLASS(filename, _maybe_null, getname_maybe_null(p, f), const char __user *p, unsigned int f)
2590 EXTEND_CLASS(filename, _complete_delayed, complete_getname(p), struct delayed_filename *p)
2591 
2592 extern int finish_open(struct file *file, struct dentry *dentry,
2593 			int (*open)(struct inode *, struct file *));
2594 extern int finish_no_open(struct file *file, struct dentry *dentry);
2595 
2596 /* Helper for the simple case when original dentry is used */
finish_open_simple(struct file * file,int error)2597 static inline int finish_open_simple(struct file *file, int error)
2598 {
2599 	if (error)
2600 		return error;
2601 
2602 	return finish_open(file, file->f_path.dentry, NULL);
2603 }
2604 
2605 /* fs/dcache.c */
2606 extern void __init vfs_caches_init_early(void);
2607 extern void __init vfs_caches_init(void);
2608 
2609 #define __getname()		kmalloc(PATH_MAX, GFP_KERNEL)
2610 #define __putname(name)		kfree(name)
2611 
2612 void emergency_thaw_all(void);
2613 extern int sync_filesystem(struct super_block *);
2614 extern const struct file_operations def_blk_fops;
2615 extern const struct file_operations def_chr_fops;
2616 
2617 /* fs/char_dev.c */
2618 #define CHRDEV_MAJOR_MAX 512
2619 /* Marks the bottom of the first segment of free char majors */
2620 #define CHRDEV_MAJOR_DYN_END 234
2621 /* Marks the top and bottom of the second segment of free char majors */
2622 #define CHRDEV_MAJOR_DYN_EXT_START 511
2623 #define CHRDEV_MAJOR_DYN_EXT_END 384
2624 
2625 extern int alloc_chrdev_region(dev_t *, unsigned, unsigned, const char *);
2626 extern int register_chrdev_region(dev_t, unsigned, const char *);
2627 extern int __register_chrdev(unsigned int major, unsigned int baseminor,
2628 			     unsigned int count, const char *name,
2629 			     const struct file_operations *fops);
2630 extern void __unregister_chrdev(unsigned int major, unsigned int baseminor,
2631 				unsigned int count, const char *name);
2632 extern void unregister_chrdev_region(dev_t, unsigned);
2633 extern void chrdev_show(struct seq_file *,off_t);
2634 
register_chrdev(unsigned int major,const char * name,const struct file_operations * fops)2635 static inline int register_chrdev(unsigned int major, const char *name,
2636 				  const struct file_operations *fops)
2637 {
2638 	return __register_chrdev(major, 0, 256, name, fops);
2639 }
2640 
unregister_chrdev(unsigned int major,const char * name)2641 static inline void unregister_chrdev(unsigned int major, const char *name)
2642 {
2643 	__unregister_chrdev(major, 0, 256, name);
2644 }
2645 
2646 extern void init_special_inode(struct inode *, umode_t, dev_t);
2647 
2648 /* Invalid inode operations -- fs/bad_inode.c */
2649 extern void make_bad_inode(struct inode *);
2650 extern bool is_bad_inode(struct inode *);
2651 
2652 extern int __must_check file_fdatawait_range(struct file *file, loff_t lstart,
2653 						loff_t lend);
2654 extern int __must_check file_check_and_advance_wb_err(struct file *file);
2655 extern int __must_check file_write_and_wait_range(struct file *file,
2656 						loff_t start, loff_t end);
2657 int filemap_flush_range(struct address_space *mapping, loff_t start,
2658 		loff_t end);
2659 void filemap_dontcache_kick_writeback(struct address_space *mapping);
2660 
file_write_and_wait(struct file * file)2661 static inline int file_write_and_wait(struct file *file)
2662 {
2663 	return file_write_and_wait_range(file, 0, LLONG_MAX);
2664 }
2665 
2666 extern int vfs_fsync_range(struct file *file, loff_t start, loff_t end,
2667 			   int datasync);
2668 extern int vfs_fsync(struct file *file, int datasync);
2669 
2670 extern int sync_file_range(struct file *file, loff_t offset, loff_t nbytes,
2671 				unsigned int flags);
2672 
iocb_is_dsync(const struct kiocb * iocb)2673 static inline bool iocb_is_dsync(const struct kiocb *iocb)
2674 {
2675 	return (iocb->ki_flags & IOCB_DSYNC) ||
2676 		IS_SYNC(iocb->ki_filp->f_mapping->host);
2677 }
2678 
2679 /*
2680  * Sync the bytes written if this was a synchronous write.  Expect ki_pos
2681  * to already be updated for the write, and will return either the amount
2682  * of bytes passed in, or an error if syncing the file failed.
2683  */
generic_write_sync(struct kiocb * iocb,ssize_t count)2684 static inline ssize_t generic_write_sync(struct kiocb *iocb, ssize_t count)
2685 {
2686 	if (iocb_is_dsync(iocb)) {
2687 		int ret = vfs_fsync_range(iocb->ki_filp,
2688 				iocb->ki_pos - count, iocb->ki_pos - 1,
2689 				(iocb->ki_flags & IOCB_SYNC) ? 0 : 1);
2690 		if (ret)
2691 			return ret;
2692 	} else if (iocb->ki_flags & IOCB_DONTCACHE) {
2693 		filemap_dontcache_kick_writeback(iocb->ki_filp->f_mapping);
2694 	}
2695 
2696 	return count;
2697 }
2698 
2699 extern void emergency_sync(void);
2700 extern void emergency_remount(void);
2701 
2702 #ifdef CONFIG_BLOCK
2703 extern int bmap(struct inode *inode, sector_t *block);
2704 #else
bmap(struct inode * inode,sector_t * block)2705 static inline int bmap(struct inode *inode,  sector_t *block)
2706 {
2707 	return -EINVAL;
2708 }
2709 #endif
2710 
2711 int notify_change(struct mnt_idmap *, struct dentry *,
2712 		  struct iattr *, struct delegated_inode *);
2713 int inode_permission(struct mnt_idmap *, struct inode *, int);
2714 int generic_permission(struct mnt_idmap *, struct inode *, int);
file_permission(struct file * file,int mask)2715 static inline int file_permission(struct file *file, int mask)
2716 {
2717 	return inode_permission(file_mnt_idmap(file),
2718 				file_inode(file), mask);
2719 }
path_permission(const struct path * path,int mask)2720 static inline int path_permission(const struct path *path, int mask)
2721 {
2722 	return inode_permission(mnt_idmap(path->mnt),
2723 				d_inode(path->dentry), mask);
2724 }
2725 int __check_sticky(struct mnt_idmap *idmap, struct inode *dir,
2726 		   struct inode *inode);
2727 
2728 int may_delete_dentry(struct mnt_idmap *idmap, struct inode *dir,
2729 		      struct dentry *victim, bool isdir);
2730 int may_create_dentry(struct mnt_idmap *idmap,
2731 		      struct inode *dir, struct dentry *child);
2732 
execute_ok(struct inode * inode)2733 static inline bool execute_ok(struct inode *inode)
2734 {
2735 	return (inode->i_mode & S_IXUGO) || S_ISDIR(inode->i_mode);
2736 }
2737 
inode_wrong_type(const struct inode * inode,umode_t mode)2738 static inline bool inode_wrong_type(const struct inode *inode, umode_t mode)
2739 {
2740 	return (inode->i_mode ^ mode) & S_IFMT;
2741 }
2742 
2743 /**
2744  * file_start_write - get write access to a superblock for regular file io
2745  * @file: the file we want to write to
2746  *
2747  * This is a variant of sb_start_write() which is a noop on non-regular file.
2748  * Should be matched with a call to file_end_write().
2749  */
file_start_write(struct file * file)2750 static inline void file_start_write(struct file *file)
2751 {
2752 	if (!S_ISREG(file_inode(file)->i_mode))
2753 		return;
2754 	sb_start_write(file_inode(file)->i_sb);
2755 }
2756 
file_start_write_trylock(struct file * file)2757 static inline bool file_start_write_trylock(struct file *file)
2758 {
2759 	if (!S_ISREG(file_inode(file)->i_mode))
2760 		return true;
2761 	return sb_start_write_trylock(file_inode(file)->i_sb);
2762 }
2763 
2764 /**
2765  * file_end_write - drop write access to a superblock of a regular file
2766  * @file: the file we wrote to
2767  *
2768  * Should be matched with a call to file_start_write().
2769  */
file_end_write(struct file * file)2770 static inline void file_end_write(struct file *file)
2771 {
2772 	if (!S_ISREG(file_inode(file)->i_mode))
2773 		return;
2774 	sb_end_write(file_inode(file)->i_sb);
2775 }
2776 
2777 /**
2778  * kiocb_start_write - get write access to a superblock for async file io
2779  * @iocb: the io context we want to submit the write with
2780  *
2781  * This is a variant of sb_start_write() for async io submission.
2782  * Should be matched with a call to kiocb_end_write().
2783  */
kiocb_start_write(struct kiocb * iocb)2784 static inline void kiocb_start_write(struct kiocb *iocb)
2785 {
2786 	struct inode *inode = file_inode(iocb->ki_filp);
2787 
2788 	sb_start_write(inode->i_sb);
2789 	/*
2790 	 * Fool lockdep by telling it the lock got released so that it
2791 	 * doesn't complain about the held lock when we return to userspace.
2792 	 */
2793 	__sb_writers_release(inode->i_sb, SB_FREEZE_WRITE);
2794 }
2795 
2796 /**
2797  * kiocb_end_write - drop write access to a superblock after async file io
2798  * @iocb: the io context we sumbitted the write with
2799  *
2800  * Should be matched with a call to kiocb_start_write().
2801  */
kiocb_end_write(struct kiocb * iocb)2802 static inline void kiocb_end_write(struct kiocb *iocb)
2803 {
2804 	struct inode *inode = file_inode(iocb->ki_filp);
2805 
2806 	/*
2807 	 * Tell lockdep we inherited freeze protection from submission thread.
2808 	 */
2809 	__sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
2810 	sb_end_write(inode->i_sb);
2811 }
2812 
2813 /*
2814  * This is used for regular files where some users -- especially the
2815  * currently executed binary in a process, previously handled via
2816  * VM_DENYWRITE -- cannot handle concurrent write (and maybe mmap
2817  * read-write shared) accesses.
2818  *
2819  * get_write_access() gets write permission for a file.
2820  * put_write_access() releases this write permission.
2821  * deny_write_access() denies write access to a file.
2822  * allow_write_access() re-enables write access to a file.
2823  *
2824  * The i_writecount field of an inode can have the following values:
2825  * 0: no write access, no denied write access
2826  * < 0: (-i_writecount) users that denied write access to the file.
2827  * > 0: (i_writecount) users that have write access to the file.
2828  *
2829  * Normally we operate on that counter with atomic_{inc,dec} and it's safe
2830  * except for the cases where we don't hold i_writecount yet. Then we need to
2831  * use {get,deny}_write_access() - these functions check the sign and refuse
2832  * to do the change if sign is wrong.
2833  */
get_write_access(struct inode * inode)2834 static inline int get_write_access(struct inode *inode)
2835 {
2836 	return atomic_inc_unless_negative(&inode->i_writecount) ? 0 : -ETXTBSY;
2837 }
deny_write_access(struct file * file)2838 static inline int deny_write_access(struct file *file)
2839 {
2840 	struct inode *inode = file_inode(file);
2841 	return atomic_dec_unless_positive(&inode->i_writecount) ? 0 : -ETXTBSY;
2842 }
put_write_access(struct inode * inode)2843 static inline void put_write_access(struct inode * inode)
2844 {
2845 	atomic_dec(&inode->i_writecount);
2846 }
allow_write_access(struct file * file)2847 static inline void allow_write_access(struct file *file)
2848 {
2849 	if (file)
2850 		atomic_inc(&file_inode(file)->i_writecount);
2851 }
2852 
2853 /*
2854  * Do not prevent write to executable file when watched by pre-content events.
2855  *
2856  * Note that FMODE_FSNOTIFY_HSM mode is set depending on pre-content watches at
2857  * the time of file open and remains constant for entire lifetime of the file,
2858  * so if pre-content watches are added post execution or removed before the end
2859  * of the execution, it will not cause i_writecount reference leak.
2860  */
exe_file_deny_write_access(struct file * exe_file)2861 static inline int exe_file_deny_write_access(struct file *exe_file)
2862 {
2863 	if (unlikely(FMODE_FSNOTIFY_HSM(exe_file->f_mode)))
2864 		return 0;
2865 	return deny_write_access(exe_file);
2866 }
exe_file_allow_write_access(struct file * exe_file)2867 static inline void exe_file_allow_write_access(struct file *exe_file)
2868 {
2869 	if (unlikely(!exe_file || FMODE_FSNOTIFY_HSM(exe_file->f_mode)))
2870 		return;
2871 	allow_write_access(exe_file);
2872 }
2873 
file_set_fsnotify_mode(struct file * file,fmode_t mode)2874 static inline void file_set_fsnotify_mode(struct file *file, fmode_t mode)
2875 {
2876 	file->f_mode &= ~FMODE_FSNOTIFY_MASK;
2877 	file->f_mode |= mode;
2878 }
2879 
inode_is_open_for_write(const struct inode * inode)2880 static inline bool inode_is_open_for_write(const struct inode *inode)
2881 {
2882 	return atomic_read(&inode->i_writecount) > 0;
2883 }
2884 
2885 #if defined(CONFIG_IMA) || defined(CONFIG_FILE_LOCKING)
i_readcount_dec(struct inode * inode)2886 static inline void i_readcount_dec(struct inode *inode)
2887 {
2888 	BUG_ON(atomic_dec_return(&inode->i_readcount) < 0);
2889 }
i_readcount_inc(struct inode * inode)2890 static inline void i_readcount_inc(struct inode *inode)
2891 {
2892 	atomic_inc(&inode->i_readcount);
2893 }
2894 #else
i_readcount_dec(struct inode * inode)2895 static inline void i_readcount_dec(struct inode *inode)
2896 {
2897 	return;
2898 }
i_readcount_inc(struct inode * inode)2899 static inline void i_readcount_inc(struct inode *inode)
2900 {
2901 	return;
2902 }
2903 #endif
2904 extern int do_pipe_flags(int *, int);
2905 
2906 extern ssize_t kernel_read(struct file *, void *, size_t, loff_t *);
2907 ssize_t __kernel_read(struct file *file, void *buf, size_t count, loff_t *pos);
2908 extern ssize_t kernel_write(struct file *, const void *, size_t, loff_t *);
2909 extern ssize_t __kernel_write(struct file *, const void *, size_t, loff_t *);
2910 extern struct file * open_exec(const char *);
2911 
2912 /* fs/dcache.c -- generic fs support functions */
2913 extern bool is_subdir(struct dentry *, struct dentry *);
2914 extern bool path_is_under(const struct path *, const struct path *);
2915 u64 vfsmount_to_propagation_flags(struct vfsmount *mnt);
2916 
2917 extern char *file_path(struct file *, char *, int);
2918 
name_is_dot(const char * name,size_t len)2919 static inline bool name_is_dot(const char *name, size_t len)
2920 {
2921 	return unlikely(len == 1 && name[0] == '.');
2922 }
2923 
name_is_dotdot(const char * name,size_t len)2924 static inline bool name_is_dotdot(const char *name, size_t len)
2925 {
2926 	return unlikely(len == 2 && name[0] == '.' && name[1] == '.');
2927 }
2928 
2929 /**
2930  * name_is_dot_dotdot - returns true only if @name is "." or ".."
2931  * @name: file name to check
2932  * @len: length of file name, in bytes
2933  */
name_is_dot_dotdot(const char * name,size_t len)2934 static inline bool name_is_dot_dotdot(const char *name, size_t len)
2935 {
2936 	return len && unlikely(name[0] == '.') &&
2937 		(len == 1 || (len == 2 && name[1] == '.'));
2938 }
2939 
2940 /**
2941  * name_contains_dotdot - check if a file name contains ".." path components
2942  * @name: File path string to check
2943  * Search for ".." surrounded by either '/' or start/end of string.
2944  */
name_contains_dotdot(const char * name)2945 static inline bool name_contains_dotdot(const char *name)
2946 {
2947 	size_t name_len;
2948 
2949 	name_len = strlen(name);
2950 	return strcmp(name, "..") == 0 ||
2951 	       strncmp(name, "../", 3) == 0 ||
2952 	       strstr(name, "/../") != NULL ||
2953 	       (name_len >= 3 && strcmp(name + name_len - 3, "/..") == 0);
2954 }
2955 
2956 #include <linux/err.h>
2957 
2958 /* needed for stackable file system support */
2959 loff_t default_llseek(struct file *file, loff_t offset, int whence);
2960 
2961 loff_t vfs_llseek(struct file *file, loff_t offset, int whence);
2962 
2963 int inode_init_always_gfp(struct super_block *sb, struct inode *inode, gfp_t gfp);
inode_init_always(struct super_block * sb,struct inode * inode)2964 static inline int inode_init_always(struct super_block *sb, struct inode *inode)
2965 {
2966 	return inode_init_always_gfp(sb, inode, GFP_NOFS);
2967 }
2968 
2969 void inode_init_once(struct inode *inode);
2970 void address_space_init_once(struct address_space *mapping);
2971 struct inode *igrab(struct inode *inode);
2972 ino_t iunique(struct super_block *sb, ino_t max_reserved);
2973 int inode_needs_sync(struct inode *inode);
2974 int inode_just_drop(struct inode *inode);
inode_generic_drop(struct inode * inode)2975 static inline int inode_generic_drop(struct inode *inode)
2976 {
2977 	return !inode->i_nlink || inode_unhashed(inode);
2978 }
2979 void d_mark_dontcache(struct inode *inode);
2980 
2981 struct inode *ilookup5_nowait(struct super_block *sb, u64 hashval,
2982 			      int (*test)(struct inode *, void *), void *data,
2983 			      bool *isnew);
2984 struct inode *ilookup5(struct super_block *sb, u64 hashval,
2985 		       int (*test)(struct inode *, void *), void *data);
2986 struct inode *ilookup(struct super_block *sb, u64 ino);
2987 
2988 struct inode *inode_insert5(struct inode *inode, u64 hashval,
2989 			    int (*test)(struct inode *, void *),
2990 			    int (*set)(struct inode *, void *), void *data);
2991 struct inode *iget5_locked(struct super_block *sb, u64 hashval,
2992 			   int (*test)(struct inode *, void *),
2993 			   int (*set)(struct inode *, void *), void *data);
2994 struct inode *iget5_locked_rcu(struct super_block *sb, u64 hashval,
2995 			       int (*test)(struct inode *, void *),
2996 			       int (*set)(struct inode *, void *), void *data);
2997 struct inode *iget_locked(struct super_block *sb, u64 ino);
2998 struct inode *find_inode_nowait(struct super_block *sb, u64 hashval,
2999 				int (*match)(struct inode *, u64, void *),
3000 				void *data);
3001 struct inode *find_inode_rcu(struct super_block *sb, u64 hashval,
3002 			     int (*test)(struct inode *, void *), void *data);
3003 struct inode *find_inode_by_ino_rcu(struct super_block *sb, u64 ino);
3004 int insert_inode_locked4(struct inode *inode, u64 hashval,
3005 			 int (*test)(struct inode *, void *), void *data);
3006 int insert_inode_locked(struct inode *inode);
3007 #ifdef CONFIG_DEBUG_LOCK_ALLOC
3008 void lockdep_annotate_inode_mutex_key(struct inode *inode);
3009 #else
lockdep_annotate_inode_mutex_key(struct inode * inode)3010 static inline void lockdep_annotate_inode_mutex_key(struct inode *inode) { };
3011 #endif
3012 void unlock_new_inode(struct inode *inode);
3013 void discard_new_inode(struct inode *inode);
3014 unsigned int get_next_ino(void);
3015 void evict_inodes(struct super_block *sb);
3016 void dump_mapping(const struct address_space *);
3017 
3018 /*
3019  * Userspace may rely on the inode number being non-zero. For example, glibc
3020  * simply ignores files with zero i_ino in unlink() and other places.
3021  *
3022  * As an additional complication, if userspace was compiled with
3023  * _FILE_OFFSET_BITS=32 on a 64-bit kernel we'll only end up reading out the
3024  * lower 32 bits, so we need to check that those aren't zero explicitly. With
3025  * _FILE_OFFSET_BITS=64, this may cause some harmless false-negatives, but
3026  * better safe than sorry.
3027  */
is_zero_ino(ino_t ino)3028 static inline bool is_zero_ino(ino_t ino)
3029 {
3030 	return (u32)ino == 0;
3031 }
3032 
__iget(struct inode * inode)3033 static inline void __iget(struct inode *inode)
3034 {
3035 	lockdep_assert_held(&inode->i_lock);
3036 	atomic_inc(&inode->i_count);
3037 }
3038 
3039 extern void iget_failed(struct inode *);
3040 extern void clear_inode(struct inode *);
3041 extern void __destroy_inode(struct inode *);
3042 struct inode *alloc_inode(struct super_block *sb);
new_inode_pseudo(struct super_block * sb)3043 static inline struct inode *new_inode_pseudo(struct super_block *sb)
3044 {
3045 	return alloc_inode(sb);
3046 }
3047 extern struct inode *new_inode(struct super_block *sb);
3048 extern void free_inode_nonrcu(struct inode *inode);
3049 extern int setattr_should_drop_suidgid(struct mnt_idmap *, struct inode *);
3050 extern int file_remove_privs(struct file *);
3051 int setattr_should_drop_sgid(struct mnt_idmap *idmap,
3052 			     const struct inode *inode);
3053 
3054 /*
3055  * This must be used for allocating filesystems specific inodes to set
3056  * up the inode reclaim context correctly.
3057  */
3058 #define alloc_inode_sb(_sb, _cache, _gfp) kmem_cache_alloc_lru(_cache, &_sb->s_inode_lru, _gfp)
3059 
3060 void __insert_inode_hash(struct inode *inode, u64 hashval);
insert_inode_hash(struct inode * inode)3061 static inline void insert_inode_hash(struct inode *inode)
3062 {
3063 	__insert_inode_hash(inode, inode->i_ino);
3064 }
3065 
3066 void __remove_inode_hash(struct inode *inode);
remove_inode_hash(struct inode * inode)3067 static inline void remove_inode_hash(struct inode *inode)
3068 {
3069 	if (!inode_unhashed(inode) && !hlist_fake(&inode->i_hash))
3070 		__remove_inode_hash(inode);
3071 }
3072 
3073 void inode_sb_list_add(struct inode *inode);
3074 void inode_lru_list_add(struct inode *inode);
3075 
3076 int generic_file_mmap(struct file *, struct vm_area_struct *);
3077 int generic_file_mmap_prepare(struct vm_area_desc *desc);
3078 int generic_file_readonly_mmap(struct file *, struct vm_area_struct *);
3079 int generic_file_readonly_mmap_prepare(struct vm_area_desc *desc);
3080 extern ssize_t generic_write_checks(struct kiocb *, struct iov_iter *);
3081 int generic_write_checks_count(struct kiocb *iocb, loff_t *count);
3082 extern int generic_write_check_limits(struct file *file, loff_t pos,
3083 		loff_t *count);
3084 extern int generic_file_rw_checks(struct file *file_in, struct file *file_out);
3085 ssize_t filemap_read(struct kiocb *iocb, struct iov_iter *to,
3086 		ssize_t already_read);
3087 extern ssize_t generic_file_read_iter(struct kiocb *, struct iov_iter *);
3088 extern ssize_t __generic_file_write_iter(struct kiocb *, struct iov_iter *);
3089 extern ssize_t generic_file_write_iter(struct kiocb *, struct iov_iter *);
3090 extern ssize_t generic_file_direct_write(struct kiocb *, struct iov_iter *);
3091 ssize_t generic_perform_write(struct kiocb *, struct iov_iter *);
3092 ssize_t direct_write_fallback(struct kiocb *iocb, struct iov_iter *iter,
3093 		ssize_t direct_written, ssize_t buffered_written);
3094 
3095 ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos,
3096 		rwf_t flags);
3097 ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos,
3098 		rwf_t flags);
3099 ssize_t vfs_iocb_iter_read(struct file *file, struct kiocb *iocb,
3100 			   struct iov_iter *iter);
3101 ssize_t vfs_iocb_iter_write(struct file *file, struct kiocb *iocb,
3102 			    struct iov_iter *iter);
3103 
3104 /* fs/splice.c */
3105 ssize_t filemap_splice_read(struct file *in, loff_t *ppos,
3106 			    struct pipe_inode_info *pipe,
3107 			    size_t len, unsigned int flags);
3108 ssize_t copy_splice_read(struct file *in, loff_t *ppos,
3109 			 struct pipe_inode_info *pipe,
3110 			 size_t len, unsigned int flags);
3111 extern ssize_t iter_file_splice_write(struct pipe_inode_info *,
3112 		struct file *, loff_t *, size_t, unsigned int);
3113 
3114 
3115 extern void
3116 file_ra_state_init(struct file_ra_state *ra, struct address_space *mapping);
3117 extern loff_t noop_llseek(struct file *file, loff_t offset, int whence);
3118 extern loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize);
3119 extern loff_t generic_file_llseek(struct file *file, loff_t offset, int whence);
3120 extern loff_t generic_file_llseek_size(struct file *file, loff_t offset,
3121 		int whence, loff_t maxsize, loff_t eof);
3122 loff_t generic_llseek_cookie(struct file *file, loff_t offset, int whence,
3123 			     u64 *cookie);
3124 extern loff_t fixed_size_llseek(struct file *file, loff_t offset,
3125 		int whence, loff_t size);
3126 extern loff_t no_seek_end_llseek_size(struct file *, loff_t, int, loff_t);
3127 extern loff_t no_seek_end_llseek(struct file *, loff_t, int);
3128 int rw_verify_area(int, struct file *, const loff_t *, size_t);
3129 extern int generic_file_open(struct inode * inode, struct file * filp);
3130 extern int nonseekable_open(struct inode * inode, struct file * filp);
3131 extern int stream_open(struct inode * inode, struct file * filp);
3132 
3133 #ifdef CONFIG_BLOCK
3134 typedef void (dio_submit_t)(struct bio *bio, struct inode *inode,
3135 			    loff_t file_offset);
3136 
3137 enum {
3138 	/* need locking between buffered and direct access */
3139 	DIO_LOCKING	= 0x01,
3140 
3141 	/* filesystem does not support filling holes */
3142 	DIO_SKIP_HOLES	= 0x02,
3143 };
3144 
3145 ssize_t __blockdev_direct_IO(struct kiocb *iocb, struct inode *inode,
3146 			     struct block_device *bdev, struct iov_iter *iter,
3147 			     get_block_t get_block,
3148 			     dio_iodone_t end_io,
3149 			     int flags);
3150 
blockdev_direct_IO(struct kiocb * iocb,struct inode * inode,struct iov_iter * iter,get_block_t get_block)3151 static inline ssize_t blockdev_direct_IO(struct kiocb *iocb,
3152 					 struct inode *inode,
3153 					 struct iov_iter *iter,
3154 					 get_block_t get_block)
3155 {
3156 	return __blockdev_direct_IO(iocb, inode, inode->i_sb->s_bdev, iter,
3157 			get_block, NULL, DIO_LOCKING | DIO_SKIP_HOLES);
3158 }
3159 #endif
3160 
3161 bool inode_dio_finished(const struct inode *inode);
3162 void inode_dio_wait(struct inode *inode);
3163 void inode_dio_wait_interruptible(struct inode *inode);
3164 
3165 /**
3166  * inode_dio_begin - signal start of a direct I/O requests
3167  * @inode: inode the direct I/O happens on
3168  *
3169  * This is called once we've finished processing a direct I/O request,
3170  * and is used to wake up callers waiting for direct I/O to be quiesced.
3171  */
inode_dio_begin(struct inode * inode)3172 static inline void inode_dio_begin(struct inode *inode)
3173 {
3174 	atomic_inc(&inode->i_dio_count);
3175 }
3176 
3177 /**
3178  * inode_dio_end - signal finish of a direct I/O requests
3179  * @inode: inode the direct I/O happens on
3180  *
3181  * This is called once we've finished processing a direct I/O request,
3182  * and is used to wake up callers waiting for direct I/O to be quiesced.
3183  */
inode_dio_end(struct inode * inode)3184 static inline void inode_dio_end(struct inode *inode)
3185 {
3186 	if (atomic_dec_and_test(&inode->i_dio_count))
3187 		wake_up_var(&inode->i_dio_count);
3188 }
3189 
3190 extern void inode_set_flags(struct inode *inode, unsigned int flags,
3191 			    unsigned int mask);
3192 
3193 extern const struct file_operations generic_ro_fops;
3194 
3195 #define special_file(m) (S_ISCHR(m)||S_ISBLK(m)||S_ISFIFO(m)||S_ISSOCK(m))
3196 
3197 extern int readlink_copy(char __user *, int, const char *, int);
3198 extern int page_readlink(struct dentry *, char __user *, int);
3199 extern const char *page_get_link_raw(struct dentry *, struct inode *,
3200 				     struct delayed_call *);
3201 extern const char *page_get_link(struct dentry *, struct inode *,
3202 				 struct delayed_call *);
3203 extern void page_put_link(void *);
3204 extern int page_symlink(struct inode *inode, const char *symname, int len);
3205 extern const struct inode_operations page_symlink_inode_operations;
3206 extern void kfree_link(void *);
3207 void fill_mg_cmtime(struct kstat *stat, u32 request_mask, struct inode *inode);
3208 void generic_fillattr(struct mnt_idmap *, u32, struct inode *, struct kstat *);
3209 void generic_fill_statx_attr(struct inode *inode, struct kstat *stat);
3210 void generic_fill_statx_atomic_writes(struct kstat *stat,
3211 				      unsigned int unit_min,
3212 				      unsigned int unit_max,
3213 				      unsigned int unit_max_opt);
3214 extern int vfs_getattr_nosec(const struct path *, struct kstat *, u32, unsigned int);
3215 extern int vfs_getattr(const struct path *, struct kstat *, u32, unsigned int);
3216 void __inode_add_bytes(struct inode *inode, loff_t bytes);
3217 void inode_add_bytes(struct inode *inode, loff_t bytes);
3218 void __inode_sub_bytes(struct inode *inode, loff_t bytes);
3219 void inode_sub_bytes(struct inode *inode, loff_t bytes);
__inode_get_bytes(struct inode * inode)3220 static inline loff_t __inode_get_bytes(struct inode *inode)
3221 {
3222 	return (((loff_t)inode->i_blocks) << 9) + inode->i_bytes;
3223 }
3224 loff_t inode_get_bytes(struct inode *inode);
3225 void inode_set_bytes(struct inode *inode, loff_t bytes);
3226 const char *simple_get_link(struct dentry *, struct inode *,
3227 			    struct delayed_call *);
3228 extern const struct inode_operations simple_symlink_inode_operations;
3229 
3230 extern int iterate_dir(struct file *, struct dir_context *);
3231 
3232 int vfs_fstatat(int dfd, const char __user *filename, struct kstat *stat,
3233 		int flags);
3234 int vfs_fstat(int fd, struct kstat *stat);
3235 
vfs_stat(const char __user * filename,struct kstat * stat)3236 static inline int vfs_stat(const char __user *filename, struct kstat *stat)
3237 {
3238 	return vfs_fstatat(AT_FDCWD, filename, stat, 0);
3239 }
vfs_lstat(const char __user * name,struct kstat * stat)3240 static inline int vfs_lstat(const char __user *name, struct kstat *stat)
3241 {
3242 	return vfs_fstatat(AT_FDCWD, name, stat, AT_SYMLINK_NOFOLLOW);
3243 }
3244 
3245 extern const char *vfs_get_link(struct dentry *, struct delayed_call *);
3246 extern int vfs_readlink(struct dentry *, char __user *, int);
3247 
3248 extern struct file_system_type *get_filesystem(struct file_system_type *fs);
3249 extern void put_filesystem(struct file_system_type *fs);
3250 extern struct file_system_type *get_fs_type(const char *name);
3251 extern void drop_super(struct super_block *sb);
3252 extern void drop_super_exclusive(struct super_block *sb);
3253 extern void iterate_supers(void (*f)(struct super_block *, void *), void *arg);
3254 extern void iterate_supers_type(struct file_system_type *,
3255 			        void (*)(struct super_block *, void *), void *);
3256 void filesystems_freeze(bool freeze_all);
3257 void filesystems_thaw(void);
3258 
3259 void end_dirop(struct dentry *de);
3260 
3261 extern int dcache_dir_open(struct inode *, struct file *);
3262 extern int dcache_dir_close(struct inode *, struct file *);
3263 extern loff_t dcache_dir_lseek(struct file *, loff_t, int);
3264 extern int dcache_readdir(struct file *, struct dir_context *);
3265 extern int simple_setattr(struct mnt_idmap *, struct dentry *,
3266 			  struct iattr *);
3267 extern int simple_getattr(struct mnt_idmap *, const struct path *,
3268 			  struct kstat *, u32, unsigned int);
3269 extern int simple_statfs(struct dentry *, struct kstatfs *);
3270 extern int simple_open(struct inode *inode, struct file *file);
3271 extern int simple_link(struct dentry *, struct inode *, struct dentry *);
3272 extern int simple_unlink(struct inode *, struct dentry *);
3273 extern int simple_rmdir(struct inode *, struct dentry *);
3274 extern void __simple_unlink(struct inode *, struct dentry *);
3275 extern void __simple_rmdir(struct inode *, struct dentry *);
3276 void simple_rename_timestamp(struct inode *old_dir, struct dentry *old_dentry,
3277 			     struct inode *new_dir, struct dentry *new_dentry);
3278 extern int simple_rename_exchange(struct inode *old_dir, struct dentry *old_dentry,
3279 				  struct inode *new_dir, struct dentry *new_dentry);
3280 extern int simple_rename(struct mnt_idmap *, struct inode *,
3281 			 struct dentry *, struct inode *, struct dentry *,
3282 			 unsigned int);
3283 extern void simple_recursive_removal(struct dentry *,
3284                               void (*callback)(struct dentry *));
3285 extern void simple_remove_by_name(struct dentry *, const char *,
3286                               void (*callback)(struct dentry *));
3287 extern void locked_recursive_removal(struct dentry *,
3288                               void (*callback)(struct dentry *));
3289 extern int noop_fsync(struct file *, loff_t, loff_t, int);
3290 extern ssize_t noop_direct_IO(struct kiocb *iocb, struct iov_iter *iter);
3291 extern int simple_empty(struct dentry *);
3292 extern int simple_write_begin(const struct kiocb *iocb,
3293 			      struct address_space *mapping,
3294 			      loff_t pos, unsigned len,
3295 			      struct folio **foliop, void **fsdata);
3296 extern const struct address_space_operations ram_aops;
3297 extern int always_delete_dentry(const struct dentry *);
3298 extern struct inode *alloc_anon_inode(struct super_block *);
3299 struct inode *anon_inode_make_secure_inode(struct super_block *sb, const char *name,
3300 					   const struct inode *context_inode);
3301 
3302 extern struct dentry *simple_lookup(struct inode *, struct dentry *, unsigned int flags);
3303 extern ssize_t generic_read_dir(struct file *, char __user *, size_t, loff_t *);
3304 extern const struct file_operations simple_dir_operations;
3305 extern const struct inode_operations simple_dir_inode_operations;
3306 extern void make_empty_dir_inode(struct inode *inode);
3307 extern bool is_empty_dir_inode(struct inode *inode);
3308 struct tree_descr { const char *name; const struct file_operations *ops; int mode; };
3309 struct dentry *d_alloc_name(struct dentry *, const char *);
3310 extern int simple_fill_super(struct super_block *, unsigned long,
3311 			     const struct tree_descr *);
3312 extern int simple_pin_fs(struct file_system_type *, struct vfsmount **mount, int *count);
3313 extern void simple_release_fs(struct vfsmount **mount, int *count);
3314 struct dentry *simple_start_creating(struct dentry *, const char *);
3315 void simple_done_creating(struct dentry *);
3316 
3317 extern ssize_t simple_read_from_buffer(void __user *to, size_t count,
3318 			loff_t *ppos, const void *from, size_t available);
3319 extern ssize_t simple_write_to_buffer(void *to, size_t available, loff_t *ppos,
3320 		const void __user *from, size_t count);
3321 
3322 struct offset_ctx {
3323 	struct maple_tree	mt;
3324 	unsigned long		next_offset;
3325 };
3326 
3327 void simple_offset_init(struct offset_ctx *octx);
3328 int simple_offset_add(struct offset_ctx *octx, struct dentry *dentry);
3329 void simple_offset_remove(struct offset_ctx *octx, struct dentry *dentry);
3330 void simple_offset_rename(struct inode *old_dir, struct dentry *old_dentry,
3331 			 struct inode *new_dir, struct dentry *new_dentry);
3332 int simple_offset_rename_exchange(struct inode *old_dir,
3333 				  struct dentry *old_dentry,
3334 				  struct inode *new_dir,
3335 				  struct dentry *new_dentry);
3336 void simple_offset_destroy(struct offset_ctx *octx);
3337 
3338 extern const struct file_operations simple_offset_dir_operations;
3339 
3340 extern int simple_fsync_noflush(struct file *, loff_t, loff_t, int);
3341 extern int simple_fsync(struct file *, loff_t, loff_t, int);
3342 
3343 extern int generic_check_addressable(unsigned, u64);
3344 
3345 extern void generic_set_sb_d_ops(struct super_block *sb);
3346 extern int generic_ci_match(const struct inode *parent,
3347 			    const struct qstr *name,
3348 			    const struct qstr *folded_name,
3349 			    const u8 *de_name, u32 de_name_len);
3350 
3351 #if IS_ENABLED(CONFIG_UNICODE)
3352 int generic_ci_d_hash(const struct dentry *dentry, struct qstr *str);
3353 int generic_ci_d_compare(const struct dentry *dentry, unsigned int len,
3354 			 const char *str, const struct qstr *name);
3355 
3356 /**
3357  * generic_ci_validate_strict_name - Check if a given name is suitable
3358  * for a directory
3359  *
3360  * This functions checks if the proposed filename is valid for the
3361  * parent directory. That means that only valid UTF-8 filenames will be
3362  * accepted for casefold directories from filesystems created with the
3363  * strict encoding flag.  That also means that any name will be
3364  * accepted for directories that doesn't have casefold enabled, or
3365  * aren't being strict with the encoding.
3366  *
3367  * @dir: inode of the directory where the new file will be created
3368  * @name: name of the new file
3369  *
3370  * Return:
3371  * * True: if the filename is suitable for this directory. It can be
3372  *   true if a given name is not suitable for a strict encoding
3373  *   directory, but the directory being used isn't strict
3374  * * False if the filename isn't suitable for this directory. This only
3375  *   happens when a directory is casefolded and the filesystem is strict
3376  *   about its encoding.
3377  */
generic_ci_validate_strict_name(struct inode * dir,const struct qstr * name)3378 static inline bool generic_ci_validate_strict_name(struct inode *dir,
3379 						   const struct qstr *name)
3380 {
3381 	if (!IS_CASEFOLDED(dir) || !sb_has_strict_encoding(dir->i_sb))
3382 		return true;
3383 
3384 	/*
3385 	 * A casefold dir must have a encoding set, unless the filesystem
3386 	 * is corrupted
3387 	 */
3388 	if (WARN_ON_ONCE(!dir->i_sb->s_encoding))
3389 		return true;
3390 
3391 	return !utf8_validate(dir->i_sb->s_encoding, name);
3392 }
3393 #else
generic_ci_validate_strict_name(struct inode * dir,const struct qstr * name)3394 static inline bool generic_ci_validate_strict_name(struct inode *dir,
3395 						   const struct qstr *name)
3396 {
3397 	return true;
3398 }
3399 #endif
3400 
3401 int may_setattr(struct mnt_idmap *idmap, struct inode *inode,
3402 		unsigned int ia_valid);
3403 int setattr_prepare(struct mnt_idmap *, struct dentry *, struct iattr *);
3404 extern int inode_newsize_ok(const struct inode *, loff_t offset);
3405 void setattr_copy(struct mnt_idmap *, struct inode *inode,
3406 		  const struct iattr *attr);
3407 
3408 extern int file_update_time(struct file *file);
3409 
file_is_dax(const struct file * file)3410 static inline bool file_is_dax(const struct file *file)
3411 {
3412 	return file && IS_DAX(file->f_mapping->host);
3413 }
3414 
vma_is_dax(const struct vm_area_struct * vma)3415 static inline bool vma_is_dax(const struct vm_area_struct *vma)
3416 {
3417 	return file_is_dax(vma->vm_file);
3418 }
3419 
vma_is_fsdax(struct vm_area_struct * vma)3420 static inline bool vma_is_fsdax(struct vm_area_struct *vma)
3421 {
3422 	struct inode *inode;
3423 
3424 	if (!IS_ENABLED(CONFIG_FS_DAX) || !vma->vm_file)
3425 		return false;
3426 	if (!vma_is_dax(vma))
3427 		return false;
3428 	inode = file_inode(vma->vm_file);
3429 	if (S_ISCHR(inode->i_mode))
3430 		return false; /* device-dax */
3431 	return true;
3432 }
3433 
iocb_flags(struct file * file)3434 static inline int iocb_flags(struct file *file)
3435 {
3436 	int res = 0;
3437 	if (file->f_flags & O_APPEND)
3438 		res |= IOCB_APPEND;
3439 	if (file->f_flags & O_DIRECT)
3440 		res |= IOCB_DIRECT;
3441 	if (file->f_flags & O_DSYNC)
3442 		res |= IOCB_DSYNC;
3443 	if (file->f_flags & __O_SYNC)
3444 		res |= IOCB_SYNC;
3445 	return res;
3446 }
3447 
kiocb_set_rw_flags(struct kiocb * ki,rwf_t flags,int rw_type)3448 static inline int kiocb_set_rw_flags(struct kiocb *ki, rwf_t flags,
3449 				     int rw_type)
3450 {
3451 	int kiocb_flags = 0;
3452 
3453 	/* make sure there's no overlap between RWF and private IOCB flags */
3454 	BUILD_BUG_ON((__force int) RWF_SUPPORTED & IOCB_EVENTFD);
3455 
3456 	if (!flags)
3457 		return 0;
3458 	if (unlikely(flags & ~RWF_SUPPORTED))
3459 		return -EOPNOTSUPP;
3460 	if (unlikely((flags & RWF_APPEND) && (flags & RWF_NOAPPEND)))
3461 		return -EINVAL;
3462 
3463 	if (flags & RWF_NOWAIT) {
3464 		if (!(ki->ki_filp->f_mode & FMODE_NOWAIT))
3465 			return -EOPNOTSUPP;
3466 	}
3467 	if (flags & RWF_ATOMIC) {
3468 		if (rw_type != WRITE)
3469 			return -EOPNOTSUPP;
3470 		if (!(ki->ki_filp->f_mode & FMODE_CAN_ATOMIC_WRITE))
3471 			return -EOPNOTSUPP;
3472 	}
3473 	if (flags & RWF_DONTCACHE) {
3474 		/* file system must support it */
3475 		if (!(ki->ki_filp->f_op->fop_flags & FOP_DONTCACHE))
3476 			return -EOPNOTSUPP;
3477 		/* DAX mappings not supported */
3478 		if (IS_DAX(ki->ki_filp->f_mapping->host))
3479 			return -EOPNOTSUPP;
3480 	}
3481 	kiocb_flags |= (__force int) (flags & RWF_SUPPORTED);
3482 	if (flags & RWF_SYNC)
3483 		kiocb_flags |= IOCB_DSYNC;
3484 
3485 	if ((flags & RWF_NOAPPEND) && (ki->ki_flags & IOCB_APPEND)) {
3486 		if (IS_APPEND(file_inode(ki->ki_filp)))
3487 			return -EPERM;
3488 		ki->ki_flags &= ~IOCB_APPEND;
3489 	}
3490 
3491 	ki->ki_flags |= kiocb_flags;
3492 	return 0;
3493 }
3494 
3495 /* Transaction based IO helpers */
3496 
3497 /*
3498  * An argresp is stored in an allocated page and holds the
3499  * size of the argument or response, along with its content
3500  */
3501 struct simple_transaction_argresp {
3502 	ssize_t size;
3503 	char data[];
3504 };
3505 
3506 #define SIMPLE_TRANSACTION_LIMIT (PAGE_SIZE - sizeof(struct simple_transaction_argresp))
3507 
3508 char *simple_transaction_get(struct file *file, const char __user *buf,
3509 				size_t size);
3510 ssize_t simple_transaction_read(struct file *file, char __user *buf,
3511 				size_t size, loff_t *pos);
3512 int simple_transaction_release(struct inode *inode, struct file *file);
3513 
3514 void simple_transaction_set(struct file *file, size_t n);
3515 
3516 /*
3517  * simple attribute files
3518  *
3519  * These attributes behave similar to those in sysfs:
3520  *
3521  * Writing to an attribute immediately sets a value, an open file can be
3522  * written to multiple times.
3523  *
3524  * Reading from an attribute creates a buffer from the value that might get
3525  * read with multiple read calls. When the attribute has been read
3526  * completely, no further read calls are possible until the file is opened
3527  * again.
3528  *
3529  * All attributes contain a text representation of a numeric value
3530  * that are accessed with the get() and set() functions.
3531  */
3532 #define DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, __is_signed)	\
3533 static int __fops ## _open(struct inode *inode, struct file *file)	\
3534 {									\
3535 	__simple_attr_check_format(__fmt, 0ull);			\
3536 	return simple_attr_open(inode, file, __get, __set, __fmt);	\
3537 }									\
3538 static const struct file_operations __fops = {				\
3539 	.owner	 = THIS_MODULE,						\
3540 	.open	 = __fops ## _open,					\
3541 	.release = simple_attr_release,					\
3542 	.read	 = simple_attr_read,					\
3543 	.write	 = (__is_signed) ? simple_attr_write_signed : simple_attr_write,	\
3544 	.llseek	 = generic_file_llseek,					\
3545 }
3546 
3547 #define DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt)		\
3548 	DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, false)
3549 
3550 #define DEFINE_SIMPLE_ATTRIBUTE_SIGNED(__fops, __get, __set, __fmt)	\
3551 	DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, true)
3552 
3553 static inline __printf(1, 2)
__simple_attr_check_format(const char * fmt,...)3554 void __simple_attr_check_format(const char *fmt, ...)
3555 {
3556 	/* don't do anything, just let the compiler check the arguments; */
3557 }
3558 
3559 int simple_attr_open(struct inode *inode, struct file *file,
3560 		     int (*get)(void *, u64 *), int (*set)(void *, u64),
3561 		     const char *fmt);
3562 int simple_attr_release(struct inode *inode, struct file *file);
3563 ssize_t simple_attr_read(struct file *file, char __user *buf,
3564 			 size_t len, loff_t *ppos);
3565 ssize_t simple_attr_write(struct file *file, const char __user *buf,
3566 			  size_t len, loff_t *ppos);
3567 ssize_t simple_attr_write_signed(struct file *file, const char __user *buf,
3568 				 size_t len, loff_t *ppos);
3569 
3570 int __init list_bdev_fs_names(char *buf, size_t size);
3571 
3572 #define __FMODE_EXEC		((__force int) FMODE_EXEC)
3573 
3574 #define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE])
3575 #define OPEN_FMODE(flag) ((__force fmode_t)((flag + 1) & O_ACCMODE))
3576 
is_sxid(umode_t mode)3577 static inline bool is_sxid(umode_t mode)
3578 {
3579 	return mode & (S_ISUID | S_ISGID);
3580 }
3581 
check_sticky(struct mnt_idmap * idmap,struct inode * dir,struct inode * inode)3582 static inline int check_sticky(struct mnt_idmap *idmap,
3583 			       struct inode *dir, struct inode *inode)
3584 {
3585 	if (!(dir->i_mode & S_ISVTX))
3586 		return 0;
3587 
3588 	return __check_sticky(idmap, dir, inode);
3589 }
3590 
inode_has_no_xattr(struct inode * inode)3591 static inline void inode_has_no_xattr(struct inode *inode)
3592 {
3593 	if (!is_sxid(inode->i_mode) && (inode->i_sb->s_flags & SB_NOSEC))
3594 		inode->i_flags |= S_NOSEC;
3595 }
3596 
is_root_inode(struct inode * inode)3597 static inline bool is_root_inode(struct inode *inode)
3598 {
3599 	return inode == inode->i_sb->s_root->d_inode;
3600 }
3601 
dir_emit(struct dir_context * ctx,const char * name,int namelen,u64 ino,unsigned type)3602 static inline bool dir_emit(struct dir_context *ctx,
3603 			    const char *name, int namelen,
3604 			    u64 ino, unsigned type)
3605 {
3606 	unsigned int dt_mask = S_DT_MASK | ctx->dt_flags_mask;
3607 
3608 	return ctx->actor(ctx, name, namelen, ctx->pos, ino, type & dt_mask);
3609 }
dir_emit_dot(struct file * file,struct dir_context * ctx)3610 static inline bool dir_emit_dot(struct file *file, struct dir_context *ctx)
3611 {
3612 	return ctx->actor(ctx, ".", 1, ctx->pos,
3613 			  file->f_path.dentry->d_inode->i_ino, DT_DIR);
3614 }
dir_emit_dotdot(struct file * file,struct dir_context * ctx)3615 static inline bool dir_emit_dotdot(struct file *file, struct dir_context *ctx)
3616 {
3617 	return ctx->actor(ctx, "..", 2, ctx->pos,
3618 			  d_parent_ino(file->f_path.dentry), DT_DIR);
3619 }
dir_emit_dots(struct file * file,struct dir_context * ctx)3620 static inline bool dir_emit_dots(struct file *file, struct dir_context *ctx)
3621 {
3622 	if (ctx->pos == 0) {
3623 		if (!dir_emit_dot(file, ctx))
3624 			return false;
3625 		ctx->pos = 1;
3626 	}
3627 	if (ctx->pos == 1) {
3628 		if (!dir_emit_dotdot(file, ctx))
3629 			return false;
3630 		ctx->pos = 2;
3631 	}
3632 	return true;
3633 }
dir_relax(struct inode * inode)3634 static inline bool dir_relax(struct inode *inode)
3635 {
3636 	inode_unlock(inode);
3637 	inode_lock(inode);
3638 	return !IS_DEADDIR(inode);
3639 }
3640 
dir_relax_shared(struct inode * inode)3641 static inline bool dir_relax_shared(struct inode *inode)
3642 {
3643 	inode_unlock_shared(inode);
3644 	inode_lock_shared(inode);
3645 	return !IS_DEADDIR(inode);
3646 }
3647 
3648 extern bool path_noexec(const struct path *path);
3649 extern void inode_nohighmem(struct inode *inode);
3650 
3651 /* mm/fadvise.c */
3652 extern int vfs_fadvise(struct file *file, loff_t offset, loff_t len,
3653 		       int advice);
3654 extern int generic_fadvise(struct file *file, loff_t offset, loff_t len,
3655 			   int advice);
3656 
vfs_empty_path(int dfd,const char __user * path)3657 static inline bool vfs_empty_path(int dfd, const char __user *path)
3658 {
3659 	char c;
3660 
3661 	if (dfd < 0)
3662 		return false;
3663 
3664 	/* We now allow NULL to be used for empty path. */
3665 	if (!path)
3666 		return true;
3667 
3668 	if (unlikely(get_user(c, path)))
3669 		return false;
3670 
3671 	return !c;
3672 }
3673 
3674 int generic_atomic_write_valid(struct kiocb *iocb, struct iov_iter *iter);
3675 
extensible_ioctl_valid(unsigned int cmd_a,unsigned int cmd_b,size_t min_size)3676 static inline bool extensible_ioctl_valid(unsigned int cmd_a,
3677 					  unsigned int cmd_b, size_t min_size)
3678 {
3679 	if (_IOC_DIR(cmd_a) != _IOC_DIR(cmd_b))
3680 		return false;
3681 	if (_IOC_TYPE(cmd_a) != _IOC_TYPE(cmd_b))
3682 		return false;
3683 	if (_IOC_NR(cmd_a) != _IOC_NR(cmd_b))
3684 		return false;
3685 	if (_IOC_SIZE(cmd_a) < min_size)
3686 		return false;
3687 	return true;
3688 }
3689 
3690 #endif /* _LINUX_FS_H */
3691