1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
5 */
6 #ifndef __XFS_INODE_H__
7 #define __XFS_INODE_H__
8
9 #include "xfs_inode_buf.h"
10 #include "xfs_inode_fork.h"
11 #include "xfs_inode_util.h"
12
13 /*
14 * Kernel only inode definitions
15 */
16 struct xfs_dinode;
17 struct xfs_inode;
18 struct xfs_buf;
19 struct xfs_bmbt_irec;
20 struct xfs_inode_log_item;
21 struct xfs_mount;
22 struct xfs_trans;
23 struct xfs_dquot;
24
25 typedef struct xfs_inode {
26 /* Inode linking and identification information. */
27 struct xfs_mount *i_mount; /* fs mount struct ptr */
28 struct xfs_dquot *i_udquot; /* user dquot */
29 struct xfs_dquot *i_gdquot; /* group dquot */
30 struct xfs_dquot *i_pdquot; /* project dquot */
31
32 /* Inode location stuff */
33 struct xfs_imap i_imap; /* location for xfs_imap() */
34
35 /* Extent information. */
36 struct xfs_ifork *i_cowfp; /* copy on write extents */
37 struct xfs_ifork i_df; /* data fork */
38 struct xfs_ifork i_af; /* attribute fork */
39
40 /* Transaction and locking information. */
41 struct xfs_inode_log_item *i_itemp; /* logging information */
42 struct rw_semaphore i_lock; /* inode lock */
43 atomic_t i_pincount; /* inode pin count */
44 struct llist_node i_gclist; /* deferred inactivation list */
45
46 /*
47 * Bitsets of inode metadata that have been checked and/or are sick.
48 * Callers must hold i_flags_lock before accessing this field.
49 */
50 uint16_t i_checked;
51 uint16_t i_sick;
52
53 spinlock_t i_flags_lock; /* inode i_flags lock */
54 /* Miscellaneous state. */
55 unsigned long i_flags; /* see defined flags below */
56 uint64_t i_delayed_blks; /* count of delay alloc blks */
57 xfs_fsize_t i_disk_size; /* number of bytes in file */
58 xfs_rfsblock_t i_nblocks; /* # of direct & btree blocks */
59 prid_t i_projid; /* owner's project id */
60 xfs_extlen_t i_extsize; /* basic/minimum extent size */
61 /*
62 * i_used_blocks is used for zoned rtrmap inodes,
63 * i_cowextsize is used for other v3 inodes,
64 * i_flushiter for v1/2 inodes
65 */
66 union {
67 uint32_t i_used_blocks; /* used blocks in RTG */
68 xfs_extlen_t i_cowextsize; /* basic cow extent size */
69 uint16_t i_flushiter; /* incremented on flush */
70 };
71 uint8_t i_forkoff; /* attr fork offset >> 3 */
72 enum xfs_metafile_type i_metatype; /* XFS_METAFILE_* */
73 uint16_t i_diflags; /* XFS_DIFLAG_... */
74 uint64_t i_diflags2; /* XFS_DIFLAG2_... */
75 struct timespec64 i_crtime; /* time created */
76
77 /*
78 * Unlinked list pointers. These point to the next and previous inodes
79 * in the AGI unlinked bucket list, respectively. These fields can
80 * only be updated with the AGI locked.
81 *
82 * i_next_unlinked caches di_next_unlinked.
83 */
84 xfs_agino_t i_next_unlinked;
85
86 /*
87 * If the inode is not on an unlinked list, this field is zero. If the
88 * inode is the first element in an unlinked list, this field is
89 * NULLAGINO. Otherwise, i_prev_unlinked points to the previous inode
90 * in the unlinked list.
91 */
92 xfs_agino_t i_prev_unlinked;
93
94 /* VFS inode */
95 struct inode i_vnode; /* embedded VFS inode */
96
97 /* pending io completions */
98 spinlock_t i_ioend_lock;
99 struct work_struct i_ioend_work;
100 struct list_head i_ioend_list;
101 } xfs_inode_t;
102
xfs_inode_on_unlinked_list(const struct xfs_inode * ip)103 static inline bool xfs_inode_on_unlinked_list(const struct xfs_inode *ip)
104 {
105 return ip->i_prev_unlinked != 0;
106 }
107
xfs_inode_has_attr_fork(const struct xfs_inode * ip)108 static inline bool xfs_inode_has_attr_fork(const struct xfs_inode *ip)
109 {
110 return ip->i_forkoff > 0;
111 }
112
113 static inline struct xfs_ifork *
xfs_ifork_ptr(struct xfs_inode * ip,int whichfork)114 xfs_ifork_ptr(
115 struct xfs_inode *ip,
116 int whichfork)
117 {
118 switch (whichfork) {
119 case XFS_DATA_FORK:
120 return &ip->i_df;
121 case XFS_ATTR_FORK:
122 if (!xfs_inode_has_attr_fork(ip))
123 return NULL;
124 return &ip->i_af;
125 case XFS_COW_FORK:
126 return ip->i_cowfp;
127 default:
128 ASSERT(0);
129 return NULL;
130 }
131 }
132
xfs_inode_fork_boff(struct xfs_inode * ip)133 static inline unsigned int xfs_inode_fork_boff(struct xfs_inode *ip)
134 {
135 return ip->i_forkoff << 3;
136 }
137
xfs_inode_data_fork_size(struct xfs_inode * ip)138 static inline unsigned int xfs_inode_data_fork_size(struct xfs_inode *ip)
139 {
140 if (xfs_inode_has_attr_fork(ip))
141 return xfs_inode_fork_boff(ip);
142
143 return XFS_LITINO(ip->i_mount);
144 }
145
xfs_inode_attr_fork_size(struct xfs_inode * ip)146 static inline unsigned int xfs_inode_attr_fork_size(struct xfs_inode *ip)
147 {
148 if (xfs_inode_has_attr_fork(ip))
149 return XFS_LITINO(ip->i_mount) - xfs_inode_fork_boff(ip);
150 return 0;
151 }
152
153 static inline unsigned int
xfs_inode_fork_size(struct xfs_inode * ip,int whichfork)154 xfs_inode_fork_size(
155 struct xfs_inode *ip,
156 int whichfork)
157 {
158 switch (whichfork) {
159 case XFS_DATA_FORK:
160 return xfs_inode_data_fork_size(ip);
161 case XFS_ATTR_FORK:
162 return xfs_inode_attr_fork_size(ip);
163 default:
164 return 0;
165 }
166 }
167
168 /* Convert from vfs inode to xfs inode */
XFS_I(struct inode * inode)169 static inline struct xfs_inode *XFS_I(struct inode *inode)
170 {
171 return container_of(inode, struct xfs_inode, i_vnode);
172 }
173
174 /* convert from xfs inode to vfs inode */
VFS_I(struct xfs_inode * ip)175 static inline struct inode *VFS_I(struct xfs_inode *ip)
176 {
177 return &ip->i_vnode;
178 }
179
180 /* convert from const xfs inode to const vfs inode */
VFS_IC(const struct xfs_inode * ip)181 static inline const struct inode *VFS_IC(const struct xfs_inode *ip)
182 {
183 return &ip->i_vnode;
184 }
185
I_INO(const struct xfs_inode * ip)186 static inline xfs_ino_t I_INO(const struct xfs_inode *ip)
187 {
188 return VFS_IC(ip)->i_ino;
189 }
190
191 /*
192 * For regular files we only update the on-disk filesize when actually
193 * writing data back to disk. Until then only the copy in the VFS inode
194 * is uptodate.
195 */
XFS_ISIZE(struct xfs_inode * ip)196 static inline xfs_fsize_t XFS_ISIZE(struct xfs_inode *ip)
197 {
198 if (S_ISREG(VFS_I(ip)->i_mode))
199 return i_size_read(VFS_I(ip));
200 return ip->i_disk_size;
201 }
202
203 /*
204 * If this I/O goes past the on-disk inode size update it unless it would
205 * be past the current in-core inode size.
206 */
207 static inline xfs_fsize_t
xfs_new_eof(struct xfs_inode * ip,xfs_fsize_t new_size)208 xfs_new_eof(struct xfs_inode *ip, xfs_fsize_t new_size)
209 {
210 xfs_fsize_t i_size = i_size_read(VFS_I(ip));
211
212 if (new_size > i_size || new_size < 0)
213 new_size = i_size;
214 return new_size > ip->i_disk_size ? new_size : 0;
215 }
216
217 /*
218 * i_flags helper functions
219 */
220 static inline void
__xfs_iflags_set(xfs_inode_t * ip,unsigned long flags)221 __xfs_iflags_set(xfs_inode_t *ip, unsigned long flags)
222 {
223 ip->i_flags |= flags;
224 }
225
226 static inline void
xfs_iflags_set(xfs_inode_t * ip,unsigned long flags)227 xfs_iflags_set(xfs_inode_t *ip, unsigned long flags)
228 {
229 spin_lock(&ip->i_flags_lock);
230 __xfs_iflags_set(ip, flags);
231 spin_unlock(&ip->i_flags_lock);
232 }
233
234 static inline void
xfs_iflags_clear(xfs_inode_t * ip,unsigned long flags)235 xfs_iflags_clear(xfs_inode_t *ip, unsigned long flags)
236 {
237 spin_lock(&ip->i_flags_lock);
238 ip->i_flags &= ~flags;
239 spin_unlock(&ip->i_flags_lock);
240 }
241
242 static inline int
__xfs_iflags_test(const struct xfs_inode * ip,unsigned long flags)243 __xfs_iflags_test(const struct xfs_inode *ip, unsigned long flags)
244 {
245 return (ip->i_flags & flags);
246 }
247
248 static inline int
xfs_iflags_test(xfs_inode_t * ip,unsigned long flags)249 xfs_iflags_test(xfs_inode_t *ip, unsigned long flags)
250 {
251 int ret;
252 spin_lock(&ip->i_flags_lock);
253 ret = __xfs_iflags_test(ip, flags);
254 spin_unlock(&ip->i_flags_lock);
255 return ret;
256 }
257
258 static inline int
xfs_iflags_test_and_clear(xfs_inode_t * ip,unsigned long flags)259 xfs_iflags_test_and_clear(xfs_inode_t *ip, unsigned long flags)
260 {
261 int ret;
262
263 spin_lock(&ip->i_flags_lock);
264 ret = ip->i_flags & flags;
265 if (ret)
266 ip->i_flags &= ~flags;
267 spin_unlock(&ip->i_flags_lock);
268 return ret;
269 }
270
271 static inline int
xfs_iflags_test_and_set(xfs_inode_t * ip,unsigned long flags)272 xfs_iflags_test_and_set(xfs_inode_t *ip, unsigned long flags)
273 {
274 int ret;
275
276 spin_lock(&ip->i_flags_lock);
277 ret = ip->i_flags & flags;
278 if (!ret)
279 ip->i_flags |= flags;
280 spin_unlock(&ip->i_flags_lock);
281 return ret;
282 }
283
xfs_is_reflink_inode(const struct xfs_inode * ip)284 static inline bool xfs_is_reflink_inode(const struct xfs_inode *ip)
285 {
286 return ip->i_diflags2 & XFS_DIFLAG2_REFLINK;
287 }
288
xfs_is_metadir_inode(const struct xfs_inode * ip)289 static inline bool xfs_is_metadir_inode(const struct xfs_inode *ip)
290 {
291 return ip->i_diflags2 & XFS_DIFLAG2_METADATA;
292 }
293
xfs_is_internal_inode(const struct xfs_inode * ip)294 static inline bool xfs_is_internal_inode(const struct xfs_inode *ip)
295 {
296 struct xfs_mount *mp = ip->i_mount;
297
298 /* Any file in the metadata directory tree is a metadata inode. */
299 if (xfs_has_metadir(mp))
300 return xfs_is_metadir_inode(ip);
301
302 /*
303 * Before metadata directories, the only metadata inodes were the
304 * three quota files, the realtime bitmap, and the realtime summary.
305 */
306 return I_INO(ip) == mp->m_sb.sb_rbmino ||
307 I_INO(ip) == mp->m_sb.sb_rsumino ||
308 xfs_is_quota_inode(&mp->m_sb, I_INO(ip));
309 }
310
xfs_is_zoned_inode(const struct xfs_inode * ip)311 static inline bool xfs_is_zoned_inode(const struct xfs_inode *ip)
312 {
313 return xfs_has_zoned(ip->i_mount) && XFS_IS_REALTIME_INODE(ip);
314 }
315
316 bool xfs_is_always_cow_inode(const struct xfs_inode *ip);
317
xfs_is_cow_inode(const struct xfs_inode * ip)318 static inline bool xfs_is_cow_inode(const struct xfs_inode *ip)
319 {
320 return xfs_is_reflink_inode(ip) || xfs_is_always_cow_inode(ip);
321 }
322
xfs_inode_has_filedata(const struct xfs_inode * ip)323 static inline bool xfs_inode_has_filedata(const struct xfs_inode *ip)
324 {
325 return ip->i_df.if_nextents > 0 || ip->i_delayed_blks > 0;
326 }
327
328 /*
329 * Check if an inode has any data in the COW fork. This might be often false
330 * even for inodes with the reflink flag when there is no pending COW operation.
331 */
xfs_inode_has_cow_data(const struct xfs_inode * ip)332 static inline bool xfs_inode_has_cow_data(const struct xfs_inode *ip)
333 {
334 return ip->i_cowfp && ip->i_cowfp->if_bytes;
335 }
336
xfs_inode_has_bigtime(const struct xfs_inode * ip)337 static inline bool xfs_inode_has_bigtime(const struct xfs_inode *ip)
338 {
339 return ip->i_diflags2 & XFS_DIFLAG2_BIGTIME;
340 }
341
xfs_inode_has_large_extent_counts(const struct xfs_inode * ip)342 static inline bool xfs_inode_has_large_extent_counts(const struct xfs_inode *ip)
343 {
344 return ip->i_diflags2 & XFS_DIFLAG2_NREXT64;
345 }
346
347 /*
348 * Decide if this file is a realtime file whose data allocation unit is larger
349 * than a single filesystem block.
350 */
xfs_inode_has_bigrtalloc(const struct xfs_inode * ip)351 static inline bool xfs_inode_has_bigrtalloc(const struct xfs_inode *ip)
352 {
353 return XFS_IS_REALTIME_INODE(ip) && ip->i_mount->m_sb.sb_rextsize > 1;
354 }
355
356 /*
357 * Return the buftarg used for data allocations on a given inode.
358 */
359 #define xfs_inode_buftarg(ip) \
360 (XFS_IS_REALTIME_INODE(ip) ? \
361 (ip)->i_mount->m_rtdev_targp : (ip)->i_mount->m_ddev_targp)
362
xfs_inode_can_hw_atomic_write(const struct xfs_inode * ip)363 static inline bool xfs_inode_can_hw_atomic_write(const struct xfs_inode *ip)
364 {
365 if (IS_DAX(VFS_IC(ip)))
366 return false;
367
368 return xfs_inode_buftarg(ip)->bt_awu_max > 0;
369 }
370
xfs_inode_can_sw_atomic_write(const struct xfs_inode * ip)371 static inline bool xfs_inode_can_sw_atomic_write(const struct xfs_inode *ip)
372 {
373 if (IS_DAX(VFS_IC(ip)))
374 return false;
375
376 return xfs_can_sw_atomic_write(ip->i_mount);
377 }
378
379 /*
380 * In-core inode flags.
381 */
382 #define XFS_IRECLAIM (1 << 0) /* started reclaiming this inode */
383 #define XFS_ISTALE (1 << 1) /* inode has been staled */
384 #define XFS_IRECLAIMABLE (1 << 2) /* inode can be reclaimed */
385 #define XFS_INEW (1 << 3) /* inode has just been allocated */
386 #define XFS_IPRESERVE_DM_FIELDS (1 << 4) /* has legacy DMAPI fields set */
387 #define XFS_ITRUNCATED (1 << 5) /* truncated down so flush-on-close */
388 #define XFS_EOFBLOCKS_RELEASED (1 << 6) /* eofblocks were freed in ->release */
389 #define XFS_IFLUSHING (1 << 7) /* inode is being flushed */
390 #define __XFS_IPINNED_BIT 8 /* wakeup key for zero pin count */
391 #define XFS_IPINNED (1 << __XFS_IPINNED_BIT)
392 #define XFS_IEOFBLOCKS (1 << 9) /* has the preallocblocks tag set */
393 #define XFS_NEED_INACTIVE (1 << 10) /* see XFS_INACTIVATING below */
394 /*
395 * If this unlinked inode is in the middle of recovery, don't let drop_inode
396 * truncate and free the inode. This can happen if we iget the inode during
397 * log recovery to replay a bmap operation on the inode.
398 */
399 #define XFS_IRECOVERY (1 << 11)
400 #define XFS_ICOWBLOCKS (1 << 12)/* has the cowblocks tag set */
401
402 /*
403 * If we need to update on-disk metadata before this IRECLAIMABLE inode can be
404 * freed, then NEED_INACTIVE will be set. Once we start the updates, the
405 * INACTIVATING bit will be set to keep iget away from this inode. After the
406 * inactivation completes, both flags will be cleared and the inode is a
407 * plain old IRECLAIMABLE inode.
408 */
409 #define XFS_INACTIVATING (1 << 13)
410
411 /* Quotacheck is running but inode has not been added to quota counts. */
412 #define XFS_IQUOTAUNCHECKED (1 << 14)
413
414 /*
415 * Remap in progress. Callers that wish to update file data while
416 * holding a shared IOLOCK or MMAPLOCK must drop the lock and retake
417 * the lock in exclusive mode. Relocking the file will block until
418 * IREMAPPING is cleared.
419 */
420 #define XFS_IREMAPPING (1U << 15)
421
422 /* All inode state flags related to inode reclaim. */
423 #define XFS_ALL_IRECLAIM_FLAGS (XFS_IRECLAIMABLE | \
424 XFS_IRECLAIM | \
425 XFS_NEED_INACTIVE | \
426 XFS_INACTIVATING)
427
428 /*
429 * Per-lifetime flags need to be reset when re-using a reclaimable inode during
430 * inode lookup. This prevents unintended behaviour on the new inode from
431 * ocurring.
432 */
433 #define XFS_IRECLAIM_RESET_FLAGS \
434 (XFS_IRECLAIMABLE | XFS_IRECLAIM | \
435 XFS_EOFBLOCKS_RELEASED | XFS_ITRUNCATED | XFS_NEED_INACTIVE | \
436 XFS_INACTIVATING | XFS_IQUOTAUNCHECKED)
437
438 /*
439 * Flags for inode locking.
440 * Bit ranges: 1<<1 - 1<<16-1 -- iolock/ilock modes (bitfield)
441 * 1<<16 - 1<<32-1 -- lockdep annotation (integers)
442 */
443 #define XFS_IOLOCK_EXCL (1u << 0)
444 #define XFS_IOLOCK_SHARED (1u << 1)
445 #define XFS_ILOCK_EXCL (1u << 2)
446 #define XFS_ILOCK_SHARED (1u << 3)
447 #define XFS_MMAPLOCK_EXCL (1u << 4)
448 #define XFS_MMAPLOCK_SHARED (1u << 5)
449
450 #define XFS_LOCK_MASK (XFS_IOLOCK_EXCL | XFS_IOLOCK_SHARED \
451 | XFS_ILOCK_EXCL | XFS_ILOCK_SHARED \
452 | XFS_MMAPLOCK_EXCL | XFS_MMAPLOCK_SHARED)
453
454 #define XFS_LOCK_FLAGS \
455 { XFS_IOLOCK_EXCL, "IOLOCK_EXCL" }, \
456 { XFS_IOLOCK_SHARED, "IOLOCK_SHARED" }, \
457 { XFS_ILOCK_EXCL, "ILOCK_EXCL" }, \
458 { XFS_ILOCK_SHARED, "ILOCK_SHARED" }, \
459 { XFS_MMAPLOCK_EXCL, "MMAPLOCK_EXCL" }, \
460 { XFS_MMAPLOCK_SHARED, "MMAPLOCK_SHARED" }
461
462
463 /*
464 * Flags for lockdep annotations.
465 *
466 * XFS_LOCK_PARENT - for directory operations that require locking a
467 * parent directory inode and a child entry inode. IOLOCK requires nesting,
468 * MMAPLOCK does not support this class, ILOCK requires a single subclass
469 * to differentiate parent from child.
470 *
471 * XFS_LOCK_RTBITMAP/XFS_LOCK_RTSUM - the realtime device bitmap and summary
472 * inodes do not participate in the normal lock order, and thus have their
473 * own subclasses.
474 *
475 * XFS_LOCK_INUMORDER - for locking several inodes at the some time
476 * with xfs_lock_inodes(). This flag is used as the starting subclass
477 * and each subsequent lock acquired will increment the subclass by one.
478 * However, MAX_LOCKDEP_SUBCLASSES == 8, which means we are greatly
479 * limited to the subclasses we can represent via nesting. We need at least
480 * 5 inodes nest depth for the ILOCK through rename, and we also have to support
481 * XFS_ILOCK_PARENT, which gives 6 subclasses. That's 6 of the 8 subclasses
482 * supported by lockdep.
483 *
484 * This also means we have to number the sub-classes in the lowest bits of
485 * the mask we keep, and we have to ensure we never exceed 3 bits of lockdep
486 * mask and we can't use bit-masking to build the subclasses. What a mess.
487 *
488 * Bit layout:
489 *
490 * Bit Lock Region
491 * 16-19 XFS_IOLOCK_SHIFT dependencies
492 * 20-23 XFS_MMAPLOCK_SHIFT dependencies
493 * 24-31 XFS_ILOCK_SHIFT dependencies
494 *
495 * IOLOCK values
496 *
497 * 0-3 subclass value
498 * 4-7 unused
499 *
500 * MMAPLOCK values
501 *
502 * 0-3 subclass value
503 * 4-7 unused
504 *
505 * ILOCK values
506 * 0-4 subclass values
507 * 5 PARENT subclass (not nestable)
508 * 6 unused
509 * 7 unused
510 *
511 */
512 #define XFS_IOLOCK_SHIFT 16
513 #define XFS_IOLOCK_MAX_SUBCLASS 3
514 #define XFS_IOLOCK_DEP_MASK 0x000f0000u
515
516 #define XFS_MMAPLOCK_SHIFT 20
517 #define XFS_MMAPLOCK_NUMORDER 0
518 #define XFS_MMAPLOCK_MAX_SUBCLASS 3
519 #define XFS_MMAPLOCK_DEP_MASK 0x00f00000u
520
521 #define XFS_ILOCK_SHIFT 24
522 #define XFS_ILOCK_PARENT_VAL 5u
523 #define XFS_ILOCK_MAX_SUBCLASS (XFS_ILOCK_PARENT_VAL - 1)
524 #define XFS_ILOCK_DEP_MASK 0xff000000u
525 #define XFS_ILOCK_PARENT (XFS_ILOCK_PARENT_VAL << XFS_ILOCK_SHIFT)
526
527 #define XFS_LOCK_SUBCLASS_MASK (XFS_IOLOCK_DEP_MASK | \
528 XFS_MMAPLOCK_DEP_MASK | \
529 XFS_ILOCK_DEP_MASK)
530
531 #define XFS_IOLOCK_DEP(flags) (((flags) & XFS_IOLOCK_DEP_MASK) \
532 >> XFS_IOLOCK_SHIFT)
533 #define XFS_MMAPLOCK_DEP(flags) (((flags) & XFS_MMAPLOCK_DEP_MASK) \
534 >> XFS_MMAPLOCK_SHIFT)
535 #define XFS_ILOCK_DEP(flags) (((flags) & XFS_ILOCK_DEP_MASK) \
536 >> XFS_ILOCK_SHIFT)
537
538 /*
539 * Layouts are broken in the BREAK_WRITE case to ensure that
540 * layout-holders do not collide with local writes. Additionally,
541 * layouts are broken in the BREAK_UNMAP case to make sure the
542 * layout-holder has a consistent view of the file's extent map. While
543 * BREAK_WRITE breaks can be satisfied by recalling FL_LAYOUT leases,
544 * BREAK_UNMAP breaks additionally require waiting for busy dax-pages to
545 * go idle.
546 */
547 enum layout_break_reason {
548 BREAK_WRITE,
549 BREAK_UNMAP,
550 };
551
552 /*
553 * For multiple groups support: if S_ISGID bit is set in the parent
554 * directory, group of new file is set to that of the parent, and
555 * new subdirectory gets S_ISGID bit from parent.
556 */
557 #define XFS_INHERIT_GID(pip) \
558 (xfs_has_grpid((pip)->i_mount) || (VFS_I(pip)->i_mode & S_ISGID))
559
560 int xfs_inactive(struct xfs_inode *ip);
561 int xfs_lookup(struct xfs_inode *dp, const struct xfs_name *name,
562 struct xfs_inode **ipp, struct xfs_name *ci_name);
563 int xfs_create(const struct xfs_icreate_args *iargs,
564 struct xfs_name *name, struct xfs_inode **ipp);
565 int xfs_create_tmpfile(const struct xfs_icreate_args *iargs,
566 struct xfs_inode **ipp);
567 int xfs_remove(struct xfs_inode *dp, struct xfs_name *name,
568 struct xfs_inode *ip);
569 int xfs_link(struct xfs_inode *tdp, struct xfs_inode *sip,
570 struct xfs_name *target_name);
571 int xfs_rename(struct mnt_idmap *idmap,
572 struct xfs_inode *src_dp, struct xfs_name *src_name,
573 struct xfs_inode *src_ip, struct xfs_inode *target_dp,
574 struct xfs_name *target_name,
575 struct xfs_inode *target_ip, unsigned int flags);
576
577 void xfs_ilock(xfs_inode_t *, uint);
578 int xfs_ilock_nowait(xfs_inode_t *, uint);
579 void xfs_iunlock(xfs_inode_t *, uint);
580 void xfs_ilock_demote(xfs_inode_t *, uint);
581 void xfs_assert_ilocked(struct xfs_inode *, uint);
582 uint xfs_ilock_data_map_shared(struct xfs_inode *);
583 uint xfs_ilock_attr_map_shared(struct xfs_inode *);
584
585 int xfs_ifree(struct xfs_trans *, struct xfs_inode *);
586 int xfs_itruncate_extents_flags(struct xfs_trans **,
587 struct xfs_inode *, int, xfs_fsize_t, int);
588
589 int xfs_log_force_inode(struct xfs_inode *ip);
590 void xfs_iunpin_wait(xfs_inode_t *);
591 #define xfs_ipincount(ip) ((unsigned int) atomic_read(&ip->i_pincount))
592
593 int xfs_iflush_cluster(struct xfs_buf *);
594 void xfs_lock_two_inodes(struct xfs_inode *ip0, uint ip0_mode,
595 struct xfs_inode *ip1, uint ip1_mode);
596
597 int xfs_icreate(struct xfs_trans *tp, xfs_ino_t ino,
598 const struct xfs_icreate_args *args, struct xfs_inode **ipp);
599
600 static inline int
xfs_itruncate_extents(struct xfs_trans ** tpp,struct xfs_inode * ip,int whichfork,xfs_fsize_t new_size)601 xfs_itruncate_extents(
602 struct xfs_trans **tpp,
603 struct xfs_inode *ip,
604 int whichfork,
605 xfs_fsize_t new_size)
606 {
607 return xfs_itruncate_extents_flags(tpp, ip, whichfork, new_size, 0);
608 }
609
610 int xfs_break_dax_layouts(struct inode *inode);
611 int xfs_break_layouts(struct inode *inode, uint *iolock,
612 enum layout_break_reason reason);
613
xfs_update_stable_writes(struct xfs_inode * ip)614 static inline void xfs_update_stable_writes(struct xfs_inode *ip)
615 {
616 if (bdev_stable_writes(xfs_inode_buftarg(ip)->bt_bdev))
617 mapping_set_stable_writes(VFS_I(ip)->i_mapping);
618 else
619 mapping_clear_stable_writes(VFS_I(ip)->i_mapping);
620 }
621
622 /*
623 * When setting up a newly allocated inode, we need to call
624 * xfs_finish_inode_setup() once the inode is fully instantiated at
625 * the VFS level to prevent the rest of the world seeing the inode
626 * before we've completed instantiation. Otherwise we can do it
627 * the moment the inode lookup is complete.
628 */
xfs_finish_inode_setup(struct xfs_inode * ip)629 static inline void xfs_finish_inode_setup(struct xfs_inode *ip)
630 {
631 xfs_iflags_clear(ip, XFS_INEW);
632 barrier();
633 unlock_new_inode(VFS_I(ip));
634 }
635
636 void xfs_irele(struct xfs_inode *ip);
637
638 extern struct kmem_cache *xfs_inode_cache;
639
640 /* The default CoW extent size hint. */
641 #define XFS_DEFAULT_COWEXTSZ_HINT 32
642
643 bool xfs_inode_needs_inactive(struct xfs_inode *ip);
644
645 struct xfs_inode *xfs_iunlink_lookup(struct xfs_perag *pag, xfs_agino_t agino);
646 int xfs_iunlink_reload_next(struct xfs_trans *tp, struct xfs_buf *agibp,
647 xfs_agino_t prev_agino, xfs_agino_t next_agino);
648
649 void xfs_end_io(struct work_struct *work);
650
651 int xfs_ilock2_io_mmap(struct xfs_inode *ip1, struct xfs_inode *ip2);
652 void xfs_iunlock2_io_mmap(struct xfs_inode *ip1, struct xfs_inode *ip2);
653 void xfs_iunlock2_remapping(struct xfs_inode *ip1, struct xfs_inode *ip2);
654 void xfs_lock_inodes(struct xfs_inode **ips, int inodes, uint lock_mode);
655 void xfs_sort_inodes(struct xfs_inode **i_tab, unsigned int num_inodes);
656
657 static inline bool
xfs_inode_unlinked_incomplete(const struct xfs_inode * ip)658 xfs_inode_unlinked_incomplete(
659 const struct xfs_inode *ip)
660 {
661 return VFS_IC(ip)->i_nlink == 0 && !xfs_inode_on_unlinked_list(ip);
662 }
663 int xfs_inode_reload_unlinked_bucket(struct xfs_trans *tp, struct xfs_inode *ip);
664 int xfs_inode_reload_unlinked(struct xfs_inode *ip);
665
666 bool xfs_ifork_zapped(const struct xfs_inode *ip, int whichfork);
667 void xfs_inode_count_blocks(struct xfs_trans *tp, struct xfs_inode *ip,
668 xfs_filblks_t *dblocks, xfs_filblks_t *rblocks);
669 unsigned int xfs_inode_alloc_unitsize(struct xfs_inode *ip);
670
671 int xfs_icreate_dqalloc(const struct xfs_icreate_args *args,
672 struct xfs_dquot **udqpp, struct xfs_dquot **gdqpp,
673 struct xfs_dquot **pdqpp);
674
675 #endif /* __XFS_INODE_H__ */
676