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