xref: /openbmc/linux/fs/xfs/xfs_inode.c (revision 95582b00838837fc07e042979320caf917ce3fe6)
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;
50195afcf5cSDave Chinner 				if (lp && (lp->li_flags & XFS_LI_IN_AIL))
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;
601c24b5dfaSDave Chinner 	if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
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;
776*95582b00SDeepa Dinamani 	struct timespec64 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 	/*
7941da177e4SLinus Torvalds 	 * Get the in-core inode with the lock held exclusively.
7951da177e4SLinus Torvalds 	 * This is because we're setting fields here we need
7961da177e4SLinus Torvalds 	 * to prevent others from looking at until we're done.
7971da177e4SLinus Torvalds 	 */
79893848a99SChristoph Hellwig 	error = xfs_iget(mp, tp, ino, XFS_IGET_CREATE,
799ec3ba85fSChristoph Hellwig 			 XFS_ILOCK_EXCL, &ip);
800bf904248SDavid Chinner 	if (error)
8011da177e4SLinus Torvalds 		return error;
8021da177e4SLinus Torvalds 	ASSERT(ip != NULL);
8033987848cSDave Chinner 	inode = VFS_I(ip);
8041da177e4SLinus Torvalds 
805263997a6SDave Chinner 	/*
806263997a6SDave Chinner 	 * We always convert v1 inodes to v2 now - we only support filesystems
807263997a6SDave Chinner 	 * with >= v2 inode capability, so there is no reason for ever leaving
808263997a6SDave Chinner 	 * an inode in v1 format.
809263997a6SDave Chinner 	 */
810263997a6SDave Chinner 	if (ip->i_d.di_version == 1)
811263997a6SDave Chinner 		ip->i_d.di_version = 2;
812263997a6SDave Chinner 
813c19b3b05SDave Chinner 	inode->i_mode = mode;
81454d7b5c1SDave Chinner 	set_nlink(inode, nlink);
8157aab1b28SDwight Engen 	ip->i_d.di_uid = xfs_kuid_to_uid(current_fsuid());
8167aab1b28SDwight Engen 	ip->i_d.di_gid = xfs_kgid_to_gid(current_fsgid());
81766f36464SChristoph Hellwig 	inode->i_rdev = rdev;
8186743099cSArkadiusz Mi?kiewicz 	xfs_set_projid(ip, prid);
8191da177e4SLinus Torvalds 
820bd186aa9SChristoph Hellwig 	if (pip && XFS_INHERIT_GID(pip)) {
8211da177e4SLinus Torvalds 		ip->i_d.di_gid = pip->i_d.di_gid;
822c19b3b05SDave Chinner 		if ((VFS_I(pip)->i_mode & S_ISGID) && S_ISDIR(mode))
823c19b3b05SDave Chinner 			inode->i_mode |= S_ISGID;
8241da177e4SLinus Torvalds 	}
8251da177e4SLinus Torvalds 
8261da177e4SLinus Torvalds 	/*
8271da177e4SLinus Torvalds 	 * If the group ID of the new file does not match the effective group
8281da177e4SLinus Torvalds 	 * ID or one of the supplementary group IDs, the S_ISGID bit is cleared
8291da177e4SLinus Torvalds 	 * (and only if the irix_sgid_inherit compatibility variable is set).
8301da177e4SLinus Torvalds 	 */
8311da177e4SLinus Torvalds 	if ((irix_sgid_inherit) &&
832c19b3b05SDave Chinner 	    (inode->i_mode & S_ISGID) &&
833c19b3b05SDave Chinner 	    (!in_group_p(xfs_gid_to_kgid(ip->i_d.di_gid))))
834c19b3b05SDave Chinner 		inode->i_mode &= ~S_ISGID;
8351da177e4SLinus Torvalds 
8361da177e4SLinus Torvalds 	ip->i_d.di_size = 0;
8371da177e4SLinus Torvalds 	ip->i_d.di_nextents = 0;
8381da177e4SLinus Torvalds 	ASSERT(ip->i_d.di_nblocks == 0);
839dff35fd4SChristoph Hellwig 
840c2050a45SDeepa Dinamani 	tv = current_time(inode);
8413987848cSDave Chinner 	inode->i_mtime = tv;
8423987848cSDave Chinner 	inode->i_atime = tv;
8433987848cSDave Chinner 	inode->i_ctime = tv;
844dff35fd4SChristoph Hellwig 
8451da177e4SLinus Torvalds 	ip->i_d.di_extsize = 0;
8461da177e4SLinus Torvalds 	ip->i_d.di_dmevmask = 0;
8471da177e4SLinus Torvalds 	ip->i_d.di_dmstate = 0;
8481da177e4SLinus Torvalds 	ip->i_d.di_flags = 0;
84993848a99SChristoph Hellwig 
85093848a99SChristoph Hellwig 	if (ip->i_d.di_version == 3) {
851f0e28280SJeff Layton 		inode_set_iversion(inode, 1);
85293848a99SChristoph Hellwig 		ip->i_d.di_flags2 = 0;
853f7ca3522SDarrick J. Wong 		ip->i_d.di_cowextsize = 0;
854c8ce540dSDarrick J. Wong 		ip->i_d.di_crtime.t_sec = (int32_t)tv.tv_sec;
855c8ce540dSDarrick J. Wong 		ip->i_d.di_crtime.t_nsec = (int32_t)tv.tv_nsec;
85693848a99SChristoph Hellwig 	}
85793848a99SChristoph Hellwig 
85893848a99SChristoph Hellwig 
8591da177e4SLinus Torvalds 	flags = XFS_ILOG_CORE;
8601da177e4SLinus Torvalds 	switch (mode & S_IFMT) {
8611da177e4SLinus Torvalds 	case S_IFIFO:
8621da177e4SLinus Torvalds 	case S_IFCHR:
8631da177e4SLinus Torvalds 	case S_IFBLK:
8641da177e4SLinus Torvalds 	case S_IFSOCK:
8651da177e4SLinus Torvalds 		ip->i_d.di_format = XFS_DINODE_FMT_DEV;
8661da177e4SLinus Torvalds 		ip->i_df.if_flags = 0;
8671da177e4SLinus Torvalds 		flags |= XFS_ILOG_DEV;
8681da177e4SLinus Torvalds 		break;
8691da177e4SLinus Torvalds 	case S_IFREG:
8701da177e4SLinus Torvalds 	case S_IFDIR:
871b11f94d5SDavid Chinner 		if (pip && (pip->i_d.di_flags & XFS_DIFLAG_ANY)) {
872365ca83dSNathan Scott 			uint		di_flags = 0;
873365ca83dSNathan Scott 
874abbede1bSAl Viro 			if (S_ISDIR(mode)) {
875365ca83dSNathan Scott 				if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
876365ca83dSNathan Scott 					di_flags |= XFS_DIFLAG_RTINHERIT;
877dd9f438eSNathan Scott 				if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
878dd9f438eSNathan Scott 					di_flags |= XFS_DIFLAG_EXTSZINHERIT;
879dd9f438eSNathan Scott 					ip->i_d.di_extsize = pip->i_d.di_extsize;
880dd9f438eSNathan Scott 				}
8819336e3a7SDave Chinner 				if (pip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
8829336e3a7SDave Chinner 					di_flags |= XFS_DIFLAG_PROJINHERIT;
883abbede1bSAl Viro 			} else if (S_ISREG(mode)) {
884613d7043SChristoph Hellwig 				if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
885365ca83dSNathan Scott 					di_flags |= XFS_DIFLAG_REALTIME;
886dd9f438eSNathan Scott 				if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
887dd9f438eSNathan Scott 					di_flags |= XFS_DIFLAG_EXTSIZE;
888dd9f438eSNathan Scott 					ip->i_d.di_extsize = pip->i_d.di_extsize;
889dd9f438eSNathan Scott 				}
8901da177e4SLinus Torvalds 			}
8911da177e4SLinus Torvalds 			if ((pip->i_d.di_flags & XFS_DIFLAG_NOATIME) &&
8921da177e4SLinus Torvalds 			    xfs_inherit_noatime)
893365ca83dSNathan Scott 				di_flags |= XFS_DIFLAG_NOATIME;
8941da177e4SLinus Torvalds 			if ((pip->i_d.di_flags & XFS_DIFLAG_NODUMP) &&
8951da177e4SLinus Torvalds 			    xfs_inherit_nodump)
896365ca83dSNathan Scott 				di_flags |= XFS_DIFLAG_NODUMP;
8971da177e4SLinus Torvalds 			if ((pip->i_d.di_flags & XFS_DIFLAG_SYNC) &&
8981da177e4SLinus Torvalds 			    xfs_inherit_sync)
899365ca83dSNathan Scott 				di_flags |= XFS_DIFLAG_SYNC;
9001da177e4SLinus Torvalds 			if ((pip->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) &&
9011da177e4SLinus Torvalds 			    xfs_inherit_nosymlinks)
902365ca83dSNathan Scott 				di_flags |= XFS_DIFLAG_NOSYMLINKS;
903d3446eacSBarry Naujok 			if ((pip->i_d.di_flags & XFS_DIFLAG_NODEFRAG) &&
904d3446eacSBarry Naujok 			    xfs_inherit_nodefrag)
905d3446eacSBarry Naujok 				di_flags |= XFS_DIFLAG_NODEFRAG;
9062a82b8beSDavid Chinner 			if (pip->i_d.di_flags & XFS_DIFLAG_FILESTREAM)
9072a82b8beSDavid Chinner 				di_flags |= XFS_DIFLAG_FILESTREAM;
90858f88ca2SDave Chinner 
909365ca83dSNathan Scott 			ip->i_d.di_flags |= di_flags;
9101da177e4SLinus Torvalds 		}
911f7ca3522SDarrick J. Wong 		if (pip &&
912f7ca3522SDarrick J. Wong 		    (pip->i_d.di_flags2 & XFS_DIFLAG2_ANY) &&
913f7ca3522SDarrick J. Wong 		    pip->i_d.di_version == 3 &&
914f7ca3522SDarrick J. Wong 		    ip->i_d.di_version == 3) {
91556bdf855SLukas Czerner 			uint64_t	di_flags2 = 0;
91656bdf855SLukas Czerner 
917f7ca3522SDarrick J. Wong 			if (pip->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE) {
91856bdf855SLukas Czerner 				di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
919f7ca3522SDarrick J. Wong 				ip->i_d.di_cowextsize = pip->i_d.di_cowextsize;
920f7ca3522SDarrick J. Wong 			}
92156bdf855SLukas Czerner 			if (pip->i_d.di_flags2 & XFS_DIFLAG2_DAX)
92256bdf855SLukas Czerner 				di_flags2 |= XFS_DIFLAG2_DAX;
92356bdf855SLukas Czerner 
92456bdf855SLukas Czerner 			ip->i_d.di_flags2 |= di_flags2;
925f7ca3522SDarrick J. Wong 		}
9261da177e4SLinus Torvalds 		/* FALLTHROUGH */
9271da177e4SLinus Torvalds 	case S_IFLNK:
9281da177e4SLinus Torvalds 		ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
9291da177e4SLinus Torvalds 		ip->i_df.if_flags = XFS_IFEXTENTS;
9301da177e4SLinus Torvalds 		ip->i_df.if_bytes = ip->i_df.if_real_bytes = 0;
9316bdcf26aSChristoph Hellwig 		ip->i_df.if_u1.if_root = NULL;
9321da177e4SLinus Torvalds 		break;
9331da177e4SLinus Torvalds 	default:
9341da177e4SLinus Torvalds 		ASSERT(0);
9351da177e4SLinus Torvalds 	}
9361da177e4SLinus Torvalds 	/*
9371da177e4SLinus Torvalds 	 * Attribute fork settings for new inode.
9381da177e4SLinus Torvalds 	 */
9391da177e4SLinus Torvalds 	ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
9401da177e4SLinus Torvalds 	ip->i_d.di_anextents = 0;
9411da177e4SLinus Torvalds 
9421da177e4SLinus Torvalds 	/*
9431da177e4SLinus Torvalds 	 * Log the new values stuffed into the inode.
9441da177e4SLinus Torvalds 	 */
945ddc3415aSChristoph Hellwig 	xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
9461da177e4SLinus Torvalds 	xfs_trans_log_inode(tp, ip, flags);
9471da177e4SLinus Torvalds 
94858c90473SDave Chinner 	/* now that we have an i_mode we can setup the inode structure */
94941be8bedSChristoph Hellwig 	xfs_setup_inode(ip);
9501da177e4SLinus Torvalds 
9511da177e4SLinus Torvalds 	*ipp = ip;
9521da177e4SLinus Torvalds 	return 0;
9531da177e4SLinus Torvalds }
9541da177e4SLinus Torvalds 
955e546cb79SDave Chinner /*
956e546cb79SDave Chinner  * Allocates a new inode from disk and return a pointer to the
957e546cb79SDave Chinner  * incore copy. This routine will internally commit the current
958e546cb79SDave Chinner  * transaction and allocate a new one if the Space Manager needed
959e546cb79SDave Chinner  * to do an allocation to replenish the inode free-list.
960e546cb79SDave Chinner  *
961e546cb79SDave Chinner  * This routine is designed to be called from xfs_create and
962e546cb79SDave Chinner  * xfs_create_dir.
963e546cb79SDave Chinner  *
964e546cb79SDave Chinner  */
965e546cb79SDave Chinner int
966e546cb79SDave Chinner xfs_dir_ialloc(
967e546cb79SDave Chinner 	xfs_trans_t	**tpp,		/* input: current transaction;
968e546cb79SDave Chinner 					   output: may be a new transaction. */
969e546cb79SDave Chinner 	xfs_inode_t	*dp,		/* directory within whose allocate
970e546cb79SDave Chinner 					   the inode. */
971e546cb79SDave Chinner 	umode_t		mode,
972e546cb79SDave Chinner 	xfs_nlink_t	nlink,
97366f36464SChristoph Hellwig 	dev_t		rdev,
974e546cb79SDave Chinner 	prid_t		prid,		/* project id */
975c959025eSChandan Rajendra 	xfs_inode_t	**ipp)		/* pointer to inode; it will be
976e546cb79SDave Chinner 					   locked. */
977e546cb79SDave Chinner {
978e546cb79SDave Chinner 	xfs_trans_t	*tp;
979e546cb79SDave Chinner 	xfs_inode_t	*ip;
980e546cb79SDave Chinner 	xfs_buf_t	*ialloc_context = NULL;
981e546cb79SDave Chinner 	int		code;
982e546cb79SDave Chinner 	void		*dqinfo;
983e546cb79SDave Chinner 	uint		tflags;
984e546cb79SDave Chinner 
985e546cb79SDave Chinner 	tp = *tpp;
986e546cb79SDave Chinner 	ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
987e546cb79SDave Chinner 
988e546cb79SDave Chinner 	/*
989e546cb79SDave Chinner 	 * xfs_ialloc will return a pointer to an incore inode if
990e546cb79SDave Chinner 	 * the Space Manager has an available inode on the free
991e546cb79SDave Chinner 	 * list. Otherwise, it will do an allocation and replenish
992e546cb79SDave Chinner 	 * the freelist.  Since we can only do one allocation per
993e546cb79SDave Chinner 	 * transaction without deadlocks, we will need to commit the
994e546cb79SDave Chinner 	 * current transaction and start a new one.  We will then
995e546cb79SDave Chinner 	 * need to call xfs_ialloc again to get the inode.
996e546cb79SDave Chinner 	 *
997e546cb79SDave Chinner 	 * If xfs_ialloc did an allocation to replenish the freelist,
998e546cb79SDave Chinner 	 * it returns the bp containing the head of the freelist as
999e546cb79SDave Chinner 	 * ialloc_context. We will hold a lock on it across the
1000e546cb79SDave Chinner 	 * transaction commit so that no other process can steal
1001e546cb79SDave Chinner 	 * the inode(s) that we've just allocated.
1002e546cb79SDave Chinner 	 */
1003f59cf5c2SChristoph Hellwig 	code = xfs_ialloc(tp, dp, mode, nlink, rdev, prid, &ialloc_context,
1004f59cf5c2SChristoph Hellwig 			&ip);
1005e546cb79SDave Chinner 
1006e546cb79SDave Chinner 	/*
1007e546cb79SDave Chinner 	 * Return an error if we were unable to allocate a new inode.
1008e546cb79SDave Chinner 	 * This should only happen if we run out of space on disk or
1009e546cb79SDave Chinner 	 * encounter a disk error.
1010e546cb79SDave Chinner 	 */
1011e546cb79SDave Chinner 	if (code) {
1012e546cb79SDave Chinner 		*ipp = NULL;
1013e546cb79SDave Chinner 		return code;
1014e546cb79SDave Chinner 	}
1015e546cb79SDave Chinner 	if (!ialloc_context && !ip) {
1016e546cb79SDave Chinner 		*ipp = NULL;
10172451337dSDave Chinner 		return -ENOSPC;
1018e546cb79SDave Chinner 	}
1019e546cb79SDave Chinner 
1020e546cb79SDave Chinner 	/*
1021e546cb79SDave Chinner 	 * If the AGI buffer is non-NULL, then we were unable to get an
1022e546cb79SDave Chinner 	 * inode in one operation.  We need to commit the current
1023e546cb79SDave Chinner 	 * transaction and call xfs_ialloc() again.  It is guaranteed
1024e546cb79SDave Chinner 	 * to succeed the second time.
1025e546cb79SDave Chinner 	 */
1026e546cb79SDave Chinner 	if (ialloc_context) {
1027e546cb79SDave Chinner 		/*
1028e546cb79SDave Chinner 		 * Normally, xfs_trans_commit releases all the locks.
1029e546cb79SDave Chinner 		 * We call bhold to hang on to the ialloc_context across
1030e546cb79SDave Chinner 		 * the commit.  Holding this buffer prevents any other
1031e546cb79SDave Chinner 		 * processes from doing any allocations in this
1032e546cb79SDave Chinner 		 * allocation group.
1033e546cb79SDave Chinner 		 */
1034e546cb79SDave Chinner 		xfs_trans_bhold(tp, ialloc_context);
1035e546cb79SDave Chinner 
1036e546cb79SDave Chinner 		/*
1037e546cb79SDave Chinner 		 * We want the quota changes to be associated with the next
1038e546cb79SDave Chinner 		 * transaction, NOT this one. So, detach the dqinfo from this
1039e546cb79SDave Chinner 		 * and attach it to the next transaction.
1040e546cb79SDave Chinner 		 */
1041e546cb79SDave Chinner 		dqinfo = NULL;
1042e546cb79SDave Chinner 		tflags = 0;
1043e546cb79SDave Chinner 		if (tp->t_dqinfo) {
1044e546cb79SDave Chinner 			dqinfo = (void *)tp->t_dqinfo;
1045e546cb79SDave Chinner 			tp->t_dqinfo = NULL;
1046e546cb79SDave Chinner 			tflags = tp->t_flags & XFS_TRANS_DQ_DIRTY;
1047e546cb79SDave Chinner 			tp->t_flags &= ~(XFS_TRANS_DQ_DIRTY);
1048e546cb79SDave Chinner 		}
1049e546cb79SDave Chinner 
1050411350dfSChristoph Hellwig 		code = xfs_trans_roll(&tp);
10513d3c8b52SJie Liu 
1052e546cb79SDave Chinner 		/*
1053e546cb79SDave Chinner 		 * Re-attach the quota info that we detached from prev trx.
1054e546cb79SDave Chinner 		 */
1055e546cb79SDave Chinner 		if (dqinfo) {
1056e546cb79SDave Chinner 			tp->t_dqinfo = dqinfo;
1057e546cb79SDave Chinner 			tp->t_flags |= tflags;
1058e546cb79SDave Chinner 		}
1059e546cb79SDave Chinner 
1060e546cb79SDave Chinner 		if (code) {
1061e546cb79SDave Chinner 			xfs_buf_relse(ialloc_context);
10622e6db6c4SChristoph Hellwig 			*tpp = tp;
1063e546cb79SDave Chinner 			*ipp = NULL;
1064e546cb79SDave Chinner 			return code;
1065e546cb79SDave Chinner 		}
1066e546cb79SDave Chinner 		xfs_trans_bjoin(tp, ialloc_context);
1067e546cb79SDave Chinner 
1068e546cb79SDave Chinner 		/*
1069e546cb79SDave Chinner 		 * Call ialloc again. Since we've locked out all
1070e546cb79SDave Chinner 		 * other allocations in this allocation group,
1071e546cb79SDave Chinner 		 * this call should always succeed.
1072e546cb79SDave Chinner 		 */
1073e546cb79SDave Chinner 		code = xfs_ialloc(tp, dp, mode, nlink, rdev, prid,
1074f59cf5c2SChristoph Hellwig 				  &ialloc_context, &ip);
1075e546cb79SDave Chinner 
1076e546cb79SDave Chinner 		/*
1077e546cb79SDave Chinner 		 * If we get an error at this point, return to the caller
1078e546cb79SDave Chinner 		 * so that the current transaction can be aborted.
1079e546cb79SDave Chinner 		 */
1080e546cb79SDave Chinner 		if (code) {
1081e546cb79SDave Chinner 			*tpp = tp;
1082e546cb79SDave Chinner 			*ipp = NULL;
1083e546cb79SDave Chinner 			return code;
1084e546cb79SDave Chinner 		}
1085e546cb79SDave Chinner 		ASSERT(!ialloc_context && ip);
1086e546cb79SDave Chinner 
1087e546cb79SDave Chinner 	}
1088e546cb79SDave Chinner 
1089e546cb79SDave Chinner 	*ipp = ip;
1090e546cb79SDave Chinner 	*tpp = tp;
1091e546cb79SDave Chinner 
1092e546cb79SDave Chinner 	return 0;
1093e546cb79SDave Chinner }
1094e546cb79SDave Chinner 
1095e546cb79SDave Chinner /*
109654d7b5c1SDave Chinner  * Decrement the link count on an inode & log the change.  If this causes the
109754d7b5c1SDave Chinner  * link count to go to zero, move the inode to AGI unlinked list so that it can
109854d7b5c1SDave Chinner  * be freed when the last active reference goes away via xfs_inactive().
1099e546cb79SDave Chinner  */
11000d5a75e9SEric Sandeen static int			/* error */
1101e546cb79SDave Chinner xfs_droplink(
1102e546cb79SDave Chinner 	xfs_trans_t *tp,
1103e546cb79SDave Chinner 	xfs_inode_t *ip)
1104e546cb79SDave Chinner {
1105e546cb79SDave Chinner 	xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1106e546cb79SDave Chinner 
1107e546cb79SDave Chinner 	drop_nlink(VFS_I(ip));
1108e546cb79SDave Chinner 	xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1109e546cb79SDave Chinner 
111054d7b5c1SDave Chinner 	if (VFS_I(ip)->i_nlink)
111154d7b5c1SDave Chinner 		return 0;
111254d7b5c1SDave Chinner 
111354d7b5c1SDave Chinner 	return xfs_iunlink(tp, ip);
1114e546cb79SDave Chinner }
1115e546cb79SDave Chinner 
1116e546cb79SDave Chinner /*
1117e546cb79SDave Chinner  * Increment the link count on an inode & log the change.
1118e546cb79SDave Chinner  */
11190d5a75e9SEric Sandeen static int
1120e546cb79SDave Chinner xfs_bumplink(
1121e546cb79SDave Chinner 	xfs_trans_t *tp,
1122e546cb79SDave Chinner 	xfs_inode_t *ip)
1123e546cb79SDave Chinner {
1124e546cb79SDave Chinner 	xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1125e546cb79SDave Chinner 
1126263997a6SDave Chinner 	ASSERT(ip->i_d.di_version > 1);
1127e546cb79SDave Chinner 	inc_nlink(VFS_I(ip));
1128e546cb79SDave Chinner 	xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1129e546cb79SDave Chinner 	return 0;
1130e546cb79SDave Chinner }
1131e546cb79SDave Chinner 
1132c24b5dfaSDave Chinner int
1133c24b5dfaSDave Chinner xfs_create(
1134c24b5dfaSDave Chinner 	xfs_inode_t		*dp,
1135c24b5dfaSDave Chinner 	struct xfs_name		*name,
1136c24b5dfaSDave Chinner 	umode_t			mode,
113766f36464SChristoph Hellwig 	dev_t			rdev,
1138c24b5dfaSDave Chinner 	xfs_inode_t		**ipp)
1139c24b5dfaSDave Chinner {
1140c24b5dfaSDave Chinner 	int			is_dir = S_ISDIR(mode);
1141c24b5dfaSDave Chinner 	struct xfs_mount	*mp = dp->i_mount;
1142c24b5dfaSDave Chinner 	struct xfs_inode	*ip = NULL;
1143c24b5dfaSDave Chinner 	struct xfs_trans	*tp = NULL;
1144c24b5dfaSDave Chinner 	int			error;
11452c3234d1SDarrick J. Wong 	struct xfs_defer_ops	dfops;
1146c24b5dfaSDave Chinner 	xfs_fsblock_t		first_block;
1147c24b5dfaSDave Chinner 	bool                    unlock_dp_on_error = false;
1148c24b5dfaSDave Chinner 	prid_t			prid;
1149c24b5dfaSDave Chinner 	struct xfs_dquot	*udqp = NULL;
1150c24b5dfaSDave Chinner 	struct xfs_dquot	*gdqp = NULL;
1151c24b5dfaSDave Chinner 	struct xfs_dquot	*pdqp = NULL;
1152062647a8SBrian Foster 	struct xfs_trans_res	*tres;
1153c24b5dfaSDave Chinner 	uint			resblks;
1154c24b5dfaSDave Chinner 
1155c24b5dfaSDave Chinner 	trace_xfs_create(dp, name);
1156c24b5dfaSDave Chinner 
1157c24b5dfaSDave Chinner 	if (XFS_FORCED_SHUTDOWN(mp))
11582451337dSDave Chinner 		return -EIO;
1159c24b5dfaSDave Chinner 
1160163467d3SZhi Yong Wu 	prid = xfs_get_initial_prid(dp);
1161c24b5dfaSDave Chinner 
1162c24b5dfaSDave Chinner 	/*
1163c24b5dfaSDave Chinner 	 * Make sure that we have allocated dquot(s) on disk.
1164c24b5dfaSDave Chinner 	 */
11657aab1b28SDwight Engen 	error = xfs_qm_vop_dqalloc(dp, xfs_kuid_to_uid(current_fsuid()),
11667aab1b28SDwight Engen 					xfs_kgid_to_gid(current_fsgid()), prid,
1167c24b5dfaSDave Chinner 					XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT,
1168c24b5dfaSDave Chinner 					&udqp, &gdqp, &pdqp);
1169c24b5dfaSDave Chinner 	if (error)
1170c24b5dfaSDave Chinner 		return error;
1171c24b5dfaSDave Chinner 
1172c24b5dfaSDave Chinner 	if (is_dir) {
1173c24b5dfaSDave Chinner 		resblks = XFS_MKDIR_SPACE_RES(mp, name->len);
1174062647a8SBrian Foster 		tres = &M_RES(mp)->tr_mkdir;
1175c24b5dfaSDave Chinner 	} else {
1176c24b5dfaSDave Chinner 		resblks = XFS_CREATE_SPACE_RES(mp, name->len);
1177062647a8SBrian Foster 		tres = &M_RES(mp)->tr_create;
1178c24b5dfaSDave Chinner 	}
1179c24b5dfaSDave Chinner 
1180c24b5dfaSDave Chinner 	/*
1181c24b5dfaSDave Chinner 	 * Initially assume that the file does not exist and
1182c24b5dfaSDave Chinner 	 * reserve the resources for that case.  If that is not
1183c24b5dfaSDave Chinner 	 * the case we'll drop the one we have and get a more
1184c24b5dfaSDave Chinner 	 * appropriate transaction later.
1185c24b5dfaSDave Chinner 	 */
1186253f4911SChristoph Hellwig 	error = xfs_trans_alloc(mp, tres, resblks, 0, 0, &tp);
11872451337dSDave Chinner 	if (error == -ENOSPC) {
1188c24b5dfaSDave Chinner 		/* flush outstanding delalloc blocks and retry */
1189c24b5dfaSDave Chinner 		xfs_flush_inodes(mp);
1190253f4911SChristoph Hellwig 		error = xfs_trans_alloc(mp, tres, resblks, 0, 0, &tp);
1191c24b5dfaSDave Chinner 	}
11924906e215SChristoph Hellwig 	if (error)
1193253f4911SChristoph Hellwig 		goto out_release_inode;
1194c24b5dfaSDave Chinner 
119565523218SChristoph Hellwig 	xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
1196c24b5dfaSDave Chinner 	unlock_dp_on_error = true;
1197c24b5dfaSDave Chinner 
11982c3234d1SDarrick J. Wong 	xfs_defer_init(&dfops, &first_block);
1199c24b5dfaSDave Chinner 
1200c24b5dfaSDave Chinner 	/*
1201c24b5dfaSDave Chinner 	 * Reserve disk quota and the inode.
1202c24b5dfaSDave Chinner 	 */
1203c24b5dfaSDave Chinner 	error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp,
1204c24b5dfaSDave Chinner 						pdqp, resblks, 1, 0);
1205c24b5dfaSDave Chinner 	if (error)
1206c24b5dfaSDave Chinner 		goto out_trans_cancel;
1207c24b5dfaSDave Chinner 
1208c24b5dfaSDave Chinner 	/*
1209c24b5dfaSDave Chinner 	 * A newly created regular or special file just has one directory
1210c24b5dfaSDave Chinner 	 * entry pointing to them, but a directory also the "." entry
1211c24b5dfaSDave Chinner 	 * pointing to itself.
1212c24b5dfaSDave Chinner 	 */
1213c959025eSChandan Rajendra 	error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev, prid, &ip);
1214d6077aa3SJan Kara 	if (error)
1215c24b5dfaSDave Chinner 		goto out_trans_cancel;
1216c24b5dfaSDave Chinner 
1217c24b5dfaSDave Chinner 	/*
1218c24b5dfaSDave Chinner 	 * Now we join the directory inode to the transaction.  We do not do it
1219c24b5dfaSDave Chinner 	 * earlier because xfs_dir_ialloc might commit the previous transaction
1220c24b5dfaSDave Chinner 	 * (and release all the locks).  An error from here on will result in
1221c24b5dfaSDave Chinner 	 * the transaction cancel unlocking dp so don't do it explicitly in the
1222c24b5dfaSDave Chinner 	 * error path.
1223c24b5dfaSDave Chinner 	 */
122465523218SChristoph Hellwig 	xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
1225c24b5dfaSDave Chinner 	unlock_dp_on_error = false;
1226c24b5dfaSDave Chinner 
1227c24b5dfaSDave Chinner 	error = xfs_dir_createname(tp, dp, name, ip->i_ino,
12282c3234d1SDarrick J. Wong 					&first_block, &dfops, resblks ?
1229c24b5dfaSDave Chinner 					resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
1230c24b5dfaSDave Chinner 	if (error) {
12312451337dSDave Chinner 		ASSERT(error != -ENOSPC);
12324906e215SChristoph Hellwig 		goto out_trans_cancel;
1233c24b5dfaSDave Chinner 	}
1234c24b5dfaSDave Chinner 	xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1235c24b5dfaSDave Chinner 	xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1236c24b5dfaSDave Chinner 
1237c24b5dfaSDave Chinner 	if (is_dir) {
1238c24b5dfaSDave Chinner 		error = xfs_dir_init(tp, ip, dp);
1239c24b5dfaSDave Chinner 		if (error)
1240c24b5dfaSDave Chinner 			goto out_bmap_cancel;
1241c24b5dfaSDave Chinner 
1242c24b5dfaSDave Chinner 		error = xfs_bumplink(tp, dp);
1243c24b5dfaSDave Chinner 		if (error)
1244c24b5dfaSDave Chinner 			goto out_bmap_cancel;
1245c24b5dfaSDave Chinner 	}
1246c24b5dfaSDave Chinner 
1247c24b5dfaSDave Chinner 	/*
1248c24b5dfaSDave Chinner 	 * If this is a synchronous mount, make sure that the
1249c24b5dfaSDave Chinner 	 * create transaction goes to disk before returning to
1250c24b5dfaSDave Chinner 	 * the user.
1251c24b5dfaSDave Chinner 	 */
1252c24b5dfaSDave Chinner 	if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
1253c24b5dfaSDave Chinner 		xfs_trans_set_sync(tp);
1254c24b5dfaSDave Chinner 
1255c24b5dfaSDave Chinner 	/*
1256c24b5dfaSDave Chinner 	 * Attach the dquot(s) to the inodes and modify them incore.
1257c24b5dfaSDave Chinner 	 * These ids of the inode couldn't have changed since the new
1258c24b5dfaSDave Chinner 	 * inode has been locked ever since it was created.
1259c24b5dfaSDave Chinner 	 */
1260c24b5dfaSDave Chinner 	xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
1261c24b5dfaSDave Chinner 
12628ad7c629SChristoph Hellwig 	error = xfs_defer_finish(&tp, &dfops);
1263c24b5dfaSDave Chinner 	if (error)
1264c24b5dfaSDave Chinner 		goto out_bmap_cancel;
1265c24b5dfaSDave Chinner 
126670393313SChristoph Hellwig 	error = xfs_trans_commit(tp);
1267c24b5dfaSDave Chinner 	if (error)
1268c24b5dfaSDave Chinner 		goto out_release_inode;
1269c24b5dfaSDave Chinner 
1270c24b5dfaSDave Chinner 	xfs_qm_dqrele(udqp);
1271c24b5dfaSDave Chinner 	xfs_qm_dqrele(gdqp);
1272c24b5dfaSDave Chinner 	xfs_qm_dqrele(pdqp);
1273c24b5dfaSDave Chinner 
1274c24b5dfaSDave Chinner 	*ipp = ip;
1275c24b5dfaSDave Chinner 	return 0;
1276c24b5dfaSDave Chinner 
1277c24b5dfaSDave Chinner  out_bmap_cancel:
12782c3234d1SDarrick J. Wong 	xfs_defer_cancel(&dfops);
1279c24b5dfaSDave Chinner  out_trans_cancel:
12804906e215SChristoph Hellwig 	xfs_trans_cancel(tp);
1281c24b5dfaSDave Chinner  out_release_inode:
1282c24b5dfaSDave Chinner 	/*
128358c90473SDave Chinner 	 * Wait until after the current transaction is aborted to finish the
128458c90473SDave Chinner 	 * setup of the inode and release the inode.  This prevents recursive
128558c90473SDave Chinner 	 * transactions and deadlocks from xfs_inactive.
1286c24b5dfaSDave Chinner 	 */
128758c90473SDave Chinner 	if (ip) {
128858c90473SDave Chinner 		xfs_finish_inode_setup(ip);
1289c24b5dfaSDave Chinner 		IRELE(ip);
129058c90473SDave Chinner 	}
1291c24b5dfaSDave Chinner 
1292c24b5dfaSDave Chinner 	xfs_qm_dqrele(udqp);
1293c24b5dfaSDave Chinner 	xfs_qm_dqrele(gdqp);
1294c24b5dfaSDave Chinner 	xfs_qm_dqrele(pdqp);
1295c24b5dfaSDave Chinner 
1296c24b5dfaSDave Chinner 	if (unlock_dp_on_error)
129765523218SChristoph Hellwig 		xfs_iunlock(dp, XFS_ILOCK_EXCL);
1298c24b5dfaSDave Chinner 	return error;
1299c24b5dfaSDave Chinner }
1300c24b5dfaSDave Chinner 
1301c24b5dfaSDave Chinner int
130299b6436bSZhi Yong Wu xfs_create_tmpfile(
130399b6436bSZhi Yong Wu 	struct xfs_inode	*dp,
1304330033d6SBrian Foster 	umode_t			mode,
1305330033d6SBrian Foster 	struct xfs_inode	**ipp)
130699b6436bSZhi Yong Wu {
130799b6436bSZhi Yong Wu 	struct xfs_mount	*mp = dp->i_mount;
130899b6436bSZhi Yong Wu 	struct xfs_inode	*ip = NULL;
130999b6436bSZhi Yong Wu 	struct xfs_trans	*tp = NULL;
131099b6436bSZhi Yong Wu 	int			error;
131199b6436bSZhi Yong Wu 	prid_t                  prid;
131299b6436bSZhi Yong Wu 	struct xfs_dquot	*udqp = NULL;
131399b6436bSZhi Yong Wu 	struct xfs_dquot	*gdqp = NULL;
131499b6436bSZhi Yong Wu 	struct xfs_dquot	*pdqp = NULL;
131599b6436bSZhi Yong Wu 	struct xfs_trans_res	*tres;
131699b6436bSZhi Yong Wu 	uint			resblks;
131799b6436bSZhi Yong Wu 
131899b6436bSZhi Yong Wu 	if (XFS_FORCED_SHUTDOWN(mp))
13192451337dSDave Chinner 		return -EIO;
132099b6436bSZhi Yong Wu 
132199b6436bSZhi Yong Wu 	prid = xfs_get_initial_prid(dp);
132299b6436bSZhi Yong Wu 
132399b6436bSZhi Yong Wu 	/*
132499b6436bSZhi Yong Wu 	 * Make sure that we have allocated dquot(s) on disk.
132599b6436bSZhi Yong Wu 	 */
132699b6436bSZhi Yong Wu 	error = xfs_qm_vop_dqalloc(dp, xfs_kuid_to_uid(current_fsuid()),
132799b6436bSZhi Yong Wu 				xfs_kgid_to_gid(current_fsgid()), prid,
132899b6436bSZhi Yong Wu 				XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT,
132999b6436bSZhi Yong Wu 				&udqp, &gdqp, &pdqp);
133099b6436bSZhi Yong Wu 	if (error)
133199b6436bSZhi Yong Wu 		return error;
133299b6436bSZhi Yong Wu 
133399b6436bSZhi Yong Wu 	resblks = XFS_IALLOC_SPACE_RES(mp);
133499b6436bSZhi Yong Wu 	tres = &M_RES(mp)->tr_create_tmpfile;
1335253f4911SChristoph Hellwig 
1336253f4911SChristoph Hellwig 	error = xfs_trans_alloc(mp, tres, resblks, 0, 0, &tp);
13374906e215SChristoph Hellwig 	if (error)
1338253f4911SChristoph Hellwig 		goto out_release_inode;
133999b6436bSZhi Yong Wu 
134099b6436bSZhi Yong Wu 	error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp,
134199b6436bSZhi Yong Wu 						pdqp, resblks, 1, 0);
134299b6436bSZhi Yong Wu 	if (error)
134399b6436bSZhi Yong Wu 		goto out_trans_cancel;
134499b6436bSZhi Yong Wu 
1345c959025eSChandan Rajendra 	error = xfs_dir_ialloc(&tp, dp, mode, 1, 0, prid, &ip);
1346d6077aa3SJan Kara 	if (error)
134799b6436bSZhi Yong Wu 		goto out_trans_cancel;
134899b6436bSZhi Yong Wu 
134999b6436bSZhi Yong Wu 	if (mp->m_flags & XFS_MOUNT_WSYNC)
135099b6436bSZhi Yong Wu 		xfs_trans_set_sync(tp);
135199b6436bSZhi Yong Wu 
135299b6436bSZhi Yong Wu 	/*
135399b6436bSZhi Yong Wu 	 * Attach the dquot(s) to the inodes and modify them incore.
135499b6436bSZhi Yong Wu 	 * These ids of the inode couldn't have changed since the new
135599b6436bSZhi Yong Wu 	 * inode has been locked ever since it was created.
135699b6436bSZhi Yong Wu 	 */
135799b6436bSZhi Yong Wu 	xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
135899b6436bSZhi Yong Wu 
135999b6436bSZhi Yong Wu 	error = xfs_iunlink(tp, ip);
136099b6436bSZhi Yong Wu 	if (error)
13614906e215SChristoph Hellwig 		goto out_trans_cancel;
136299b6436bSZhi Yong Wu 
136370393313SChristoph Hellwig 	error = xfs_trans_commit(tp);
136499b6436bSZhi Yong Wu 	if (error)
136599b6436bSZhi Yong Wu 		goto out_release_inode;
136699b6436bSZhi Yong Wu 
136799b6436bSZhi Yong Wu 	xfs_qm_dqrele(udqp);
136899b6436bSZhi Yong Wu 	xfs_qm_dqrele(gdqp);
136999b6436bSZhi Yong Wu 	xfs_qm_dqrele(pdqp);
137099b6436bSZhi Yong Wu 
1371330033d6SBrian Foster 	*ipp = ip;
137299b6436bSZhi Yong Wu 	return 0;
137399b6436bSZhi Yong Wu 
137499b6436bSZhi Yong Wu  out_trans_cancel:
13754906e215SChristoph Hellwig 	xfs_trans_cancel(tp);
137699b6436bSZhi Yong Wu  out_release_inode:
137799b6436bSZhi Yong Wu 	/*
137858c90473SDave Chinner 	 * Wait until after the current transaction is aborted to finish the
137958c90473SDave Chinner 	 * setup of the inode and release the inode.  This prevents recursive
138058c90473SDave Chinner 	 * transactions and deadlocks from xfs_inactive.
138199b6436bSZhi Yong Wu 	 */
138258c90473SDave Chinner 	if (ip) {
138358c90473SDave Chinner 		xfs_finish_inode_setup(ip);
138499b6436bSZhi Yong Wu 		IRELE(ip);
138558c90473SDave Chinner 	}
138699b6436bSZhi Yong Wu 
138799b6436bSZhi Yong Wu 	xfs_qm_dqrele(udqp);
138899b6436bSZhi Yong Wu 	xfs_qm_dqrele(gdqp);
138999b6436bSZhi Yong Wu 	xfs_qm_dqrele(pdqp);
139099b6436bSZhi Yong Wu 
139199b6436bSZhi Yong Wu 	return error;
139299b6436bSZhi Yong Wu }
139399b6436bSZhi Yong Wu 
139499b6436bSZhi Yong Wu int
1395c24b5dfaSDave Chinner xfs_link(
1396c24b5dfaSDave Chinner 	xfs_inode_t		*tdp,
1397c24b5dfaSDave Chinner 	xfs_inode_t		*sip,
1398c24b5dfaSDave Chinner 	struct xfs_name		*target_name)
1399c24b5dfaSDave Chinner {
1400c24b5dfaSDave Chinner 	xfs_mount_t		*mp = tdp->i_mount;
1401c24b5dfaSDave Chinner 	xfs_trans_t		*tp;
1402c24b5dfaSDave Chinner 	int			error;
14032c3234d1SDarrick J. Wong 	struct xfs_defer_ops	dfops;
1404c24b5dfaSDave Chinner 	xfs_fsblock_t           first_block;
1405c24b5dfaSDave Chinner 	int			resblks;
1406c24b5dfaSDave Chinner 
1407c24b5dfaSDave Chinner 	trace_xfs_link(tdp, target_name);
1408c24b5dfaSDave Chinner 
1409c19b3b05SDave Chinner 	ASSERT(!S_ISDIR(VFS_I(sip)->i_mode));
1410c24b5dfaSDave Chinner 
1411c24b5dfaSDave Chinner 	if (XFS_FORCED_SHUTDOWN(mp))
14122451337dSDave Chinner 		return -EIO;
1413c24b5dfaSDave Chinner 
1414c24b5dfaSDave Chinner 	error = xfs_qm_dqattach(sip, 0);
1415c24b5dfaSDave Chinner 	if (error)
1416c24b5dfaSDave Chinner 		goto std_return;
1417c24b5dfaSDave Chinner 
1418c24b5dfaSDave Chinner 	error = xfs_qm_dqattach(tdp, 0);
1419c24b5dfaSDave Chinner 	if (error)
1420c24b5dfaSDave Chinner 		goto std_return;
1421c24b5dfaSDave Chinner 
1422c24b5dfaSDave Chinner 	resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
1423253f4911SChristoph Hellwig 	error = xfs_trans_alloc(mp, &M_RES(mp)->tr_link, resblks, 0, 0, &tp);
14242451337dSDave Chinner 	if (error == -ENOSPC) {
1425c24b5dfaSDave Chinner 		resblks = 0;
1426253f4911SChristoph Hellwig 		error = xfs_trans_alloc(mp, &M_RES(mp)->tr_link, 0, 0, 0, &tp);
1427c24b5dfaSDave Chinner 	}
14284906e215SChristoph Hellwig 	if (error)
1429253f4911SChristoph Hellwig 		goto std_return;
1430c24b5dfaSDave Chinner 
14317c2d238aSDarrick J. Wong 	xfs_lock_two_inodes(sip, XFS_ILOCK_EXCL, tdp, XFS_ILOCK_EXCL);
1432c24b5dfaSDave Chinner 
1433c24b5dfaSDave Chinner 	xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
143465523218SChristoph Hellwig 	xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
1435c24b5dfaSDave Chinner 
1436c24b5dfaSDave Chinner 	/*
1437c24b5dfaSDave Chinner 	 * If we are using project inheritance, we only allow hard link
1438c24b5dfaSDave Chinner 	 * creation in our tree when the project IDs are the same; else
1439c24b5dfaSDave Chinner 	 * the tree quota mechanism could be circumvented.
1440c24b5dfaSDave Chinner 	 */
1441c24b5dfaSDave Chinner 	if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
1442c24b5dfaSDave Chinner 		     (xfs_get_projid(tdp) != xfs_get_projid(sip)))) {
14432451337dSDave Chinner 		error = -EXDEV;
1444c24b5dfaSDave Chinner 		goto error_return;
1445c24b5dfaSDave Chinner 	}
1446c24b5dfaSDave Chinner 
144794f3cad5SEric Sandeen 	if (!resblks) {
144894f3cad5SEric Sandeen 		error = xfs_dir_canenter(tp, tdp, target_name);
1449c24b5dfaSDave Chinner 		if (error)
1450c24b5dfaSDave Chinner 			goto error_return;
145194f3cad5SEric Sandeen 	}
1452c24b5dfaSDave Chinner 
14532c3234d1SDarrick J. Wong 	xfs_defer_init(&dfops, &first_block);
1454c24b5dfaSDave Chinner 
145554d7b5c1SDave Chinner 	/*
145654d7b5c1SDave Chinner 	 * Handle initial link state of O_TMPFILE inode
145754d7b5c1SDave Chinner 	 */
145854d7b5c1SDave Chinner 	if (VFS_I(sip)->i_nlink == 0) {
1459ab297431SZhi Yong Wu 		error = xfs_iunlink_remove(tp, sip);
1460ab297431SZhi Yong Wu 		if (error)
14614906e215SChristoph Hellwig 			goto error_return;
1462ab297431SZhi Yong Wu 	}
1463ab297431SZhi Yong Wu 
1464c24b5dfaSDave Chinner 	error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
14652c3234d1SDarrick J. Wong 					&first_block, &dfops, resblks);
1466c24b5dfaSDave Chinner 	if (error)
14674906e215SChristoph Hellwig 		goto error_return;
1468c24b5dfaSDave Chinner 	xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1469c24b5dfaSDave Chinner 	xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
1470c24b5dfaSDave Chinner 
1471c24b5dfaSDave Chinner 	error = xfs_bumplink(tp, sip);
1472c24b5dfaSDave Chinner 	if (error)
14734906e215SChristoph Hellwig 		goto error_return;
1474c24b5dfaSDave Chinner 
1475c24b5dfaSDave Chinner 	/*
1476c24b5dfaSDave Chinner 	 * If this is a synchronous mount, make sure that the
1477c24b5dfaSDave Chinner 	 * link transaction goes to disk before returning to
1478c24b5dfaSDave Chinner 	 * the user.
1479c24b5dfaSDave Chinner 	 */
1480f6106efaSEric Sandeen 	if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
1481c24b5dfaSDave Chinner 		xfs_trans_set_sync(tp);
1482c24b5dfaSDave Chinner 
14838ad7c629SChristoph Hellwig 	error = xfs_defer_finish(&tp, &dfops);
1484c24b5dfaSDave Chinner 	if (error) {
14852c3234d1SDarrick J. Wong 		xfs_defer_cancel(&dfops);
14864906e215SChristoph Hellwig 		goto error_return;
1487c24b5dfaSDave Chinner 	}
1488c24b5dfaSDave Chinner 
148970393313SChristoph Hellwig 	return xfs_trans_commit(tp);
1490c24b5dfaSDave Chinner 
1491c24b5dfaSDave Chinner  error_return:
14924906e215SChristoph Hellwig 	xfs_trans_cancel(tp);
1493c24b5dfaSDave Chinner  std_return:
1494c24b5dfaSDave Chinner 	return error;
1495c24b5dfaSDave Chinner }
1496c24b5dfaSDave Chinner 
1497363e59baSDarrick J. Wong /* Clear the reflink flag and the cowblocks tag if possible. */
1498363e59baSDarrick J. Wong static void
1499363e59baSDarrick J. Wong xfs_itruncate_clear_reflink_flags(
1500363e59baSDarrick J. Wong 	struct xfs_inode	*ip)
1501363e59baSDarrick J. Wong {
1502363e59baSDarrick J. Wong 	struct xfs_ifork	*dfork;
1503363e59baSDarrick J. Wong 	struct xfs_ifork	*cfork;
1504363e59baSDarrick J. Wong 
1505363e59baSDarrick J. Wong 	if (!xfs_is_reflink_inode(ip))
1506363e59baSDarrick J. Wong 		return;
1507363e59baSDarrick J. Wong 	dfork = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
1508363e59baSDarrick J. Wong 	cfork = XFS_IFORK_PTR(ip, XFS_COW_FORK);
1509363e59baSDarrick J. Wong 	if (dfork->if_bytes == 0 && cfork->if_bytes == 0)
1510363e59baSDarrick J. Wong 		ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
1511363e59baSDarrick J. Wong 	if (cfork->if_bytes == 0)
1512363e59baSDarrick J. Wong 		xfs_inode_clear_cowblocks_tag(ip);
1513363e59baSDarrick J. Wong }
1514363e59baSDarrick J. Wong 
15151da177e4SLinus Torvalds /*
15168f04c47aSChristoph Hellwig  * Free up the underlying blocks past new_size.  The new size must be smaller
15178f04c47aSChristoph Hellwig  * than the current size.  This routine can be used both for the attribute and
15188f04c47aSChristoph Hellwig  * data fork, and does not modify the inode size, which is left to the caller.
15191da177e4SLinus Torvalds  *
1520f6485057SDavid Chinner  * The transaction passed to this routine must have made a permanent log
1521f6485057SDavid Chinner  * reservation of at least XFS_ITRUNCATE_LOG_RES.  This routine may commit the
1522f6485057SDavid Chinner  * given transaction and start new ones, so make sure everything involved in
1523f6485057SDavid Chinner  * the transaction is tidy before calling here.  Some transaction will be
1524f6485057SDavid Chinner  * returned to the caller to be committed.  The incoming transaction must
1525f6485057SDavid Chinner  * already include the inode, and both inode locks must be held exclusively.
1526f6485057SDavid Chinner  * The inode must also be "held" within the transaction.  On return the inode
1527f6485057SDavid Chinner  * will be "held" within the returned transaction.  This routine does NOT
1528f6485057SDavid Chinner  * require any disk space to be reserved for it within the transaction.
15291da177e4SLinus Torvalds  *
1530f6485057SDavid Chinner  * If we get an error, we must return with the inode locked and linked into the
1531f6485057SDavid Chinner  * current transaction. This keeps things simple for the higher level code,
1532f6485057SDavid Chinner  * because it always knows that the inode is locked and held in the transaction
1533f6485057SDavid Chinner  * that returns to it whether errors occur or not.  We don't mark the inode
1534f6485057SDavid Chinner  * dirty on error so that transactions can be easily aborted if possible.
15351da177e4SLinus Torvalds  */
15361da177e4SLinus Torvalds int
15378f04c47aSChristoph Hellwig xfs_itruncate_extents(
15388f04c47aSChristoph Hellwig 	struct xfs_trans	**tpp,
15398f04c47aSChristoph Hellwig 	struct xfs_inode	*ip,
15408f04c47aSChristoph Hellwig 	int			whichfork,
15418f04c47aSChristoph Hellwig 	xfs_fsize_t		new_size)
15421da177e4SLinus Torvalds {
15438f04c47aSChristoph Hellwig 	struct xfs_mount	*mp = ip->i_mount;
15448f04c47aSChristoph Hellwig 	struct xfs_trans	*tp = *tpp;
15452c3234d1SDarrick J. Wong 	struct xfs_defer_ops	dfops;
15461da177e4SLinus Torvalds 	xfs_fsblock_t		first_block;
15471da177e4SLinus Torvalds 	xfs_fileoff_t		first_unmap_block;
15481da177e4SLinus Torvalds 	xfs_fileoff_t		last_block;
15498f04c47aSChristoph Hellwig 	xfs_filblks_t		unmap_len;
15508f04c47aSChristoph Hellwig 	int			error = 0;
15518f04c47aSChristoph Hellwig 	int			done = 0;
15521da177e4SLinus Torvalds 
15530b56185bSChristoph Hellwig 	ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
15540b56185bSChristoph Hellwig 	ASSERT(!atomic_read(&VFS_I(ip)->i_count) ||
15550b56185bSChristoph Hellwig 	       xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1556ce7ae151SChristoph Hellwig 	ASSERT(new_size <= XFS_ISIZE(ip));
15578f04c47aSChristoph Hellwig 	ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
15581da177e4SLinus Torvalds 	ASSERT(ip->i_itemp != NULL);
1559898621d5SChristoph Hellwig 	ASSERT(ip->i_itemp->ili_lock_flags == 0);
15601da177e4SLinus Torvalds 	ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
15611da177e4SLinus Torvalds 
1562673e8e59SChristoph Hellwig 	trace_xfs_itruncate_extents_start(ip, new_size);
1563673e8e59SChristoph Hellwig 
15641da177e4SLinus Torvalds 	/*
15651da177e4SLinus Torvalds 	 * Since it is possible for space to become allocated beyond
15661da177e4SLinus Torvalds 	 * the end of the file (in a crash where the space is allocated
15671da177e4SLinus Torvalds 	 * but the inode size is not yet updated), simply remove any
15681da177e4SLinus Torvalds 	 * blocks which show up between the new EOF and the maximum
15691da177e4SLinus Torvalds 	 * possible file size.  If the first block to be removed is
15701da177e4SLinus Torvalds 	 * beyond the maximum file size (ie it is the same as last_block),
15711da177e4SLinus Torvalds 	 * then there is nothing to do.
15721da177e4SLinus Torvalds 	 */
15738f04c47aSChristoph Hellwig 	first_unmap_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size);
157432972383SDave Chinner 	last_block = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
15758f04c47aSChristoph Hellwig 	if (first_unmap_block == last_block)
15768f04c47aSChristoph Hellwig 		return 0;
15778f04c47aSChristoph Hellwig 
15788f04c47aSChristoph Hellwig 	ASSERT(first_unmap_block < last_block);
15791da177e4SLinus Torvalds 	unmap_len = last_block - first_unmap_block + 1;
15801da177e4SLinus Torvalds 	while (!done) {
15812c3234d1SDarrick J. Wong 		xfs_defer_init(&dfops, &first_block);
15828f04c47aSChristoph Hellwig 		error = xfs_bunmapi(tp, ip,
15833e57ecf6SOlaf Weber 				    first_unmap_block, unmap_len,
15848f04c47aSChristoph Hellwig 				    xfs_bmapi_aflag(whichfork),
15851da177e4SLinus Torvalds 				    XFS_ITRUNC_MAX_EXTENTS,
15862c3234d1SDarrick J. Wong 				    &first_block, &dfops,
1587b4e9181eSChristoph Hellwig 				    &done);
15888f04c47aSChristoph Hellwig 		if (error)
15898f04c47aSChristoph Hellwig 			goto out_bmap_cancel;
15901da177e4SLinus Torvalds 
15911da177e4SLinus Torvalds 		/*
15921da177e4SLinus Torvalds 		 * Duplicate the transaction that has the permanent
15931da177e4SLinus Torvalds 		 * reservation and commit the old transaction.
15941da177e4SLinus Torvalds 		 */
15958ad7c629SChristoph Hellwig 		xfs_defer_ijoin(&dfops, ip);
15968ad7c629SChristoph Hellwig 		error = xfs_defer_finish(&tp, &dfops);
15978f04c47aSChristoph Hellwig 		if (error)
15988f04c47aSChristoph Hellwig 			goto out_bmap_cancel;
15991da177e4SLinus Torvalds 
1600411350dfSChristoph Hellwig 		error = xfs_trans_roll_inode(&tp, ip);
16011da177e4SLinus Torvalds 		if (error)
16028f04c47aSChristoph Hellwig 			goto out;
16031da177e4SLinus Torvalds 	}
16048f04c47aSChristoph Hellwig 
16054919d42aSDarrick J. Wong 	if (whichfork == XFS_DATA_FORK) {
1606aa8968f2SDarrick J. Wong 		/* Remove all pending CoW reservations. */
16074919d42aSDarrick J. Wong 		error = xfs_reflink_cancel_cow_blocks(ip, &tp,
16084919d42aSDarrick J. Wong 				first_unmap_block, last_block, true);
1609aa8968f2SDarrick J. Wong 		if (error)
1610aa8968f2SDarrick J. Wong 			goto out;
1611aa8968f2SDarrick J. Wong 
1612363e59baSDarrick J. Wong 		xfs_itruncate_clear_reflink_flags(ip);
16134919d42aSDarrick J. Wong 	}
1614aa8968f2SDarrick J. Wong 
1615673e8e59SChristoph Hellwig 	/*
1616673e8e59SChristoph Hellwig 	 * Always re-log the inode so that our permanent transaction can keep
1617673e8e59SChristoph Hellwig 	 * on rolling it forward in the log.
1618673e8e59SChristoph Hellwig 	 */
1619673e8e59SChristoph Hellwig 	xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1620673e8e59SChristoph Hellwig 
1621673e8e59SChristoph Hellwig 	trace_xfs_itruncate_extents_end(ip, new_size);
1622673e8e59SChristoph Hellwig 
16238f04c47aSChristoph Hellwig out:
16248f04c47aSChristoph Hellwig 	*tpp = tp;
16258f04c47aSChristoph Hellwig 	return error;
16268f04c47aSChristoph Hellwig out_bmap_cancel:
16271da177e4SLinus Torvalds 	/*
16288f04c47aSChristoph Hellwig 	 * If the bunmapi call encounters an error, return to the caller where
16298f04c47aSChristoph Hellwig 	 * the transaction can be properly aborted.  We just need to make sure
16308f04c47aSChristoph Hellwig 	 * we're not holding any resources that we were not when we came in.
16311da177e4SLinus Torvalds 	 */
16322c3234d1SDarrick J. Wong 	xfs_defer_cancel(&dfops);
16338f04c47aSChristoph Hellwig 	goto out;
16348f04c47aSChristoph Hellwig }
16358f04c47aSChristoph Hellwig 
1636c24b5dfaSDave Chinner int
1637c24b5dfaSDave Chinner xfs_release(
1638c24b5dfaSDave Chinner 	xfs_inode_t	*ip)
1639c24b5dfaSDave Chinner {
1640c24b5dfaSDave Chinner 	xfs_mount_t	*mp = ip->i_mount;
1641c24b5dfaSDave Chinner 	int		error;
1642c24b5dfaSDave Chinner 
1643c19b3b05SDave Chinner 	if (!S_ISREG(VFS_I(ip)->i_mode) || (VFS_I(ip)->i_mode == 0))
1644c24b5dfaSDave Chinner 		return 0;
1645c24b5dfaSDave Chinner 
1646c24b5dfaSDave Chinner 	/* If this is a read-only mount, don't do this (would generate I/O) */
1647c24b5dfaSDave Chinner 	if (mp->m_flags & XFS_MOUNT_RDONLY)
1648c24b5dfaSDave Chinner 		return 0;
1649c24b5dfaSDave Chinner 
1650c24b5dfaSDave Chinner 	if (!XFS_FORCED_SHUTDOWN(mp)) {
1651c24b5dfaSDave Chinner 		int truncated;
1652c24b5dfaSDave Chinner 
1653c24b5dfaSDave Chinner 		/*
1654c24b5dfaSDave Chinner 		 * If we previously truncated this file and removed old data
1655c24b5dfaSDave Chinner 		 * in the process, we want to initiate "early" writeout on
1656c24b5dfaSDave Chinner 		 * the last close.  This is an attempt to combat the notorious
1657c24b5dfaSDave Chinner 		 * NULL files problem which is particularly noticeable from a
1658c24b5dfaSDave Chinner 		 * truncate down, buffered (re-)write (delalloc), followed by
1659c24b5dfaSDave Chinner 		 * a crash.  What we are effectively doing here is
1660c24b5dfaSDave Chinner 		 * significantly reducing the time window where we'd otherwise
1661c24b5dfaSDave Chinner 		 * be exposed to that problem.
1662c24b5dfaSDave Chinner 		 */
1663c24b5dfaSDave Chinner 		truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
1664c24b5dfaSDave Chinner 		if (truncated) {
1665c24b5dfaSDave Chinner 			xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE);
1666eac152b4SDave Chinner 			if (ip->i_delayed_blks > 0) {
16672451337dSDave Chinner 				error = filemap_flush(VFS_I(ip)->i_mapping);
1668c24b5dfaSDave Chinner 				if (error)
1669c24b5dfaSDave Chinner 					return error;
1670c24b5dfaSDave Chinner 			}
1671c24b5dfaSDave Chinner 		}
1672c24b5dfaSDave Chinner 	}
1673c24b5dfaSDave Chinner 
167454d7b5c1SDave Chinner 	if (VFS_I(ip)->i_nlink == 0)
1675c24b5dfaSDave Chinner 		return 0;
1676c24b5dfaSDave Chinner 
1677c24b5dfaSDave Chinner 	if (xfs_can_free_eofblocks(ip, false)) {
1678c24b5dfaSDave Chinner 
1679c24b5dfaSDave Chinner 		/*
1680a36b9261SBrian Foster 		 * Check if the inode is being opened, written and closed
1681a36b9261SBrian Foster 		 * frequently and we have delayed allocation blocks outstanding
1682a36b9261SBrian Foster 		 * (e.g. streaming writes from the NFS server), truncating the
1683a36b9261SBrian Foster 		 * blocks past EOF will cause fragmentation to occur.
1684a36b9261SBrian Foster 		 *
1685a36b9261SBrian Foster 		 * In this case don't do the truncation, but we have to be
1686a36b9261SBrian Foster 		 * careful how we detect this case. Blocks beyond EOF show up as
1687a36b9261SBrian Foster 		 * i_delayed_blks even when the inode is clean, so we need to
1688a36b9261SBrian Foster 		 * truncate them away first before checking for a dirty release.
1689a36b9261SBrian Foster 		 * Hence on the first dirty close we will still remove the
1690a36b9261SBrian Foster 		 * speculative allocation, but after that we will leave it in
1691a36b9261SBrian Foster 		 * place.
1692a36b9261SBrian Foster 		 */
1693a36b9261SBrian Foster 		if (xfs_iflags_test(ip, XFS_IDIRTY_RELEASE))
1694a36b9261SBrian Foster 			return 0;
1695a36b9261SBrian Foster 		/*
1696c24b5dfaSDave Chinner 		 * If we can't get the iolock just skip truncating the blocks
1697c24b5dfaSDave Chinner 		 * past EOF because we could deadlock with the mmap_sem
1698c24b5dfaSDave Chinner 		 * otherwise. We'll get another chance to drop them once the
1699c24b5dfaSDave Chinner 		 * last reference to the inode is dropped, so we'll never leak
1700c24b5dfaSDave Chinner 		 * blocks permanently.
1701c24b5dfaSDave Chinner 		 */
1702a36b9261SBrian Foster 		if (xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) {
1703a36b9261SBrian Foster 			error = xfs_free_eofblocks(ip);
1704a36b9261SBrian Foster 			xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1705a36b9261SBrian Foster 			if (error)
1706c24b5dfaSDave Chinner 				return error;
1707a36b9261SBrian Foster 		}
1708c24b5dfaSDave Chinner 
1709c24b5dfaSDave Chinner 		/* delalloc blocks after truncation means it really is dirty */
1710c24b5dfaSDave Chinner 		if (ip->i_delayed_blks)
1711c24b5dfaSDave Chinner 			xfs_iflags_set(ip, XFS_IDIRTY_RELEASE);
1712c24b5dfaSDave Chinner 	}
1713c24b5dfaSDave Chinner 	return 0;
1714c24b5dfaSDave Chinner }
1715c24b5dfaSDave Chinner 
1716c24b5dfaSDave Chinner /*
1717f7be2d7fSBrian Foster  * xfs_inactive_truncate
1718f7be2d7fSBrian Foster  *
1719f7be2d7fSBrian Foster  * Called to perform a truncate when an inode becomes unlinked.
1720f7be2d7fSBrian Foster  */
1721f7be2d7fSBrian Foster STATIC int
1722f7be2d7fSBrian Foster xfs_inactive_truncate(
1723f7be2d7fSBrian Foster 	struct xfs_inode *ip)
1724f7be2d7fSBrian Foster {
1725f7be2d7fSBrian Foster 	struct xfs_mount	*mp = ip->i_mount;
1726f7be2d7fSBrian Foster 	struct xfs_trans	*tp;
1727f7be2d7fSBrian Foster 	int			error;
1728f7be2d7fSBrian Foster 
1729253f4911SChristoph Hellwig 	error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0, &tp);
1730f7be2d7fSBrian Foster 	if (error) {
1731f7be2d7fSBrian Foster 		ASSERT(XFS_FORCED_SHUTDOWN(mp));
1732f7be2d7fSBrian Foster 		return error;
1733f7be2d7fSBrian Foster 	}
1734f7be2d7fSBrian Foster 
1735f7be2d7fSBrian Foster 	xfs_ilock(ip, XFS_ILOCK_EXCL);
1736f7be2d7fSBrian Foster 	xfs_trans_ijoin(tp, ip, 0);
1737f7be2d7fSBrian Foster 
1738f7be2d7fSBrian Foster 	/*
1739f7be2d7fSBrian Foster 	 * Log the inode size first to prevent stale data exposure in the event
1740f7be2d7fSBrian Foster 	 * of a system crash before the truncate completes. See the related
174169bca807SJan Kara 	 * comment in xfs_vn_setattr_size() for details.
1742f7be2d7fSBrian Foster 	 */
1743f7be2d7fSBrian Foster 	ip->i_d.di_size = 0;
1744f7be2d7fSBrian Foster 	xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1745f7be2d7fSBrian Foster 
1746f7be2d7fSBrian Foster 	error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0);
1747f7be2d7fSBrian Foster 	if (error)
1748f7be2d7fSBrian Foster 		goto error_trans_cancel;
1749f7be2d7fSBrian Foster 
1750f7be2d7fSBrian Foster 	ASSERT(ip->i_d.di_nextents == 0);
1751f7be2d7fSBrian Foster 
175270393313SChristoph Hellwig 	error = xfs_trans_commit(tp);
1753f7be2d7fSBrian Foster 	if (error)
1754f7be2d7fSBrian Foster 		goto error_unlock;
1755f7be2d7fSBrian Foster 
1756f7be2d7fSBrian Foster 	xfs_iunlock(ip, XFS_ILOCK_EXCL);
1757f7be2d7fSBrian Foster 	return 0;
1758f7be2d7fSBrian Foster 
1759f7be2d7fSBrian Foster error_trans_cancel:
17604906e215SChristoph Hellwig 	xfs_trans_cancel(tp);
1761f7be2d7fSBrian Foster error_unlock:
1762f7be2d7fSBrian Foster 	xfs_iunlock(ip, XFS_ILOCK_EXCL);
1763f7be2d7fSBrian Foster 	return error;
1764f7be2d7fSBrian Foster }
1765f7be2d7fSBrian Foster 
1766f7be2d7fSBrian Foster /*
176788877d2bSBrian Foster  * xfs_inactive_ifree()
176888877d2bSBrian Foster  *
176988877d2bSBrian Foster  * Perform the inode free when an inode is unlinked.
177088877d2bSBrian Foster  */
177188877d2bSBrian Foster STATIC int
177288877d2bSBrian Foster xfs_inactive_ifree(
177388877d2bSBrian Foster 	struct xfs_inode *ip)
177488877d2bSBrian Foster {
17752c3234d1SDarrick J. Wong 	struct xfs_defer_ops	dfops;
177688877d2bSBrian Foster 	xfs_fsblock_t		first_block;
177788877d2bSBrian Foster 	struct xfs_mount	*mp = ip->i_mount;
177888877d2bSBrian Foster 	struct xfs_trans	*tp;
177988877d2bSBrian Foster 	int			error;
178088877d2bSBrian Foster 
17819d43b180SBrian Foster 	/*
178276d771b4SChristoph Hellwig 	 * We try to use a per-AG reservation for any block needed by the finobt
178376d771b4SChristoph Hellwig 	 * tree, but as the finobt feature predates the per-AG reservation
178476d771b4SChristoph Hellwig 	 * support a degraded file system might not have enough space for the
178576d771b4SChristoph Hellwig 	 * reservation at mount time.  In that case try to dip into the reserved
178676d771b4SChristoph Hellwig 	 * pool and pray.
17879d43b180SBrian Foster 	 *
17889d43b180SBrian Foster 	 * Send a warning if the reservation does happen to fail, as the inode
17899d43b180SBrian Foster 	 * now remains allocated and sits on the unlinked list until the fs is
17909d43b180SBrian Foster 	 * repaired.
17919d43b180SBrian Foster 	 */
179276d771b4SChristoph Hellwig 	if (unlikely(mp->m_inotbt_nores)) {
1793253f4911SChristoph Hellwig 		error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ifree,
179476d771b4SChristoph Hellwig 				XFS_IFREE_SPACE_RES(mp), 0, XFS_TRANS_RESERVE,
179576d771b4SChristoph Hellwig 				&tp);
179676d771b4SChristoph Hellwig 	} else {
179776d771b4SChristoph Hellwig 		error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ifree, 0, 0, 0, &tp);
179876d771b4SChristoph Hellwig 	}
179988877d2bSBrian Foster 	if (error) {
18002451337dSDave Chinner 		if (error == -ENOSPC) {
18019d43b180SBrian Foster 			xfs_warn_ratelimited(mp,
18029d43b180SBrian Foster 			"Failed to remove inode(s) from unlinked list. "
18039d43b180SBrian Foster 			"Please free space, unmount and run xfs_repair.");
18049d43b180SBrian Foster 		} else {
180588877d2bSBrian Foster 			ASSERT(XFS_FORCED_SHUTDOWN(mp));
18069d43b180SBrian Foster 		}
180788877d2bSBrian Foster 		return error;
180888877d2bSBrian Foster 	}
180988877d2bSBrian Foster 
181088877d2bSBrian Foster 	xfs_ilock(ip, XFS_ILOCK_EXCL);
181188877d2bSBrian Foster 	xfs_trans_ijoin(tp, ip, 0);
181288877d2bSBrian Foster 
18132c3234d1SDarrick J. Wong 	xfs_defer_init(&dfops, &first_block);
18142c3234d1SDarrick J. Wong 	error = xfs_ifree(tp, ip, &dfops);
181588877d2bSBrian Foster 	if (error) {
181688877d2bSBrian Foster 		/*
181788877d2bSBrian Foster 		 * If we fail to free the inode, shut down.  The cancel
181888877d2bSBrian Foster 		 * might do that, we need to make sure.  Otherwise the
181988877d2bSBrian Foster 		 * inode might be lost for a long time or forever.
182088877d2bSBrian Foster 		 */
182188877d2bSBrian Foster 		if (!XFS_FORCED_SHUTDOWN(mp)) {
182288877d2bSBrian Foster 			xfs_notice(mp, "%s: xfs_ifree returned error %d",
182388877d2bSBrian Foster 				__func__, error);
182488877d2bSBrian Foster 			xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
182588877d2bSBrian Foster 		}
18264906e215SChristoph Hellwig 		xfs_trans_cancel(tp);
182788877d2bSBrian Foster 		xfs_iunlock(ip, XFS_ILOCK_EXCL);
182888877d2bSBrian Foster 		return error;
182988877d2bSBrian Foster 	}
183088877d2bSBrian Foster 
183188877d2bSBrian Foster 	/*
183288877d2bSBrian Foster 	 * Credit the quota account(s). The inode is gone.
183388877d2bSBrian Foster 	 */
183488877d2bSBrian Foster 	xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
183588877d2bSBrian Foster 
183688877d2bSBrian Foster 	/*
1837d4a97a04SBrian Foster 	 * Just ignore errors at this point.  There is nothing we can do except
1838d4a97a04SBrian Foster 	 * to try to keep going. Make sure it's not a silent error.
183988877d2bSBrian Foster 	 */
18408ad7c629SChristoph Hellwig 	error = xfs_defer_finish(&tp, &dfops);
1841d4a97a04SBrian Foster 	if (error) {
1842310a75a3SDarrick J. Wong 		xfs_notice(mp, "%s: xfs_defer_finish returned error %d",
184388877d2bSBrian Foster 			__func__, error);
18442c3234d1SDarrick J. Wong 		xfs_defer_cancel(&dfops);
1845d4a97a04SBrian Foster 	}
184670393313SChristoph Hellwig 	error = xfs_trans_commit(tp);
184788877d2bSBrian Foster 	if (error)
184888877d2bSBrian Foster 		xfs_notice(mp, "%s: xfs_trans_commit returned error %d",
184988877d2bSBrian Foster 			__func__, error);
185088877d2bSBrian Foster 
185188877d2bSBrian Foster 	xfs_iunlock(ip, XFS_ILOCK_EXCL);
185288877d2bSBrian Foster 	return 0;
185388877d2bSBrian Foster }
185488877d2bSBrian Foster 
185588877d2bSBrian Foster /*
1856c24b5dfaSDave Chinner  * xfs_inactive
1857c24b5dfaSDave Chinner  *
1858c24b5dfaSDave Chinner  * This is called when the vnode reference count for the vnode
1859c24b5dfaSDave Chinner  * goes to zero.  If the file has been unlinked, then it must
1860c24b5dfaSDave Chinner  * now be truncated.  Also, we clear all of the read-ahead state
1861c24b5dfaSDave Chinner  * kept for the inode here since the file is now closed.
1862c24b5dfaSDave Chinner  */
186374564fb4SBrian Foster void
1864c24b5dfaSDave Chinner xfs_inactive(
1865c24b5dfaSDave Chinner 	xfs_inode_t	*ip)
1866c24b5dfaSDave Chinner {
18673d3c8b52SJie Liu 	struct xfs_mount	*mp;
18686231848cSDarrick J. Wong 	struct xfs_ifork	*cow_ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
1869c24b5dfaSDave Chinner 	int			error;
1870c24b5dfaSDave Chinner 	int			truncate = 0;
1871c24b5dfaSDave Chinner 
1872c24b5dfaSDave Chinner 	/*
1873c24b5dfaSDave Chinner 	 * If the inode is already free, then there can be nothing
1874c24b5dfaSDave Chinner 	 * to clean up here.
1875c24b5dfaSDave Chinner 	 */
1876c19b3b05SDave Chinner 	if (VFS_I(ip)->i_mode == 0) {
1877c24b5dfaSDave Chinner 		ASSERT(ip->i_df.if_real_bytes == 0);
1878c24b5dfaSDave Chinner 		ASSERT(ip->i_df.if_broot_bytes == 0);
187974564fb4SBrian Foster 		return;
1880c24b5dfaSDave Chinner 	}
1881c24b5dfaSDave Chinner 
1882c24b5dfaSDave Chinner 	mp = ip->i_mount;
188317c12bcdSDarrick J. Wong 	ASSERT(!xfs_iflags_test(ip, XFS_IRECOVERY));
1884c24b5dfaSDave Chinner 
1885c24b5dfaSDave Chinner 	/* If this is a read-only mount, don't do this (would generate I/O) */
1886c24b5dfaSDave Chinner 	if (mp->m_flags & XFS_MOUNT_RDONLY)
188774564fb4SBrian Foster 		return;
1888c24b5dfaSDave Chinner 
18896231848cSDarrick J. Wong 	/* Try to clean out the cow blocks if there are any. */
18906231848cSDarrick J. Wong 	if (xfs_is_reflink_inode(ip) && cow_ifp->if_bytes > 0)
18916231848cSDarrick J. Wong 		xfs_reflink_cancel_cow_range(ip, 0, NULLFILEOFF, true);
18926231848cSDarrick J. Wong 
189354d7b5c1SDave Chinner 	if (VFS_I(ip)->i_nlink != 0) {
1894c24b5dfaSDave Chinner 		/*
1895c24b5dfaSDave Chinner 		 * force is true because we are evicting an inode from the
1896c24b5dfaSDave Chinner 		 * cache. Post-eof blocks must be freed, lest we end up with
1897c24b5dfaSDave Chinner 		 * broken free space accounting.
18983b4683c2SBrian Foster 		 *
18993b4683c2SBrian Foster 		 * Note: don't bother with iolock here since lockdep complains
19003b4683c2SBrian Foster 		 * about acquiring it in reclaim context. We have the only
19013b4683c2SBrian Foster 		 * reference to the inode at this point anyways.
1902c24b5dfaSDave Chinner 		 */
19033b4683c2SBrian Foster 		if (xfs_can_free_eofblocks(ip, true))
1904a36b9261SBrian Foster 			xfs_free_eofblocks(ip);
190574564fb4SBrian Foster 
190674564fb4SBrian Foster 		return;
1907c24b5dfaSDave Chinner 	}
1908c24b5dfaSDave Chinner 
1909c19b3b05SDave Chinner 	if (S_ISREG(VFS_I(ip)->i_mode) &&
1910c24b5dfaSDave Chinner 	    (ip->i_d.di_size != 0 || XFS_ISIZE(ip) != 0 ||
1911c24b5dfaSDave Chinner 	     ip->i_d.di_nextents > 0 || ip->i_delayed_blks > 0))
1912c24b5dfaSDave Chinner 		truncate = 1;
1913c24b5dfaSDave Chinner 
1914c24b5dfaSDave Chinner 	error = xfs_qm_dqattach(ip, 0);
1915c24b5dfaSDave Chinner 	if (error)
191674564fb4SBrian Foster 		return;
1917c24b5dfaSDave Chinner 
1918c19b3b05SDave Chinner 	if (S_ISLNK(VFS_I(ip)->i_mode))
191936b21ddeSBrian Foster 		error = xfs_inactive_symlink(ip);
1920f7be2d7fSBrian Foster 	else if (truncate)
1921f7be2d7fSBrian Foster 		error = xfs_inactive_truncate(ip);
192236b21ddeSBrian Foster 	if (error)
192374564fb4SBrian Foster 		return;
1924c24b5dfaSDave Chinner 
1925c24b5dfaSDave Chinner 	/*
1926c24b5dfaSDave Chinner 	 * If there are attributes associated with the file then blow them away
1927c24b5dfaSDave Chinner 	 * now.  The code calls a routine that recursively deconstructs the
19286dfe5a04SDave Chinner 	 * attribute fork. If also blows away the in-core attribute fork.
1929c24b5dfaSDave Chinner 	 */
19306dfe5a04SDave Chinner 	if (XFS_IFORK_Q(ip)) {
1931c24b5dfaSDave Chinner 		error = xfs_attr_inactive(ip);
1932c24b5dfaSDave Chinner 		if (error)
193374564fb4SBrian Foster 			return;
1934c24b5dfaSDave Chinner 	}
1935c24b5dfaSDave Chinner 
19366dfe5a04SDave Chinner 	ASSERT(!ip->i_afp);
1937c24b5dfaSDave Chinner 	ASSERT(ip->i_d.di_anextents == 0);
19386dfe5a04SDave Chinner 	ASSERT(ip->i_d.di_forkoff == 0);
1939c24b5dfaSDave Chinner 
1940c24b5dfaSDave Chinner 	/*
1941c24b5dfaSDave Chinner 	 * Free the inode.
1942c24b5dfaSDave Chinner 	 */
194388877d2bSBrian Foster 	error = xfs_inactive_ifree(ip);
1944c24b5dfaSDave Chinner 	if (error)
194574564fb4SBrian Foster 		return;
1946c24b5dfaSDave Chinner 
1947c24b5dfaSDave Chinner 	/*
1948c24b5dfaSDave Chinner 	 * Release the dquots held by inode, if any.
1949c24b5dfaSDave Chinner 	 */
1950c24b5dfaSDave Chinner 	xfs_qm_dqdetach(ip);
1951c24b5dfaSDave Chinner }
1952c24b5dfaSDave Chinner 
19531da177e4SLinus Torvalds /*
195454d7b5c1SDave Chinner  * This is called when the inode's link count goes to 0 or we are creating a
195554d7b5c1SDave Chinner  * tmpfile via O_TMPFILE. In the case of a tmpfile, @ignore_linkcount will be
195654d7b5c1SDave Chinner  * set to true as the link count is dropped to zero by the VFS after we've
195754d7b5c1SDave Chinner  * created the file successfully, so we have to add it to the unlinked list
195854d7b5c1SDave Chinner  * while the link count is non-zero.
195954d7b5c1SDave Chinner  *
196054d7b5c1SDave Chinner  * We place the on-disk inode on a list in the AGI.  It will be pulled from this
196154d7b5c1SDave Chinner  * list when the inode is freed.
19621da177e4SLinus Torvalds  */
196354d7b5c1SDave Chinner STATIC int
19641da177e4SLinus Torvalds xfs_iunlink(
196554d7b5c1SDave Chinner 	struct xfs_trans *tp,
196654d7b5c1SDave Chinner 	struct xfs_inode *ip)
19671da177e4SLinus Torvalds {
196854d7b5c1SDave Chinner 	xfs_mount_t	*mp = tp->t_mountp;
19691da177e4SLinus Torvalds 	xfs_agi_t	*agi;
19701da177e4SLinus Torvalds 	xfs_dinode_t	*dip;
19711da177e4SLinus Torvalds 	xfs_buf_t	*agibp;
19721da177e4SLinus Torvalds 	xfs_buf_t	*ibp;
19731da177e4SLinus Torvalds 	xfs_agino_t	agino;
19741da177e4SLinus Torvalds 	short		bucket_index;
19751da177e4SLinus Torvalds 	int		offset;
19761da177e4SLinus Torvalds 	int		error;
19771da177e4SLinus Torvalds 
1978c19b3b05SDave Chinner 	ASSERT(VFS_I(ip)->i_mode != 0);
19791da177e4SLinus Torvalds 
19801da177e4SLinus Torvalds 	/*
19811da177e4SLinus Torvalds 	 * Get the agi buffer first.  It ensures lock ordering
19821da177e4SLinus Torvalds 	 * on the list.
19831da177e4SLinus Torvalds 	 */
19845e1be0fbSChristoph Hellwig 	error = xfs_read_agi(mp, tp, XFS_INO_TO_AGNO(mp, ip->i_ino), &agibp);
1985859d7182SVlad Apostolov 	if (error)
19861da177e4SLinus Torvalds 		return error;
19871da177e4SLinus Torvalds 	agi = XFS_BUF_TO_AGI(agibp);
19885e1be0fbSChristoph Hellwig 
19891da177e4SLinus Torvalds 	/*
19901da177e4SLinus Torvalds 	 * Get the index into the agi hash table for the
19911da177e4SLinus Torvalds 	 * list this inode will go on.
19921da177e4SLinus Torvalds 	 */
19931da177e4SLinus Torvalds 	agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
19941da177e4SLinus Torvalds 	ASSERT(agino != 0);
19951da177e4SLinus Torvalds 	bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
19961da177e4SLinus Torvalds 	ASSERT(agi->agi_unlinked[bucket_index]);
199716259e7dSChristoph Hellwig 	ASSERT(be32_to_cpu(agi->agi_unlinked[bucket_index]) != agino);
19981da177e4SLinus Torvalds 
199969ef921bSChristoph Hellwig 	if (agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO)) {
20001da177e4SLinus Torvalds 		/*
20011da177e4SLinus Torvalds 		 * There is already another inode in the bucket we need
20021da177e4SLinus Torvalds 		 * to add ourselves to.  Add us at the front of the list.
20031da177e4SLinus Torvalds 		 * Here we put the head pointer into our next pointer,
20041da177e4SLinus Torvalds 		 * and then we fall through to point the head at us.
20051da177e4SLinus Torvalds 		 */
2006475ee413SChristoph Hellwig 		error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
2007475ee413SChristoph Hellwig 				       0, 0);
2008c319b58bSVlad Apostolov 		if (error)
2009c319b58bSVlad Apostolov 			return error;
2010c319b58bSVlad Apostolov 
201169ef921bSChristoph Hellwig 		ASSERT(dip->di_next_unlinked == cpu_to_be32(NULLAGINO));
20121da177e4SLinus Torvalds 		dip->di_next_unlinked = agi->agi_unlinked[bucket_index];
201392bfc6e7SChristoph Hellwig 		offset = ip->i_imap.im_boffset +
20141da177e4SLinus Torvalds 			offsetof(xfs_dinode_t, di_next_unlinked);
20150a32c26eSDave Chinner 
20160a32c26eSDave Chinner 		/* need to recalc the inode CRC if appropriate */
20170a32c26eSDave Chinner 		xfs_dinode_calc_crc(mp, dip);
20180a32c26eSDave Chinner 
20191da177e4SLinus Torvalds 		xfs_trans_inode_buf(tp, ibp);
20201da177e4SLinus Torvalds 		xfs_trans_log_buf(tp, ibp, offset,
20211da177e4SLinus Torvalds 				  (offset + sizeof(xfs_agino_t) - 1));
20221da177e4SLinus Torvalds 		xfs_inobp_check(mp, ibp);
20231da177e4SLinus Torvalds 	}
20241da177e4SLinus Torvalds 
20251da177e4SLinus Torvalds 	/*
20261da177e4SLinus Torvalds 	 * Point the bucket head pointer at the inode being inserted.
20271da177e4SLinus Torvalds 	 */
20281da177e4SLinus Torvalds 	ASSERT(agino != 0);
202916259e7dSChristoph Hellwig 	agi->agi_unlinked[bucket_index] = cpu_to_be32(agino);
20301da177e4SLinus Torvalds 	offset = offsetof(xfs_agi_t, agi_unlinked) +
20311da177e4SLinus Torvalds 		(sizeof(xfs_agino_t) * bucket_index);
20321da177e4SLinus Torvalds 	xfs_trans_log_buf(tp, agibp, offset,
20331da177e4SLinus Torvalds 			  (offset + sizeof(xfs_agino_t) - 1));
20341da177e4SLinus Torvalds 	return 0;
20351da177e4SLinus Torvalds }
20361da177e4SLinus Torvalds 
20371da177e4SLinus Torvalds /*
20381da177e4SLinus Torvalds  * Pull the on-disk inode from the AGI unlinked list.
20391da177e4SLinus Torvalds  */
20401da177e4SLinus Torvalds STATIC int
20411da177e4SLinus Torvalds xfs_iunlink_remove(
20421da177e4SLinus Torvalds 	xfs_trans_t	*tp,
20431da177e4SLinus Torvalds 	xfs_inode_t	*ip)
20441da177e4SLinus Torvalds {
20451da177e4SLinus Torvalds 	xfs_ino_t	next_ino;
20461da177e4SLinus Torvalds 	xfs_mount_t	*mp;
20471da177e4SLinus Torvalds 	xfs_agi_t	*agi;
20481da177e4SLinus Torvalds 	xfs_dinode_t	*dip;
20491da177e4SLinus Torvalds 	xfs_buf_t	*agibp;
20501da177e4SLinus Torvalds 	xfs_buf_t	*ibp;
20511da177e4SLinus Torvalds 	xfs_agnumber_t	agno;
20521da177e4SLinus Torvalds 	xfs_agino_t	agino;
20531da177e4SLinus Torvalds 	xfs_agino_t	next_agino;
20541da177e4SLinus Torvalds 	xfs_buf_t	*last_ibp;
20556fdf8cccSNathan Scott 	xfs_dinode_t	*last_dip = NULL;
20561da177e4SLinus Torvalds 	short		bucket_index;
20576fdf8cccSNathan Scott 	int		offset, last_offset = 0;
20581da177e4SLinus Torvalds 	int		error;
20591da177e4SLinus Torvalds 
20601da177e4SLinus Torvalds 	mp = tp->t_mountp;
20611da177e4SLinus Torvalds 	agno = XFS_INO_TO_AGNO(mp, ip->i_ino);
20621da177e4SLinus Torvalds 
20631da177e4SLinus Torvalds 	/*
20641da177e4SLinus Torvalds 	 * Get the agi buffer first.  It ensures lock ordering
20651da177e4SLinus Torvalds 	 * on the list.
20661da177e4SLinus Torvalds 	 */
20675e1be0fbSChristoph Hellwig 	error = xfs_read_agi(mp, tp, agno, &agibp);
20685e1be0fbSChristoph Hellwig 	if (error)
20691da177e4SLinus Torvalds 		return error;
20705e1be0fbSChristoph Hellwig 
20711da177e4SLinus Torvalds 	agi = XFS_BUF_TO_AGI(agibp);
20725e1be0fbSChristoph Hellwig 
20731da177e4SLinus Torvalds 	/*
20741da177e4SLinus Torvalds 	 * Get the index into the agi hash table for the
20751da177e4SLinus Torvalds 	 * list this inode will go on.
20761da177e4SLinus Torvalds 	 */
20771da177e4SLinus Torvalds 	agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
20781da177e4SLinus Torvalds 	ASSERT(agino != 0);
20791da177e4SLinus Torvalds 	bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
208069ef921bSChristoph Hellwig 	ASSERT(agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO));
20811da177e4SLinus Torvalds 	ASSERT(agi->agi_unlinked[bucket_index]);
20821da177e4SLinus Torvalds 
208316259e7dSChristoph Hellwig 	if (be32_to_cpu(agi->agi_unlinked[bucket_index]) == agino) {
20841da177e4SLinus Torvalds 		/*
2085475ee413SChristoph Hellwig 		 * We're at the head of the list.  Get the inode's on-disk
2086475ee413SChristoph Hellwig 		 * buffer to see if there is anyone after us on the list.
2087475ee413SChristoph Hellwig 		 * Only modify our next pointer if it is not already NULLAGINO.
2088475ee413SChristoph Hellwig 		 * This saves us the overhead of dealing with the buffer when
2089475ee413SChristoph Hellwig 		 * there is no need to change it.
20901da177e4SLinus Torvalds 		 */
2091475ee413SChristoph Hellwig 		error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
2092475ee413SChristoph Hellwig 				       0, 0);
20931da177e4SLinus Torvalds 		if (error) {
2094475ee413SChristoph Hellwig 			xfs_warn(mp, "%s: xfs_imap_to_bp returned error %d.",
20950b932cccSDave Chinner 				__func__, error);
20961da177e4SLinus Torvalds 			return error;
20971da177e4SLinus Torvalds 		}
2098347d1c01SChristoph Hellwig 		next_agino = be32_to_cpu(dip->di_next_unlinked);
20991da177e4SLinus Torvalds 		ASSERT(next_agino != 0);
21001da177e4SLinus Torvalds 		if (next_agino != NULLAGINO) {
2101347d1c01SChristoph Hellwig 			dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
210292bfc6e7SChristoph Hellwig 			offset = ip->i_imap.im_boffset +
21031da177e4SLinus Torvalds 				offsetof(xfs_dinode_t, di_next_unlinked);
21040a32c26eSDave Chinner 
21050a32c26eSDave Chinner 			/* need to recalc the inode CRC if appropriate */
21060a32c26eSDave Chinner 			xfs_dinode_calc_crc(mp, dip);
21070a32c26eSDave Chinner 
21081da177e4SLinus Torvalds 			xfs_trans_inode_buf(tp, ibp);
21091da177e4SLinus Torvalds 			xfs_trans_log_buf(tp, ibp, offset,
21101da177e4SLinus Torvalds 					  (offset + sizeof(xfs_agino_t) - 1));
21111da177e4SLinus Torvalds 			xfs_inobp_check(mp, ibp);
21121da177e4SLinus Torvalds 		} else {
21131da177e4SLinus Torvalds 			xfs_trans_brelse(tp, ibp);
21141da177e4SLinus Torvalds 		}
21151da177e4SLinus Torvalds 		/*
21161da177e4SLinus Torvalds 		 * Point the bucket head pointer at the next inode.
21171da177e4SLinus Torvalds 		 */
21181da177e4SLinus Torvalds 		ASSERT(next_agino != 0);
21191da177e4SLinus Torvalds 		ASSERT(next_agino != agino);
212016259e7dSChristoph Hellwig 		agi->agi_unlinked[bucket_index] = cpu_to_be32(next_agino);
21211da177e4SLinus Torvalds 		offset = offsetof(xfs_agi_t, agi_unlinked) +
21221da177e4SLinus Torvalds 			(sizeof(xfs_agino_t) * bucket_index);
21231da177e4SLinus Torvalds 		xfs_trans_log_buf(tp, agibp, offset,
21241da177e4SLinus Torvalds 				  (offset + sizeof(xfs_agino_t) - 1));
21251da177e4SLinus Torvalds 	} else {
21261da177e4SLinus Torvalds 		/*
21271da177e4SLinus Torvalds 		 * We need to search the list for the inode being freed.
21281da177e4SLinus Torvalds 		 */
212916259e7dSChristoph Hellwig 		next_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]);
21301da177e4SLinus Torvalds 		last_ibp = NULL;
21311da177e4SLinus Torvalds 		while (next_agino != agino) {
2132129dbc9aSChristoph Hellwig 			struct xfs_imap	imap;
2133129dbc9aSChristoph Hellwig 
2134129dbc9aSChristoph Hellwig 			if (last_ibp)
21351da177e4SLinus Torvalds 				xfs_trans_brelse(tp, last_ibp);
2136129dbc9aSChristoph Hellwig 
2137129dbc9aSChristoph Hellwig 			imap.im_blkno = 0;
21381da177e4SLinus Torvalds 			next_ino = XFS_AGINO_TO_INO(mp, agno, next_agino);
2139129dbc9aSChristoph Hellwig 
2140129dbc9aSChristoph Hellwig 			error = xfs_imap(mp, tp, next_ino, &imap, 0);
21411da177e4SLinus Torvalds 			if (error) {
21420b932cccSDave Chinner 				xfs_warn(mp,
2143129dbc9aSChristoph Hellwig 	"%s: xfs_imap returned error %d.",
21440b932cccSDave Chinner 					 __func__, error);
21451da177e4SLinus Torvalds 				return error;
21461da177e4SLinus Torvalds 			}
2147129dbc9aSChristoph Hellwig 
2148129dbc9aSChristoph Hellwig 			error = xfs_imap_to_bp(mp, tp, &imap, &last_dip,
2149129dbc9aSChristoph Hellwig 					       &last_ibp, 0, 0);
2150129dbc9aSChristoph Hellwig 			if (error) {
2151129dbc9aSChristoph Hellwig 				xfs_warn(mp,
2152129dbc9aSChristoph Hellwig 	"%s: xfs_imap_to_bp returned error %d.",
2153129dbc9aSChristoph Hellwig 					__func__, error);
2154129dbc9aSChristoph Hellwig 				return error;
2155129dbc9aSChristoph Hellwig 			}
2156129dbc9aSChristoph Hellwig 
2157129dbc9aSChristoph Hellwig 			last_offset = imap.im_boffset;
2158347d1c01SChristoph Hellwig 			next_agino = be32_to_cpu(last_dip->di_next_unlinked);
21591da177e4SLinus Torvalds 			ASSERT(next_agino != NULLAGINO);
21601da177e4SLinus Torvalds 			ASSERT(next_agino != 0);
21611da177e4SLinus Torvalds 		}
2162475ee413SChristoph Hellwig 
21631da177e4SLinus Torvalds 		/*
2164475ee413SChristoph Hellwig 		 * Now last_ibp points to the buffer previous to us on the
2165475ee413SChristoph Hellwig 		 * unlinked list.  Pull us from the list.
21661da177e4SLinus Torvalds 		 */
2167475ee413SChristoph Hellwig 		error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
2168475ee413SChristoph Hellwig 				       0, 0);
21691da177e4SLinus Torvalds 		if (error) {
2170475ee413SChristoph Hellwig 			xfs_warn(mp, "%s: xfs_imap_to_bp(2) returned error %d.",
21710b932cccSDave Chinner 				__func__, error);
21721da177e4SLinus Torvalds 			return error;
21731da177e4SLinus Torvalds 		}
2174347d1c01SChristoph Hellwig 		next_agino = be32_to_cpu(dip->di_next_unlinked);
21751da177e4SLinus Torvalds 		ASSERT(next_agino != 0);
21761da177e4SLinus Torvalds 		ASSERT(next_agino != agino);
21771da177e4SLinus Torvalds 		if (next_agino != NULLAGINO) {
2178347d1c01SChristoph Hellwig 			dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
217992bfc6e7SChristoph Hellwig 			offset = ip->i_imap.im_boffset +
21801da177e4SLinus Torvalds 				offsetof(xfs_dinode_t, di_next_unlinked);
21810a32c26eSDave Chinner 
21820a32c26eSDave Chinner 			/* need to recalc the inode CRC if appropriate */
21830a32c26eSDave Chinner 			xfs_dinode_calc_crc(mp, dip);
21840a32c26eSDave Chinner 
21851da177e4SLinus Torvalds 			xfs_trans_inode_buf(tp, ibp);
21861da177e4SLinus Torvalds 			xfs_trans_log_buf(tp, ibp, offset,
21871da177e4SLinus Torvalds 					  (offset + sizeof(xfs_agino_t) - 1));
21881da177e4SLinus Torvalds 			xfs_inobp_check(mp, ibp);
21891da177e4SLinus Torvalds 		} else {
21901da177e4SLinus Torvalds 			xfs_trans_brelse(tp, ibp);
21911da177e4SLinus Torvalds 		}
21921da177e4SLinus Torvalds 		/*
21931da177e4SLinus Torvalds 		 * Point the previous inode on the list to the next inode.
21941da177e4SLinus Torvalds 		 */
2195347d1c01SChristoph Hellwig 		last_dip->di_next_unlinked = cpu_to_be32(next_agino);
21961da177e4SLinus Torvalds 		ASSERT(next_agino != 0);
21971da177e4SLinus Torvalds 		offset = last_offset + offsetof(xfs_dinode_t, di_next_unlinked);
21980a32c26eSDave Chinner 
21990a32c26eSDave Chinner 		/* need to recalc the inode CRC if appropriate */
22000a32c26eSDave Chinner 		xfs_dinode_calc_crc(mp, last_dip);
22010a32c26eSDave Chinner 
22021da177e4SLinus Torvalds 		xfs_trans_inode_buf(tp, last_ibp);
22031da177e4SLinus Torvalds 		xfs_trans_log_buf(tp, last_ibp, offset,
22041da177e4SLinus Torvalds 				  (offset + sizeof(xfs_agino_t) - 1));
22051da177e4SLinus Torvalds 		xfs_inobp_check(mp, last_ibp);
22061da177e4SLinus Torvalds 	}
22071da177e4SLinus Torvalds 	return 0;
22081da177e4SLinus Torvalds }
22091da177e4SLinus Torvalds 
22105b3eed75SDave Chinner /*
22110b8182dbSZhi Yong Wu  * A big issue when freeing the inode cluster is that we _cannot_ skip any
22125b3eed75SDave Chinner  * inodes that are in memory - they all must be marked stale and attached to
22135b3eed75SDave Chinner  * the cluster buffer.
22145b3eed75SDave Chinner  */
22152a30f36dSChandra Seetharaman STATIC int
22161da177e4SLinus Torvalds xfs_ifree_cluster(
22171da177e4SLinus Torvalds 	xfs_inode_t		*free_ip,
22181da177e4SLinus Torvalds 	xfs_trans_t		*tp,
221909b56604SBrian Foster 	struct xfs_icluster	*xic)
22201da177e4SLinus Torvalds {
22211da177e4SLinus Torvalds 	xfs_mount_t		*mp = free_ip->i_mount;
22221da177e4SLinus Torvalds 	int			blks_per_cluster;
2223982e939eSJie Liu 	int			inodes_per_cluster;
22241da177e4SLinus Torvalds 	int			nbufs;
22255b257b4aSDave Chinner 	int			i, j;
22263cdaa189SBrian Foster 	int			ioffset;
22271da177e4SLinus Torvalds 	xfs_daddr_t		blkno;
22281da177e4SLinus Torvalds 	xfs_buf_t		*bp;
22295b257b4aSDave Chinner 	xfs_inode_t		*ip;
22301da177e4SLinus Torvalds 	xfs_inode_log_item_t	*iip;
2231643c8c05SCarlos Maiolino 	struct xfs_log_item	*lip;
22325017e97dSDave Chinner 	struct xfs_perag	*pag;
223309b56604SBrian Foster 	xfs_ino_t		inum;
22341da177e4SLinus Torvalds 
223509b56604SBrian Foster 	inum = xic->first_ino;
22365017e97dSDave Chinner 	pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, inum));
2237982e939eSJie Liu 	blks_per_cluster = xfs_icluster_size_fsb(mp);
2238982e939eSJie Liu 	inodes_per_cluster = blks_per_cluster << mp->m_sb.sb_inopblog;
2239126cd105SJie Liu 	nbufs = mp->m_ialloc_blks / blks_per_cluster;
22401da177e4SLinus Torvalds 
2241982e939eSJie Liu 	for (j = 0; j < nbufs; j++, inum += inodes_per_cluster) {
224209b56604SBrian Foster 		/*
224309b56604SBrian Foster 		 * The allocation bitmap tells us which inodes of the chunk were
224409b56604SBrian Foster 		 * physically allocated. Skip the cluster if an inode falls into
224509b56604SBrian Foster 		 * a sparse region.
224609b56604SBrian Foster 		 */
22473cdaa189SBrian Foster 		ioffset = inum - xic->first_ino;
22483cdaa189SBrian Foster 		if ((xic->alloc & XFS_INOBT_MASK(ioffset)) == 0) {
22493cdaa189SBrian Foster 			ASSERT(do_mod(ioffset, inodes_per_cluster) == 0);
225009b56604SBrian Foster 			continue;
225109b56604SBrian Foster 		}
225209b56604SBrian Foster 
22531da177e4SLinus Torvalds 		blkno = XFS_AGB_TO_DADDR(mp, XFS_INO_TO_AGNO(mp, inum),
22541da177e4SLinus Torvalds 					 XFS_INO_TO_AGBNO(mp, inum));
22551da177e4SLinus Torvalds 
22561da177e4SLinus Torvalds 		/*
22575b257b4aSDave Chinner 		 * We obtain and lock the backing buffer first in the process
22585b257b4aSDave Chinner 		 * here, as we have to ensure that any dirty inode that we
22595b257b4aSDave Chinner 		 * can't get the flush lock on is attached to the buffer.
22605b257b4aSDave Chinner 		 * If we scan the in-memory inodes first, then buffer IO can
22615b257b4aSDave Chinner 		 * complete before we get a lock on it, and hence we may fail
22625b257b4aSDave Chinner 		 * to mark all the active inodes on the buffer stale.
22631da177e4SLinus Torvalds 		 */
22641da177e4SLinus Torvalds 		bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno,
2265b6aff29fSDave Chinner 					mp->m_bsize * blks_per_cluster,
2266b6aff29fSDave Chinner 					XBF_UNMAPPED);
22671da177e4SLinus Torvalds 
22682a30f36dSChandra Seetharaman 		if (!bp)
22692451337dSDave Chinner 			return -ENOMEM;
2270b0f539deSDave Chinner 
2271b0f539deSDave Chinner 		/*
2272b0f539deSDave Chinner 		 * This buffer may not have been correctly initialised as we
2273b0f539deSDave Chinner 		 * didn't read it from disk. That's not important because we are
2274b0f539deSDave Chinner 		 * only using to mark the buffer as stale in the log, and to
2275b0f539deSDave Chinner 		 * attach stale cached inodes on it. That means it will never be
2276b0f539deSDave Chinner 		 * dispatched for IO. If it is, we want to know about it, and we
2277b0f539deSDave Chinner 		 * want it to fail. We can acheive this by adding a write
2278b0f539deSDave Chinner 		 * verifier to the buffer.
2279b0f539deSDave Chinner 		 */
22801813dd64SDave Chinner 		 bp->b_ops = &xfs_inode_buf_ops;
2281b0f539deSDave Chinner 
22825b257b4aSDave Chinner 		/*
22835b257b4aSDave Chinner 		 * Walk the inodes already attached to the buffer and mark them
22845b257b4aSDave Chinner 		 * stale. These will all have the flush locks held, so an
22855b3eed75SDave Chinner 		 * in-memory inode walk can't lock them. By marking them all
22865b3eed75SDave Chinner 		 * stale first, we will not attempt to lock them in the loop
22875b3eed75SDave Chinner 		 * below as the XFS_ISTALE flag will be set.
22885b257b4aSDave Chinner 		 */
2289643c8c05SCarlos Maiolino 		list_for_each_entry(lip, &bp->b_li_list, li_bio_list) {
22901da177e4SLinus Torvalds 			if (lip->li_type == XFS_LI_INODE) {
22911da177e4SLinus Torvalds 				iip = (xfs_inode_log_item_t *)lip;
22921da177e4SLinus Torvalds 				ASSERT(iip->ili_logged == 1);
2293ca30b2a7SChristoph Hellwig 				lip->li_cb = xfs_istale_done;
22947b2e2a31SDavid Chinner 				xfs_trans_ail_copy_lsn(mp->m_ail,
22957b2e2a31SDavid Chinner 							&iip->ili_flush_lsn,
22967b2e2a31SDavid Chinner 							&iip->ili_item.li_lsn);
2297e5ffd2bbSDavid Chinner 				xfs_iflags_set(iip->ili_inode, XFS_ISTALE);
22981da177e4SLinus Torvalds 			}
22991da177e4SLinus Torvalds 		}
23001da177e4SLinus Torvalds 
23015b3eed75SDave Chinner 
23025b257b4aSDave Chinner 		/*
23035b257b4aSDave Chinner 		 * For each inode in memory attempt to add it to the inode
23045b257b4aSDave Chinner 		 * buffer and set it up for being staled on buffer IO
23055b257b4aSDave Chinner 		 * completion.  This is safe as we've locked out tail pushing
23065b257b4aSDave Chinner 		 * and flushing by locking the buffer.
23075b257b4aSDave Chinner 		 *
23085b257b4aSDave Chinner 		 * We have already marked every inode that was part of a
23095b257b4aSDave Chinner 		 * transaction stale above, which means there is no point in
23105b257b4aSDave Chinner 		 * even trying to lock them.
23115b257b4aSDave Chinner 		 */
2312982e939eSJie Liu 		for (i = 0; i < inodes_per_cluster; i++) {
23135b3eed75SDave Chinner retry:
23141a3e8f3dSDave Chinner 			rcu_read_lock();
23155b257b4aSDave Chinner 			ip = radix_tree_lookup(&pag->pag_ici_root,
23165b257b4aSDave Chinner 					XFS_INO_TO_AGINO(mp, (inum + i)));
23171da177e4SLinus Torvalds 
23181a3e8f3dSDave Chinner 			/* Inode not in memory, nothing to do */
23191a3e8f3dSDave Chinner 			if (!ip) {
23201a3e8f3dSDave Chinner 				rcu_read_unlock();
23215b257b4aSDave Chinner 				continue;
23225b257b4aSDave Chinner 			}
23235b257b4aSDave Chinner 
23245b3eed75SDave Chinner 			/*
23251a3e8f3dSDave Chinner 			 * because this is an RCU protected lookup, we could
23261a3e8f3dSDave Chinner 			 * find a recently freed or even reallocated inode
23271a3e8f3dSDave Chinner 			 * during the lookup. We need to check under the
23281a3e8f3dSDave Chinner 			 * i_flags_lock for a valid inode here. Skip it if it
23291a3e8f3dSDave Chinner 			 * is not valid, the wrong inode or stale.
23301a3e8f3dSDave Chinner 			 */
23311a3e8f3dSDave Chinner 			spin_lock(&ip->i_flags_lock);
23321a3e8f3dSDave Chinner 			if (ip->i_ino != inum + i ||
23331a3e8f3dSDave Chinner 			    __xfs_iflags_test(ip, XFS_ISTALE)) {
23341a3e8f3dSDave Chinner 				spin_unlock(&ip->i_flags_lock);
23351a3e8f3dSDave Chinner 				rcu_read_unlock();
23361a3e8f3dSDave Chinner 				continue;
23371a3e8f3dSDave Chinner 			}
23381a3e8f3dSDave Chinner 			spin_unlock(&ip->i_flags_lock);
23391a3e8f3dSDave Chinner 
23401a3e8f3dSDave Chinner 			/*
23415b3eed75SDave Chinner 			 * Don't try to lock/unlock the current inode, but we
23425b3eed75SDave Chinner 			 * _cannot_ skip the other inodes that we did not find
23435b3eed75SDave Chinner 			 * in the list attached to the buffer and are not
23445b3eed75SDave Chinner 			 * already marked stale. If we can't lock it, back off
23455b3eed75SDave Chinner 			 * and retry.
23465b3eed75SDave Chinner 			 */
2347f2e9ad21SOmar Sandoval 			if (ip != free_ip) {
2348f2e9ad21SOmar Sandoval 				if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
23491a3e8f3dSDave Chinner 					rcu_read_unlock();
23505b3eed75SDave Chinner 					delay(1);
23515b3eed75SDave Chinner 					goto retry;
23525b257b4aSDave Chinner 				}
2353f2e9ad21SOmar Sandoval 
2354f2e9ad21SOmar Sandoval 				/*
2355f2e9ad21SOmar Sandoval 				 * Check the inode number again in case we're
2356f2e9ad21SOmar Sandoval 				 * racing with freeing in xfs_reclaim_inode().
2357f2e9ad21SOmar Sandoval 				 * See the comments in that function for more
2358f2e9ad21SOmar Sandoval 				 * information as to why the initial check is
2359f2e9ad21SOmar Sandoval 				 * not sufficient.
2360f2e9ad21SOmar Sandoval 				 */
2361f2e9ad21SOmar Sandoval 				if (ip->i_ino != inum + i) {
2362f2e9ad21SOmar Sandoval 					xfs_iunlock(ip, XFS_ILOCK_EXCL);
2363962cc1adSDarrick J. Wong 					rcu_read_unlock();
2364f2e9ad21SOmar Sandoval 					continue;
2365f2e9ad21SOmar Sandoval 				}
2366f2e9ad21SOmar Sandoval 			}
23671a3e8f3dSDave Chinner 			rcu_read_unlock();
23685b257b4aSDave Chinner 
23695b3eed75SDave Chinner 			xfs_iflock(ip);
23705b257b4aSDave Chinner 			xfs_iflags_set(ip, XFS_ISTALE);
23715b257b4aSDave Chinner 
23725b3eed75SDave Chinner 			/*
23735b3eed75SDave Chinner 			 * we don't need to attach clean inodes or those only
23745b3eed75SDave Chinner 			 * with unlogged changes (which we throw away, anyway).
23755b3eed75SDave Chinner 			 */
23765b257b4aSDave Chinner 			iip = ip->i_itemp;
23775b3eed75SDave Chinner 			if (!iip || xfs_inode_clean(ip)) {
23785b257b4aSDave Chinner 				ASSERT(ip != free_ip);
23791da177e4SLinus Torvalds 				xfs_ifunlock(ip);
23801da177e4SLinus Torvalds 				xfs_iunlock(ip, XFS_ILOCK_EXCL);
23811da177e4SLinus Torvalds 				continue;
23821da177e4SLinus Torvalds 			}
23831da177e4SLinus Torvalds 
2384f5d8d5c4SChristoph Hellwig 			iip->ili_last_fields = iip->ili_fields;
2385f5d8d5c4SChristoph Hellwig 			iip->ili_fields = 0;
2386fc0561ceSDave Chinner 			iip->ili_fsync_fields = 0;
23871da177e4SLinus Torvalds 			iip->ili_logged = 1;
23887b2e2a31SDavid Chinner 			xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
23897b2e2a31SDavid Chinner 						&iip->ili_item.li_lsn);
23901da177e4SLinus Torvalds 
2391ca30b2a7SChristoph Hellwig 			xfs_buf_attach_iodone(bp, xfs_istale_done,
2392ca30b2a7SChristoph Hellwig 						  &iip->ili_item);
23935b257b4aSDave Chinner 
23945b257b4aSDave Chinner 			if (ip != free_ip)
23951da177e4SLinus Torvalds 				xfs_iunlock(ip, XFS_ILOCK_EXCL);
23961da177e4SLinus Torvalds 		}
23971da177e4SLinus Torvalds 
23981da177e4SLinus Torvalds 		xfs_trans_stale_inode_buf(tp, bp);
23991da177e4SLinus Torvalds 		xfs_trans_binval(tp, bp);
24001da177e4SLinus Torvalds 	}
24011da177e4SLinus Torvalds 
24025017e97dSDave Chinner 	xfs_perag_put(pag);
24032a30f36dSChandra Seetharaman 	return 0;
24041da177e4SLinus Torvalds }
24051da177e4SLinus Torvalds 
24061da177e4SLinus Torvalds /*
240798c4f78dSDarrick J. Wong  * Free any local-format buffers sitting around before we reset to
240898c4f78dSDarrick J. Wong  * extents format.
240998c4f78dSDarrick J. Wong  */
241098c4f78dSDarrick J. Wong static inline void
241198c4f78dSDarrick J. Wong xfs_ifree_local_data(
241298c4f78dSDarrick J. Wong 	struct xfs_inode	*ip,
241398c4f78dSDarrick J. Wong 	int			whichfork)
241498c4f78dSDarrick J. Wong {
241598c4f78dSDarrick J. Wong 	struct xfs_ifork	*ifp;
241698c4f78dSDarrick J. Wong 
241798c4f78dSDarrick J. Wong 	if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL)
241898c4f78dSDarrick J. Wong 		return;
241998c4f78dSDarrick J. Wong 
242098c4f78dSDarrick J. Wong 	ifp = XFS_IFORK_PTR(ip, whichfork);
242198c4f78dSDarrick J. Wong 	xfs_idata_realloc(ip, -ifp->if_bytes, whichfork);
242298c4f78dSDarrick J. Wong }
242398c4f78dSDarrick J. Wong 
242498c4f78dSDarrick J. Wong /*
24251da177e4SLinus Torvalds  * This is called to return an inode to the inode free list.
24261da177e4SLinus Torvalds  * The inode should already be truncated to 0 length and have
24271da177e4SLinus Torvalds  * no pages associated with it.  This routine also assumes that
24281da177e4SLinus Torvalds  * the inode is already a part of the transaction.
24291da177e4SLinus Torvalds  *
24301da177e4SLinus Torvalds  * The on-disk copy of the inode will have been added to the list
24311da177e4SLinus Torvalds  * of unlinked inodes in the AGI. We need to remove the inode from
24321da177e4SLinus Torvalds  * that list atomically with respect to freeing it here.
24331da177e4SLinus Torvalds  */
24341da177e4SLinus Torvalds int
24351da177e4SLinus Torvalds xfs_ifree(
24361da177e4SLinus Torvalds 	xfs_trans_t	*tp,
24371da177e4SLinus Torvalds 	xfs_inode_t	*ip,
24382c3234d1SDarrick J. Wong 	struct xfs_defer_ops	*dfops)
24391da177e4SLinus Torvalds {
24401da177e4SLinus Torvalds 	int			error;
244109b56604SBrian Foster 	struct xfs_icluster	xic = { 0 };
24421da177e4SLinus Torvalds 
2443579aa9caSChristoph Hellwig 	ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
244454d7b5c1SDave Chinner 	ASSERT(VFS_I(ip)->i_nlink == 0);
24451da177e4SLinus Torvalds 	ASSERT(ip->i_d.di_nextents == 0);
24461da177e4SLinus Torvalds 	ASSERT(ip->i_d.di_anextents == 0);
2447c19b3b05SDave Chinner 	ASSERT(ip->i_d.di_size == 0 || !S_ISREG(VFS_I(ip)->i_mode));
24481da177e4SLinus Torvalds 	ASSERT(ip->i_d.di_nblocks == 0);
24491da177e4SLinus Torvalds 
24501da177e4SLinus Torvalds 	/*
24511da177e4SLinus Torvalds 	 * Pull the on-disk inode from the AGI unlinked list.
24521da177e4SLinus Torvalds 	 */
24531da177e4SLinus Torvalds 	error = xfs_iunlink_remove(tp, ip);
24541baaed8fSDave Chinner 	if (error)
24551da177e4SLinus Torvalds 		return error;
24561da177e4SLinus Torvalds 
24572c3234d1SDarrick J. Wong 	error = xfs_difree(tp, ip->i_ino, dfops, &xic);
24581baaed8fSDave Chinner 	if (error)
24591da177e4SLinus Torvalds 		return error;
24601baaed8fSDave Chinner 
246198c4f78dSDarrick J. Wong 	xfs_ifree_local_data(ip, XFS_DATA_FORK);
246298c4f78dSDarrick J. Wong 	xfs_ifree_local_data(ip, XFS_ATTR_FORK);
246398c4f78dSDarrick J. Wong 
2464c19b3b05SDave Chinner 	VFS_I(ip)->i_mode = 0;		/* mark incore inode as free */
24651da177e4SLinus Torvalds 	ip->i_d.di_flags = 0;
2466beaae8cdSDarrick J. Wong 	ip->i_d.di_flags2 = 0;
24671da177e4SLinus Torvalds 	ip->i_d.di_dmevmask = 0;
24681da177e4SLinus Torvalds 	ip->i_d.di_forkoff = 0;		/* mark the attr fork not in use */
24691da177e4SLinus Torvalds 	ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
24701da177e4SLinus Torvalds 	ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
2471dc1baa71SEric Sandeen 
2472dc1baa71SEric Sandeen 	/* Don't attempt to replay owner changes for a deleted inode */
2473dc1baa71SEric Sandeen 	ip->i_itemp->ili_fields &= ~(XFS_ILOG_AOWNER|XFS_ILOG_DOWNER);
2474dc1baa71SEric Sandeen 
24751da177e4SLinus Torvalds 	/*
24761da177e4SLinus Torvalds 	 * Bump the generation count so no one will be confused
24771da177e4SLinus Torvalds 	 * by reincarnations of this inode.
24781da177e4SLinus Torvalds 	 */
24799e9a2674SDave Chinner 	VFS_I(ip)->i_generation++;
24801da177e4SLinus Torvalds 	xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
24811da177e4SLinus Torvalds 
248209b56604SBrian Foster 	if (xic.deleted)
248309b56604SBrian Foster 		error = xfs_ifree_cluster(ip, tp, &xic);
24841da177e4SLinus Torvalds 
24852a30f36dSChandra Seetharaman 	return error;
24861da177e4SLinus Torvalds }
24871da177e4SLinus Torvalds 
24881da177e4SLinus Torvalds /*
248960ec6783SChristoph Hellwig  * This is called to unpin an inode.  The caller must have the inode locked
249060ec6783SChristoph Hellwig  * in at least shared mode so that the buffer cannot be subsequently pinned
249160ec6783SChristoph Hellwig  * once someone is waiting for it to be unpinned.
24921da177e4SLinus Torvalds  */
249360ec6783SChristoph Hellwig static void
2494f392e631SChristoph Hellwig xfs_iunpin(
249560ec6783SChristoph Hellwig 	struct xfs_inode	*ip)
2496a3f74ffbSDavid Chinner {
2497579aa9caSChristoph Hellwig 	ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
2498a3f74ffbSDavid Chinner 
24994aaf15d1SDave Chinner 	trace_xfs_inode_unpin_nowait(ip, _RET_IP_);
25004aaf15d1SDave Chinner 
2501a3f74ffbSDavid Chinner 	/* Give the log a push to start the unpinning I/O */
2502656de4ffSChristoph Hellwig 	xfs_log_force_lsn(ip->i_mount, ip->i_itemp->ili_last_lsn, 0, NULL);
2503a14a348bSChristoph Hellwig 
2504a3f74ffbSDavid Chinner }
2505a3f74ffbSDavid Chinner 
2506f392e631SChristoph Hellwig static void
2507f392e631SChristoph Hellwig __xfs_iunpin_wait(
2508f392e631SChristoph Hellwig 	struct xfs_inode	*ip)
2509f392e631SChristoph Hellwig {
2510f392e631SChristoph Hellwig 	wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IPINNED_BIT);
2511f392e631SChristoph Hellwig 	DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IPINNED_BIT);
2512f392e631SChristoph Hellwig 
2513f392e631SChristoph Hellwig 	xfs_iunpin(ip);
2514f392e631SChristoph Hellwig 
2515f392e631SChristoph Hellwig 	do {
251621417136SIngo Molnar 		prepare_to_wait(wq, &wait.wq_entry, TASK_UNINTERRUPTIBLE);
2517f392e631SChristoph Hellwig 		if (xfs_ipincount(ip))
2518f392e631SChristoph Hellwig 			io_schedule();
2519f392e631SChristoph Hellwig 	} while (xfs_ipincount(ip));
252021417136SIngo Molnar 	finish_wait(wq, &wait.wq_entry);
2521f392e631SChristoph Hellwig }
2522f392e631SChristoph Hellwig 
2523777df5afSDave Chinner void
25241da177e4SLinus Torvalds xfs_iunpin_wait(
252560ec6783SChristoph Hellwig 	struct xfs_inode	*ip)
25261da177e4SLinus Torvalds {
2527f392e631SChristoph Hellwig 	if (xfs_ipincount(ip))
2528f392e631SChristoph Hellwig 		__xfs_iunpin_wait(ip);
25291da177e4SLinus Torvalds }
25301da177e4SLinus Torvalds 
253127320369SDave Chinner /*
253227320369SDave Chinner  * Removing an inode from the namespace involves removing the directory entry
253327320369SDave Chinner  * and dropping the link count on the inode. Removing the directory entry can
253427320369SDave Chinner  * result in locking an AGF (directory blocks were freed) and removing a link
253527320369SDave Chinner  * count can result in placing the inode on an unlinked list which results in
253627320369SDave Chinner  * locking an AGI.
253727320369SDave Chinner  *
253827320369SDave Chinner  * The big problem here is that we have an ordering constraint on AGF and AGI
253927320369SDave Chinner  * locking - inode allocation locks the AGI, then can allocate a new extent for
254027320369SDave Chinner  * new inodes, locking the AGF after the AGI. Similarly, freeing the inode
254127320369SDave Chinner  * removes the inode from the unlinked list, requiring that we lock the AGI
254227320369SDave Chinner  * first, and then freeing the inode can result in an inode chunk being freed
254327320369SDave Chinner  * and hence freeing disk space requiring that we lock an AGF.
254427320369SDave Chinner  *
254527320369SDave Chinner  * Hence the ordering that is imposed by other parts of the code is AGI before
254627320369SDave Chinner  * AGF. This means we cannot remove the directory entry before we drop the inode
254727320369SDave Chinner  * reference count and put it on the unlinked list as this results in a lock
254827320369SDave Chinner  * order of AGF then AGI, and this can deadlock against inode allocation and
254927320369SDave Chinner  * freeing. Therefore we must drop the link counts before we remove the
255027320369SDave Chinner  * directory entry.
255127320369SDave Chinner  *
255227320369SDave Chinner  * This is still safe from a transactional point of view - it is not until we
2553310a75a3SDarrick J. Wong  * get to xfs_defer_finish() that we have the possibility of multiple
255427320369SDave Chinner  * transactions in this operation. Hence as long as we remove the directory
255527320369SDave Chinner  * entry and drop the link count in the first transaction of the remove
255627320369SDave Chinner  * operation, there are no transactional constraints on the ordering here.
255727320369SDave Chinner  */
2558c24b5dfaSDave Chinner int
2559c24b5dfaSDave Chinner xfs_remove(
2560c24b5dfaSDave Chinner 	xfs_inode_t             *dp,
2561c24b5dfaSDave Chinner 	struct xfs_name		*name,
2562c24b5dfaSDave Chinner 	xfs_inode_t		*ip)
2563c24b5dfaSDave Chinner {
2564c24b5dfaSDave Chinner 	xfs_mount_t		*mp = dp->i_mount;
2565c24b5dfaSDave Chinner 	xfs_trans_t             *tp = NULL;
2566c19b3b05SDave Chinner 	int			is_dir = S_ISDIR(VFS_I(ip)->i_mode);
2567c24b5dfaSDave Chinner 	int                     error = 0;
25682c3234d1SDarrick J. Wong 	struct xfs_defer_ops	dfops;
2569c24b5dfaSDave Chinner 	xfs_fsblock_t           first_block;
2570c24b5dfaSDave Chinner 	uint			resblks;
2571c24b5dfaSDave Chinner 
2572c24b5dfaSDave Chinner 	trace_xfs_remove(dp, name);
2573c24b5dfaSDave Chinner 
2574c24b5dfaSDave Chinner 	if (XFS_FORCED_SHUTDOWN(mp))
25752451337dSDave Chinner 		return -EIO;
2576c24b5dfaSDave Chinner 
2577c24b5dfaSDave Chinner 	error = xfs_qm_dqattach(dp, 0);
2578c24b5dfaSDave Chinner 	if (error)
2579c24b5dfaSDave Chinner 		goto std_return;
2580c24b5dfaSDave Chinner 
2581c24b5dfaSDave Chinner 	error = xfs_qm_dqattach(ip, 0);
2582c24b5dfaSDave Chinner 	if (error)
2583c24b5dfaSDave Chinner 		goto std_return;
2584c24b5dfaSDave Chinner 
2585c24b5dfaSDave Chinner 	/*
2586c24b5dfaSDave Chinner 	 * We try to get the real space reservation first,
2587c24b5dfaSDave Chinner 	 * allowing for directory btree deletion(s) implying
2588c24b5dfaSDave Chinner 	 * possible bmap insert(s).  If we can't get the space
2589c24b5dfaSDave Chinner 	 * reservation then we use 0 instead, and avoid the bmap
2590c24b5dfaSDave Chinner 	 * btree insert(s) in the directory code by, if the bmap
2591c24b5dfaSDave Chinner 	 * insert tries to happen, instead trimming the LAST
2592c24b5dfaSDave Chinner 	 * block from the directory.
2593c24b5dfaSDave Chinner 	 */
2594c24b5dfaSDave Chinner 	resblks = XFS_REMOVE_SPACE_RES(mp);
2595253f4911SChristoph Hellwig 	error = xfs_trans_alloc(mp, &M_RES(mp)->tr_remove, resblks, 0, 0, &tp);
25962451337dSDave Chinner 	if (error == -ENOSPC) {
2597c24b5dfaSDave Chinner 		resblks = 0;
2598253f4911SChristoph Hellwig 		error = xfs_trans_alloc(mp, &M_RES(mp)->tr_remove, 0, 0, 0,
2599253f4911SChristoph Hellwig 				&tp);
2600c24b5dfaSDave Chinner 	}
2601c24b5dfaSDave Chinner 	if (error) {
26022451337dSDave Chinner 		ASSERT(error != -ENOSPC);
2603253f4911SChristoph Hellwig 		goto std_return;
2604c24b5dfaSDave Chinner 	}
2605c24b5dfaSDave Chinner 
26067c2d238aSDarrick J. Wong 	xfs_lock_two_inodes(dp, XFS_ILOCK_EXCL, ip, XFS_ILOCK_EXCL);
2607c24b5dfaSDave Chinner 
260865523218SChristoph Hellwig 	xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2609c24b5dfaSDave Chinner 	xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2610c24b5dfaSDave Chinner 
2611c24b5dfaSDave Chinner 	/*
2612c24b5dfaSDave Chinner 	 * If we're removing a directory perform some additional validation.
2613c24b5dfaSDave Chinner 	 */
2614c24b5dfaSDave Chinner 	if (is_dir) {
261554d7b5c1SDave Chinner 		ASSERT(VFS_I(ip)->i_nlink >= 2);
261654d7b5c1SDave Chinner 		if (VFS_I(ip)->i_nlink != 2) {
26172451337dSDave Chinner 			error = -ENOTEMPTY;
2618c24b5dfaSDave Chinner 			goto out_trans_cancel;
2619c24b5dfaSDave Chinner 		}
2620c24b5dfaSDave Chinner 		if (!xfs_dir_isempty(ip)) {
26212451337dSDave Chinner 			error = -ENOTEMPTY;
2622c24b5dfaSDave Chinner 			goto out_trans_cancel;
2623c24b5dfaSDave Chinner 		}
2624c24b5dfaSDave Chinner 
262527320369SDave Chinner 		/* Drop the link from ip's "..".  */
2626c24b5dfaSDave Chinner 		error = xfs_droplink(tp, dp);
2627c24b5dfaSDave Chinner 		if (error)
262827320369SDave Chinner 			goto out_trans_cancel;
2629c24b5dfaSDave Chinner 
263027320369SDave Chinner 		/* Drop the "." link from ip to self.  */
2631c24b5dfaSDave Chinner 		error = xfs_droplink(tp, ip);
2632c24b5dfaSDave Chinner 		if (error)
263327320369SDave Chinner 			goto out_trans_cancel;
2634c24b5dfaSDave Chinner 	} else {
2635c24b5dfaSDave Chinner 		/*
2636c24b5dfaSDave Chinner 		 * When removing a non-directory we need to log the parent
2637c24b5dfaSDave Chinner 		 * inode here.  For a directory this is done implicitly
2638c24b5dfaSDave Chinner 		 * by the xfs_droplink call for the ".." entry.
2639c24b5dfaSDave Chinner 		 */
2640c24b5dfaSDave Chinner 		xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2641c24b5dfaSDave Chinner 	}
264227320369SDave Chinner 	xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2643c24b5dfaSDave Chinner 
264427320369SDave Chinner 	/* Drop the link from dp to ip. */
2645c24b5dfaSDave Chinner 	error = xfs_droplink(tp, ip);
2646c24b5dfaSDave Chinner 	if (error)
264727320369SDave Chinner 		goto out_trans_cancel;
2648c24b5dfaSDave Chinner 
26492c3234d1SDarrick J. Wong 	xfs_defer_init(&dfops, &first_block);
265027320369SDave Chinner 	error = xfs_dir_removename(tp, dp, name, ip->i_ino,
26512c3234d1SDarrick J. Wong 					&first_block, &dfops, resblks);
265227320369SDave Chinner 	if (error) {
26532451337dSDave Chinner 		ASSERT(error != -ENOENT);
265427320369SDave Chinner 		goto out_bmap_cancel;
265527320369SDave Chinner 	}
265627320369SDave Chinner 
2657c24b5dfaSDave Chinner 	/*
2658c24b5dfaSDave Chinner 	 * If this is a synchronous mount, make sure that the
2659c24b5dfaSDave Chinner 	 * remove transaction goes to disk before returning to
2660c24b5dfaSDave Chinner 	 * the user.
2661c24b5dfaSDave Chinner 	 */
2662c24b5dfaSDave Chinner 	if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
2663c24b5dfaSDave Chinner 		xfs_trans_set_sync(tp);
2664c24b5dfaSDave Chinner 
26658ad7c629SChristoph Hellwig 	error = xfs_defer_finish(&tp, &dfops);
2666c24b5dfaSDave Chinner 	if (error)
2667c24b5dfaSDave Chinner 		goto out_bmap_cancel;
2668c24b5dfaSDave Chinner 
266970393313SChristoph Hellwig 	error = xfs_trans_commit(tp);
2670c24b5dfaSDave Chinner 	if (error)
2671c24b5dfaSDave Chinner 		goto std_return;
2672c24b5dfaSDave Chinner 
26732cd2ef6aSChristoph Hellwig 	if (is_dir && xfs_inode_is_filestream(ip))
2674c24b5dfaSDave Chinner 		xfs_filestream_deassociate(ip);
2675c24b5dfaSDave Chinner 
2676c24b5dfaSDave Chinner 	return 0;
2677c24b5dfaSDave Chinner 
2678c24b5dfaSDave Chinner  out_bmap_cancel:
26792c3234d1SDarrick J. Wong 	xfs_defer_cancel(&dfops);
2680c24b5dfaSDave Chinner  out_trans_cancel:
26814906e215SChristoph Hellwig 	xfs_trans_cancel(tp);
2682c24b5dfaSDave Chinner  std_return:
2683c24b5dfaSDave Chinner 	return error;
2684c24b5dfaSDave Chinner }
2685c24b5dfaSDave Chinner 
2686f6bba201SDave Chinner /*
2687f6bba201SDave Chinner  * Enter all inodes for a rename transaction into a sorted array.
2688f6bba201SDave Chinner  */
268995afcf5cSDave Chinner #define __XFS_SORT_INODES	5
2690f6bba201SDave Chinner STATIC void
2691f6bba201SDave Chinner xfs_sort_for_rename(
269295afcf5cSDave Chinner 	struct xfs_inode	*dp1,	/* in: old (source) directory inode */
269395afcf5cSDave Chinner 	struct xfs_inode	*dp2,	/* in: new (target) directory inode */
269495afcf5cSDave Chinner 	struct xfs_inode	*ip1,	/* in: inode of old entry */
269595afcf5cSDave Chinner 	struct xfs_inode	*ip2,	/* in: inode of new entry */
269695afcf5cSDave Chinner 	struct xfs_inode	*wip,	/* in: whiteout inode */
269795afcf5cSDave Chinner 	struct xfs_inode	**i_tab,/* out: sorted array of inodes */
269895afcf5cSDave Chinner 	int			*num_inodes)  /* in/out: inodes in array */
2699f6bba201SDave Chinner {
2700f6bba201SDave Chinner 	int			i, j;
2701f6bba201SDave Chinner 
270295afcf5cSDave Chinner 	ASSERT(*num_inodes == __XFS_SORT_INODES);
270395afcf5cSDave Chinner 	memset(i_tab, 0, *num_inodes * sizeof(struct xfs_inode *));
270495afcf5cSDave Chinner 
2705f6bba201SDave Chinner 	/*
2706f6bba201SDave Chinner 	 * i_tab contains a list of pointers to inodes.  We initialize
2707f6bba201SDave Chinner 	 * the table here & we'll sort it.  We will then use it to
2708f6bba201SDave Chinner 	 * order the acquisition of the inode locks.
2709f6bba201SDave Chinner 	 *
2710f6bba201SDave Chinner 	 * Note that the table may contain duplicates.  e.g., dp1 == dp2.
2711f6bba201SDave Chinner 	 */
271295afcf5cSDave Chinner 	i = 0;
271395afcf5cSDave Chinner 	i_tab[i++] = dp1;
271495afcf5cSDave Chinner 	i_tab[i++] = dp2;
271595afcf5cSDave Chinner 	i_tab[i++] = ip1;
271695afcf5cSDave Chinner 	if (ip2)
271795afcf5cSDave Chinner 		i_tab[i++] = ip2;
271895afcf5cSDave Chinner 	if (wip)
271995afcf5cSDave Chinner 		i_tab[i++] = wip;
272095afcf5cSDave Chinner 	*num_inodes = i;
2721f6bba201SDave Chinner 
2722f6bba201SDave Chinner 	/*
2723f6bba201SDave Chinner 	 * Sort the elements via bubble sort.  (Remember, there are at
272495afcf5cSDave Chinner 	 * most 5 elements to sort, so this is adequate.)
2725f6bba201SDave Chinner 	 */
2726f6bba201SDave Chinner 	for (i = 0; i < *num_inodes; i++) {
2727f6bba201SDave Chinner 		for (j = 1; j < *num_inodes; j++) {
2728f6bba201SDave Chinner 			if (i_tab[j]->i_ino < i_tab[j-1]->i_ino) {
272995afcf5cSDave Chinner 				struct xfs_inode *temp = i_tab[j];
2730f6bba201SDave Chinner 				i_tab[j] = i_tab[j-1];
2731f6bba201SDave Chinner 				i_tab[j-1] = temp;
2732f6bba201SDave Chinner 			}
2733f6bba201SDave Chinner 		}
2734f6bba201SDave Chinner 	}
2735f6bba201SDave Chinner }
2736f6bba201SDave Chinner 
2737310606b0SDave Chinner static int
2738310606b0SDave Chinner xfs_finish_rename(
2739310606b0SDave Chinner 	struct xfs_trans	*tp,
27402c3234d1SDarrick J. Wong 	struct xfs_defer_ops	*dfops)
2741310606b0SDave Chinner {
2742310606b0SDave Chinner 	int			error;
2743310606b0SDave Chinner 
2744310606b0SDave Chinner 	/*
2745310606b0SDave Chinner 	 * If this is a synchronous mount, make sure that the rename transaction
2746310606b0SDave Chinner 	 * goes to disk before returning to the user.
2747310606b0SDave Chinner 	 */
2748310606b0SDave Chinner 	if (tp->t_mountp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
2749310606b0SDave Chinner 		xfs_trans_set_sync(tp);
2750310606b0SDave Chinner 
27518ad7c629SChristoph Hellwig 	error = xfs_defer_finish(&tp, dfops);
2752310606b0SDave Chinner 	if (error) {
27532c3234d1SDarrick J. Wong 		xfs_defer_cancel(dfops);
27544906e215SChristoph Hellwig 		xfs_trans_cancel(tp);
2755310606b0SDave Chinner 		return error;
2756310606b0SDave Chinner 	}
2757310606b0SDave Chinner 
275870393313SChristoph Hellwig 	return xfs_trans_commit(tp);
2759310606b0SDave Chinner }
2760310606b0SDave Chinner 
2761f6bba201SDave Chinner /*
2762d31a1825SCarlos Maiolino  * xfs_cross_rename()
2763d31a1825SCarlos Maiolino  *
2764d31a1825SCarlos Maiolino  * responsible for handling RENAME_EXCHANGE flag in renameat2() sytemcall
2765d31a1825SCarlos Maiolino  */
2766d31a1825SCarlos Maiolino STATIC int
2767d31a1825SCarlos Maiolino xfs_cross_rename(
2768d31a1825SCarlos Maiolino 	struct xfs_trans	*tp,
2769d31a1825SCarlos Maiolino 	struct xfs_inode	*dp1,
2770d31a1825SCarlos Maiolino 	struct xfs_name		*name1,
2771d31a1825SCarlos Maiolino 	struct xfs_inode	*ip1,
2772d31a1825SCarlos Maiolino 	struct xfs_inode	*dp2,
2773d31a1825SCarlos Maiolino 	struct xfs_name		*name2,
2774d31a1825SCarlos Maiolino 	struct xfs_inode	*ip2,
27752c3234d1SDarrick J. Wong 	struct xfs_defer_ops	*dfops,
2776d31a1825SCarlos Maiolino 	xfs_fsblock_t		*first_block,
2777d31a1825SCarlos Maiolino 	int			spaceres)
2778d31a1825SCarlos Maiolino {
2779d31a1825SCarlos Maiolino 	int		error = 0;
2780d31a1825SCarlos Maiolino 	int		ip1_flags = 0;
2781d31a1825SCarlos Maiolino 	int		ip2_flags = 0;
2782d31a1825SCarlos Maiolino 	int		dp2_flags = 0;
2783d31a1825SCarlos Maiolino 
2784d31a1825SCarlos Maiolino 	/* Swap inode number for dirent in first parent */
2785d31a1825SCarlos Maiolino 	error = xfs_dir_replace(tp, dp1, name1,
2786d31a1825SCarlos Maiolino 				ip2->i_ino,
27872c3234d1SDarrick J. Wong 				first_block, dfops, spaceres);
2788d31a1825SCarlos Maiolino 	if (error)
2789eeacd321SDave Chinner 		goto out_trans_abort;
2790d31a1825SCarlos Maiolino 
2791d31a1825SCarlos Maiolino 	/* Swap inode number for dirent in second parent */
2792d31a1825SCarlos Maiolino 	error = xfs_dir_replace(tp, dp2, name2,
2793d31a1825SCarlos Maiolino 				ip1->i_ino,
27942c3234d1SDarrick J. Wong 				first_block, dfops, spaceres);
2795d31a1825SCarlos Maiolino 	if (error)
2796eeacd321SDave Chinner 		goto out_trans_abort;
2797d31a1825SCarlos Maiolino 
2798d31a1825SCarlos Maiolino 	/*
2799d31a1825SCarlos Maiolino 	 * If we're renaming one or more directories across different parents,
2800d31a1825SCarlos Maiolino 	 * update the respective ".." entries (and link counts) to match the new
2801d31a1825SCarlos Maiolino 	 * parents.
2802d31a1825SCarlos Maiolino 	 */
2803d31a1825SCarlos Maiolino 	if (dp1 != dp2) {
2804d31a1825SCarlos Maiolino 		dp2_flags = XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
2805d31a1825SCarlos Maiolino 
2806c19b3b05SDave Chinner 		if (S_ISDIR(VFS_I(ip2)->i_mode)) {
2807d31a1825SCarlos Maiolino 			error = xfs_dir_replace(tp, ip2, &xfs_name_dotdot,
2808d31a1825SCarlos Maiolino 						dp1->i_ino, first_block,
28092c3234d1SDarrick J. Wong 						dfops, spaceres);
2810d31a1825SCarlos Maiolino 			if (error)
2811eeacd321SDave Chinner 				goto out_trans_abort;
2812d31a1825SCarlos Maiolino 
2813d31a1825SCarlos Maiolino 			/* transfer ip2 ".." reference to dp1 */
2814c19b3b05SDave Chinner 			if (!S_ISDIR(VFS_I(ip1)->i_mode)) {
2815d31a1825SCarlos Maiolino 				error = xfs_droplink(tp, dp2);
2816d31a1825SCarlos Maiolino 				if (error)
2817eeacd321SDave Chinner 					goto out_trans_abort;
2818d31a1825SCarlos Maiolino 				error = xfs_bumplink(tp, dp1);
2819d31a1825SCarlos Maiolino 				if (error)
2820eeacd321SDave Chinner 					goto out_trans_abort;
2821d31a1825SCarlos Maiolino 			}
2822d31a1825SCarlos Maiolino 
2823d31a1825SCarlos Maiolino 			/*
2824d31a1825SCarlos Maiolino 			 * Although ip1 isn't changed here, userspace needs
2825d31a1825SCarlos Maiolino 			 * to be warned about the change, so that applications
2826d31a1825SCarlos Maiolino 			 * relying on it (like backup ones), will properly
2827d31a1825SCarlos Maiolino 			 * notify the change
2828d31a1825SCarlos Maiolino 			 */
2829d31a1825SCarlos Maiolino 			ip1_flags |= XFS_ICHGTIME_CHG;
2830d31a1825SCarlos Maiolino 			ip2_flags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
2831d31a1825SCarlos Maiolino 		}
2832d31a1825SCarlos Maiolino 
2833c19b3b05SDave Chinner 		if (S_ISDIR(VFS_I(ip1)->i_mode)) {
2834d31a1825SCarlos Maiolino 			error = xfs_dir_replace(tp, ip1, &xfs_name_dotdot,
2835d31a1825SCarlos Maiolino 						dp2->i_ino, first_block,
28362c3234d1SDarrick J. Wong 						dfops, spaceres);
2837d31a1825SCarlos Maiolino 			if (error)
2838eeacd321SDave Chinner 				goto out_trans_abort;
2839d31a1825SCarlos Maiolino 
2840d31a1825SCarlos Maiolino 			/* transfer ip1 ".." reference to dp2 */
2841c19b3b05SDave Chinner 			if (!S_ISDIR(VFS_I(ip2)->i_mode)) {
2842d31a1825SCarlos Maiolino 				error = xfs_droplink(tp, dp1);
2843d31a1825SCarlos Maiolino 				if (error)
2844eeacd321SDave Chinner 					goto out_trans_abort;
2845d31a1825SCarlos Maiolino 				error = xfs_bumplink(tp, dp2);
2846d31a1825SCarlos Maiolino 				if (error)
2847eeacd321SDave Chinner 					goto out_trans_abort;
2848d31a1825SCarlos Maiolino 			}
2849d31a1825SCarlos Maiolino 
2850d31a1825SCarlos Maiolino 			/*
2851d31a1825SCarlos Maiolino 			 * Although ip2 isn't changed here, userspace needs
2852d31a1825SCarlos Maiolino 			 * to be warned about the change, so that applications
2853d31a1825SCarlos Maiolino 			 * relying on it (like backup ones), will properly
2854d31a1825SCarlos Maiolino 			 * notify the change
2855d31a1825SCarlos Maiolino 			 */
2856d31a1825SCarlos Maiolino 			ip1_flags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
2857d31a1825SCarlos Maiolino 			ip2_flags |= XFS_ICHGTIME_CHG;
2858d31a1825SCarlos Maiolino 		}
2859d31a1825SCarlos Maiolino 	}
2860d31a1825SCarlos Maiolino 
2861d31a1825SCarlos Maiolino 	if (ip1_flags) {
2862d31a1825SCarlos Maiolino 		xfs_trans_ichgtime(tp, ip1, ip1_flags);
2863d31a1825SCarlos Maiolino 		xfs_trans_log_inode(tp, ip1, XFS_ILOG_CORE);
2864d31a1825SCarlos Maiolino 	}
2865d31a1825SCarlos Maiolino 	if (ip2_flags) {
2866d31a1825SCarlos Maiolino 		xfs_trans_ichgtime(tp, ip2, ip2_flags);
2867d31a1825SCarlos Maiolino 		xfs_trans_log_inode(tp, ip2, XFS_ILOG_CORE);
2868d31a1825SCarlos Maiolino 	}
2869d31a1825SCarlos Maiolino 	if (dp2_flags) {
2870d31a1825SCarlos Maiolino 		xfs_trans_ichgtime(tp, dp2, dp2_flags);
2871d31a1825SCarlos Maiolino 		xfs_trans_log_inode(tp, dp2, XFS_ILOG_CORE);
2872d31a1825SCarlos Maiolino 	}
2873d31a1825SCarlos Maiolino 	xfs_trans_ichgtime(tp, dp1, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2874d31a1825SCarlos Maiolino 	xfs_trans_log_inode(tp, dp1, XFS_ILOG_CORE);
28752c3234d1SDarrick J. Wong 	return xfs_finish_rename(tp, dfops);
2876eeacd321SDave Chinner 
2877eeacd321SDave Chinner out_trans_abort:
28782c3234d1SDarrick J. Wong 	xfs_defer_cancel(dfops);
28794906e215SChristoph Hellwig 	xfs_trans_cancel(tp);
2880d31a1825SCarlos Maiolino 	return error;
2881d31a1825SCarlos Maiolino }
2882d31a1825SCarlos Maiolino 
2883d31a1825SCarlos Maiolino /*
28847dcf5c3eSDave Chinner  * xfs_rename_alloc_whiteout()
28857dcf5c3eSDave Chinner  *
28867dcf5c3eSDave Chinner  * Return a referenced, unlinked, unlocked inode that that can be used as a
28877dcf5c3eSDave Chinner  * whiteout in a rename transaction. We use a tmpfile inode here so that if we
28887dcf5c3eSDave Chinner  * crash between allocating the inode and linking it into the rename transaction
28897dcf5c3eSDave Chinner  * recovery will free the inode and we won't leak it.
28907dcf5c3eSDave Chinner  */
28917dcf5c3eSDave Chinner static int
28927dcf5c3eSDave Chinner xfs_rename_alloc_whiteout(
28937dcf5c3eSDave Chinner 	struct xfs_inode	*dp,
28947dcf5c3eSDave Chinner 	struct xfs_inode	**wip)
28957dcf5c3eSDave Chinner {
28967dcf5c3eSDave Chinner 	struct xfs_inode	*tmpfile;
28977dcf5c3eSDave Chinner 	int			error;
28987dcf5c3eSDave Chinner 
2899a1f69417SEric Sandeen 	error = xfs_create_tmpfile(dp, S_IFCHR | WHITEOUT_MODE, &tmpfile);
29007dcf5c3eSDave Chinner 	if (error)
29017dcf5c3eSDave Chinner 		return error;
29027dcf5c3eSDave Chinner 
290322419ac9SBrian Foster 	/*
290422419ac9SBrian Foster 	 * Prepare the tmpfile inode as if it were created through the VFS.
290522419ac9SBrian Foster 	 * Otherwise, the link increment paths will complain about nlink 0->1.
290622419ac9SBrian Foster 	 * Drop the link count as done by d_tmpfile(), complete the inode setup
290722419ac9SBrian Foster 	 * and flag it as linkable.
290822419ac9SBrian Foster 	 */
290922419ac9SBrian Foster 	drop_nlink(VFS_I(tmpfile));
29102b3d1d41SChristoph Hellwig 	xfs_setup_iops(tmpfile);
29117dcf5c3eSDave Chinner 	xfs_finish_inode_setup(tmpfile);
29127dcf5c3eSDave Chinner 	VFS_I(tmpfile)->i_state |= I_LINKABLE;
29137dcf5c3eSDave Chinner 
29147dcf5c3eSDave Chinner 	*wip = tmpfile;
29157dcf5c3eSDave Chinner 	return 0;
29167dcf5c3eSDave Chinner }
29177dcf5c3eSDave Chinner 
29187dcf5c3eSDave Chinner /*
2919f6bba201SDave Chinner  * xfs_rename
2920f6bba201SDave Chinner  */
2921f6bba201SDave Chinner int
2922f6bba201SDave Chinner xfs_rename(
29237dcf5c3eSDave Chinner 	struct xfs_inode	*src_dp,
2924f6bba201SDave Chinner 	struct xfs_name		*src_name,
29257dcf5c3eSDave Chinner 	struct xfs_inode	*src_ip,
29267dcf5c3eSDave Chinner 	struct xfs_inode	*target_dp,
2927f6bba201SDave Chinner 	struct xfs_name		*target_name,
29287dcf5c3eSDave Chinner 	struct xfs_inode	*target_ip,
2929d31a1825SCarlos Maiolino 	unsigned int		flags)
2930f6bba201SDave Chinner {
29317dcf5c3eSDave Chinner 	struct xfs_mount	*mp = src_dp->i_mount;
29327dcf5c3eSDave Chinner 	struct xfs_trans	*tp;
29332c3234d1SDarrick J. Wong 	struct xfs_defer_ops	dfops;
2934f6bba201SDave Chinner 	xfs_fsblock_t		first_block;
29357dcf5c3eSDave Chinner 	struct xfs_inode	*wip = NULL;		/* whiteout inode */
29367dcf5c3eSDave Chinner 	struct xfs_inode	*inodes[__XFS_SORT_INODES];
293795afcf5cSDave Chinner 	int			num_inodes = __XFS_SORT_INODES;
29382b93681fSDave Chinner 	bool			new_parent = (src_dp != target_dp);
2939c19b3b05SDave Chinner 	bool			src_is_directory = S_ISDIR(VFS_I(src_ip)->i_mode);
2940f6bba201SDave Chinner 	int			spaceres;
29417dcf5c3eSDave Chinner 	int			error;
2942f6bba201SDave Chinner 
2943f6bba201SDave Chinner 	trace_xfs_rename(src_dp, target_dp, src_name, target_name);
2944f6bba201SDave Chinner 
2945eeacd321SDave Chinner 	if ((flags & RENAME_EXCHANGE) && !target_ip)
2946eeacd321SDave Chinner 		return -EINVAL;
2947f6bba201SDave Chinner 
29487dcf5c3eSDave Chinner 	/*
29497dcf5c3eSDave Chinner 	 * If we are doing a whiteout operation, allocate the whiteout inode
29507dcf5c3eSDave Chinner 	 * we will be placing at the target and ensure the type is set
29517dcf5c3eSDave Chinner 	 * appropriately.
29527dcf5c3eSDave Chinner 	 */
29537dcf5c3eSDave Chinner 	if (flags & RENAME_WHITEOUT) {
29547dcf5c3eSDave Chinner 		ASSERT(!(flags & (RENAME_NOREPLACE | RENAME_EXCHANGE)));
29557dcf5c3eSDave Chinner 		error = xfs_rename_alloc_whiteout(target_dp, &wip);
29567dcf5c3eSDave Chinner 		if (error)
29577dcf5c3eSDave Chinner 			return error;
2958f6bba201SDave Chinner 
29597dcf5c3eSDave Chinner 		/* setup target dirent info as whiteout */
29607dcf5c3eSDave Chinner 		src_name->type = XFS_DIR3_FT_CHRDEV;
29617dcf5c3eSDave Chinner 	}
29627dcf5c3eSDave Chinner 
29637dcf5c3eSDave Chinner 	xfs_sort_for_rename(src_dp, target_dp, src_ip, target_ip, wip,
2964f6bba201SDave Chinner 				inodes, &num_inodes);
2965f6bba201SDave Chinner 
2966f6bba201SDave Chinner 	spaceres = XFS_RENAME_SPACE_RES(mp, target_name->len);
2967253f4911SChristoph Hellwig 	error = xfs_trans_alloc(mp, &M_RES(mp)->tr_rename, spaceres, 0, 0, &tp);
29682451337dSDave Chinner 	if (error == -ENOSPC) {
2969f6bba201SDave Chinner 		spaceres = 0;
2970253f4911SChristoph Hellwig 		error = xfs_trans_alloc(mp, &M_RES(mp)->tr_rename, 0, 0, 0,
2971253f4911SChristoph Hellwig 				&tp);
2972f6bba201SDave Chinner 	}
2973445883e8SDave Chinner 	if (error)
2974253f4911SChristoph Hellwig 		goto out_release_wip;
2975f6bba201SDave Chinner 
2976f6bba201SDave Chinner 	/*
2977f6bba201SDave Chinner 	 * Attach the dquots to the inodes
2978f6bba201SDave Chinner 	 */
2979f6bba201SDave Chinner 	error = xfs_qm_vop_rename_dqattach(inodes);
2980445883e8SDave Chinner 	if (error)
2981445883e8SDave Chinner 		goto out_trans_cancel;
2982f6bba201SDave Chinner 
2983f6bba201SDave Chinner 	/*
2984f6bba201SDave Chinner 	 * Lock all the participating inodes. Depending upon whether
2985f6bba201SDave Chinner 	 * the target_name exists in the target directory, and
2986f6bba201SDave Chinner 	 * whether the target directory is the same as the source
2987f6bba201SDave Chinner 	 * directory, we can lock from 2 to 4 inodes.
2988f6bba201SDave Chinner 	 */
2989f6bba201SDave Chinner 	xfs_lock_inodes(inodes, num_inodes, XFS_ILOCK_EXCL);
2990f6bba201SDave Chinner 
2991f6bba201SDave Chinner 	/*
2992f6bba201SDave Chinner 	 * Join all the inodes to the transaction. From this point on,
2993f6bba201SDave Chinner 	 * we can rely on either trans_commit or trans_cancel to unlock
2994f6bba201SDave Chinner 	 * them.
2995f6bba201SDave Chinner 	 */
299665523218SChristoph Hellwig 	xfs_trans_ijoin(tp, src_dp, XFS_ILOCK_EXCL);
2997f6bba201SDave Chinner 	if (new_parent)
299865523218SChristoph Hellwig 		xfs_trans_ijoin(tp, target_dp, XFS_ILOCK_EXCL);
2999f6bba201SDave Chinner 	xfs_trans_ijoin(tp, src_ip, XFS_ILOCK_EXCL);
3000f6bba201SDave Chinner 	if (target_ip)
3001f6bba201SDave Chinner 		xfs_trans_ijoin(tp, target_ip, XFS_ILOCK_EXCL);
30027dcf5c3eSDave Chinner 	if (wip)
30037dcf5c3eSDave Chinner 		xfs_trans_ijoin(tp, wip, XFS_ILOCK_EXCL);
3004f6bba201SDave Chinner 
3005f6bba201SDave Chinner 	/*
3006f6bba201SDave Chinner 	 * If we are using project inheritance, we only allow renames
3007f6bba201SDave Chinner 	 * into our tree when the project IDs are the same; else the
3008f6bba201SDave Chinner 	 * tree quota mechanism would be circumvented.
3009f6bba201SDave Chinner 	 */
3010f6bba201SDave Chinner 	if (unlikely((target_dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
3011f6bba201SDave Chinner 		     (xfs_get_projid(target_dp) != xfs_get_projid(src_ip)))) {
30122451337dSDave Chinner 		error = -EXDEV;
3013445883e8SDave Chinner 		goto out_trans_cancel;
3014f6bba201SDave Chinner 	}
3015f6bba201SDave Chinner 
30162c3234d1SDarrick J. Wong 	xfs_defer_init(&dfops, &first_block);
3017445883e8SDave Chinner 
3018eeacd321SDave Chinner 	/* RENAME_EXCHANGE is unique from here on. */
3019eeacd321SDave Chinner 	if (flags & RENAME_EXCHANGE)
3020eeacd321SDave Chinner 		return xfs_cross_rename(tp, src_dp, src_name, src_ip,
3021d31a1825SCarlos Maiolino 					target_dp, target_name, target_ip,
30222c3234d1SDarrick J. Wong 					&dfops, &first_block, spaceres);
3023d31a1825SCarlos Maiolino 
3024d31a1825SCarlos Maiolino 	/*
3025f6bba201SDave Chinner 	 * Set up the target.
3026f6bba201SDave Chinner 	 */
3027f6bba201SDave Chinner 	if (target_ip == NULL) {
3028f6bba201SDave Chinner 		/*
3029f6bba201SDave Chinner 		 * If there's no space reservation, check the entry will
3030f6bba201SDave Chinner 		 * fit before actually inserting it.
3031f6bba201SDave Chinner 		 */
303294f3cad5SEric Sandeen 		if (!spaceres) {
303394f3cad5SEric Sandeen 			error = xfs_dir_canenter(tp, target_dp, target_name);
3034f6bba201SDave Chinner 			if (error)
3035445883e8SDave Chinner 				goto out_trans_cancel;
303694f3cad5SEric Sandeen 		}
3037f6bba201SDave Chinner 		/*
3038f6bba201SDave Chinner 		 * If target does not exist and the rename crosses
3039f6bba201SDave Chinner 		 * directories, adjust the target directory link count
3040f6bba201SDave Chinner 		 * to account for the ".." reference from the new entry.
3041f6bba201SDave Chinner 		 */
3042f6bba201SDave Chinner 		error = xfs_dir_createname(tp, target_dp, target_name,
3043f6bba201SDave Chinner 						src_ip->i_ino, &first_block,
30442c3234d1SDarrick J. Wong 						&dfops, spaceres);
3045f6bba201SDave Chinner 		if (error)
30464906e215SChristoph Hellwig 			goto out_bmap_cancel;
3047f6bba201SDave Chinner 
3048f6bba201SDave Chinner 		xfs_trans_ichgtime(tp, target_dp,
3049f6bba201SDave Chinner 					XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3050f6bba201SDave Chinner 
3051f6bba201SDave Chinner 		if (new_parent && src_is_directory) {
3052f6bba201SDave Chinner 			error = xfs_bumplink(tp, target_dp);
3053f6bba201SDave Chinner 			if (error)
30544906e215SChristoph Hellwig 				goto out_bmap_cancel;
3055f6bba201SDave Chinner 		}
3056f6bba201SDave Chinner 	} else { /* target_ip != NULL */
3057f6bba201SDave Chinner 		/*
3058f6bba201SDave Chinner 		 * If target exists and it's a directory, check that both
3059f6bba201SDave Chinner 		 * target and source are directories and that target can be
3060f6bba201SDave Chinner 		 * destroyed, or that neither is a directory.
3061f6bba201SDave Chinner 		 */
3062c19b3b05SDave Chinner 		if (S_ISDIR(VFS_I(target_ip)->i_mode)) {
3063f6bba201SDave Chinner 			/*
3064f6bba201SDave Chinner 			 * Make sure target dir is empty.
3065f6bba201SDave Chinner 			 */
3066f6bba201SDave Chinner 			if (!(xfs_dir_isempty(target_ip)) ||
306754d7b5c1SDave Chinner 			    (VFS_I(target_ip)->i_nlink > 2)) {
30682451337dSDave Chinner 				error = -EEXIST;
3069445883e8SDave Chinner 				goto out_trans_cancel;
3070f6bba201SDave Chinner 			}
3071f6bba201SDave Chinner 		}
3072f6bba201SDave Chinner 
3073f6bba201SDave Chinner 		/*
3074f6bba201SDave Chinner 		 * Link the source inode under the target name.
3075f6bba201SDave Chinner 		 * If the source inode is a directory and we are moving
3076f6bba201SDave Chinner 		 * it across directories, its ".." entry will be
3077f6bba201SDave Chinner 		 * inconsistent until we replace that down below.
3078f6bba201SDave Chinner 		 *
3079f6bba201SDave Chinner 		 * In case there is already an entry with the same
3080f6bba201SDave Chinner 		 * name at the destination directory, remove it first.
3081f6bba201SDave Chinner 		 */
3082f6bba201SDave Chinner 		error = xfs_dir_replace(tp, target_dp, target_name,
3083f6bba201SDave Chinner 					src_ip->i_ino,
30842c3234d1SDarrick J. Wong 					&first_block, &dfops, spaceres);
3085f6bba201SDave Chinner 		if (error)
30864906e215SChristoph Hellwig 			goto out_bmap_cancel;
3087f6bba201SDave Chinner 
3088f6bba201SDave Chinner 		xfs_trans_ichgtime(tp, target_dp,
3089f6bba201SDave Chinner 					XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3090f6bba201SDave Chinner 
3091f6bba201SDave Chinner 		/*
3092f6bba201SDave Chinner 		 * Decrement the link count on the target since the target
3093f6bba201SDave Chinner 		 * dir no longer points to it.
3094f6bba201SDave Chinner 		 */
3095f6bba201SDave Chinner 		error = xfs_droplink(tp, target_ip);
3096f6bba201SDave Chinner 		if (error)
30974906e215SChristoph Hellwig 			goto out_bmap_cancel;
3098f6bba201SDave Chinner 
3099f6bba201SDave Chinner 		if (src_is_directory) {
3100f6bba201SDave Chinner 			/*
3101f6bba201SDave Chinner 			 * Drop the link from the old "." entry.
3102f6bba201SDave Chinner 			 */
3103f6bba201SDave Chinner 			error = xfs_droplink(tp, target_ip);
3104f6bba201SDave Chinner 			if (error)
31054906e215SChristoph Hellwig 				goto out_bmap_cancel;
3106f6bba201SDave Chinner 		}
3107f6bba201SDave Chinner 	} /* target_ip != NULL */
3108f6bba201SDave Chinner 
3109f6bba201SDave Chinner 	/*
3110f6bba201SDave Chinner 	 * Remove the source.
3111f6bba201SDave Chinner 	 */
3112f6bba201SDave Chinner 	if (new_parent && src_is_directory) {
3113f6bba201SDave Chinner 		/*
3114f6bba201SDave Chinner 		 * Rewrite the ".." entry to point to the new
3115f6bba201SDave Chinner 		 * directory.
3116f6bba201SDave Chinner 		 */
3117f6bba201SDave Chinner 		error = xfs_dir_replace(tp, src_ip, &xfs_name_dotdot,
3118f6bba201SDave Chinner 					target_dp->i_ino,
31192c3234d1SDarrick J. Wong 					&first_block, &dfops, spaceres);
31202451337dSDave Chinner 		ASSERT(error != -EEXIST);
3121f6bba201SDave Chinner 		if (error)
31224906e215SChristoph Hellwig 			goto out_bmap_cancel;
3123f6bba201SDave Chinner 	}
3124f6bba201SDave Chinner 
3125f6bba201SDave Chinner 	/*
3126f6bba201SDave Chinner 	 * We always want to hit the ctime on the source inode.
3127f6bba201SDave Chinner 	 *
3128f6bba201SDave Chinner 	 * This isn't strictly required by the standards since the source
3129f6bba201SDave Chinner 	 * inode isn't really being changed, but old unix file systems did
3130f6bba201SDave Chinner 	 * it and some incremental backup programs won't work without it.
3131f6bba201SDave Chinner 	 */
3132f6bba201SDave Chinner 	xfs_trans_ichgtime(tp, src_ip, XFS_ICHGTIME_CHG);
3133f6bba201SDave Chinner 	xfs_trans_log_inode(tp, src_ip, XFS_ILOG_CORE);
3134f6bba201SDave Chinner 
3135f6bba201SDave Chinner 	/*
3136f6bba201SDave Chinner 	 * Adjust the link count on src_dp.  This is necessary when
3137f6bba201SDave Chinner 	 * renaming a directory, either within one parent when
3138f6bba201SDave Chinner 	 * the target existed, or across two parent directories.
3139f6bba201SDave Chinner 	 */
3140f6bba201SDave Chinner 	if (src_is_directory && (new_parent || target_ip != NULL)) {
3141f6bba201SDave Chinner 
3142f6bba201SDave Chinner 		/*
3143f6bba201SDave Chinner 		 * Decrement link count on src_directory since the
3144f6bba201SDave Chinner 		 * entry that's moved no longer points to it.
3145f6bba201SDave Chinner 		 */
3146f6bba201SDave Chinner 		error = xfs_droplink(tp, src_dp);
3147f6bba201SDave Chinner 		if (error)
31484906e215SChristoph Hellwig 			goto out_bmap_cancel;
3149f6bba201SDave Chinner 	}
3150f6bba201SDave Chinner 
31517dcf5c3eSDave Chinner 	/*
31527dcf5c3eSDave Chinner 	 * For whiteouts, we only need to update the source dirent with the
31537dcf5c3eSDave Chinner 	 * inode number of the whiteout inode rather than removing it
31547dcf5c3eSDave Chinner 	 * altogether.
31557dcf5c3eSDave Chinner 	 */
31567dcf5c3eSDave Chinner 	if (wip) {
31577dcf5c3eSDave Chinner 		error = xfs_dir_replace(tp, src_dp, src_name, wip->i_ino,
31582c3234d1SDarrick J. Wong 					&first_block, &dfops, spaceres);
31597dcf5c3eSDave Chinner 	} else
3160f6bba201SDave Chinner 		error = xfs_dir_removename(tp, src_dp, src_name, src_ip->i_ino,
31612c3234d1SDarrick J. Wong 					   &first_block, &dfops, spaceres);
3162f6bba201SDave Chinner 	if (error)
31634906e215SChristoph Hellwig 		goto out_bmap_cancel;
3164f6bba201SDave Chinner 
31657dcf5c3eSDave Chinner 	/*
31667dcf5c3eSDave Chinner 	 * For whiteouts, we need to bump the link count on the whiteout inode.
31677dcf5c3eSDave Chinner 	 * This means that failures all the way up to this point leave the inode
31687dcf5c3eSDave Chinner 	 * on the unlinked list and so cleanup is a simple matter of dropping
31697dcf5c3eSDave Chinner 	 * the remaining reference to it. If we fail here after bumping the link
31707dcf5c3eSDave Chinner 	 * count, we're shutting down the filesystem so we'll never see the
31717dcf5c3eSDave Chinner 	 * intermediate state on disk.
31727dcf5c3eSDave Chinner 	 */
31737dcf5c3eSDave Chinner 	if (wip) {
317454d7b5c1SDave Chinner 		ASSERT(VFS_I(wip)->i_nlink == 0);
31757dcf5c3eSDave Chinner 		error = xfs_bumplink(tp, wip);
31767dcf5c3eSDave Chinner 		if (error)
31774906e215SChristoph Hellwig 			goto out_bmap_cancel;
31787dcf5c3eSDave Chinner 		error = xfs_iunlink_remove(tp, wip);
31797dcf5c3eSDave Chinner 		if (error)
31804906e215SChristoph Hellwig 			goto out_bmap_cancel;
31817dcf5c3eSDave Chinner 		xfs_trans_log_inode(tp, wip, XFS_ILOG_CORE);
31827dcf5c3eSDave Chinner 
31837dcf5c3eSDave Chinner 		/*
31847dcf5c3eSDave Chinner 		 * Now we have a real link, clear the "I'm a tmpfile" state
31857dcf5c3eSDave Chinner 		 * flag from the inode so it doesn't accidentally get misused in
31867dcf5c3eSDave Chinner 		 * future.
31877dcf5c3eSDave Chinner 		 */
31887dcf5c3eSDave Chinner 		VFS_I(wip)->i_state &= ~I_LINKABLE;
31897dcf5c3eSDave Chinner 	}
3190f6bba201SDave Chinner 
3191f6bba201SDave Chinner 	xfs_trans_ichgtime(tp, src_dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3192f6bba201SDave Chinner 	xfs_trans_log_inode(tp, src_dp, XFS_ILOG_CORE);
3193f6bba201SDave Chinner 	if (new_parent)
3194f6bba201SDave Chinner 		xfs_trans_log_inode(tp, target_dp, XFS_ILOG_CORE);
3195f6bba201SDave Chinner 
31962c3234d1SDarrick J. Wong 	error = xfs_finish_rename(tp, &dfops);
31977dcf5c3eSDave Chinner 	if (wip)
31987dcf5c3eSDave Chinner 		IRELE(wip);
31997dcf5c3eSDave Chinner 	return error;
3200f6bba201SDave Chinner 
3201445883e8SDave Chinner out_bmap_cancel:
32022c3234d1SDarrick J. Wong 	xfs_defer_cancel(&dfops);
3203445883e8SDave Chinner out_trans_cancel:
32044906e215SChristoph Hellwig 	xfs_trans_cancel(tp);
3205253f4911SChristoph Hellwig out_release_wip:
32067dcf5c3eSDave Chinner 	if (wip)
32077dcf5c3eSDave Chinner 		IRELE(wip);
3208f6bba201SDave Chinner 	return error;
3209f6bba201SDave Chinner }
3210f6bba201SDave Chinner 
3211bad55843SDavid Chinner STATIC int
3212bad55843SDavid Chinner xfs_iflush_cluster(
321319429363SDave Chinner 	struct xfs_inode	*ip,
321419429363SDave Chinner 	struct xfs_buf		*bp)
3215bad55843SDavid Chinner {
321619429363SDave Chinner 	struct xfs_mount	*mp = ip->i_mount;
32175017e97dSDave Chinner 	struct xfs_perag	*pag;
3218bad55843SDavid Chinner 	unsigned long		first_index, mask;
3219c8f5f12eSDavid Chinner 	unsigned long		inodes_per_cluster;
322019429363SDave Chinner 	int			cilist_size;
322119429363SDave Chinner 	struct xfs_inode	**cilist;
322219429363SDave Chinner 	struct xfs_inode	*cip;
3223bad55843SDavid Chinner 	int			nr_found;
3224bad55843SDavid Chinner 	int			clcount = 0;
3225bad55843SDavid Chinner 	int			bufwasdelwri;
3226bad55843SDavid Chinner 	int			i;
3227bad55843SDavid Chinner 
32285017e97dSDave Chinner 	pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
3229bad55843SDavid Chinner 
32300f49efd8SJie Liu 	inodes_per_cluster = mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog;
323119429363SDave Chinner 	cilist_size = inodes_per_cluster * sizeof(xfs_inode_t *);
323219429363SDave Chinner 	cilist = kmem_alloc(cilist_size, KM_MAYFAIL|KM_NOFS);
323319429363SDave Chinner 	if (!cilist)
323444b56e0aSDave Chinner 		goto out_put;
3235bad55843SDavid Chinner 
32360f49efd8SJie Liu 	mask = ~(((mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog)) - 1);
3237bad55843SDavid Chinner 	first_index = XFS_INO_TO_AGINO(mp, ip->i_ino) & mask;
32381a3e8f3dSDave Chinner 	rcu_read_lock();
3239bad55843SDavid Chinner 	/* really need a gang lookup range call here */
324019429363SDave Chinner 	nr_found = radix_tree_gang_lookup(&pag->pag_ici_root, (void**)cilist,
3241c8f5f12eSDavid Chinner 					first_index, inodes_per_cluster);
3242bad55843SDavid Chinner 	if (nr_found == 0)
3243bad55843SDavid Chinner 		goto out_free;
3244bad55843SDavid Chinner 
3245bad55843SDavid Chinner 	for (i = 0; i < nr_found; i++) {
324619429363SDave Chinner 		cip = cilist[i];
324719429363SDave Chinner 		if (cip == ip)
3248bad55843SDavid Chinner 			continue;
32491a3e8f3dSDave Chinner 
32501a3e8f3dSDave Chinner 		/*
32511a3e8f3dSDave Chinner 		 * because this is an RCU protected lookup, we could find a
32521a3e8f3dSDave Chinner 		 * recently freed or even reallocated inode during the lookup.
32531a3e8f3dSDave Chinner 		 * We need to check under the i_flags_lock for a valid inode
32541a3e8f3dSDave Chinner 		 * here. Skip it if it is not valid or the wrong inode.
32551a3e8f3dSDave Chinner 		 */
325619429363SDave Chinner 		spin_lock(&cip->i_flags_lock);
325719429363SDave Chinner 		if (!cip->i_ino ||
325819429363SDave Chinner 		    __xfs_iflags_test(cip, XFS_ISTALE)) {
325919429363SDave Chinner 			spin_unlock(&cip->i_flags_lock);
32601a3e8f3dSDave Chinner 			continue;
32611a3e8f3dSDave Chinner 		}
32625a90e53eSDave Chinner 
32635a90e53eSDave Chinner 		/*
32645a90e53eSDave Chinner 		 * Once we fall off the end of the cluster, no point checking
32655a90e53eSDave Chinner 		 * any more inodes in the list because they will also all be
32665a90e53eSDave Chinner 		 * outside the cluster.
32675a90e53eSDave Chinner 		 */
326819429363SDave Chinner 		if ((XFS_INO_TO_AGINO(mp, cip->i_ino) & mask) != first_index) {
326919429363SDave Chinner 			spin_unlock(&cip->i_flags_lock);
32705a90e53eSDave Chinner 			break;
32715a90e53eSDave Chinner 		}
327219429363SDave Chinner 		spin_unlock(&cip->i_flags_lock);
32731a3e8f3dSDave Chinner 
3274bad55843SDavid Chinner 		/*
3275bad55843SDavid Chinner 		 * Do an un-protected check to see if the inode is dirty and
3276bad55843SDavid Chinner 		 * is a candidate for flushing.  These checks will be repeated
3277bad55843SDavid Chinner 		 * later after the appropriate locks are acquired.
3278bad55843SDavid Chinner 		 */
327919429363SDave Chinner 		if (xfs_inode_clean(cip) && xfs_ipincount(cip) == 0)
3280bad55843SDavid Chinner 			continue;
3281bad55843SDavid Chinner 
3282bad55843SDavid Chinner 		/*
3283bad55843SDavid Chinner 		 * Try to get locks.  If any are unavailable or it is pinned,
3284bad55843SDavid Chinner 		 * then this inode cannot be flushed and is skipped.
3285bad55843SDavid Chinner 		 */
3286bad55843SDavid Chinner 
328719429363SDave Chinner 		if (!xfs_ilock_nowait(cip, XFS_ILOCK_SHARED))
3288bad55843SDavid Chinner 			continue;
328919429363SDave Chinner 		if (!xfs_iflock_nowait(cip)) {
329019429363SDave Chinner 			xfs_iunlock(cip, XFS_ILOCK_SHARED);
3291bad55843SDavid Chinner 			continue;
3292bad55843SDavid Chinner 		}
329319429363SDave Chinner 		if (xfs_ipincount(cip)) {
329419429363SDave Chinner 			xfs_ifunlock(cip);
329519429363SDave Chinner 			xfs_iunlock(cip, XFS_ILOCK_SHARED);
3296bad55843SDavid Chinner 			continue;
3297bad55843SDavid Chinner 		}
3298bad55843SDavid Chinner 
32998a17d7ddSDave Chinner 
33008a17d7ddSDave Chinner 		/*
33018a17d7ddSDave Chinner 		 * Check the inode number again, just to be certain we are not
33028a17d7ddSDave Chinner 		 * racing with freeing in xfs_reclaim_inode(). See the comments
33038a17d7ddSDave Chinner 		 * in that function for more information as to why the initial
33048a17d7ddSDave Chinner 		 * check is not sufficient.
33058a17d7ddSDave Chinner 		 */
330619429363SDave Chinner 		if (!cip->i_ino) {
330719429363SDave Chinner 			xfs_ifunlock(cip);
330819429363SDave Chinner 			xfs_iunlock(cip, XFS_ILOCK_SHARED);
3309bad55843SDavid Chinner 			continue;
3310bad55843SDavid Chinner 		}
3311bad55843SDavid Chinner 
3312bad55843SDavid Chinner 		/*
3313bad55843SDavid Chinner 		 * arriving here means that this inode can be flushed.  First
3314bad55843SDavid Chinner 		 * re-check that it's dirty before flushing.
3315bad55843SDavid Chinner 		 */
331619429363SDave Chinner 		if (!xfs_inode_clean(cip)) {
3317bad55843SDavid Chinner 			int	error;
331819429363SDave Chinner 			error = xfs_iflush_int(cip, bp);
3319bad55843SDavid Chinner 			if (error) {
332019429363SDave Chinner 				xfs_iunlock(cip, XFS_ILOCK_SHARED);
3321bad55843SDavid Chinner 				goto cluster_corrupt_out;
3322bad55843SDavid Chinner 			}
3323bad55843SDavid Chinner 			clcount++;
3324bad55843SDavid Chinner 		} else {
332519429363SDave Chinner 			xfs_ifunlock(cip);
3326bad55843SDavid Chinner 		}
332719429363SDave Chinner 		xfs_iunlock(cip, XFS_ILOCK_SHARED);
3328bad55843SDavid Chinner 	}
3329bad55843SDavid Chinner 
3330bad55843SDavid Chinner 	if (clcount) {
3331ff6d6af2SBill O'Donnell 		XFS_STATS_INC(mp, xs_icluster_flushcnt);
3332ff6d6af2SBill O'Donnell 		XFS_STATS_ADD(mp, xs_icluster_flushinode, clcount);
3333bad55843SDavid Chinner 	}
3334bad55843SDavid Chinner 
3335bad55843SDavid Chinner out_free:
33361a3e8f3dSDave Chinner 	rcu_read_unlock();
333719429363SDave Chinner 	kmem_free(cilist);
333844b56e0aSDave Chinner out_put:
333944b56e0aSDave Chinner 	xfs_perag_put(pag);
3340bad55843SDavid Chinner 	return 0;
3341bad55843SDavid Chinner 
3342bad55843SDavid Chinner 
3343bad55843SDavid Chinner cluster_corrupt_out:
3344bad55843SDavid Chinner 	/*
3345bad55843SDavid Chinner 	 * Corruption detected in the clustering loop.  Invalidate the
3346bad55843SDavid Chinner 	 * inode buffer and shut down the filesystem.
3347bad55843SDavid Chinner 	 */
33481a3e8f3dSDave Chinner 	rcu_read_unlock();
3349bad55843SDavid Chinner 	/*
335043ff2122SChristoph Hellwig 	 * Clean up the buffer.  If it was delwri, just release it --
3351bad55843SDavid Chinner 	 * brelse can handle it with no problems.  If not, shut down the
3352bad55843SDavid Chinner 	 * filesystem before releasing the buffer.
3353bad55843SDavid Chinner 	 */
335443ff2122SChristoph Hellwig 	bufwasdelwri = (bp->b_flags & _XBF_DELWRI_Q);
3355bad55843SDavid Chinner 	if (bufwasdelwri)
3356bad55843SDavid Chinner 		xfs_buf_relse(bp);
3357bad55843SDavid Chinner 
3358bad55843SDavid Chinner 	xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
3359bad55843SDavid Chinner 
3360bad55843SDavid Chinner 	if (!bufwasdelwri) {
3361bad55843SDavid Chinner 		/*
3362bad55843SDavid Chinner 		 * Just like incore_relse: if we have b_iodone functions,
3363bad55843SDavid Chinner 		 * mark the buffer as an error and call them.  Otherwise
3364bad55843SDavid Chinner 		 * mark it as stale and brelse.
3365bad55843SDavid Chinner 		 */
3366cb669ca5SChristoph Hellwig 		if (bp->b_iodone) {
3367b0388bf1SDave Chinner 			bp->b_flags &= ~XBF_DONE;
3368c867cb61SChristoph Hellwig 			xfs_buf_stale(bp);
33692451337dSDave Chinner 			xfs_buf_ioerror(bp, -EIO);
3370e8aaba9aSDave Chinner 			xfs_buf_ioend(bp);
3371bad55843SDavid Chinner 		} else {
3372c867cb61SChristoph Hellwig 			xfs_buf_stale(bp);
3373bad55843SDavid Chinner 			xfs_buf_relse(bp);
3374bad55843SDavid Chinner 		}
3375bad55843SDavid Chinner 	}
3376bad55843SDavid Chinner 
3377bad55843SDavid Chinner 	/*
3378bad55843SDavid Chinner 	 * Unlocks the flush lock
3379bad55843SDavid Chinner 	 */
338019429363SDave Chinner 	xfs_iflush_abort(cip, false);
338119429363SDave Chinner 	kmem_free(cilist);
338244b56e0aSDave Chinner 	xfs_perag_put(pag);
33832451337dSDave Chinner 	return -EFSCORRUPTED;
3384bad55843SDavid Chinner }
3385bad55843SDavid Chinner 
33861da177e4SLinus Torvalds /*
33874c46819aSChristoph Hellwig  * Flush dirty inode metadata into the backing buffer.
33884c46819aSChristoph Hellwig  *
33894c46819aSChristoph Hellwig  * The caller must have the inode lock and the inode flush lock held.  The
33904c46819aSChristoph Hellwig  * inode lock will still be held upon return to the caller, and the inode
33914c46819aSChristoph Hellwig  * flush lock will be released after the inode has reached the disk.
33924c46819aSChristoph Hellwig  *
33934c46819aSChristoph Hellwig  * The caller must write out the buffer returned in *bpp and release it.
33941da177e4SLinus Torvalds  */
33951da177e4SLinus Torvalds int
33961da177e4SLinus Torvalds xfs_iflush(
33974c46819aSChristoph Hellwig 	struct xfs_inode	*ip,
33984c46819aSChristoph Hellwig 	struct xfs_buf		**bpp)
33991da177e4SLinus Torvalds {
34004c46819aSChristoph Hellwig 	struct xfs_mount	*mp = ip->i_mount;
3401b1438f47SDave Chinner 	struct xfs_buf		*bp = NULL;
34024c46819aSChristoph Hellwig 	struct xfs_dinode	*dip;
34031da177e4SLinus Torvalds 	int			error;
34041da177e4SLinus Torvalds 
3405ff6d6af2SBill O'Donnell 	XFS_STATS_INC(mp, xs_iflush_count);
34061da177e4SLinus Torvalds 
3407579aa9caSChristoph Hellwig 	ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
3408474fce06SChristoph Hellwig 	ASSERT(xfs_isiflocked(ip));
34091da177e4SLinus Torvalds 	ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
34108096b1ebSChristoph Hellwig 	       ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
34111da177e4SLinus Torvalds 
34124c46819aSChristoph Hellwig 	*bpp = NULL;
34131da177e4SLinus Torvalds 
34141da177e4SLinus Torvalds 	xfs_iunpin_wait(ip);
34151da177e4SLinus Torvalds 
34161da177e4SLinus Torvalds 	/*
34174b6a4688SDave Chinner 	 * For stale inodes we cannot rely on the backing buffer remaining
34184b6a4688SDave Chinner 	 * stale in cache for the remaining life of the stale inode and so
3419475ee413SChristoph Hellwig 	 * xfs_imap_to_bp() below may give us a buffer that no longer contains
34204b6a4688SDave Chinner 	 * inodes below. We have to check this after ensuring the inode is
34214b6a4688SDave Chinner 	 * unpinned so that it is safe to reclaim the stale inode after the
34224b6a4688SDave Chinner 	 * flush call.
34234b6a4688SDave Chinner 	 */
34244b6a4688SDave Chinner 	if (xfs_iflags_test(ip, XFS_ISTALE)) {
34254b6a4688SDave Chinner 		xfs_ifunlock(ip);
34264b6a4688SDave Chinner 		return 0;
34274b6a4688SDave Chinner 	}
34284b6a4688SDave Chinner 
34294b6a4688SDave Chinner 	/*
34301da177e4SLinus Torvalds 	 * This may have been unpinned because the filesystem is shutting
34311da177e4SLinus Torvalds 	 * down forcibly. If that's the case we must not write this inode
343232ce90a4SChristoph Hellwig 	 * to disk, because the log record didn't make it to disk.
343332ce90a4SChristoph Hellwig 	 *
343432ce90a4SChristoph Hellwig 	 * We also have to remove the log item from the AIL in this case,
343532ce90a4SChristoph Hellwig 	 * as we wait for an empty AIL as part of the unmount process.
34361da177e4SLinus Torvalds 	 */
34371da177e4SLinus Torvalds 	if (XFS_FORCED_SHUTDOWN(mp)) {
34382451337dSDave Chinner 		error = -EIO;
343932ce90a4SChristoph Hellwig 		goto abort_out;
34401da177e4SLinus Torvalds 	}
34411da177e4SLinus Torvalds 
34421da177e4SLinus Torvalds 	/*
3443b1438f47SDave Chinner 	 * Get the buffer containing the on-disk inode. We are doing a try-lock
3444b1438f47SDave Chinner 	 * operation here, so we may get  an EAGAIN error. In that case, we
3445b1438f47SDave Chinner 	 * simply want to return with the inode still dirty.
3446b1438f47SDave Chinner 	 *
3447b1438f47SDave Chinner 	 * If we get any other error, we effectively have a corruption situation
3448b1438f47SDave Chinner 	 * and we cannot flush the inode, so we treat it the same as failing
3449b1438f47SDave Chinner 	 * xfs_iflush_int().
3450a3f74ffbSDavid Chinner 	 */
3451475ee413SChristoph Hellwig 	error = xfs_imap_to_bp(mp, NULL, &ip->i_imap, &dip, &bp, XBF_TRYLOCK,
3452475ee413SChristoph Hellwig 			       0);
3453b1438f47SDave Chinner 	if (error == -EAGAIN) {
3454a3f74ffbSDavid Chinner 		xfs_ifunlock(ip);
3455a3f74ffbSDavid Chinner 		return error;
3456a3f74ffbSDavid Chinner 	}
3457b1438f47SDave Chinner 	if (error)
3458b1438f47SDave Chinner 		goto corrupt_out;
3459a3f74ffbSDavid Chinner 
3460a3f74ffbSDavid Chinner 	/*
34611da177e4SLinus Torvalds 	 * First flush out the inode that xfs_iflush was called with.
34621da177e4SLinus Torvalds 	 */
34631da177e4SLinus Torvalds 	error = xfs_iflush_int(ip, bp);
3464bad55843SDavid Chinner 	if (error)
34651da177e4SLinus Torvalds 		goto corrupt_out;
34661da177e4SLinus Torvalds 
34671da177e4SLinus Torvalds 	/*
3468a3f74ffbSDavid Chinner 	 * If the buffer is pinned then push on the log now so we won't
3469a3f74ffbSDavid Chinner 	 * get stuck waiting in the write for too long.
3470a3f74ffbSDavid Chinner 	 */
3471811e64c7SChandra Seetharaman 	if (xfs_buf_ispinned(bp))
3472a14a348bSChristoph Hellwig 		xfs_log_force(mp, 0);
3473a3f74ffbSDavid Chinner 
3474a3f74ffbSDavid Chinner 	/*
34751da177e4SLinus Torvalds 	 * inode clustering:
34761da177e4SLinus Torvalds 	 * see if other inodes can be gathered into this write
34771da177e4SLinus Torvalds 	 */
3478bad55843SDavid Chinner 	error = xfs_iflush_cluster(ip, bp);
3479bad55843SDavid Chinner 	if (error)
34801da177e4SLinus Torvalds 		goto cluster_corrupt_out;
34811da177e4SLinus Torvalds 
34824c46819aSChristoph Hellwig 	*bpp = bp;
34834c46819aSChristoph Hellwig 	return 0;
34841da177e4SLinus Torvalds 
34851da177e4SLinus Torvalds corrupt_out:
3486b1438f47SDave Chinner 	if (bp)
34871da177e4SLinus Torvalds 		xfs_buf_relse(bp);
34887d04a335SNathan Scott 	xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
34891da177e4SLinus Torvalds cluster_corrupt_out:
34902451337dSDave Chinner 	error = -EFSCORRUPTED;
349132ce90a4SChristoph Hellwig abort_out:
34921da177e4SLinus Torvalds 	/*
34931da177e4SLinus Torvalds 	 * Unlocks the flush lock
34941da177e4SLinus Torvalds 	 */
349504913fddSDave Chinner 	xfs_iflush_abort(ip, false);
349632ce90a4SChristoph Hellwig 	return error;
34971da177e4SLinus Torvalds }
34981da177e4SLinus Torvalds 
34999cfb9b47SDarrick J. Wong /*
35009cfb9b47SDarrick J. Wong  * If there are inline format data / attr forks attached to this inode,
35019cfb9b47SDarrick J. Wong  * make sure they're not corrupt.
35029cfb9b47SDarrick J. Wong  */
35039cfb9b47SDarrick J. Wong bool
35049cfb9b47SDarrick J. Wong xfs_inode_verify_forks(
35059cfb9b47SDarrick J. Wong 	struct xfs_inode	*ip)
35069cfb9b47SDarrick J. Wong {
350722431bf3SDarrick J. Wong 	struct xfs_ifork	*ifp;
35089cfb9b47SDarrick J. Wong 	xfs_failaddr_t		fa;
35099cfb9b47SDarrick J. Wong 
35109cfb9b47SDarrick J. Wong 	fa = xfs_ifork_verify_data(ip, &xfs_default_ifork_ops);
35119cfb9b47SDarrick J. Wong 	if (fa) {
351222431bf3SDarrick J. Wong 		ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
351322431bf3SDarrick J. Wong 		xfs_inode_verifier_error(ip, -EFSCORRUPTED, "data fork",
351422431bf3SDarrick J. Wong 				ifp->if_u1.if_data, ifp->if_bytes, fa);
35159cfb9b47SDarrick J. Wong 		return false;
35169cfb9b47SDarrick J. Wong 	}
35179cfb9b47SDarrick J. Wong 
35189cfb9b47SDarrick J. Wong 	fa = xfs_ifork_verify_attr(ip, &xfs_default_ifork_ops);
35199cfb9b47SDarrick J. Wong 	if (fa) {
352022431bf3SDarrick J. Wong 		ifp = XFS_IFORK_PTR(ip, XFS_ATTR_FORK);
352122431bf3SDarrick J. Wong 		xfs_inode_verifier_error(ip, -EFSCORRUPTED, "attr fork",
352222431bf3SDarrick J. Wong 				ifp ? ifp->if_u1.if_data : NULL,
352322431bf3SDarrick J. Wong 				ifp ? ifp->if_bytes : 0, fa);
35249cfb9b47SDarrick J. Wong 		return false;
35259cfb9b47SDarrick J. Wong 	}
35269cfb9b47SDarrick J. Wong 	return true;
35279cfb9b47SDarrick J. Wong }
35289cfb9b47SDarrick J. Wong 
35291da177e4SLinus Torvalds STATIC int
35301da177e4SLinus Torvalds xfs_iflush_int(
353193848a99SChristoph Hellwig 	struct xfs_inode	*ip,
353293848a99SChristoph Hellwig 	struct xfs_buf		*bp)
35331da177e4SLinus Torvalds {
353493848a99SChristoph Hellwig 	struct xfs_inode_log_item *iip = ip->i_itemp;
353593848a99SChristoph Hellwig 	struct xfs_dinode	*dip;
353693848a99SChristoph Hellwig 	struct xfs_mount	*mp = ip->i_mount;
35371da177e4SLinus Torvalds 
3538579aa9caSChristoph Hellwig 	ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
3539474fce06SChristoph Hellwig 	ASSERT(xfs_isiflocked(ip));
35401da177e4SLinus Torvalds 	ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
35418096b1ebSChristoph Hellwig 	       ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
354293848a99SChristoph Hellwig 	ASSERT(iip != NULL && iip->ili_fields != 0);
3543263997a6SDave Chinner 	ASSERT(ip->i_d.di_version > 1);
35441da177e4SLinus Torvalds 
35451da177e4SLinus Torvalds 	/* set *dip = inode's place in the buffer */
354688ee2df7SChristoph Hellwig 	dip = xfs_buf_offset(bp, ip->i_imap.im_boffset);
35471da177e4SLinus Torvalds 
354869ef921bSChristoph Hellwig 	if (XFS_TEST_ERROR(dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC),
35499e24cfd0SDarrick J. Wong 			       mp, XFS_ERRTAG_IFLUSH_1)) {
35506a19d939SDave Chinner 		xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3551c9690043SDarrick J. Wong 			"%s: Bad inode %Lu magic number 0x%x, ptr "PTR_FMT,
35526a19d939SDave Chinner 			__func__, ip->i_ino, be16_to_cpu(dip->di_magic), dip);
35531da177e4SLinus Torvalds 		goto corrupt_out;
35541da177e4SLinus Torvalds 	}
3555c19b3b05SDave Chinner 	if (S_ISREG(VFS_I(ip)->i_mode)) {
35561da177e4SLinus Torvalds 		if (XFS_TEST_ERROR(
35571da177e4SLinus Torvalds 		    (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
35581da177e4SLinus Torvalds 		    (ip->i_d.di_format != XFS_DINODE_FMT_BTREE),
35599e24cfd0SDarrick J. Wong 		    mp, XFS_ERRTAG_IFLUSH_3)) {
35606a19d939SDave Chinner 			xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3561c9690043SDarrick J. Wong 				"%s: Bad regular inode %Lu, ptr "PTR_FMT,
35626a19d939SDave Chinner 				__func__, ip->i_ino, ip);
35631da177e4SLinus Torvalds 			goto corrupt_out;
35641da177e4SLinus Torvalds 		}
3565c19b3b05SDave Chinner 	} else if (S_ISDIR(VFS_I(ip)->i_mode)) {
35661da177e4SLinus Torvalds 		if (XFS_TEST_ERROR(
35671da177e4SLinus Torvalds 		    (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
35681da177e4SLinus Torvalds 		    (ip->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
35691da177e4SLinus Torvalds 		    (ip->i_d.di_format != XFS_DINODE_FMT_LOCAL),
35709e24cfd0SDarrick J. Wong 		    mp, XFS_ERRTAG_IFLUSH_4)) {
35716a19d939SDave Chinner 			xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3572c9690043SDarrick J. Wong 				"%s: Bad directory inode %Lu, ptr "PTR_FMT,
35736a19d939SDave Chinner 				__func__, ip->i_ino, ip);
35741da177e4SLinus Torvalds 			goto corrupt_out;
35751da177e4SLinus Torvalds 		}
35761da177e4SLinus Torvalds 	}
35771da177e4SLinus Torvalds 	if (XFS_TEST_ERROR(ip->i_d.di_nextents + ip->i_d.di_anextents >
35789e24cfd0SDarrick J. Wong 				ip->i_d.di_nblocks, mp, XFS_ERRTAG_IFLUSH_5)) {
35796a19d939SDave Chinner 		xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
35806a19d939SDave Chinner 			"%s: detected corrupt incore inode %Lu, "
3581c9690043SDarrick J. Wong 			"total extents = %d, nblocks = %Ld, ptr "PTR_FMT,
35826a19d939SDave Chinner 			__func__, ip->i_ino,
35831da177e4SLinus Torvalds 			ip->i_d.di_nextents + ip->i_d.di_anextents,
35846a19d939SDave Chinner 			ip->i_d.di_nblocks, ip);
35851da177e4SLinus Torvalds 		goto corrupt_out;
35861da177e4SLinus Torvalds 	}
35871da177e4SLinus Torvalds 	if (XFS_TEST_ERROR(ip->i_d.di_forkoff > mp->m_sb.sb_inodesize,
35889e24cfd0SDarrick J. Wong 				mp, XFS_ERRTAG_IFLUSH_6)) {
35896a19d939SDave Chinner 		xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3590c9690043SDarrick J. Wong 			"%s: bad inode %Lu, forkoff 0x%x, ptr "PTR_FMT,
35916a19d939SDave Chinner 			__func__, ip->i_ino, ip->i_d.di_forkoff, ip);
35921da177e4SLinus Torvalds 		goto corrupt_out;
35931da177e4SLinus Torvalds 	}
3594e60896d8SDave Chinner 
35951da177e4SLinus Torvalds 	/*
3596263997a6SDave Chinner 	 * Inode item log recovery for v2 inodes are dependent on the
3597e60896d8SDave Chinner 	 * di_flushiter count for correct sequencing. We bump the flush
3598e60896d8SDave Chinner 	 * iteration count so we can detect flushes which postdate a log record
3599e60896d8SDave Chinner 	 * during recovery. This is redundant as we now log every change and
3600e60896d8SDave Chinner 	 * hence this can't happen but we need to still do it to ensure
3601e60896d8SDave Chinner 	 * backwards compatibility with old kernels that predate logging all
3602e60896d8SDave Chinner 	 * inode changes.
36031da177e4SLinus Torvalds 	 */
3604e60896d8SDave Chinner 	if (ip->i_d.di_version < 3)
36051da177e4SLinus Torvalds 		ip->i_d.di_flushiter++;
36061da177e4SLinus Torvalds 
36079cfb9b47SDarrick J. Wong 	/* Check the inline fork data before we write out. */
36089cfb9b47SDarrick J. Wong 	if (!xfs_inode_verify_forks(ip))
3609005c5db8SDarrick J. Wong 		goto corrupt_out;
3610005c5db8SDarrick J. Wong 
36111da177e4SLinus Torvalds 	/*
36123987848cSDave Chinner 	 * Copy the dirty parts of the inode into the on-disk inode.  We always
36133987848cSDave Chinner 	 * copy out the core of the inode, because if the inode is dirty at all
36143987848cSDave Chinner 	 * the core must be.
36151da177e4SLinus Torvalds 	 */
361693f958f9SDave Chinner 	xfs_inode_to_disk(ip, dip, iip->ili_item.li_lsn);
36171da177e4SLinus Torvalds 
36181da177e4SLinus Torvalds 	/* Wrap, we never let the log put out DI_MAX_FLUSH */
36191da177e4SLinus Torvalds 	if (ip->i_d.di_flushiter == DI_MAX_FLUSH)
36201da177e4SLinus Torvalds 		ip->i_d.di_flushiter = 0;
36211da177e4SLinus Torvalds 
3622005c5db8SDarrick J. Wong 	xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK);
3623005c5db8SDarrick J. Wong 	if (XFS_IFORK_Q(ip))
3624005c5db8SDarrick J. Wong 		xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK);
36251da177e4SLinus Torvalds 	xfs_inobp_check(mp, bp);
36261da177e4SLinus Torvalds 
36271da177e4SLinus Torvalds 	/*
3628f5d8d5c4SChristoph Hellwig 	 * We've recorded everything logged in the inode, so we'd like to clear
3629f5d8d5c4SChristoph Hellwig 	 * the ili_fields bits so we don't log and flush things unnecessarily.
3630f5d8d5c4SChristoph Hellwig 	 * However, we can't stop logging all this information until the data
3631f5d8d5c4SChristoph Hellwig 	 * we've copied into the disk buffer is written to disk.  If we did we
3632f5d8d5c4SChristoph Hellwig 	 * might overwrite the copy of the inode in the log with all the data
3633f5d8d5c4SChristoph Hellwig 	 * after re-logging only part of it, and in the face of a crash we
3634f5d8d5c4SChristoph Hellwig 	 * wouldn't have all the data we need to recover.
36351da177e4SLinus Torvalds 	 *
3636f5d8d5c4SChristoph Hellwig 	 * What we do is move the bits to the ili_last_fields field.  When
3637f5d8d5c4SChristoph Hellwig 	 * logging the inode, these bits are moved back to the ili_fields field.
3638f5d8d5c4SChristoph Hellwig 	 * In the xfs_iflush_done() routine we clear ili_last_fields, since we
3639f5d8d5c4SChristoph Hellwig 	 * know that the information those bits represent is permanently on
3640f5d8d5c4SChristoph Hellwig 	 * disk.  As long as the flush completes before the inode is logged
3641f5d8d5c4SChristoph Hellwig 	 * again, then both ili_fields and ili_last_fields will be cleared.
36421da177e4SLinus Torvalds 	 *
3643f5d8d5c4SChristoph Hellwig 	 * We can play with the ili_fields bits here, because the inode lock
3644f5d8d5c4SChristoph Hellwig 	 * must be held exclusively in order to set bits there and the flush
3645f5d8d5c4SChristoph Hellwig 	 * lock protects the ili_last_fields bits.  Set ili_logged so the flush
3646f5d8d5c4SChristoph Hellwig 	 * done routine can tell whether or not to look in the AIL.  Also, store
3647f5d8d5c4SChristoph Hellwig 	 * the current LSN of the inode so that we can tell whether the item has
3648f5d8d5c4SChristoph Hellwig 	 * moved in the AIL from xfs_iflush_done().  In order to read the lsn we
3649f5d8d5c4SChristoph Hellwig 	 * need the AIL lock, because it is a 64 bit value that cannot be read
3650f5d8d5c4SChristoph Hellwig 	 * atomically.
36511da177e4SLinus Torvalds 	 */
3652f5d8d5c4SChristoph Hellwig 	iip->ili_last_fields = iip->ili_fields;
3653f5d8d5c4SChristoph Hellwig 	iip->ili_fields = 0;
3654fc0561ceSDave Chinner 	iip->ili_fsync_fields = 0;
36551da177e4SLinus Torvalds 	iip->ili_logged = 1;
36561da177e4SLinus Torvalds 
36577b2e2a31SDavid Chinner 	xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
36587b2e2a31SDavid Chinner 				&iip->ili_item.li_lsn);
36591da177e4SLinus Torvalds 
36601da177e4SLinus Torvalds 	/*
36611da177e4SLinus Torvalds 	 * Attach the function xfs_iflush_done to the inode's
36621da177e4SLinus Torvalds 	 * buffer.  This will remove the inode from the AIL
36631da177e4SLinus Torvalds 	 * and unlock the inode's flush lock when the inode is
36641da177e4SLinus Torvalds 	 * completely written to disk.
36651da177e4SLinus Torvalds 	 */
3666ca30b2a7SChristoph Hellwig 	xfs_buf_attach_iodone(bp, xfs_iflush_done, &iip->ili_item);
36671da177e4SLinus Torvalds 
366893848a99SChristoph Hellwig 	/* generate the checksum. */
366993848a99SChristoph Hellwig 	xfs_dinode_calc_crc(mp, dip);
367093848a99SChristoph Hellwig 
3671643c8c05SCarlos Maiolino 	ASSERT(!list_empty(&bp->b_li_list));
3672cb669ca5SChristoph Hellwig 	ASSERT(bp->b_iodone != NULL);
36731da177e4SLinus Torvalds 	return 0;
36741da177e4SLinus Torvalds 
36751da177e4SLinus Torvalds corrupt_out:
36762451337dSDave Chinner 	return -EFSCORRUPTED;
36771da177e4SLinus Torvalds }
3678