xref: /openbmc/linux/fs/xfs/xfs_inode.c (revision 22525c17ed133202088f6f05acd9c53790a7121d)
11da177e4SLinus Torvalds /*
23e57ecf6SOlaf Weber  * Copyright (c) 2000-2006 Silicon Graphics, Inc.
37b718769SNathan Scott  * All Rights Reserved.
41da177e4SLinus Torvalds  *
57b718769SNathan Scott  * This program is free software; you can redistribute it and/or
67b718769SNathan Scott  * modify it under the terms of the GNU General Public License as
71da177e4SLinus Torvalds  * published by the Free Software Foundation.
81da177e4SLinus Torvalds  *
97b718769SNathan Scott  * This program is distributed in the hope that it would be useful,
107b718769SNathan Scott  * but WITHOUT ANY WARRANTY; without even the implied warranty of
117b718769SNathan Scott  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
127b718769SNathan Scott  * GNU General Public License for more details.
131da177e4SLinus Torvalds  *
147b718769SNathan Scott  * You should have received a copy of the GNU General Public License
157b718769SNathan Scott  * along with this program; if not, write the Free Software Foundation,
167b718769SNathan Scott  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
171da177e4SLinus Torvalds  */
1840ebd81dSRobert P. J. Day #include <linux/log2.h>
19f0e28280SJeff Layton #include <linux/iversion.h>
2040ebd81dSRobert P. J. Day 
211da177e4SLinus Torvalds #include "xfs.h"
22a844f451SNathan Scott #include "xfs_fs.h"
2370a9883cSDave Chinner #include "xfs_shared.h"
24239880efSDave Chinner #include "xfs_format.h"
25239880efSDave Chinner #include "xfs_log_format.h"
26239880efSDave Chinner #include "xfs_trans_resv.h"
271da177e4SLinus Torvalds #include "xfs_sb.h"
281da177e4SLinus Torvalds #include "xfs_mount.h"
293ab78df2SDarrick J. Wong #include "xfs_defer.h"
30a4fbe6abSDave Chinner #include "xfs_inode.h"
3157062787SDave Chinner #include "xfs_da_format.h"
32c24b5dfaSDave Chinner #include "xfs_da_btree.h"
33c24b5dfaSDave Chinner #include "xfs_dir2.h"
34a844f451SNathan Scott #include "xfs_attr_sf.h"
35c24b5dfaSDave Chinner #include "xfs_attr.h"
36239880efSDave Chinner #include "xfs_trans_space.h"
37239880efSDave Chinner #include "xfs_trans.h"
381da177e4SLinus Torvalds #include "xfs_buf_item.h"
39a844f451SNathan Scott #include "xfs_inode_item.h"
40a844f451SNathan Scott #include "xfs_ialloc.h"
41a844f451SNathan Scott #include "xfs_bmap.h"
4268988114SDave Chinner #include "xfs_bmap_util.h"
43e9e899a2SDarrick J. Wong #include "xfs_errortag.h"
441da177e4SLinus Torvalds #include "xfs_error.h"
451da177e4SLinus Torvalds #include "xfs_quota.h"
462a82b8beSDavid Chinner #include "xfs_filestream.h"
4793848a99SChristoph Hellwig #include "xfs_cksum.h"
480b1b213fSChristoph Hellwig #include "xfs_trace.h"
4933479e05SDave Chinner #include "xfs_icache.h"
50c24b5dfaSDave Chinner #include "xfs_symlink.h"
51239880efSDave Chinner #include "xfs_trans_priv.h"
52239880efSDave Chinner #include "xfs_log.h"
53a4fbe6abSDave Chinner #include "xfs_bmap_btree.h"
54aa8968f2SDarrick J. Wong #include "xfs_reflink.h"
55005c5db8SDarrick J. Wong #include "xfs_dir2_priv.h"
561da177e4SLinus Torvalds 
571da177e4SLinus Torvalds kmem_zone_t *xfs_inode_zone;
581da177e4SLinus Torvalds 
591da177e4SLinus Torvalds /*
608f04c47aSChristoph Hellwig  * Used in xfs_itruncate_extents().  This is the maximum number of extents
611da177e4SLinus Torvalds  * freed from a file in a single transaction.
621da177e4SLinus Torvalds  */
631da177e4SLinus Torvalds #define	XFS_ITRUNC_MAX_EXTENTS	2
641da177e4SLinus Torvalds 
6554d7b5c1SDave Chinner STATIC int xfs_iflush_int(struct xfs_inode *, struct xfs_buf *);
6654d7b5c1SDave Chinner STATIC int xfs_iunlink(struct xfs_trans *, struct xfs_inode *);
6754d7b5c1SDave Chinner STATIC int xfs_iunlink_remove(struct xfs_trans *, struct xfs_inode *);
68ab297431SZhi Yong Wu 
692a0ec1d9SDave Chinner /*
702a0ec1d9SDave Chinner  * helper function to extract extent size hint from inode
712a0ec1d9SDave Chinner  */
722a0ec1d9SDave Chinner xfs_extlen_t
732a0ec1d9SDave Chinner xfs_get_extsz_hint(
742a0ec1d9SDave Chinner 	struct xfs_inode	*ip)
752a0ec1d9SDave Chinner {
762a0ec1d9SDave Chinner 	if ((ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE) && ip->i_d.di_extsize)
772a0ec1d9SDave Chinner 		return ip->i_d.di_extsize;
782a0ec1d9SDave Chinner 	if (XFS_IS_REALTIME_INODE(ip))
792a0ec1d9SDave Chinner 		return ip->i_mount->m_sb.sb_rextsize;
802a0ec1d9SDave Chinner 	return 0;
812a0ec1d9SDave Chinner }
822a0ec1d9SDave Chinner 
83fa96acadSDave Chinner /*
84f7ca3522SDarrick J. Wong  * Helper function to extract CoW extent size hint from inode.
85f7ca3522SDarrick J. Wong  * Between the extent size hint and the CoW extent size hint, we
86e153aa79SDarrick J. Wong  * return the greater of the two.  If the value is zero (automatic),
87e153aa79SDarrick J. Wong  * use the default size.
88f7ca3522SDarrick J. Wong  */
89f7ca3522SDarrick J. Wong xfs_extlen_t
90f7ca3522SDarrick J. Wong xfs_get_cowextsz_hint(
91f7ca3522SDarrick J. Wong 	struct xfs_inode	*ip)
92f7ca3522SDarrick J. Wong {
93f7ca3522SDarrick J. Wong 	xfs_extlen_t		a, b;
94f7ca3522SDarrick J. Wong 
95f7ca3522SDarrick J. Wong 	a = 0;
96f7ca3522SDarrick J. Wong 	if (ip->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE)
97f7ca3522SDarrick J. Wong 		a = ip->i_d.di_cowextsize;
98f7ca3522SDarrick J. Wong 	b = xfs_get_extsz_hint(ip);
99f7ca3522SDarrick J. Wong 
100e153aa79SDarrick J. Wong 	a = max(a, b);
101e153aa79SDarrick J. Wong 	if (a == 0)
102e153aa79SDarrick J. Wong 		return XFS_DEFAULT_COWEXTSZ_HINT;
103f7ca3522SDarrick J. Wong 	return a;
104f7ca3522SDarrick J. Wong }
105f7ca3522SDarrick J. Wong 
106f7ca3522SDarrick J. Wong /*
107efa70be1SChristoph Hellwig  * These two are wrapper routines around the xfs_ilock() routine used to
108efa70be1SChristoph Hellwig  * centralize some grungy code.  They are used in places that wish to lock the
109efa70be1SChristoph Hellwig  * inode solely for reading the extents.  The reason these places can't just
110efa70be1SChristoph Hellwig  * call xfs_ilock(ip, XFS_ILOCK_SHARED) is that the inode lock also guards to
111efa70be1SChristoph Hellwig  * bringing in of the extents from disk for a file in b-tree format.  If the
112efa70be1SChristoph Hellwig  * inode is in b-tree format, then we need to lock the inode exclusively until
113efa70be1SChristoph Hellwig  * the extents are read in.  Locking it exclusively all the time would limit
114efa70be1SChristoph Hellwig  * our parallelism unnecessarily, though.  What we do instead is check to see
115efa70be1SChristoph Hellwig  * if the extents have been read in yet, and only lock the inode exclusively
116efa70be1SChristoph Hellwig  * if they have not.
117fa96acadSDave Chinner  *
118efa70be1SChristoph Hellwig  * The functions return a value which should be given to the corresponding
11901f4f327SChristoph Hellwig  * xfs_iunlock() call.
120fa96acadSDave Chinner  */
121fa96acadSDave Chinner uint
122309ecac8SChristoph Hellwig xfs_ilock_data_map_shared(
123309ecac8SChristoph Hellwig 	struct xfs_inode	*ip)
124fa96acadSDave Chinner {
125309ecac8SChristoph Hellwig 	uint			lock_mode = XFS_ILOCK_SHARED;
126fa96acadSDave Chinner 
127309ecac8SChristoph Hellwig 	if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE &&
128309ecac8SChristoph Hellwig 	    (ip->i_df.if_flags & XFS_IFEXTENTS) == 0)
129fa96acadSDave Chinner 		lock_mode = XFS_ILOCK_EXCL;
130fa96acadSDave Chinner 	xfs_ilock(ip, lock_mode);
131fa96acadSDave Chinner 	return lock_mode;
132fa96acadSDave Chinner }
133fa96acadSDave Chinner 
134efa70be1SChristoph Hellwig uint
135efa70be1SChristoph Hellwig xfs_ilock_attr_map_shared(
136efa70be1SChristoph Hellwig 	struct xfs_inode	*ip)
137fa96acadSDave Chinner {
138efa70be1SChristoph Hellwig 	uint			lock_mode = XFS_ILOCK_SHARED;
139efa70be1SChristoph Hellwig 
140efa70be1SChristoph Hellwig 	if (ip->i_d.di_aformat == XFS_DINODE_FMT_BTREE &&
141efa70be1SChristoph Hellwig 	    (ip->i_afp->if_flags & XFS_IFEXTENTS) == 0)
142efa70be1SChristoph Hellwig 		lock_mode = XFS_ILOCK_EXCL;
143efa70be1SChristoph Hellwig 	xfs_ilock(ip, lock_mode);
144efa70be1SChristoph Hellwig 	return lock_mode;
145fa96acadSDave Chinner }
146fa96acadSDave Chinner 
147fa96acadSDave Chinner /*
14865523218SChristoph Hellwig  * In addition to i_rwsem in the VFS inode, the xfs inode contains 2
14965523218SChristoph Hellwig  * multi-reader locks: i_mmap_lock and the i_lock.  This routine allows
15065523218SChristoph Hellwig  * various combinations of the locks to be obtained.
151fa96acadSDave Chinner  *
152653c60b6SDave Chinner  * The 3 locks should always be ordered so that the IO lock is obtained first,
153653c60b6SDave Chinner  * the mmap lock second and the ilock last in order to prevent deadlock.
154fa96acadSDave Chinner  *
155653c60b6SDave Chinner  * Basic locking order:
156653c60b6SDave Chinner  *
15765523218SChristoph Hellwig  * i_rwsem -> i_mmap_lock -> page_lock -> i_ilock
158653c60b6SDave Chinner  *
159653c60b6SDave Chinner  * mmap_sem locking order:
160653c60b6SDave Chinner  *
16165523218SChristoph Hellwig  * i_rwsem -> page lock -> mmap_sem
162653c60b6SDave Chinner  * mmap_sem -> i_mmap_lock -> page_lock
163653c60b6SDave Chinner  *
164653c60b6SDave Chinner  * The difference in mmap_sem locking order mean that we cannot hold the
165653c60b6SDave Chinner  * i_mmap_lock over syscall based read(2)/write(2) based IO. These IO paths can
166653c60b6SDave Chinner  * fault in pages during copy in/out (for buffered IO) or require the mmap_sem
167653c60b6SDave Chinner  * in get_user_pages() to map the user pages into the kernel address space for
16865523218SChristoph Hellwig  * direct IO. Similarly the i_rwsem cannot be taken inside a page fault because
169653c60b6SDave Chinner  * page faults already hold the mmap_sem.
170653c60b6SDave Chinner  *
171653c60b6SDave Chinner  * Hence to serialise fully against both syscall and mmap based IO, we need to
17265523218SChristoph Hellwig  * take both the i_rwsem and the i_mmap_lock. These locks should *only* be both
173653c60b6SDave Chinner  * taken in places where we need to invalidate the page cache in a race
174653c60b6SDave Chinner  * free manner (e.g. truncate, hole punch and other extent manipulation
175653c60b6SDave Chinner  * functions).
176fa96acadSDave Chinner  */
177fa96acadSDave Chinner void
178fa96acadSDave Chinner xfs_ilock(
179fa96acadSDave Chinner 	xfs_inode_t		*ip,
180fa96acadSDave Chinner 	uint			lock_flags)
181fa96acadSDave Chinner {
182fa96acadSDave Chinner 	trace_xfs_ilock(ip, lock_flags, _RET_IP_);
183fa96acadSDave Chinner 
184fa96acadSDave Chinner 	/*
185fa96acadSDave Chinner 	 * You can't set both SHARED and EXCL for the same lock,
186fa96acadSDave Chinner 	 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
187fa96acadSDave Chinner 	 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
188fa96acadSDave Chinner 	 */
189fa96acadSDave Chinner 	ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
190fa96acadSDave Chinner 	       (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
191653c60b6SDave Chinner 	ASSERT((lock_flags & (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)) !=
192653c60b6SDave Chinner 	       (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL));
193fa96acadSDave Chinner 	ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
194fa96acadSDave Chinner 	       (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
1950952c818SDave Chinner 	ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_SUBCLASS_MASK)) == 0);
196fa96acadSDave Chinner 
19765523218SChristoph Hellwig 	if (lock_flags & XFS_IOLOCK_EXCL) {
19865523218SChristoph Hellwig 		down_write_nested(&VFS_I(ip)->i_rwsem,
19965523218SChristoph Hellwig 				  XFS_IOLOCK_DEP(lock_flags));
20065523218SChristoph Hellwig 	} else if (lock_flags & XFS_IOLOCK_SHARED) {
20165523218SChristoph Hellwig 		down_read_nested(&VFS_I(ip)->i_rwsem,
20265523218SChristoph Hellwig 				 XFS_IOLOCK_DEP(lock_flags));
20365523218SChristoph Hellwig 	}
204fa96acadSDave Chinner 
205653c60b6SDave Chinner 	if (lock_flags & XFS_MMAPLOCK_EXCL)
206653c60b6SDave Chinner 		mrupdate_nested(&ip->i_mmaplock, XFS_MMAPLOCK_DEP(lock_flags));
207653c60b6SDave Chinner 	else if (lock_flags & XFS_MMAPLOCK_SHARED)
208653c60b6SDave Chinner 		mraccess_nested(&ip->i_mmaplock, XFS_MMAPLOCK_DEP(lock_flags));
209653c60b6SDave Chinner 
210fa96acadSDave Chinner 	if (lock_flags & XFS_ILOCK_EXCL)
211fa96acadSDave Chinner 		mrupdate_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
212fa96acadSDave Chinner 	else if (lock_flags & XFS_ILOCK_SHARED)
213fa96acadSDave Chinner 		mraccess_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
214fa96acadSDave Chinner }
215fa96acadSDave Chinner 
216fa96acadSDave Chinner /*
217fa96acadSDave Chinner  * This is just like xfs_ilock(), except that the caller
218fa96acadSDave Chinner  * is guaranteed not to sleep.  It returns 1 if it gets
219fa96acadSDave Chinner  * the requested locks and 0 otherwise.  If the IO lock is
220fa96acadSDave Chinner  * obtained but the inode lock cannot be, then the IO lock
221fa96acadSDave Chinner  * is dropped before returning.
222fa96acadSDave Chinner  *
223fa96acadSDave Chinner  * ip -- the inode being locked
224fa96acadSDave Chinner  * lock_flags -- this parameter indicates the inode's locks to be
225fa96acadSDave Chinner  *       to be locked.  See the comment for xfs_ilock() for a list
226fa96acadSDave Chinner  *	 of valid values.
227fa96acadSDave Chinner  */
228fa96acadSDave Chinner int
229fa96acadSDave Chinner xfs_ilock_nowait(
230fa96acadSDave Chinner 	xfs_inode_t		*ip,
231fa96acadSDave Chinner 	uint			lock_flags)
232fa96acadSDave Chinner {
233fa96acadSDave Chinner 	trace_xfs_ilock_nowait(ip, lock_flags, _RET_IP_);
234fa96acadSDave Chinner 
235fa96acadSDave Chinner 	/*
236fa96acadSDave Chinner 	 * You can't set both SHARED and EXCL for the same lock,
237fa96acadSDave Chinner 	 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
238fa96acadSDave Chinner 	 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
239fa96acadSDave Chinner 	 */
240fa96acadSDave Chinner 	ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
241fa96acadSDave Chinner 	       (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
242653c60b6SDave Chinner 	ASSERT((lock_flags & (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)) !=
243653c60b6SDave Chinner 	       (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL));
244fa96acadSDave Chinner 	ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
245fa96acadSDave Chinner 	       (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
2460952c818SDave Chinner 	ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_SUBCLASS_MASK)) == 0);
247fa96acadSDave Chinner 
248fa96acadSDave Chinner 	if (lock_flags & XFS_IOLOCK_EXCL) {
24965523218SChristoph Hellwig 		if (!down_write_trylock(&VFS_I(ip)->i_rwsem))
250fa96acadSDave Chinner 			goto out;
251fa96acadSDave Chinner 	} else if (lock_flags & XFS_IOLOCK_SHARED) {
25265523218SChristoph Hellwig 		if (!down_read_trylock(&VFS_I(ip)->i_rwsem))
253fa96acadSDave Chinner 			goto out;
254fa96acadSDave Chinner 	}
255653c60b6SDave Chinner 
256653c60b6SDave Chinner 	if (lock_flags & XFS_MMAPLOCK_EXCL) {
257653c60b6SDave Chinner 		if (!mrtryupdate(&ip->i_mmaplock))
258653c60b6SDave Chinner 			goto out_undo_iolock;
259653c60b6SDave Chinner 	} else if (lock_flags & XFS_MMAPLOCK_SHARED) {
260653c60b6SDave Chinner 		if (!mrtryaccess(&ip->i_mmaplock))
261653c60b6SDave Chinner 			goto out_undo_iolock;
262653c60b6SDave Chinner 	}
263653c60b6SDave Chinner 
264fa96acadSDave Chinner 	if (lock_flags & XFS_ILOCK_EXCL) {
265fa96acadSDave Chinner 		if (!mrtryupdate(&ip->i_lock))
266653c60b6SDave Chinner 			goto out_undo_mmaplock;
267fa96acadSDave Chinner 	} else if (lock_flags & XFS_ILOCK_SHARED) {
268fa96acadSDave Chinner 		if (!mrtryaccess(&ip->i_lock))
269653c60b6SDave Chinner 			goto out_undo_mmaplock;
270fa96acadSDave Chinner 	}
271fa96acadSDave Chinner 	return 1;
272fa96acadSDave Chinner 
273653c60b6SDave Chinner out_undo_mmaplock:
274653c60b6SDave Chinner 	if (lock_flags & XFS_MMAPLOCK_EXCL)
275653c60b6SDave Chinner 		mrunlock_excl(&ip->i_mmaplock);
276653c60b6SDave Chinner 	else if (lock_flags & XFS_MMAPLOCK_SHARED)
277653c60b6SDave Chinner 		mrunlock_shared(&ip->i_mmaplock);
278fa96acadSDave Chinner out_undo_iolock:
279fa96acadSDave Chinner 	if (lock_flags & XFS_IOLOCK_EXCL)
28065523218SChristoph Hellwig 		up_write(&VFS_I(ip)->i_rwsem);
281fa96acadSDave Chinner 	else if (lock_flags & XFS_IOLOCK_SHARED)
28265523218SChristoph Hellwig 		up_read(&VFS_I(ip)->i_rwsem);
283fa96acadSDave Chinner out:
284fa96acadSDave Chinner 	return 0;
285fa96acadSDave Chinner }
286fa96acadSDave Chinner 
287fa96acadSDave Chinner /*
288fa96acadSDave Chinner  * xfs_iunlock() is used to drop the inode locks acquired with
289fa96acadSDave Chinner  * xfs_ilock() and xfs_ilock_nowait().  The caller must pass
290fa96acadSDave Chinner  * in the flags given to xfs_ilock() or xfs_ilock_nowait() so
291fa96acadSDave Chinner  * that we know which locks to drop.
292fa96acadSDave Chinner  *
293fa96acadSDave Chinner  * ip -- the inode being unlocked
294fa96acadSDave Chinner  * lock_flags -- this parameter indicates the inode's locks to be
295fa96acadSDave Chinner  *       to be unlocked.  See the comment for xfs_ilock() for a list
296fa96acadSDave Chinner  *	 of valid values for this parameter.
297fa96acadSDave Chinner  *
298fa96acadSDave Chinner  */
299fa96acadSDave Chinner void
300fa96acadSDave Chinner xfs_iunlock(
301fa96acadSDave Chinner 	xfs_inode_t		*ip,
302fa96acadSDave Chinner 	uint			lock_flags)
303fa96acadSDave Chinner {
304fa96acadSDave Chinner 	/*
305fa96acadSDave Chinner 	 * You can't set both SHARED and EXCL for the same lock,
306fa96acadSDave Chinner 	 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
307fa96acadSDave Chinner 	 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
308fa96acadSDave Chinner 	 */
309fa96acadSDave Chinner 	ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
310fa96acadSDave Chinner 	       (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
311653c60b6SDave Chinner 	ASSERT((lock_flags & (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)) !=
312653c60b6SDave Chinner 	       (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL));
313fa96acadSDave Chinner 	ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
314fa96acadSDave Chinner 	       (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
3150952c818SDave Chinner 	ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_SUBCLASS_MASK)) == 0);
316fa96acadSDave Chinner 	ASSERT(lock_flags != 0);
317fa96acadSDave Chinner 
318fa96acadSDave Chinner 	if (lock_flags & XFS_IOLOCK_EXCL)
31965523218SChristoph Hellwig 		up_write(&VFS_I(ip)->i_rwsem);
320fa96acadSDave Chinner 	else if (lock_flags & XFS_IOLOCK_SHARED)
32165523218SChristoph Hellwig 		up_read(&VFS_I(ip)->i_rwsem);
322fa96acadSDave Chinner 
323653c60b6SDave Chinner 	if (lock_flags & XFS_MMAPLOCK_EXCL)
324653c60b6SDave Chinner 		mrunlock_excl(&ip->i_mmaplock);
325653c60b6SDave Chinner 	else if (lock_flags & XFS_MMAPLOCK_SHARED)
326653c60b6SDave Chinner 		mrunlock_shared(&ip->i_mmaplock);
327653c60b6SDave Chinner 
328fa96acadSDave Chinner 	if (lock_flags & XFS_ILOCK_EXCL)
329fa96acadSDave Chinner 		mrunlock_excl(&ip->i_lock);
330fa96acadSDave Chinner 	else if (lock_flags & XFS_ILOCK_SHARED)
331fa96acadSDave Chinner 		mrunlock_shared(&ip->i_lock);
332fa96acadSDave Chinner 
333fa96acadSDave Chinner 	trace_xfs_iunlock(ip, lock_flags, _RET_IP_);
334fa96acadSDave Chinner }
335fa96acadSDave Chinner 
336fa96acadSDave Chinner /*
337fa96acadSDave Chinner  * give up write locks.  the i/o lock cannot be held nested
338fa96acadSDave Chinner  * if it is being demoted.
339fa96acadSDave Chinner  */
340fa96acadSDave Chinner void
341fa96acadSDave Chinner xfs_ilock_demote(
342fa96acadSDave Chinner 	xfs_inode_t		*ip,
343fa96acadSDave Chinner 	uint			lock_flags)
344fa96acadSDave Chinner {
345653c60b6SDave Chinner 	ASSERT(lock_flags & (XFS_IOLOCK_EXCL|XFS_MMAPLOCK_EXCL|XFS_ILOCK_EXCL));
346653c60b6SDave Chinner 	ASSERT((lock_flags &
347653c60b6SDave Chinner 		~(XFS_IOLOCK_EXCL|XFS_MMAPLOCK_EXCL|XFS_ILOCK_EXCL)) == 0);
348fa96acadSDave Chinner 
349fa96acadSDave Chinner 	if (lock_flags & XFS_ILOCK_EXCL)
350fa96acadSDave Chinner 		mrdemote(&ip->i_lock);
351653c60b6SDave Chinner 	if (lock_flags & XFS_MMAPLOCK_EXCL)
352653c60b6SDave Chinner 		mrdemote(&ip->i_mmaplock);
353fa96acadSDave Chinner 	if (lock_flags & XFS_IOLOCK_EXCL)
35465523218SChristoph Hellwig 		downgrade_write(&VFS_I(ip)->i_rwsem);
355fa96acadSDave Chinner 
356fa96acadSDave Chinner 	trace_xfs_ilock_demote(ip, lock_flags, _RET_IP_);
357fa96acadSDave Chinner }
358fa96acadSDave Chinner 
359742ae1e3SDave Chinner #if defined(DEBUG) || defined(XFS_WARN)
360fa96acadSDave Chinner int
361fa96acadSDave Chinner xfs_isilocked(
362fa96acadSDave Chinner 	xfs_inode_t		*ip,
363fa96acadSDave Chinner 	uint			lock_flags)
364fa96acadSDave Chinner {
365fa96acadSDave Chinner 	if (lock_flags & (XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)) {
366fa96acadSDave Chinner 		if (!(lock_flags & XFS_ILOCK_SHARED))
367fa96acadSDave Chinner 			return !!ip->i_lock.mr_writer;
368fa96acadSDave Chinner 		return rwsem_is_locked(&ip->i_lock.mr_lock);
369fa96acadSDave Chinner 	}
370fa96acadSDave Chinner 
371653c60b6SDave Chinner 	if (lock_flags & (XFS_MMAPLOCK_EXCL|XFS_MMAPLOCK_SHARED)) {
372653c60b6SDave Chinner 		if (!(lock_flags & XFS_MMAPLOCK_SHARED))
373653c60b6SDave Chinner 			return !!ip->i_mmaplock.mr_writer;
374653c60b6SDave Chinner 		return rwsem_is_locked(&ip->i_mmaplock.mr_lock);
375653c60b6SDave Chinner 	}
376653c60b6SDave Chinner 
377fa96acadSDave Chinner 	if (lock_flags & (XFS_IOLOCK_EXCL|XFS_IOLOCK_SHARED)) {
378fa96acadSDave Chinner 		if (!(lock_flags & XFS_IOLOCK_SHARED))
37965523218SChristoph Hellwig 			return !debug_locks ||
38065523218SChristoph Hellwig 				lockdep_is_held_type(&VFS_I(ip)->i_rwsem, 0);
38165523218SChristoph Hellwig 		return rwsem_is_locked(&VFS_I(ip)->i_rwsem);
382fa96acadSDave Chinner 	}
383fa96acadSDave Chinner 
384fa96acadSDave Chinner 	ASSERT(0);
385fa96acadSDave Chinner 	return 0;
386fa96acadSDave Chinner }
387fa96acadSDave Chinner #endif
388fa96acadSDave Chinner 
389b6a9947eSDave Chinner /*
390b6a9947eSDave Chinner  * xfs_lockdep_subclass_ok() is only used in an ASSERT, so is only called when
391b6a9947eSDave Chinner  * DEBUG or XFS_WARN is set. And MAX_LOCKDEP_SUBCLASSES is then only defined
392b6a9947eSDave Chinner  * when CONFIG_LOCKDEP is set. Hence the complex define below to avoid build
393b6a9947eSDave Chinner  * errors and warnings.
394b6a9947eSDave Chinner  */
395b6a9947eSDave Chinner #if (defined(DEBUG) || defined(XFS_WARN)) && defined(CONFIG_LOCKDEP)
3963403ccc0SDave Chinner static bool
3973403ccc0SDave Chinner xfs_lockdep_subclass_ok(
3983403ccc0SDave Chinner 	int subclass)
3993403ccc0SDave Chinner {
4003403ccc0SDave Chinner 	return subclass < MAX_LOCKDEP_SUBCLASSES;
4013403ccc0SDave Chinner }
4023403ccc0SDave Chinner #else
4033403ccc0SDave Chinner #define xfs_lockdep_subclass_ok(subclass)	(true)
4043403ccc0SDave Chinner #endif
4053403ccc0SDave Chinner 
406c24b5dfaSDave Chinner /*
407653c60b6SDave Chinner  * Bump the subclass so xfs_lock_inodes() acquires each lock with a different
4080952c818SDave Chinner  * value. This can be called for any type of inode lock combination, including
4090952c818SDave Chinner  * parent locking. Care must be taken to ensure we don't overrun the subclass
4100952c818SDave Chinner  * storage fields in the class mask we build.
411c24b5dfaSDave Chinner  */
412c24b5dfaSDave Chinner static inline int
413c24b5dfaSDave Chinner xfs_lock_inumorder(int lock_mode, int subclass)
414c24b5dfaSDave Chinner {
4150952c818SDave Chinner 	int	class = 0;
4160952c818SDave Chinner 
4170952c818SDave Chinner 	ASSERT(!(lock_mode & (XFS_ILOCK_PARENT | XFS_ILOCK_RTBITMAP |
4180952c818SDave Chinner 			      XFS_ILOCK_RTSUM)));
4193403ccc0SDave Chinner 	ASSERT(xfs_lockdep_subclass_ok(subclass));
4200952c818SDave Chinner 
421653c60b6SDave Chinner 	if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL)) {
4220952c818SDave Chinner 		ASSERT(subclass <= XFS_IOLOCK_MAX_SUBCLASS);
4230952c818SDave Chinner 		class += subclass << XFS_IOLOCK_SHIFT;
424653c60b6SDave Chinner 	}
425653c60b6SDave Chinner 
426653c60b6SDave Chinner 	if (lock_mode & (XFS_MMAPLOCK_SHARED|XFS_MMAPLOCK_EXCL)) {
4270952c818SDave Chinner 		ASSERT(subclass <= XFS_MMAPLOCK_MAX_SUBCLASS);
4280952c818SDave Chinner 		class += subclass << XFS_MMAPLOCK_SHIFT;
429653c60b6SDave Chinner 	}
430653c60b6SDave Chinner 
4310952c818SDave Chinner 	if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) {
4320952c818SDave Chinner 		ASSERT(subclass <= XFS_ILOCK_MAX_SUBCLASS);
4330952c818SDave Chinner 		class += subclass << XFS_ILOCK_SHIFT;
4340952c818SDave Chinner 	}
435c24b5dfaSDave Chinner 
4360952c818SDave Chinner 	return (lock_mode & ~XFS_LOCK_SUBCLASS_MASK) | class;
437c24b5dfaSDave Chinner }
438c24b5dfaSDave Chinner 
439c24b5dfaSDave Chinner /*
44095afcf5cSDave Chinner  * The following routine will lock n inodes in exclusive mode.  We assume the
44195afcf5cSDave Chinner  * caller calls us with the inodes in i_ino order.
442c24b5dfaSDave Chinner  *
44395afcf5cSDave Chinner  * We need to detect deadlock where an inode that we lock is in the AIL and we
44495afcf5cSDave Chinner  * start waiting for another inode that is locked by a thread in a long running
44595afcf5cSDave Chinner  * transaction (such as truncate). This can result in deadlock since the long
44695afcf5cSDave Chinner  * running trans might need to wait for the inode we just locked in order to
44795afcf5cSDave Chinner  * push the tail and free space in the log.
4480952c818SDave Chinner  *
4490952c818SDave Chinner  * xfs_lock_inodes() can only be used to lock one type of lock at a time -
4500952c818SDave Chinner  * the iolock, the mmaplock or the ilock, but not more than one at a time. If we
4510952c818SDave Chinner  * lock more than one at a time, lockdep will report false positives saying we
4520952c818SDave Chinner  * have violated locking orders.
453c24b5dfaSDave Chinner  */
4540d5a75e9SEric Sandeen static void
455c24b5dfaSDave Chinner xfs_lock_inodes(
456c24b5dfaSDave Chinner 	xfs_inode_t	**ips,
457c24b5dfaSDave Chinner 	int		inodes,
458c24b5dfaSDave Chinner 	uint		lock_mode)
459c24b5dfaSDave Chinner {
460c24b5dfaSDave Chinner 	int		attempts = 0, i, j, try_lock;
461c24b5dfaSDave Chinner 	xfs_log_item_t	*lp;
462c24b5dfaSDave Chinner 
4630952c818SDave Chinner 	/*
4640952c818SDave Chinner 	 * Currently supports between 2 and 5 inodes with exclusive locking.  We
4650952c818SDave Chinner 	 * support an arbitrary depth of locking here, but absolute limits on
4660952c818SDave Chinner 	 * inodes depend on the the type of locking and the limits placed by
4670952c818SDave Chinner 	 * lockdep annotations in xfs_lock_inumorder.  These are all checked by
4680952c818SDave Chinner 	 * the asserts.
4690952c818SDave Chinner 	 */
47095afcf5cSDave Chinner 	ASSERT(ips && inodes >= 2 && inodes <= 5);
4710952c818SDave Chinner 	ASSERT(lock_mode & (XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL |
4720952c818SDave Chinner 			    XFS_ILOCK_EXCL));
4730952c818SDave Chinner 	ASSERT(!(lock_mode & (XFS_IOLOCK_SHARED | XFS_MMAPLOCK_SHARED |
4740952c818SDave Chinner 			      XFS_ILOCK_SHARED)));
4750952c818SDave Chinner 	ASSERT(!(lock_mode & XFS_MMAPLOCK_EXCL) ||
4760952c818SDave Chinner 		inodes <= XFS_MMAPLOCK_MAX_SUBCLASS + 1);
4770952c818SDave Chinner 	ASSERT(!(lock_mode & XFS_ILOCK_EXCL) ||
4780952c818SDave Chinner 		inodes <= XFS_ILOCK_MAX_SUBCLASS + 1);
4790952c818SDave Chinner 
4800952c818SDave Chinner 	if (lock_mode & XFS_IOLOCK_EXCL) {
4810952c818SDave Chinner 		ASSERT(!(lock_mode & (XFS_MMAPLOCK_EXCL | XFS_ILOCK_EXCL)));
4820952c818SDave Chinner 	} else if (lock_mode & XFS_MMAPLOCK_EXCL)
4830952c818SDave Chinner 		ASSERT(!(lock_mode & XFS_ILOCK_EXCL));
484c24b5dfaSDave Chinner 
485c24b5dfaSDave Chinner 	try_lock = 0;
486c24b5dfaSDave Chinner 	i = 0;
487c24b5dfaSDave Chinner again:
488c24b5dfaSDave Chinner 	for (; i < inodes; i++) {
489c24b5dfaSDave Chinner 		ASSERT(ips[i]);
490c24b5dfaSDave Chinner 
491c24b5dfaSDave Chinner 		if (i && (ips[i] == ips[i - 1]))	/* Already locked */
492c24b5dfaSDave Chinner 			continue;
493c24b5dfaSDave Chinner 
494c24b5dfaSDave Chinner 		/*
49595afcf5cSDave Chinner 		 * If try_lock is not set yet, make sure all locked inodes are
49695afcf5cSDave Chinner 		 * not in the AIL.  If any are, set try_lock to be used later.
497c24b5dfaSDave Chinner 		 */
498c24b5dfaSDave Chinner 		if (!try_lock) {
499c24b5dfaSDave Chinner 			for (j = (i - 1); j >= 0 && !try_lock; j--) {
500c24b5dfaSDave Chinner 				lp = (xfs_log_item_t *)ips[j]->i_itemp;
501*22525c17SDave Chinner 				if (lp && test_bit(XFS_LI_IN_AIL, &lp->li_flags))
502c24b5dfaSDave Chinner 					try_lock++;
503c24b5dfaSDave Chinner 			}
504c24b5dfaSDave Chinner 		}
505c24b5dfaSDave Chinner 
506c24b5dfaSDave Chinner 		/*
507c24b5dfaSDave Chinner 		 * If any of the previous locks we have locked is in the AIL,
508c24b5dfaSDave Chinner 		 * we must TRY to get the second and subsequent locks. If
509c24b5dfaSDave Chinner 		 * we can't get any, we must release all we have
510c24b5dfaSDave Chinner 		 * and try again.
511c24b5dfaSDave Chinner 		 */
51295afcf5cSDave Chinner 		if (!try_lock) {
51395afcf5cSDave Chinner 			xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
51495afcf5cSDave Chinner 			continue;
51595afcf5cSDave Chinner 		}
516c24b5dfaSDave Chinner 
51795afcf5cSDave Chinner 		/* try_lock means we have an inode locked that is in the AIL. */
518c24b5dfaSDave Chinner 		ASSERT(i != 0);
51995afcf5cSDave Chinner 		if (xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i)))
52095afcf5cSDave Chinner 			continue;
52195afcf5cSDave Chinner 
52295afcf5cSDave Chinner 		/*
52395afcf5cSDave Chinner 		 * Unlock all previous guys and try again.  xfs_iunlock will try
52495afcf5cSDave Chinner 		 * to push the tail if the inode is in the AIL.
52595afcf5cSDave Chinner 		 */
526c24b5dfaSDave Chinner 		attempts++;
527c24b5dfaSDave Chinner 		for (j = i - 1; j >= 0; j--) {
528c24b5dfaSDave Chinner 			/*
52995afcf5cSDave Chinner 			 * Check to see if we've already unlocked this one.  Not
53095afcf5cSDave Chinner 			 * the first one going back, and the inode ptr is the
53195afcf5cSDave Chinner 			 * same.
532c24b5dfaSDave Chinner 			 */
53395afcf5cSDave Chinner 			if (j != (i - 1) && ips[j] == ips[j + 1])
534c24b5dfaSDave Chinner 				continue;
535c24b5dfaSDave Chinner 
536c24b5dfaSDave Chinner 			xfs_iunlock(ips[j], lock_mode);
537c24b5dfaSDave Chinner 		}
538c24b5dfaSDave Chinner 
539c24b5dfaSDave Chinner 		if ((attempts % 5) == 0) {
540c24b5dfaSDave Chinner 			delay(1); /* Don't just spin the CPU */
541c24b5dfaSDave Chinner 		}
542c24b5dfaSDave Chinner 		i = 0;
543c24b5dfaSDave Chinner 		try_lock = 0;
544c24b5dfaSDave Chinner 		goto again;
545c24b5dfaSDave Chinner 	}
546c24b5dfaSDave Chinner }
547c24b5dfaSDave Chinner 
548c24b5dfaSDave Chinner /*
549653c60b6SDave Chinner  * xfs_lock_two_inodes() can only be used to lock one type of lock at a time -
5507c2d238aSDarrick J. Wong  * the mmaplock or the ilock, but not more than one type at a time. If we lock
5517c2d238aSDarrick J. Wong  * more than one at a time, lockdep will report false positives saying we have
5527c2d238aSDarrick J. Wong  * violated locking orders.  The iolock must be double-locked separately since
5537c2d238aSDarrick J. Wong  * we use i_rwsem for that.  We now support taking one lock EXCL and the other
5547c2d238aSDarrick J. Wong  * SHARED.
555c24b5dfaSDave Chinner  */
556c24b5dfaSDave Chinner void
557c24b5dfaSDave Chinner xfs_lock_two_inodes(
5587c2d238aSDarrick J. Wong 	struct xfs_inode	*ip0,
5597c2d238aSDarrick J. Wong 	uint			ip0_mode,
5607c2d238aSDarrick J. Wong 	struct xfs_inode	*ip1,
5617c2d238aSDarrick J. Wong 	uint			ip1_mode)
562c24b5dfaSDave Chinner {
5637c2d238aSDarrick J. Wong 	struct xfs_inode	*temp;
5647c2d238aSDarrick J. Wong 	uint			mode_temp;
565c24b5dfaSDave Chinner 	int			attempts = 0;
566c24b5dfaSDave Chinner 	xfs_log_item_t		*lp;
567c24b5dfaSDave Chinner 
5687c2d238aSDarrick J. Wong 	ASSERT(hweight32(ip0_mode) == 1);
5697c2d238aSDarrick J. Wong 	ASSERT(hweight32(ip1_mode) == 1);
5707c2d238aSDarrick J. Wong 	ASSERT(!(ip0_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL)));
5717c2d238aSDarrick J. Wong 	ASSERT(!(ip1_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL)));
5727c2d238aSDarrick J. Wong 	ASSERT(!(ip0_mode & (XFS_MMAPLOCK_SHARED|XFS_MMAPLOCK_EXCL)) ||
5737c2d238aSDarrick J. Wong 	       !(ip0_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)));
5747c2d238aSDarrick J. Wong 	ASSERT(!(ip1_mode & (XFS_MMAPLOCK_SHARED|XFS_MMAPLOCK_EXCL)) ||
5757c2d238aSDarrick J. Wong 	       !(ip1_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)));
5767c2d238aSDarrick J. Wong 	ASSERT(!(ip1_mode & (XFS_MMAPLOCK_SHARED|XFS_MMAPLOCK_EXCL)) ||
5777c2d238aSDarrick J. Wong 	       !(ip0_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)));
5787c2d238aSDarrick J. Wong 	ASSERT(!(ip0_mode & (XFS_MMAPLOCK_SHARED|XFS_MMAPLOCK_EXCL)) ||
5797c2d238aSDarrick J. Wong 	       !(ip1_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)));
580653c60b6SDave Chinner 
581c24b5dfaSDave Chinner 	ASSERT(ip0->i_ino != ip1->i_ino);
582c24b5dfaSDave Chinner 
583c24b5dfaSDave Chinner 	if (ip0->i_ino > ip1->i_ino) {
584c24b5dfaSDave Chinner 		temp = ip0;
585c24b5dfaSDave Chinner 		ip0 = ip1;
586c24b5dfaSDave Chinner 		ip1 = temp;
5877c2d238aSDarrick J. Wong 		mode_temp = ip0_mode;
5887c2d238aSDarrick J. Wong 		ip0_mode = ip1_mode;
5897c2d238aSDarrick J. Wong 		ip1_mode = mode_temp;
590c24b5dfaSDave Chinner 	}
591c24b5dfaSDave Chinner 
592c24b5dfaSDave Chinner  again:
5937c2d238aSDarrick J. Wong 	xfs_ilock(ip0, xfs_lock_inumorder(ip0_mode, 0));
594c24b5dfaSDave Chinner 
595c24b5dfaSDave Chinner 	/*
596c24b5dfaSDave Chinner 	 * If the first lock we have locked is in the AIL, we must TRY to get
597c24b5dfaSDave Chinner 	 * the second lock. If we can't get it, we must release the first one
598c24b5dfaSDave Chinner 	 * and try again.
599c24b5dfaSDave Chinner 	 */
600c24b5dfaSDave Chinner 	lp = (xfs_log_item_t *)ip0->i_itemp;
601*22525c17SDave Chinner 	if (lp && test_bit(XFS_LI_IN_AIL, &lp->li_flags)) {
6027c2d238aSDarrick J. Wong 		if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(ip1_mode, 1))) {
6037c2d238aSDarrick J. Wong 			xfs_iunlock(ip0, ip0_mode);
604c24b5dfaSDave Chinner 			if ((++attempts % 5) == 0)
605c24b5dfaSDave Chinner 				delay(1); /* Don't just spin the CPU */
606c24b5dfaSDave Chinner 			goto again;
607c24b5dfaSDave Chinner 		}
608c24b5dfaSDave Chinner 	} else {
6097c2d238aSDarrick J. Wong 		xfs_ilock(ip1, xfs_lock_inumorder(ip1_mode, 1));
610c24b5dfaSDave Chinner 	}
611c24b5dfaSDave Chinner }
612c24b5dfaSDave Chinner 
613fa96acadSDave Chinner void
614fa96acadSDave Chinner __xfs_iflock(
615fa96acadSDave Chinner 	struct xfs_inode	*ip)
616fa96acadSDave Chinner {
617fa96acadSDave Chinner 	wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IFLOCK_BIT);
618fa96acadSDave Chinner 	DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IFLOCK_BIT);
619fa96acadSDave Chinner 
620fa96acadSDave Chinner 	do {
62121417136SIngo Molnar 		prepare_to_wait_exclusive(wq, &wait.wq_entry, TASK_UNINTERRUPTIBLE);
622fa96acadSDave Chinner 		if (xfs_isiflocked(ip))
623fa96acadSDave Chinner 			io_schedule();
624fa96acadSDave Chinner 	} while (!xfs_iflock_nowait(ip));
625fa96acadSDave Chinner 
62621417136SIngo Molnar 	finish_wait(wq, &wait.wq_entry);
627fa96acadSDave Chinner }
628fa96acadSDave Chinner 
6291da177e4SLinus Torvalds STATIC uint
6301da177e4SLinus Torvalds _xfs_dic2xflags(
631c8ce540dSDarrick J. Wong 	uint16_t		di_flags,
63258f88ca2SDave Chinner 	uint64_t		di_flags2,
63358f88ca2SDave Chinner 	bool			has_attr)
6341da177e4SLinus Torvalds {
6351da177e4SLinus Torvalds 	uint			flags = 0;
6361da177e4SLinus Torvalds 
6371da177e4SLinus Torvalds 	if (di_flags & XFS_DIFLAG_ANY) {
6381da177e4SLinus Torvalds 		if (di_flags & XFS_DIFLAG_REALTIME)
639e7b89481SDave Chinner 			flags |= FS_XFLAG_REALTIME;
6401da177e4SLinus Torvalds 		if (di_flags & XFS_DIFLAG_PREALLOC)
641e7b89481SDave Chinner 			flags |= FS_XFLAG_PREALLOC;
6421da177e4SLinus Torvalds 		if (di_flags & XFS_DIFLAG_IMMUTABLE)
643e7b89481SDave Chinner 			flags |= FS_XFLAG_IMMUTABLE;
6441da177e4SLinus Torvalds 		if (di_flags & XFS_DIFLAG_APPEND)
645e7b89481SDave Chinner 			flags |= FS_XFLAG_APPEND;
6461da177e4SLinus Torvalds 		if (di_flags & XFS_DIFLAG_SYNC)
647e7b89481SDave Chinner 			flags |= FS_XFLAG_SYNC;
6481da177e4SLinus Torvalds 		if (di_flags & XFS_DIFLAG_NOATIME)
649e7b89481SDave Chinner 			flags |= FS_XFLAG_NOATIME;
6501da177e4SLinus Torvalds 		if (di_flags & XFS_DIFLAG_NODUMP)
651e7b89481SDave Chinner 			flags |= FS_XFLAG_NODUMP;
6521da177e4SLinus Torvalds 		if (di_flags & XFS_DIFLAG_RTINHERIT)
653e7b89481SDave Chinner 			flags |= FS_XFLAG_RTINHERIT;
6541da177e4SLinus Torvalds 		if (di_flags & XFS_DIFLAG_PROJINHERIT)
655e7b89481SDave Chinner 			flags |= FS_XFLAG_PROJINHERIT;
6561da177e4SLinus Torvalds 		if (di_flags & XFS_DIFLAG_NOSYMLINKS)
657e7b89481SDave Chinner 			flags |= FS_XFLAG_NOSYMLINKS;
658dd9f438eSNathan Scott 		if (di_flags & XFS_DIFLAG_EXTSIZE)
659e7b89481SDave Chinner 			flags |= FS_XFLAG_EXTSIZE;
660dd9f438eSNathan Scott 		if (di_flags & XFS_DIFLAG_EXTSZINHERIT)
661e7b89481SDave Chinner 			flags |= FS_XFLAG_EXTSZINHERIT;
662d3446eacSBarry Naujok 		if (di_flags & XFS_DIFLAG_NODEFRAG)
663e7b89481SDave Chinner 			flags |= FS_XFLAG_NODEFRAG;
6642a82b8beSDavid Chinner 		if (di_flags & XFS_DIFLAG_FILESTREAM)
665e7b89481SDave Chinner 			flags |= FS_XFLAG_FILESTREAM;
6661da177e4SLinus Torvalds 	}
6671da177e4SLinus Torvalds 
66858f88ca2SDave Chinner 	if (di_flags2 & XFS_DIFLAG2_ANY) {
66958f88ca2SDave Chinner 		if (di_flags2 & XFS_DIFLAG2_DAX)
67058f88ca2SDave Chinner 			flags |= FS_XFLAG_DAX;
671f7ca3522SDarrick J. Wong 		if (di_flags2 & XFS_DIFLAG2_COWEXTSIZE)
672f7ca3522SDarrick J. Wong 			flags |= FS_XFLAG_COWEXTSIZE;
67358f88ca2SDave Chinner 	}
67458f88ca2SDave Chinner 
67558f88ca2SDave Chinner 	if (has_attr)
67658f88ca2SDave Chinner 		flags |= FS_XFLAG_HASATTR;
67758f88ca2SDave Chinner 
6781da177e4SLinus Torvalds 	return flags;
6791da177e4SLinus Torvalds }
6801da177e4SLinus Torvalds 
6811da177e4SLinus Torvalds uint
6821da177e4SLinus Torvalds xfs_ip2xflags(
68358f88ca2SDave Chinner 	struct xfs_inode	*ip)
6841da177e4SLinus Torvalds {
68558f88ca2SDave Chinner 	struct xfs_icdinode	*dic = &ip->i_d;
6861da177e4SLinus Torvalds 
68758f88ca2SDave Chinner 	return _xfs_dic2xflags(dic->di_flags, dic->di_flags2, XFS_IFORK_Q(ip));
6881da177e4SLinus Torvalds }
6891da177e4SLinus Torvalds 
6901da177e4SLinus Torvalds /*
691c24b5dfaSDave Chinner  * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
692c24b5dfaSDave Chinner  * is allowed, otherwise it has to be an exact match. If a CI match is found,
693c24b5dfaSDave Chinner  * ci_name->name will point to a the actual name (caller must free) or
694c24b5dfaSDave Chinner  * will be set to NULL if an exact match is found.
695c24b5dfaSDave Chinner  */
696c24b5dfaSDave Chinner int
697c24b5dfaSDave Chinner xfs_lookup(
698c24b5dfaSDave Chinner 	xfs_inode_t		*dp,
699c24b5dfaSDave Chinner 	struct xfs_name		*name,
700c24b5dfaSDave Chinner 	xfs_inode_t		**ipp,
701c24b5dfaSDave Chinner 	struct xfs_name		*ci_name)
702c24b5dfaSDave Chinner {
703c24b5dfaSDave Chinner 	xfs_ino_t		inum;
704c24b5dfaSDave Chinner 	int			error;
705c24b5dfaSDave Chinner 
706c24b5dfaSDave Chinner 	trace_xfs_lookup(dp, name);
707c24b5dfaSDave Chinner 
708c24b5dfaSDave Chinner 	if (XFS_FORCED_SHUTDOWN(dp->i_mount))
7092451337dSDave Chinner 		return -EIO;
710c24b5dfaSDave Chinner 
711c24b5dfaSDave Chinner 	error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
712c24b5dfaSDave Chinner 	if (error)
713dbad7c99SDave Chinner 		goto out_unlock;
714c24b5dfaSDave Chinner 
715c24b5dfaSDave Chinner 	error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp);
716c24b5dfaSDave Chinner 	if (error)
717c24b5dfaSDave Chinner 		goto out_free_name;
718c24b5dfaSDave Chinner 
719c24b5dfaSDave Chinner 	return 0;
720c24b5dfaSDave Chinner 
721c24b5dfaSDave Chinner out_free_name:
722c24b5dfaSDave Chinner 	if (ci_name)
723c24b5dfaSDave Chinner 		kmem_free(ci_name->name);
724dbad7c99SDave Chinner out_unlock:
725c24b5dfaSDave Chinner 	*ipp = NULL;
726c24b5dfaSDave Chinner 	return error;
727c24b5dfaSDave Chinner }
728c24b5dfaSDave Chinner 
729c24b5dfaSDave Chinner /*
7301da177e4SLinus Torvalds  * Allocate an inode on disk and return a copy of its in-core version.
7311da177e4SLinus Torvalds  * The in-core inode is locked exclusively.  Set mode, nlink, and rdev
7321da177e4SLinus Torvalds  * appropriately within the inode.  The uid and gid for the inode are
7331da177e4SLinus Torvalds  * set according to the contents of the given cred structure.
7341da177e4SLinus Torvalds  *
7351da177e4SLinus Torvalds  * Use xfs_dialloc() to allocate the on-disk inode. If xfs_dialloc()
736cd856db6SCarlos Maiolino  * has a free inode available, call xfs_iget() to obtain the in-core
737cd856db6SCarlos Maiolino  * version of the allocated inode.  Finally, fill in the inode and
738cd856db6SCarlos Maiolino  * log its initial contents.  In this case, ialloc_context would be
739cd856db6SCarlos Maiolino  * set to NULL.
7401da177e4SLinus Torvalds  *
741cd856db6SCarlos Maiolino  * If xfs_dialloc() does not have an available inode, it will replenish
742cd856db6SCarlos Maiolino  * its supply by doing an allocation. Since we can only do one
743cd856db6SCarlos Maiolino  * allocation within a transaction without deadlocks, we must commit
744cd856db6SCarlos Maiolino  * the current transaction before returning the inode itself.
745cd856db6SCarlos Maiolino  * In this case, therefore, we will set ialloc_context and return.
7461da177e4SLinus Torvalds  * The caller should then commit the current transaction, start a new
7471da177e4SLinus Torvalds  * transaction, and call xfs_ialloc() again to actually get the inode.
7481da177e4SLinus Torvalds  *
7491da177e4SLinus Torvalds  * To ensure that some other process does not grab the inode that
7501da177e4SLinus Torvalds  * was allocated during the first call to xfs_ialloc(), this routine
7511da177e4SLinus Torvalds  * also returns the [locked] bp pointing to the head of the freelist
7521da177e4SLinus Torvalds  * as ialloc_context.  The caller should hold this buffer across
7531da177e4SLinus Torvalds  * the commit and pass it back into this routine on the second call.
754b11f94d5SDavid Chinner  *
755b11f94d5SDavid Chinner  * If we are allocating quota inodes, we do not have a parent inode
756b11f94d5SDavid Chinner  * to attach to or associate with (i.e. pip == NULL) because they
757b11f94d5SDavid Chinner  * are not linked into the directory structure - they are attached
758b11f94d5SDavid Chinner  * directly to the superblock - and so have no parent.
7591da177e4SLinus Torvalds  */
7600d5a75e9SEric Sandeen static int
7611da177e4SLinus Torvalds xfs_ialloc(
7621da177e4SLinus Torvalds 	xfs_trans_t	*tp,
7631da177e4SLinus Torvalds 	xfs_inode_t	*pip,
764576b1d67SAl Viro 	umode_t		mode,
76531b084aeSNathan Scott 	xfs_nlink_t	nlink,
76666f36464SChristoph Hellwig 	dev_t		rdev,
7676743099cSArkadiusz Mi?kiewicz 	prid_t		prid,
7681da177e4SLinus Torvalds 	xfs_buf_t	**ialloc_context,
7691da177e4SLinus Torvalds 	xfs_inode_t	**ipp)
7701da177e4SLinus Torvalds {
77193848a99SChristoph Hellwig 	struct xfs_mount *mp = tp->t_mountp;
7721da177e4SLinus Torvalds 	xfs_ino_t	ino;
7731da177e4SLinus Torvalds 	xfs_inode_t	*ip;
7741da177e4SLinus Torvalds 	uint		flags;
7751da177e4SLinus Torvalds 	int		error;
776e076b0f3SDave Chinner 	struct timespec	tv;
7773987848cSDave Chinner 	struct inode	*inode;
7781da177e4SLinus Torvalds 
7791da177e4SLinus Torvalds 	/*
7801da177e4SLinus Torvalds 	 * Call the space management code to pick
7811da177e4SLinus Torvalds 	 * the on-disk inode to be allocated.
7821da177e4SLinus Torvalds 	 */
783f59cf5c2SChristoph Hellwig 	error = xfs_dialloc(tp, pip ? pip->i_ino : 0, mode,
78408358906SChristoph Hellwig 			    ialloc_context, &ino);
785bf904248SDavid Chinner 	if (error)
7861da177e4SLinus Torvalds 		return error;
78708358906SChristoph Hellwig 	if (*ialloc_context || ino == NULLFSINO) {
7881da177e4SLinus Torvalds 		*ipp = NULL;
7891da177e4SLinus Torvalds 		return 0;
7901da177e4SLinus Torvalds 	}
7911da177e4SLinus Torvalds 	ASSERT(*ialloc_context == NULL);
7921da177e4SLinus Torvalds 
7931da177e4SLinus Torvalds 	/*
7948b26984dSDave Chinner 	 * Protect against obviously corrupt allocation btree records. Later
7958b26984dSDave Chinner 	 * xfs_iget checks will catch re-allocation of other active in-memory
7968b26984dSDave Chinner 	 * and on-disk inodes. If we don't catch reallocating the parent inode
7978b26984dSDave Chinner 	 * here we will deadlock in xfs_iget() so we have to do these checks
7988b26984dSDave Chinner 	 * first.
7998b26984dSDave Chinner 	 */
8008b26984dSDave Chinner 	if ((pip && ino == pip->i_ino) || !xfs_verify_dir_ino(mp, ino)) {
8018b26984dSDave Chinner 		xfs_alert(mp, "Allocated a known in-use inode 0x%llx!", ino);
8028b26984dSDave Chinner 		return -EFSCORRUPTED;
8038b26984dSDave Chinner 	}
8048b26984dSDave Chinner 
8058b26984dSDave Chinner 	/*
8061da177e4SLinus Torvalds 	 * Get the in-core inode with the lock held exclusively.
8071da177e4SLinus Torvalds 	 * This is because we're setting fields here we need
8081da177e4SLinus Torvalds 	 * to prevent others from looking at until we're done.
8091da177e4SLinus Torvalds 	 */
81093848a99SChristoph Hellwig 	error = xfs_iget(mp, tp, ino, XFS_IGET_CREATE,
811ec3ba85fSChristoph Hellwig 			 XFS_ILOCK_EXCL, &ip);
812bf904248SDavid Chinner 	if (error)
8131da177e4SLinus Torvalds 		return error;
8141da177e4SLinus Torvalds 	ASSERT(ip != NULL);
8153987848cSDave Chinner 	inode = VFS_I(ip);
8161da177e4SLinus Torvalds 
817263997a6SDave Chinner 	/*
818263997a6SDave Chinner 	 * We always convert v1 inodes to v2 now - we only support filesystems
819263997a6SDave Chinner 	 * with >= v2 inode capability, so there is no reason for ever leaving
820263997a6SDave Chinner 	 * an inode in v1 format.
821263997a6SDave Chinner 	 */
822263997a6SDave Chinner 	if (ip->i_d.di_version == 1)
823263997a6SDave Chinner 		ip->i_d.di_version = 2;
824263997a6SDave Chinner 
825c19b3b05SDave Chinner 	inode->i_mode = mode;
82654d7b5c1SDave Chinner 	set_nlink(inode, nlink);
8277aab1b28SDwight Engen 	ip->i_d.di_uid = xfs_kuid_to_uid(current_fsuid());
8287aab1b28SDwight Engen 	ip->i_d.di_gid = xfs_kgid_to_gid(current_fsgid());
82966f36464SChristoph Hellwig 	inode->i_rdev = rdev;
8306743099cSArkadiusz Mi?kiewicz 	xfs_set_projid(ip, prid);
8311da177e4SLinus Torvalds 
832bd186aa9SChristoph Hellwig 	if (pip && XFS_INHERIT_GID(pip)) {
8331da177e4SLinus Torvalds 		ip->i_d.di_gid = pip->i_d.di_gid;
834c19b3b05SDave Chinner 		if ((VFS_I(pip)->i_mode & S_ISGID) && S_ISDIR(mode))
835c19b3b05SDave Chinner 			inode->i_mode |= S_ISGID;
8361da177e4SLinus Torvalds 	}
8371da177e4SLinus Torvalds 
8381da177e4SLinus Torvalds 	/*
8391da177e4SLinus Torvalds 	 * If the group ID of the new file does not match the effective group
8401da177e4SLinus Torvalds 	 * ID or one of the supplementary group IDs, the S_ISGID bit is cleared
8411da177e4SLinus Torvalds 	 * (and only if the irix_sgid_inherit compatibility variable is set).
8421da177e4SLinus Torvalds 	 */
8431da177e4SLinus Torvalds 	if ((irix_sgid_inherit) &&
844c19b3b05SDave Chinner 	    (inode->i_mode & S_ISGID) &&
845c19b3b05SDave Chinner 	    (!in_group_p(xfs_gid_to_kgid(ip->i_d.di_gid))))
846c19b3b05SDave Chinner 		inode->i_mode &= ~S_ISGID;
8471da177e4SLinus Torvalds 
8481da177e4SLinus Torvalds 	ip->i_d.di_size = 0;
8491da177e4SLinus Torvalds 	ip->i_d.di_nextents = 0;
8501da177e4SLinus Torvalds 	ASSERT(ip->i_d.di_nblocks == 0);
851dff35fd4SChristoph Hellwig 
852c2050a45SDeepa Dinamani 	tv = current_time(inode);
8533987848cSDave Chinner 	inode->i_mtime = tv;
8543987848cSDave Chinner 	inode->i_atime = tv;
8553987848cSDave Chinner 	inode->i_ctime = tv;
856dff35fd4SChristoph Hellwig 
8571da177e4SLinus Torvalds 	ip->i_d.di_extsize = 0;
8581da177e4SLinus Torvalds 	ip->i_d.di_dmevmask = 0;
8591da177e4SLinus Torvalds 	ip->i_d.di_dmstate = 0;
8601da177e4SLinus Torvalds 	ip->i_d.di_flags = 0;
86193848a99SChristoph Hellwig 
86293848a99SChristoph Hellwig 	if (ip->i_d.di_version == 3) {
863f0e28280SJeff Layton 		inode_set_iversion(inode, 1);
86493848a99SChristoph Hellwig 		ip->i_d.di_flags2 = 0;
865f7ca3522SDarrick J. Wong 		ip->i_d.di_cowextsize = 0;
866c8ce540dSDarrick J. Wong 		ip->i_d.di_crtime.t_sec = (int32_t)tv.tv_sec;
867c8ce540dSDarrick J. Wong 		ip->i_d.di_crtime.t_nsec = (int32_t)tv.tv_nsec;
86893848a99SChristoph Hellwig 	}
86993848a99SChristoph Hellwig 
87093848a99SChristoph Hellwig 
8711da177e4SLinus Torvalds 	flags = XFS_ILOG_CORE;
8721da177e4SLinus Torvalds 	switch (mode & S_IFMT) {
8731da177e4SLinus Torvalds 	case S_IFIFO:
8741da177e4SLinus Torvalds 	case S_IFCHR:
8751da177e4SLinus Torvalds 	case S_IFBLK:
8761da177e4SLinus Torvalds 	case S_IFSOCK:
8771da177e4SLinus Torvalds 		ip->i_d.di_format = XFS_DINODE_FMT_DEV;
8781da177e4SLinus Torvalds 		ip->i_df.if_flags = 0;
8791da177e4SLinus Torvalds 		flags |= XFS_ILOG_DEV;
8801da177e4SLinus Torvalds 		break;
8811da177e4SLinus Torvalds 	case S_IFREG:
8821da177e4SLinus Torvalds 	case S_IFDIR:
883b11f94d5SDavid Chinner 		if (pip && (pip->i_d.di_flags & XFS_DIFLAG_ANY)) {
884365ca83dSNathan Scott 			uint		di_flags = 0;
885365ca83dSNathan Scott 
886abbede1bSAl Viro 			if (S_ISDIR(mode)) {
887365ca83dSNathan Scott 				if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
888365ca83dSNathan Scott 					di_flags |= XFS_DIFLAG_RTINHERIT;
889dd9f438eSNathan Scott 				if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
890dd9f438eSNathan Scott 					di_flags |= XFS_DIFLAG_EXTSZINHERIT;
891dd9f438eSNathan Scott 					ip->i_d.di_extsize = pip->i_d.di_extsize;
892dd9f438eSNathan Scott 				}
8939336e3a7SDave Chinner 				if (pip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
8949336e3a7SDave Chinner 					di_flags |= XFS_DIFLAG_PROJINHERIT;
895abbede1bSAl Viro 			} else if (S_ISREG(mode)) {
896613d7043SChristoph Hellwig 				if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
897365ca83dSNathan Scott 					di_flags |= XFS_DIFLAG_REALTIME;
898dd9f438eSNathan Scott 				if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
899dd9f438eSNathan Scott 					di_flags |= XFS_DIFLAG_EXTSIZE;
900dd9f438eSNathan Scott 					ip->i_d.di_extsize = pip->i_d.di_extsize;
901dd9f438eSNathan Scott 				}
9021da177e4SLinus Torvalds 			}
9031da177e4SLinus Torvalds 			if ((pip->i_d.di_flags & XFS_DIFLAG_NOATIME) &&
9041da177e4SLinus Torvalds 			    xfs_inherit_noatime)
905365ca83dSNathan Scott 				di_flags |= XFS_DIFLAG_NOATIME;
9061da177e4SLinus Torvalds 			if ((pip->i_d.di_flags & XFS_DIFLAG_NODUMP) &&
9071da177e4SLinus Torvalds 			    xfs_inherit_nodump)
908365ca83dSNathan Scott 				di_flags |= XFS_DIFLAG_NODUMP;
9091da177e4SLinus Torvalds 			if ((pip->i_d.di_flags & XFS_DIFLAG_SYNC) &&
9101da177e4SLinus Torvalds 			    xfs_inherit_sync)
911365ca83dSNathan Scott 				di_flags |= XFS_DIFLAG_SYNC;
9121da177e4SLinus Torvalds 			if ((pip->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) &&
9131da177e4SLinus Torvalds 			    xfs_inherit_nosymlinks)
914365ca83dSNathan Scott 				di_flags |= XFS_DIFLAG_NOSYMLINKS;
915d3446eacSBarry Naujok 			if ((pip->i_d.di_flags & XFS_DIFLAG_NODEFRAG) &&
916d3446eacSBarry Naujok 			    xfs_inherit_nodefrag)
917d3446eacSBarry Naujok 				di_flags |= XFS_DIFLAG_NODEFRAG;
9182a82b8beSDavid Chinner 			if (pip->i_d.di_flags & XFS_DIFLAG_FILESTREAM)
9192a82b8beSDavid Chinner 				di_flags |= XFS_DIFLAG_FILESTREAM;
92058f88ca2SDave Chinner 
921365ca83dSNathan Scott 			ip->i_d.di_flags |= di_flags;
9221da177e4SLinus Torvalds 		}
923f7ca3522SDarrick J. Wong 		if (pip &&
924f7ca3522SDarrick J. Wong 		    (pip->i_d.di_flags2 & XFS_DIFLAG2_ANY) &&
925f7ca3522SDarrick J. Wong 		    pip->i_d.di_version == 3 &&
926f7ca3522SDarrick J. Wong 		    ip->i_d.di_version == 3) {
92756bdf855SLukas Czerner 			uint64_t	di_flags2 = 0;
92856bdf855SLukas Czerner 
929f7ca3522SDarrick J. Wong 			if (pip->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE) {
93056bdf855SLukas Czerner 				di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
931f7ca3522SDarrick J. Wong 				ip->i_d.di_cowextsize = pip->i_d.di_cowextsize;
932f7ca3522SDarrick J. Wong 			}
93356bdf855SLukas Czerner 			if (pip->i_d.di_flags2 & XFS_DIFLAG2_DAX)
93456bdf855SLukas Czerner 				di_flags2 |= XFS_DIFLAG2_DAX;
93556bdf855SLukas Czerner 
93656bdf855SLukas Czerner 			ip->i_d.di_flags2 |= di_flags2;
937f7ca3522SDarrick J. Wong 		}
9381da177e4SLinus Torvalds 		/* FALLTHROUGH */
9391da177e4SLinus Torvalds 	case S_IFLNK:
9401da177e4SLinus Torvalds 		ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
9411da177e4SLinus Torvalds 		ip->i_df.if_flags = XFS_IFEXTENTS;
9421da177e4SLinus Torvalds 		ip->i_df.if_bytes = ip->i_df.if_real_bytes = 0;
9436bdcf26aSChristoph Hellwig 		ip->i_df.if_u1.if_root = NULL;
9441da177e4SLinus Torvalds 		break;
9451da177e4SLinus Torvalds 	default:
9461da177e4SLinus Torvalds 		ASSERT(0);
9471da177e4SLinus Torvalds 	}
9481da177e4SLinus Torvalds 	/*
9491da177e4SLinus Torvalds 	 * Attribute fork settings for new inode.
9501da177e4SLinus Torvalds 	 */
9511da177e4SLinus Torvalds 	ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
9521da177e4SLinus Torvalds 	ip->i_d.di_anextents = 0;
9531da177e4SLinus Torvalds 
9541da177e4SLinus Torvalds 	/*
9551da177e4SLinus Torvalds 	 * Log the new values stuffed into the inode.
9561da177e4SLinus Torvalds 	 */
957ddc3415aSChristoph Hellwig 	xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
9581da177e4SLinus Torvalds 	xfs_trans_log_inode(tp, ip, flags);
9591da177e4SLinus Torvalds 
96058c90473SDave Chinner 	/* now that we have an i_mode we can setup the inode structure */
96141be8bedSChristoph Hellwig 	xfs_setup_inode(ip);
9621da177e4SLinus Torvalds 
9631da177e4SLinus Torvalds 	*ipp = ip;
9641da177e4SLinus Torvalds 	return 0;
9651da177e4SLinus Torvalds }
9661da177e4SLinus Torvalds 
967e546cb79SDave Chinner /*
968e546cb79SDave Chinner  * Allocates a new inode from disk and return a pointer to the
969e546cb79SDave Chinner  * incore copy. This routine will internally commit the current
970e546cb79SDave Chinner  * transaction and allocate a new one if the Space Manager needed
971e546cb79SDave Chinner  * to do an allocation to replenish the inode free-list.
972e546cb79SDave Chinner  *
973e546cb79SDave Chinner  * This routine is designed to be called from xfs_create and
974e546cb79SDave Chinner  * xfs_create_dir.
975e546cb79SDave Chinner  *
976e546cb79SDave Chinner  */
977e546cb79SDave Chinner int
978e546cb79SDave Chinner xfs_dir_ialloc(
979e546cb79SDave Chinner 	xfs_trans_t	**tpp,		/* input: current transaction;
980e546cb79SDave Chinner 					   output: may be a new transaction. */
981e546cb79SDave Chinner 	xfs_inode_t	*dp,		/* directory within whose allocate
982e546cb79SDave Chinner 					   the inode. */
983e546cb79SDave Chinner 	umode_t		mode,
984e546cb79SDave Chinner 	xfs_nlink_t	nlink,
98566f36464SChristoph Hellwig 	dev_t		rdev,
986e546cb79SDave Chinner 	prid_t		prid,		/* project id */
987c959025eSChandan Rajendra 	xfs_inode_t	**ipp)		/* pointer to inode; it will be
988e546cb79SDave Chinner 					   locked. */
989e546cb79SDave Chinner {
990e546cb79SDave Chinner 	xfs_trans_t	*tp;
991e546cb79SDave Chinner 	xfs_inode_t	*ip;
992e546cb79SDave Chinner 	xfs_buf_t	*ialloc_context = NULL;
993e546cb79SDave Chinner 	int		code;
994e546cb79SDave Chinner 	void		*dqinfo;
995e546cb79SDave Chinner 	uint		tflags;
996e546cb79SDave Chinner 
997e546cb79SDave Chinner 	tp = *tpp;
998e546cb79SDave Chinner 	ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
999e546cb79SDave Chinner 
1000e546cb79SDave Chinner 	/*
1001e546cb79SDave Chinner 	 * xfs_ialloc will return a pointer to an incore inode if
1002e546cb79SDave Chinner 	 * the Space Manager has an available inode on the free
1003e546cb79SDave Chinner 	 * list. Otherwise, it will do an allocation and replenish
1004e546cb79SDave Chinner 	 * the freelist.  Since we can only do one allocation per
1005e546cb79SDave Chinner 	 * transaction without deadlocks, we will need to commit the
1006e546cb79SDave Chinner 	 * current transaction and start a new one.  We will then
1007e546cb79SDave Chinner 	 * need to call xfs_ialloc again to get the inode.
1008e546cb79SDave Chinner 	 *
1009e546cb79SDave Chinner 	 * If xfs_ialloc did an allocation to replenish the freelist,
1010e546cb79SDave Chinner 	 * it returns the bp containing the head of the freelist as
1011e546cb79SDave Chinner 	 * ialloc_context. We will hold a lock on it across the
1012e546cb79SDave Chinner 	 * transaction commit so that no other process can steal
1013e546cb79SDave Chinner 	 * the inode(s) that we've just allocated.
1014e546cb79SDave Chinner 	 */
1015f59cf5c2SChristoph Hellwig 	code = xfs_ialloc(tp, dp, mode, nlink, rdev, prid, &ialloc_context,
1016f59cf5c2SChristoph Hellwig 			&ip);
1017e546cb79SDave Chinner 
1018e546cb79SDave Chinner 	/*
1019e546cb79SDave Chinner 	 * Return an error if we were unable to allocate a new inode.
1020e546cb79SDave Chinner 	 * This should only happen if we run out of space on disk or
1021e546cb79SDave Chinner 	 * encounter a disk error.
1022e546cb79SDave Chinner 	 */
1023e546cb79SDave Chinner 	if (code) {
1024e546cb79SDave Chinner 		*ipp = NULL;
1025e546cb79SDave Chinner 		return code;
1026e546cb79SDave Chinner 	}
1027e546cb79SDave Chinner 	if (!ialloc_context && !ip) {
1028e546cb79SDave Chinner 		*ipp = NULL;
10292451337dSDave Chinner 		return -ENOSPC;
1030e546cb79SDave Chinner 	}
1031e546cb79SDave Chinner 
1032e546cb79SDave Chinner 	/*
1033e546cb79SDave Chinner 	 * If the AGI buffer is non-NULL, then we were unable to get an
1034e546cb79SDave Chinner 	 * inode in one operation.  We need to commit the current
1035e546cb79SDave Chinner 	 * transaction and call xfs_ialloc() again.  It is guaranteed
1036e546cb79SDave Chinner 	 * to succeed the second time.
1037e546cb79SDave Chinner 	 */
1038e546cb79SDave Chinner 	if (ialloc_context) {
1039e546cb79SDave Chinner 		/*
1040e546cb79SDave Chinner 		 * Normally, xfs_trans_commit releases all the locks.
1041e546cb79SDave Chinner 		 * We call bhold to hang on to the ialloc_context across
1042e546cb79SDave Chinner 		 * the commit.  Holding this buffer prevents any other
1043e546cb79SDave Chinner 		 * processes from doing any allocations in this
1044e546cb79SDave Chinner 		 * allocation group.
1045e546cb79SDave Chinner 		 */
1046e546cb79SDave Chinner 		xfs_trans_bhold(tp, ialloc_context);
1047e546cb79SDave Chinner 
1048e546cb79SDave Chinner 		/*
1049e546cb79SDave Chinner 		 * We want the quota changes to be associated with the next
1050e546cb79SDave Chinner 		 * transaction, NOT this one. So, detach the dqinfo from this
1051e546cb79SDave Chinner 		 * and attach it to the next transaction.
1052e546cb79SDave Chinner 		 */
1053e546cb79SDave Chinner 		dqinfo = NULL;
1054e546cb79SDave Chinner 		tflags = 0;
1055e546cb79SDave Chinner 		if (tp->t_dqinfo) {
1056e546cb79SDave Chinner 			dqinfo = (void *)tp->t_dqinfo;
1057e546cb79SDave Chinner 			tp->t_dqinfo = NULL;
1058e546cb79SDave Chinner 			tflags = tp->t_flags & XFS_TRANS_DQ_DIRTY;
1059e546cb79SDave Chinner 			tp->t_flags &= ~(XFS_TRANS_DQ_DIRTY);
1060e546cb79SDave Chinner 		}
1061e546cb79SDave Chinner 
1062411350dfSChristoph Hellwig 		code = xfs_trans_roll(&tp);
10633d3c8b52SJie Liu 
1064e546cb79SDave Chinner 		/*
1065e546cb79SDave Chinner 		 * Re-attach the quota info that we detached from prev trx.
1066e546cb79SDave Chinner 		 */
1067e546cb79SDave Chinner 		if (dqinfo) {
1068e546cb79SDave Chinner 			tp->t_dqinfo = dqinfo;
1069e546cb79SDave Chinner 			tp->t_flags |= tflags;
1070e546cb79SDave Chinner 		}
1071e546cb79SDave Chinner 
1072e546cb79SDave Chinner 		if (code) {
1073e546cb79SDave Chinner 			xfs_buf_relse(ialloc_context);
10742e6db6c4SChristoph Hellwig 			*tpp = tp;
1075e546cb79SDave Chinner 			*ipp = NULL;
1076e546cb79SDave Chinner 			return code;
1077e546cb79SDave Chinner 		}
1078e546cb79SDave Chinner 		xfs_trans_bjoin(tp, ialloc_context);
1079e546cb79SDave Chinner 
1080e546cb79SDave Chinner 		/*
1081e546cb79SDave Chinner 		 * Call ialloc again. Since we've locked out all
1082e546cb79SDave Chinner 		 * other allocations in this allocation group,
1083e546cb79SDave Chinner 		 * this call should always succeed.
1084e546cb79SDave Chinner 		 */
1085e546cb79SDave Chinner 		code = xfs_ialloc(tp, dp, mode, nlink, rdev, prid,
1086f59cf5c2SChristoph Hellwig 				  &ialloc_context, &ip);
1087e546cb79SDave Chinner 
1088e546cb79SDave Chinner 		/*
1089e546cb79SDave Chinner 		 * If we get an error at this point, return to the caller
1090e546cb79SDave Chinner 		 * so that the current transaction can be aborted.
1091e546cb79SDave Chinner 		 */
1092e546cb79SDave Chinner 		if (code) {
1093e546cb79SDave Chinner 			*tpp = tp;
1094e546cb79SDave Chinner 			*ipp = NULL;
1095e546cb79SDave Chinner 			return code;
1096e546cb79SDave Chinner 		}
1097e546cb79SDave Chinner 		ASSERT(!ialloc_context && ip);
1098e546cb79SDave Chinner 
1099e546cb79SDave Chinner 	}
1100e546cb79SDave Chinner 
1101e546cb79SDave Chinner 	*ipp = ip;
1102e546cb79SDave Chinner 	*tpp = tp;
1103e546cb79SDave Chinner 
1104e546cb79SDave Chinner 	return 0;
1105e546cb79SDave Chinner }
1106e546cb79SDave Chinner 
1107e546cb79SDave Chinner /*
110854d7b5c1SDave Chinner  * Decrement the link count on an inode & log the change.  If this causes the
110954d7b5c1SDave Chinner  * link count to go to zero, move the inode to AGI unlinked list so that it can
111054d7b5c1SDave Chinner  * be freed when the last active reference goes away via xfs_inactive().
1111e546cb79SDave Chinner  */
11120d5a75e9SEric Sandeen static int			/* error */
1113e546cb79SDave Chinner xfs_droplink(
1114e546cb79SDave Chinner 	xfs_trans_t *tp,
1115e546cb79SDave Chinner 	xfs_inode_t *ip)
1116e546cb79SDave Chinner {
1117e546cb79SDave Chinner 	xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1118e546cb79SDave Chinner 
1119e546cb79SDave Chinner 	drop_nlink(VFS_I(ip));
1120e546cb79SDave Chinner 	xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1121e546cb79SDave Chinner 
112254d7b5c1SDave Chinner 	if (VFS_I(ip)->i_nlink)
112354d7b5c1SDave Chinner 		return 0;
112454d7b5c1SDave Chinner 
112554d7b5c1SDave Chinner 	return xfs_iunlink(tp, ip);
1126e546cb79SDave Chinner }
1127e546cb79SDave Chinner 
1128e546cb79SDave Chinner /*
1129e546cb79SDave Chinner  * Increment the link count on an inode & log the change.
1130e546cb79SDave Chinner  */
11310d5a75e9SEric Sandeen static int
1132e546cb79SDave Chinner xfs_bumplink(
1133e546cb79SDave Chinner 	xfs_trans_t *tp,
1134e546cb79SDave Chinner 	xfs_inode_t *ip)
1135e546cb79SDave Chinner {
1136e546cb79SDave Chinner 	xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1137e546cb79SDave Chinner 
1138263997a6SDave Chinner 	ASSERT(ip->i_d.di_version > 1);
1139e546cb79SDave Chinner 	inc_nlink(VFS_I(ip));
1140e546cb79SDave Chinner 	xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1141e546cb79SDave Chinner 	return 0;
1142e546cb79SDave Chinner }
1143e546cb79SDave Chinner 
1144c24b5dfaSDave Chinner int
1145c24b5dfaSDave Chinner xfs_create(
1146c24b5dfaSDave Chinner 	xfs_inode_t		*dp,
1147c24b5dfaSDave Chinner 	struct xfs_name		*name,
1148c24b5dfaSDave Chinner 	umode_t			mode,
114966f36464SChristoph Hellwig 	dev_t			rdev,
1150c24b5dfaSDave Chinner 	xfs_inode_t		**ipp)
1151c24b5dfaSDave Chinner {
1152c24b5dfaSDave Chinner 	int			is_dir = S_ISDIR(mode);
1153c24b5dfaSDave Chinner 	struct xfs_mount	*mp = dp->i_mount;
1154c24b5dfaSDave Chinner 	struct xfs_inode	*ip = NULL;
1155c24b5dfaSDave Chinner 	struct xfs_trans	*tp = NULL;
1156c24b5dfaSDave Chinner 	int			error;
11572c3234d1SDarrick J. Wong 	struct xfs_defer_ops	dfops;
1158c24b5dfaSDave Chinner 	xfs_fsblock_t		first_block;
1159c24b5dfaSDave Chinner 	bool                    unlock_dp_on_error = false;
1160c24b5dfaSDave Chinner 	prid_t			prid;
1161c24b5dfaSDave Chinner 	struct xfs_dquot	*udqp = NULL;
1162c24b5dfaSDave Chinner 	struct xfs_dquot	*gdqp = NULL;
1163c24b5dfaSDave Chinner 	struct xfs_dquot	*pdqp = NULL;
1164062647a8SBrian Foster 	struct xfs_trans_res	*tres;
1165c24b5dfaSDave Chinner 	uint			resblks;
1166c24b5dfaSDave Chinner 
1167c24b5dfaSDave Chinner 	trace_xfs_create(dp, name);
1168c24b5dfaSDave Chinner 
1169c24b5dfaSDave Chinner 	if (XFS_FORCED_SHUTDOWN(mp))
11702451337dSDave Chinner 		return -EIO;
1171c24b5dfaSDave Chinner 
1172163467d3SZhi Yong Wu 	prid = xfs_get_initial_prid(dp);
1173c24b5dfaSDave Chinner 
1174c24b5dfaSDave Chinner 	/*
1175c24b5dfaSDave Chinner 	 * Make sure that we have allocated dquot(s) on disk.
1176c24b5dfaSDave Chinner 	 */
11777aab1b28SDwight Engen 	error = xfs_qm_vop_dqalloc(dp, xfs_kuid_to_uid(current_fsuid()),
11787aab1b28SDwight Engen 					xfs_kgid_to_gid(current_fsgid()), prid,
1179c24b5dfaSDave Chinner 					XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT,
1180c24b5dfaSDave Chinner 					&udqp, &gdqp, &pdqp);
1181c24b5dfaSDave Chinner 	if (error)
1182c24b5dfaSDave Chinner 		return error;
1183c24b5dfaSDave Chinner 
1184c24b5dfaSDave Chinner 	if (is_dir) {
1185c24b5dfaSDave Chinner 		resblks = XFS_MKDIR_SPACE_RES(mp, name->len);
1186062647a8SBrian Foster 		tres = &M_RES(mp)->tr_mkdir;
1187c24b5dfaSDave Chinner 	} else {
1188c24b5dfaSDave Chinner 		resblks = XFS_CREATE_SPACE_RES(mp, name->len);
1189062647a8SBrian Foster 		tres = &M_RES(mp)->tr_create;
1190c24b5dfaSDave Chinner 	}
1191c24b5dfaSDave Chinner 
1192c24b5dfaSDave Chinner 	/*
1193c24b5dfaSDave Chinner 	 * Initially assume that the file does not exist and
1194c24b5dfaSDave Chinner 	 * reserve the resources for that case.  If that is not
1195c24b5dfaSDave Chinner 	 * the case we'll drop the one we have and get a more
1196c24b5dfaSDave Chinner 	 * appropriate transaction later.
1197c24b5dfaSDave Chinner 	 */
1198253f4911SChristoph Hellwig 	error = xfs_trans_alloc(mp, tres, resblks, 0, 0, &tp);
11992451337dSDave Chinner 	if (error == -ENOSPC) {
1200c24b5dfaSDave Chinner 		/* flush outstanding delalloc blocks and retry */
1201c24b5dfaSDave Chinner 		xfs_flush_inodes(mp);
1202253f4911SChristoph Hellwig 		error = xfs_trans_alloc(mp, tres, resblks, 0, 0, &tp);
1203c24b5dfaSDave Chinner 	}
12044906e215SChristoph Hellwig 	if (error)
1205253f4911SChristoph Hellwig 		goto out_release_inode;
1206c24b5dfaSDave Chinner 
120765523218SChristoph Hellwig 	xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
1208c24b5dfaSDave Chinner 	unlock_dp_on_error = true;
1209c24b5dfaSDave Chinner 
12102c3234d1SDarrick J. Wong 	xfs_defer_init(&dfops, &first_block);
12118b922f0eSBrian Foster 	tp->t_agfl_dfops = &dfops;
1212c24b5dfaSDave Chinner 
1213c24b5dfaSDave Chinner 	/*
1214c24b5dfaSDave Chinner 	 * Reserve disk quota and the inode.
1215c24b5dfaSDave Chinner 	 */
1216c24b5dfaSDave Chinner 	error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp,
1217c24b5dfaSDave Chinner 						pdqp, resblks, 1, 0);
1218c24b5dfaSDave Chinner 	if (error)
1219c24b5dfaSDave Chinner 		goto out_trans_cancel;
1220c24b5dfaSDave Chinner 
1221c24b5dfaSDave Chinner 	/*
1222c24b5dfaSDave Chinner 	 * A newly created regular or special file just has one directory
1223c24b5dfaSDave Chinner 	 * entry pointing to them, but a directory also the "." entry
1224c24b5dfaSDave Chinner 	 * pointing to itself.
1225c24b5dfaSDave Chinner 	 */
1226c959025eSChandan Rajendra 	error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev, prid, &ip);
1227d6077aa3SJan Kara 	if (error)
1228c24b5dfaSDave Chinner 		goto out_trans_cancel;
1229c24b5dfaSDave Chinner 
1230c24b5dfaSDave Chinner 	/*
1231c24b5dfaSDave Chinner 	 * Now we join the directory inode to the transaction.  We do not do it
1232c24b5dfaSDave Chinner 	 * earlier because xfs_dir_ialloc might commit the previous transaction
1233c24b5dfaSDave Chinner 	 * (and release all the locks).  An error from here on will result in
1234c24b5dfaSDave Chinner 	 * the transaction cancel unlocking dp so don't do it explicitly in the
1235c24b5dfaSDave Chinner 	 * error path.
1236c24b5dfaSDave Chinner 	 */
123765523218SChristoph Hellwig 	xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
1238c24b5dfaSDave Chinner 	unlock_dp_on_error = false;
1239c24b5dfaSDave Chinner 
1240c24b5dfaSDave Chinner 	error = xfs_dir_createname(tp, dp, name, ip->i_ino,
12412c3234d1SDarrick J. Wong 					&first_block, &dfops, resblks ?
1242c24b5dfaSDave Chinner 					resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
1243c24b5dfaSDave Chinner 	if (error) {
12442451337dSDave Chinner 		ASSERT(error != -ENOSPC);
12454906e215SChristoph Hellwig 		goto out_trans_cancel;
1246c24b5dfaSDave Chinner 	}
1247c24b5dfaSDave Chinner 	xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1248c24b5dfaSDave Chinner 	xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1249c24b5dfaSDave Chinner 
1250c24b5dfaSDave Chinner 	if (is_dir) {
1251c24b5dfaSDave Chinner 		error = xfs_dir_init(tp, ip, dp);
1252c24b5dfaSDave Chinner 		if (error)
1253c24b5dfaSDave Chinner 			goto out_bmap_cancel;
1254c24b5dfaSDave Chinner 
1255c24b5dfaSDave Chinner 		error = xfs_bumplink(tp, dp);
1256c24b5dfaSDave Chinner 		if (error)
1257c24b5dfaSDave Chinner 			goto out_bmap_cancel;
1258c24b5dfaSDave Chinner 	}
1259c24b5dfaSDave Chinner 
1260c24b5dfaSDave Chinner 	/*
1261c24b5dfaSDave Chinner 	 * If this is a synchronous mount, make sure that the
1262c24b5dfaSDave Chinner 	 * create transaction goes to disk before returning to
1263c24b5dfaSDave Chinner 	 * the user.
1264c24b5dfaSDave Chinner 	 */
1265c24b5dfaSDave Chinner 	if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
1266c24b5dfaSDave Chinner 		xfs_trans_set_sync(tp);
1267c24b5dfaSDave Chinner 
1268c24b5dfaSDave Chinner 	/*
1269c24b5dfaSDave Chinner 	 * Attach the dquot(s) to the inodes and modify them incore.
1270c24b5dfaSDave Chinner 	 * These ids of the inode couldn't have changed since the new
1271c24b5dfaSDave Chinner 	 * inode has been locked ever since it was created.
1272c24b5dfaSDave Chinner 	 */
1273c24b5dfaSDave Chinner 	xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
1274c24b5dfaSDave Chinner 
12758ad7c629SChristoph Hellwig 	error = xfs_defer_finish(&tp, &dfops);
1276c24b5dfaSDave Chinner 	if (error)
1277c24b5dfaSDave Chinner 		goto out_bmap_cancel;
1278c24b5dfaSDave Chinner 
127970393313SChristoph Hellwig 	error = xfs_trans_commit(tp);
1280c24b5dfaSDave Chinner 	if (error)
1281c24b5dfaSDave Chinner 		goto out_release_inode;
1282c24b5dfaSDave Chinner 
1283c24b5dfaSDave Chinner 	xfs_qm_dqrele(udqp);
1284c24b5dfaSDave Chinner 	xfs_qm_dqrele(gdqp);
1285c24b5dfaSDave Chinner 	xfs_qm_dqrele(pdqp);
1286c24b5dfaSDave Chinner 
1287c24b5dfaSDave Chinner 	*ipp = ip;
1288c24b5dfaSDave Chinner 	return 0;
1289c24b5dfaSDave Chinner 
1290c24b5dfaSDave Chinner  out_bmap_cancel:
12912c3234d1SDarrick J. Wong 	xfs_defer_cancel(&dfops);
1292c24b5dfaSDave Chinner  out_trans_cancel:
12934906e215SChristoph Hellwig 	xfs_trans_cancel(tp);
1294c24b5dfaSDave Chinner  out_release_inode:
1295c24b5dfaSDave Chinner 	/*
129658c90473SDave Chinner 	 * Wait until after the current transaction is aborted to finish the
129758c90473SDave Chinner 	 * setup of the inode and release the inode.  This prevents recursive
129858c90473SDave Chinner 	 * transactions and deadlocks from xfs_inactive.
1299c24b5dfaSDave Chinner 	 */
130058c90473SDave Chinner 	if (ip) {
130158c90473SDave Chinner 		xfs_finish_inode_setup(ip);
1302c24b5dfaSDave Chinner 		IRELE(ip);
130358c90473SDave Chinner 	}
1304c24b5dfaSDave Chinner 
1305c24b5dfaSDave Chinner 	xfs_qm_dqrele(udqp);
1306c24b5dfaSDave Chinner 	xfs_qm_dqrele(gdqp);
1307c24b5dfaSDave Chinner 	xfs_qm_dqrele(pdqp);
1308c24b5dfaSDave Chinner 
1309c24b5dfaSDave Chinner 	if (unlock_dp_on_error)
131065523218SChristoph Hellwig 		xfs_iunlock(dp, XFS_ILOCK_EXCL);
1311c24b5dfaSDave Chinner 	return error;
1312c24b5dfaSDave Chinner }
1313c24b5dfaSDave Chinner 
1314c24b5dfaSDave Chinner int
131599b6436bSZhi Yong Wu xfs_create_tmpfile(
131699b6436bSZhi Yong Wu 	struct xfs_inode	*dp,
1317330033d6SBrian Foster 	umode_t			mode,
1318330033d6SBrian Foster 	struct xfs_inode	**ipp)
131999b6436bSZhi Yong Wu {
132099b6436bSZhi Yong Wu 	struct xfs_mount	*mp = dp->i_mount;
132199b6436bSZhi Yong Wu 	struct xfs_inode	*ip = NULL;
132299b6436bSZhi Yong Wu 	struct xfs_trans	*tp = NULL;
132399b6436bSZhi Yong Wu 	int			error;
132499b6436bSZhi Yong Wu 	prid_t                  prid;
132599b6436bSZhi Yong Wu 	struct xfs_dquot	*udqp = NULL;
132699b6436bSZhi Yong Wu 	struct xfs_dquot	*gdqp = NULL;
132799b6436bSZhi Yong Wu 	struct xfs_dquot	*pdqp = NULL;
132899b6436bSZhi Yong Wu 	struct xfs_trans_res	*tres;
132999b6436bSZhi Yong Wu 	uint			resblks;
133099b6436bSZhi Yong Wu 
133199b6436bSZhi Yong Wu 	if (XFS_FORCED_SHUTDOWN(mp))
13322451337dSDave Chinner 		return -EIO;
133399b6436bSZhi Yong Wu 
133499b6436bSZhi Yong Wu 	prid = xfs_get_initial_prid(dp);
133599b6436bSZhi Yong Wu 
133699b6436bSZhi Yong Wu 	/*
133799b6436bSZhi Yong Wu 	 * Make sure that we have allocated dquot(s) on disk.
133899b6436bSZhi Yong Wu 	 */
133999b6436bSZhi Yong Wu 	error = xfs_qm_vop_dqalloc(dp, xfs_kuid_to_uid(current_fsuid()),
134099b6436bSZhi Yong Wu 				xfs_kgid_to_gid(current_fsgid()), prid,
134199b6436bSZhi Yong Wu 				XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT,
134299b6436bSZhi Yong Wu 				&udqp, &gdqp, &pdqp);
134399b6436bSZhi Yong Wu 	if (error)
134499b6436bSZhi Yong Wu 		return error;
134599b6436bSZhi Yong Wu 
134699b6436bSZhi Yong Wu 	resblks = XFS_IALLOC_SPACE_RES(mp);
134799b6436bSZhi Yong Wu 	tres = &M_RES(mp)->tr_create_tmpfile;
1348253f4911SChristoph Hellwig 
1349253f4911SChristoph Hellwig 	error = xfs_trans_alloc(mp, tres, resblks, 0, 0, &tp);
13504906e215SChristoph Hellwig 	if (error)
1351253f4911SChristoph Hellwig 		goto out_release_inode;
135299b6436bSZhi Yong Wu 
135399b6436bSZhi Yong Wu 	error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp,
135499b6436bSZhi Yong Wu 						pdqp, resblks, 1, 0);
135599b6436bSZhi Yong Wu 	if (error)
135699b6436bSZhi Yong Wu 		goto out_trans_cancel;
135799b6436bSZhi Yong Wu 
1358c959025eSChandan Rajendra 	error = xfs_dir_ialloc(&tp, dp, mode, 1, 0, prid, &ip);
1359d6077aa3SJan Kara 	if (error)
136099b6436bSZhi Yong Wu 		goto out_trans_cancel;
136199b6436bSZhi Yong Wu 
136299b6436bSZhi Yong Wu 	if (mp->m_flags & XFS_MOUNT_WSYNC)
136399b6436bSZhi Yong Wu 		xfs_trans_set_sync(tp);
136499b6436bSZhi Yong Wu 
136599b6436bSZhi Yong Wu 	/*
136699b6436bSZhi Yong Wu 	 * Attach the dquot(s) to the inodes and modify them incore.
136799b6436bSZhi Yong Wu 	 * These ids of the inode couldn't have changed since the new
136899b6436bSZhi Yong Wu 	 * inode has been locked ever since it was created.
136999b6436bSZhi Yong Wu 	 */
137099b6436bSZhi Yong Wu 	xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
137199b6436bSZhi Yong Wu 
137299b6436bSZhi Yong Wu 	error = xfs_iunlink(tp, ip);
137399b6436bSZhi Yong Wu 	if (error)
13744906e215SChristoph Hellwig 		goto out_trans_cancel;
137599b6436bSZhi Yong Wu 
137670393313SChristoph Hellwig 	error = xfs_trans_commit(tp);
137799b6436bSZhi Yong Wu 	if (error)
137899b6436bSZhi Yong Wu 		goto out_release_inode;
137999b6436bSZhi Yong Wu 
138099b6436bSZhi Yong Wu 	xfs_qm_dqrele(udqp);
138199b6436bSZhi Yong Wu 	xfs_qm_dqrele(gdqp);
138299b6436bSZhi Yong Wu 	xfs_qm_dqrele(pdqp);
138399b6436bSZhi Yong Wu 
1384330033d6SBrian Foster 	*ipp = ip;
138599b6436bSZhi Yong Wu 	return 0;
138699b6436bSZhi Yong Wu 
138799b6436bSZhi Yong Wu  out_trans_cancel:
13884906e215SChristoph Hellwig 	xfs_trans_cancel(tp);
138999b6436bSZhi Yong Wu  out_release_inode:
139099b6436bSZhi Yong Wu 	/*
139158c90473SDave Chinner 	 * Wait until after the current transaction is aborted to finish the
139258c90473SDave Chinner 	 * setup of the inode and release the inode.  This prevents recursive
139358c90473SDave Chinner 	 * transactions and deadlocks from xfs_inactive.
139499b6436bSZhi Yong Wu 	 */
139558c90473SDave Chinner 	if (ip) {
139658c90473SDave Chinner 		xfs_finish_inode_setup(ip);
139799b6436bSZhi Yong Wu 		IRELE(ip);
139858c90473SDave Chinner 	}
139999b6436bSZhi Yong Wu 
140099b6436bSZhi Yong Wu 	xfs_qm_dqrele(udqp);
140199b6436bSZhi Yong Wu 	xfs_qm_dqrele(gdqp);
140299b6436bSZhi Yong Wu 	xfs_qm_dqrele(pdqp);
140399b6436bSZhi Yong Wu 
140499b6436bSZhi Yong Wu 	return error;
140599b6436bSZhi Yong Wu }
140699b6436bSZhi Yong Wu 
140799b6436bSZhi Yong Wu int
1408c24b5dfaSDave Chinner xfs_link(
1409c24b5dfaSDave Chinner 	xfs_inode_t		*tdp,
1410c24b5dfaSDave Chinner 	xfs_inode_t		*sip,
1411c24b5dfaSDave Chinner 	struct xfs_name		*target_name)
1412c24b5dfaSDave Chinner {
1413c24b5dfaSDave Chinner 	xfs_mount_t		*mp = tdp->i_mount;
1414c24b5dfaSDave Chinner 	xfs_trans_t		*tp;
1415c24b5dfaSDave Chinner 	int			error;
14162c3234d1SDarrick J. Wong 	struct xfs_defer_ops	dfops;
1417c24b5dfaSDave Chinner 	xfs_fsblock_t           first_block;
1418c24b5dfaSDave Chinner 	int			resblks;
1419c24b5dfaSDave Chinner 
1420c24b5dfaSDave Chinner 	trace_xfs_link(tdp, target_name);
1421c24b5dfaSDave Chinner 
1422c19b3b05SDave Chinner 	ASSERT(!S_ISDIR(VFS_I(sip)->i_mode));
1423c24b5dfaSDave Chinner 
1424c24b5dfaSDave Chinner 	if (XFS_FORCED_SHUTDOWN(mp))
14252451337dSDave Chinner 		return -EIO;
1426c24b5dfaSDave Chinner 
1427c24b5dfaSDave Chinner 	error = xfs_qm_dqattach(sip, 0);
1428c24b5dfaSDave Chinner 	if (error)
1429c24b5dfaSDave Chinner 		goto std_return;
1430c24b5dfaSDave Chinner 
1431c24b5dfaSDave Chinner 	error = xfs_qm_dqattach(tdp, 0);
1432c24b5dfaSDave Chinner 	if (error)
1433c24b5dfaSDave Chinner 		goto std_return;
1434c24b5dfaSDave Chinner 
1435c24b5dfaSDave Chinner 	resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
1436253f4911SChristoph Hellwig 	error = xfs_trans_alloc(mp, &M_RES(mp)->tr_link, resblks, 0, 0, &tp);
14372451337dSDave Chinner 	if (error == -ENOSPC) {
1438c24b5dfaSDave Chinner 		resblks = 0;
1439253f4911SChristoph Hellwig 		error = xfs_trans_alloc(mp, &M_RES(mp)->tr_link, 0, 0, 0, &tp);
1440c24b5dfaSDave Chinner 	}
14414906e215SChristoph Hellwig 	if (error)
1442253f4911SChristoph Hellwig 		goto std_return;
1443c24b5dfaSDave Chinner 
14447c2d238aSDarrick J. Wong 	xfs_lock_two_inodes(sip, XFS_ILOCK_EXCL, tdp, XFS_ILOCK_EXCL);
1445c24b5dfaSDave Chinner 
1446c24b5dfaSDave Chinner 	xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
144765523218SChristoph Hellwig 	xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
1448c24b5dfaSDave Chinner 
1449c24b5dfaSDave Chinner 	/*
1450c24b5dfaSDave Chinner 	 * If we are using project inheritance, we only allow hard link
1451c24b5dfaSDave Chinner 	 * creation in our tree when the project IDs are the same; else
1452c24b5dfaSDave Chinner 	 * the tree quota mechanism could be circumvented.
1453c24b5dfaSDave Chinner 	 */
1454c24b5dfaSDave Chinner 	if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
1455c24b5dfaSDave Chinner 		     (xfs_get_projid(tdp) != xfs_get_projid(sip)))) {
14562451337dSDave Chinner 		error = -EXDEV;
1457c24b5dfaSDave Chinner 		goto error_return;
1458c24b5dfaSDave Chinner 	}
1459c24b5dfaSDave Chinner 
146094f3cad5SEric Sandeen 	if (!resblks) {
146194f3cad5SEric Sandeen 		error = xfs_dir_canenter(tp, tdp, target_name);
1462c24b5dfaSDave Chinner 		if (error)
1463c24b5dfaSDave Chinner 			goto error_return;
146494f3cad5SEric Sandeen 	}
1465c24b5dfaSDave Chinner 
14662c3234d1SDarrick J. Wong 	xfs_defer_init(&dfops, &first_block);
14678804630eSBrian Foster 	tp->t_agfl_dfops = &dfops;
1468c24b5dfaSDave Chinner 
146954d7b5c1SDave Chinner 	/*
147054d7b5c1SDave Chinner 	 * Handle initial link state of O_TMPFILE inode
147154d7b5c1SDave Chinner 	 */
147254d7b5c1SDave Chinner 	if (VFS_I(sip)->i_nlink == 0) {
1473ab297431SZhi Yong Wu 		error = xfs_iunlink_remove(tp, sip);
1474ab297431SZhi Yong Wu 		if (error)
14754906e215SChristoph Hellwig 			goto error_return;
1476ab297431SZhi Yong Wu 	}
1477ab297431SZhi Yong Wu 
1478c24b5dfaSDave Chinner 	error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
14792c3234d1SDarrick J. Wong 					&first_block, &dfops, resblks);
1480c24b5dfaSDave Chinner 	if (error)
14814906e215SChristoph Hellwig 		goto error_return;
1482c24b5dfaSDave Chinner 	xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1483c24b5dfaSDave Chinner 	xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
1484c24b5dfaSDave Chinner 
1485c24b5dfaSDave Chinner 	error = xfs_bumplink(tp, sip);
1486c24b5dfaSDave Chinner 	if (error)
14874906e215SChristoph Hellwig 		goto error_return;
1488c24b5dfaSDave Chinner 
1489c24b5dfaSDave Chinner 	/*
1490c24b5dfaSDave Chinner 	 * If this is a synchronous mount, make sure that the
1491c24b5dfaSDave Chinner 	 * link transaction goes to disk before returning to
1492c24b5dfaSDave Chinner 	 * the user.
1493c24b5dfaSDave Chinner 	 */
1494f6106efaSEric Sandeen 	if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
1495c24b5dfaSDave Chinner 		xfs_trans_set_sync(tp);
1496c24b5dfaSDave Chinner 
14978ad7c629SChristoph Hellwig 	error = xfs_defer_finish(&tp, &dfops);
1498c24b5dfaSDave Chinner 	if (error) {
14992c3234d1SDarrick J. Wong 		xfs_defer_cancel(&dfops);
15004906e215SChristoph Hellwig 		goto error_return;
1501c24b5dfaSDave Chinner 	}
1502c24b5dfaSDave Chinner 
150370393313SChristoph Hellwig 	return xfs_trans_commit(tp);
1504c24b5dfaSDave Chinner 
1505c24b5dfaSDave Chinner  error_return:
15064906e215SChristoph Hellwig 	xfs_trans_cancel(tp);
1507c24b5dfaSDave Chinner  std_return:
1508c24b5dfaSDave Chinner 	return error;
1509c24b5dfaSDave Chinner }
1510c24b5dfaSDave Chinner 
1511363e59baSDarrick J. Wong /* Clear the reflink flag and the cowblocks tag if possible. */
1512363e59baSDarrick J. Wong static void
1513363e59baSDarrick J. Wong xfs_itruncate_clear_reflink_flags(
1514363e59baSDarrick J. Wong 	struct xfs_inode	*ip)
1515363e59baSDarrick J. Wong {
1516363e59baSDarrick J. Wong 	struct xfs_ifork	*dfork;
1517363e59baSDarrick J. Wong 	struct xfs_ifork	*cfork;
1518363e59baSDarrick J. Wong 
1519363e59baSDarrick J. Wong 	if (!xfs_is_reflink_inode(ip))
1520363e59baSDarrick J. Wong 		return;
1521363e59baSDarrick J. Wong 	dfork = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
1522363e59baSDarrick J. Wong 	cfork = XFS_IFORK_PTR(ip, XFS_COW_FORK);
1523363e59baSDarrick J. Wong 	if (dfork->if_bytes == 0 && cfork->if_bytes == 0)
1524363e59baSDarrick J. Wong 		ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
1525363e59baSDarrick J. Wong 	if (cfork->if_bytes == 0)
1526363e59baSDarrick J. Wong 		xfs_inode_clear_cowblocks_tag(ip);
1527363e59baSDarrick J. Wong }
1528363e59baSDarrick J. Wong 
15291da177e4SLinus Torvalds /*
15308f04c47aSChristoph Hellwig  * Free up the underlying blocks past new_size.  The new size must be smaller
15318f04c47aSChristoph Hellwig  * than the current size.  This routine can be used both for the attribute and
15328f04c47aSChristoph Hellwig  * data fork, and does not modify the inode size, which is left to the caller.
15331da177e4SLinus Torvalds  *
1534f6485057SDavid Chinner  * The transaction passed to this routine must have made a permanent log
1535f6485057SDavid Chinner  * reservation of at least XFS_ITRUNCATE_LOG_RES.  This routine may commit the
1536f6485057SDavid Chinner  * given transaction and start new ones, so make sure everything involved in
1537f6485057SDavid Chinner  * the transaction is tidy before calling here.  Some transaction will be
1538f6485057SDavid Chinner  * returned to the caller to be committed.  The incoming transaction must
1539f6485057SDavid Chinner  * already include the inode, and both inode locks must be held exclusively.
1540f6485057SDavid Chinner  * The inode must also be "held" within the transaction.  On return the inode
1541f6485057SDavid Chinner  * will be "held" within the returned transaction.  This routine does NOT
1542f6485057SDavid Chinner  * require any disk space to be reserved for it within the transaction.
15431da177e4SLinus Torvalds  *
1544f6485057SDavid Chinner  * If we get an error, we must return with the inode locked and linked into the
1545f6485057SDavid Chinner  * current transaction. This keeps things simple for the higher level code,
1546f6485057SDavid Chinner  * because it always knows that the inode is locked and held in the transaction
1547f6485057SDavid Chinner  * that returns to it whether errors occur or not.  We don't mark the inode
1548f6485057SDavid Chinner  * dirty on error so that transactions can be easily aborted if possible.
15491da177e4SLinus Torvalds  */
15501da177e4SLinus Torvalds int
15518f04c47aSChristoph Hellwig xfs_itruncate_extents(
15528f04c47aSChristoph Hellwig 	struct xfs_trans	**tpp,
15538f04c47aSChristoph Hellwig 	struct xfs_inode	*ip,
15548f04c47aSChristoph Hellwig 	int			whichfork,
15558f04c47aSChristoph Hellwig 	xfs_fsize_t		new_size)
15561da177e4SLinus Torvalds {
15578f04c47aSChristoph Hellwig 	struct xfs_mount	*mp = ip->i_mount;
15588f04c47aSChristoph Hellwig 	struct xfs_trans	*tp = *tpp;
15592c3234d1SDarrick J. Wong 	struct xfs_defer_ops	dfops;
15601da177e4SLinus Torvalds 	xfs_fsblock_t		first_block;
15611da177e4SLinus Torvalds 	xfs_fileoff_t		first_unmap_block;
15621da177e4SLinus Torvalds 	xfs_fileoff_t		last_block;
15638f04c47aSChristoph Hellwig 	xfs_filblks_t		unmap_len;
15648f04c47aSChristoph Hellwig 	int			error = 0;
15658f04c47aSChristoph Hellwig 	int			done = 0;
15661da177e4SLinus Torvalds 
15670b56185bSChristoph Hellwig 	ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
15680b56185bSChristoph Hellwig 	ASSERT(!atomic_read(&VFS_I(ip)->i_count) ||
15690b56185bSChristoph Hellwig 	       xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1570ce7ae151SChristoph Hellwig 	ASSERT(new_size <= XFS_ISIZE(ip));
15718f04c47aSChristoph Hellwig 	ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
15721da177e4SLinus Torvalds 	ASSERT(ip->i_itemp != NULL);
1573898621d5SChristoph Hellwig 	ASSERT(ip->i_itemp->ili_lock_flags == 0);
15741da177e4SLinus Torvalds 	ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
15751da177e4SLinus Torvalds 
1576673e8e59SChristoph Hellwig 	trace_xfs_itruncate_extents_start(ip, new_size);
1577673e8e59SChristoph Hellwig 
15781da177e4SLinus Torvalds 	/*
15791da177e4SLinus Torvalds 	 * Since it is possible for space to become allocated beyond
15801da177e4SLinus Torvalds 	 * the end of the file (in a crash where the space is allocated
15811da177e4SLinus Torvalds 	 * but the inode size is not yet updated), simply remove any
15821da177e4SLinus Torvalds 	 * blocks which show up between the new EOF and the maximum
15831da177e4SLinus Torvalds 	 * possible file size.  If the first block to be removed is
15841da177e4SLinus Torvalds 	 * beyond the maximum file size (ie it is the same as last_block),
15851da177e4SLinus Torvalds 	 * then there is nothing to do.
15861da177e4SLinus Torvalds 	 */
15878f04c47aSChristoph Hellwig 	first_unmap_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size);
158832972383SDave Chinner 	last_block = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
15898f04c47aSChristoph Hellwig 	if (first_unmap_block == last_block)
15908f04c47aSChristoph Hellwig 		return 0;
15918f04c47aSChristoph Hellwig 
15928f04c47aSChristoph Hellwig 	ASSERT(first_unmap_block < last_block);
15931da177e4SLinus Torvalds 	unmap_len = last_block - first_unmap_block + 1;
15941da177e4SLinus Torvalds 	while (!done) {
15952c3234d1SDarrick J. Wong 		xfs_defer_init(&dfops, &first_block);
15968f04c47aSChristoph Hellwig 		error = xfs_bunmapi(tp, ip,
15973e57ecf6SOlaf Weber 				    first_unmap_block, unmap_len,
15988f04c47aSChristoph Hellwig 				    xfs_bmapi_aflag(whichfork),
15991da177e4SLinus Torvalds 				    XFS_ITRUNC_MAX_EXTENTS,
16002c3234d1SDarrick J. Wong 				    &first_block, &dfops,
1601b4e9181eSChristoph Hellwig 				    &done);
16028f04c47aSChristoph Hellwig 		if (error)
16038f04c47aSChristoph Hellwig 			goto out_bmap_cancel;
16041da177e4SLinus Torvalds 
16051da177e4SLinus Torvalds 		/*
16061da177e4SLinus Torvalds 		 * Duplicate the transaction that has the permanent
16071da177e4SLinus Torvalds 		 * reservation and commit the old transaction.
16081da177e4SLinus Torvalds 		 */
16098ad7c629SChristoph Hellwig 		xfs_defer_ijoin(&dfops, ip);
16108ad7c629SChristoph Hellwig 		error = xfs_defer_finish(&tp, &dfops);
16118f04c47aSChristoph Hellwig 		if (error)
16128f04c47aSChristoph Hellwig 			goto out_bmap_cancel;
16131da177e4SLinus Torvalds 
1614411350dfSChristoph Hellwig 		error = xfs_trans_roll_inode(&tp, ip);
16151da177e4SLinus Torvalds 		if (error)
16168f04c47aSChristoph Hellwig 			goto out;
16171da177e4SLinus Torvalds 	}
16188f04c47aSChristoph Hellwig 
16194919d42aSDarrick J. Wong 	if (whichfork == XFS_DATA_FORK) {
1620aa8968f2SDarrick J. Wong 		/* Remove all pending CoW reservations. */
16214919d42aSDarrick J. Wong 		error = xfs_reflink_cancel_cow_blocks(ip, &tp,
16224919d42aSDarrick J. Wong 				first_unmap_block, last_block, true);
1623aa8968f2SDarrick J. Wong 		if (error)
1624aa8968f2SDarrick J. Wong 			goto out;
1625aa8968f2SDarrick J. Wong 
1626363e59baSDarrick J. Wong 		xfs_itruncate_clear_reflink_flags(ip);
16274919d42aSDarrick J. Wong 	}
1628aa8968f2SDarrick J. Wong 
1629673e8e59SChristoph Hellwig 	/*
1630673e8e59SChristoph Hellwig 	 * Always re-log the inode so that our permanent transaction can keep
1631673e8e59SChristoph Hellwig 	 * on rolling it forward in the log.
1632673e8e59SChristoph Hellwig 	 */
1633673e8e59SChristoph Hellwig 	xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1634673e8e59SChristoph Hellwig 
1635673e8e59SChristoph Hellwig 	trace_xfs_itruncate_extents_end(ip, new_size);
1636673e8e59SChristoph Hellwig 
16378f04c47aSChristoph Hellwig out:
16388f04c47aSChristoph Hellwig 	*tpp = tp;
16398f04c47aSChristoph Hellwig 	return error;
16408f04c47aSChristoph Hellwig out_bmap_cancel:
16411da177e4SLinus Torvalds 	/*
16428f04c47aSChristoph Hellwig 	 * If the bunmapi call encounters an error, return to the caller where
16438f04c47aSChristoph Hellwig 	 * the transaction can be properly aborted.  We just need to make sure
16448f04c47aSChristoph Hellwig 	 * we're not holding any resources that we were not when we came in.
16451da177e4SLinus Torvalds 	 */
16462c3234d1SDarrick J. Wong 	xfs_defer_cancel(&dfops);
16478f04c47aSChristoph Hellwig 	goto out;
16488f04c47aSChristoph Hellwig }
16498f04c47aSChristoph Hellwig 
1650c24b5dfaSDave Chinner int
1651c24b5dfaSDave Chinner xfs_release(
1652c24b5dfaSDave Chinner 	xfs_inode_t	*ip)
1653c24b5dfaSDave Chinner {
1654c24b5dfaSDave Chinner 	xfs_mount_t	*mp = ip->i_mount;
1655c24b5dfaSDave Chinner 	int		error;
1656c24b5dfaSDave Chinner 
1657c19b3b05SDave Chinner 	if (!S_ISREG(VFS_I(ip)->i_mode) || (VFS_I(ip)->i_mode == 0))
1658c24b5dfaSDave Chinner 		return 0;
1659c24b5dfaSDave Chinner 
1660c24b5dfaSDave Chinner 	/* If this is a read-only mount, don't do this (would generate I/O) */
1661c24b5dfaSDave Chinner 	if (mp->m_flags & XFS_MOUNT_RDONLY)
1662c24b5dfaSDave Chinner 		return 0;
1663c24b5dfaSDave Chinner 
1664c24b5dfaSDave Chinner 	if (!XFS_FORCED_SHUTDOWN(mp)) {
1665c24b5dfaSDave Chinner 		int truncated;
1666c24b5dfaSDave Chinner 
1667c24b5dfaSDave Chinner 		/*
1668c24b5dfaSDave Chinner 		 * If we previously truncated this file and removed old data
1669c24b5dfaSDave Chinner 		 * in the process, we want to initiate "early" writeout on
1670c24b5dfaSDave Chinner 		 * the last close.  This is an attempt to combat the notorious
1671c24b5dfaSDave Chinner 		 * NULL files problem which is particularly noticeable from a
1672c24b5dfaSDave Chinner 		 * truncate down, buffered (re-)write (delalloc), followed by
1673c24b5dfaSDave Chinner 		 * a crash.  What we are effectively doing here is
1674c24b5dfaSDave Chinner 		 * significantly reducing the time window where we'd otherwise
1675c24b5dfaSDave Chinner 		 * be exposed to that problem.
1676c24b5dfaSDave Chinner 		 */
1677c24b5dfaSDave Chinner 		truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
1678c24b5dfaSDave Chinner 		if (truncated) {
1679c24b5dfaSDave Chinner 			xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE);
1680eac152b4SDave Chinner 			if (ip->i_delayed_blks > 0) {
16812451337dSDave Chinner 				error = filemap_flush(VFS_I(ip)->i_mapping);
1682c24b5dfaSDave Chinner 				if (error)
1683c24b5dfaSDave Chinner 					return error;
1684c24b5dfaSDave Chinner 			}
1685c24b5dfaSDave Chinner 		}
1686c24b5dfaSDave Chinner 	}
1687c24b5dfaSDave Chinner 
168854d7b5c1SDave Chinner 	if (VFS_I(ip)->i_nlink == 0)
1689c24b5dfaSDave Chinner 		return 0;
1690c24b5dfaSDave Chinner 
1691c24b5dfaSDave Chinner 	if (xfs_can_free_eofblocks(ip, false)) {
1692c24b5dfaSDave Chinner 
1693c24b5dfaSDave Chinner 		/*
1694a36b9261SBrian Foster 		 * Check if the inode is being opened, written and closed
1695a36b9261SBrian Foster 		 * frequently and we have delayed allocation blocks outstanding
1696a36b9261SBrian Foster 		 * (e.g. streaming writes from the NFS server), truncating the
1697a36b9261SBrian Foster 		 * blocks past EOF will cause fragmentation to occur.
1698a36b9261SBrian Foster 		 *
1699a36b9261SBrian Foster 		 * In this case don't do the truncation, but we have to be
1700a36b9261SBrian Foster 		 * careful how we detect this case. Blocks beyond EOF show up as
1701a36b9261SBrian Foster 		 * i_delayed_blks even when the inode is clean, so we need to
1702a36b9261SBrian Foster 		 * truncate them away first before checking for a dirty release.
1703a36b9261SBrian Foster 		 * Hence on the first dirty close we will still remove the
1704a36b9261SBrian Foster 		 * speculative allocation, but after that we will leave it in
1705a36b9261SBrian Foster 		 * place.
1706a36b9261SBrian Foster 		 */
1707a36b9261SBrian Foster 		if (xfs_iflags_test(ip, XFS_IDIRTY_RELEASE))
1708a36b9261SBrian Foster 			return 0;
1709a36b9261SBrian Foster 		/*
1710c24b5dfaSDave Chinner 		 * If we can't get the iolock just skip truncating the blocks
1711c24b5dfaSDave Chinner 		 * past EOF because we could deadlock with the mmap_sem
1712c24b5dfaSDave Chinner 		 * otherwise. We'll get another chance to drop them once the
1713c24b5dfaSDave Chinner 		 * last reference to the inode is dropped, so we'll never leak
1714c24b5dfaSDave Chinner 		 * blocks permanently.
1715c24b5dfaSDave Chinner 		 */
1716a36b9261SBrian Foster 		if (xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) {
1717a36b9261SBrian Foster 			error = xfs_free_eofblocks(ip);
1718a36b9261SBrian Foster 			xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1719a36b9261SBrian Foster 			if (error)
1720c24b5dfaSDave Chinner 				return error;
1721a36b9261SBrian Foster 		}
1722c24b5dfaSDave Chinner 
1723c24b5dfaSDave Chinner 		/* delalloc blocks after truncation means it really is dirty */
1724c24b5dfaSDave Chinner 		if (ip->i_delayed_blks)
1725c24b5dfaSDave Chinner 			xfs_iflags_set(ip, XFS_IDIRTY_RELEASE);
1726c24b5dfaSDave Chinner 	}
1727c24b5dfaSDave Chinner 	return 0;
1728c24b5dfaSDave Chinner }
1729c24b5dfaSDave Chinner 
1730c24b5dfaSDave Chinner /*
1731f7be2d7fSBrian Foster  * xfs_inactive_truncate
1732f7be2d7fSBrian Foster  *
1733f7be2d7fSBrian Foster  * Called to perform a truncate when an inode becomes unlinked.
1734f7be2d7fSBrian Foster  */
1735f7be2d7fSBrian Foster STATIC int
1736f7be2d7fSBrian Foster xfs_inactive_truncate(
1737f7be2d7fSBrian Foster 	struct xfs_inode *ip)
1738f7be2d7fSBrian Foster {
1739f7be2d7fSBrian Foster 	struct xfs_mount	*mp = ip->i_mount;
1740f7be2d7fSBrian Foster 	struct xfs_trans	*tp;
1741f7be2d7fSBrian Foster 	int			error;
1742f7be2d7fSBrian Foster 
1743253f4911SChristoph Hellwig 	error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0, &tp);
1744f7be2d7fSBrian Foster 	if (error) {
1745f7be2d7fSBrian Foster 		ASSERT(XFS_FORCED_SHUTDOWN(mp));
1746f7be2d7fSBrian Foster 		return error;
1747f7be2d7fSBrian Foster 	}
1748f7be2d7fSBrian Foster 
1749f7be2d7fSBrian Foster 	xfs_ilock(ip, XFS_ILOCK_EXCL);
1750f7be2d7fSBrian Foster 	xfs_trans_ijoin(tp, ip, 0);
1751f7be2d7fSBrian Foster 
1752f7be2d7fSBrian Foster 	/*
1753f7be2d7fSBrian Foster 	 * Log the inode size first to prevent stale data exposure in the event
1754f7be2d7fSBrian Foster 	 * of a system crash before the truncate completes. See the related
175569bca807SJan Kara 	 * comment in xfs_vn_setattr_size() for details.
1756f7be2d7fSBrian Foster 	 */
1757f7be2d7fSBrian Foster 	ip->i_d.di_size = 0;
1758f7be2d7fSBrian Foster 	xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1759f7be2d7fSBrian Foster 
1760f7be2d7fSBrian Foster 	error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0);
1761f7be2d7fSBrian Foster 	if (error)
1762f7be2d7fSBrian Foster 		goto error_trans_cancel;
1763f7be2d7fSBrian Foster 
1764f7be2d7fSBrian Foster 	ASSERT(ip->i_d.di_nextents == 0);
1765f7be2d7fSBrian Foster 
176670393313SChristoph Hellwig 	error = xfs_trans_commit(tp);
1767f7be2d7fSBrian Foster 	if (error)
1768f7be2d7fSBrian Foster 		goto error_unlock;
1769f7be2d7fSBrian Foster 
1770f7be2d7fSBrian Foster 	xfs_iunlock(ip, XFS_ILOCK_EXCL);
1771f7be2d7fSBrian Foster 	return 0;
1772f7be2d7fSBrian Foster 
1773f7be2d7fSBrian Foster error_trans_cancel:
17744906e215SChristoph Hellwig 	xfs_trans_cancel(tp);
1775f7be2d7fSBrian Foster error_unlock:
1776f7be2d7fSBrian Foster 	xfs_iunlock(ip, XFS_ILOCK_EXCL);
1777f7be2d7fSBrian Foster 	return error;
1778f7be2d7fSBrian Foster }
1779f7be2d7fSBrian Foster 
1780f7be2d7fSBrian Foster /*
178188877d2bSBrian Foster  * xfs_inactive_ifree()
178288877d2bSBrian Foster  *
178388877d2bSBrian Foster  * Perform the inode free when an inode is unlinked.
178488877d2bSBrian Foster  */
178588877d2bSBrian Foster STATIC int
178688877d2bSBrian Foster xfs_inactive_ifree(
178788877d2bSBrian Foster 	struct xfs_inode *ip)
178888877d2bSBrian Foster {
17892c3234d1SDarrick J. Wong 	struct xfs_defer_ops	dfops;
179088877d2bSBrian Foster 	xfs_fsblock_t		first_block;
179188877d2bSBrian Foster 	struct xfs_mount	*mp = ip->i_mount;
179288877d2bSBrian Foster 	struct xfs_trans	*tp;
179388877d2bSBrian Foster 	int			error;
179488877d2bSBrian Foster 
17959d43b180SBrian Foster 	/*
179676d771b4SChristoph Hellwig 	 * We try to use a per-AG reservation for any block needed by the finobt
179776d771b4SChristoph Hellwig 	 * tree, but as the finobt feature predates the per-AG reservation
179876d771b4SChristoph Hellwig 	 * support a degraded file system might not have enough space for the
179976d771b4SChristoph Hellwig 	 * reservation at mount time.  In that case try to dip into the reserved
180076d771b4SChristoph Hellwig 	 * pool and pray.
18019d43b180SBrian Foster 	 *
18029d43b180SBrian Foster 	 * Send a warning if the reservation does happen to fail, as the inode
18039d43b180SBrian Foster 	 * now remains allocated and sits on the unlinked list until the fs is
18049d43b180SBrian Foster 	 * repaired.
18059d43b180SBrian Foster 	 */
180676d771b4SChristoph Hellwig 	if (unlikely(mp->m_inotbt_nores)) {
1807253f4911SChristoph Hellwig 		error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ifree,
180876d771b4SChristoph Hellwig 				XFS_IFREE_SPACE_RES(mp), 0, XFS_TRANS_RESERVE,
180976d771b4SChristoph Hellwig 				&tp);
181076d771b4SChristoph Hellwig 	} else {
181176d771b4SChristoph Hellwig 		error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ifree, 0, 0, 0, &tp);
181276d771b4SChristoph Hellwig 	}
181388877d2bSBrian Foster 	if (error) {
18142451337dSDave Chinner 		if (error == -ENOSPC) {
18159d43b180SBrian Foster 			xfs_warn_ratelimited(mp,
18169d43b180SBrian Foster 			"Failed to remove inode(s) from unlinked list. "
18179d43b180SBrian Foster 			"Please free space, unmount and run xfs_repair.");
18189d43b180SBrian Foster 		} else {
181988877d2bSBrian Foster 			ASSERT(XFS_FORCED_SHUTDOWN(mp));
18209d43b180SBrian Foster 		}
182188877d2bSBrian Foster 		return error;
182288877d2bSBrian Foster 	}
182388877d2bSBrian Foster 
182488877d2bSBrian Foster 	xfs_ilock(ip, XFS_ILOCK_EXCL);
182588877d2bSBrian Foster 	xfs_trans_ijoin(tp, ip, 0);
182688877d2bSBrian Foster 
18272c3234d1SDarrick J. Wong 	xfs_defer_init(&dfops, &first_block);
1828658f8f95SBrian Foster 	tp->t_agfl_dfops = &dfops;
18292c3234d1SDarrick J. Wong 	error = xfs_ifree(tp, ip, &dfops);
183088877d2bSBrian Foster 	if (error) {
183188877d2bSBrian Foster 		/*
183288877d2bSBrian Foster 		 * If we fail to free the inode, shut down.  The cancel
183388877d2bSBrian Foster 		 * might do that, we need to make sure.  Otherwise the
183488877d2bSBrian Foster 		 * inode might be lost for a long time or forever.
183588877d2bSBrian Foster 		 */
183688877d2bSBrian Foster 		if (!XFS_FORCED_SHUTDOWN(mp)) {
183788877d2bSBrian Foster 			xfs_notice(mp, "%s: xfs_ifree returned error %d",
183888877d2bSBrian Foster 				__func__, error);
183988877d2bSBrian Foster 			xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
184088877d2bSBrian Foster 		}
18414906e215SChristoph Hellwig 		xfs_trans_cancel(tp);
184288877d2bSBrian Foster 		xfs_iunlock(ip, XFS_ILOCK_EXCL);
184388877d2bSBrian Foster 		return error;
184488877d2bSBrian Foster 	}
184588877d2bSBrian Foster 
184688877d2bSBrian Foster 	/*
184788877d2bSBrian Foster 	 * Credit the quota account(s). The inode is gone.
184888877d2bSBrian Foster 	 */
184988877d2bSBrian Foster 	xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
185088877d2bSBrian Foster 
185188877d2bSBrian Foster 	/*
1852d4a97a04SBrian Foster 	 * Just ignore errors at this point.  There is nothing we can do except
1853d4a97a04SBrian Foster 	 * to try to keep going. Make sure it's not a silent error.
185488877d2bSBrian Foster 	 */
18558ad7c629SChristoph Hellwig 	error = xfs_defer_finish(&tp, &dfops);
1856d4a97a04SBrian Foster 	if (error) {
1857310a75a3SDarrick J. Wong 		xfs_notice(mp, "%s: xfs_defer_finish returned error %d",
185888877d2bSBrian Foster 			__func__, error);
18592c3234d1SDarrick J. Wong 		xfs_defer_cancel(&dfops);
1860d4a97a04SBrian Foster 	}
186170393313SChristoph Hellwig 	error = xfs_trans_commit(tp);
186288877d2bSBrian Foster 	if (error)
186388877d2bSBrian Foster 		xfs_notice(mp, "%s: xfs_trans_commit returned error %d",
186488877d2bSBrian Foster 			__func__, error);
186588877d2bSBrian Foster 
186688877d2bSBrian Foster 	xfs_iunlock(ip, XFS_ILOCK_EXCL);
186788877d2bSBrian Foster 	return 0;
186888877d2bSBrian Foster }
186988877d2bSBrian Foster 
187088877d2bSBrian Foster /*
1871c24b5dfaSDave Chinner  * xfs_inactive
1872c24b5dfaSDave Chinner  *
1873c24b5dfaSDave Chinner  * This is called when the vnode reference count for the vnode
1874c24b5dfaSDave Chinner  * goes to zero.  If the file has been unlinked, then it must
1875c24b5dfaSDave Chinner  * now be truncated.  Also, we clear all of the read-ahead state
1876c24b5dfaSDave Chinner  * kept for the inode here since the file is now closed.
1877c24b5dfaSDave Chinner  */
187874564fb4SBrian Foster void
1879c24b5dfaSDave Chinner xfs_inactive(
1880c24b5dfaSDave Chinner 	xfs_inode_t	*ip)
1881c24b5dfaSDave Chinner {
18823d3c8b52SJie Liu 	struct xfs_mount	*mp;
18836231848cSDarrick J. Wong 	struct xfs_ifork	*cow_ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
1884c24b5dfaSDave Chinner 	int			error;
1885c24b5dfaSDave Chinner 	int			truncate = 0;
1886c24b5dfaSDave Chinner 
1887c24b5dfaSDave Chinner 	/*
1888c24b5dfaSDave Chinner 	 * If the inode is already free, then there can be nothing
1889c24b5dfaSDave Chinner 	 * to clean up here.
1890c24b5dfaSDave Chinner 	 */
1891c19b3b05SDave Chinner 	if (VFS_I(ip)->i_mode == 0) {
1892c24b5dfaSDave Chinner 		ASSERT(ip->i_df.if_real_bytes == 0);
1893c24b5dfaSDave Chinner 		ASSERT(ip->i_df.if_broot_bytes == 0);
189474564fb4SBrian Foster 		return;
1895c24b5dfaSDave Chinner 	}
1896c24b5dfaSDave Chinner 
1897c24b5dfaSDave Chinner 	mp = ip->i_mount;
189817c12bcdSDarrick J. Wong 	ASSERT(!xfs_iflags_test(ip, XFS_IRECOVERY));
1899c24b5dfaSDave Chinner 
1900c24b5dfaSDave Chinner 	/* If this is a read-only mount, don't do this (would generate I/O) */
1901c24b5dfaSDave Chinner 	if (mp->m_flags & XFS_MOUNT_RDONLY)
190274564fb4SBrian Foster 		return;
1903c24b5dfaSDave Chinner 
19046231848cSDarrick J. Wong 	/* Try to clean out the cow blocks if there are any. */
19056231848cSDarrick J. Wong 	if (xfs_is_reflink_inode(ip) && cow_ifp->if_bytes > 0)
19066231848cSDarrick J. Wong 		xfs_reflink_cancel_cow_range(ip, 0, NULLFILEOFF, true);
19076231848cSDarrick J. Wong 
190854d7b5c1SDave Chinner 	if (VFS_I(ip)->i_nlink != 0) {
1909c24b5dfaSDave Chinner 		/*
1910c24b5dfaSDave Chinner 		 * force is true because we are evicting an inode from the
1911c24b5dfaSDave Chinner 		 * cache. Post-eof blocks must be freed, lest we end up with
1912c24b5dfaSDave Chinner 		 * broken free space accounting.
19133b4683c2SBrian Foster 		 *
19143b4683c2SBrian Foster 		 * Note: don't bother with iolock here since lockdep complains
19153b4683c2SBrian Foster 		 * about acquiring it in reclaim context. We have the only
19163b4683c2SBrian Foster 		 * reference to the inode at this point anyways.
1917c24b5dfaSDave Chinner 		 */
19183b4683c2SBrian Foster 		if (xfs_can_free_eofblocks(ip, true))
1919a36b9261SBrian Foster 			xfs_free_eofblocks(ip);
192074564fb4SBrian Foster 
192174564fb4SBrian Foster 		return;
1922c24b5dfaSDave Chinner 	}
1923c24b5dfaSDave Chinner 
1924c19b3b05SDave Chinner 	if (S_ISREG(VFS_I(ip)->i_mode) &&
1925c24b5dfaSDave Chinner 	    (ip->i_d.di_size != 0 || XFS_ISIZE(ip) != 0 ||
1926c24b5dfaSDave Chinner 	     ip->i_d.di_nextents > 0 || ip->i_delayed_blks > 0))
1927c24b5dfaSDave Chinner 		truncate = 1;
1928c24b5dfaSDave Chinner 
1929c24b5dfaSDave Chinner 	error = xfs_qm_dqattach(ip, 0);
1930c24b5dfaSDave Chinner 	if (error)
193174564fb4SBrian Foster 		return;
1932c24b5dfaSDave Chinner 
1933c19b3b05SDave Chinner 	if (S_ISLNK(VFS_I(ip)->i_mode))
193436b21ddeSBrian Foster 		error = xfs_inactive_symlink(ip);
1935f7be2d7fSBrian Foster 	else if (truncate)
1936f7be2d7fSBrian Foster 		error = xfs_inactive_truncate(ip);
193736b21ddeSBrian Foster 	if (error)
193874564fb4SBrian Foster 		return;
1939c24b5dfaSDave Chinner 
1940c24b5dfaSDave Chinner 	/*
1941c24b5dfaSDave Chinner 	 * If there are attributes associated with the file then blow them away
1942c24b5dfaSDave Chinner 	 * now.  The code calls a routine that recursively deconstructs the
19436dfe5a04SDave Chinner 	 * attribute fork. If also blows away the in-core attribute fork.
1944c24b5dfaSDave Chinner 	 */
19456dfe5a04SDave Chinner 	if (XFS_IFORK_Q(ip)) {
1946c24b5dfaSDave Chinner 		error = xfs_attr_inactive(ip);
1947c24b5dfaSDave Chinner 		if (error)
194874564fb4SBrian Foster 			return;
1949c24b5dfaSDave Chinner 	}
1950c24b5dfaSDave Chinner 
19516dfe5a04SDave Chinner 	ASSERT(!ip->i_afp);
1952c24b5dfaSDave Chinner 	ASSERT(ip->i_d.di_anextents == 0);
19536dfe5a04SDave Chinner 	ASSERT(ip->i_d.di_forkoff == 0);
1954c24b5dfaSDave Chinner 
1955c24b5dfaSDave Chinner 	/*
1956c24b5dfaSDave Chinner 	 * Free the inode.
1957c24b5dfaSDave Chinner 	 */
195888877d2bSBrian Foster 	error = xfs_inactive_ifree(ip);
1959c24b5dfaSDave Chinner 	if (error)
196074564fb4SBrian Foster 		return;
1961c24b5dfaSDave Chinner 
1962c24b5dfaSDave Chinner 	/*
1963c24b5dfaSDave Chinner 	 * Release the dquots held by inode, if any.
1964c24b5dfaSDave Chinner 	 */
1965c24b5dfaSDave Chinner 	xfs_qm_dqdetach(ip);
1966c24b5dfaSDave Chinner }
1967c24b5dfaSDave Chinner 
19681da177e4SLinus Torvalds /*
196954d7b5c1SDave Chinner  * This is called when the inode's link count goes to 0 or we are creating a
197054d7b5c1SDave Chinner  * tmpfile via O_TMPFILE. In the case of a tmpfile, @ignore_linkcount will be
197154d7b5c1SDave Chinner  * set to true as the link count is dropped to zero by the VFS after we've
197254d7b5c1SDave Chinner  * created the file successfully, so we have to add it to the unlinked list
197354d7b5c1SDave Chinner  * while the link count is non-zero.
197454d7b5c1SDave Chinner  *
197554d7b5c1SDave Chinner  * We place the on-disk inode on a list in the AGI.  It will be pulled from this
197654d7b5c1SDave Chinner  * list when the inode is freed.
19771da177e4SLinus Torvalds  */
197854d7b5c1SDave Chinner STATIC int
19791da177e4SLinus Torvalds xfs_iunlink(
198054d7b5c1SDave Chinner 	struct xfs_trans *tp,
198154d7b5c1SDave Chinner 	struct xfs_inode *ip)
19821da177e4SLinus Torvalds {
198354d7b5c1SDave Chinner 	xfs_mount_t	*mp = tp->t_mountp;
19841da177e4SLinus Torvalds 	xfs_agi_t	*agi;
19851da177e4SLinus Torvalds 	xfs_dinode_t	*dip;
19861da177e4SLinus Torvalds 	xfs_buf_t	*agibp;
19871da177e4SLinus Torvalds 	xfs_buf_t	*ibp;
19881da177e4SLinus Torvalds 	xfs_agino_t	agino;
19891da177e4SLinus Torvalds 	short		bucket_index;
19901da177e4SLinus Torvalds 	int		offset;
19911da177e4SLinus Torvalds 	int		error;
19921da177e4SLinus Torvalds 
1993c19b3b05SDave Chinner 	ASSERT(VFS_I(ip)->i_mode != 0);
19941da177e4SLinus Torvalds 
19951da177e4SLinus Torvalds 	/*
19961da177e4SLinus Torvalds 	 * Get the agi buffer first.  It ensures lock ordering
19971da177e4SLinus Torvalds 	 * on the list.
19981da177e4SLinus Torvalds 	 */
19995e1be0fbSChristoph Hellwig 	error = xfs_read_agi(mp, tp, XFS_INO_TO_AGNO(mp, ip->i_ino), &agibp);
2000859d7182SVlad Apostolov 	if (error)
20011da177e4SLinus Torvalds 		return error;
20021da177e4SLinus Torvalds 	agi = XFS_BUF_TO_AGI(agibp);
20035e1be0fbSChristoph Hellwig 
20041da177e4SLinus Torvalds 	/*
20051da177e4SLinus Torvalds 	 * Get the index into the agi hash table for the
20061da177e4SLinus Torvalds 	 * list this inode will go on.
20071da177e4SLinus Torvalds 	 */
20081da177e4SLinus Torvalds 	agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
20091da177e4SLinus Torvalds 	ASSERT(agino != 0);
20101da177e4SLinus Torvalds 	bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
20111da177e4SLinus Torvalds 	ASSERT(agi->agi_unlinked[bucket_index]);
201216259e7dSChristoph Hellwig 	ASSERT(be32_to_cpu(agi->agi_unlinked[bucket_index]) != agino);
20131da177e4SLinus Torvalds 
201469ef921bSChristoph Hellwig 	if (agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO)) {
20151da177e4SLinus Torvalds 		/*
20161da177e4SLinus Torvalds 		 * There is already another inode in the bucket we need
20171da177e4SLinus Torvalds 		 * to add ourselves to.  Add us at the front of the list.
20181da177e4SLinus Torvalds 		 * Here we put the head pointer into our next pointer,
20191da177e4SLinus Torvalds 		 * and then we fall through to point the head at us.
20201da177e4SLinus Torvalds 		 */
2021475ee413SChristoph Hellwig 		error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
2022475ee413SChristoph Hellwig 				       0, 0);
2023c319b58bSVlad Apostolov 		if (error)
2024c319b58bSVlad Apostolov 			return error;
2025c319b58bSVlad Apostolov 
202669ef921bSChristoph Hellwig 		ASSERT(dip->di_next_unlinked == cpu_to_be32(NULLAGINO));
20271da177e4SLinus Torvalds 		dip->di_next_unlinked = agi->agi_unlinked[bucket_index];
202892bfc6e7SChristoph Hellwig 		offset = ip->i_imap.im_boffset +
20291da177e4SLinus Torvalds 			offsetof(xfs_dinode_t, di_next_unlinked);
20300a32c26eSDave Chinner 
20310a32c26eSDave Chinner 		/* need to recalc the inode CRC if appropriate */
20320a32c26eSDave Chinner 		xfs_dinode_calc_crc(mp, dip);
20330a32c26eSDave Chinner 
20341da177e4SLinus Torvalds 		xfs_trans_inode_buf(tp, ibp);
20351da177e4SLinus Torvalds 		xfs_trans_log_buf(tp, ibp, offset,
20361da177e4SLinus Torvalds 				  (offset + sizeof(xfs_agino_t) - 1));
20371da177e4SLinus Torvalds 		xfs_inobp_check(mp, ibp);
20381da177e4SLinus Torvalds 	}
20391da177e4SLinus Torvalds 
20401da177e4SLinus Torvalds 	/*
20411da177e4SLinus Torvalds 	 * Point the bucket head pointer at the inode being inserted.
20421da177e4SLinus Torvalds 	 */
20431da177e4SLinus Torvalds 	ASSERT(agino != 0);
204416259e7dSChristoph Hellwig 	agi->agi_unlinked[bucket_index] = cpu_to_be32(agino);
20451da177e4SLinus Torvalds 	offset = offsetof(xfs_agi_t, agi_unlinked) +
20461da177e4SLinus Torvalds 		(sizeof(xfs_agino_t) * bucket_index);
20471da177e4SLinus Torvalds 	xfs_trans_log_buf(tp, agibp, offset,
20481da177e4SLinus Torvalds 			  (offset + sizeof(xfs_agino_t) - 1));
20491da177e4SLinus Torvalds 	return 0;
20501da177e4SLinus Torvalds }
20511da177e4SLinus Torvalds 
20521da177e4SLinus Torvalds /*
20531da177e4SLinus Torvalds  * Pull the on-disk inode from the AGI unlinked list.
20541da177e4SLinus Torvalds  */
20551da177e4SLinus Torvalds STATIC int
20561da177e4SLinus Torvalds xfs_iunlink_remove(
20571da177e4SLinus Torvalds 	xfs_trans_t	*tp,
20581da177e4SLinus Torvalds 	xfs_inode_t	*ip)
20591da177e4SLinus Torvalds {
20601da177e4SLinus Torvalds 	xfs_ino_t	next_ino;
20611da177e4SLinus Torvalds 	xfs_mount_t	*mp;
20621da177e4SLinus Torvalds 	xfs_agi_t	*agi;
20631da177e4SLinus Torvalds 	xfs_dinode_t	*dip;
20641da177e4SLinus Torvalds 	xfs_buf_t	*agibp;
20651da177e4SLinus Torvalds 	xfs_buf_t	*ibp;
20661da177e4SLinus Torvalds 	xfs_agnumber_t	agno;
20671da177e4SLinus Torvalds 	xfs_agino_t	agino;
20681da177e4SLinus Torvalds 	xfs_agino_t	next_agino;
20691da177e4SLinus Torvalds 	xfs_buf_t	*last_ibp;
20706fdf8cccSNathan Scott 	xfs_dinode_t	*last_dip = NULL;
20711da177e4SLinus Torvalds 	short		bucket_index;
20726fdf8cccSNathan Scott 	int		offset, last_offset = 0;
20731da177e4SLinus Torvalds 	int		error;
20741da177e4SLinus Torvalds 
20751da177e4SLinus Torvalds 	mp = tp->t_mountp;
20761da177e4SLinus Torvalds 	agno = XFS_INO_TO_AGNO(mp, ip->i_ino);
20771da177e4SLinus Torvalds 
20781da177e4SLinus Torvalds 	/*
20791da177e4SLinus Torvalds 	 * Get the agi buffer first.  It ensures lock ordering
20801da177e4SLinus Torvalds 	 * on the list.
20811da177e4SLinus Torvalds 	 */
20825e1be0fbSChristoph Hellwig 	error = xfs_read_agi(mp, tp, agno, &agibp);
20835e1be0fbSChristoph Hellwig 	if (error)
20841da177e4SLinus Torvalds 		return error;
20855e1be0fbSChristoph Hellwig 
20861da177e4SLinus Torvalds 	agi = XFS_BUF_TO_AGI(agibp);
20875e1be0fbSChristoph Hellwig 
20881da177e4SLinus Torvalds 	/*
20891da177e4SLinus Torvalds 	 * Get the index into the agi hash table for the
20901da177e4SLinus Torvalds 	 * list this inode will go on.
20911da177e4SLinus Torvalds 	 */
20921da177e4SLinus Torvalds 	agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
20931da177e4SLinus Torvalds 	ASSERT(agino != 0);
20941da177e4SLinus Torvalds 	bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
209569ef921bSChristoph Hellwig 	ASSERT(agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO));
20961da177e4SLinus Torvalds 	ASSERT(agi->agi_unlinked[bucket_index]);
20971da177e4SLinus Torvalds 
209816259e7dSChristoph Hellwig 	if (be32_to_cpu(agi->agi_unlinked[bucket_index]) == agino) {
20991da177e4SLinus Torvalds 		/*
2100475ee413SChristoph Hellwig 		 * We're at the head of the list.  Get the inode's on-disk
2101475ee413SChristoph Hellwig 		 * buffer to see if there is anyone after us on the list.
2102475ee413SChristoph Hellwig 		 * Only modify our next pointer if it is not already NULLAGINO.
2103475ee413SChristoph Hellwig 		 * This saves us the overhead of dealing with the buffer when
2104475ee413SChristoph Hellwig 		 * there is no need to change it.
21051da177e4SLinus Torvalds 		 */
2106475ee413SChristoph Hellwig 		error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
2107475ee413SChristoph Hellwig 				       0, 0);
21081da177e4SLinus Torvalds 		if (error) {
2109475ee413SChristoph Hellwig 			xfs_warn(mp, "%s: xfs_imap_to_bp returned error %d.",
21100b932cccSDave Chinner 				__func__, error);
21111da177e4SLinus Torvalds 			return error;
21121da177e4SLinus Torvalds 		}
2113347d1c01SChristoph Hellwig 		next_agino = be32_to_cpu(dip->di_next_unlinked);
21141da177e4SLinus Torvalds 		ASSERT(next_agino != 0);
21151da177e4SLinus Torvalds 		if (next_agino != NULLAGINO) {
2116347d1c01SChristoph Hellwig 			dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
211792bfc6e7SChristoph Hellwig 			offset = ip->i_imap.im_boffset +
21181da177e4SLinus Torvalds 				offsetof(xfs_dinode_t, di_next_unlinked);
21190a32c26eSDave Chinner 
21200a32c26eSDave Chinner 			/* need to recalc the inode CRC if appropriate */
21210a32c26eSDave Chinner 			xfs_dinode_calc_crc(mp, dip);
21220a32c26eSDave Chinner 
21231da177e4SLinus Torvalds 			xfs_trans_inode_buf(tp, ibp);
21241da177e4SLinus Torvalds 			xfs_trans_log_buf(tp, ibp, offset,
21251da177e4SLinus Torvalds 					  (offset + sizeof(xfs_agino_t) - 1));
21261da177e4SLinus Torvalds 			xfs_inobp_check(mp, ibp);
21271da177e4SLinus Torvalds 		} else {
21281da177e4SLinus Torvalds 			xfs_trans_brelse(tp, ibp);
21291da177e4SLinus Torvalds 		}
21301da177e4SLinus Torvalds 		/*
21311da177e4SLinus Torvalds 		 * Point the bucket head pointer at the next inode.
21321da177e4SLinus Torvalds 		 */
21331da177e4SLinus Torvalds 		ASSERT(next_agino != 0);
21341da177e4SLinus Torvalds 		ASSERT(next_agino != agino);
213516259e7dSChristoph Hellwig 		agi->agi_unlinked[bucket_index] = cpu_to_be32(next_agino);
21361da177e4SLinus Torvalds 		offset = offsetof(xfs_agi_t, agi_unlinked) +
21371da177e4SLinus Torvalds 			(sizeof(xfs_agino_t) * bucket_index);
21381da177e4SLinus Torvalds 		xfs_trans_log_buf(tp, agibp, offset,
21391da177e4SLinus Torvalds 				  (offset + sizeof(xfs_agino_t) - 1));
21401da177e4SLinus Torvalds 	} else {
21411da177e4SLinus Torvalds 		/*
21421da177e4SLinus Torvalds 		 * We need to search the list for the inode being freed.
21431da177e4SLinus Torvalds 		 */
214416259e7dSChristoph Hellwig 		next_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]);
21451da177e4SLinus Torvalds 		last_ibp = NULL;
21461da177e4SLinus Torvalds 		while (next_agino != agino) {
2147129dbc9aSChristoph Hellwig 			struct xfs_imap	imap;
2148129dbc9aSChristoph Hellwig 
2149129dbc9aSChristoph Hellwig 			if (last_ibp)
21501da177e4SLinus Torvalds 				xfs_trans_brelse(tp, last_ibp);
2151129dbc9aSChristoph Hellwig 
2152129dbc9aSChristoph Hellwig 			imap.im_blkno = 0;
21531da177e4SLinus Torvalds 			next_ino = XFS_AGINO_TO_INO(mp, agno, next_agino);
2154129dbc9aSChristoph Hellwig 
2155129dbc9aSChristoph Hellwig 			error = xfs_imap(mp, tp, next_ino, &imap, 0);
21561da177e4SLinus Torvalds 			if (error) {
21570b932cccSDave Chinner 				xfs_warn(mp,
2158129dbc9aSChristoph Hellwig 	"%s: xfs_imap returned error %d.",
21590b932cccSDave Chinner 					 __func__, error);
21601da177e4SLinus Torvalds 				return error;
21611da177e4SLinus Torvalds 			}
2162129dbc9aSChristoph Hellwig 
2163129dbc9aSChristoph Hellwig 			error = xfs_imap_to_bp(mp, tp, &imap, &last_dip,
2164129dbc9aSChristoph Hellwig 					       &last_ibp, 0, 0);
2165129dbc9aSChristoph Hellwig 			if (error) {
2166129dbc9aSChristoph Hellwig 				xfs_warn(mp,
2167129dbc9aSChristoph Hellwig 	"%s: xfs_imap_to_bp returned error %d.",
2168129dbc9aSChristoph Hellwig 					__func__, error);
2169129dbc9aSChristoph Hellwig 				return error;
2170129dbc9aSChristoph Hellwig 			}
2171129dbc9aSChristoph Hellwig 
2172129dbc9aSChristoph Hellwig 			last_offset = imap.im_boffset;
2173347d1c01SChristoph Hellwig 			next_agino = be32_to_cpu(last_dip->di_next_unlinked);
21741da177e4SLinus Torvalds 			ASSERT(next_agino != NULLAGINO);
21751da177e4SLinus Torvalds 			ASSERT(next_agino != 0);
21761da177e4SLinus Torvalds 		}
2177475ee413SChristoph Hellwig 
21781da177e4SLinus Torvalds 		/*
2179475ee413SChristoph Hellwig 		 * Now last_ibp points to the buffer previous to us on the
2180475ee413SChristoph Hellwig 		 * unlinked list.  Pull us from the list.
21811da177e4SLinus Torvalds 		 */
2182475ee413SChristoph Hellwig 		error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
2183475ee413SChristoph Hellwig 				       0, 0);
21841da177e4SLinus Torvalds 		if (error) {
2185475ee413SChristoph Hellwig 			xfs_warn(mp, "%s: xfs_imap_to_bp(2) returned error %d.",
21860b932cccSDave Chinner 				__func__, error);
21871da177e4SLinus Torvalds 			return error;
21881da177e4SLinus Torvalds 		}
2189347d1c01SChristoph Hellwig 		next_agino = be32_to_cpu(dip->di_next_unlinked);
21901da177e4SLinus Torvalds 		ASSERT(next_agino != 0);
21911da177e4SLinus Torvalds 		ASSERT(next_agino != agino);
21921da177e4SLinus Torvalds 		if (next_agino != NULLAGINO) {
2193347d1c01SChristoph Hellwig 			dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
219492bfc6e7SChristoph Hellwig 			offset = ip->i_imap.im_boffset +
21951da177e4SLinus Torvalds 				offsetof(xfs_dinode_t, di_next_unlinked);
21960a32c26eSDave Chinner 
21970a32c26eSDave Chinner 			/* need to recalc the inode CRC if appropriate */
21980a32c26eSDave Chinner 			xfs_dinode_calc_crc(mp, dip);
21990a32c26eSDave Chinner 
22001da177e4SLinus Torvalds 			xfs_trans_inode_buf(tp, ibp);
22011da177e4SLinus Torvalds 			xfs_trans_log_buf(tp, ibp, offset,
22021da177e4SLinus Torvalds 					  (offset + sizeof(xfs_agino_t) - 1));
22031da177e4SLinus Torvalds 			xfs_inobp_check(mp, ibp);
22041da177e4SLinus Torvalds 		} else {
22051da177e4SLinus Torvalds 			xfs_trans_brelse(tp, ibp);
22061da177e4SLinus Torvalds 		}
22071da177e4SLinus Torvalds 		/*
22081da177e4SLinus Torvalds 		 * Point the previous inode on the list to the next inode.
22091da177e4SLinus Torvalds 		 */
2210347d1c01SChristoph Hellwig 		last_dip->di_next_unlinked = cpu_to_be32(next_agino);
22111da177e4SLinus Torvalds 		ASSERT(next_agino != 0);
22121da177e4SLinus Torvalds 		offset = last_offset + offsetof(xfs_dinode_t, di_next_unlinked);
22130a32c26eSDave Chinner 
22140a32c26eSDave Chinner 		/* need to recalc the inode CRC if appropriate */
22150a32c26eSDave Chinner 		xfs_dinode_calc_crc(mp, last_dip);
22160a32c26eSDave Chinner 
22171da177e4SLinus Torvalds 		xfs_trans_inode_buf(tp, last_ibp);
22181da177e4SLinus Torvalds 		xfs_trans_log_buf(tp, last_ibp, offset,
22191da177e4SLinus Torvalds 				  (offset + sizeof(xfs_agino_t) - 1));
22201da177e4SLinus Torvalds 		xfs_inobp_check(mp, last_ibp);
22211da177e4SLinus Torvalds 	}
22221da177e4SLinus Torvalds 	return 0;
22231da177e4SLinus Torvalds }
22241da177e4SLinus Torvalds 
22255b3eed75SDave Chinner /*
22260b8182dbSZhi Yong Wu  * A big issue when freeing the inode cluster is that we _cannot_ skip any
22275b3eed75SDave Chinner  * inodes that are in memory - they all must be marked stale and attached to
22285b3eed75SDave Chinner  * the cluster buffer.
22295b3eed75SDave Chinner  */
22302a30f36dSChandra Seetharaman STATIC int
22311da177e4SLinus Torvalds xfs_ifree_cluster(
22321da177e4SLinus Torvalds 	xfs_inode_t		*free_ip,
22331da177e4SLinus Torvalds 	xfs_trans_t		*tp,
223409b56604SBrian Foster 	struct xfs_icluster	*xic)
22351da177e4SLinus Torvalds {
22361da177e4SLinus Torvalds 	xfs_mount_t		*mp = free_ip->i_mount;
22371da177e4SLinus Torvalds 	int			blks_per_cluster;
2238982e939eSJie Liu 	int			inodes_per_cluster;
22391da177e4SLinus Torvalds 	int			nbufs;
22405b257b4aSDave Chinner 	int			i, j;
22413cdaa189SBrian Foster 	int			ioffset;
22421da177e4SLinus Torvalds 	xfs_daddr_t		blkno;
22431da177e4SLinus Torvalds 	xfs_buf_t		*bp;
22445b257b4aSDave Chinner 	xfs_inode_t		*ip;
22451da177e4SLinus Torvalds 	xfs_inode_log_item_t	*iip;
2246643c8c05SCarlos Maiolino 	struct xfs_log_item	*lip;
22475017e97dSDave Chinner 	struct xfs_perag	*pag;
224809b56604SBrian Foster 	xfs_ino_t		inum;
22491da177e4SLinus Torvalds 
225009b56604SBrian Foster 	inum = xic->first_ino;
22515017e97dSDave Chinner 	pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, inum));
2252982e939eSJie Liu 	blks_per_cluster = xfs_icluster_size_fsb(mp);
2253982e939eSJie Liu 	inodes_per_cluster = blks_per_cluster << mp->m_sb.sb_inopblog;
2254126cd105SJie Liu 	nbufs = mp->m_ialloc_blks / blks_per_cluster;
22551da177e4SLinus Torvalds 
2256982e939eSJie Liu 	for (j = 0; j < nbufs; j++, inum += inodes_per_cluster) {
225709b56604SBrian Foster 		/*
225809b56604SBrian Foster 		 * The allocation bitmap tells us which inodes of the chunk were
225909b56604SBrian Foster 		 * physically allocated. Skip the cluster if an inode falls into
226009b56604SBrian Foster 		 * a sparse region.
226109b56604SBrian Foster 		 */
22623cdaa189SBrian Foster 		ioffset = inum - xic->first_ino;
22633cdaa189SBrian Foster 		if ((xic->alloc & XFS_INOBT_MASK(ioffset)) == 0) {
22643cdaa189SBrian Foster 			ASSERT(do_mod(ioffset, inodes_per_cluster) == 0);
226509b56604SBrian Foster 			continue;
226609b56604SBrian Foster 		}
226709b56604SBrian Foster 
22681da177e4SLinus Torvalds 		blkno = XFS_AGB_TO_DADDR(mp, XFS_INO_TO_AGNO(mp, inum),
22691da177e4SLinus Torvalds 					 XFS_INO_TO_AGBNO(mp, inum));
22701da177e4SLinus Torvalds 
22711da177e4SLinus Torvalds 		/*
22725b257b4aSDave Chinner 		 * We obtain and lock the backing buffer first in the process
22735b257b4aSDave Chinner 		 * here, as we have to ensure that any dirty inode that we
22745b257b4aSDave Chinner 		 * can't get the flush lock on is attached to the buffer.
22755b257b4aSDave Chinner 		 * If we scan the in-memory inodes first, then buffer IO can
22765b257b4aSDave Chinner 		 * complete before we get a lock on it, and hence we may fail
22775b257b4aSDave Chinner 		 * to mark all the active inodes on the buffer stale.
22781da177e4SLinus Torvalds 		 */
22791da177e4SLinus Torvalds 		bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno,
2280b6aff29fSDave Chinner 					mp->m_bsize * blks_per_cluster,
2281b6aff29fSDave Chinner 					XBF_UNMAPPED);
22821da177e4SLinus Torvalds 
22832a30f36dSChandra Seetharaman 		if (!bp)
22842451337dSDave Chinner 			return -ENOMEM;
2285b0f539deSDave Chinner 
2286b0f539deSDave Chinner 		/*
2287b0f539deSDave Chinner 		 * This buffer may not have been correctly initialised as we
2288b0f539deSDave Chinner 		 * didn't read it from disk. That's not important because we are
2289b0f539deSDave Chinner 		 * only using to mark the buffer as stale in the log, and to
2290b0f539deSDave Chinner 		 * attach stale cached inodes on it. That means it will never be
2291b0f539deSDave Chinner 		 * dispatched for IO. If it is, we want to know about it, and we
2292b0f539deSDave Chinner 		 * want it to fail. We can acheive this by adding a write
2293b0f539deSDave Chinner 		 * verifier to the buffer.
2294b0f539deSDave Chinner 		 */
22951813dd64SDave Chinner 		 bp->b_ops = &xfs_inode_buf_ops;
2296b0f539deSDave Chinner 
22975b257b4aSDave Chinner 		/*
22985b257b4aSDave Chinner 		 * Walk the inodes already attached to the buffer and mark them
22995b257b4aSDave Chinner 		 * stale. These will all have the flush locks held, so an
23005b3eed75SDave Chinner 		 * in-memory inode walk can't lock them. By marking them all
23015b3eed75SDave Chinner 		 * stale first, we will not attempt to lock them in the loop
23025b3eed75SDave Chinner 		 * below as the XFS_ISTALE flag will be set.
23035b257b4aSDave Chinner 		 */
2304643c8c05SCarlos Maiolino 		list_for_each_entry(lip, &bp->b_li_list, li_bio_list) {
23051da177e4SLinus Torvalds 			if (lip->li_type == XFS_LI_INODE) {
23061da177e4SLinus Torvalds 				iip = (xfs_inode_log_item_t *)lip;
23071da177e4SLinus Torvalds 				ASSERT(iip->ili_logged == 1);
2308ca30b2a7SChristoph Hellwig 				lip->li_cb = xfs_istale_done;
23097b2e2a31SDavid Chinner 				xfs_trans_ail_copy_lsn(mp->m_ail,
23107b2e2a31SDavid Chinner 							&iip->ili_flush_lsn,
23117b2e2a31SDavid Chinner 							&iip->ili_item.li_lsn);
2312e5ffd2bbSDavid Chinner 				xfs_iflags_set(iip->ili_inode, XFS_ISTALE);
23131da177e4SLinus Torvalds 			}
23141da177e4SLinus Torvalds 		}
23151da177e4SLinus Torvalds 
23165b3eed75SDave Chinner 
23175b257b4aSDave Chinner 		/*
23185b257b4aSDave Chinner 		 * For each inode in memory attempt to add it to the inode
23195b257b4aSDave Chinner 		 * buffer and set it up for being staled on buffer IO
23205b257b4aSDave Chinner 		 * completion.  This is safe as we've locked out tail pushing
23215b257b4aSDave Chinner 		 * and flushing by locking the buffer.
23225b257b4aSDave Chinner 		 *
23235b257b4aSDave Chinner 		 * We have already marked every inode that was part of a
23245b257b4aSDave Chinner 		 * transaction stale above, which means there is no point in
23255b257b4aSDave Chinner 		 * even trying to lock them.
23265b257b4aSDave Chinner 		 */
2327982e939eSJie Liu 		for (i = 0; i < inodes_per_cluster; i++) {
23285b3eed75SDave Chinner retry:
23291a3e8f3dSDave Chinner 			rcu_read_lock();
23305b257b4aSDave Chinner 			ip = radix_tree_lookup(&pag->pag_ici_root,
23315b257b4aSDave Chinner 					XFS_INO_TO_AGINO(mp, (inum + i)));
23321da177e4SLinus Torvalds 
23331a3e8f3dSDave Chinner 			/* Inode not in memory, nothing to do */
23341a3e8f3dSDave Chinner 			if (!ip) {
23351a3e8f3dSDave Chinner 				rcu_read_unlock();
23365b257b4aSDave Chinner 				continue;
23375b257b4aSDave Chinner 			}
23385b257b4aSDave Chinner 
23395b3eed75SDave Chinner 			/*
23401a3e8f3dSDave Chinner 			 * because this is an RCU protected lookup, we could
23411a3e8f3dSDave Chinner 			 * find a recently freed or even reallocated inode
23421a3e8f3dSDave Chinner 			 * during the lookup. We need to check under the
23431a3e8f3dSDave Chinner 			 * i_flags_lock for a valid inode here. Skip it if it
23441a3e8f3dSDave Chinner 			 * is not valid, the wrong inode or stale.
23451a3e8f3dSDave Chinner 			 */
23461a3e8f3dSDave Chinner 			spin_lock(&ip->i_flags_lock);
23471a3e8f3dSDave Chinner 			if (ip->i_ino != inum + i ||
23481a3e8f3dSDave Chinner 			    __xfs_iflags_test(ip, XFS_ISTALE)) {
23491a3e8f3dSDave Chinner 				spin_unlock(&ip->i_flags_lock);
23501a3e8f3dSDave Chinner 				rcu_read_unlock();
23511a3e8f3dSDave Chinner 				continue;
23521a3e8f3dSDave Chinner 			}
23531a3e8f3dSDave Chinner 			spin_unlock(&ip->i_flags_lock);
23541a3e8f3dSDave Chinner 
23551a3e8f3dSDave Chinner 			/*
23565b3eed75SDave Chinner 			 * Don't try to lock/unlock the current inode, but we
23575b3eed75SDave Chinner 			 * _cannot_ skip the other inodes that we did not find
23585b3eed75SDave Chinner 			 * in the list attached to the buffer and are not
23595b3eed75SDave Chinner 			 * already marked stale. If we can't lock it, back off
23605b3eed75SDave Chinner 			 * and retry.
23615b3eed75SDave Chinner 			 */
2362f2e9ad21SOmar Sandoval 			if (ip != free_ip) {
2363f2e9ad21SOmar Sandoval 				if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
23641a3e8f3dSDave Chinner 					rcu_read_unlock();
23655b3eed75SDave Chinner 					delay(1);
23665b3eed75SDave Chinner 					goto retry;
23675b257b4aSDave Chinner 				}
2368f2e9ad21SOmar Sandoval 
2369f2e9ad21SOmar Sandoval 				/*
2370f2e9ad21SOmar Sandoval 				 * Check the inode number again in case we're
2371f2e9ad21SOmar Sandoval 				 * racing with freeing in xfs_reclaim_inode().
2372f2e9ad21SOmar Sandoval 				 * See the comments in that function for more
2373f2e9ad21SOmar Sandoval 				 * information as to why the initial check is
2374f2e9ad21SOmar Sandoval 				 * not sufficient.
2375f2e9ad21SOmar Sandoval 				 */
2376f2e9ad21SOmar Sandoval 				if (ip->i_ino != inum + i) {
2377f2e9ad21SOmar Sandoval 					xfs_iunlock(ip, XFS_ILOCK_EXCL);
2378962cc1adSDarrick J. Wong 					rcu_read_unlock();
2379f2e9ad21SOmar Sandoval 					continue;
2380f2e9ad21SOmar Sandoval 				}
2381f2e9ad21SOmar Sandoval 			}
23821a3e8f3dSDave Chinner 			rcu_read_unlock();
23835b257b4aSDave Chinner 
23845b3eed75SDave Chinner 			xfs_iflock(ip);
23855b257b4aSDave Chinner 			xfs_iflags_set(ip, XFS_ISTALE);
23865b257b4aSDave Chinner 
23875b3eed75SDave Chinner 			/*
23885b3eed75SDave Chinner 			 * we don't need to attach clean inodes or those only
23895b3eed75SDave Chinner 			 * with unlogged changes (which we throw away, anyway).
23905b3eed75SDave Chinner 			 */
23915b257b4aSDave Chinner 			iip = ip->i_itemp;
23925b3eed75SDave Chinner 			if (!iip || xfs_inode_clean(ip)) {
23935b257b4aSDave Chinner 				ASSERT(ip != free_ip);
23941da177e4SLinus Torvalds 				xfs_ifunlock(ip);
23951da177e4SLinus Torvalds 				xfs_iunlock(ip, XFS_ILOCK_EXCL);
23961da177e4SLinus Torvalds 				continue;
23971da177e4SLinus Torvalds 			}
23981da177e4SLinus Torvalds 
2399f5d8d5c4SChristoph Hellwig 			iip->ili_last_fields = iip->ili_fields;
2400f5d8d5c4SChristoph Hellwig 			iip->ili_fields = 0;
2401fc0561ceSDave Chinner 			iip->ili_fsync_fields = 0;
24021da177e4SLinus Torvalds 			iip->ili_logged = 1;
24037b2e2a31SDavid Chinner 			xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
24047b2e2a31SDavid Chinner 						&iip->ili_item.li_lsn);
24051da177e4SLinus Torvalds 
2406ca30b2a7SChristoph Hellwig 			xfs_buf_attach_iodone(bp, xfs_istale_done,
2407ca30b2a7SChristoph Hellwig 						  &iip->ili_item);
24085b257b4aSDave Chinner 
24095b257b4aSDave Chinner 			if (ip != free_ip)
24101da177e4SLinus Torvalds 				xfs_iunlock(ip, XFS_ILOCK_EXCL);
24111da177e4SLinus Torvalds 		}
24121da177e4SLinus Torvalds 
24131da177e4SLinus Torvalds 		xfs_trans_stale_inode_buf(tp, bp);
24141da177e4SLinus Torvalds 		xfs_trans_binval(tp, bp);
24151da177e4SLinus Torvalds 	}
24161da177e4SLinus Torvalds 
24175017e97dSDave Chinner 	xfs_perag_put(pag);
24182a30f36dSChandra Seetharaman 	return 0;
24191da177e4SLinus Torvalds }
24201da177e4SLinus Torvalds 
24211da177e4SLinus Torvalds /*
242298c4f78dSDarrick J. Wong  * Free any local-format buffers sitting around before we reset to
242398c4f78dSDarrick J. Wong  * extents format.
242498c4f78dSDarrick J. Wong  */
242598c4f78dSDarrick J. Wong static inline void
242698c4f78dSDarrick J. Wong xfs_ifree_local_data(
242798c4f78dSDarrick J. Wong 	struct xfs_inode	*ip,
242898c4f78dSDarrick J. Wong 	int			whichfork)
242998c4f78dSDarrick J. Wong {
243098c4f78dSDarrick J. Wong 	struct xfs_ifork	*ifp;
243198c4f78dSDarrick J. Wong 
243298c4f78dSDarrick J. Wong 	if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL)
243398c4f78dSDarrick J. Wong 		return;
243498c4f78dSDarrick J. Wong 
243598c4f78dSDarrick J. Wong 	ifp = XFS_IFORK_PTR(ip, whichfork);
243698c4f78dSDarrick J. Wong 	xfs_idata_realloc(ip, -ifp->if_bytes, whichfork);
243798c4f78dSDarrick J. Wong }
243898c4f78dSDarrick J. Wong 
243998c4f78dSDarrick J. Wong /*
24401da177e4SLinus Torvalds  * This is called to return an inode to the inode free list.
24411da177e4SLinus Torvalds  * The inode should already be truncated to 0 length and have
24421da177e4SLinus Torvalds  * no pages associated with it.  This routine also assumes that
24431da177e4SLinus Torvalds  * the inode is already a part of the transaction.
24441da177e4SLinus Torvalds  *
24451da177e4SLinus Torvalds  * The on-disk copy of the inode will have been added to the list
24461da177e4SLinus Torvalds  * of unlinked inodes in the AGI. We need to remove the inode from
24471da177e4SLinus Torvalds  * that list atomically with respect to freeing it here.
24481da177e4SLinus Torvalds  */
24491da177e4SLinus Torvalds int
24501da177e4SLinus Torvalds xfs_ifree(
24511da177e4SLinus Torvalds 	xfs_trans_t	*tp,
24521da177e4SLinus Torvalds 	xfs_inode_t	*ip,
24532c3234d1SDarrick J. Wong 	struct xfs_defer_ops	*dfops)
24541da177e4SLinus Torvalds {
24551da177e4SLinus Torvalds 	int			error;
245609b56604SBrian Foster 	struct xfs_icluster	xic = { 0 };
24571da177e4SLinus Torvalds 
2458579aa9caSChristoph Hellwig 	ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
245954d7b5c1SDave Chinner 	ASSERT(VFS_I(ip)->i_nlink == 0);
24601da177e4SLinus Torvalds 	ASSERT(ip->i_d.di_nextents == 0);
24611da177e4SLinus Torvalds 	ASSERT(ip->i_d.di_anextents == 0);
2462c19b3b05SDave Chinner 	ASSERT(ip->i_d.di_size == 0 || !S_ISREG(VFS_I(ip)->i_mode));
24631da177e4SLinus Torvalds 	ASSERT(ip->i_d.di_nblocks == 0);
24641da177e4SLinus Torvalds 
24651da177e4SLinus Torvalds 	/*
24661da177e4SLinus Torvalds 	 * Pull the on-disk inode from the AGI unlinked list.
24671da177e4SLinus Torvalds 	 */
24681da177e4SLinus Torvalds 	error = xfs_iunlink_remove(tp, ip);
24691baaed8fSDave Chinner 	if (error)
24701da177e4SLinus Torvalds 		return error;
24711da177e4SLinus Torvalds 
24722c3234d1SDarrick J. Wong 	error = xfs_difree(tp, ip->i_ino, dfops, &xic);
24731baaed8fSDave Chinner 	if (error)
24741da177e4SLinus Torvalds 		return error;
24751baaed8fSDave Chinner 
247698c4f78dSDarrick J. Wong 	xfs_ifree_local_data(ip, XFS_DATA_FORK);
247798c4f78dSDarrick J. Wong 	xfs_ifree_local_data(ip, XFS_ATTR_FORK);
247898c4f78dSDarrick J. Wong 
2479c19b3b05SDave Chinner 	VFS_I(ip)->i_mode = 0;		/* mark incore inode as free */
24801da177e4SLinus Torvalds 	ip->i_d.di_flags = 0;
2481beaae8cdSDarrick J. Wong 	ip->i_d.di_flags2 = 0;
24821da177e4SLinus Torvalds 	ip->i_d.di_dmevmask = 0;
24831da177e4SLinus Torvalds 	ip->i_d.di_forkoff = 0;		/* mark the attr fork not in use */
24841da177e4SLinus Torvalds 	ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
24851da177e4SLinus Torvalds 	ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
2486dc1baa71SEric Sandeen 
2487dc1baa71SEric Sandeen 	/* Don't attempt to replay owner changes for a deleted inode */
2488dc1baa71SEric Sandeen 	ip->i_itemp->ili_fields &= ~(XFS_ILOG_AOWNER|XFS_ILOG_DOWNER);
2489dc1baa71SEric Sandeen 
24901da177e4SLinus Torvalds 	/*
24911da177e4SLinus Torvalds 	 * Bump the generation count so no one will be confused
24921da177e4SLinus Torvalds 	 * by reincarnations of this inode.
24931da177e4SLinus Torvalds 	 */
24949e9a2674SDave Chinner 	VFS_I(ip)->i_generation++;
24951da177e4SLinus Torvalds 	xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
24961da177e4SLinus Torvalds 
249709b56604SBrian Foster 	if (xic.deleted)
249809b56604SBrian Foster 		error = xfs_ifree_cluster(ip, tp, &xic);
24991da177e4SLinus Torvalds 
25002a30f36dSChandra Seetharaman 	return error;
25011da177e4SLinus Torvalds }
25021da177e4SLinus Torvalds 
25031da177e4SLinus Torvalds /*
250460ec6783SChristoph Hellwig  * This is called to unpin an inode.  The caller must have the inode locked
250560ec6783SChristoph Hellwig  * in at least shared mode so that the buffer cannot be subsequently pinned
250660ec6783SChristoph Hellwig  * once someone is waiting for it to be unpinned.
25071da177e4SLinus Torvalds  */
250860ec6783SChristoph Hellwig static void
2509f392e631SChristoph Hellwig xfs_iunpin(
251060ec6783SChristoph Hellwig 	struct xfs_inode	*ip)
2511a3f74ffbSDavid Chinner {
2512579aa9caSChristoph Hellwig 	ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
2513a3f74ffbSDavid Chinner 
25144aaf15d1SDave Chinner 	trace_xfs_inode_unpin_nowait(ip, _RET_IP_);
25154aaf15d1SDave Chinner 
2516a3f74ffbSDavid Chinner 	/* Give the log a push to start the unpinning I/O */
2517656de4ffSChristoph Hellwig 	xfs_log_force_lsn(ip->i_mount, ip->i_itemp->ili_last_lsn, 0, NULL);
2518a14a348bSChristoph Hellwig 
2519a3f74ffbSDavid Chinner }
2520a3f74ffbSDavid Chinner 
2521f392e631SChristoph Hellwig static void
2522f392e631SChristoph Hellwig __xfs_iunpin_wait(
2523f392e631SChristoph Hellwig 	struct xfs_inode	*ip)
2524f392e631SChristoph Hellwig {
2525f392e631SChristoph Hellwig 	wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IPINNED_BIT);
2526f392e631SChristoph Hellwig 	DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IPINNED_BIT);
2527f392e631SChristoph Hellwig 
2528f392e631SChristoph Hellwig 	xfs_iunpin(ip);
2529f392e631SChristoph Hellwig 
2530f392e631SChristoph Hellwig 	do {
253121417136SIngo Molnar 		prepare_to_wait(wq, &wait.wq_entry, TASK_UNINTERRUPTIBLE);
2532f392e631SChristoph Hellwig 		if (xfs_ipincount(ip))
2533f392e631SChristoph Hellwig 			io_schedule();
2534f392e631SChristoph Hellwig 	} while (xfs_ipincount(ip));
253521417136SIngo Molnar 	finish_wait(wq, &wait.wq_entry);
2536f392e631SChristoph Hellwig }
2537f392e631SChristoph Hellwig 
2538777df5afSDave Chinner void
25391da177e4SLinus Torvalds xfs_iunpin_wait(
254060ec6783SChristoph Hellwig 	struct xfs_inode	*ip)
25411da177e4SLinus Torvalds {
2542f392e631SChristoph Hellwig 	if (xfs_ipincount(ip))
2543f392e631SChristoph Hellwig 		__xfs_iunpin_wait(ip);
25441da177e4SLinus Torvalds }
25451da177e4SLinus Torvalds 
254627320369SDave Chinner /*
254727320369SDave Chinner  * Removing an inode from the namespace involves removing the directory entry
254827320369SDave Chinner  * and dropping the link count on the inode. Removing the directory entry can
254927320369SDave Chinner  * result in locking an AGF (directory blocks were freed) and removing a link
255027320369SDave Chinner  * count can result in placing the inode on an unlinked list which results in
255127320369SDave Chinner  * locking an AGI.
255227320369SDave Chinner  *
255327320369SDave Chinner  * The big problem here is that we have an ordering constraint on AGF and AGI
255427320369SDave Chinner  * locking - inode allocation locks the AGI, then can allocate a new extent for
255527320369SDave Chinner  * new inodes, locking the AGF after the AGI. Similarly, freeing the inode
255627320369SDave Chinner  * removes the inode from the unlinked list, requiring that we lock the AGI
255727320369SDave Chinner  * first, and then freeing the inode can result in an inode chunk being freed
255827320369SDave Chinner  * and hence freeing disk space requiring that we lock an AGF.
255927320369SDave Chinner  *
256027320369SDave Chinner  * Hence the ordering that is imposed by other parts of the code is AGI before
256127320369SDave Chinner  * AGF. This means we cannot remove the directory entry before we drop the inode
256227320369SDave Chinner  * reference count and put it on the unlinked list as this results in a lock
256327320369SDave Chinner  * order of AGF then AGI, and this can deadlock against inode allocation and
256427320369SDave Chinner  * freeing. Therefore we must drop the link counts before we remove the
256527320369SDave Chinner  * directory entry.
256627320369SDave Chinner  *
256727320369SDave Chinner  * This is still safe from a transactional point of view - it is not until we
2568310a75a3SDarrick J. Wong  * get to xfs_defer_finish() that we have the possibility of multiple
256927320369SDave Chinner  * transactions in this operation. Hence as long as we remove the directory
257027320369SDave Chinner  * entry and drop the link count in the first transaction of the remove
257127320369SDave Chinner  * operation, there are no transactional constraints on the ordering here.
257227320369SDave Chinner  */
2573c24b5dfaSDave Chinner int
2574c24b5dfaSDave Chinner xfs_remove(
2575c24b5dfaSDave Chinner 	xfs_inode_t             *dp,
2576c24b5dfaSDave Chinner 	struct xfs_name		*name,
2577c24b5dfaSDave Chinner 	xfs_inode_t		*ip)
2578c24b5dfaSDave Chinner {
2579c24b5dfaSDave Chinner 	xfs_mount_t		*mp = dp->i_mount;
2580c24b5dfaSDave Chinner 	xfs_trans_t             *tp = NULL;
2581c19b3b05SDave Chinner 	int			is_dir = S_ISDIR(VFS_I(ip)->i_mode);
2582c24b5dfaSDave Chinner 	int                     error = 0;
25832c3234d1SDarrick J. Wong 	struct xfs_defer_ops	dfops;
2584c24b5dfaSDave Chinner 	xfs_fsblock_t           first_block;
2585c24b5dfaSDave Chinner 	uint			resblks;
2586c24b5dfaSDave Chinner 
2587c24b5dfaSDave Chinner 	trace_xfs_remove(dp, name);
2588c24b5dfaSDave Chinner 
2589c24b5dfaSDave Chinner 	if (XFS_FORCED_SHUTDOWN(mp))
25902451337dSDave Chinner 		return -EIO;
2591c24b5dfaSDave Chinner 
2592c24b5dfaSDave Chinner 	error = xfs_qm_dqattach(dp, 0);
2593c24b5dfaSDave Chinner 	if (error)
2594c24b5dfaSDave Chinner 		goto std_return;
2595c24b5dfaSDave Chinner 
2596c24b5dfaSDave Chinner 	error = xfs_qm_dqattach(ip, 0);
2597c24b5dfaSDave Chinner 	if (error)
2598c24b5dfaSDave Chinner 		goto std_return;
2599c24b5dfaSDave Chinner 
2600c24b5dfaSDave Chinner 	/*
2601c24b5dfaSDave Chinner 	 * We try to get the real space reservation first,
2602c24b5dfaSDave Chinner 	 * allowing for directory btree deletion(s) implying
2603c24b5dfaSDave Chinner 	 * possible bmap insert(s).  If we can't get the space
2604c24b5dfaSDave Chinner 	 * reservation then we use 0 instead, and avoid the bmap
2605c24b5dfaSDave Chinner 	 * btree insert(s) in the directory code by, if the bmap
2606c24b5dfaSDave Chinner 	 * insert tries to happen, instead trimming the LAST
2607c24b5dfaSDave Chinner 	 * block from the directory.
2608c24b5dfaSDave Chinner 	 */
2609c24b5dfaSDave Chinner 	resblks = XFS_REMOVE_SPACE_RES(mp);
2610253f4911SChristoph Hellwig 	error = xfs_trans_alloc(mp, &M_RES(mp)->tr_remove, resblks, 0, 0, &tp);
26112451337dSDave Chinner 	if (error == -ENOSPC) {
2612c24b5dfaSDave Chinner 		resblks = 0;
2613253f4911SChristoph Hellwig 		error = xfs_trans_alloc(mp, &M_RES(mp)->tr_remove, 0, 0, 0,
2614253f4911SChristoph Hellwig 				&tp);
2615c24b5dfaSDave Chinner 	}
2616c24b5dfaSDave Chinner 	if (error) {
26172451337dSDave Chinner 		ASSERT(error != -ENOSPC);
2618253f4911SChristoph Hellwig 		goto std_return;
2619c24b5dfaSDave Chinner 	}
2620c24b5dfaSDave Chinner 
26217c2d238aSDarrick J. Wong 	xfs_lock_two_inodes(dp, XFS_ILOCK_EXCL, ip, XFS_ILOCK_EXCL);
2622c24b5dfaSDave Chinner 
262365523218SChristoph Hellwig 	xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2624c24b5dfaSDave Chinner 	xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2625c24b5dfaSDave Chinner 
2626c24b5dfaSDave Chinner 	/*
2627c24b5dfaSDave Chinner 	 * If we're removing a directory perform some additional validation.
2628c24b5dfaSDave Chinner 	 */
2629c24b5dfaSDave Chinner 	if (is_dir) {
263054d7b5c1SDave Chinner 		ASSERT(VFS_I(ip)->i_nlink >= 2);
263154d7b5c1SDave Chinner 		if (VFS_I(ip)->i_nlink != 2) {
26322451337dSDave Chinner 			error = -ENOTEMPTY;
2633c24b5dfaSDave Chinner 			goto out_trans_cancel;
2634c24b5dfaSDave Chinner 		}
2635c24b5dfaSDave Chinner 		if (!xfs_dir_isempty(ip)) {
26362451337dSDave Chinner 			error = -ENOTEMPTY;
2637c24b5dfaSDave Chinner 			goto out_trans_cancel;
2638c24b5dfaSDave Chinner 		}
2639c24b5dfaSDave Chinner 
264027320369SDave Chinner 		/* Drop the link from ip's "..".  */
2641c24b5dfaSDave Chinner 		error = xfs_droplink(tp, dp);
2642c24b5dfaSDave Chinner 		if (error)
264327320369SDave Chinner 			goto out_trans_cancel;
2644c24b5dfaSDave Chinner 
264527320369SDave Chinner 		/* Drop the "." link from ip to self.  */
2646c24b5dfaSDave Chinner 		error = xfs_droplink(tp, ip);
2647c24b5dfaSDave Chinner 		if (error)
264827320369SDave Chinner 			goto out_trans_cancel;
2649c24b5dfaSDave Chinner 	} else {
2650c24b5dfaSDave Chinner 		/*
2651c24b5dfaSDave Chinner 		 * When removing a non-directory we need to log the parent
2652c24b5dfaSDave Chinner 		 * inode here.  For a directory this is done implicitly
2653c24b5dfaSDave Chinner 		 * by the xfs_droplink call for the ".." entry.
2654c24b5dfaSDave Chinner 		 */
2655c24b5dfaSDave Chinner 		xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2656c24b5dfaSDave Chinner 	}
265727320369SDave Chinner 	xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2658c24b5dfaSDave Chinner 
265927320369SDave Chinner 	/* Drop the link from dp to ip. */
2660c24b5dfaSDave Chinner 	error = xfs_droplink(tp, ip);
2661c24b5dfaSDave Chinner 	if (error)
266227320369SDave Chinner 		goto out_trans_cancel;
2663c24b5dfaSDave Chinner 
26642c3234d1SDarrick J. Wong 	xfs_defer_init(&dfops, &first_block);
26658804630eSBrian Foster 	tp->t_agfl_dfops = &dfops;
266627320369SDave Chinner 	error = xfs_dir_removename(tp, dp, name, ip->i_ino,
26672c3234d1SDarrick J. Wong 					&first_block, &dfops, resblks);
266827320369SDave Chinner 	if (error) {
26692451337dSDave Chinner 		ASSERT(error != -ENOENT);
267027320369SDave Chinner 		goto out_bmap_cancel;
267127320369SDave Chinner 	}
267227320369SDave Chinner 
2673c24b5dfaSDave Chinner 	/*
2674c24b5dfaSDave Chinner 	 * If this is a synchronous mount, make sure that the
2675c24b5dfaSDave Chinner 	 * remove transaction goes to disk before returning to
2676c24b5dfaSDave Chinner 	 * the user.
2677c24b5dfaSDave Chinner 	 */
2678c24b5dfaSDave Chinner 	if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
2679c24b5dfaSDave Chinner 		xfs_trans_set_sync(tp);
2680c24b5dfaSDave Chinner 
26818ad7c629SChristoph Hellwig 	error = xfs_defer_finish(&tp, &dfops);
2682c24b5dfaSDave Chinner 	if (error)
2683c24b5dfaSDave Chinner 		goto out_bmap_cancel;
2684c24b5dfaSDave Chinner 
268570393313SChristoph Hellwig 	error = xfs_trans_commit(tp);
2686c24b5dfaSDave Chinner 	if (error)
2687c24b5dfaSDave Chinner 		goto std_return;
2688c24b5dfaSDave Chinner 
26892cd2ef6aSChristoph Hellwig 	if (is_dir && xfs_inode_is_filestream(ip))
2690c24b5dfaSDave Chinner 		xfs_filestream_deassociate(ip);
2691c24b5dfaSDave Chinner 
2692c24b5dfaSDave Chinner 	return 0;
2693c24b5dfaSDave Chinner 
2694c24b5dfaSDave Chinner  out_bmap_cancel:
26952c3234d1SDarrick J. Wong 	xfs_defer_cancel(&dfops);
2696c24b5dfaSDave Chinner  out_trans_cancel:
26974906e215SChristoph Hellwig 	xfs_trans_cancel(tp);
2698c24b5dfaSDave Chinner  std_return:
2699c24b5dfaSDave Chinner 	return error;
2700c24b5dfaSDave Chinner }
2701c24b5dfaSDave Chinner 
2702f6bba201SDave Chinner /*
2703f6bba201SDave Chinner  * Enter all inodes for a rename transaction into a sorted array.
2704f6bba201SDave Chinner  */
270595afcf5cSDave Chinner #define __XFS_SORT_INODES	5
2706f6bba201SDave Chinner STATIC void
2707f6bba201SDave Chinner xfs_sort_for_rename(
270895afcf5cSDave Chinner 	struct xfs_inode	*dp1,	/* in: old (source) directory inode */
270995afcf5cSDave Chinner 	struct xfs_inode	*dp2,	/* in: new (target) directory inode */
271095afcf5cSDave Chinner 	struct xfs_inode	*ip1,	/* in: inode of old entry */
271195afcf5cSDave Chinner 	struct xfs_inode	*ip2,	/* in: inode of new entry */
271295afcf5cSDave Chinner 	struct xfs_inode	*wip,	/* in: whiteout inode */
271395afcf5cSDave Chinner 	struct xfs_inode	**i_tab,/* out: sorted array of inodes */
271495afcf5cSDave Chinner 	int			*num_inodes)  /* in/out: inodes in array */
2715f6bba201SDave Chinner {
2716f6bba201SDave Chinner 	int			i, j;
2717f6bba201SDave Chinner 
271895afcf5cSDave Chinner 	ASSERT(*num_inodes == __XFS_SORT_INODES);
271995afcf5cSDave Chinner 	memset(i_tab, 0, *num_inodes * sizeof(struct xfs_inode *));
272095afcf5cSDave Chinner 
2721f6bba201SDave Chinner 	/*
2722f6bba201SDave Chinner 	 * i_tab contains a list of pointers to inodes.  We initialize
2723f6bba201SDave Chinner 	 * the table here & we'll sort it.  We will then use it to
2724f6bba201SDave Chinner 	 * order the acquisition of the inode locks.
2725f6bba201SDave Chinner 	 *
2726f6bba201SDave Chinner 	 * Note that the table may contain duplicates.  e.g., dp1 == dp2.
2727f6bba201SDave Chinner 	 */
272895afcf5cSDave Chinner 	i = 0;
272995afcf5cSDave Chinner 	i_tab[i++] = dp1;
273095afcf5cSDave Chinner 	i_tab[i++] = dp2;
273195afcf5cSDave Chinner 	i_tab[i++] = ip1;
273295afcf5cSDave Chinner 	if (ip2)
273395afcf5cSDave Chinner 		i_tab[i++] = ip2;
273495afcf5cSDave Chinner 	if (wip)
273595afcf5cSDave Chinner 		i_tab[i++] = wip;
273695afcf5cSDave Chinner 	*num_inodes = i;
2737f6bba201SDave Chinner 
2738f6bba201SDave Chinner 	/*
2739f6bba201SDave Chinner 	 * Sort the elements via bubble sort.  (Remember, there are at
274095afcf5cSDave Chinner 	 * most 5 elements to sort, so this is adequate.)
2741f6bba201SDave Chinner 	 */
2742f6bba201SDave Chinner 	for (i = 0; i < *num_inodes; i++) {
2743f6bba201SDave Chinner 		for (j = 1; j < *num_inodes; j++) {
2744f6bba201SDave Chinner 			if (i_tab[j]->i_ino < i_tab[j-1]->i_ino) {
274595afcf5cSDave Chinner 				struct xfs_inode *temp = i_tab[j];
2746f6bba201SDave Chinner 				i_tab[j] = i_tab[j-1];
2747f6bba201SDave Chinner 				i_tab[j-1] = temp;
2748f6bba201SDave Chinner 			}
2749f6bba201SDave Chinner 		}
2750f6bba201SDave Chinner 	}
2751f6bba201SDave Chinner }
2752f6bba201SDave Chinner 
2753310606b0SDave Chinner static int
2754310606b0SDave Chinner xfs_finish_rename(
2755310606b0SDave Chinner 	struct xfs_trans	*tp,
27562c3234d1SDarrick J. Wong 	struct xfs_defer_ops	*dfops)
2757310606b0SDave Chinner {
2758310606b0SDave Chinner 	int			error;
2759310606b0SDave Chinner 
2760310606b0SDave Chinner 	/*
2761310606b0SDave Chinner 	 * If this is a synchronous mount, make sure that the rename transaction
2762310606b0SDave Chinner 	 * goes to disk before returning to the user.
2763310606b0SDave Chinner 	 */
2764310606b0SDave Chinner 	if (tp->t_mountp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
2765310606b0SDave Chinner 		xfs_trans_set_sync(tp);
2766310606b0SDave Chinner 
27678ad7c629SChristoph Hellwig 	error = xfs_defer_finish(&tp, dfops);
2768310606b0SDave Chinner 	if (error) {
27692c3234d1SDarrick J. Wong 		xfs_defer_cancel(dfops);
27704906e215SChristoph Hellwig 		xfs_trans_cancel(tp);
2771310606b0SDave Chinner 		return error;
2772310606b0SDave Chinner 	}
2773310606b0SDave Chinner 
277470393313SChristoph Hellwig 	return xfs_trans_commit(tp);
2775310606b0SDave Chinner }
2776310606b0SDave Chinner 
2777f6bba201SDave Chinner /*
2778d31a1825SCarlos Maiolino  * xfs_cross_rename()
2779d31a1825SCarlos Maiolino  *
2780d31a1825SCarlos Maiolino  * responsible for handling RENAME_EXCHANGE flag in renameat2() sytemcall
2781d31a1825SCarlos Maiolino  */
2782d31a1825SCarlos Maiolino STATIC int
2783d31a1825SCarlos Maiolino xfs_cross_rename(
2784d31a1825SCarlos Maiolino 	struct xfs_trans	*tp,
2785d31a1825SCarlos Maiolino 	struct xfs_inode	*dp1,
2786d31a1825SCarlos Maiolino 	struct xfs_name		*name1,
2787d31a1825SCarlos Maiolino 	struct xfs_inode	*ip1,
2788d31a1825SCarlos Maiolino 	struct xfs_inode	*dp2,
2789d31a1825SCarlos Maiolino 	struct xfs_name		*name2,
2790d31a1825SCarlos Maiolino 	struct xfs_inode	*ip2,
27912c3234d1SDarrick J. Wong 	struct xfs_defer_ops	*dfops,
2792d31a1825SCarlos Maiolino 	xfs_fsblock_t		*first_block,
2793d31a1825SCarlos Maiolino 	int			spaceres)
2794d31a1825SCarlos Maiolino {
2795d31a1825SCarlos Maiolino 	int		error = 0;
2796d31a1825SCarlos Maiolino 	int		ip1_flags = 0;
2797d31a1825SCarlos Maiolino 	int		ip2_flags = 0;
2798d31a1825SCarlos Maiolino 	int		dp2_flags = 0;
2799d31a1825SCarlos Maiolino 
2800d31a1825SCarlos Maiolino 	/* Swap inode number for dirent in first parent */
2801d31a1825SCarlos Maiolino 	error = xfs_dir_replace(tp, dp1, name1,
2802d31a1825SCarlos Maiolino 				ip2->i_ino,
28032c3234d1SDarrick J. Wong 				first_block, dfops, spaceres);
2804d31a1825SCarlos Maiolino 	if (error)
2805eeacd321SDave Chinner 		goto out_trans_abort;
2806d31a1825SCarlos Maiolino 
2807d31a1825SCarlos Maiolino 	/* Swap inode number for dirent in second parent */
2808d31a1825SCarlos Maiolino 	error = xfs_dir_replace(tp, dp2, name2,
2809d31a1825SCarlos Maiolino 				ip1->i_ino,
28102c3234d1SDarrick J. Wong 				first_block, dfops, spaceres);
2811d31a1825SCarlos Maiolino 	if (error)
2812eeacd321SDave Chinner 		goto out_trans_abort;
2813d31a1825SCarlos Maiolino 
2814d31a1825SCarlos Maiolino 	/*
2815d31a1825SCarlos Maiolino 	 * If we're renaming one or more directories across different parents,
2816d31a1825SCarlos Maiolino 	 * update the respective ".." entries (and link counts) to match the new
2817d31a1825SCarlos Maiolino 	 * parents.
2818d31a1825SCarlos Maiolino 	 */
2819d31a1825SCarlos Maiolino 	if (dp1 != dp2) {
2820d31a1825SCarlos Maiolino 		dp2_flags = XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
2821d31a1825SCarlos Maiolino 
2822c19b3b05SDave Chinner 		if (S_ISDIR(VFS_I(ip2)->i_mode)) {
2823d31a1825SCarlos Maiolino 			error = xfs_dir_replace(tp, ip2, &xfs_name_dotdot,
2824d31a1825SCarlos Maiolino 						dp1->i_ino, first_block,
28252c3234d1SDarrick J. Wong 						dfops, spaceres);
2826d31a1825SCarlos Maiolino 			if (error)
2827eeacd321SDave Chinner 				goto out_trans_abort;
2828d31a1825SCarlos Maiolino 
2829d31a1825SCarlos Maiolino 			/* transfer ip2 ".." reference to dp1 */
2830c19b3b05SDave Chinner 			if (!S_ISDIR(VFS_I(ip1)->i_mode)) {
2831d31a1825SCarlos Maiolino 				error = xfs_droplink(tp, dp2);
2832d31a1825SCarlos Maiolino 				if (error)
2833eeacd321SDave Chinner 					goto out_trans_abort;
2834d31a1825SCarlos Maiolino 				error = xfs_bumplink(tp, dp1);
2835d31a1825SCarlos Maiolino 				if (error)
2836eeacd321SDave Chinner 					goto out_trans_abort;
2837d31a1825SCarlos Maiolino 			}
2838d31a1825SCarlos Maiolino 
2839d31a1825SCarlos Maiolino 			/*
2840d31a1825SCarlos Maiolino 			 * Although ip1 isn't changed here, userspace needs
2841d31a1825SCarlos Maiolino 			 * to be warned about the change, so that applications
2842d31a1825SCarlos Maiolino 			 * relying on it (like backup ones), will properly
2843d31a1825SCarlos Maiolino 			 * notify the change
2844d31a1825SCarlos Maiolino 			 */
2845d31a1825SCarlos Maiolino 			ip1_flags |= XFS_ICHGTIME_CHG;
2846d31a1825SCarlos Maiolino 			ip2_flags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
2847d31a1825SCarlos Maiolino 		}
2848d31a1825SCarlos Maiolino 
2849c19b3b05SDave Chinner 		if (S_ISDIR(VFS_I(ip1)->i_mode)) {
2850d31a1825SCarlos Maiolino 			error = xfs_dir_replace(tp, ip1, &xfs_name_dotdot,
2851d31a1825SCarlos Maiolino 						dp2->i_ino, first_block,
28522c3234d1SDarrick J. Wong 						dfops, spaceres);
2853d31a1825SCarlos Maiolino 			if (error)
2854eeacd321SDave Chinner 				goto out_trans_abort;
2855d31a1825SCarlos Maiolino 
2856d31a1825SCarlos Maiolino 			/* transfer ip1 ".." reference to dp2 */
2857c19b3b05SDave Chinner 			if (!S_ISDIR(VFS_I(ip2)->i_mode)) {
2858d31a1825SCarlos Maiolino 				error = xfs_droplink(tp, dp1);
2859d31a1825SCarlos Maiolino 				if (error)
2860eeacd321SDave Chinner 					goto out_trans_abort;
2861d31a1825SCarlos Maiolino 				error = xfs_bumplink(tp, dp2);
2862d31a1825SCarlos Maiolino 				if (error)
2863eeacd321SDave Chinner 					goto out_trans_abort;
2864d31a1825SCarlos Maiolino 			}
2865d31a1825SCarlos Maiolino 
2866d31a1825SCarlos Maiolino 			/*
2867d31a1825SCarlos Maiolino 			 * Although ip2 isn't changed here, userspace needs
2868d31a1825SCarlos Maiolino 			 * to be warned about the change, so that applications
2869d31a1825SCarlos Maiolino 			 * relying on it (like backup ones), will properly
2870d31a1825SCarlos Maiolino 			 * notify the change
2871d31a1825SCarlos Maiolino 			 */
2872d31a1825SCarlos Maiolino 			ip1_flags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
2873d31a1825SCarlos Maiolino 			ip2_flags |= XFS_ICHGTIME_CHG;
2874d31a1825SCarlos Maiolino 		}
2875d31a1825SCarlos Maiolino 	}
2876d31a1825SCarlos Maiolino 
2877d31a1825SCarlos Maiolino 	if (ip1_flags) {
2878d31a1825SCarlos Maiolino 		xfs_trans_ichgtime(tp, ip1, ip1_flags);
2879d31a1825SCarlos Maiolino 		xfs_trans_log_inode(tp, ip1, XFS_ILOG_CORE);
2880d31a1825SCarlos Maiolino 	}
2881d31a1825SCarlos Maiolino 	if (ip2_flags) {
2882d31a1825SCarlos Maiolino 		xfs_trans_ichgtime(tp, ip2, ip2_flags);
2883d31a1825SCarlos Maiolino 		xfs_trans_log_inode(tp, ip2, XFS_ILOG_CORE);
2884d31a1825SCarlos Maiolino 	}
2885d31a1825SCarlos Maiolino 	if (dp2_flags) {
2886d31a1825SCarlos Maiolino 		xfs_trans_ichgtime(tp, dp2, dp2_flags);
2887d31a1825SCarlos Maiolino 		xfs_trans_log_inode(tp, dp2, XFS_ILOG_CORE);
2888d31a1825SCarlos Maiolino 	}
2889d31a1825SCarlos Maiolino 	xfs_trans_ichgtime(tp, dp1, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2890d31a1825SCarlos Maiolino 	xfs_trans_log_inode(tp, dp1, XFS_ILOG_CORE);
28912c3234d1SDarrick J. Wong 	return xfs_finish_rename(tp, dfops);
2892eeacd321SDave Chinner 
2893eeacd321SDave Chinner out_trans_abort:
28942c3234d1SDarrick J. Wong 	xfs_defer_cancel(dfops);
28954906e215SChristoph Hellwig 	xfs_trans_cancel(tp);
2896d31a1825SCarlos Maiolino 	return error;
2897d31a1825SCarlos Maiolino }
2898d31a1825SCarlos Maiolino 
2899d31a1825SCarlos Maiolino /*
29007dcf5c3eSDave Chinner  * xfs_rename_alloc_whiteout()
29017dcf5c3eSDave Chinner  *
29027dcf5c3eSDave Chinner  * Return a referenced, unlinked, unlocked inode that that can be used as a
29037dcf5c3eSDave Chinner  * whiteout in a rename transaction. We use a tmpfile inode here so that if we
29047dcf5c3eSDave Chinner  * crash between allocating the inode and linking it into the rename transaction
29057dcf5c3eSDave Chinner  * recovery will free the inode and we won't leak it.
29067dcf5c3eSDave Chinner  */
29077dcf5c3eSDave Chinner static int
29087dcf5c3eSDave Chinner xfs_rename_alloc_whiteout(
29097dcf5c3eSDave Chinner 	struct xfs_inode	*dp,
29107dcf5c3eSDave Chinner 	struct xfs_inode	**wip)
29117dcf5c3eSDave Chinner {
29127dcf5c3eSDave Chinner 	struct xfs_inode	*tmpfile;
29137dcf5c3eSDave Chinner 	int			error;
29147dcf5c3eSDave Chinner 
2915a1f69417SEric Sandeen 	error = xfs_create_tmpfile(dp, S_IFCHR | WHITEOUT_MODE, &tmpfile);
29167dcf5c3eSDave Chinner 	if (error)
29177dcf5c3eSDave Chinner 		return error;
29187dcf5c3eSDave Chinner 
291922419ac9SBrian Foster 	/*
292022419ac9SBrian Foster 	 * Prepare the tmpfile inode as if it were created through the VFS.
292122419ac9SBrian Foster 	 * Otherwise, the link increment paths will complain about nlink 0->1.
292222419ac9SBrian Foster 	 * Drop the link count as done by d_tmpfile(), complete the inode setup
292322419ac9SBrian Foster 	 * and flag it as linkable.
292422419ac9SBrian Foster 	 */
292522419ac9SBrian Foster 	drop_nlink(VFS_I(tmpfile));
29262b3d1d41SChristoph Hellwig 	xfs_setup_iops(tmpfile);
29277dcf5c3eSDave Chinner 	xfs_finish_inode_setup(tmpfile);
29287dcf5c3eSDave Chinner 	VFS_I(tmpfile)->i_state |= I_LINKABLE;
29297dcf5c3eSDave Chinner 
29307dcf5c3eSDave Chinner 	*wip = tmpfile;
29317dcf5c3eSDave Chinner 	return 0;
29327dcf5c3eSDave Chinner }
29337dcf5c3eSDave Chinner 
29347dcf5c3eSDave Chinner /*
2935f6bba201SDave Chinner  * xfs_rename
2936f6bba201SDave Chinner  */
2937f6bba201SDave Chinner int
2938f6bba201SDave Chinner xfs_rename(
29397dcf5c3eSDave Chinner 	struct xfs_inode	*src_dp,
2940f6bba201SDave Chinner 	struct xfs_name		*src_name,
29417dcf5c3eSDave Chinner 	struct xfs_inode	*src_ip,
29427dcf5c3eSDave Chinner 	struct xfs_inode	*target_dp,
2943f6bba201SDave Chinner 	struct xfs_name		*target_name,
29447dcf5c3eSDave Chinner 	struct xfs_inode	*target_ip,
2945d31a1825SCarlos Maiolino 	unsigned int		flags)
2946f6bba201SDave Chinner {
29477dcf5c3eSDave Chinner 	struct xfs_mount	*mp = src_dp->i_mount;
29487dcf5c3eSDave Chinner 	struct xfs_trans	*tp;
29492c3234d1SDarrick J. Wong 	struct xfs_defer_ops	dfops;
2950f6bba201SDave Chinner 	xfs_fsblock_t		first_block;
29517dcf5c3eSDave Chinner 	struct xfs_inode	*wip = NULL;		/* whiteout inode */
29527dcf5c3eSDave Chinner 	struct xfs_inode	*inodes[__XFS_SORT_INODES];
295395afcf5cSDave Chinner 	int			num_inodes = __XFS_SORT_INODES;
29542b93681fSDave Chinner 	bool			new_parent = (src_dp != target_dp);
2955c19b3b05SDave Chinner 	bool			src_is_directory = S_ISDIR(VFS_I(src_ip)->i_mode);
2956f6bba201SDave Chinner 	int			spaceres;
29577dcf5c3eSDave Chinner 	int			error;
2958f6bba201SDave Chinner 
2959f6bba201SDave Chinner 	trace_xfs_rename(src_dp, target_dp, src_name, target_name);
2960f6bba201SDave Chinner 
2961eeacd321SDave Chinner 	if ((flags & RENAME_EXCHANGE) && !target_ip)
2962eeacd321SDave Chinner 		return -EINVAL;
2963f6bba201SDave Chinner 
29647dcf5c3eSDave Chinner 	/*
29657dcf5c3eSDave Chinner 	 * If we are doing a whiteout operation, allocate the whiteout inode
29667dcf5c3eSDave Chinner 	 * we will be placing at the target and ensure the type is set
29677dcf5c3eSDave Chinner 	 * appropriately.
29687dcf5c3eSDave Chinner 	 */
29697dcf5c3eSDave Chinner 	if (flags & RENAME_WHITEOUT) {
29707dcf5c3eSDave Chinner 		ASSERT(!(flags & (RENAME_NOREPLACE | RENAME_EXCHANGE)));
29717dcf5c3eSDave Chinner 		error = xfs_rename_alloc_whiteout(target_dp, &wip);
29727dcf5c3eSDave Chinner 		if (error)
29737dcf5c3eSDave Chinner 			return error;
2974f6bba201SDave Chinner 
29757dcf5c3eSDave Chinner 		/* setup target dirent info as whiteout */
29767dcf5c3eSDave Chinner 		src_name->type = XFS_DIR3_FT_CHRDEV;
29777dcf5c3eSDave Chinner 	}
29787dcf5c3eSDave Chinner 
29797dcf5c3eSDave Chinner 	xfs_sort_for_rename(src_dp, target_dp, src_ip, target_ip, wip,
2980f6bba201SDave Chinner 				inodes, &num_inodes);
2981f6bba201SDave Chinner 
2982f6bba201SDave Chinner 	spaceres = XFS_RENAME_SPACE_RES(mp, target_name->len);
2983253f4911SChristoph Hellwig 	error = xfs_trans_alloc(mp, &M_RES(mp)->tr_rename, spaceres, 0, 0, &tp);
29842451337dSDave Chinner 	if (error == -ENOSPC) {
2985f6bba201SDave Chinner 		spaceres = 0;
2986253f4911SChristoph Hellwig 		error = xfs_trans_alloc(mp, &M_RES(mp)->tr_rename, 0, 0, 0,
2987253f4911SChristoph Hellwig 				&tp);
2988f6bba201SDave Chinner 	}
2989445883e8SDave Chinner 	if (error)
2990253f4911SChristoph Hellwig 		goto out_release_wip;
2991f6bba201SDave Chinner 
2992f6bba201SDave Chinner 	/*
2993f6bba201SDave Chinner 	 * Attach the dquots to the inodes
2994f6bba201SDave Chinner 	 */
2995f6bba201SDave Chinner 	error = xfs_qm_vop_rename_dqattach(inodes);
2996445883e8SDave Chinner 	if (error)
2997445883e8SDave Chinner 		goto out_trans_cancel;
2998f6bba201SDave Chinner 
2999f6bba201SDave Chinner 	/*
3000f6bba201SDave Chinner 	 * Lock all the participating inodes. Depending upon whether
3001f6bba201SDave Chinner 	 * the target_name exists in the target directory, and
3002f6bba201SDave Chinner 	 * whether the target directory is the same as the source
3003f6bba201SDave Chinner 	 * directory, we can lock from 2 to 4 inodes.
3004f6bba201SDave Chinner 	 */
3005f6bba201SDave Chinner 	xfs_lock_inodes(inodes, num_inodes, XFS_ILOCK_EXCL);
3006f6bba201SDave Chinner 
3007f6bba201SDave Chinner 	/*
3008f6bba201SDave Chinner 	 * Join all the inodes to the transaction. From this point on,
3009f6bba201SDave Chinner 	 * we can rely on either trans_commit or trans_cancel to unlock
3010f6bba201SDave Chinner 	 * them.
3011f6bba201SDave Chinner 	 */
301265523218SChristoph Hellwig 	xfs_trans_ijoin(tp, src_dp, XFS_ILOCK_EXCL);
3013f6bba201SDave Chinner 	if (new_parent)
301465523218SChristoph Hellwig 		xfs_trans_ijoin(tp, target_dp, XFS_ILOCK_EXCL);
3015f6bba201SDave Chinner 	xfs_trans_ijoin(tp, src_ip, XFS_ILOCK_EXCL);
3016f6bba201SDave Chinner 	if (target_ip)
3017f6bba201SDave Chinner 		xfs_trans_ijoin(tp, target_ip, XFS_ILOCK_EXCL);
30187dcf5c3eSDave Chinner 	if (wip)
30197dcf5c3eSDave Chinner 		xfs_trans_ijoin(tp, wip, XFS_ILOCK_EXCL);
3020f6bba201SDave Chinner 
3021f6bba201SDave Chinner 	/*
3022f6bba201SDave Chinner 	 * If we are using project inheritance, we only allow renames
3023f6bba201SDave Chinner 	 * into our tree when the project IDs are the same; else the
3024f6bba201SDave Chinner 	 * tree quota mechanism would be circumvented.
3025f6bba201SDave Chinner 	 */
3026f6bba201SDave Chinner 	if (unlikely((target_dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
3027f6bba201SDave Chinner 		     (xfs_get_projid(target_dp) != xfs_get_projid(src_ip)))) {
30282451337dSDave Chinner 		error = -EXDEV;
3029445883e8SDave Chinner 		goto out_trans_cancel;
3030f6bba201SDave Chinner 	}
3031f6bba201SDave Chinner 
30322c3234d1SDarrick J. Wong 	xfs_defer_init(&dfops, &first_block);
30338804630eSBrian Foster 	tp->t_agfl_dfops = &dfops;
3034445883e8SDave Chinner 
3035eeacd321SDave Chinner 	/* RENAME_EXCHANGE is unique from here on. */
3036eeacd321SDave Chinner 	if (flags & RENAME_EXCHANGE)
3037eeacd321SDave Chinner 		return xfs_cross_rename(tp, src_dp, src_name, src_ip,
3038d31a1825SCarlos Maiolino 					target_dp, target_name, target_ip,
30392c3234d1SDarrick J. Wong 					&dfops, &first_block, spaceres);
3040d31a1825SCarlos Maiolino 
3041d31a1825SCarlos Maiolino 	/*
3042f6bba201SDave Chinner 	 * Set up the target.
3043f6bba201SDave Chinner 	 */
3044f6bba201SDave Chinner 	if (target_ip == NULL) {
3045f6bba201SDave Chinner 		/*
3046f6bba201SDave Chinner 		 * If there's no space reservation, check the entry will
3047f6bba201SDave Chinner 		 * fit before actually inserting it.
3048f6bba201SDave Chinner 		 */
304994f3cad5SEric Sandeen 		if (!spaceres) {
305094f3cad5SEric Sandeen 			error = xfs_dir_canenter(tp, target_dp, target_name);
3051f6bba201SDave Chinner 			if (error)
3052445883e8SDave Chinner 				goto out_trans_cancel;
305394f3cad5SEric Sandeen 		}
3054f6bba201SDave Chinner 		/*
3055f6bba201SDave Chinner 		 * If target does not exist and the rename crosses
3056f6bba201SDave Chinner 		 * directories, adjust the target directory link count
3057f6bba201SDave Chinner 		 * to account for the ".." reference from the new entry.
3058f6bba201SDave Chinner 		 */
3059f6bba201SDave Chinner 		error = xfs_dir_createname(tp, target_dp, target_name,
3060f6bba201SDave Chinner 						src_ip->i_ino, &first_block,
30612c3234d1SDarrick J. Wong 						&dfops, spaceres);
3062f6bba201SDave Chinner 		if (error)
30634906e215SChristoph Hellwig 			goto out_bmap_cancel;
3064f6bba201SDave Chinner 
3065f6bba201SDave Chinner 		xfs_trans_ichgtime(tp, target_dp,
3066f6bba201SDave Chinner 					XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3067f6bba201SDave Chinner 
3068f6bba201SDave Chinner 		if (new_parent && src_is_directory) {
3069f6bba201SDave Chinner 			error = xfs_bumplink(tp, target_dp);
3070f6bba201SDave Chinner 			if (error)
30714906e215SChristoph Hellwig 				goto out_bmap_cancel;
3072f6bba201SDave Chinner 		}
3073f6bba201SDave Chinner 	} else { /* target_ip != NULL */
3074f6bba201SDave Chinner 		/*
3075f6bba201SDave Chinner 		 * If target exists and it's a directory, check that both
3076f6bba201SDave Chinner 		 * target and source are directories and that target can be
3077f6bba201SDave Chinner 		 * destroyed, or that neither is a directory.
3078f6bba201SDave Chinner 		 */
3079c19b3b05SDave Chinner 		if (S_ISDIR(VFS_I(target_ip)->i_mode)) {
3080f6bba201SDave Chinner 			/*
3081f6bba201SDave Chinner 			 * Make sure target dir is empty.
3082f6bba201SDave Chinner 			 */
3083f6bba201SDave Chinner 			if (!(xfs_dir_isempty(target_ip)) ||
308454d7b5c1SDave Chinner 			    (VFS_I(target_ip)->i_nlink > 2)) {
30852451337dSDave Chinner 				error = -EEXIST;
3086445883e8SDave Chinner 				goto out_trans_cancel;
3087f6bba201SDave Chinner 			}
3088f6bba201SDave Chinner 		}
3089f6bba201SDave Chinner 
3090f6bba201SDave Chinner 		/*
3091f6bba201SDave Chinner 		 * Link the source inode under the target name.
3092f6bba201SDave Chinner 		 * If the source inode is a directory and we are moving
3093f6bba201SDave Chinner 		 * it across directories, its ".." entry will be
3094f6bba201SDave Chinner 		 * inconsistent until we replace that down below.
3095f6bba201SDave Chinner 		 *
3096f6bba201SDave Chinner 		 * In case there is already an entry with the same
3097f6bba201SDave Chinner 		 * name at the destination directory, remove it first.
3098f6bba201SDave Chinner 		 */
3099f6bba201SDave Chinner 		error = xfs_dir_replace(tp, target_dp, target_name,
3100f6bba201SDave Chinner 					src_ip->i_ino,
31012c3234d1SDarrick J. Wong 					&first_block, &dfops, spaceres);
3102f6bba201SDave Chinner 		if (error)
31034906e215SChristoph Hellwig 			goto out_bmap_cancel;
3104f6bba201SDave Chinner 
3105f6bba201SDave Chinner 		xfs_trans_ichgtime(tp, target_dp,
3106f6bba201SDave Chinner 					XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3107f6bba201SDave Chinner 
3108f6bba201SDave Chinner 		/*
3109f6bba201SDave Chinner 		 * Decrement the link count on the target since the target
3110f6bba201SDave Chinner 		 * dir no longer points to it.
3111f6bba201SDave Chinner 		 */
3112f6bba201SDave Chinner 		error = xfs_droplink(tp, target_ip);
3113f6bba201SDave Chinner 		if (error)
31144906e215SChristoph Hellwig 			goto out_bmap_cancel;
3115f6bba201SDave Chinner 
3116f6bba201SDave Chinner 		if (src_is_directory) {
3117f6bba201SDave Chinner 			/*
3118f6bba201SDave Chinner 			 * Drop the link from the old "." entry.
3119f6bba201SDave Chinner 			 */
3120f6bba201SDave Chinner 			error = xfs_droplink(tp, target_ip);
3121f6bba201SDave Chinner 			if (error)
31224906e215SChristoph Hellwig 				goto out_bmap_cancel;
3123f6bba201SDave Chinner 		}
3124f6bba201SDave Chinner 	} /* target_ip != NULL */
3125f6bba201SDave Chinner 
3126f6bba201SDave Chinner 	/*
3127f6bba201SDave Chinner 	 * Remove the source.
3128f6bba201SDave Chinner 	 */
3129f6bba201SDave Chinner 	if (new_parent && src_is_directory) {
3130f6bba201SDave Chinner 		/*
3131f6bba201SDave Chinner 		 * Rewrite the ".." entry to point to the new
3132f6bba201SDave Chinner 		 * directory.
3133f6bba201SDave Chinner 		 */
3134f6bba201SDave Chinner 		error = xfs_dir_replace(tp, src_ip, &xfs_name_dotdot,
3135f6bba201SDave Chinner 					target_dp->i_ino,
31362c3234d1SDarrick J. Wong 					&first_block, &dfops, spaceres);
31372451337dSDave Chinner 		ASSERT(error != -EEXIST);
3138f6bba201SDave Chinner 		if (error)
31394906e215SChristoph Hellwig 			goto out_bmap_cancel;
3140f6bba201SDave Chinner 	}
3141f6bba201SDave Chinner 
3142f6bba201SDave Chinner 	/*
3143f6bba201SDave Chinner 	 * We always want to hit the ctime on the source inode.
3144f6bba201SDave Chinner 	 *
3145f6bba201SDave Chinner 	 * This isn't strictly required by the standards since the source
3146f6bba201SDave Chinner 	 * inode isn't really being changed, but old unix file systems did
3147f6bba201SDave Chinner 	 * it and some incremental backup programs won't work without it.
3148f6bba201SDave Chinner 	 */
3149f6bba201SDave Chinner 	xfs_trans_ichgtime(tp, src_ip, XFS_ICHGTIME_CHG);
3150f6bba201SDave Chinner 	xfs_trans_log_inode(tp, src_ip, XFS_ILOG_CORE);
3151f6bba201SDave Chinner 
3152f6bba201SDave Chinner 	/*
3153f6bba201SDave Chinner 	 * Adjust the link count on src_dp.  This is necessary when
3154f6bba201SDave Chinner 	 * renaming a directory, either within one parent when
3155f6bba201SDave Chinner 	 * the target existed, or across two parent directories.
3156f6bba201SDave Chinner 	 */
3157f6bba201SDave Chinner 	if (src_is_directory && (new_parent || target_ip != NULL)) {
3158f6bba201SDave Chinner 
3159f6bba201SDave Chinner 		/*
3160f6bba201SDave Chinner 		 * Decrement link count on src_directory since the
3161f6bba201SDave Chinner 		 * entry that's moved no longer points to it.
3162f6bba201SDave Chinner 		 */
3163f6bba201SDave Chinner 		error = xfs_droplink(tp, src_dp);
3164f6bba201SDave Chinner 		if (error)
31654906e215SChristoph Hellwig 			goto out_bmap_cancel;
3166f6bba201SDave Chinner 	}
3167f6bba201SDave Chinner 
31687dcf5c3eSDave Chinner 	/*
31697dcf5c3eSDave Chinner 	 * For whiteouts, we only need to update the source dirent with the
31707dcf5c3eSDave Chinner 	 * inode number of the whiteout inode rather than removing it
31717dcf5c3eSDave Chinner 	 * altogether.
31727dcf5c3eSDave Chinner 	 */
31737dcf5c3eSDave Chinner 	if (wip) {
31747dcf5c3eSDave Chinner 		error = xfs_dir_replace(tp, src_dp, src_name, wip->i_ino,
31752c3234d1SDarrick J. Wong 					&first_block, &dfops, spaceres);
31767dcf5c3eSDave Chinner 	} else
3177f6bba201SDave Chinner 		error = xfs_dir_removename(tp, src_dp, src_name, src_ip->i_ino,
31782c3234d1SDarrick J. Wong 					   &first_block, &dfops, spaceres);
3179f6bba201SDave Chinner 	if (error)
31804906e215SChristoph Hellwig 		goto out_bmap_cancel;
3181f6bba201SDave Chinner 
31827dcf5c3eSDave Chinner 	/*
31837dcf5c3eSDave Chinner 	 * For whiteouts, we need to bump the link count on the whiteout inode.
31847dcf5c3eSDave Chinner 	 * This means that failures all the way up to this point leave the inode
31857dcf5c3eSDave Chinner 	 * on the unlinked list and so cleanup is a simple matter of dropping
31867dcf5c3eSDave Chinner 	 * the remaining reference to it. If we fail here after bumping the link
31877dcf5c3eSDave Chinner 	 * count, we're shutting down the filesystem so we'll never see the
31887dcf5c3eSDave Chinner 	 * intermediate state on disk.
31897dcf5c3eSDave Chinner 	 */
31907dcf5c3eSDave Chinner 	if (wip) {
319154d7b5c1SDave Chinner 		ASSERT(VFS_I(wip)->i_nlink == 0);
31927dcf5c3eSDave Chinner 		error = xfs_bumplink(tp, wip);
31937dcf5c3eSDave Chinner 		if (error)
31944906e215SChristoph Hellwig 			goto out_bmap_cancel;
31957dcf5c3eSDave Chinner 		error = xfs_iunlink_remove(tp, wip);
31967dcf5c3eSDave Chinner 		if (error)
31974906e215SChristoph Hellwig 			goto out_bmap_cancel;
31987dcf5c3eSDave Chinner 		xfs_trans_log_inode(tp, wip, XFS_ILOG_CORE);
31997dcf5c3eSDave Chinner 
32007dcf5c3eSDave Chinner 		/*
32017dcf5c3eSDave Chinner 		 * Now we have a real link, clear the "I'm a tmpfile" state
32027dcf5c3eSDave Chinner 		 * flag from the inode so it doesn't accidentally get misused in
32037dcf5c3eSDave Chinner 		 * future.
32047dcf5c3eSDave Chinner 		 */
32057dcf5c3eSDave Chinner 		VFS_I(wip)->i_state &= ~I_LINKABLE;
32067dcf5c3eSDave Chinner 	}
3207f6bba201SDave Chinner 
3208f6bba201SDave Chinner 	xfs_trans_ichgtime(tp, src_dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3209f6bba201SDave Chinner 	xfs_trans_log_inode(tp, src_dp, XFS_ILOG_CORE);
3210f6bba201SDave Chinner 	if (new_parent)
3211f6bba201SDave Chinner 		xfs_trans_log_inode(tp, target_dp, XFS_ILOG_CORE);
3212f6bba201SDave Chinner 
32132c3234d1SDarrick J. Wong 	error = xfs_finish_rename(tp, &dfops);
32147dcf5c3eSDave Chinner 	if (wip)
32157dcf5c3eSDave Chinner 		IRELE(wip);
32167dcf5c3eSDave Chinner 	return error;
3217f6bba201SDave Chinner 
3218445883e8SDave Chinner out_bmap_cancel:
32192c3234d1SDarrick J. Wong 	xfs_defer_cancel(&dfops);
3220445883e8SDave Chinner out_trans_cancel:
32214906e215SChristoph Hellwig 	xfs_trans_cancel(tp);
3222253f4911SChristoph Hellwig out_release_wip:
32237dcf5c3eSDave Chinner 	if (wip)
32247dcf5c3eSDave Chinner 		IRELE(wip);
3225f6bba201SDave Chinner 	return error;
3226f6bba201SDave Chinner }
3227f6bba201SDave Chinner 
3228bad55843SDavid Chinner STATIC int
3229bad55843SDavid Chinner xfs_iflush_cluster(
323019429363SDave Chinner 	struct xfs_inode	*ip,
323119429363SDave Chinner 	struct xfs_buf		*bp)
3232bad55843SDavid Chinner {
323319429363SDave Chinner 	struct xfs_mount	*mp = ip->i_mount;
32345017e97dSDave Chinner 	struct xfs_perag	*pag;
3235bad55843SDavid Chinner 	unsigned long		first_index, mask;
3236c8f5f12eSDavid Chinner 	unsigned long		inodes_per_cluster;
323719429363SDave Chinner 	int			cilist_size;
323819429363SDave Chinner 	struct xfs_inode	**cilist;
323919429363SDave Chinner 	struct xfs_inode	*cip;
3240bad55843SDavid Chinner 	int			nr_found;
3241bad55843SDavid Chinner 	int			clcount = 0;
3242bad55843SDavid Chinner 	int			bufwasdelwri;
3243bad55843SDavid Chinner 	int			i;
3244bad55843SDavid Chinner 
32455017e97dSDave Chinner 	pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
3246bad55843SDavid Chinner 
32470f49efd8SJie Liu 	inodes_per_cluster = mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog;
324819429363SDave Chinner 	cilist_size = inodes_per_cluster * sizeof(xfs_inode_t *);
324919429363SDave Chinner 	cilist = kmem_alloc(cilist_size, KM_MAYFAIL|KM_NOFS);
325019429363SDave Chinner 	if (!cilist)
325144b56e0aSDave Chinner 		goto out_put;
3252bad55843SDavid Chinner 
32530f49efd8SJie Liu 	mask = ~(((mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog)) - 1);
3254bad55843SDavid Chinner 	first_index = XFS_INO_TO_AGINO(mp, ip->i_ino) & mask;
32551a3e8f3dSDave Chinner 	rcu_read_lock();
3256bad55843SDavid Chinner 	/* really need a gang lookup range call here */
325719429363SDave Chinner 	nr_found = radix_tree_gang_lookup(&pag->pag_ici_root, (void**)cilist,
3258c8f5f12eSDavid Chinner 					first_index, inodes_per_cluster);
3259bad55843SDavid Chinner 	if (nr_found == 0)
3260bad55843SDavid Chinner 		goto out_free;
3261bad55843SDavid Chinner 
3262bad55843SDavid Chinner 	for (i = 0; i < nr_found; i++) {
326319429363SDave Chinner 		cip = cilist[i];
326419429363SDave Chinner 		if (cip == ip)
3265bad55843SDavid Chinner 			continue;
32661a3e8f3dSDave Chinner 
32671a3e8f3dSDave Chinner 		/*
32681a3e8f3dSDave Chinner 		 * because this is an RCU protected lookup, we could find a
32691a3e8f3dSDave Chinner 		 * recently freed or even reallocated inode during the lookup.
32701a3e8f3dSDave Chinner 		 * We need to check under the i_flags_lock for a valid inode
32711a3e8f3dSDave Chinner 		 * here. Skip it if it is not valid or the wrong inode.
32721a3e8f3dSDave Chinner 		 */
327319429363SDave Chinner 		spin_lock(&cip->i_flags_lock);
327419429363SDave Chinner 		if (!cip->i_ino ||
327519429363SDave Chinner 		    __xfs_iflags_test(cip, XFS_ISTALE)) {
327619429363SDave Chinner 			spin_unlock(&cip->i_flags_lock);
32771a3e8f3dSDave Chinner 			continue;
32781a3e8f3dSDave Chinner 		}
32795a90e53eSDave Chinner 
32805a90e53eSDave Chinner 		/*
32815a90e53eSDave Chinner 		 * Once we fall off the end of the cluster, no point checking
32825a90e53eSDave Chinner 		 * any more inodes in the list because they will also all be
32835a90e53eSDave Chinner 		 * outside the cluster.
32845a90e53eSDave Chinner 		 */
328519429363SDave Chinner 		if ((XFS_INO_TO_AGINO(mp, cip->i_ino) & mask) != first_index) {
328619429363SDave Chinner 			spin_unlock(&cip->i_flags_lock);
32875a90e53eSDave Chinner 			break;
32885a90e53eSDave Chinner 		}
328919429363SDave Chinner 		spin_unlock(&cip->i_flags_lock);
32901a3e8f3dSDave Chinner 
3291bad55843SDavid Chinner 		/*
3292bad55843SDavid Chinner 		 * Do an un-protected check to see if the inode is dirty and
3293bad55843SDavid Chinner 		 * is a candidate for flushing.  These checks will be repeated
3294bad55843SDavid Chinner 		 * later after the appropriate locks are acquired.
3295bad55843SDavid Chinner 		 */
329619429363SDave Chinner 		if (xfs_inode_clean(cip) && xfs_ipincount(cip) == 0)
3297bad55843SDavid Chinner 			continue;
3298bad55843SDavid Chinner 
3299bad55843SDavid Chinner 		/*
3300bad55843SDavid Chinner 		 * Try to get locks.  If any are unavailable or it is pinned,
3301bad55843SDavid Chinner 		 * then this inode cannot be flushed and is skipped.
3302bad55843SDavid Chinner 		 */
3303bad55843SDavid Chinner 
330419429363SDave Chinner 		if (!xfs_ilock_nowait(cip, XFS_ILOCK_SHARED))
3305bad55843SDavid Chinner 			continue;
330619429363SDave Chinner 		if (!xfs_iflock_nowait(cip)) {
330719429363SDave Chinner 			xfs_iunlock(cip, XFS_ILOCK_SHARED);
3308bad55843SDavid Chinner 			continue;
3309bad55843SDavid Chinner 		}
331019429363SDave Chinner 		if (xfs_ipincount(cip)) {
331119429363SDave Chinner 			xfs_ifunlock(cip);
331219429363SDave Chinner 			xfs_iunlock(cip, XFS_ILOCK_SHARED);
3313bad55843SDavid Chinner 			continue;
3314bad55843SDavid Chinner 		}
3315bad55843SDavid Chinner 
33168a17d7ddSDave Chinner 
33178a17d7ddSDave Chinner 		/*
33188a17d7ddSDave Chinner 		 * Check the inode number again, just to be certain we are not
33198a17d7ddSDave Chinner 		 * racing with freeing in xfs_reclaim_inode(). See the comments
33208a17d7ddSDave Chinner 		 * in that function for more information as to why the initial
33218a17d7ddSDave Chinner 		 * check is not sufficient.
33228a17d7ddSDave Chinner 		 */
332319429363SDave Chinner 		if (!cip->i_ino) {
332419429363SDave Chinner 			xfs_ifunlock(cip);
332519429363SDave Chinner 			xfs_iunlock(cip, XFS_ILOCK_SHARED);
3326bad55843SDavid Chinner 			continue;
3327bad55843SDavid Chinner 		}
3328bad55843SDavid Chinner 
3329bad55843SDavid Chinner 		/*
3330bad55843SDavid Chinner 		 * arriving here means that this inode can be flushed.  First
3331bad55843SDavid Chinner 		 * re-check that it's dirty before flushing.
3332bad55843SDavid Chinner 		 */
333319429363SDave Chinner 		if (!xfs_inode_clean(cip)) {
3334bad55843SDavid Chinner 			int	error;
333519429363SDave Chinner 			error = xfs_iflush_int(cip, bp);
3336bad55843SDavid Chinner 			if (error) {
333719429363SDave Chinner 				xfs_iunlock(cip, XFS_ILOCK_SHARED);
3338bad55843SDavid Chinner 				goto cluster_corrupt_out;
3339bad55843SDavid Chinner 			}
3340bad55843SDavid Chinner 			clcount++;
3341bad55843SDavid Chinner 		} else {
334219429363SDave Chinner 			xfs_ifunlock(cip);
3343bad55843SDavid Chinner 		}
334419429363SDave Chinner 		xfs_iunlock(cip, XFS_ILOCK_SHARED);
3345bad55843SDavid Chinner 	}
3346bad55843SDavid Chinner 
3347bad55843SDavid Chinner 	if (clcount) {
3348ff6d6af2SBill O'Donnell 		XFS_STATS_INC(mp, xs_icluster_flushcnt);
3349ff6d6af2SBill O'Donnell 		XFS_STATS_ADD(mp, xs_icluster_flushinode, clcount);
3350bad55843SDavid Chinner 	}
3351bad55843SDavid Chinner 
3352bad55843SDavid Chinner out_free:
33531a3e8f3dSDave Chinner 	rcu_read_unlock();
335419429363SDave Chinner 	kmem_free(cilist);
335544b56e0aSDave Chinner out_put:
335644b56e0aSDave Chinner 	xfs_perag_put(pag);
3357bad55843SDavid Chinner 	return 0;
3358bad55843SDavid Chinner 
3359bad55843SDavid Chinner 
3360bad55843SDavid Chinner cluster_corrupt_out:
3361bad55843SDavid Chinner 	/*
3362bad55843SDavid Chinner 	 * Corruption detected in the clustering loop.  Invalidate the
3363bad55843SDavid Chinner 	 * inode buffer and shut down the filesystem.
3364bad55843SDavid Chinner 	 */
33651a3e8f3dSDave Chinner 	rcu_read_unlock();
3366bad55843SDavid Chinner 	/*
336743ff2122SChristoph Hellwig 	 * Clean up the buffer.  If it was delwri, just release it --
3368bad55843SDavid Chinner 	 * brelse can handle it with no problems.  If not, shut down the
3369bad55843SDavid Chinner 	 * filesystem before releasing the buffer.
3370bad55843SDavid Chinner 	 */
337143ff2122SChristoph Hellwig 	bufwasdelwri = (bp->b_flags & _XBF_DELWRI_Q);
3372bad55843SDavid Chinner 	if (bufwasdelwri)
3373bad55843SDavid Chinner 		xfs_buf_relse(bp);
3374bad55843SDavid Chinner 
3375bad55843SDavid Chinner 	xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
3376bad55843SDavid Chinner 
3377bad55843SDavid Chinner 	if (!bufwasdelwri) {
3378bad55843SDavid Chinner 		/*
3379bad55843SDavid Chinner 		 * Just like incore_relse: if we have b_iodone functions,
3380bad55843SDavid Chinner 		 * mark the buffer as an error and call them.  Otherwise
3381bad55843SDavid Chinner 		 * mark it as stale and brelse.
3382bad55843SDavid Chinner 		 */
3383cb669ca5SChristoph Hellwig 		if (bp->b_iodone) {
3384b0388bf1SDave Chinner 			bp->b_flags &= ~XBF_DONE;
3385c867cb61SChristoph Hellwig 			xfs_buf_stale(bp);
33862451337dSDave Chinner 			xfs_buf_ioerror(bp, -EIO);
3387e8aaba9aSDave Chinner 			xfs_buf_ioend(bp);
3388bad55843SDavid Chinner 		} else {
3389c867cb61SChristoph Hellwig 			xfs_buf_stale(bp);
3390bad55843SDavid Chinner 			xfs_buf_relse(bp);
3391bad55843SDavid Chinner 		}
3392bad55843SDavid Chinner 	}
3393bad55843SDavid Chinner 
3394bad55843SDavid Chinner 	/*
3395bad55843SDavid Chinner 	 * Unlocks the flush lock
3396bad55843SDavid Chinner 	 */
339719429363SDave Chinner 	xfs_iflush_abort(cip, false);
339819429363SDave Chinner 	kmem_free(cilist);
339944b56e0aSDave Chinner 	xfs_perag_put(pag);
34002451337dSDave Chinner 	return -EFSCORRUPTED;
3401bad55843SDavid Chinner }
3402bad55843SDavid Chinner 
34031da177e4SLinus Torvalds /*
34044c46819aSChristoph Hellwig  * Flush dirty inode metadata into the backing buffer.
34054c46819aSChristoph Hellwig  *
34064c46819aSChristoph Hellwig  * The caller must have the inode lock and the inode flush lock held.  The
34074c46819aSChristoph Hellwig  * inode lock will still be held upon return to the caller, and the inode
34084c46819aSChristoph Hellwig  * flush lock will be released after the inode has reached the disk.
34094c46819aSChristoph Hellwig  *
34104c46819aSChristoph Hellwig  * The caller must write out the buffer returned in *bpp and release it.
34111da177e4SLinus Torvalds  */
34121da177e4SLinus Torvalds int
34131da177e4SLinus Torvalds xfs_iflush(
34144c46819aSChristoph Hellwig 	struct xfs_inode	*ip,
34154c46819aSChristoph Hellwig 	struct xfs_buf		**bpp)
34161da177e4SLinus Torvalds {
34174c46819aSChristoph Hellwig 	struct xfs_mount	*mp = ip->i_mount;
3418b1438f47SDave Chinner 	struct xfs_buf		*bp = NULL;
34194c46819aSChristoph Hellwig 	struct xfs_dinode	*dip;
34201da177e4SLinus Torvalds 	int			error;
34211da177e4SLinus Torvalds 
3422ff6d6af2SBill O'Donnell 	XFS_STATS_INC(mp, xs_iflush_count);
34231da177e4SLinus Torvalds 
3424579aa9caSChristoph Hellwig 	ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
3425474fce06SChristoph Hellwig 	ASSERT(xfs_isiflocked(ip));
34261da177e4SLinus Torvalds 	ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
34278096b1ebSChristoph Hellwig 	       ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
34281da177e4SLinus Torvalds 
34294c46819aSChristoph Hellwig 	*bpp = NULL;
34301da177e4SLinus Torvalds 
34311da177e4SLinus Torvalds 	xfs_iunpin_wait(ip);
34321da177e4SLinus Torvalds 
34331da177e4SLinus Torvalds 	/*
34344b6a4688SDave Chinner 	 * For stale inodes we cannot rely on the backing buffer remaining
34354b6a4688SDave Chinner 	 * stale in cache for the remaining life of the stale inode and so
3436475ee413SChristoph Hellwig 	 * xfs_imap_to_bp() below may give us a buffer that no longer contains
34374b6a4688SDave Chinner 	 * inodes below. We have to check this after ensuring the inode is
34384b6a4688SDave Chinner 	 * unpinned so that it is safe to reclaim the stale inode after the
34394b6a4688SDave Chinner 	 * flush call.
34404b6a4688SDave Chinner 	 */
34414b6a4688SDave Chinner 	if (xfs_iflags_test(ip, XFS_ISTALE)) {
34424b6a4688SDave Chinner 		xfs_ifunlock(ip);
34434b6a4688SDave Chinner 		return 0;
34444b6a4688SDave Chinner 	}
34454b6a4688SDave Chinner 
34464b6a4688SDave Chinner 	/*
34471da177e4SLinus Torvalds 	 * This may have been unpinned because the filesystem is shutting
34481da177e4SLinus Torvalds 	 * down forcibly. If that's the case we must not write this inode
344932ce90a4SChristoph Hellwig 	 * to disk, because the log record didn't make it to disk.
345032ce90a4SChristoph Hellwig 	 *
345132ce90a4SChristoph Hellwig 	 * We also have to remove the log item from the AIL in this case,
345232ce90a4SChristoph Hellwig 	 * as we wait for an empty AIL as part of the unmount process.
34531da177e4SLinus Torvalds 	 */
34541da177e4SLinus Torvalds 	if (XFS_FORCED_SHUTDOWN(mp)) {
34552451337dSDave Chinner 		error = -EIO;
345632ce90a4SChristoph Hellwig 		goto abort_out;
34571da177e4SLinus Torvalds 	}
34581da177e4SLinus Torvalds 
34591da177e4SLinus Torvalds 	/*
3460b1438f47SDave Chinner 	 * Get the buffer containing the on-disk inode. We are doing a try-lock
3461b1438f47SDave Chinner 	 * operation here, so we may get  an EAGAIN error. In that case, we
3462b1438f47SDave Chinner 	 * simply want to return with the inode still dirty.
3463b1438f47SDave Chinner 	 *
3464b1438f47SDave Chinner 	 * If we get any other error, we effectively have a corruption situation
3465b1438f47SDave Chinner 	 * and we cannot flush the inode, so we treat it the same as failing
3466b1438f47SDave Chinner 	 * xfs_iflush_int().
3467a3f74ffbSDavid Chinner 	 */
3468475ee413SChristoph Hellwig 	error = xfs_imap_to_bp(mp, NULL, &ip->i_imap, &dip, &bp, XBF_TRYLOCK,
3469475ee413SChristoph Hellwig 			       0);
3470b1438f47SDave Chinner 	if (error == -EAGAIN) {
3471a3f74ffbSDavid Chinner 		xfs_ifunlock(ip);
3472a3f74ffbSDavid Chinner 		return error;
3473a3f74ffbSDavid Chinner 	}
3474b1438f47SDave Chinner 	if (error)
3475b1438f47SDave Chinner 		goto corrupt_out;
3476a3f74ffbSDavid Chinner 
3477a3f74ffbSDavid Chinner 	/*
34781da177e4SLinus Torvalds 	 * First flush out the inode that xfs_iflush was called with.
34791da177e4SLinus Torvalds 	 */
34801da177e4SLinus Torvalds 	error = xfs_iflush_int(ip, bp);
3481bad55843SDavid Chinner 	if (error)
34821da177e4SLinus Torvalds 		goto corrupt_out;
34831da177e4SLinus Torvalds 
34841da177e4SLinus Torvalds 	/*
3485a3f74ffbSDavid Chinner 	 * If the buffer is pinned then push on the log now so we won't
3486a3f74ffbSDavid Chinner 	 * get stuck waiting in the write for too long.
3487a3f74ffbSDavid Chinner 	 */
3488811e64c7SChandra Seetharaman 	if (xfs_buf_ispinned(bp))
3489a14a348bSChristoph Hellwig 		xfs_log_force(mp, 0);
3490a3f74ffbSDavid Chinner 
3491a3f74ffbSDavid Chinner 	/*
34921da177e4SLinus Torvalds 	 * inode clustering:
34931da177e4SLinus Torvalds 	 * see if other inodes can be gathered into this write
34941da177e4SLinus Torvalds 	 */
3495bad55843SDavid Chinner 	error = xfs_iflush_cluster(ip, bp);
3496bad55843SDavid Chinner 	if (error)
34971da177e4SLinus Torvalds 		goto cluster_corrupt_out;
34981da177e4SLinus Torvalds 
34994c46819aSChristoph Hellwig 	*bpp = bp;
35004c46819aSChristoph Hellwig 	return 0;
35011da177e4SLinus Torvalds 
35021da177e4SLinus Torvalds corrupt_out:
3503b1438f47SDave Chinner 	if (bp)
35041da177e4SLinus Torvalds 		xfs_buf_relse(bp);
35057d04a335SNathan Scott 	xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
35061da177e4SLinus Torvalds cluster_corrupt_out:
35072451337dSDave Chinner 	error = -EFSCORRUPTED;
350832ce90a4SChristoph Hellwig abort_out:
35091da177e4SLinus Torvalds 	/*
35101da177e4SLinus Torvalds 	 * Unlocks the flush lock
35111da177e4SLinus Torvalds 	 */
351204913fddSDave Chinner 	xfs_iflush_abort(ip, false);
351332ce90a4SChristoph Hellwig 	return error;
35141da177e4SLinus Torvalds }
35151da177e4SLinus Torvalds 
35169cfb9b47SDarrick J. Wong /*
35179cfb9b47SDarrick J. Wong  * If there are inline format data / attr forks attached to this inode,
35189cfb9b47SDarrick J. Wong  * make sure they're not corrupt.
35199cfb9b47SDarrick J. Wong  */
35209cfb9b47SDarrick J. Wong bool
35219cfb9b47SDarrick J. Wong xfs_inode_verify_forks(
35229cfb9b47SDarrick J. Wong 	struct xfs_inode	*ip)
35239cfb9b47SDarrick J. Wong {
352422431bf3SDarrick J. Wong 	struct xfs_ifork	*ifp;
35259cfb9b47SDarrick J. Wong 	xfs_failaddr_t		fa;
35269cfb9b47SDarrick J. Wong 
35279cfb9b47SDarrick J. Wong 	fa = xfs_ifork_verify_data(ip, &xfs_default_ifork_ops);
35289cfb9b47SDarrick J. Wong 	if (fa) {
352922431bf3SDarrick J. Wong 		ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
353022431bf3SDarrick J. Wong 		xfs_inode_verifier_error(ip, -EFSCORRUPTED, "data fork",
353122431bf3SDarrick J. Wong 				ifp->if_u1.if_data, ifp->if_bytes, fa);
35329cfb9b47SDarrick J. Wong 		return false;
35339cfb9b47SDarrick J. Wong 	}
35349cfb9b47SDarrick J. Wong 
35359cfb9b47SDarrick J. Wong 	fa = xfs_ifork_verify_attr(ip, &xfs_default_ifork_ops);
35369cfb9b47SDarrick J. Wong 	if (fa) {
353722431bf3SDarrick J. Wong 		ifp = XFS_IFORK_PTR(ip, XFS_ATTR_FORK);
353822431bf3SDarrick J. Wong 		xfs_inode_verifier_error(ip, -EFSCORRUPTED, "attr fork",
353922431bf3SDarrick J. Wong 				ifp ? ifp->if_u1.if_data : NULL,
354022431bf3SDarrick J. Wong 				ifp ? ifp->if_bytes : 0, fa);
35419cfb9b47SDarrick J. Wong 		return false;
35429cfb9b47SDarrick J. Wong 	}
35439cfb9b47SDarrick J. Wong 	return true;
35449cfb9b47SDarrick J. Wong }
35459cfb9b47SDarrick J. Wong 
35461da177e4SLinus Torvalds STATIC int
35471da177e4SLinus Torvalds xfs_iflush_int(
354893848a99SChristoph Hellwig 	struct xfs_inode	*ip,
354993848a99SChristoph Hellwig 	struct xfs_buf		*bp)
35501da177e4SLinus Torvalds {
355193848a99SChristoph Hellwig 	struct xfs_inode_log_item *iip = ip->i_itemp;
355293848a99SChristoph Hellwig 	struct xfs_dinode	*dip;
355393848a99SChristoph Hellwig 	struct xfs_mount	*mp = ip->i_mount;
35541da177e4SLinus Torvalds 
3555579aa9caSChristoph Hellwig 	ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
3556474fce06SChristoph Hellwig 	ASSERT(xfs_isiflocked(ip));
35571da177e4SLinus Torvalds 	ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
35588096b1ebSChristoph Hellwig 	       ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
355993848a99SChristoph Hellwig 	ASSERT(iip != NULL && iip->ili_fields != 0);
3560263997a6SDave Chinner 	ASSERT(ip->i_d.di_version > 1);
35611da177e4SLinus Torvalds 
35621da177e4SLinus Torvalds 	/* set *dip = inode's place in the buffer */
356388ee2df7SChristoph Hellwig 	dip = xfs_buf_offset(bp, ip->i_imap.im_boffset);
35641da177e4SLinus Torvalds 
356569ef921bSChristoph Hellwig 	if (XFS_TEST_ERROR(dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC),
35669e24cfd0SDarrick J. Wong 			       mp, XFS_ERRTAG_IFLUSH_1)) {
35676a19d939SDave Chinner 		xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3568c9690043SDarrick J. Wong 			"%s: Bad inode %Lu magic number 0x%x, ptr "PTR_FMT,
35696a19d939SDave Chinner 			__func__, ip->i_ino, be16_to_cpu(dip->di_magic), dip);
35701da177e4SLinus Torvalds 		goto corrupt_out;
35711da177e4SLinus Torvalds 	}
3572c19b3b05SDave Chinner 	if (S_ISREG(VFS_I(ip)->i_mode)) {
35731da177e4SLinus Torvalds 		if (XFS_TEST_ERROR(
35741da177e4SLinus Torvalds 		    (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
35751da177e4SLinus Torvalds 		    (ip->i_d.di_format != XFS_DINODE_FMT_BTREE),
35769e24cfd0SDarrick J. Wong 		    mp, XFS_ERRTAG_IFLUSH_3)) {
35776a19d939SDave Chinner 			xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3578c9690043SDarrick J. Wong 				"%s: Bad regular inode %Lu, ptr "PTR_FMT,
35796a19d939SDave Chinner 				__func__, ip->i_ino, ip);
35801da177e4SLinus Torvalds 			goto corrupt_out;
35811da177e4SLinus Torvalds 		}
3582c19b3b05SDave Chinner 	} else if (S_ISDIR(VFS_I(ip)->i_mode)) {
35831da177e4SLinus Torvalds 		if (XFS_TEST_ERROR(
35841da177e4SLinus Torvalds 		    (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
35851da177e4SLinus Torvalds 		    (ip->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
35861da177e4SLinus Torvalds 		    (ip->i_d.di_format != XFS_DINODE_FMT_LOCAL),
35879e24cfd0SDarrick J. Wong 		    mp, XFS_ERRTAG_IFLUSH_4)) {
35886a19d939SDave Chinner 			xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3589c9690043SDarrick J. Wong 				"%s: Bad directory inode %Lu, ptr "PTR_FMT,
35906a19d939SDave Chinner 				__func__, ip->i_ino, ip);
35911da177e4SLinus Torvalds 			goto corrupt_out;
35921da177e4SLinus Torvalds 		}
35931da177e4SLinus Torvalds 	}
35941da177e4SLinus Torvalds 	if (XFS_TEST_ERROR(ip->i_d.di_nextents + ip->i_d.di_anextents >
35959e24cfd0SDarrick J. Wong 				ip->i_d.di_nblocks, mp, XFS_ERRTAG_IFLUSH_5)) {
35966a19d939SDave Chinner 		xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
35976a19d939SDave Chinner 			"%s: detected corrupt incore inode %Lu, "
3598c9690043SDarrick J. Wong 			"total extents = %d, nblocks = %Ld, ptr "PTR_FMT,
35996a19d939SDave Chinner 			__func__, ip->i_ino,
36001da177e4SLinus Torvalds 			ip->i_d.di_nextents + ip->i_d.di_anextents,
36016a19d939SDave Chinner 			ip->i_d.di_nblocks, ip);
36021da177e4SLinus Torvalds 		goto corrupt_out;
36031da177e4SLinus Torvalds 	}
36041da177e4SLinus Torvalds 	if (XFS_TEST_ERROR(ip->i_d.di_forkoff > mp->m_sb.sb_inodesize,
36059e24cfd0SDarrick J. Wong 				mp, XFS_ERRTAG_IFLUSH_6)) {
36066a19d939SDave Chinner 		xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3607c9690043SDarrick J. Wong 			"%s: bad inode %Lu, forkoff 0x%x, ptr "PTR_FMT,
36086a19d939SDave Chinner 			__func__, ip->i_ino, ip->i_d.di_forkoff, ip);
36091da177e4SLinus Torvalds 		goto corrupt_out;
36101da177e4SLinus Torvalds 	}
3611e60896d8SDave Chinner 
36121da177e4SLinus Torvalds 	/*
3613263997a6SDave Chinner 	 * Inode item log recovery for v2 inodes are dependent on the
3614e60896d8SDave Chinner 	 * di_flushiter count for correct sequencing. We bump the flush
3615e60896d8SDave Chinner 	 * iteration count so we can detect flushes which postdate a log record
3616e60896d8SDave Chinner 	 * during recovery. This is redundant as we now log every change and
3617e60896d8SDave Chinner 	 * hence this can't happen but we need to still do it to ensure
3618e60896d8SDave Chinner 	 * backwards compatibility with old kernels that predate logging all
3619e60896d8SDave Chinner 	 * inode changes.
36201da177e4SLinus Torvalds 	 */
3621e60896d8SDave Chinner 	if (ip->i_d.di_version < 3)
36221da177e4SLinus Torvalds 		ip->i_d.di_flushiter++;
36231da177e4SLinus Torvalds 
36249cfb9b47SDarrick J. Wong 	/* Check the inline fork data before we write out. */
36259cfb9b47SDarrick J. Wong 	if (!xfs_inode_verify_forks(ip))
3626005c5db8SDarrick J. Wong 		goto corrupt_out;
3627005c5db8SDarrick J. Wong 
36281da177e4SLinus Torvalds 	/*
36293987848cSDave Chinner 	 * Copy the dirty parts of the inode into the on-disk inode.  We always
36303987848cSDave Chinner 	 * copy out the core of the inode, because if the inode is dirty at all
36313987848cSDave Chinner 	 * the core must be.
36321da177e4SLinus Torvalds 	 */
363393f958f9SDave Chinner 	xfs_inode_to_disk(ip, dip, iip->ili_item.li_lsn);
36341da177e4SLinus Torvalds 
36351da177e4SLinus Torvalds 	/* Wrap, we never let the log put out DI_MAX_FLUSH */
36361da177e4SLinus Torvalds 	if (ip->i_d.di_flushiter == DI_MAX_FLUSH)
36371da177e4SLinus Torvalds 		ip->i_d.di_flushiter = 0;
36381da177e4SLinus Torvalds 
3639005c5db8SDarrick J. Wong 	xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK);
3640005c5db8SDarrick J. Wong 	if (XFS_IFORK_Q(ip))
3641005c5db8SDarrick J. Wong 		xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK);
36421da177e4SLinus Torvalds 	xfs_inobp_check(mp, bp);
36431da177e4SLinus Torvalds 
36441da177e4SLinus Torvalds 	/*
3645f5d8d5c4SChristoph Hellwig 	 * We've recorded everything logged in the inode, so we'd like to clear
3646f5d8d5c4SChristoph Hellwig 	 * the ili_fields bits so we don't log and flush things unnecessarily.
3647f5d8d5c4SChristoph Hellwig 	 * However, we can't stop logging all this information until the data
3648f5d8d5c4SChristoph Hellwig 	 * we've copied into the disk buffer is written to disk.  If we did we
3649f5d8d5c4SChristoph Hellwig 	 * might overwrite the copy of the inode in the log with all the data
3650f5d8d5c4SChristoph Hellwig 	 * after re-logging only part of it, and in the face of a crash we
3651f5d8d5c4SChristoph Hellwig 	 * wouldn't have all the data we need to recover.
36521da177e4SLinus Torvalds 	 *
3653f5d8d5c4SChristoph Hellwig 	 * What we do is move the bits to the ili_last_fields field.  When
3654f5d8d5c4SChristoph Hellwig 	 * logging the inode, these bits are moved back to the ili_fields field.
3655f5d8d5c4SChristoph Hellwig 	 * In the xfs_iflush_done() routine we clear ili_last_fields, since we
3656f5d8d5c4SChristoph Hellwig 	 * know that the information those bits represent is permanently on
3657f5d8d5c4SChristoph Hellwig 	 * disk.  As long as the flush completes before the inode is logged
3658f5d8d5c4SChristoph Hellwig 	 * again, then both ili_fields and ili_last_fields will be cleared.
36591da177e4SLinus Torvalds 	 *
3660f5d8d5c4SChristoph Hellwig 	 * We can play with the ili_fields bits here, because the inode lock
3661f5d8d5c4SChristoph Hellwig 	 * must be held exclusively in order to set bits there and the flush
3662f5d8d5c4SChristoph Hellwig 	 * lock protects the ili_last_fields bits.  Set ili_logged so the flush
3663f5d8d5c4SChristoph Hellwig 	 * done routine can tell whether or not to look in the AIL.  Also, store
3664f5d8d5c4SChristoph Hellwig 	 * the current LSN of the inode so that we can tell whether the item has
3665f5d8d5c4SChristoph Hellwig 	 * moved in the AIL from xfs_iflush_done().  In order to read the lsn we
3666f5d8d5c4SChristoph Hellwig 	 * need the AIL lock, because it is a 64 bit value that cannot be read
3667f5d8d5c4SChristoph Hellwig 	 * atomically.
36681da177e4SLinus Torvalds 	 */
3669f5d8d5c4SChristoph Hellwig 	iip->ili_last_fields = iip->ili_fields;
3670f5d8d5c4SChristoph Hellwig 	iip->ili_fields = 0;
3671fc0561ceSDave Chinner 	iip->ili_fsync_fields = 0;
36721da177e4SLinus Torvalds 	iip->ili_logged = 1;
36731da177e4SLinus Torvalds 
36747b2e2a31SDavid Chinner 	xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
36757b2e2a31SDavid Chinner 				&iip->ili_item.li_lsn);
36761da177e4SLinus Torvalds 
36771da177e4SLinus Torvalds 	/*
36781da177e4SLinus Torvalds 	 * Attach the function xfs_iflush_done to the inode's
36791da177e4SLinus Torvalds 	 * buffer.  This will remove the inode from the AIL
36801da177e4SLinus Torvalds 	 * and unlock the inode's flush lock when the inode is
36811da177e4SLinus Torvalds 	 * completely written to disk.
36821da177e4SLinus Torvalds 	 */
3683ca30b2a7SChristoph Hellwig 	xfs_buf_attach_iodone(bp, xfs_iflush_done, &iip->ili_item);
36841da177e4SLinus Torvalds 
368593848a99SChristoph Hellwig 	/* generate the checksum. */
368693848a99SChristoph Hellwig 	xfs_dinode_calc_crc(mp, dip);
368793848a99SChristoph Hellwig 
3688643c8c05SCarlos Maiolino 	ASSERT(!list_empty(&bp->b_li_list));
3689cb669ca5SChristoph Hellwig 	ASSERT(bp->b_iodone != NULL);
36901da177e4SLinus Torvalds 	return 0;
36911da177e4SLinus Torvalds 
36921da177e4SLinus Torvalds corrupt_out:
36932451337dSDave Chinner 	return -EFSCORRUPTED;
36941da177e4SLinus Torvalds }
3695