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