xfs: constify the name argument to various directory functions
[linux-block.git] / fs / xfs / xfs_inode.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (c) 2000-2006 Silicon Graphics, Inc.
4  * All Rights Reserved.
5  */
6 #include <linux/iversion.h>
7
8 #include "xfs.h"
9 #include "xfs_fs.h"
10 #include "xfs_shared.h"
11 #include "xfs_format.h"
12 #include "xfs_log_format.h"
13 #include "xfs_trans_resv.h"
14 #include "xfs_mount.h"
15 #include "xfs_defer.h"
16 #include "xfs_inode.h"
17 #include "xfs_dir2.h"
18 #include "xfs_attr.h"
19 #include "xfs_trans_space.h"
20 #include "xfs_trans.h"
21 #include "xfs_buf_item.h"
22 #include "xfs_inode_item.h"
23 #include "xfs_ialloc.h"
24 #include "xfs_bmap.h"
25 #include "xfs_bmap_util.h"
26 #include "xfs_errortag.h"
27 #include "xfs_error.h"
28 #include "xfs_quota.h"
29 #include "xfs_filestream.h"
30 #include "xfs_trace.h"
31 #include "xfs_icache.h"
32 #include "xfs_symlink.h"
33 #include "xfs_trans_priv.h"
34 #include "xfs_log.h"
35 #include "xfs_bmap_btree.h"
36 #include "xfs_reflink.h"
37 #include "xfs_ag.h"
38
39 struct kmem_cache *xfs_inode_cache;
40
41 /*
42  * Used in xfs_itruncate_extents().  This is the maximum number of extents
43  * freed from a file in a single transaction.
44  */
45 #define XFS_ITRUNC_MAX_EXTENTS  2
46
47 STATIC int xfs_iunlink(struct xfs_trans *, struct xfs_inode *);
48 STATIC int xfs_iunlink_remove(struct xfs_trans *tp, struct xfs_perag *pag,
49         struct xfs_inode *);
50
51 /*
52  * helper function to extract extent size hint from inode
53  */
54 xfs_extlen_t
55 xfs_get_extsz_hint(
56         struct xfs_inode        *ip)
57 {
58         /*
59          * No point in aligning allocations if we need to COW to actually
60          * write to them.
61          */
62         if (xfs_is_always_cow_inode(ip))
63                 return 0;
64         if ((ip->i_diflags & XFS_DIFLAG_EXTSIZE) && ip->i_extsize)
65                 return ip->i_extsize;
66         if (XFS_IS_REALTIME_INODE(ip))
67                 return ip->i_mount->m_sb.sb_rextsize;
68         return 0;
69 }
70
71 /*
72  * Helper function to extract CoW extent size hint from inode.
73  * Between the extent size hint and the CoW extent size hint, we
74  * return the greater of the two.  If the value is zero (automatic),
75  * use the default size.
76  */
77 xfs_extlen_t
78 xfs_get_cowextsz_hint(
79         struct xfs_inode        *ip)
80 {
81         xfs_extlen_t            a, b;
82
83         a = 0;
84         if (ip->i_diflags2 & XFS_DIFLAG2_COWEXTSIZE)
85                 a = ip->i_cowextsize;
86         b = xfs_get_extsz_hint(ip);
87
88         a = max(a, b);
89         if (a == 0)
90                 return XFS_DEFAULT_COWEXTSZ_HINT;
91         return a;
92 }
93
94 /*
95  * These two are wrapper routines around the xfs_ilock() routine used to
96  * centralize some grungy code.  They are used in places that wish to lock the
97  * inode solely for reading the extents.  The reason these places can't just
98  * call xfs_ilock(ip, XFS_ILOCK_SHARED) is that the inode lock also guards to
99  * bringing in of the extents from disk for a file in b-tree format.  If the
100  * inode is in b-tree format, then we need to lock the inode exclusively until
101  * the extents are read in.  Locking it exclusively all the time would limit
102  * our parallelism unnecessarily, though.  What we do instead is check to see
103  * if the extents have been read in yet, and only lock the inode exclusively
104  * if they have not.
105  *
106  * The functions return a value which should be given to the corresponding
107  * xfs_iunlock() call.
108  */
109 uint
110 xfs_ilock_data_map_shared(
111         struct xfs_inode        *ip)
112 {
113         uint                    lock_mode = XFS_ILOCK_SHARED;
114
115         if (xfs_need_iread_extents(&ip->i_df))
116                 lock_mode = XFS_ILOCK_EXCL;
117         xfs_ilock(ip, lock_mode);
118         return lock_mode;
119 }
120
121 uint
122 xfs_ilock_attr_map_shared(
123         struct xfs_inode        *ip)
124 {
125         uint                    lock_mode = XFS_ILOCK_SHARED;
126
127         if (ip->i_afp && xfs_need_iread_extents(ip->i_afp))
128                 lock_mode = XFS_ILOCK_EXCL;
129         xfs_ilock(ip, lock_mode);
130         return lock_mode;
131 }
132
133 /*
134  * In addition to i_rwsem in the VFS inode, the xfs inode contains 2
135  * multi-reader locks: invalidate_lock and the i_lock.  This routine allows
136  * various combinations of the locks to be obtained.
137  *
138  * The 3 locks should always be ordered so that the IO lock is obtained first,
139  * the mmap lock second and the ilock last in order to prevent deadlock.
140  *
141  * Basic locking order:
142  *
143  * i_rwsem -> invalidate_lock -> page_lock -> i_ilock
144  *
145  * mmap_lock locking order:
146  *
147  * i_rwsem -> page lock -> mmap_lock
148  * mmap_lock -> invalidate_lock -> page_lock
149  *
150  * The difference in mmap_lock locking order mean that we cannot hold the
151  * invalidate_lock over syscall based read(2)/write(2) based IO. These IO paths
152  * can fault in pages during copy in/out (for buffered IO) or require the
153  * mmap_lock in get_user_pages() to map the user pages into the kernel address
154  * space for direct IO. Similarly the i_rwsem cannot be taken inside a page
155  * fault because page faults already hold the mmap_lock.
156  *
157  * Hence to serialise fully against both syscall and mmap based IO, we need to
158  * take both the i_rwsem and the invalidate_lock. These locks should *only* be
159  * both taken in places where we need to invalidate the page cache in a race
160  * free manner (e.g. truncate, hole punch and other extent manipulation
161  * functions).
162  */
163 void
164 xfs_ilock(
165         xfs_inode_t             *ip,
166         uint                    lock_flags)
167 {
168         trace_xfs_ilock(ip, lock_flags, _RET_IP_);
169
170         /*
171          * You can't set both SHARED and EXCL for the same lock,
172          * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
173          * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
174          */
175         ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
176                (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
177         ASSERT((lock_flags & (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)) !=
178                (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL));
179         ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
180                (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
181         ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_SUBCLASS_MASK)) == 0);
182
183         if (lock_flags & XFS_IOLOCK_EXCL) {
184                 down_write_nested(&VFS_I(ip)->i_rwsem,
185                                   XFS_IOLOCK_DEP(lock_flags));
186         } else if (lock_flags & XFS_IOLOCK_SHARED) {
187                 down_read_nested(&VFS_I(ip)->i_rwsem,
188                                  XFS_IOLOCK_DEP(lock_flags));
189         }
190
191         if (lock_flags & XFS_MMAPLOCK_EXCL) {
192                 down_write_nested(&VFS_I(ip)->i_mapping->invalidate_lock,
193                                   XFS_MMAPLOCK_DEP(lock_flags));
194         } else if (lock_flags & XFS_MMAPLOCK_SHARED) {
195                 down_read_nested(&VFS_I(ip)->i_mapping->invalidate_lock,
196                                  XFS_MMAPLOCK_DEP(lock_flags));
197         }
198
199         if (lock_flags & XFS_ILOCK_EXCL)
200                 mrupdate_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
201         else if (lock_flags & XFS_ILOCK_SHARED)
202                 mraccess_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
203 }
204
205 /*
206  * This is just like xfs_ilock(), except that the caller
207  * is guaranteed not to sleep.  It returns 1 if it gets
208  * the requested locks and 0 otherwise.  If the IO lock is
209  * obtained but the inode lock cannot be, then the IO lock
210  * is dropped before returning.
211  *
212  * ip -- the inode being locked
213  * lock_flags -- this parameter indicates the inode's locks to be
214  *       to be locked.  See the comment for xfs_ilock() for a list
215  *       of valid values.
216  */
217 int
218 xfs_ilock_nowait(
219         xfs_inode_t             *ip,
220         uint                    lock_flags)
221 {
222         trace_xfs_ilock_nowait(ip, lock_flags, _RET_IP_);
223
224         /*
225          * You can't set both SHARED and EXCL for the same lock,
226          * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
227          * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
228          */
229         ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
230                (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
231         ASSERT((lock_flags & (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)) !=
232                (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL));
233         ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
234                (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
235         ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_SUBCLASS_MASK)) == 0);
236
237         if (lock_flags & XFS_IOLOCK_EXCL) {
238                 if (!down_write_trylock(&VFS_I(ip)->i_rwsem))
239                         goto out;
240         } else if (lock_flags & XFS_IOLOCK_SHARED) {
241                 if (!down_read_trylock(&VFS_I(ip)->i_rwsem))
242                         goto out;
243         }
244
245         if (lock_flags & XFS_MMAPLOCK_EXCL) {
246                 if (!down_write_trylock(&VFS_I(ip)->i_mapping->invalidate_lock))
247                         goto out_undo_iolock;
248         } else if (lock_flags & XFS_MMAPLOCK_SHARED) {
249                 if (!down_read_trylock(&VFS_I(ip)->i_mapping->invalidate_lock))
250                         goto out_undo_iolock;
251         }
252
253         if (lock_flags & XFS_ILOCK_EXCL) {
254                 if (!mrtryupdate(&ip->i_lock))
255                         goto out_undo_mmaplock;
256         } else if (lock_flags & XFS_ILOCK_SHARED) {
257                 if (!mrtryaccess(&ip->i_lock))
258                         goto out_undo_mmaplock;
259         }
260         return 1;
261
262 out_undo_mmaplock:
263         if (lock_flags & XFS_MMAPLOCK_EXCL)
264                 up_write(&VFS_I(ip)->i_mapping->invalidate_lock);
265         else if (lock_flags & XFS_MMAPLOCK_SHARED)
266                 up_read(&VFS_I(ip)->i_mapping->invalidate_lock);
267 out_undo_iolock:
268         if (lock_flags & XFS_IOLOCK_EXCL)
269                 up_write(&VFS_I(ip)->i_rwsem);
270         else if (lock_flags & XFS_IOLOCK_SHARED)
271                 up_read(&VFS_I(ip)->i_rwsem);
272 out:
273         return 0;
274 }
275
276 /*
277  * xfs_iunlock() is used to drop the inode locks acquired with
278  * xfs_ilock() and xfs_ilock_nowait().  The caller must pass
279  * in the flags given to xfs_ilock() or xfs_ilock_nowait() so
280  * that we know which locks to drop.
281  *
282  * ip -- the inode being unlocked
283  * lock_flags -- this parameter indicates the inode's locks to be
284  *       to be unlocked.  See the comment for xfs_ilock() for a list
285  *       of valid values for this parameter.
286  *
287  */
288 void
289 xfs_iunlock(
290         xfs_inode_t             *ip,
291         uint                    lock_flags)
292 {
293         /*
294          * You can't set both SHARED and EXCL for the same lock,
295          * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
296          * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
297          */
298         ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
299                (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
300         ASSERT((lock_flags & (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)) !=
301                (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL));
302         ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
303                (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
304         ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_SUBCLASS_MASK)) == 0);
305         ASSERT(lock_flags != 0);
306
307         if (lock_flags & XFS_IOLOCK_EXCL)
308                 up_write(&VFS_I(ip)->i_rwsem);
309         else if (lock_flags & XFS_IOLOCK_SHARED)
310                 up_read(&VFS_I(ip)->i_rwsem);
311
312         if (lock_flags & XFS_MMAPLOCK_EXCL)
313                 up_write(&VFS_I(ip)->i_mapping->invalidate_lock);
314         else if (lock_flags & XFS_MMAPLOCK_SHARED)
315                 up_read(&VFS_I(ip)->i_mapping->invalidate_lock);
316
317         if (lock_flags & XFS_ILOCK_EXCL)
318                 mrunlock_excl(&ip->i_lock);
319         else if (lock_flags & XFS_ILOCK_SHARED)
320                 mrunlock_shared(&ip->i_lock);
321
322         trace_xfs_iunlock(ip, lock_flags, _RET_IP_);
323 }
324
325 /*
326  * give up write locks.  the i/o lock cannot be held nested
327  * if it is being demoted.
328  */
329 void
330 xfs_ilock_demote(
331         xfs_inode_t             *ip,
332         uint                    lock_flags)
333 {
334         ASSERT(lock_flags & (XFS_IOLOCK_EXCL|XFS_MMAPLOCK_EXCL|XFS_ILOCK_EXCL));
335         ASSERT((lock_flags &
336                 ~(XFS_IOLOCK_EXCL|XFS_MMAPLOCK_EXCL|XFS_ILOCK_EXCL)) == 0);
337
338         if (lock_flags & XFS_ILOCK_EXCL)
339                 mrdemote(&ip->i_lock);
340         if (lock_flags & XFS_MMAPLOCK_EXCL)
341                 downgrade_write(&VFS_I(ip)->i_mapping->invalidate_lock);
342         if (lock_flags & XFS_IOLOCK_EXCL)
343                 downgrade_write(&VFS_I(ip)->i_rwsem);
344
345         trace_xfs_ilock_demote(ip, lock_flags, _RET_IP_);
346 }
347
348 #if defined(DEBUG) || defined(XFS_WARN)
349 static inline bool
350 __xfs_rwsem_islocked(
351         struct rw_semaphore     *rwsem,
352         bool                    shared)
353 {
354         if (!debug_locks)
355                 return rwsem_is_locked(rwsem);
356
357         if (!shared)
358                 return lockdep_is_held_type(rwsem, 0);
359
360         /*
361          * We are checking that the lock is held at least in shared
362          * mode but don't care that it might be held exclusively
363          * (i.e. shared | excl). Hence we check if the lock is held
364          * in any mode rather than an explicit shared mode.
365          */
366         return lockdep_is_held_type(rwsem, -1);
367 }
368
369 bool
370 xfs_isilocked(
371         struct xfs_inode        *ip,
372         uint                    lock_flags)
373 {
374         if (lock_flags & (XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)) {
375                 if (!(lock_flags & XFS_ILOCK_SHARED))
376                         return !!ip->i_lock.mr_writer;
377                 return rwsem_is_locked(&ip->i_lock.mr_lock);
378         }
379
380         if (lock_flags & (XFS_MMAPLOCK_EXCL|XFS_MMAPLOCK_SHARED)) {
381                 return __xfs_rwsem_islocked(&VFS_I(ip)->i_rwsem,
382                                 (lock_flags & XFS_IOLOCK_SHARED));
383         }
384
385         if (lock_flags & (XFS_IOLOCK_EXCL | XFS_IOLOCK_SHARED)) {
386                 return __xfs_rwsem_islocked(&VFS_I(ip)->i_rwsem,
387                                 (lock_flags & XFS_IOLOCK_SHARED));
388         }
389
390         ASSERT(0);
391         return false;
392 }
393 #endif
394
395 /*
396  * xfs_lockdep_subclass_ok() is only used in an ASSERT, so is only called when
397  * DEBUG or XFS_WARN is set. And MAX_LOCKDEP_SUBCLASSES is then only defined
398  * when CONFIG_LOCKDEP is set. Hence the complex define below to avoid build
399  * errors and warnings.
400  */
401 #if (defined(DEBUG) || defined(XFS_WARN)) && defined(CONFIG_LOCKDEP)
402 static bool
403 xfs_lockdep_subclass_ok(
404         int subclass)
405 {
406         return subclass < MAX_LOCKDEP_SUBCLASSES;
407 }
408 #else
409 #define xfs_lockdep_subclass_ok(subclass)       (true)
410 #endif
411
412 /*
413  * Bump the subclass so xfs_lock_inodes() acquires each lock with a different
414  * value. This can be called for any type of inode lock combination, including
415  * parent locking. Care must be taken to ensure we don't overrun the subclass
416  * storage fields in the class mask we build.
417  */
418 static inline int
419 xfs_lock_inumorder(int lock_mode, int subclass)
420 {
421         int     class = 0;
422
423         ASSERT(!(lock_mode & (XFS_ILOCK_PARENT | XFS_ILOCK_RTBITMAP |
424                               XFS_ILOCK_RTSUM)));
425         ASSERT(xfs_lockdep_subclass_ok(subclass));
426
427         if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL)) {
428                 ASSERT(subclass <= XFS_IOLOCK_MAX_SUBCLASS);
429                 class += subclass << XFS_IOLOCK_SHIFT;
430         }
431
432         if (lock_mode & (XFS_MMAPLOCK_SHARED|XFS_MMAPLOCK_EXCL)) {
433                 ASSERT(subclass <= XFS_MMAPLOCK_MAX_SUBCLASS);
434                 class += subclass << XFS_MMAPLOCK_SHIFT;
435         }
436
437         if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) {
438                 ASSERT(subclass <= XFS_ILOCK_MAX_SUBCLASS);
439                 class += subclass << XFS_ILOCK_SHIFT;
440         }
441
442         return (lock_mode & ~XFS_LOCK_SUBCLASS_MASK) | class;
443 }
444
445 /*
446  * The following routine will lock n inodes in exclusive mode.  We assume the
447  * caller calls us with the inodes in i_ino order.
448  *
449  * We need to detect deadlock where an inode that we lock is in the AIL and we
450  * start waiting for another inode that is locked by a thread in a long running
451  * transaction (such as truncate). This can result in deadlock since the long
452  * running trans might need to wait for the inode we just locked in order to
453  * push the tail and free space in the log.
454  *
455  * xfs_lock_inodes() can only be used to lock one type of lock at a time -
456  * the iolock, the mmaplock or the ilock, but not more than one at a time. If we
457  * lock more than one at a time, lockdep will report false positives saying we
458  * have violated locking orders.
459  */
460 static void
461 xfs_lock_inodes(
462         struct xfs_inode        **ips,
463         int                     inodes,
464         uint                    lock_mode)
465 {
466         int                     attempts = 0, i, j, try_lock;
467         struct xfs_log_item     *lp;
468
469         /*
470          * Currently supports between 2 and 5 inodes with exclusive locking.  We
471          * support an arbitrary depth of locking here, but absolute limits on
472          * inodes depend on the type of locking and the limits placed by
473          * lockdep annotations in xfs_lock_inumorder.  These are all checked by
474          * the asserts.
475          */
476         ASSERT(ips && inodes >= 2 && inodes <= 5);
477         ASSERT(lock_mode & (XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL |
478                             XFS_ILOCK_EXCL));
479         ASSERT(!(lock_mode & (XFS_IOLOCK_SHARED | XFS_MMAPLOCK_SHARED |
480                               XFS_ILOCK_SHARED)));
481         ASSERT(!(lock_mode & XFS_MMAPLOCK_EXCL) ||
482                 inodes <= XFS_MMAPLOCK_MAX_SUBCLASS + 1);
483         ASSERT(!(lock_mode & XFS_ILOCK_EXCL) ||
484                 inodes <= XFS_ILOCK_MAX_SUBCLASS + 1);
485
486         if (lock_mode & XFS_IOLOCK_EXCL) {
487                 ASSERT(!(lock_mode & (XFS_MMAPLOCK_EXCL | XFS_ILOCK_EXCL)));
488         } else if (lock_mode & XFS_MMAPLOCK_EXCL)
489                 ASSERT(!(lock_mode & XFS_ILOCK_EXCL));
490
491         try_lock = 0;
492         i = 0;
493 again:
494         for (; i < inodes; i++) {
495                 ASSERT(ips[i]);
496
497                 if (i && (ips[i] == ips[i - 1]))        /* Already locked */
498                         continue;
499
500                 /*
501                  * If try_lock is not set yet, make sure all locked inodes are
502                  * not in the AIL.  If any are, set try_lock to be used later.
503                  */
504                 if (!try_lock) {
505                         for (j = (i - 1); j >= 0 && !try_lock; j--) {
506                                 lp = &ips[j]->i_itemp->ili_item;
507                                 if (lp && test_bit(XFS_LI_IN_AIL, &lp->li_flags))
508                                         try_lock++;
509                         }
510                 }
511
512                 /*
513                  * If any of the previous locks we have locked is in the AIL,
514                  * we must TRY to get the second and subsequent locks. If
515                  * we can't get any, we must release all we have
516                  * and try again.
517                  */
518                 if (!try_lock) {
519                         xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
520                         continue;
521                 }
522
523                 /* try_lock means we have an inode locked that is in the AIL. */
524                 ASSERT(i != 0);
525                 if (xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i)))
526                         continue;
527
528                 /*
529                  * Unlock all previous guys and try again.  xfs_iunlock will try
530                  * to push the tail if the inode is in the AIL.
531                  */
532                 attempts++;
533                 for (j = i - 1; j >= 0; j--) {
534                         /*
535                          * Check to see if we've already unlocked this one.  Not
536                          * the first one going back, and the inode ptr is the
537                          * same.
538                          */
539                         if (j != (i - 1) && ips[j] == ips[j + 1])
540                                 continue;
541
542                         xfs_iunlock(ips[j], lock_mode);
543                 }
544
545                 if ((attempts % 5) == 0) {
546                         delay(1); /* Don't just spin the CPU */
547                 }
548                 i = 0;
549                 try_lock = 0;
550                 goto again;
551         }
552 }
553
554 /*
555  * xfs_lock_two_inodes() can only be used to lock ilock. The iolock and
556  * mmaplock must be double-locked separately since we use i_rwsem and
557  * invalidate_lock for that. We now support taking one lock EXCL and the
558  * other SHARED.
559  */
560 void
561 xfs_lock_two_inodes(
562         struct xfs_inode        *ip0,
563         uint                    ip0_mode,
564         struct xfs_inode        *ip1,
565         uint                    ip1_mode)
566 {
567         int                     attempts = 0;
568         struct xfs_log_item     *lp;
569
570         ASSERT(hweight32(ip0_mode) == 1);
571         ASSERT(hweight32(ip1_mode) == 1);
572         ASSERT(!(ip0_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL)));
573         ASSERT(!(ip1_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL)));
574         ASSERT(!(ip0_mode & (XFS_MMAPLOCK_SHARED|XFS_MMAPLOCK_EXCL)));
575         ASSERT(!(ip1_mode & (XFS_MMAPLOCK_SHARED|XFS_MMAPLOCK_EXCL)));
576         ASSERT(ip0->i_ino != ip1->i_ino);
577
578         if (ip0->i_ino > ip1->i_ino) {
579                 swap(ip0, ip1);
580                 swap(ip0_mode, ip1_mode);
581         }
582
583  again:
584         xfs_ilock(ip0, xfs_lock_inumorder(ip0_mode, 0));
585
586         /*
587          * If the first lock we have locked is in the AIL, we must TRY to get
588          * the second lock. If we can't get it, we must release the first one
589          * and try again.
590          */
591         lp = &ip0->i_itemp->ili_item;
592         if (lp && test_bit(XFS_LI_IN_AIL, &lp->li_flags)) {
593                 if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(ip1_mode, 1))) {
594                         xfs_iunlock(ip0, ip0_mode);
595                         if ((++attempts % 5) == 0)
596                                 delay(1); /* Don't just spin the CPU */
597                         goto again;
598                 }
599         } else {
600                 xfs_ilock(ip1, xfs_lock_inumorder(ip1_mode, 1));
601         }
602 }
603
604 uint
605 xfs_ip2xflags(
606         struct xfs_inode        *ip)
607 {
608         uint                    flags = 0;
609
610         if (ip->i_diflags & XFS_DIFLAG_ANY) {
611                 if (ip->i_diflags & XFS_DIFLAG_REALTIME)
612                         flags |= FS_XFLAG_REALTIME;
613                 if (ip->i_diflags & XFS_DIFLAG_PREALLOC)
614                         flags |= FS_XFLAG_PREALLOC;
615                 if (ip->i_diflags & XFS_DIFLAG_IMMUTABLE)
616                         flags |= FS_XFLAG_IMMUTABLE;
617                 if (ip->i_diflags & XFS_DIFLAG_APPEND)
618                         flags |= FS_XFLAG_APPEND;
619                 if (ip->i_diflags & XFS_DIFLAG_SYNC)
620                         flags |= FS_XFLAG_SYNC;
621                 if (ip->i_diflags & XFS_DIFLAG_NOATIME)
622                         flags |= FS_XFLAG_NOATIME;
623                 if (ip->i_diflags & XFS_DIFLAG_NODUMP)
624                         flags |= FS_XFLAG_NODUMP;
625                 if (ip->i_diflags & XFS_DIFLAG_RTINHERIT)
626                         flags |= FS_XFLAG_RTINHERIT;
627                 if (ip->i_diflags & XFS_DIFLAG_PROJINHERIT)
628                         flags |= FS_XFLAG_PROJINHERIT;
629                 if (ip->i_diflags & XFS_DIFLAG_NOSYMLINKS)
630                         flags |= FS_XFLAG_NOSYMLINKS;
631                 if (ip->i_diflags & XFS_DIFLAG_EXTSIZE)
632                         flags |= FS_XFLAG_EXTSIZE;
633                 if (ip->i_diflags & XFS_DIFLAG_EXTSZINHERIT)
634                         flags |= FS_XFLAG_EXTSZINHERIT;
635                 if (ip->i_diflags & XFS_DIFLAG_NODEFRAG)
636                         flags |= FS_XFLAG_NODEFRAG;
637                 if (ip->i_diflags & XFS_DIFLAG_FILESTREAM)
638                         flags |= FS_XFLAG_FILESTREAM;
639         }
640
641         if (ip->i_diflags2 & XFS_DIFLAG2_ANY) {
642                 if (ip->i_diflags2 & XFS_DIFLAG2_DAX)
643                         flags |= FS_XFLAG_DAX;
644                 if (ip->i_diflags2 & XFS_DIFLAG2_COWEXTSIZE)
645                         flags |= FS_XFLAG_COWEXTSIZE;
646         }
647
648         if (XFS_IFORK_Q(ip))
649                 flags |= FS_XFLAG_HASATTR;
650         return flags;
651 }
652
653 /*
654  * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
655  * is allowed, otherwise it has to be an exact match. If a CI match is found,
656  * ci_name->name will point to a the actual name (caller must free) or
657  * will be set to NULL if an exact match is found.
658  */
659 int
660 xfs_lookup(
661         struct xfs_inode        *dp,
662         const struct xfs_name   *name,
663         struct xfs_inode        **ipp,
664         struct xfs_name         *ci_name)
665 {
666         xfs_ino_t               inum;
667         int                     error;
668
669         trace_xfs_lookup(dp, name);
670
671         if (xfs_is_shutdown(dp->i_mount))
672                 return -EIO;
673
674         error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
675         if (error)
676                 goto out_unlock;
677
678         error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp);
679         if (error)
680                 goto out_free_name;
681
682         return 0;
683
684 out_free_name:
685         if (ci_name)
686                 kmem_free(ci_name->name);
687 out_unlock:
688         *ipp = NULL;
689         return error;
690 }
691
692 /* Propagate di_flags from a parent inode to a child inode. */
693 static void
694 xfs_inode_inherit_flags(
695         struct xfs_inode        *ip,
696         const struct xfs_inode  *pip)
697 {
698         unsigned int            di_flags = 0;
699         xfs_failaddr_t          failaddr;
700         umode_t                 mode = VFS_I(ip)->i_mode;
701
702         if (S_ISDIR(mode)) {
703                 if (pip->i_diflags & XFS_DIFLAG_RTINHERIT)
704                         di_flags |= XFS_DIFLAG_RTINHERIT;
705                 if (pip->i_diflags & XFS_DIFLAG_EXTSZINHERIT) {
706                         di_flags |= XFS_DIFLAG_EXTSZINHERIT;
707                         ip->i_extsize = pip->i_extsize;
708                 }
709                 if (pip->i_diflags & XFS_DIFLAG_PROJINHERIT)
710                         di_flags |= XFS_DIFLAG_PROJINHERIT;
711         } else if (S_ISREG(mode)) {
712                 if ((pip->i_diflags & XFS_DIFLAG_RTINHERIT) &&
713                     xfs_has_realtime(ip->i_mount))
714                         di_flags |= XFS_DIFLAG_REALTIME;
715                 if (pip->i_diflags & XFS_DIFLAG_EXTSZINHERIT) {
716                         di_flags |= XFS_DIFLAG_EXTSIZE;
717                         ip->i_extsize = pip->i_extsize;
718                 }
719         }
720         if ((pip->i_diflags & XFS_DIFLAG_NOATIME) &&
721             xfs_inherit_noatime)
722                 di_flags |= XFS_DIFLAG_NOATIME;
723         if ((pip->i_diflags & XFS_DIFLAG_NODUMP) &&
724             xfs_inherit_nodump)
725                 di_flags |= XFS_DIFLAG_NODUMP;
726         if ((pip->i_diflags & XFS_DIFLAG_SYNC) &&
727             xfs_inherit_sync)
728                 di_flags |= XFS_DIFLAG_SYNC;
729         if ((pip->i_diflags & XFS_DIFLAG_NOSYMLINKS) &&
730             xfs_inherit_nosymlinks)
731                 di_flags |= XFS_DIFLAG_NOSYMLINKS;
732         if ((pip->i_diflags & XFS_DIFLAG_NODEFRAG) &&
733             xfs_inherit_nodefrag)
734                 di_flags |= XFS_DIFLAG_NODEFRAG;
735         if (pip->i_diflags & XFS_DIFLAG_FILESTREAM)
736                 di_flags |= XFS_DIFLAG_FILESTREAM;
737
738         ip->i_diflags |= di_flags;
739
740         /*
741          * Inode verifiers on older kernels only check that the extent size
742          * hint is an integer multiple of the rt extent size on realtime files.
743          * They did not check the hint alignment on a directory with both
744          * rtinherit and extszinherit flags set.  If the misaligned hint is
745          * propagated from a directory into a new realtime file, new file
746          * allocations will fail due to math errors in the rt allocator and/or
747          * trip the verifiers.  Validate the hint settings in the new file so
748          * that we don't let broken hints propagate.
749          */
750         failaddr = xfs_inode_validate_extsize(ip->i_mount, ip->i_extsize,
751                         VFS_I(ip)->i_mode, ip->i_diflags);
752         if (failaddr) {
753                 ip->i_diflags &= ~(XFS_DIFLAG_EXTSIZE |
754                                    XFS_DIFLAG_EXTSZINHERIT);
755                 ip->i_extsize = 0;
756         }
757 }
758
759 /* Propagate di_flags2 from a parent inode to a child inode. */
760 static void
761 xfs_inode_inherit_flags2(
762         struct xfs_inode        *ip,
763         const struct xfs_inode  *pip)
764 {
765         xfs_failaddr_t          failaddr;
766
767         if (pip->i_diflags2 & XFS_DIFLAG2_COWEXTSIZE) {
768                 ip->i_diflags2 |= XFS_DIFLAG2_COWEXTSIZE;
769                 ip->i_cowextsize = pip->i_cowextsize;
770         }
771         if (pip->i_diflags2 & XFS_DIFLAG2_DAX)
772                 ip->i_diflags2 |= XFS_DIFLAG2_DAX;
773
774         /* Don't let invalid cowextsize hints propagate. */
775         failaddr = xfs_inode_validate_cowextsize(ip->i_mount, ip->i_cowextsize,
776                         VFS_I(ip)->i_mode, ip->i_diflags, ip->i_diflags2);
777         if (failaddr) {
778                 ip->i_diflags2 &= ~XFS_DIFLAG2_COWEXTSIZE;
779                 ip->i_cowextsize = 0;
780         }
781 }
782
783 /*
784  * Initialise a newly allocated inode and return the in-core inode to the
785  * caller locked exclusively.
786  */
787 int
788 xfs_init_new_inode(
789         struct user_namespace   *mnt_userns,
790         struct xfs_trans        *tp,
791         struct xfs_inode        *pip,
792         xfs_ino_t               ino,
793         umode_t                 mode,
794         xfs_nlink_t             nlink,
795         dev_t                   rdev,
796         prid_t                  prid,
797         bool                    init_xattrs,
798         struct xfs_inode        **ipp)
799 {
800         struct inode            *dir = pip ? VFS_I(pip) : NULL;
801         struct xfs_mount        *mp = tp->t_mountp;
802         struct xfs_inode        *ip;
803         unsigned int            flags;
804         int                     error;
805         struct timespec64       tv;
806         struct inode            *inode;
807
808         /*
809          * Protect against obviously corrupt allocation btree records. Later
810          * xfs_iget checks will catch re-allocation of other active in-memory
811          * and on-disk inodes. If we don't catch reallocating the parent inode
812          * here we will deadlock in xfs_iget() so we have to do these checks
813          * first.
814          */
815         if ((pip && ino == pip->i_ino) || !xfs_verify_dir_ino(mp, ino)) {
816                 xfs_alert(mp, "Allocated a known in-use inode 0x%llx!", ino);
817                 return -EFSCORRUPTED;
818         }
819
820         /*
821          * Get the in-core inode with the lock held exclusively to prevent
822          * others from looking at until we're done.
823          */
824         error = xfs_iget(mp, tp, ino, XFS_IGET_CREATE, XFS_ILOCK_EXCL, &ip);
825         if (error)
826                 return error;
827
828         ASSERT(ip != NULL);
829         inode = VFS_I(ip);
830         set_nlink(inode, nlink);
831         inode->i_rdev = rdev;
832         ip->i_projid = prid;
833
834         if (dir && !(dir->i_mode & S_ISGID) && xfs_has_grpid(mp)) {
835                 inode_fsuid_set(inode, mnt_userns);
836                 inode->i_gid = dir->i_gid;
837                 inode->i_mode = mode;
838         } else {
839                 inode_init_owner(mnt_userns, inode, dir, mode);
840         }
841
842         /*
843          * If the group ID of the new file does not match the effective group
844          * ID or one of the supplementary group IDs, the S_ISGID bit is cleared
845          * (and only if the irix_sgid_inherit compatibility variable is set).
846          */
847         if (irix_sgid_inherit &&
848             (inode->i_mode & S_ISGID) &&
849             !in_group_p(i_gid_into_mnt(mnt_userns, inode)))
850                 inode->i_mode &= ~S_ISGID;
851
852         ip->i_disk_size = 0;
853         ip->i_df.if_nextents = 0;
854         ASSERT(ip->i_nblocks == 0);
855
856         tv = current_time(inode);
857         inode->i_mtime = tv;
858         inode->i_atime = tv;
859         inode->i_ctime = tv;
860
861         ip->i_extsize = 0;
862         ip->i_diflags = 0;
863
864         if (xfs_has_v3inodes(mp)) {
865                 inode_set_iversion(inode, 1);
866                 ip->i_cowextsize = 0;
867                 ip->i_crtime = tv;
868         }
869
870         flags = XFS_ILOG_CORE;
871         switch (mode & S_IFMT) {
872         case S_IFIFO:
873         case S_IFCHR:
874         case S_IFBLK:
875         case S_IFSOCK:
876                 ip->i_df.if_format = XFS_DINODE_FMT_DEV;
877                 flags |= XFS_ILOG_DEV;
878                 break;
879         case S_IFREG:
880         case S_IFDIR:
881                 if (pip && (pip->i_diflags & XFS_DIFLAG_ANY))
882                         xfs_inode_inherit_flags(ip, pip);
883                 if (pip && (pip->i_diflags2 & XFS_DIFLAG2_ANY))
884                         xfs_inode_inherit_flags2(ip, pip);
885                 fallthrough;
886         case S_IFLNK:
887                 ip->i_df.if_format = XFS_DINODE_FMT_EXTENTS;
888                 ip->i_df.if_bytes = 0;
889                 ip->i_df.if_u1.if_root = NULL;
890                 break;
891         default:
892                 ASSERT(0);
893         }
894
895         /*
896          * If we need to create attributes immediately after allocating the
897          * inode, initialise an empty attribute fork right now. We use the
898          * default fork offset for attributes here as we don't know exactly what
899          * size or how many attributes we might be adding. We can do this
900          * safely here because we know the data fork is completely empty and
901          * this saves us from needing to run a separate transaction to set the
902          * fork offset in the immediate future.
903          */
904         if (init_xattrs && xfs_has_attr(mp)) {
905                 ip->i_forkoff = xfs_default_attroffset(ip) >> 3;
906                 ip->i_afp = xfs_ifork_alloc(XFS_DINODE_FMT_EXTENTS, 0);
907         }
908
909         /*
910          * Log the new values stuffed into the inode.
911          */
912         xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
913         xfs_trans_log_inode(tp, ip, flags);
914
915         /* now that we have an i_mode we can setup the inode structure */
916         xfs_setup_inode(ip);
917
918         *ipp = ip;
919         return 0;
920 }
921
922 /*
923  * Decrement the link count on an inode & log the change.  If this causes the
924  * link count to go to zero, move the inode to AGI unlinked list so that it can
925  * be freed when the last active reference goes away via xfs_inactive().
926  */
927 static int                      /* error */
928 xfs_droplink(
929         xfs_trans_t *tp,
930         xfs_inode_t *ip)
931 {
932         xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
933
934         drop_nlink(VFS_I(ip));
935         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
936
937         if (VFS_I(ip)->i_nlink)
938                 return 0;
939
940         return xfs_iunlink(tp, ip);
941 }
942
943 /*
944  * Increment the link count on an inode & log the change.
945  */
946 static void
947 xfs_bumplink(
948         xfs_trans_t *tp,
949         xfs_inode_t *ip)
950 {
951         xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
952
953         inc_nlink(VFS_I(ip));
954         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
955 }
956
957 int
958 xfs_create(
959         struct user_namespace   *mnt_userns,
960         xfs_inode_t             *dp,
961         struct xfs_name         *name,
962         umode_t                 mode,
963         dev_t                   rdev,
964         bool                    init_xattrs,
965         xfs_inode_t             **ipp)
966 {
967         int                     is_dir = S_ISDIR(mode);
968         struct xfs_mount        *mp = dp->i_mount;
969         struct xfs_inode        *ip = NULL;
970         struct xfs_trans        *tp = NULL;
971         int                     error;
972         bool                    unlock_dp_on_error = false;
973         prid_t                  prid;
974         struct xfs_dquot        *udqp = NULL;
975         struct xfs_dquot        *gdqp = NULL;
976         struct xfs_dquot        *pdqp = NULL;
977         struct xfs_trans_res    *tres;
978         uint                    resblks;
979         xfs_ino_t               ino;
980
981         trace_xfs_create(dp, name);
982
983         if (xfs_is_shutdown(mp))
984                 return -EIO;
985
986         prid = xfs_get_initial_prid(dp);
987
988         /*
989          * Make sure that we have allocated dquot(s) on disk.
990          */
991         error = xfs_qm_vop_dqalloc(dp, mapped_fsuid(mnt_userns, &init_user_ns),
992                         mapped_fsgid(mnt_userns, &init_user_ns), prid,
993                         XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT,
994                         &udqp, &gdqp, &pdqp);
995         if (error)
996                 return error;
997
998         if (is_dir) {
999                 resblks = XFS_MKDIR_SPACE_RES(mp, name->len);
1000                 tres = &M_RES(mp)->tr_mkdir;
1001         } else {
1002                 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
1003                 tres = &M_RES(mp)->tr_create;
1004         }
1005
1006         /*
1007          * Initially assume that the file does not exist and
1008          * reserve the resources for that case.  If that is not
1009          * the case we'll drop the one we have and get a more
1010          * appropriate transaction later.
1011          */
1012         error = xfs_trans_alloc_icreate(mp, tres, udqp, gdqp, pdqp, resblks,
1013                         &tp);
1014         if (error == -ENOSPC) {
1015                 /* flush outstanding delalloc blocks and retry */
1016                 xfs_flush_inodes(mp);
1017                 error = xfs_trans_alloc_icreate(mp, tres, udqp, gdqp, pdqp,
1018                                 resblks, &tp);
1019         }
1020         if (error)
1021                 goto out_release_dquots;
1022
1023         xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
1024         unlock_dp_on_error = true;
1025
1026         error = xfs_iext_count_may_overflow(dp, XFS_DATA_FORK,
1027                         XFS_IEXT_DIR_MANIP_CNT(mp));
1028         if (error)
1029                 goto out_trans_cancel;
1030
1031         /*
1032          * A newly created regular or special file just has one directory
1033          * entry pointing to them, but a directory also the "." entry
1034          * pointing to itself.
1035          */
1036         error = xfs_dialloc(&tp, dp->i_ino, mode, &ino);
1037         if (!error)
1038                 error = xfs_init_new_inode(mnt_userns, tp, dp, ino, mode,
1039                                 is_dir ? 2 : 1, rdev, prid, init_xattrs, &ip);
1040         if (error)
1041                 goto out_trans_cancel;
1042
1043         /*
1044          * Now we join the directory inode to the transaction.  We do not do it
1045          * earlier because xfs_dialloc might commit the previous transaction
1046          * (and release all the locks).  An error from here on will result in
1047          * the transaction cancel unlocking dp so don't do it explicitly in the
1048          * error path.
1049          */
1050         xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
1051         unlock_dp_on_error = false;
1052
1053         error = xfs_dir_createname(tp, dp, name, ip->i_ino,
1054                                         resblks - XFS_IALLOC_SPACE_RES(mp));
1055         if (error) {
1056                 ASSERT(error != -ENOSPC);
1057                 goto out_trans_cancel;
1058         }
1059         xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1060         xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1061
1062         if (is_dir) {
1063                 error = xfs_dir_init(tp, ip, dp);
1064                 if (error)
1065                         goto out_trans_cancel;
1066
1067                 xfs_bumplink(tp, dp);
1068         }
1069
1070         /*
1071          * If this is a synchronous mount, make sure that the
1072          * create transaction goes to disk before returning to
1073          * the user.
1074          */
1075         if (xfs_has_wsync(mp) || xfs_has_dirsync(mp))
1076                 xfs_trans_set_sync(tp);
1077
1078         /*
1079          * Attach the dquot(s) to the inodes and modify them incore.
1080          * These ids of the inode couldn't have changed since the new
1081          * inode has been locked ever since it was created.
1082          */
1083         xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
1084
1085         error = xfs_trans_commit(tp);
1086         if (error)
1087                 goto out_release_inode;
1088
1089         xfs_qm_dqrele(udqp);
1090         xfs_qm_dqrele(gdqp);
1091         xfs_qm_dqrele(pdqp);
1092
1093         *ipp = ip;
1094         return 0;
1095
1096  out_trans_cancel:
1097         xfs_trans_cancel(tp);
1098  out_release_inode:
1099         /*
1100          * Wait until after the current transaction is aborted to finish the
1101          * setup of the inode and release the inode.  This prevents recursive
1102          * transactions and deadlocks from xfs_inactive.
1103          */
1104         if (ip) {
1105                 xfs_finish_inode_setup(ip);
1106                 xfs_irele(ip);
1107         }
1108  out_release_dquots:
1109         xfs_qm_dqrele(udqp);
1110         xfs_qm_dqrele(gdqp);
1111         xfs_qm_dqrele(pdqp);
1112
1113         if (unlock_dp_on_error)
1114                 xfs_iunlock(dp, XFS_ILOCK_EXCL);
1115         return error;
1116 }
1117
1118 int
1119 xfs_create_tmpfile(
1120         struct user_namespace   *mnt_userns,
1121         struct xfs_inode        *dp,
1122         umode_t                 mode,
1123         struct xfs_inode        **ipp)
1124 {
1125         struct xfs_mount        *mp = dp->i_mount;
1126         struct xfs_inode        *ip = NULL;
1127         struct xfs_trans        *tp = NULL;
1128         int                     error;
1129         prid_t                  prid;
1130         struct xfs_dquot        *udqp = NULL;
1131         struct xfs_dquot        *gdqp = NULL;
1132         struct xfs_dquot        *pdqp = NULL;
1133         struct xfs_trans_res    *tres;
1134         uint                    resblks;
1135         xfs_ino_t               ino;
1136
1137         if (xfs_is_shutdown(mp))
1138                 return -EIO;
1139
1140         prid = xfs_get_initial_prid(dp);
1141
1142         /*
1143          * Make sure that we have allocated dquot(s) on disk.
1144          */
1145         error = xfs_qm_vop_dqalloc(dp, mapped_fsuid(mnt_userns, &init_user_ns),
1146                         mapped_fsgid(mnt_userns, &init_user_ns), prid,
1147                         XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT,
1148                         &udqp, &gdqp, &pdqp);
1149         if (error)
1150                 return error;
1151
1152         resblks = XFS_IALLOC_SPACE_RES(mp);
1153         tres = &M_RES(mp)->tr_create_tmpfile;
1154
1155         error = xfs_trans_alloc_icreate(mp, tres, udqp, gdqp, pdqp, resblks,
1156                         &tp);
1157         if (error)
1158                 goto out_release_dquots;
1159
1160         error = xfs_dialloc(&tp, dp->i_ino, mode, &ino);
1161         if (!error)
1162                 error = xfs_init_new_inode(mnt_userns, tp, dp, ino, mode,
1163                                 0, 0, prid, false, &ip);
1164         if (error)
1165                 goto out_trans_cancel;
1166
1167         if (xfs_has_wsync(mp))
1168                 xfs_trans_set_sync(tp);
1169
1170         /*
1171          * Attach the dquot(s) to the inodes and modify them incore.
1172          * These ids of the inode couldn't have changed since the new
1173          * inode has been locked ever since it was created.
1174          */
1175         xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
1176
1177         error = xfs_iunlink(tp, ip);
1178         if (error)
1179                 goto out_trans_cancel;
1180
1181         error = xfs_trans_commit(tp);
1182         if (error)
1183                 goto out_release_inode;
1184
1185         xfs_qm_dqrele(udqp);
1186         xfs_qm_dqrele(gdqp);
1187         xfs_qm_dqrele(pdqp);
1188
1189         *ipp = ip;
1190         return 0;
1191
1192  out_trans_cancel:
1193         xfs_trans_cancel(tp);
1194  out_release_inode:
1195         /*
1196          * Wait until after the current transaction is aborted to finish the
1197          * setup of the inode and release the inode.  This prevents recursive
1198          * transactions and deadlocks from xfs_inactive.
1199          */
1200         if (ip) {
1201                 xfs_finish_inode_setup(ip);
1202                 xfs_irele(ip);
1203         }
1204  out_release_dquots:
1205         xfs_qm_dqrele(udqp);
1206         xfs_qm_dqrele(gdqp);
1207         xfs_qm_dqrele(pdqp);
1208
1209         return error;
1210 }
1211
1212 int
1213 xfs_link(
1214         xfs_inode_t             *tdp,
1215         xfs_inode_t             *sip,
1216         struct xfs_name         *target_name)
1217 {
1218         xfs_mount_t             *mp = tdp->i_mount;
1219         xfs_trans_t             *tp;
1220         int                     error, nospace_error = 0;
1221         int                     resblks;
1222
1223         trace_xfs_link(tdp, target_name);
1224
1225         ASSERT(!S_ISDIR(VFS_I(sip)->i_mode));
1226
1227         if (xfs_is_shutdown(mp))
1228                 return -EIO;
1229
1230         error = xfs_qm_dqattach(sip);
1231         if (error)
1232                 goto std_return;
1233
1234         error = xfs_qm_dqattach(tdp);
1235         if (error)
1236                 goto std_return;
1237
1238         resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
1239         error = xfs_trans_alloc_dir(tdp, &M_RES(mp)->tr_link, sip, &resblks,
1240                         &tp, &nospace_error);
1241         if (error)
1242                 goto std_return;
1243
1244         error = xfs_iext_count_may_overflow(tdp, XFS_DATA_FORK,
1245                         XFS_IEXT_DIR_MANIP_CNT(mp));
1246         if (error)
1247                 goto error_return;
1248
1249         /*
1250          * If we are using project inheritance, we only allow hard link
1251          * creation in our tree when the project IDs are the same; else
1252          * the tree quota mechanism could be circumvented.
1253          */
1254         if (unlikely((tdp->i_diflags & XFS_DIFLAG_PROJINHERIT) &&
1255                      tdp->i_projid != sip->i_projid)) {
1256                 error = -EXDEV;
1257                 goto error_return;
1258         }
1259
1260         if (!resblks) {
1261                 error = xfs_dir_canenter(tp, tdp, target_name);
1262                 if (error)
1263                         goto error_return;
1264         }
1265
1266         /*
1267          * Handle initial link state of O_TMPFILE inode
1268          */
1269         if (VFS_I(sip)->i_nlink == 0) {
1270                 struct xfs_perag        *pag;
1271
1272                 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, sip->i_ino));
1273                 error = xfs_iunlink_remove(tp, pag, sip);
1274                 xfs_perag_put(pag);
1275                 if (error)
1276                         goto error_return;
1277         }
1278
1279         error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
1280                                    resblks);
1281         if (error)
1282                 goto error_return;
1283         xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1284         xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
1285
1286         xfs_bumplink(tp, sip);
1287
1288         /*
1289          * If this is a synchronous mount, make sure that the
1290          * link transaction goes to disk before returning to
1291          * the user.
1292          */
1293         if (xfs_has_wsync(mp) || xfs_has_dirsync(mp))
1294                 xfs_trans_set_sync(tp);
1295
1296         return xfs_trans_commit(tp);
1297
1298  error_return:
1299         xfs_trans_cancel(tp);
1300  std_return:
1301         if (error == -ENOSPC && nospace_error)
1302                 error = nospace_error;
1303         return error;
1304 }
1305
1306 /* Clear the reflink flag and the cowblocks tag if possible. */
1307 static void
1308 xfs_itruncate_clear_reflink_flags(
1309         struct xfs_inode        *ip)
1310 {
1311         struct xfs_ifork        *dfork;
1312         struct xfs_ifork        *cfork;
1313
1314         if (!xfs_is_reflink_inode(ip))
1315                 return;
1316         dfork = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
1317         cfork = XFS_IFORK_PTR(ip, XFS_COW_FORK);
1318         if (dfork->if_bytes == 0 && cfork->if_bytes == 0)
1319                 ip->i_diflags2 &= ~XFS_DIFLAG2_REFLINK;
1320         if (cfork->if_bytes == 0)
1321                 xfs_inode_clear_cowblocks_tag(ip);
1322 }
1323
1324 /*
1325  * Free up the underlying blocks past new_size.  The new size must be smaller
1326  * than the current size.  This routine can be used both for the attribute and
1327  * data fork, and does not modify the inode size, which is left to the caller.
1328  *
1329  * The transaction passed to this routine must have made a permanent log
1330  * reservation of at least XFS_ITRUNCATE_LOG_RES.  This routine may commit the
1331  * given transaction and start new ones, so make sure everything involved in
1332  * the transaction is tidy before calling here.  Some transaction will be
1333  * returned to the caller to be committed.  The incoming transaction must
1334  * already include the inode, and both inode locks must be held exclusively.
1335  * The inode must also be "held" within the transaction.  On return the inode
1336  * will be "held" within the returned transaction.  This routine does NOT
1337  * require any disk space to be reserved for it within the transaction.
1338  *
1339  * If we get an error, we must return with the inode locked and linked into the
1340  * current transaction. This keeps things simple for the higher level code,
1341  * because it always knows that the inode is locked and held in the transaction
1342  * that returns to it whether errors occur or not.  We don't mark the inode
1343  * dirty on error so that transactions can be easily aborted if possible.
1344  */
1345 int
1346 xfs_itruncate_extents_flags(
1347         struct xfs_trans        **tpp,
1348         struct xfs_inode        *ip,
1349         int                     whichfork,
1350         xfs_fsize_t             new_size,
1351         int                     flags)
1352 {
1353         struct xfs_mount        *mp = ip->i_mount;
1354         struct xfs_trans        *tp = *tpp;
1355         xfs_fileoff_t           first_unmap_block;
1356         xfs_filblks_t           unmap_len;
1357         int                     error = 0;
1358
1359         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1360         ASSERT(!atomic_read(&VFS_I(ip)->i_count) ||
1361                xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1362         ASSERT(new_size <= XFS_ISIZE(ip));
1363         ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
1364         ASSERT(ip->i_itemp != NULL);
1365         ASSERT(ip->i_itemp->ili_lock_flags == 0);
1366         ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
1367
1368         trace_xfs_itruncate_extents_start(ip, new_size);
1369
1370         flags |= xfs_bmapi_aflag(whichfork);
1371
1372         /*
1373          * Since it is possible for space to become allocated beyond
1374          * the end of the file (in a crash where the space is allocated
1375          * but the inode size is not yet updated), simply remove any
1376          * blocks which show up between the new EOF and the maximum
1377          * possible file size.
1378          *
1379          * We have to free all the blocks to the bmbt maximum offset, even if
1380          * the page cache can't scale that far.
1381          */
1382         first_unmap_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size);
1383         if (!xfs_verify_fileoff(mp, first_unmap_block)) {
1384                 WARN_ON_ONCE(first_unmap_block > XFS_MAX_FILEOFF);
1385                 return 0;
1386         }
1387
1388         unmap_len = XFS_MAX_FILEOFF - first_unmap_block + 1;
1389         while (unmap_len > 0) {
1390                 ASSERT(tp->t_firstblock == NULLFSBLOCK);
1391                 error = __xfs_bunmapi(tp, ip, first_unmap_block, &unmap_len,
1392                                 flags, XFS_ITRUNC_MAX_EXTENTS);
1393                 if (error)
1394                         goto out;
1395
1396                 /* free the just unmapped extents */
1397                 error = xfs_defer_finish(&tp);
1398                 if (error)
1399                         goto out;
1400         }
1401
1402         if (whichfork == XFS_DATA_FORK) {
1403                 /* Remove all pending CoW reservations. */
1404                 error = xfs_reflink_cancel_cow_blocks(ip, &tp,
1405                                 first_unmap_block, XFS_MAX_FILEOFF, true);
1406                 if (error)
1407                         goto out;
1408
1409                 xfs_itruncate_clear_reflink_flags(ip);
1410         }
1411
1412         /*
1413          * Always re-log the inode so that our permanent transaction can keep
1414          * on rolling it forward in the log.
1415          */
1416         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1417
1418         trace_xfs_itruncate_extents_end(ip, new_size);
1419
1420 out:
1421         *tpp = tp;
1422         return error;
1423 }
1424
1425 int
1426 xfs_release(
1427         xfs_inode_t     *ip)
1428 {
1429         xfs_mount_t     *mp = ip->i_mount;
1430         int             error = 0;
1431
1432         if (!S_ISREG(VFS_I(ip)->i_mode) || (VFS_I(ip)->i_mode == 0))
1433                 return 0;
1434
1435         /* If this is a read-only mount, don't do this (would generate I/O) */
1436         if (xfs_is_readonly(mp))
1437                 return 0;
1438
1439         if (!xfs_is_shutdown(mp)) {
1440                 int truncated;
1441
1442                 /*
1443                  * If we previously truncated this file and removed old data
1444                  * in the process, we want to initiate "early" writeout on
1445                  * the last close.  This is an attempt to combat the notorious
1446                  * NULL files problem which is particularly noticeable from a
1447                  * truncate down, buffered (re-)write (delalloc), followed by
1448                  * a crash.  What we are effectively doing here is
1449                  * significantly reducing the time window where we'd otherwise
1450                  * be exposed to that problem.
1451                  */
1452                 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
1453                 if (truncated) {
1454                         xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE);
1455                         if (ip->i_delayed_blks > 0) {
1456                                 error = filemap_flush(VFS_I(ip)->i_mapping);
1457                                 if (error)
1458                                         return error;
1459                         }
1460                 }
1461         }
1462
1463         if (VFS_I(ip)->i_nlink == 0)
1464                 return 0;
1465
1466         /*
1467          * If we can't get the iolock just skip truncating the blocks past EOF
1468          * because we could deadlock with the mmap_lock otherwise. We'll get
1469          * another chance to drop them once the last reference to the inode is
1470          * dropped, so we'll never leak blocks permanently.
1471          */
1472         if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL))
1473                 return 0;
1474
1475         if (xfs_can_free_eofblocks(ip, false)) {
1476                 /*
1477                  * Check if the inode is being opened, written and closed
1478                  * frequently and we have delayed allocation blocks outstanding
1479                  * (e.g. streaming writes from the NFS server), truncating the
1480                  * blocks past EOF will cause fragmentation to occur.
1481                  *
1482                  * In this case don't do the truncation, but we have to be
1483                  * careful how we detect this case. Blocks beyond EOF show up as
1484                  * i_delayed_blks even when the inode is clean, so we need to
1485                  * truncate them away first before checking for a dirty release.
1486                  * Hence on the first dirty close we will still remove the
1487                  * speculative allocation, but after that we will leave it in
1488                  * place.
1489                  */
1490                 if (xfs_iflags_test(ip, XFS_IDIRTY_RELEASE))
1491                         goto out_unlock;
1492
1493                 error = xfs_free_eofblocks(ip);
1494                 if (error)
1495                         goto out_unlock;
1496
1497                 /* delalloc blocks after truncation means it really is dirty */
1498                 if (ip->i_delayed_blks)
1499                         xfs_iflags_set(ip, XFS_IDIRTY_RELEASE);
1500         }
1501
1502 out_unlock:
1503         xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1504         return error;
1505 }
1506
1507 /*
1508  * xfs_inactive_truncate
1509  *
1510  * Called to perform a truncate when an inode becomes unlinked.
1511  */
1512 STATIC int
1513 xfs_inactive_truncate(
1514         struct xfs_inode *ip)
1515 {
1516         struct xfs_mount        *mp = ip->i_mount;
1517         struct xfs_trans        *tp;
1518         int                     error;
1519
1520         error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0, &tp);
1521         if (error) {
1522                 ASSERT(xfs_is_shutdown(mp));
1523                 return error;
1524         }
1525         xfs_ilock(ip, XFS_ILOCK_EXCL);
1526         xfs_trans_ijoin(tp, ip, 0);
1527
1528         /*
1529          * Log the inode size first to prevent stale data exposure in the event
1530          * of a system crash before the truncate completes. See the related
1531          * comment in xfs_vn_setattr_size() for details.
1532          */
1533         ip->i_disk_size = 0;
1534         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1535
1536         error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0);
1537         if (error)
1538                 goto error_trans_cancel;
1539
1540         ASSERT(ip->i_df.if_nextents == 0);
1541
1542         error = xfs_trans_commit(tp);
1543         if (error)
1544                 goto error_unlock;
1545
1546         xfs_iunlock(ip, XFS_ILOCK_EXCL);
1547         return 0;
1548
1549 error_trans_cancel:
1550         xfs_trans_cancel(tp);
1551 error_unlock:
1552         xfs_iunlock(ip, XFS_ILOCK_EXCL);
1553         return error;
1554 }
1555
1556 /*
1557  * xfs_inactive_ifree()
1558  *
1559  * Perform the inode free when an inode is unlinked.
1560  */
1561 STATIC int
1562 xfs_inactive_ifree(
1563         struct xfs_inode *ip)
1564 {
1565         struct xfs_mount        *mp = ip->i_mount;
1566         struct xfs_trans        *tp;
1567         int                     error;
1568
1569         /*
1570          * We try to use a per-AG reservation for any block needed by the finobt
1571          * tree, but as the finobt feature predates the per-AG reservation
1572          * support a degraded file system might not have enough space for the
1573          * reservation at mount time.  In that case try to dip into the reserved
1574          * pool and pray.
1575          *
1576          * Send a warning if the reservation does happen to fail, as the inode
1577          * now remains allocated and sits on the unlinked list until the fs is
1578          * repaired.
1579          */
1580         if (unlikely(mp->m_finobt_nores)) {
1581                 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ifree,
1582                                 XFS_IFREE_SPACE_RES(mp), 0, XFS_TRANS_RESERVE,
1583                                 &tp);
1584         } else {
1585                 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ifree, 0, 0, 0, &tp);
1586         }
1587         if (error) {
1588                 if (error == -ENOSPC) {
1589                         xfs_warn_ratelimited(mp,
1590                         "Failed to remove inode(s) from unlinked list. "
1591                         "Please free space, unmount and run xfs_repair.");
1592                 } else {
1593                         ASSERT(xfs_is_shutdown(mp));
1594                 }
1595                 return error;
1596         }
1597
1598         /*
1599          * We do not hold the inode locked across the entire rolling transaction
1600          * here. We only need to hold it for the first transaction that
1601          * xfs_ifree() builds, which may mark the inode XFS_ISTALE if the
1602          * underlying cluster buffer is freed. Relogging an XFS_ISTALE inode
1603          * here breaks the relationship between cluster buffer invalidation and
1604          * stale inode invalidation on cluster buffer item journal commit
1605          * completion, and can result in leaving dirty stale inodes hanging
1606          * around in memory.
1607          *
1608          * We have no need for serialising this inode operation against other
1609          * operations - we freed the inode and hence reallocation is required
1610          * and that will serialise on reallocating the space the deferops need
1611          * to free. Hence we can unlock the inode on the first commit of
1612          * the transaction rather than roll it right through the deferops. This
1613          * avoids relogging the XFS_ISTALE inode.
1614          *
1615          * We check that xfs_ifree() hasn't grown an internal transaction roll
1616          * by asserting that the inode is still locked when it returns.
1617          */
1618         xfs_ilock(ip, XFS_ILOCK_EXCL);
1619         xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1620
1621         error = xfs_ifree(tp, ip);
1622         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1623         if (error) {
1624                 /*
1625                  * If we fail to free the inode, shut down.  The cancel
1626                  * might do that, we need to make sure.  Otherwise the
1627                  * inode might be lost for a long time or forever.
1628                  */
1629                 if (!xfs_is_shutdown(mp)) {
1630                         xfs_notice(mp, "%s: xfs_ifree returned error %d",
1631                                 __func__, error);
1632                         xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1633                 }
1634                 xfs_trans_cancel(tp);
1635                 return error;
1636         }
1637
1638         /*
1639          * Credit the quota account(s). The inode is gone.
1640          */
1641         xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
1642
1643         /*
1644          * Just ignore errors at this point.  There is nothing we can do except
1645          * to try to keep going. Make sure it's not a silent error.
1646          */
1647         error = xfs_trans_commit(tp);
1648         if (error)
1649                 xfs_notice(mp, "%s: xfs_trans_commit returned error %d",
1650                         __func__, error);
1651
1652         return 0;
1653 }
1654
1655 /*
1656  * Returns true if we need to update the on-disk metadata before we can free
1657  * the memory used by this inode.  Updates include freeing post-eof
1658  * preallocations; freeing COW staging extents; and marking the inode free in
1659  * the inobt if it is on the unlinked list.
1660  */
1661 bool
1662 xfs_inode_needs_inactive(
1663         struct xfs_inode        *ip)
1664 {
1665         struct xfs_mount        *mp = ip->i_mount;
1666         struct xfs_ifork        *cow_ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
1667
1668         /*
1669          * If the inode is already free, then there can be nothing
1670          * to clean up here.
1671          */
1672         if (VFS_I(ip)->i_mode == 0)
1673                 return false;
1674
1675         /* If this is a read-only mount, don't do this (would generate I/O) */
1676         if (xfs_is_readonly(mp))
1677                 return false;
1678
1679         /* If the log isn't running, push inodes straight to reclaim. */
1680         if (xfs_is_shutdown(mp) || xfs_has_norecovery(mp))
1681                 return false;
1682
1683         /* Metadata inodes require explicit resource cleanup. */
1684         if (xfs_is_metadata_inode(ip))
1685                 return false;
1686
1687         /* Want to clean out the cow blocks if there are any. */
1688         if (cow_ifp && cow_ifp->if_bytes > 0)
1689                 return true;
1690
1691         /* Unlinked files must be freed. */
1692         if (VFS_I(ip)->i_nlink == 0)
1693                 return true;
1694
1695         /*
1696          * This file isn't being freed, so check if there are post-eof blocks
1697          * to free.  @force is true because we are evicting an inode from the
1698          * cache.  Post-eof blocks must be freed, lest we end up with broken
1699          * free space accounting.
1700          *
1701          * Note: don't bother with iolock here since lockdep complains about
1702          * acquiring it in reclaim context. We have the only reference to the
1703          * inode at this point anyways.
1704          */
1705         return xfs_can_free_eofblocks(ip, true);
1706 }
1707
1708 /*
1709  * xfs_inactive
1710  *
1711  * This is called when the vnode reference count for the vnode
1712  * goes to zero.  If the file has been unlinked, then it must
1713  * now be truncated.  Also, we clear all of the read-ahead state
1714  * kept for the inode here since the file is now closed.
1715  */
1716 void
1717 xfs_inactive(
1718         xfs_inode_t     *ip)
1719 {
1720         struct xfs_mount        *mp;
1721         int                     error;
1722         int                     truncate = 0;
1723
1724         /*
1725          * If the inode is already free, then there can be nothing
1726          * to clean up here.
1727          */
1728         if (VFS_I(ip)->i_mode == 0) {
1729                 ASSERT(ip->i_df.if_broot_bytes == 0);
1730                 goto out;
1731         }
1732
1733         mp = ip->i_mount;
1734         ASSERT(!xfs_iflags_test(ip, XFS_IRECOVERY));
1735
1736         /* If this is a read-only mount, don't do this (would generate I/O) */
1737         if (xfs_is_readonly(mp))
1738                 goto out;
1739
1740         /* Metadata inodes require explicit resource cleanup. */
1741         if (xfs_is_metadata_inode(ip))
1742                 goto out;
1743
1744         /* Try to clean out the cow blocks if there are any. */
1745         if (xfs_inode_has_cow_data(ip))
1746                 xfs_reflink_cancel_cow_range(ip, 0, NULLFILEOFF, true);
1747
1748         if (VFS_I(ip)->i_nlink != 0) {
1749                 /*
1750                  * force is true because we are evicting an inode from the
1751                  * cache. Post-eof blocks must be freed, lest we end up with
1752                  * broken free space accounting.
1753                  *
1754                  * Note: don't bother with iolock here since lockdep complains
1755                  * about acquiring it in reclaim context. We have the only
1756                  * reference to the inode at this point anyways.
1757                  */
1758                 if (xfs_can_free_eofblocks(ip, true))
1759                         xfs_free_eofblocks(ip);
1760
1761                 goto out;
1762         }
1763
1764         if (S_ISREG(VFS_I(ip)->i_mode) &&
1765             (ip->i_disk_size != 0 || XFS_ISIZE(ip) != 0 ||
1766              ip->i_df.if_nextents > 0 || ip->i_delayed_blks > 0))
1767                 truncate = 1;
1768
1769         error = xfs_qm_dqattach(ip);
1770         if (error)
1771                 goto out;
1772
1773         if (S_ISLNK(VFS_I(ip)->i_mode))
1774                 error = xfs_inactive_symlink(ip);
1775         else if (truncate)
1776                 error = xfs_inactive_truncate(ip);
1777         if (error)
1778                 goto out;
1779
1780         /*
1781          * If there are attributes associated with the file then blow them away
1782          * now.  The code calls a routine that recursively deconstructs the
1783          * attribute fork. If also blows away the in-core attribute fork.
1784          */
1785         if (XFS_IFORK_Q(ip)) {
1786                 error = xfs_attr_inactive(ip);
1787                 if (error)
1788                         goto out;
1789         }
1790
1791         ASSERT(!ip->i_afp);
1792         ASSERT(ip->i_forkoff == 0);
1793
1794         /*
1795          * Free the inode.
1796          */
1797         xfs_inactive_ifree(ip);
1798
1799 out:
1800         /*
1801          * We're done making metadata updates for this inode, so we can release
1802          * the attached dquots.
1803          */
1804         xfs_qm_dqdetach(ip);
1805 }
1806
1807 /*
1808  * In-Core Unlinked List Lookups
1809  * =============================
1810  *
1811  * Every inode is supposed to be reachable from some other piece of metadata
1812  * with the exception of the root directory.  Inodes with a connection to a
1813  * file descriptor but not linked from anywhere in the on-disk directory tree
1814  * are collectively known as unlinked inodes, though the filesystem itself
1815  * maintains links to these inodes so that on-disk metadata are consistent.
1816  *
1817  * XFS implements a per-AG on-disk hash table of unlinked inodes.  The AGI
1818  * header contains a number of buckets that point to an inode, and each inode
1819  * record has a pointer to the next inode in the hash chain.  This
1820  * singly-linked list causes scaling problems in the iunlink remove function
1821  * because we must walk that list to find the inode that points to the inode
1822  * being removed from the unlinked hash bucket list.
1823  *
1824  * What if we modelled the unlinked list as a collection of records capturing
1825  * "X.next_unlinked = Y" relations?  If we indexed those records on Y, we'd
1826  * have a fast way to look up unlinked list predecessors, which avoids the
1827  * slow list walk.  That's exactly what we do here (in-core) with a per-AG
1828  * rhashtable.
1829  *
1830  * Because this is a backref cache, we ignore operational failures since the
1831  * iunlink code can fall back to the slow bucket walk.  The only errors that
1832  * should bubble out are for obviously incorrect situations.
1833  *
1834  * All users of the backref cache MUST hold the AGI buffer lock to serialize
1835  * access or have otherwise provided for concurrency control.
1836  */
1837
1838 /* Capture a "X.next_unlinked = Y" relationship. */
1839 struct xfs_iunlink {
1840         struct rhash_head       iu_rhash_head;
1841         xfs_agino_t             iu_agino;               /* X */
1842         xfs_agino_t             iu_next_unlinked;       /* Y */
1843 };
1844
1845 /* Unlinked list predecessor lookup hashtable construction */
1846 static int
1847 xfs_iunlink_obj_cmpfn(
1848         struct rhashtable_compare_arg   *arg,
1849         const void                      *obj)
1850 {
1851         const xfs_agino_t               *key = arg->key;
1852         const struct xfs_iunlink        *iu = obj;
1853
1854         if (iu->iu_next_unlinked != *key)
1855                 return 1;
1856         return 0;
1857 }
1858
1859 static const struct rhashtable_params xfs_iunlink_hash_params = {
1860         .min_size               = XFS_AGI_UNLINKED_BUCKETS,
1861         .key_len                = sizeof(xfs_agino_t),
1862         .key_offset             = offsetof(struct xfs_iunlink,
1863                                            iu_next_unlinked),
1864         .head_offset            = offsetof(struct xfs_iunlink, iu_rhash_head),
1865         .automatic_shrinking    = true,
1866         .obj_cmpfn              = xfs_iunlink_obj_cmpfn,
1867 };
1868
1869 /*
1870  * Return X, where X.next_unlinked == @agino.  Returns NULLAGINO if no such
1871  * relation is found.
1872  */
1873 static xfs_agino_t
1874 xfs_iunlink_lookup_backref(
1875         struct xfs_perag        *pag,
1876         xfs_agino_t             agino)
1877 {
1878         struct xfs_iunlink      *iu;
1879
1880         iu = rhashtable_lookup_fast(&pag->pagi_unlinked_hash, &agino,
1881                         xfs_iunlink_hash_params);
1882         return iu ? iu->iu_agino : NULLAGINO;
1883 }
1884
1885 /*
1886  * Take ownership of an iunlink cache entry and insert it into the hash table.
1887  * If successful, the entry will be owned by the cache; if not, it is freed.
1888  * Either way, the caller does not own @iu after this call.
1889  */
1890 static int
1891 xfs_iunlink_insert_backref(
1892         struct xfs_perag        *pag,
1893         struct xfs_iunlink      *iu)
1894 {
1895         int                     error;
1896
1897         error = rhashtable_insert_fast(&pag->pagi_unlinked_hash,
1898                         &iu->iu_rhash_head, xfs_iunlink_hash_params);
1899         /*
1900          * Fail loudly if there already was an entry because that's a sign of
1901          * corruption of in-memory data.  Also fail loudly if we see an error
1902          * code we didn't anticipate from the rhashtable code.  Currently we
1903          * only anticipate ENOMEM.
1904          */
1905         if (error) {
1906                 WARN(error != -ENOMEM, "iunlink cache insert error %d", error);
1907                 kmem_free(iu);
1908         }
1909         /*
1910          * Absorb any runtime errors that aren't a result of corruption because
1911          * this is a cache and we can always fall back to bucket list scanning.
1912          */
1913         if (error != 0 && error != -EEXIST)
1914                 error = 0;
1915         return error;
1916 }
1917
1918 /* Remember that @prev_agino.next_unlinked = @this_agino. */
1919 static int
1920 xfs_iunlink_add_backref(
1921         struct xfs_perag        *pag,
1922         xfs_agino_t             prev_agino,
1923         xfs_agino_t             this_agino)
1924 {
1925         struct xfs_iunlink      *iu;
1926
1927         if (XFS_TEST_ERROR(false, pag->pag_mount, XFS_ERRTAG_IUNLINK_FALLBACK))
1928                 return 0;
1929
1930         iu = kmem_zalloc(sizeof(*iu), KM_NOFS);
1931         iu->iu_agino = prev_agino;
1932         iu->iu_next_unlinked = this_agino;
1933
1934         return xfs_iunlink_insert_backref(pag, iu);
1935 }
1936
1937 /*
1938  * Replace X.next_unlinked = @agino with X.next_unlinked = @next_unlinked.
1939  * If @next_unlinked is NULLAGINO, we drop the backref and exit.  If there
1940  * wasn't any such entry then we don't bother.
1941  */
1942 static int
1943 xfs_iunlink_change_backref(
1944         struct xfs_perag        *pag,
1945         xfs_agino_t             agino,
1946         xfs_agino_t             next_unlinked)
1947 {
1948         struct xfs_iunlink      *iu;
1949         int                     error;
1950
1951         /* Look up the old entry; if there wasn't one then exit. */
1952         iu = rhashtable_lookup_fast(&pag->pagi_unlinked_hash, &agino,
1953                         xfs_iunlink_hash_params);
1954         if (!iu)
1955                 return 0;
1956
1957         /*
1958          * Remove the entry.  This shouldn't ever return an error, but if we
1959          * couldn't remove the old entry we don't want to add it again to the
1960          * hash table, and if the entry disappeared on us then someone's
1961          * violated the locking rules and we need to fail loudly.  Either way
1962          * we cannot remove the inode because internal state is or would have
1963          * been corrupt.
1964          */
1965         error = rhashtable_remove_fast(&pag->pagi_unlinked_hash,
1966                         &iu->iu_rhash_head, xfs_iunlink_hash_params);
1967         if (error)
1968                 return error;
1969
1970         /* If there is no new next entry just free our item and return. */
1971         if (next_unlinked == NULLAGINO) {
1972                 kmem_free(iu);
1973                 return 0;
1974         }
1975
1976         /* Update the entry and re-add it to the hash table. */
1977         iu->iu_next_unlinked = next_unlinked;
1978         return xfs_iunlink_insert_backref(pag, iu);
1979 }
1980
1981 /* Set up the in-core predecessor structures. */
1982 int
1983 xfs_iunlink_init(
1984         struct xfs_perag        *pag)
1985 {
1986         return rhashtable_init(&pag->pagi_unlinked_hash,
1987                         &xfs_iunlink_hash_params);
1988 }
1989
1990 /* Free the in-core predecessor structures. */
1991 static void
1992 xfs_iunlink_free_item(
1993         void                    *ptr,
1994         void                    *arg)
1995 {
1996         struct xfs_iunlink      *iu = ptr;
1997         bool                    *freed_anything = arg;
1998
1999         *freed_anything = true;
2000         kmem_free(iu);
2001 }
2002
2003 void
2004 xfs_iunlink_destroy(
2005         struct xfs_perag        *pag)
2006 {
2007         bool                    freed_anything = false;
2008
2009         rhashtable_free_and_destroy(&pag->pagi_unlinked_hash,
2010                         xfs_iunlink_free_item, &freed_anything);
2011
2012         ASSERT(freed_anything == false || xfs_is_shutdown(pag->pag_mount));
2013 }
2014
2015 /*
2016  * Point the AGI unlinked bucket at an inode and log the results.  The caller
2017  * is responsible for validating the old value.
2018  */
2019 STATIC int
2020 xfs_iunlink_update_bucket(
2021         struct xfs_trans        *tp,
2022         struct xfs_perag        *pag,
2023         struct xfs_buf          *agibp,
2024         unsigned int            bucket_index,
2025         xfs_agino_t             new_agino)
2026 {
2027         struct xfs_agi          *agi = agibp->b_addr;
2028         xfs_agino_t             old_value;
2029         int                     offset;
2030
2031         ASSERT(xfs_verify_agino_or_null(tp->t_mountp, pag->pag_agno, new_agino));
2032
2033         old_value = be32_to_cpu(agi->agi_unlinked[bucket_index]);
2034         trace_xfs_iunlink_update_bucket(tp->t_mountp, pag->pag_agno, bucket_index,
2035                         old_value, new_agino);
2036
2037         /*
2038          * We should never find the head of the list already set to the value
2039          * passed in because either we're adding or removing ourselves from the
2040          * head of the list.
2041          */
2042         if (old_value == new_agino) {
2043                 xfs_buf_mark_corrupt(agibp);
2044                 return -EFSCORRUPTED;
2045         }
2046
2047         agi->agi_unlinked[bucket_index] = cpu_to_be32(new_agino);
2048         offset = offsetof(struct xfs_agi, agi_unlinked) +
2049                         (sizeof(xfs_agino_t) * bucket_index);
2050         xfs_trans_log_buf(tp, agibp, offset, offset + sizeof(xfs_agino_t) - 1);
2051         return 0;
2052 }
2053
2054 /* Set an on-disk inode's next_unlinked pointer. */
2055 STATIC void
2056 xfs_iunlink_update_dinode(
2057         struct xfs_trans        *tp,
2058         struct xfs_perag        *pag,
2059         xfs_agino_t             agino,
2060         struct xfs_buf          *ibp,
2061         struct xfs_dinode       *dip,
2062         struct xfs_imap         *imap,
2063         xfs_agino_t             next_agino)
2064 {
2065         struct xfs_mount        *mp = tp->t_mountp;
2066         int                     offset;
2067
2068         ASSERT(xfs_verify_agino_or_null(mp, pag->pag_agno, next_agino));
2069
2070         trace_xfs_iunlink_update_dinode(mp, pag->pag_agno, agino,
2071                         be32_to_cpu(dip->di_next_unlinked), next_agino);
2072
2073         dip->di_next_unlinked = cpu_to_be32(next_agino);
2074         offset = imap->im_boffset +
2075                         offsetof(struct xfs_dinode, di_next_unlinked);
2076
2077         /* need to recalc the inode CRC if appropriate */
2078         xfs_dinode_calc_crc(mp, dip);
2079         xfs_trans_inode_buf(tp, ibp);
2080         xfs_trans_log_buf(tp, ibp, offset, offset + sizeof(xfs_agino_t) - 1);
2081 }
2082
2083 /* Set an in-core inode's unlinked pointer and return the old value. */
2084 STATIC int
2085 xfs_iunlink_update_inode(
2086         struct xfs_trans        *tp,
2087         struct xfs_inode        *ip,
2088         struct xfs_perag        *pag,
2089         xfs_agino_t             next_agino,
2090         xfs_agino_t             *old_next_agino)
2091 {
2092         struct xfs_mount        *mp = tp->t_mountp;
2093         struct xfs_dinode       *dip;
2094         struct xfs_buf          *ibp;
2095         xfs_agino_t             old_value;
2096         int                     error;
2097
2098         ASSERT(xfs_verify_agino_or_null(mp, pag->pag_agno, next_agino));
2099
2100         error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &ibp);
2101         if (error)
2102                 return error;
2103         dip = xfs_buf_offset(ibp, ip->i_imap.im_boffset);
2104
2105         /* Make sure the old pointer isn't garbage. */
2106         old_value = be32_to_cpu(dip->di_next_unlinked);
2107         if (!xfs_verify_agino_or_null(mp, pag->pag_agno, old_value)) {
2108                 xfs_inode_verifier_error(ip, -EFSCORRUPTED, __func__, dip,
2109                                 sizeof(*dip), __this_address);
2110                 error = -EFSCORRUPTED;
2111                 goto out;
2112         }
2113
2114         /*
2115          * Since we're updating a linked list, we should never find that the
2116          * current pointer is the same as the new value, unless we're
2117          * terminating the list.
2118          */
2119         *old_next_agino = old_value;
2120         if (old_value == next_agino) {
2121                 if (next_agino != NULLAGINO) {
2122                         xfs_inode_verifier_error(ip, -EFSCORRUPTED, __func__,
2123                                         dip, sizeof(*dip), __this_address);
2124                         error = -EFSCORRUPTED;
2125                 }
2126                 goto out;
2127         }
2128
2129         /* Ok, update the new pointer. */
2130         xfs_iunlink_update_dinode(tp, pag, XFS_INO_TO_AGINO(mp, ip->i_ino),
2131                         ibp, dip, &ip->i_imap, next_agino);
2132         return 0;
2133 out:
2134         xfs_trans_brelse(tp, ibp);
2135         return error;
2136 }
2137
2138 /*
2139  * This is called when the inode's link count has gone to 0 or we are creating
2140  * a tmpfile via O_TMPFILE.  The inode @ip must have nlink == 0.
2141  *
2142  * We place the on-disk inode on a list in the AGI.  It will be pulled from this
2143  * list when the inode is freed.
2144  */
2145 STATIC int
2146 xfs_iunlink(
2147         struct xfs_trans        *tp,
2148         struct xfs_inode        *ip)
2149 {
2150         struct xfs_mount        *mp = tp->t_mountp;
2151         struct xfs_perag        *pag;
2152         struct xfs_agi          *agi;
2153         struct xfs_buf          *agibp;
2154         xfs_agino_t             next_agino;
2155         xfs_agino_t             agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
2156         short                   bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
2157         int                     error;
2158
2159         ASSERT(VFS_I(ip)->i_nlink == 0);
2160         ASSERT(VFS_I(ip)->i_mode != 0);
2161         trace_xfs_iunlink(ip);
2162
2163         pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
2164
2165         /* Get the agi buffer first.  It ensures lock ordering on the list. */
2166         error = xfs_read_agi(mp, tp, pag->pag_agno, &agibp);
2167         if (error)
2168                 goto out;
2169         agi = agibp->b_addr;
2170
2171         /*
2172          * Get the index into the agi hash table for the list this inode will
2173          * go on.  Make sure the pointer isn't garbage and that this inode
2174          * isn't already on the list.
2175          */
2176         next_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]);
2177         if (next_agino == agino ||
2178             !xfs_verify_agino_or_null(mp, pag->pag_agno, next_agino)) {
2179                 xfs_buf_mark_corrupt(agibp);
2180                 error = -EFSCORRUPTED;
2181                 goto out;
2182         }
2183
2184         if (next_agino != NULLAGINO) {
2185                 xfs_agino_t             old_agino;
2186
2187                 /*
2188                  * There is already another inode in the bucket, so point this
2189                  * inode to the current head of the list.
2190                  */
2191                 error = xfs_iunlink_update_inode(tp, ip, pag, next_agino,
2192                                 &old_agino);
2193                 if (error)
2194                         goto out;
2195                 ASSERT(old_agino == NULLAGINO);
2196
2197                 /*
2198                  * agino has been unlinked, add a backref from the next inode
2199                  * back to agino.
2200                  */
2201                 error = xfs_iunlink_add_backref(pag, agino, next_agino);
2202                 if (error)
2203                         goto out;
2204         }
2205
2206         /* Point the head of the list to point to this inode. */
2207         error = xfs_iunlink_update_bucket(tp, pag, agibp, bucket_index, agino);
2208 out:
2209         xfs_perag_put(pag);
2210         return error;
2211 }
2212
2213 /* Return the imap, dinode pointer, and buffer for an inode. */
2214 STATIC int
2215 xfs_iunlink_map_ino(
2216         struct xfs_trans        *tp,
2217         xfs_agnumber_t          agno,
2218         xfs_agino_t             agino,
2219         struct xfs_imap         *imap,
2220         struct xfs_dinode       **dipp,
2221         struct xfs_buf          **bpp)
2222 {
2223         struct xfs_mount        *mp = tp->t_mountp;
2224         int                     error;
2225
2226         imap->im_blkno = 0;
2227         error = xfs_imap(mp, tp, XFS_AGINO_TO_INO(mp, agno, agino), imap, 0);
2228         if (error) {
2229                 xfs_warn(mp, "%s: xfs_imap returned error %d.",
2230                                 __func__, error);
2231                 return error;
2232         }
2233
2234         error = xfs_imap_to_bp(mp, tp, imap, bpp);
2235         if (error) {
2236                 xfs_warn(mp, "%s: xfs_imap_to_bp returned error %d.",
2237                                 __func__, error);
2238                 return error;
2239         }
2240
2241         *dipp = xfs_buf_offset(*bpp, imap->im_boffset);
2242         return 0;
2243 }
2244
2245 /*
2246  * Walk the unlinked chain from @head_agino until we find the inode that
2247  * points to @target_agino.  Return the inode number, map, dinode pointer,
2248  * and inode cluster buffer of that inode as @agino, @imap, @dipp, and @bpp.
2249  *
2250  * @tp, @pag, @head_agino, and @target_agino are input parameters.
2251  * @agino, @imap, @dipp, and @bpp are all output parameters.
2252  *
2253  * Do not call this function if @target_agino is the head of the list.
2254  */
2255 STATIC int
2256 xfs_iunlink_map_prev(
2257         struct xfs_trans        *tp,
2258         struct xfs_perag        *pag,
2259         xfs_agino_t             head_agino,
2260         xfs_agino_t             target_agino,
2261         xfs_agino_t             *agino,
2262         struct xfs_imap         *imap,
2263         struct xfs_dinode       **dipp,
2264         struct xfs_buf          **bpp)
2265 {
2266         struct xfs_mount        *mp = tp->t_mountp;
2267         xfs_agino_t             next_agino;
2268         int                     error;
2269
2270         ASSERT(head_agino != target_agino);
2271         *bpp = NULL;
2272
2273         /* See if our backref cache can find it faster. */
2274         *agino = xfs_iunlink_lookup_backref(pag, target_agino);
2275         if (*agino != NULLAGINO) {
2276                 error = xfs_iunlink_map_ino(tp, pag->pag_agno, *agino, imap,
2277                                 dipp, bpp);
2278                 if (error)
2279                         return error;
2280
2281                 if (be32_to_cpu((*dipp)->di_next_unlinked) == target_agino)
2282                         return 0;
2283
2284                 /*
2285                  * If we get here the cache contents were corrupt, so drop the
2286                  * buffer and fall back to walking the bucket list.
2287                  */
2288                 xfs_trans_brelse(tp, *bpp);
2289                 *bpp = NULL;
2290                 WARN_ON_ONCE(1);
2291         }
2292
2293         trace_xfs_iunlink_map_prev_fallback(mp, pag->pag_agno);
2294
2295         /* Otherwise, walk the entire bucket until we find it. */
2296         next_agino = head_agino;
2297         while (next_agino != target_agino) {
2298                 xfs_agino_t     unlinked_agino;
2299
2300                 if (*bpp)
2301                         xfs_trans_brelse(tp, *bpp);
2302
2303                 *agino = next_agino;
2304                 error = xfs_iunlink_map_ino(tp, pag->pag_agno, next_agino, imap,
2305                                 dipp, bpp);
2306                 if (error)
2307                         return error;
2308
2309                 unlinked_agino = be32_to_cpu((*dipp)->di_next_unlinked);
2310                 /*
2311                  * Make sure this pointer is valid and isn't an obvious
2312                  * infinite loop.
2313                  */
2314                 if (!xfs_verify_agino(mp, pag->pag_agno, unlinked_agino) ||
2315                     next_agino == unlinked_agino) {
2316                         XFS_CORRUPTION_ERROR(__func__,
2317                                         XFS_ERRLEVEL_LOW, mp,
2318                                         *dipp, sizeof(**dipp));
2319                         error = -EFSCORRUPTED;
2320                         return error;
2321                 }
2322                 next_agino = unlinked_agino;
2323         }
2324
2325         return 0;
2326 }
2327
2328 /*
2329  * Pull the on-disk inode from the AGI unlinked list.
2330  */
2331 STATIC int
2332 xfs_iunlink_remove(
2333         struct xfs_trans        *tp,
2334         struct xfs_perag        *pag,
2335         struct xfs_inode        *ip)
2336 {
2337         struct xfs_mount        *mp = tp->t_mountp;
2338         struct xfs_agi          *agi;
2339         struct xfs_buf          *agibp;
2340         struct xfs_buf          *last_ibp;
2341         struct xfs_dinode       *last_dip = NULL;
2342         xfs_agino_t             agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
2343         xfs_agino_t             next_agino;
2344         xfs_agino_t             head_agino;
2345         short                   bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
2346         int                     error;
2347
2348         trace_xfs_iunlink_remove(ip);
2349
2350         /* Get the agi buffer first.  It ensures lock ordering on the list. */
2351         error = xfs_read_agi(mp, tp, pag->pag_agno, &agibp);
2352         if (error)
2353                 return error;
2354         agi = agibp->b_addr;
2355
2356         /*
2357          * Get the index into the agi hash table for the list this inode will
2358          * go on.  Make sure the head pointer isn't garbage.
2359          */
2360         head_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]);
2361         if (!xfs_verify_agino(mp, pag->pag_agno, head_agino)) {
2362                 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp,
2363                                 agi, sizeof(*agi));
2364                 return -EFSCORRUPTED;
2365         }
2366
2367         /*
2368          * Set our inode's next_unlinked pointer to NULL and then return
2369          * the old pointer value so that we can update whatever was previous
2370          * to us in the list to point to whatever was next in the list.
2371          */
2372         error = xfs_iunlink_update_inode(tp, ip, pag, NULLAGINO, &next_agino);
2373         if (error)
2374                 return error;
2375
2376         /*
2377          * If there was a backref pointing from the next inode back to this
2378          * one, remove it because we've removed this inode from the list.
2379          *
2380          * Later, if this inode was in the middle of the list we'll update
2381          * this inode's backref to point from the next inode.
2382          */
2383         if (next_agino != NULLAGINO) {
2384                 error = xfs_iunlink_change_backref(pag, next_agino, NULLAGINO);
2385                 if (error)
2386                         return error;
2387         }
2388
2389         if (head_agino != agino) {
2390                 struct xfs_imap imap;
2391                 xfs_agino_t     prev_agino;
2392
2393                 /* We need to search the list for the inode being freed. */
2394                 error = xfs_iunlink_map_prev(tp, pag, head_agino, agino,
2395                                 &prev_agino, &imap, &last_dip, &last_ibp);
2396                 if (error)
2397                         return error;
2398
2399                 /* Point the previous inode on the list to the next inode. */
2400                 xfs_iunlink_update_dinode(tp, pag, prev_agino, last_ibp,
2401                                 last_dip, &imap, next_agino);
2402
2403                 /*
2404                  * Now we deal with the backref for this inode.  If this inode
2405                  * pointed at a real inode, change the backref that pointed to
2406                  * us to point to our old next.  If this inode was the end of
2407                  * the list, delete the backref that pointed to us.  Note that
2408                  * change_backref takes care of deleting the backref if
2409                  * next_agino is NULLAGINO.
2410                  */
2411                 return xfs_iunlink_change_backref(agibp->b_pag, agino,
2412                                 next_agino);
2413         }
2414
2415         /* Point the head of the list to the next unlinked inode. */
2416         return xfs_iunlink_update_bucket(tp, pag, agibp, bucket_index,
2417                         next_agino);
2418 }
2419
2420 /*
2421  * Look up the inode number specified and if it is not already marked XFS_ISTALE
2422  * mark it stale. We should only find clean inodes in this lookup that aren't
2423  * already stale.
2424  */
2425 static void
2426 xfs_ifree_mark_inode_stale(
2427         struct xfs_perag        *pag,
2428         struct xfs_inode        *free_ip,
2429         xfs_ino_t               inum)
2430 {
2431         struct xfs_mount        *mp = pag->pag_mount;
2432         struct xfs_inode_log_item *iip;
2433         struct xfs_inode        *ip;
2434
2435 retry:
2436         rcu_read_lock();
2437         ip = radix_tree_lookup(&pag->pag_ici_root, XFS_INO_TO_AGINO(mp, inum));
2438
2439         /* Inode not in memory, nothing to do */
2440         if (!ip) {
2441                 rcu_read_unlock();
2442                 return;
2443         }
2444
2445         /*
2446          * because this is an RCU protected lookup, we could find a recently
2447          * freed or even reallocated inode during the lookup. We need to check
2448          * under the i_flags_lock for a valid inode here. Skip it if it is not
2449          * valid, the wrong inode or stale.
2450          */
2451         spin_lock(&ip->i_flags_lock);
2452         if (ip->i_ino != inum || __xfs_iflags_test(ip, XFS_ISTALE))
2453                 goto out_iflags_unlock;
2454
2455         /*
2456          * Don't try to lock/unlock the current inode, but we _cannot_ skip the
2457          * other inodes that we did not find in the list attached to the buffer
2458          * and are not already marked stale. If we can't lock it, back off and
2459          * retry.
2460          */
2461         if (ip != free_ip) {
2462                 if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
2463                         spin_unlock(&ip->i_flags_lock);
2464                         rcu_read_unlock();
2465                         delay(1);
2466                         goto retry;
2467                 }
2468         }
2469         ip->i_flags |= XFS_ISTALE;
2470
2471         /*
2472          * If the inode is flushing, it is already attached to the buffer.  All
2473          * we needed to do here is mark the inode stale so buffer IO completion
2474          * will remove it from the AIL.
2475          */
2476         iip = ip->i_itemp;
2477         if (__xfs_iflags_test(ip, XFS_IFLUSHING)) {
2478                 ASSERT(!list_empty(&iip->ili_item.li_bio_list));
2479                 ASSERT(iip->ili_last_fields);
2480                 goto out_iunlock;
2481         }
2482
2483         /*
2484          * Inodes not attached to the buffer can be released immediately.
2485          * Everything else has to go through xfs_iflush_abort() on journal
2486          * commit as the flock synchronises removal of the inode from the
2487          * cluster buffer against inode reclaim.
2488          */
2489         if (!iip || list_empty(&iip->ili_item.li_bio_list))
2490                 goto out_iunlock;
2491
2492         __xfs_iflags_set(ip, XFS_IFLUSHING);
2493         spin_unlock(&ip->i_flags_lock);
2494         rcu_read_unlock();
2495
2496         /* we have a dirty inode in memory that has not yet been flushed. */
2497         spin_lock(&iip->ili_lock);
2498         iip->ili_last_fields = iip->ili_fields;
2499         iip->ili_fields = 0;
2500         iip->ili_fsync_fields = 0;
2501         spin_unlock(&iip->ili_lock);
2502         ASSERT(iip->ili_last_fields);
2503
2504         if (ip != free_ip)
2505                 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2506         return;
2507
2508 out_iunlock:
2509         if (ip != free_ip)
2510                 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2511 out_iflags_unlock:
2512         spin_unlock(&ip->i_flags_lock);
2513         rcu_read_unlock();
2514 }
2515
2516 /*
2517  * A big issue when freeing the inode cluster is that we _cannot_ skip any
2518  * inodes that are in memory - they all must be marked stale and attached to
2519  * the cluster buffer.
2520  */
2521 static int
2522 xfs_ifree_cluster(
2523         struct xfs_trans        *tp,
2524         struct xfs_perag        *pag,
2525         struct xfs_inode        *free_ip,
2526         struct xfs_icluster     *xic)
2527 {
2528         struct xfs_mount        *mp = free_ip->i_mount;
2529         struct xfs_ino_geometry *igeo = M_IGEO(mp);
2530         struct xfs_buf          *bp;
2531         xfs_daddr_t             blkno;
2532         xfs_ino_t               inum = xic->first_ino;
2533         int                     nbufs;
2534         int                     i, j;
2535         int                     ioffset;
2536         int                     error;
2537
2538         nbufs = igeo->ialloc_blks / igeo->blocks_per_cluster;
2539
2540         for (j = 0; j < nbufs; j++, inum += igeo->inodes_per_cluster) {
2541                 /*
2542                  * The allocation bitmap tells us which inodes of the chunk were
2543                  * physically allocated. Skip the cluster if an inode falls into
2544                  * a sparse region.
2545                  */
2546                 ioffset = inum - xic->first_ino;
2547                 if ((xic->alloc & XFS_INOBT_MASK(ioffset)) == 0) {
2548                         ASSERT(ioffset % igeo->inodes_per_cluster == 0);
2549                         continue;
2550                 }
2551
2552                 blkno = XFS_AGB_TO_DADDR(mp, XFS_INO_TO_AGNO(mp, inum),
2553                                          XFS_INO_TO_AGBNO(mp, inum));
2554
2555                 /*
2556                  * We obtain and lock the backing buffer first in the process
2557                  * here to ensure dirty inodes attached to the buffer remain in
2558                  * the flushing state while we mark them stale.
2559                  *
2560                  * If we scan the in-memory inodes first, then buffer IO can
2561                  * complete before we get a lock on it, and hence we may fail
2562                  * to mark all the active inodes on the buffer stale.
2563                  */
2564                 error = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno,
2565                                 mp->m_bsize * igeo->blocks_per_cluster,
2566                                 XBF_UNMAPPED, &bp);
2567                 if (error)
2568                         return error;
2569
2570                 /*
2571                  * This buffer may not have been correctly initialised as we
2572                  * didn't read it from disk. That's not important because we are
2573                  * only using to mark the buffer as stale in the log, and to
2574                  * attach stale cached inodes on it. That means it will never be
2575                  * dispatched for IO. If it is, we want to know about it, and we
2576                  * want it to fail. We can acheive this by adding a write
2577                  * verifier to the buffer.
2578                  */
2579                 bp->b_ops = &xfs_inode_buf_ops;
2580
2581                 /*
2582                  * Now we need to set all the cached clean inodes as XFS_ISTALE,
2583                  * too. This requires lookups, and will skip inodes that we've
2584                  * already marked XFS_ISTALE.
2585                  */
2586                 for (i = 0; i < igeo->inodes_per_cluster; i++)
2587                         xfs_ifree_mark_inode_stale(pag, free_ip, inum + i);
2588
2589                 xfs_trans_stale_inode_buf(tp, bp);
2590                 xfs_trans_binval(tp, bp);
2591         }
2592         return 0;
2593 }
2594
2595 /*
2596  * This is called to return an inode to the inode free list.
2597  * The inode should already be truncated to 0 length and have
2598  * no pages associated with it.  This routine also assumes that
2599  * the inode is already a part of the transaction.
2600  *
2601  * The on-disk copy of the inode will have been added to the list
2602  * of unlinked inodes in the AGI. We need to remove the inode from
2603  * that list atomically with respect to freeing it here.
2604  */
2605 int
2606 xfs_ifree(
2607         struct xfs_trans        *tp,
2608         struct xfs_inode        *ip)
2609 {
2610         struct xfs_mount        *mp = ip->i_mount;
2611         struct xfs_perag        *pag;
2612         struct xfs_icluster     xic = { 0 };
2613         struct xfs_inode_log_item *iip = ip->i_itemp;
2614         int                     error;
2615
2616         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
2617         ASSERT(VFS_I(ip)->i_nlink == 0);
2618         ASSERT(ip->i_df.if_nextents == 0);
2619         ASSERT(ip->i_disk_size == 0 || !S_ISREG(VFS_I(ip)->i_mode));
2620         ASSERT(ip->i_nblocks == 0);
2621
2622         pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
2623
2624         /*
2625          * Pull the on-disk inode from the AGI unlinked list.
2626          */
2627         error = xfs_iunlink_remove(tp, pag, ip);
2628         if (error)
2629                 goto out;
2630
2631         error = xfs_difree(tp, pag, ip->i_ino, &xic);
2632         if (error)
2633                 goto out;
2634
2635         /*
2636          * Free any local-format data sitting around before we reset the
2637          * data fork to extents format.  Note that the attr fork data has
2638          * already been freed by xfs_attr_inactive.
2639          */
2640         if (ip->i_df.if_format == XFS_DINODE_FMT_LOCAL) {
2641                 kmem_free(ip->i_df.if_u1.if_data);
2642                 ip->i_df.if_u1.if_data = NULL;
2643                 ip->i_df.if_bytes = 0;
2644         }
2645
2646         VFS_I(ip)->i_mode = 0;          /* mark incore inode as free */
2647         ip->i_diflags = 0;
2648         ip->i_diflags2 = mp->m_ino_geo.new_diflags2;
2649         ip->i_forkoff = 0;              /* mark the attr fork not in use */
2650         ip->i_df.if_format = XFS_DINODE_FMT_EXTENTS;
2651         if (xfs_iflags_test(ip, XFS_IPRESERVE_DM_FIELDS))
2652                 xfs_iflags_clear(ip, XFS_IPRESERVE_DM_FIELDS);
2653
2654         /* Don't attempt to replay owner changes for a deleted inode */
2655         spin_lock(&iip->ili_lock);
2656         iip->ili_fields &= ~(XFS_ILOG_AOWNER | XFS_ILOG_DOWNER);
2657         spin_unlock(&iip->ili_lock);
2658
2659         /*
2660          * Bump the generation count so no one will be confused
2661          * by reincarnations of this inode.
2662          */
2663         VFS_I(ip)->i_generation++;
2664         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2665
2666         if (xic.deleted)
2667                 error = xfs_ifree_cluster(tp, pag, ip, &xic);
2668 out:
2669         xfs_perag_put(pag);
2670         return error;
2671 }
2672
2673 /*
2674  * This is called to unpin an inode.  The caller must have the inode locked
2675  * in at least shared mode so that the buffer cannot be subsequently pinned
2676  * once someone is waiting for it to be unpinned.
2677  */
2678 static void
2679 xfs_iunpin(
2680         struct xfs_inode        *ip)
2681 {
2682         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
2683
2684         trace_xfs_inode_unpin_nowait(ip, _RET_IP_);
2685
2686         /* Give the log a push to start the unpinning I/O */
2687         xfs_log_force_seq(ip->i_mount, ip->i_itemp->ili_commit_seq, 0, NULL);
2688
2689 }
2690
2691 static void
2692 __xfs_iunpin_wait(
2693         struct xfs_inode        *ip)
2694 {
2695         wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IPINNED_BIT);
2696         DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IPINNED_BIT);
2697
2698         xfs_iunpin(ip);
2699
2700         do {
2701                 prepare_to_wait(wq, &wait.wq_entry, TASK_UNINTERRUPTIBLE);
2702                 if (xfs_ipincount(ip))
2703                         io_schedule();
2704         } while (xfs_ipincount(ip));
2705         finish_wait(wq, &wait.wq_entry);
2706 }
2707
2708 void
2709 xfs_iunpin_wait(
2710         struct xfs_inode        *ip)
2711 {
2712         if (xfs_ipincount(ip))
2713                 __xfs_iunpin_wait(ip);
2714 }
2715
2716 /*
2717  * Removing an inode from the namespace involves removing the directory entry
2718  * and dropping the link count on the inode. Removing the directory entry can
2719  * result in locking an AGF (directory blocks were freed) and removing a link
2720  * count can result in placing the inode on an unlinked list which results in
2721  * locking an AGI.
2722  *
2723  * The big problem here is that we have an ordering constraint on AGF and AGI
2724  * locking - inode allocation locks the AGI, then can allocate a new extent for
2725  * new inodes, locking the AGF after the AGI. Similarly, freeing the inode
2726  * removes the inode from the unlinked list, requiring that we lock the AGI
2727  * first, and then freeing the inode can result in an inode chunk being freed
2728  * and hence freeing disk space requiring that we lock an AGF.
2729  *
2730  * Hence the ordering that is imposed by other parts of the code is AGI before
2731  * AGF. This means we cannot remove the directory entry before we drop the inode
2732  * reference count and put it on the unlinked list as this results in a lock
2733  * order of AGF then AGI, and this can deadlock against inode allocation and
2734  * freeing. Therefore we must drop the link counts before we remove the
2735  * directory entry.
2736  *
2737  * This is still safe from a transactional point of view - it is not until we
2738  * get to xfs_defer_finish() that we have the possibility of multiple
2739  * transactions in this operation. Hence as long as we remove the directory
2740  * entry and drop the link count in the first transaction of the remove
2741  * operation, there are no transactional constraints on the ordering here.
2742  */
2743 int
2744 xfs_remove(
2745         xfs_inode_t             *dp,
2746         struct xfs_name         *name,
2747         xfs_inode_t             *ip)
2748 {
2749         xfs_mount_t             *mp = dp->i_mount;
2750         xfs_trans_t             *tp = NULL;
2751         int                     is_dir = S_ISDIR(VFS_I(ip)->i_mode);
2752         int                     dontcare;
2753         int                     error = 0;
2754         uint                    resblks;
2755
2756         trace_xfs_remove(dp, name);
2757
2758         if (xfs_is_shutdown(mp))
2759                 return -EIO;
2760
2761         error = xfs_qm_dqattach(dp);
2762         if (error)
2763                 goto std_return;
2764
2765         error = xfs_qm_dqattach(ip);
2766         if (error)
2767                 goto std_return;
2768
2769         /*
2770          * We try to get the real space reservation first, allowing for
2771          * directory btree deletion(s) implying possible bmap insert(s).  If we
2772          * can't get the space reservation then we use 0 instead, and avoid the
2773          * bmap btree insert(s) in the directory code by, if the bmap insert
2774          * tries to happen, instead trimming the LAST block from the directory.
2775          *
2776          * Ignore EDQUOT and ENOSPC being returned via nospace_error because
2777          * the directory code can handle a reservationless update and we don't
2778          * want to prevent a user from trying to free space by deleting things.
2779          */
2780         resblks = XFS_REMOVE_SPACE_RES(mp);
2781         error = xfs_trans_alloc_dir(dp, &M_RES(mp)->tr_remove, ip, &resblks,
2782                         &tp, &dontcare);
2783         if (error) {
2784                 ASSERT(error != -ENOSPC);
2785                 goto std_return;
2786         }
2787
2788         /*
2789          * If we're removing a directory perform some additional validation.
2790          */
2791         if (is_dir) {
2792                 ASSERT(VFS_I(ip)->i_nlink >= 2);
2793                 if (VFS_I(ip)->i_nlink != 2) {
2794                         error = -ENOTEMPTY;
2795                         goto out_trans_cancel;
2796                 }
2797                 if (!xfs_dir_isempty(ip)) {
2798                         error = -ENOTEMPTY;
2799                         goto out_trans_cancel;
2800                 }
2801
2802                 /* Drop the link from ip's "..".  */
2803                 error = xfs_droplink(tp, dp);
2804                 if (error)
2805                         goto out_trans_cancel;
2806
2807                 /* Drop the "." link from ip to self.  */
2808                 error = xfs_droplink(tp, ip);
2809                 if (error)
2810                         goto out_trans_cancel;
2811
2812                 /*
2813                  * Point the unlinked child directory's ".." entry to the root
2814                  * directory to eliminate back-references to inodes that may
2815                  * get freed before the child directory is closed.  If the fs
2816                  * gets shrunk, this can lead to dirent inode validation errors.
2817                  */
2818                 if (dp->i_ino != tp->t_mountp->m_sb.sb_rootino) {
2819                         error = xfs_dir_replace(tp, ip, &xfs_name_dotdot,
2820                                         tp->t_mountp->m_sb.sb_rootino, 0);
2821                         if (error)
2822                                 return error;
2823                 }
2824         } else {
2825                 /*
2826                  * When removing a non-directory we need to log the parent
2827                  * inode here.  For a directory this is done implicitly
2828                  * by the xfs_droplink call for the ".." entry.
2829                  */
2830                 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2831         }
2832         xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2833
2834         /* Drop the link from dp to ip. */
2835         error = xfs_droplink(tp, ip);
2836         if (error)
2837                 goto out_trans_cancel;
2838
2839         error = xfs_dir_removename(tp, dp, name, ip->i_ino, resblks);
2840         if (error) {
2841                 ASSERT(error != -ENOENT);
2842                 goto out_trans_cancel;
2843         }
2844
2845         /*
2846          * If this is a synchronous mount, make sure that the
2847          * remove transaction goes to disk before returning to
2848          * the user.
2849          */
2850         if (xfs_has_wsync(mp) || xfs_has_dirsync(mp))
2851                 xfs_trans_set_sync(tp);
2852
2853         error = xfs_trans_commit(tp);
2854         if (error)
2855                 goto std_return;
2856
2857         if (is_dir && xfs_inode_is_filestream(ip))
2858                 xfs_filestream_deassociate(ip);
2859
2860         return 0;
2861
2862  out_trans_cancel:
2863         xfs_trans_cancel(tp);
2864  std_return:
2865         return error;
2866 }
2867
2868 /*
2869  * Enter all inodes for a rename transaction into a sorted array.
2870  */
2871 #define __XFS_SORT_INODES       5
2872 STATIC void
2873 xfs_sort_for_rename(
2874         struct xfs_inode        *dp1,   /* in: old (source) directory inode */
2875         struct xfs_inode        *dp2,   /* in: new (target) directory inode */
2876         struct xfs_inode        *ip1,   /* in: inode of old entry */
2877         struct xfs_inode        *ip2,   /* in: inode of new entry */
2878         struct xfs_inode        *wip,   /* in: whiteout inode */
2879         struct xfs_inode        **i_tab,/* out: sorted array of inodes */
2880         int                     *num_inodes)  /* in/out: inodes in array */
2881 {
2882         int                     i, j;
2883
2884         ASSERT(*num_inodes == __XFS_SORT_INODES);
2885         memset(i_tab, 0, *num_inodes * sizeof(struct xfs_inode *));
2886
2887         /*
2888          * i_tab contains a list of pointers to inodes.  We initialize
2889          * the table here & we'll sort it.  We will then use it to
2890          * order the acquisition of the inode locks.
2891          *
2892          * Note that the table may contain duplicates.  e.g., dp1 == dp2.
2893          */
2894         i = 0;
2895         i_tab[i++] = dp1;
2896         i_tab[i++] = dp2;
2897         i_tab[i++] = ip1;
2898         if (ip2)
2899                 i_tab[i++] = ip2;
2900         if (wip)
2901                 i_tab[i++] = wip;
2902         *num_inodes = i;
2903
2904         /*
2905          * Sort the elements via bubble sort.  (Remember, there are at
2906          * most 5 elements to sort, so this is adequate.)
2907          */
2908         for (i = 0; i < *num_inodes; i++) {
2909                 for (j = 1; j < *num_inodes; j++) {
2910                         if (i_tab[j]->i_ino < i_tab[j-1]->i_ino) {
2911                                 struct xfs_inode *temp = i_tab[j];
2912                                 i_tab[j] = i_tab[j-1];
2913                                 i_tab[j-1] = temp;
2914                         }
2915                 }
2916         }
2917 }
2918
2919 static int
2920 xfs_finish_rename(
2921         struct xfs_trans        *tp)
2922 {
2923         /*
2924          * If this is a synchronous mount, make sure that the rename transaction
2925          * goes to disk before returning to the user.
2926          */
2927         if (xfs_has_wsync(tp->t_mountp) || xfs_has_dirsync(tp->t_mountp))
2928                 xfs_trans_set_sync(tp);
2929
2930         return xfs_trans_commit(tp);
2931 }
2932
2933 /*
2934  * xfs_cross_rename()
2935  *
2936  * responsible for handling RENAME_EXCHANGE flag in renameat2() syscall
2937  */
2938 STATIC int
2939 xfs_cross_rename(
2940         struct xfs_trans        *tp,
2941         struct xfs_inode        *dp1,
2942         struct xfs_name         *name1,
2943         struct xfs_inode        *ip1,
2944         struct xfs_inode        *dp2,
2945         struct xfs_name         *name2,
2946         struct xfs_inode        *ip2,
2947         int                     spaceres)
2948 {
2949         int             error = 0;
2950         int             ip1_flags = 0;
2951         int             ip2_flags = 0;
2952         int             dp2_flags = 0;
2953
2954         /* Swap inode number for dirent in first parent */
2955         error = xfs_dir_replace(tp, dp1, name1, ip2->i_ino, spaceres);
2956         if (error)
2957                 goto out_trans_abort;
2958
2959         /* Swap inode number for dirent in second parent */
2960         error = xfs_dir_replace(tp, dp2, name2, ip1->i_ino, spaceres);
2961         if (error)
2962                 goto out_trans_abort;
2963
2964         /*
2965          * If we're renaming one or more directories across different parents,
2966          * update the respective ".." entries (and link counts) to match the new
2967          * parents.
2968          */
2969         if (dp1 != dp2) {
2970                 dp2_flags = XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
2971
2972                 if (S_ISDIR(VFS_I(ip2)->i_mode)) {
2973                         error = xfs_dir_replace(tp, ip2, &xfs_name_dotdot,
2974                                                 dp1->i_ino, spaceres);
2975                         if (error)
2976                                 goto out_trans_abort;
2977
2978                         /* transfer ip2 ".." reference to dp1 */
2979                         if (!S_ISDIR(VFS_I(ip1)->i_mode)) {
2980                                 error = xfs_droplink(tp, dp2);
2981                                 if (error)
2982                                         goto out_trans_abort;
2983                                 xfs_bumplink(tp, dp1);
2984                         }
2985
2986                         /*
2987                          * Although ip1 isn't changed here, userspace needs
2988                          * to be warned about the change, so that applications
2989                          * relying on it (like backup ones), will properly
2990                          * notify the change
2991                          */
2992                         ip1_flags |= XFS_ICHGTIME_CHG;
2993                         ip2_flags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
2994                 }
2995
2996                 if (S_ISDIR(VFS_I(ip1)->i_mode)) {
2997                         error = xfs_dir_replace(tp, ip1, &xfs_name_dotdot,
2998                                                 dp2->i_ino, spaceres);
2999                         if (error)
3000                                 goto out_trans_abort;
3001
3002                         /* transfer ip1 ".." reference to dp2 */
3003                         if (!S_ISDIR(VFS_I(ip2)->i_mode)) {
3004                                 error = xfs_droplink(tp, dp1);
3005                                 if (error)
3006                                         goto out_trans_abort;
3007                                 xfs_bumplink(tp, dp2);
3008                         }
3009
3010                         /*
3011                          * Although ip2 isn't changed here, userspace needs
3012                          * to be warned about the change, so that applications
3013                          * relying on it (like backup ones), will properly
3014                          * notify the change
3015                          */
3016                         ip1_flags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
3017                         ip2_flags |= XFS_ICHGTIME_CHG;
3018                 }
3019         }
3020
3021         if (ip1_flags) {
3022                 xfs_trans_ichgtime(tp, ip1, ip1_flags);
3023                 xfs_trans_log_inode(tp, ip1, XFS_ILOG_CORE);
3024         }
3025         if (ip2_flags) {
3026                 xfs_trans_ichgtime(tp, ip2, ip2_flags);
3027                 xfs_trans_log_inode(tp, ip2, XFS_ILOG_CORE);
3028         }
3029         if (dp2_flags) {
3030                 xfs_trans_ichgtime(tp, dp2, dp2_flags);
3031                 xfs_trans_log_inode(tp, dp2, XFS_ILOG_CORE);
3032         }
3033         xfs_trans_ichgtime(tp, dp1, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3034         xfs_trans_log_inode(tp, dp1, XFS_ILOG_CORE);
3035         return xfs_finish_rename(tp);
3036
3037 out_trans_abort:
3038         xfs_trans_cancel(tp);
3039         return error;
3040 }
3041
3042 /*
3043  * xfs_rename_alloc_whiteout()
3044  *
3045  * Return a referenced, unlinked, unlocked inode that can be used as a
3046  * whiteout in a rename transaction. We use a tmpfile inode here so that if we
3047  * crash between allocating the inode and linking it into the rename transaction
3048  * recovery will free the inode and we won't leak it.
3049  */
3050 static int
3051 xfs_rename_alloc_whiteout(
3052         struct user_namespace   *mnt_userns,
3053         struct xfs_inode        *dp,
3054         struct xfs_inode        **wip)
3055 {
3056         struct xfs_inode        *tmpfile;
3057         int                     error;
3058
3059         error = xfs_create_tmpfile(mnt_userns, dp, S_IFCHR | WHITEOUT_MODE,
3060                                    &tmpfile);
3061         if (error)
3062                 return error;
3063
3064         /*
3065          * Prepare the tmpfile inode as if it were created through the VFS.
3066          * Complete the inode setup and flag it as linkable.  nlink is already
3067          * zero, so we can skip the drop_nlink.
3068          */
3069         xfs_setup_iops(tmpfile);
3070         xfs_finish_inode_setup(tmpfile);
3071         VFS_I(tmpfile)->i_state |= I_LINKABLE;
3072
3073         *wip = tmpfile;
3074         return 0;
3075 }
3076
3077 /*
3078  * xfs_rename
3079  */
3080 int
3081 xfs_rename(
3082         struct user_namespace   *mnt_userns,
3083         struct xfs_inode        *src_dp,
3084         struct xfs_name         *src_name,
3085         struct xfs_inode        *src_ip,
3086         struct xfs_inode        *target_dp,
3087         struct xfs_name         *target_name,
3088         struct xfs_inode        *target_ip,
3089         unsigned int            flags)
3090 {
3091         struct xfs_mount        *mp = src_dp->i_mount;
3092         struct xfs_trans        *tp;
3093         struct xfs_inode        *wip = NULL;            /* whiteout inode */
3094         struct xfs_inode        *inodes[__XFS_SORT_INODES];
3095         int                     i;
3096         int                     num_inodes = __XFS_SORT_INODES;
3097         bool                    new_parent = (src_dp != target_dp);
3098         bool                    src_is_directory = S_ISDIR(VFS_I(src_ip)->i_mode);
3099         int                     spaceres;
3100         bool                    retried = false;
3101         int                     error, nospace_error = 0;
3102
3103         trace_xfs_rename(src_dp, target_dp, src_name, target_name);
3104
3105         if ((flags & RENAME_EXCHANGE) && !target_ip)
3106                 return -EINVAL;
3107
3108         /*
3109          * If we are doing a whiteout operation, allocate the whiteout inode
3110          * we will be placing at the target and ensure the type is set
3111          * appropriately.
3112          */
3113         if (flags & RENAME_WHITEOUT) {
3114                 error = xfs_rename_alloc_whiteout(mnt_userns, target_dp, &wip);
3115                 if (error)
3116                         return error;
3117
3118                 /* setup target dirent info as whiteout */
3119                 src_name->type = XFS_DIR3_FT_CHRDEV;
3120         }
3121
3122         xfs_sort_for_rename(src_dp, target_dp, src_ip, target_ip, wip,
3123                                 inodes, &num_inodes);
3124
3125 retry:
3126         nospace_error = 0;
3127         spaceres = XFS_RENAME_SPACE_RES(mp, target_name->len);
3128         error = xfs_trans_alloc(mp, &M_RES(mp)->tr_rename, spaceres, 0, 0, &tp);
3129         if (error == -ENOSPC) {
3130                 nospace_error = error;
3131                 spaceres = 0;
3132                 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_rename, 0, 0, 0,
3133                                 &tp);
3134         }
3135         if (error)
3136                 goto out_release_wip;
3137
3138         /*
3139          * Attach the dquots to the inodes
3140          */
3141         error = xfs_qm_vop_rename_dqattach(inodes);
3142         if (error)
3143                 goto out_trans_cancel;
3144
3145         /*
3146          * Lock all the participating inodes. Depending upon whether
3147          * the target_name exists in the target directory, and
3148          * whether the target directory is the same as the source
3149          * directory, we can lock from 2 to 4 inodes.
3150          */
3151         xfs_lock_inodes(inodes, num_inodes, XFS_ILOCK_EXCL);
3152
3153         /*
3154          * Join all the inodes to the transaction. From this point on,
3155          * we can rely on either trans_commit or trans_cancel to unlock
3156          * them.
3157          */
3158         xfs_trans_ijoin(tp, src_dp, XFS_ILOCK_EXCL);
3159         if (new_parent)
3160                 xfs_trans_ijoin(tp, target_dp, XFS_ILOCK_EXCL);
3161         xfs_trans_ijoin(tp, src_ip, XFS_ILOCK_EXCL);
3162         if (target_ip)
3163                 xfs_trans_ijoin(tp, target_ip, XFS_ILOCK_EXCL);
3164         if (wip)
3165                 xfs_trans_ijoin(tp, wip, XFS_ILOCK_EXCL);
3166
3167         /*
3168          * If we are using project inheritance, we only allow renames
3169          * into our tree when the project IDs are the same; else the
3170          * tree quota mechanism would be circumvented.
3171          */
3172         if (unlikely((target_dp->i_diflags & XFS_DIFLAG_PROJINHERIT) &&
3173                      target_dp->i_projid != src_ip->i_projid)) {
3174                 error = -EXDEV;
3175                 goto out_trans_cancel;
3176         }
3177
3178         /* RENAME_EXCHANGE is unique from here on. */
3179         if (flags & RENAME_EXCHANGE)
3180                 return xfs_cross_rename(tp, src_dp, src_name, src_ip,
3181                                         target_dp, target_name, target_ip,
3182                                         spaceres);
3183
3184         /*
3185          * Try to reserve quota to handle an expansion of the target directory.
3186          * We'll allow the rename to continue in reservationless mode if we hit
3187          * a space usage constraint.  If we trigger reservationless mode, save
3188          * the errno if there isn't any free space in the target directory.
3189          */
3190         if (spaceres != 0) {
3191                 error = xfs_trans_reserve_quota_nblks(tp, target_dp, spaceres,
3192                                 0, false);
3193                 if (error == -EDQUOT || error == -ENOSPC) {
3194                         if (!retried) {
3195                                 xfs_trans_cancel(tp);
3196                                 xfs_blockgc_free_quota(target_dp, 0);
3197                                 retried = true;
3198                                 goto retry;
3199                         }
3200
3201                         nospace_error = error;
3202                         spaceres = 0;
3203                         error = 0;
3204                 }
3205                 if (error)
3206                         goto out_trans_cancel;
3207         }
3208
3209         /*
3210          * Check for expected errors before we dirty the transaction
3211          * so we can return an error without a transaction abort.
3212          *
3213          * Extent count overflow check:
3214          *
3215          * From the perspective of src_dp, a rename operation is essentially a
3216          * directory entry remove operation. Hence the only place where we check
3217          * for extent count overflow for src_dp is in
3218          * xfs_bmap_del_extent_real(). xfs_bmap_del_extent_real() returns
3219          * -ENOSPC when it detects a possible extent count overflow and in
3220          * response, the higher layers of directory handling code do the
3221          * following:
3222          * 1. Data/Free blocks: XFS lets these blocks linger until a
3223          *    future remove operation removes them.
3224          * 2. Dabtree blocks: XFS swaps the blocks with the last block in the
3225          *    Leaf space and unmaps the last block.
3226          *
3227          * For target_dp, there are two cases depending on whether the
3228          * destination directory entry exists or not.
3229          *
3230          * When destination directory entry does not exist (i.e. target_ip ==
3231          * NULL), extent count overflow check is performed only when transaction
3232          * has a non-zero sized space reservation associated with it.  With a
3233          * zero-sized space reservation, XFS allows a rename operation to
3234          * continue only when the directory has sufficient free space in its
3235          * data/leaf/free space blocks to hold the new entry.
3236          *
3237          * When destination directory entry exists (i.e. target_ip != NULL), all
3238          * we need to do is change the inode number associated with the already
3239          * existing entry. Hence there is no need to perform an extent count
3240          * overflow check.
3241          */
3242         if (target_ip == NULL) {
3243                 /*
3244                  * If there's no space reservation, check the entry will
3245                  * fit before actually inserting it.
3246                  */
3247                 if (!spaceres) {
3248                         error = xfs_dir_canenter(tp, target_dp, target_name);
3249                         if (error)
3250                                 goto out_trans_cancel;
3251                 } else {
3252                         error = xfs_iext_count_may_overflow(target_dp,
3253                                         XFS_DATA_FORK,
3254                                         XFS_IEXT_DIR_MANIP_CNT(mp));
3255                         if (error)
3256                                 goto out_trans_cancel;
3257                 }
3258         } else {
3259                 /*
3260                  * If target exists and it's a directory, check that whether
3261                  * it can be destroyed.
3262                  */
3263                 if (S_ISDIR(VFS_I(target_ip)->i_mode) &&
3264                     (!xfs_dir_isempty(target_ip) ||
3265                      (VFS_I(target_ip)->i_nlink > 2))) {
3266                         error = -EEXIST;
3267                         goto out_trans_cancel;
3268                 }
3269         }
3270
3271         /*
3272          * Lock the AGI buffers we need to handle bumping the nlink of the
3273          * whiteout inode off the unlinked list and to handle dropping the
3274          * nlink of the target inode.  Per locking order rules, do this in
3275          * increasing AG order and before directory block allocation tries to
3276          * grab AGFs because we grab AGIs before AGFs.
3277          *
3278          * The (vfs) caller must ensure that if src is a directory then
3279          * target_ip is either null or an empty directory.
3280          */
3281         for (i = 0; i < num_inodes && inodes[i] != NULL; i++) {
3282                 if (inodes[i] == wip ||
3283                     (inodes[i] == target_ip &&
3284                      (VFS_I(target_ip)->i_nlink == 1 || src_is_directory))) {
3285                         struct xfs_buf  *bp;
3286                         xfs_agnumber_t  agno;
3287
3288                         agno = XFS_INO_TO_AGNO(mp, inodes[i]->i_ino);
3289                         error = xfs_read_agi(mp, tp, agno, &bp);
3290                         if (error)
3291                                 goto out_trans_cancel;
3292                 }
3293         }
3294
3295         /*
3296          * Directory entry creation below may acquire the AGF. Remove
3297          * the whiteout from the unlinked list first to preserve correct
3298          * AGI/AGF locking order. This dirties the transaction so failures
3299          * after this point will abort and log recovery will clean up the
3300          * mess.
3301          *
3302          * For whiteouts, we need to bump the link count on the whiteout
3303          * inode. After this point, we have a real link, clear the tmpfile
3304          * state flag from the inode so it doesn't accidentally get misused
3305          * in future.
3306          */
3307         if (wip) {
3308                 struct xfs_perag        *pag;
3309
3310                 ASSERT(VFS_I(wip)->i_nlink == 0);
3311
3312                 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, wip->i_ino));
3313                 error = xfs_iunlink_remove(tp, pag, wip);
3314                 xfs_perag_put(pag);
3315                 if (error)
3316                         goto out_trans_cancel;
3317
3318                 xfs_bumplink(tp, wip);
3319                 VFS_I(wip)->i_state &= ~I_LINKABLE;
3320         }
3321
3322         /*
3323          * Set up the target.
3324          */
3325         if (target_ip == NULL) {
3326                 /*
3327                  * If target does not exist and the rename crosses
3328                  * directories, adjust the target directory link count
3329                  * to account for the ".." reference from the new entry.
3330                  */
3331                 error = xfs_dir_createname(tp, target_dp, target_name,
3332                                            src_ip->i_ino, spaceres);
3333                 if (error)
3334                         goto out_trans_cancel;
3335
3336                 xfs_trans_ichgtime(tp, target_dp,
3337                                         XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3338
3339                 if (new_parent && src_is_directory) {
3340                         xfs_bumplink(tp, target_dp);
3341                 }
3342         } else { /* target_ip != NULL */
3343                 /*
3344                  * Link the source inode under the target name.
3345                  * If the source inode is a directory and we are moving
3346                  * it across directories, its ".." entry will be
3347                  * inconsistent until we replace that down below.
3348                  *
3349                  * In case there is already an entry with the same
3350                  * name at the destination directory, remove it first.
3351                  */
3352                 error = xfs_dir_replace(tp, target_dp, target_name,
3353                                         src_ip->i_ino, spaceres);
3354                 if (error)
3355                         goto out_trans_cancel;
3356
3357                 xfs_trans_ichgtime(tp, target_dp,
3358                                         XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3359
3360                 /*
3361                  * Decrement the link count on the target since the target
3362                  * dir no longer points to it.
3363                  */
3364                 error = xfs_droplink(tp, target_ip);
3365                 if (error)
3366                         goto out_trans_cancel;
3367
3368                 if (src_is_directory) {
3369                         /*
3370                          * Drop the link from the old "." entry.
3371                          */
3372                         error = xfs_droplink(tp, target_ip);
3373                         if (error)
3374                                 goto out_trans_cancel;
3375                 }
3376         } /* target_ip != NULL */
3377
3378         /*
3379          * Remove the source.
3380          */
3381         if (new_parent && src_is_directory) {
3382                 /*
3383                  * Rewrite the ".." entry to point to the new
3384                  * directory.
3385                  */
3386                 error = xfs_dir_replace(tp, src_ip, &xfs_name_dotdot,
3387                                         target_dp->i_ino, spaceres);
3388                 ASSERT(error != -EEXIST);
3389                 if (error)
3390                         goto out_trans_cancel;
3391         }
3392
3393         /*
3394          * We always want to hit the ctime on the source inode.
3395          *
3396          * This isn't strictly required by the standards since the source
3397          * inode isn't really being changed, but old unix file systems did
3398          * it and some incremental backup programs won't work without it.
3399          */
3400         xfs_trans_ichgtime(tp, src_ip, XFS_ICHGTIME_CHG);
3401         xfs_trans_log_inode(tp, src_ip, XFS_ILOG_CORE);
3402
3403         /*
3404          * Adjust the link count on src_dp.  This is necessary when
3405          * renaming a directory, either within one parent when
3406          * the target existed, or across two parent directories.
3407          */
3408         if (src_is_directory && (new_parent || target_ip != NULL)) {
3409
3410                 /*
3411                  * Decrement link count on src_directory since the
3412                  * entry that's moved no longer points to it.
3413                  */
3414                 error = xfs_droplink(tp, src_dp);
3415                 if (error)
3416                         goto out_trans_cancel;
3417         }
3418
3419         /*
3420          * For whiteouts, we only need to update the source dirent with the
3421          * inode number of the whiteout inode rather than removing it
3422          * altogether.
3423          */
3424         if (wip) {
3425                 error = xfs_dir_replace(tp, src_dp, src_name, wip->i_ino,
3426                                         spaceres);
3427         } else {
3428                 /*
3429                  * NOTE: We don't need to check for extent count overflow here
3430                  * because the dir remove name code will leave the dir block in
3431                  * place if the extent count would overflow.
3432                  */
3433                 error = xfs_dir_removename(tp, src_dp, src_name, src_ip->i_ino,
3434                                            spaceres);
3435         }
3436
3437         if (error)
3438                 goto out_trans_cancel;
3439
3440         xfs_trans_ichgtime(tp, src_dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3441         xfs_trans_log_inode(tp, src_dp, XFS_ILOG_CORE);
3442         if (new_parent)
3443                 xfs_trans_log_inode(tp, target_dp, XFS_ILOG_CORE);
3444
3445         error = xfs_finish_rename(tp);
3446         if (wip)
3447                 xfs_irele(wip);
3448         return error;
3449
3450 out_trans_cancel:
3451         xfs_trans_cancel(tp);
3452 out_release_wip:
3453         if (wip)
3454                 xfs_irele(wip);
3455         if (error == -ENOSPC && nospace_error)
3456                 error = nospace_error;
3457         return error;
3458 }
3459
3460 static int
3461 xfs_iflush(
3462         struct xfs_inode        *ip,
3463         struct xfs_buf          *bp)
3464 {
3465         struct xfs_inode_log_item *iip = ip->i_itemp;
3466         struct xfs_dinode       *dip;
3467         struct xfs_mount        *mp = ip->i_mount;
3468         int                     error;
3469
3470         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
3471         ASSERT(xfs_iflags_test(ip, XFS_IFLUSHING));
3472         ASSERT(ip->i_df.if_format != XFS_DINODE_FMT_BTREE ||
3473                ip->i_df.if_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
3474         ASSERT(iip->ili_item.li_buf == bp);
3475
3476         dip = xfs_buf_offset(bp, ip->i_imap.im_boffset);
3477
3478         /*
3479          * We don't flush the inode if any of the following checks fail, but we
3480          * do still update the log item and attach to the backing buffer as if
3481          * the flush happened. This is a formality to facilitate predictable
3482          * error handling as the caller will shutdown and fail the buffer.
3483          */
3484         error = -EFSCORRUPTED;
3485         if (XFS_TEST_ERROR(dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC),
3486                                mp, XFS_ERRTAG_IFLUSH_1)) {
3487                 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3488                         "%s: Bad inode %Lu magic number 0x%x, ptr "PTR_FMT,
3489                         __func__, ip->i_ino, be16_to_cpu(dip->di_magic), dip);
3490                 goto flush_out;
3491         }
3492         if (S_ISREG(VFS_I(ip)->i_mode)) {
3493                 if (XFS_TEST_ERROR(
3494                     ip->i_df.if_format != XFS_DINODE_FMT_EXTENTS &&
3495                     ip->i_df.if_format != XFS_DINODE_FMT_BTREE,
3496                     mp, XFS_ERRTAG_IFLUSH_3)) {
3497                         xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3498                                 "%s: Bad regular inode %Lu, ptr "PTR_FMT,
3499                                 __func__, ip->i_ino, ip);
3500                         goto flush_out;
3501                 }
3502         } else if (S_ISDIR(VFS_I(ip)->i_mode)) {
3503                 if (XFS_TEST_ERROR(
3504                     ip->i_df.if_format != XFS_DINODE_FMT_EXTENTS &&
3505                     ip->i_df.if_format != XFS_DINODE_FMT_BTREE &&
3506                     ip->i_df.if_format != XFS_DINODE_FMT_LOCAL,
3507                     mp, XFS_ERRTAG_IFLUSH_4)) {
3508                         xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3509                                 "%s: Bad directory inode %Lu, ptr "PTR_FMT,
3510                                 __func__, ip->i_ino, ip);
3511                         goto flush_out;
3512                 }
3513         }
3514         if (XFS_TEST_ERROR(ip->i_df.if_nextents + xfs_ifork_nextents(ip->i_afp) >
3515                                 ip->i_nblocks, mp, XFS_ERRTAG_IFLUSH_5)) {
3516                 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3517                         "%s: detected corrupt incore inode %Lu, "
3518                         "total extents = %d, nblocks = %Ld, ptr "PTR_FMT,
3519                         __func__, ip->i_ino,
3520                         ip->i_df.if_nextents + xfs_ifork_nextents(ip->i_afp),
3521                         ip->i_nblocks, ip);
3522                 goto flush_out;
3523         }
3524         if (XFS_TEST_ERROR(ip->i_forkoff > mp->m_sb.sb_inodesize,
3525                                 mp, XFS_ERRTAG_IFLUSH_6)) {
3526                 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3527                         "%s: bad inode %Lu, forkoff 0x%x, ptr "PTR_FMT,
3528                         __func__, ip->i_ino, ip->i_forkoff, ip);
3529                 goto flush_out;
3530         }
3531
3532         /*
3533          * Inode item log recovery for v2 inodes are dependent on the flushiter
3534          * count for correct sequencing.  We bump the flush iteration count so
3535          * we can detect flushes which postdate a log record during recovery.
3536          * This is redundant as we now log every change and hence this can't
3537          * happen but we need to still do it to ensure backwards compatibility
3538          * with old kernels that predate logging all inode changes.
3539          */
3540         if (!xfs_has_v3inodes(mp))
3541                 ip->i_flushiter++;
3542
3543         /*
3544          * If there are inline format data / attr forks attached to this inode,
3545          * make sure they are not corrupt.
3546          */
3547         if (ip->i_df.if_format == XFS_DINODE_FMT_LOCAL &&
3548             xfs_ifork_verify_local_data(ip))
3549                 goto flush_out;
3550         if (ip->i_afp && ip->i_afp->if_format == XFS_DINODE_FMT_LOCAL &&
3551             xfs_ifork_verify_local_attr(ip))
3552                 goto flush_out;
3553
3554         /*
3555          * Copy the dirty parts of the inode into the on-disk inode.  We always
3556          * copy out the core of the inode, because if the inode is dirty at all
3557          * the core must be.
3558          */
3559         xfs_inode_to_disk(ip, dip, iip->ili_item.li_lsn);
3560
3561         /* Wrap, we never let the log put out DI_MAX_FLUSH */
3562         if (!xfs_has_v3inodes(mp)) {
3563                 if (ip->i_flushiter == DI_MAX_FLUSH)
3564                         ip->i_flushiter = 0;
3565         }
3566
3567         xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK);
3568         if (XFS_IFORK_Q(ip))
3569                 xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK);
3570
3571         /*
3572          * We've recorded everything logged in the inode, so we'd like to clear
3573          * the ili_fields bits so we don't log and flush things unnecessarily.
3574          * However, we can't stop logging all this information until the data
3575          * we've copied into the disk buffer is written to disk.  If we did we
3576          * might overwrite the copy of the inode in the log with all the data
3577          * after re-logging only part of it, and in the face of a crash we
3578          * wouldn't have all the data we need to recover.
3579          *
3580          * What we do is move the bits to the ili_last_fields field.  When
3581          * logging the inode, these bits are moved back to the ili_fields field.
3582          * In the xfs_buf_inode_iodone() routine we clear ili_last_fields, since
3583          * we know that the information those bits represent is permanently on
3584          * disk.  As long as the flush completes before the inode is logged
3585          * again, then both ili_fields and ili_last_fields will be cleared.
3586          */
3587         error = 0;
3588 flush_out:
3589         spin_lock(&iip->ili_lock);
3590         iip->ili_last_fields = iip->ili_fields;
3591         iip->ili_fields = 0;
3592         iip->ili_fsync_fields = 0;
3593         spin_unlock(&iip->ili_lock);
3594
3595         /*
3596          * Store the current LSN of the inode so that we can tell whether the
3597          * item has moved in the AIL from xfs_buf_inode_iodone().
3598          */
3599         xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
3600                                 &iip->ili_item.li_lsn);
3601
3602         /* generate the checksum. */
3603         xfs_dinode_calc_crc(mp, dip);
3604         return error;
3605 }
3606
3607 /*
3608  * Non-blocking flush of dirty inode metadata into the backing buffer.
3609  *
3610  * The caller must have a reference to the inode and hold the cluster buffer
3611  * locked. The function will walk across all the inodes on the cluster buffer it
3612  * can find and lock without blocking, and flush them to the cluster buffer.
3613  *
3614  * On successful flushing of at least one inode, the caller must write out the
3615  * buffer and release it. If no inodes are flushed, -EAGAIN will be returned and
3616  * the caller needs to release the buffer. On failure, the filesystem will be
3617  * shut down, the buffer will have been unlocked and released, and EFSCORRUPTED
3618  * will be returned.
3619  */
3620 int
3621 xfs_iflush_cluster(
3622         struct xfs_buf          *bp)
3623 {
3624         struct xfs_mount        *mp = bp->b_mount;
3625         struct xfs_log_item     *lip, *n;
3626         struct xfs_inode        *ip;
3627         struct xfs_inode_log_item *iip;
3628         int                     clcount = 0;
3629         int                     error = 0;
3630
3631         /*
3632          * We must use the safe variant here as on shutdown xfs_iflush_abort()
3633          * can remove itself from the list.
3634          */
3635         list_for_each_entry_safe(lip, n, &bp->b_li_list, li_bio_list) {
3636                 iip = (struct xfs_inode_log_item *)lip;
3637                 ip = iip->ili_inode;
3638
3639                 /*
3640                  * Quick and dirty check to avoid locks if possible.
3641                  */
3642                 if (__xfs_iflags_test(ip, XFS_IRECLAIM | XFS_IFLUSHING))
3643                         continue;
3644                 if (xfs_ipincount(ip))
3645                         continue;
3646
3647                 /*
3648                  * The inode is still attached to the buffer, which means it is
3649                  * dirty but reclaim might try to grab it. Check carefully for
3650                  * that, and grab the ilock while still holding the i_flags_lock
3651                  * to guarantee reclaim will not be able to reclaim this inode
3652                  * once we drop the i_flags_lock.
3653                  */
3654                 spin_lock(&ip->i_flags_lock);
3655                 ASSERT(!__xfs_iflags_test(ip, XFS_ISTALE));
3656                 if (__xfs_iflags_test(ip, XFS_IRECLAIM | XFS_IFLUSHING)) {
3657                         spin_unlock(&ip->i_flags_lock);
3658                         continue;
3659                 }
3660
3661                 /*
3662                  * ILOCK will pin the inode against reclaim and prevent
3663                  * concurrent transactions modifying the inode while we are
3664                  * flushing the inode. If we get the lock, set the flushing
3665                  * state before we drop the i_flags_lock.
3666                  */
3667                 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED)) {
3668                         spin_unlock(&ip->i_flags_lock);
3669                         continue;
3670                 }
3671                 __xfs_iflags_set(ip, XFS_IFLUSHING);
3672                 spin_unlock(&ip->i_flags_lock);
3673
3674                 /*
3675                  * Abort flushing this inode if we are shut down because the
3676                  * inode may not currently be in the AIL. This can occur when
3677                  * log I/O failure unpins the inode without inserting into the
3678                  * AIL, leaving a dirty/unpinned inode attached to the buffer
3679                  * that otherwise looks like it should be flushed.
3680                  */
3681                 if (xfs_is_shutdown(mp)) {
3682                         xfs_iunpin_wait(ip);
3683                         xfs_iflush_abort(ip);
3684                         xfs_iunlock(ip, XFS_ILOCK_SHARED);
3685                         error = -EIO;
3686                         continue;
3687                 }
3688
3689                 /* don't block waiting on a log force to unpin dirty inodes */
3690                 if (xfs_ipincount(ip)) {
3691                         xfs_iflags_clear(ip, XFS_IFLUSHING);
3692                         xfs_iunlock(ip, XFS_ILOCK_SHARED);
3693                         continue;
3694                 }
3695
3696                 if (!xfs_inode_clean(ip))
3697                         error = xfs_iflush(ip, bp);
3698                 else
3699                         xfs_iflags_clear(ip, XFS_IFLUSHING);
3700                 xfs_iunlock(ip, XFS_ILOCK_SHARED);
3701                 if (error)
3702                         break;
3703                 clcount++;
3704         }
3705
3706         if (error) {
3707                 bp->b_flags |= XBF_ASYNC;
3708                 xfs_buf_ioend_fail(bp);
3709                 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
3710                 return error;
3711         }
3712
3713         if (!clcount)
3714                 return -EAGAIN;
3715
3716         XFS_STATS_INC(mp, xs_icluster_flushcnt);
3717         XFS_STATS_ADD(mp, xs_icluster_flushinode, clcount);
3718         return 0;
3719
3720 }
3721
3722 /* Release an inode. */
3723 void
3724 xfs_irele(
3725         struct xfs_inode        *ip)
3726 {
3727         trace_xfs_irele(ip, _RET_IP_);
3728         iput(VFS_I(ip));
3729 }
3730
3731 /*
3732  * Ensure all commited transactions touching the inode are written to the log.
3733  */
3734 int
3735 xfs_log_force_inode(
3736         struct xfs_inode        *ip)
3737 {
3738         xfs_csn_t               seq = 0;
3739
3740         xfs_ilock(ip, XFS_ILOCK_SHARED);
3741         if (xfs_ipincount(ip))
3742                 seq = ip->i_itemp->ili_commit_seq;
3743         xfs_iunlock(ip, XFS_ILOCK_SHARED);
3744
3745         if (!seq)
3746                 return 0;
3747         return xfs_log_force_seq(ip->i_mount, seq, XFS_LOG_SYNC, NULL);
3748 }
3749
3750 /*
3751  * Grab the exclusive iolock for a data copy from src to dest, making sure to
3752  * abide vfs locking order (lowest pointer value goes first) and breaking the
3753  * layout leases before proceeding.  The loop is needed because we cannot call
3754  * the blocking break_layout() with the iolocks held, and therefore have to
3755  * back out both locks.
3756  */
3757 static int
3758 xfs_iolock_two_inodes_and_break_layout(
3759         struct inode            *src,
3760         struct inode            *dest)
3761 {
3762         int                     error;
3763
3764         if (src > dest)
3765                 swap(src, dest);
3766
3767 retry:
3768         /* Wait to break both inodes' layouts before we start locking. */
3769         error = break_layout(src, true);
3770         if (error)
3771                 return error;
3772         if (src != dest) {
3773                 error = break_layout(dest, true);
3774                 if (error)
3775                         return error;
3776         }
3777
3778         /* Lock one inode and make sure nobody got in and leased it. */
3779         inode_lock(src);
3780         error = break_layout(src, false);
3781         if (error) {
3782                 inode_unlock(src);
3783                 if (error == -EWOULDBLOCK)
3784                         goto retry;
3785                 return error;
3786         }
3787
3788         if (src == dest)
3789                 return 0;
3790
3791         /* Lock the other inode and make sure nobody got in and leased it. */
3792         inode_lock_nested(dest, I_MUTEX_NONDIR2);
3793         error = break_layout(dest, false);
3794         if (error) {
3795                 inode_unlock(src);
3796                 inode_unlock(dest);
3797                 if (error == -EWOULDBLOCK)
3798                         goto retry;
3799                 return error;
3800         }
3801
3802         return 0;
3803 }
3804
3805 /*
3806  * Lock two inodes so that userspace cannot initiate I/O via file syscalls or
3807  * mmap activity.
3808  */
3809 int
3810 xfs_ilock2_io_mmap(
3811         struct xfs_inode        *ip1,
3812         struct xfs_inode        *ip2)
3813 {
3814         int                     ret;
3815
3816         ret = xfs_iolock_two_inodes_and_break_layout(VFS_I(ip1), VFS_I(ip2));
3817         if (ret)
3818                 return ret;
3819         filemap_invalidate_lock_two(VFS_I(ip1)->i_mapping,
3820                                     VFS_I(ip2)->i_mapping);
3821         return 0;
3822 }
3823
3824 /* Unlock both inodes to allow IO and mmap activity. */
3825 void
3826 xfs_iunlock2_io_mmap(
3827         struct xfs_inode        *ip1,
3828         struct xfs_inode        *ip2)
3829 {
3830         filemap_invalidate_unlock_two(VFS_I(ip1)->i_mapping,
3831                                       VFS_I(ip2)->i_mapping);
3832         inode_unlock(VFS_I(ip2));
3833         if (ip1 != ip2)
3834                 inode_unlock(VFS_I(ip1));
3835 }