blob: 98ca9f1b6a07c9a5a8f51716371faa9209bee3c8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Robert P. J. Day40ebd812007-11-23 16:30:51 +110018#include <linux/log2.h>
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_fs.h"
Dave Chinner70a9883c2013-10-23 10:36:05 +110022#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110023#include "xfs_format.h"
24#include "xfs_log_format.h"
25#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
Darrick J. Wong3ab78df2016-08-03 11:15:38 +100028#include "xfs_defer.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110029#include "xfs_inode.h"
Dave Chinner57062782013-10-15 09:17:51 +110030#include "xfs_da_format.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100031#include "xfs_da_btree.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100032#include "xfs_dir2.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_attr_sf.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100034#include "xfs_attr.h"
Dave Chinner239880e2013-10-23 10:50:10 +110035#include "xfs_trans_space.h"
36#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_buf_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_inode_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110039#include "xfs_ialloc.h"
40#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100041#include "xfs_bmap_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_quota.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100044#include "xfs_filestream.h"
Christoph Hellwig93848a92013-04-03 16:11:17 +110045#include "xfs_cksum.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000046#include "xfs_trace.h"
Dave Chinner33479e02012-10-08 21:56:11 +110047#include "xfs_icache.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100048#include "xfs_symlink.h"
Dave Chinner239880e2013-10-23 10:50:10 +110049#include "xfs_trans_priv.h"
50#include "xfs_log.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110051#include "xfs_bmap_btree.h"
Darrick J. Wongaa8968f2016-10-03 09:11:38 -070052#include "xfs_reflink.h"
Darrick J. Wongca659e082017-04-03 12:22:20 -070053#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055kmem_zone_t *xfs_inode_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/*
Christoph Hellwig8f04c472011-07-08 14:34:34 +020058 * Used in xfs_itruncate_extents(). This is the maximum number of extents
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * freed from a file in a single transaction.
60 */
61#define XFS_ITRUNC_MAX_EXTENTS 2
62
Dave Chinner54d7b5c2016-02-09 16:54:58 +110063STATIC int xfs_iflush_int(struct xfs_inode *, struct xfs_buf *);
64STATIC int xfs_iunlink(struct xfs_trans *, struct xfs_inode *);
65STATIC int xfs_iunlink_remove(struct xfs_trans *, struct xfs_inode *);
Zhi Yong Wuab297432013-12-18 08:22:41 +080066
Dave Chinner2a0ec1d2012-04-23 15:59:02 +100067/*
68 * helper function to extract extent size hint from inode
69 */
70xfs_extlen_t
71xfs_get_extsz_hint(
72 struct xfs_inode *ip)
73{
74 if ((ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE) && ip->i_d.di_extsize)
75 return ip->i_d.di_extsize;
76 if (XFS_IS_REALTIME_INODE(ip))
77 return ip->i_mount->m_sb.sb_rextsize;
78 return 0;
79}
80
Dave Chinnerfa96aca2012-10-08 21:56:10 +110081/*
Darrick J. Wongf7ca3522016-10-03 09:11:43 -070082 * Helper function to extract CoW extent size hint from inode.
83 * Between the extent size hint and the CoW extent size hint, we
Darrick J. Wonge153aa72016-10-03 09:11:49 -070084 * return the greater of the two. If the value is zero (automatic),
85 * use the default size.
Darrick J. Wongf7ca3522016-10-03 09:11:43 -070086 */
87xfs_extlen_t
88xfs_get_cowextsz_hint(
89 struct xfs_inode *ip)
90{
91 xfs_extlen_t a, b;
92
93 a = 0;
94 if (ip->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE)
95 a = ip->i_d.di_cowextsize;
96 b = xfs_get_extsz_hint(ip);
97
Darrick J. Wonge153aa72016-10-03 09:11:49 -070098 a = max(a, b);
99 if (a == 0)
100 return XFS_DEFAULT_COWEXTSZ_HINT;
101 return a;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700102}
103
104/*
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800105 * These two are wrapper routines around the xfs_ilock() routine used to
106 * centralize some grungy code. They are used in places that wish to lock the
107 * inode solely for reading the extents. The reason these places can't just
108 * call xfs_ilock(ip, XFS_ILOCK_SHARED) is that the inode lock also guards to
109 * bringing in of the extents from disk for a file in b-tree format. If the
110 * inode is in b-tree format, then we need to lock the inode exclusively until
111 * the extents are read in. Locking it exclusively all the time would limit
112 * our parallelism unnecessarily, though. What we do instead is check to see
113 * if the extents have been read in yet, and only lock the inode exclusively
114 * if they have not.
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100115 *
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800116 * The functions return a value which should be given to the corresponding
Christoph Hellwig01f4f322013-12-06 12:30:08 -0800117 * xfs_iunlock() call.
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100118 */
119uint
Christoph Hellwig309ecac2013-12-06 12:30:09 -0800120xfs_ilock_data_map_shared(
121 struct xfs_inode *ip)
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100122{
Christoph Hellwig309ecac2013-12-06 12:30:09 -0800123 uint lock_mode = XFS_ILOCK_SHARED;
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100124
Christoph Hellwig309ecac2013-12-06 12:30:09 -0800125 if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE &&
126 (ip->i_df.if_flags & XFS_IFEXTENTS) == 0)
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100127 lock_mode = XFS_ILOCK_EXCL;
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100128 xfs_ilock(ip, lock_mode);
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100129 return lock_mode;
130}
131
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800132uint
133xfs_ilock_attr_map_shared(
134 struct xfs_inode *ip)
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100135{
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800136 uint lock_mode = XFS_ILOCK_SHARED;
137
138 if (ip->i_d.di_aformat == XFS_DINODE_FMT_BTREE &&
139 (ip->i_afp->if_flags & XFS_IFEXTENTS) == 0)
140 lock_mode = XFS_ILOCK_EXCL;
141 xfs_ilock(ip, lock_mode);
142 return lock_mode;
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100143}
144
145/*
Dave Chinner653c60b2015-02-23 21:43:37 +1100146 * The xfs inode contains 3 multi-reader locks: the i_iolock the i_mmap_lock and
147 * the i_lock. This routine allows various combinations of the locks to be
148 * obtained.
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100149 *
Dave Chinner653c60b2015-02-23 21:43:37 +1100150 * The 3 locks should always be ordered so that the IO lock is obtained first,
151 * the mmap lock second and the ilock last in order to prevent deadlock.
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100152 *
Dave Chinner653c60b2015-02-23 21:43:37 +1100153 * Basic locking order:
154 *
155 * i_iolock -> i_mmap_lock -> page_lock -> i_ilock
156 *
157 * mmap_sem locking order:
158 *
159 * i_iolock -> page lock -> mmap_sem
160 * mmap_sem -> i_mmap_lock -> page_lock
161 *
162 * The difference in mmap_sem locking order mean that we cannot hold the
163 * i_mmap_lock over syscall based read(2)/write(2) based IO. These IO paths can
164 * fault in pages during copy in/out (for buffered IO) or require the mmap_sem
165 * in get_user_pages() to map the user pages into the kernel address space for
166 * direct IO. Similarly the i_iolock cannot be taken inside a page fault because
167 * page faults already hold the mmap_sem.
168 *
169 * Hence to serialise fully against both syscall and mmap based IO, we need to
170 * take both the i_iolock and the i_mmap_lock. These locks should *only* be both
171 * taken in places where we need to invalidate the page cache in a race
172 * free manner (e.g. truncate, hole punch and other extent manipulation
173 * functions).
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100174 */
175void
176xfs_ilock(
177 xfs_inode_t *ip,
178 uint lock_flags)
179{
180 trace_xfs_ilock(ip, lock_flags, _RET_IP_);
181
182 /*
183 * You can't set both SHARED and EXCL for the same lock,
184 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
185 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
186 */
187 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
188 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
Dave Chinner653c60b2015-02-23 21:43:37 +1100189 ASSERT((lock_flags & (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)) !=
190 (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL));
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100191 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
192 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
Dave Chinner0952c812015-08-19 10:32:49 +1000193 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_SUBCLASS_MASK)) == 0);
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100194
195 if (lock_flags & XFS_IOLOCK_EXCL)
196 mrupdate_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
197 else if (lock_flags & XFS_IOLOCK_SHARED)
198 mraccess_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
199
Dave Chinner653c60b2015-02-23 21:43:37 +1100200 if (lock_flags & XFS_MMAPLOCK_EXCL)
201 mrupdate_nested(&ip->i_mmaplock, XFS_MMAPLOCK_DEP(lock_flags));
202 else if (lock_flags & XFS_MMAPLOCK_SHARED)
203 mraccess_nested(&ip->i_mmaplock, XFS_MMAPLOCK_DEP(lock_flags));
204
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100205 if (lock_flags & XFS_ILOCK_EXCL)
206 mrupdate_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
207 else if (lock_flags & XFS_ILOCK_SHARED)
208 mraccess_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
209}
210
211/*
212 * This is just like xfs_ilock(), except that the caller
213 * is guaranteed not to sleep. It returns 1 if it gets
214 * the requested locks and 0 otherwise. If the IO lock is
215 * obtained but the inode lock cannot be, then the IO lock
216 * is dropped before returning.
217 *
218 * ip -- the inode being locked
219 * lock_flags -- this parameter indicates the inode's locks to be
220 * to be locked. See the comment for xfs_ilock() for a list
221 * of valid values.
222 */
223int
224xfs_ilock_nowait(
225 xfs_inode_t *ip,
226 uint lock_flags)
227{
228 trace_xfs_ilock_nowait(ip, lock_flags, _RET_IP_);
229
230 /*
231 * You can't set both SHARED and EXCL for the same lock,
232 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
233 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
234 */
235 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
236 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
Dave Chinner653c60b2015-02-23 21:43:37 +1100237 ASSERT((lock_flags & (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)) !=
238 (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL));
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100239 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
240 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
Dave Chinner0952c812015-08-19 10:32:49 +1000241 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_SUBCLASS_MASK)) == 0);
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100242
243 if (lock_flags & XFS_IOLOCK_EXCL) {
244 if (!mrtryupdate(&ip->i_iolock))
245 goto out;
246 } else if (lock_flags & XFS_IOLOCK_SHARED) {
247 if (!mrtryaccess(&ip->i_iolock))
248 goto out;
249 }
Dave Chinner653c60b2015-02-23 21:43:37 +1100250
251 if (lock_flags & XFS_MMAPLOCK_EXCL) {
252 if (!mrtryupdate(&ip->i_mmaplock))
253 goto out_undo_iolock;
254 } else if (lock_flags & XFS_MMAPLOCK_SHARED) {
255 if (!mrtryaccess(&ip->i_mmaplock))
256 goto out_undo_iolock;
257 }
258
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100259 if (lock_flags & XFS_ILOCK_EXCL) {
260 if (!mrtryupdate(&ip->i_lock))
Dave Chinner653c60b2015-02-23 21:43:37 +1100261 goto out_undo_mmaplock;
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100262 } else if (lock_flags & XFS_ILOCK_SHARED) {
263 if (!mrtryaccess(&ip->i_lock))
Dave Chinner653c60b2015-02-23 21:43:37 +1100264 goto out_undo_mmaplock;
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100265 }
266 return 1;
267
Dave Chinner653c60b2015-02-23 21:43:37 +1100268out_undo_mmaplock:
269 if (lock_flags & XFS_MMAPLOCK_EXCL)
270 mrunlock_excl(&ip->i_mmaplock);
271 else if (lock_flags & XFS_MMAPLOCK_SHARED)
272 mrunlock_shared(&ip->i_mmaplock);
273out_undo_iolock:
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100274 if (lock_flags & XFS_IOLOCK_EXCL)
275 mrunlock_excl(&ip->i_iolock);
276 else if (lock_flags & XFS_IOLOCK_SHARED)
277 mrunlock_shared(&ip->i_iolock);
Dave Chinner653c60b2015-02-23 21:43:37 +1100278out:
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100279 return 0;
280}
281
282/*
283 * xfs_iunlock() is used to drop the inode locks acquired with
284 * xfs_ilock() and xfs_ilock_nowait(). The caller must pass
285 * in the flags given to xfs_ilock() or xfs_ilock_nowait() so
286 * that we know which locks to drop.
287 *
288 * ip -- the inode being unlocked
289 * lock_flags -- this parameter indicates the inode's locks to be
290 * to be unlocked. See the comment for xfs_ilock() for a list
291 * of valid values for this parameter.
292 *
293 */
294void
295xfs_iunlock(
296 xfs_inode_t *ip,
297 uint lock_flags)
298{
299 /*
300 * You can't set both SHARED and EXCL for the same lock,
301 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
302 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
303 */
304 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
305 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
Dave Chinner653c60b2015-02-23 21:43:37 +1100306 ASSERT((lock_flags & (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL)) !=
307 (XFS_MMAPLOCK_SHARED | XFS_MMAPLOCK_EXCL));
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100308 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
309 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
Dave Chinner0952c812015-08-19 10:32:49 +1000310 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_SUBCLASS_MASK)) == 0);
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100311 ASSERT(lock_flags != 0);
312
313 if (lock_flags & XFS_IOLOCK_EXCL)
314 mrunlock_excl(&ip->i_iolock);
315 else if (lock_flags & XFS_IOLOCK_SHARED)
316 mrunlock_shared(&ip->i_iolock);
317
Dave Chinner653c60b2015-02-23 21:43:37 +1100318 if (lock_flags & XFS_MMAPLOCK_EXCL)
319 mrunlock_excl(&ip->i_mmaplock);
320 else if (lock_flags & XFS_MMAPLOCK_SHARED)
321 mrunlock_shared(&ip->i_mmaplock);
322
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100323 if (lock_flags & XFS_ILOCK_EXCL)
324 mrunlock_excl(&ip->i_lock);
325 else if (lock_flags & XFS_ILOCK_SHARED)
326 mrunlock_shared(&ip->i_lock);
327
328 trace_xfs_iunlock(ip, lock_flags, _RET_IP_);
329}
330
331/*
332 * give up write locks. the i/o lock cannot be held nested
333 * if it is being demoted.
334 */
335void
336xfs_ilock_demote(
337 xfs_inode_t *ip,
338 uint lock_flags)
339{
Dave Chinner653c60b2015-02-23 21:43:37 +1100340 ASSERT(lock_flags & (XFS_IOLOCK_EXCL|XFS_MMAPLOCK_EXCL|XFS_ILOCK_EXCL));
341 ASSERT((lock_flags &
342 ~(XFS_IOLOCK_EXCL|XFS_MMAPLOCK_EXCL|XFS_ILOCK_EXCL)) == 0);
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100343
344 if (lock_flags & XFS_ILOCK_EXCL)
345 mrdemote(&ip->i_lock);
Dave Chinner653c60b2015-02-23 21:43:37 +1100346 if (lock_flags & XFS_MMAPLOCK_EXCL)
347 mrdemote(&ip->i_mmaplock);
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100348 if (lock_flags & XFS_IOLOCK_EXCL)
349 mrdemote(&ip->i_iolock);
350
351 trace_xfs_ilock_demote(ip, lock_flags, _RET_IP_);
352}
353
Dave Chinner742ae1e2013-04-30 21:39:34 +1000354#if defined(DEBUG) || defined(XFS_WARN)
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100355int
356xfs_isilocked(
357 xfs_inode_t *ip,
358 uint lock_flags)
359{
360 if (lock_flags & (XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)) {
361 if (!(lock_flags & XFS_ILOCK_SHARED))
362 return !!ip->i_lock.mr_writer;
363 return rwsem_is_locked(&ip->i_lock.mr_lock);
364 }
365
Dave Chinner653c60b2015-02-23 21:43:37 +1100366 if (lock_flags & (XFS_MMAPLOCK_EXCL|XFS_MMAPLOCK_SHARED)) {
367 if (!(lock_flags & XFS_MMAPLOCK_SHARED))
368 return !!ip->i_mmaplock.mr_writer;
369 return rwsem_is_locked(&ip->i_mmaplock.mr_lock);
370 }
371
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100372 if (lock_flags & (XFS_IOLOCK_EXCL|XFS_IOLOCK_SHARED)) {
373 if (!(lock_flags & XFS_IOLOCK_SHARED))
374 return !!ip->i_iolock.mr_writer;
375 return rwsem_is_locked(&ip->i_iolock.mr_lock);
376 }
377
378 ASSERT(0);
379 return 0;
380}
381#endif
382
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000383#ifdef DEBUG
384int xfs_locked_n;
385int xfs_small_retries;
386int xfs_middle_retries;
387int xfs_lots_retries;
388int xfs_lock_delays;
389#endif
390
Dave Chinnerb6a99472015-08-25 10:05:13 +1000391/*
392 * xfs_lockdep_subclass_ok() is only used in an ASSERT, so is only called when
393 * DEBUG or XFS_WARN is set. And MAX_LOCKDEP_SUBCLASSES is then only defined
394 * when CONFIG_LOCKDEP is set. Hence the complex define below to avoid build
395 * errors and warnings.
396 */
397#if (defined(DEBUG) || defined(XFS_WARN)) && defined(CONFIG_LOCKDEP)
Dave Chinner3403ccc2015-08-20 09:27:49 +1000398static bool
399xfs_lockdep_subclass_ok(
400 int subclass)
401{
402 return subclass < MAX_LOCKDEP_SUBCLASSES;
403}
404#else
405#define xfs_lockdep_subclass_ok(subclass) (true)
406#endif
407
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000408/*
Dave Chinner653c60b2015-02-23 21:43:37 +1100409 * Bump the subclass so xfs_lock_inodes() acquires each lock with a different
Dave Chinner0952c812015-08-19 10:32:49 +1000410 * value. This can be called for any type of inode lock combination, including
411 * parent locking. Care must be taken to ensure we don't overrun the subclass
412 * storage fields in the class mask we build.
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000413 */
414static inline int
415xfs_lock_inumorder(int lock_mode, int subclass)
416{
Dave Chinner0952c812015-08-19 10:32:49 +1000417 int class = 0;
418
419 ASSERT(!(lock_mode & (XFS_ILOCK_PARENT | XFS_ILOCK_RTBITMAP |
420 XFS_ILOCK_RTSUM)));
Dave Chinner3403ccc2015-08-20 09:27:49 +1000421 ASSERT(xfs_lockdep_subclass_ok(subclass));
Dave Chinner0952c812015-08-19 10:32:49 +1000422
Dave Chinner653c60b2015-02-23 21:43:37 +1100423 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL)) {
Dave Chinner0952c812015-08-19 10:32:49 +1000424 ASSERT(subclass <= XFS_IOLOCK_MAX_SUBCLASS);
Dave Chinner3403ccc2015-08-20 09:27:49 +1000425 ASSERT(xfs_lockdep_subclass_ok(subclass +
426 XFS_IOLOCK_PARENT_VAL));
Dave Chinner0952c812015-08-19 10:32:49 +1000427 class += subclass << XFS_IOLOCK_SHIFT;
428 if (lock_mode & XFS_IOLOCK_PARENT)
429 class += XFS_IOLOCK_PARENT_VAL << XFS_IOLOCK_SHIFT;
Dave Chinner653c60b2015-02-23 21:43:37 +1100430 }
431
432 if (lock_mode & (XFS_MMAPLOCK_SHARED|XFS_MMAPLOCK_EXCL)) {
Dave Chinner0952c812015-08-19 10:32:49 +1000433 ASSERT(subclass <= XFS_MMAPLOCK_MAX_SUBCLASS);
434 class += subclass << XFS_MMAPLOCK_SHIFT;
Dave Chinner653c60b2015-02-23 21:43:37 +1100435 }
436
Dave Chinner0952c812015-08-19 10:32:49 +1000437 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) {
438 ASSERT(subclass <= XFS_ILOCK_MAX_SUBCLASS);
439 class += subclass << XFS_ILOCK_SHIFT;
440 }
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000441
Dave Chinner0952c812015-08-19 10:32:49 +1000442 return (lock_mode & ~XFS_LOCK_SUBCLASS_MASK) | class;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000443}
444
445/*
Dave Chinner95afcf52015-03-25 14:03:32 +1100446 * The following routine will lock n inodes in exclusive mode. We assume the
447 * caller calls us with the inodes in i_ino order.
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000448 *
Dave Chinner95afcf52015-03-25 14:03:32 +1100449 * We need to detect deadlock where an inode that we lock is in the AIL and we
450 * start waiting for another inode that is locked by a thread in a long running
451 * transaction (such as truncate). This can result in deadlock since the long
452 * running trans might need to wait for the inode we just locked in order to
453 * push the tail and free space in the log.
Dave Chinner0952c812015-08-19 10:32:49 +1000454 *
455 * xfs_lock_inodes() can only be used to lock one type of lock at a time -
456 * the iolock, the mmaplock or the ilock, but not more than one at a time. If we
457 * lock more than one at a time, lockdep will report false positives saying we
458 * have violated locking orders.
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000459 */
Eric Sandeen0d5a75e2016-06-01 17:38:15 +1000460static void
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000461xfs_lock_inodes(
462 xfs_inode_t **ips,
463 int inodes,
464 uint lock_mode)
465{
466 int attempts = 0, i, j, try_lock;
467 xfs_log_item_t *lp;
468
Dave Chinner0952c812015-08-19 10:32:49 +1000469 /*
470 * Currently supports between 2 and 5 inodes with exclusive locking. We
471 * support an arbitrary depth of locking here, but absolute limits on
472 * inodes depend on the the type of locking and the limits placed by
473 * lockdep annotations in xfs_lock_inumorder. These are all checked by
474 * the asserts.
475 */
Dave Chinner95afcf52015-03-25 14:03:32 +1100476 ASSERT(ips && inodes >= 2 && inodes <= 5);
Dave Chinner0952c812015-08-19 10:32:49 +1000477 ASSERT(lock_mode & (XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL |
478 XFS_ILOCK_EXCL));
479 ASSERT(!(lock_mode & (XFS_IOLOCK_SHARED | XFS_MMAPLOCK_SHARED |
480 XFS_ILOCK_SHARED)));
481 ASSERT(!(lock_mode & XFS_IOLOCK_EXCL) ||
482 inodes <= XFS_IOLOCK_MAX_SUBCLASS + 1);
483 ASSERT(!(lock_mode & XFS_MMAPLOCK_EXCL) ||
484 inodes <= XFS_MMAPLOCK_MAX_SUBCLASS + 1);
485 ASSERT(!(lock_mode & XFS_ILOCK_EXCL) ||
486 inodes <= XFS_ILOCK_MAX_SUBCLASS + 1);
487
488 if (lock_mode & XFS_IOLOCK_EXCL) {
489 ASSERT(!(lock_mode & (XFS_MMAPLOCK_EXCL | XFS_ILOCK_EXCL)));
490 } else if (lock_mode & XFS_MMAPLOCK_EXCL)
491 ASSERT(!(lock_mode & XFS_ILOCK_EXCL));
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000492
493 try_lock = 0;
494 i = 0;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000495again:
496 for (; i < inodes; i++) {
497 ASSERT(ips[i]);
498
Dave Chinner95afcf52015-03-25 14:03:32 +1100499 if (i && (ips[i] == ips[i - 1])) /* Already locked */
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000500 continue;
501
502 /*
Dave Chinner95afcf52015-03-25 14:03:32 +1100503 * If try_lock is not set yet, make sure all locked inodes are
504 * not in the AIL. If any are, set try_lock to be used later.
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000505 */
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000506 if (!try_lock) {
507 for (j = (i - 1); j >= 0 && !try_lock; j--) {
508 lp = (xfs_log_item_t *)ips[j]->i_itemp;
Dave Chinner95afcf52015-03-25 14:03:32 +1100509 if (lp && (lp->li_flags & XFS_LI_IN_AIL))
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000510 try_lock++;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000511 }
512 }
513
514 /*
515 * If any of the previous locks we have locked is in the AIL,
516 * we must TRY to get the second and subsequent locks. If
517 * we can't get any, we must release all we have
518 * and try again.
519 */
Dave Chinner95afcf52015-03-25 14:03:32 +1100520 if (!try_lock) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000521 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
Dave Chinner95afcf52015-03-25 14:03:32 +1100522 continue;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000523 }
Dave Chinner95afcf52015-03-25 14:03:32 +1100524
525 /* try_lock means we have an inode locked that is in the AIL. */
526 ASSERT(i != 0);
527 if (xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i)))
528 continue;
529
530 /*
531 * Unlock all previous guys and try again. xfs_iunlock will try
532 * to push the tail if the inode is in the AIL.
533 */
534 attempts++;
535 for (j = i - 1; j >= 0; j--) {
536 /*
537 * Check to see if we've already unlocked this one. Not
538 * the first one going back, and the inode ptr is the
539 * same.
540 */
541 if (j != (i - 1) && ips[j] == ips[j + 1])
542 continue;
543
544 xfs_iunlock(ips[j], lock_mode);
545 }
546
547 if ((attempts % 5) == 0) {
548 delay(1); /* Don't just spin the CPU */
549#ifdef DEBUG
550 xfs_lock_delays++;
551#endif
552 }
553 i = 0;
554 try_lock = 0;
555 goto again;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000556 }
557
558#ifdef DEBUG
559 if (attempts) {
560 if (attempts < 5) xfs_small_retries++;
561 else if (attempts < 100) xfs_middle_retries++;
562 else xfs_lots_retries++;
563 } else {
564 xfs_locked_n++;
565 }
566#endif
567}
568
569/*
Dave Chinner653c60b2015-02-23 21:43:37 +1100570 * xfs_lock_two_inodes() can only be used to lock one type of lock at a time -
571 * the iolock, the mmaplock or the ilock, but not more than one at a time. If we
572 * lock more than one at a time, lockdep will report false positives saying we
573 * have violated locking orders.
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000574 */
575void
576xfs_lock_two_inodes(
577 xfs_inode_t *ip0,
578 xfs_inode_t *ip1,
579 uint lock_mode)
580{
581 xfs_inode_t *temp;
582 int attempts = 0;
583 xfs_log_item_t *lp;
584
Dave Chinner653c60b2015-02-23 21:43:37 +1100585 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL)) {
586 ASSERT(!(lock_mode & (XFS_MMAPLOCK_SHARED|XFS_MMAPLOCK_EXCL)));
587 ASSERT(!(lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)));
588 } else if (lock_mode & (XFS_MMAPLOCK_SHARED|XFS_MMAPLOCK_EXCL))
589 ASSERT(!(lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)));
590
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000591 ASSERT(ip0->i_ino != ip1->i_ino);
592
593 if (ip0->i_ino > ip1->i_ino) {
594 temp = ip0;
595 ip0 = ip1;
596 ip1 = temp;
597 }
598
599 again:
600 xfs_ilock(ip0, xfs_lock_inumorder(lock_mode, 0));
601
602 /*
603 * If the first lock we have locked is in the AIL, we must TRY to get
604 * the second lock. If we can't get it, we must release the first one
605 * and try again.
606 */
607 lp = (xfs_log_item_t *)ip0->i_itemp;
608 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
609 if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(lock_mode, 1))) {
610 xfs_iunlock(ip0, lock_mode);
611 if ((++attempts % 5) == 0)
612 delay(1); /* Don't just spin the CPU */
613 goto again;
614 }
615 } else {
616 xfs_ilock(ip1, xfs_lock_inumorder(lock_mode, 1));
617 }
618}
619
620
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100621void
622__xfs_iflock(
623 struct xfs_inode *ip)
624{
625 wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IFLOCK_BIT);
626 DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IFLOCK_BIT);
627
628 do {
629 prepare_to_wait_exclusive(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
630 if (xfs_isiflocked(ip))
631 io_schedule();
632 } while (!xfs_iflock_nowait(ip));
633
634 finish_wait(wq, &wait.wait);
635}
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637STATIC uint
638_xfs_dic2xflags(
Dave Chinner58f88ca2016-01-04 16:44:15 +1100639 __uint16_t di_flags,
640 uint64_t di_flags2,
641 bool has_attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 uint flags = 0;
644
645 if (di_flags & XFS_DIFLAG_ANY) {
646 if (di_flags & XFS_DIFLAG_REALTIME)
Dave Chinnere7b89482016-01-04 16:44:15 +1100647 flags |= FS_XFLAG_REALTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (di_flags & XFS_DIFLAG_PREALLOC)
Dave Chinnere7b89482016-01-04 16:44:15 +1100649 flags |= FS_XFLAG_PREALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (di_flags & XFS_DIFLAG_IMMUTABLE)
Dave Chinnere7b89482016-01-04 16:44:15 +1100651 flags |= FS_XFLAG_IMMUTABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (di_flags & XFS_DIFLAG_APPEND)
Dave Chinnere7b89482016-01-04 16:44:15 +1100653 flags |= FS_XFLAG_APPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (di_flags & XFS_DIFLAG_SYNC)
Dave Chinnere7b89482016-01-04 16:44:15 +1100655 flags |= FS_XFLAG_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (di_flags & XFS_DIFLAG_NOATIME)
Dave Chinnere7b89482016-01-04 16:44:15 +1100657 flags |= FS_XFLAG_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (di_flags & XFS_DIFLAG_NODUMP)
Dave Chinnere7b89482016-01-04 16:44:15 +1100659 flags |= FS_XFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (di_flags & XFS_DIFLAG_RTINHERIT)
Dave Chinnere7b89482016-01-04 16:44:15 +1100661 flags |= FS_XFLAG_RTINHERIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (di_flags & XFS_DIFLAG_PROJINHERIT)
Dave Chinnere7b89482016-01-04 16:44:15 +1100663 flags |= FS_XFLAG_PROJINHERIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (di_flags & XFS_DIFLAG_NOSYMLINKS)
Dave Chinnere7b89482016-01-04 16:44:15 +1100665 flags |= FS_XFLAG_NOSYMLINKS;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100666 if (di_flags & XFS_DIFLAG_EXTSIZE)
Dave Chinnere7b89482016-01-04 16:44:15 +1100667 flags |= FS_XFLAG_EXTSIZE;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100668 if (di_flags & XFS_DIFLAG_EXTSZINHERIT)
Dave Chinnere7b89482016-01-04 16:44:15 +1100669 flags |= FS_XFLAG_EXTSZINHERIT;
Barry Naujokd3446ea2006-06-09 14:54:19 +1000670 if (di_flags & XFS_DIFLAG_NODEFRAG)
Dave Chinnere7b89482016-01-04 16:44:15 +1100671 flags |= FS_XFLAG_NODEFRAG;
David Chinner2a82b8b2007-07-11 11:09:12 +1000672 if (di_flags & XFS_DIFLAG_FILESTREAM)
Dave Chinnere7b89482016-01-04 16:44:15 +1100673 flags |= FS_XFLAG_FILESTREAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
675
Dave Chinner58f88ca2016-01-04 16:44:15 +1100676 if (di_flags2 & XFS_DIFLAG2_ANY) {
677 if (di_flags2 & XFS_DIFLAG2_DAX)
678 flags |= FS_XFLAG_DAX;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700679 if (di_flags2 & XFS_DIFLAG2_COWEXTSIZE)
680 flags |= FS_XFLAG_COWEXTSIZE;
Dave Chinner58f88ca2016-01-04 16:44:15 +1100681 }
682
683 if (has_attr)
684 flags |= FS_XFLAG_HASATTR;
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return flags;
687}
688
689uint
690xfs_ip2xflags(
Dave Chinner58f88ca2016-01-04 16:44:15 +1100691 struct xfs_inode *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Dave Chinner58f88ca2016-01-04 16:44:15 +1100693 struct xfs_icdinode *dic = &ip->i_d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Dave Chinner58f88ca2016-01-04 16:44:15 +1100695 return _xfs_dic2xflags(dic->di_flags, dic->di_flags2, XFS_IFORK_Q(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698/*
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000699 * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
700 * is allowed, otherwise it has to be an exact match. If a CI match is found,
701 * ci_name->name will point to a the actual name (caller must free) or
702 * will be set to NULL if an exact match is found.
703 */
704int
705xfs_lookup(
706 xfs_inode_t *dp,
707 struct xfs_name *name,
708 xfs_inode_t **ipp,
709 struct xfs_name *ci_name)
710{
711 xfs_ino_t inum;
712 int error;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000713
714 trace_xfs_lookup(dp, name);
715
716 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
Dave Chinner24513372014-06-25 14:58:08 +1000717 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000718
Dave Chinnerdbad7c92015-08-19 10:33:00 +1000719 xfs_ilock(dp, XFS_IOLOCK_SHARED);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000720 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000721 if (error)
Dave Chinnerdbad7c92015-08-19 10:33:00 +1000722 goto out_unlock;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000723
724 error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp);
725 if (error)
726 goto out_free_name;
727
Dave Chinnerdbad7c92015-08-19 10:33:00 +1000728 xfs_iunlock(dp, XFS_IOLOCK_SHARED);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000729 return 0;
730
731out_free_name:
732 if (ci_name)
733 kmem_free(ci_name->name);
Dave Chinnerdbad7c92015-08-19 10:33:00 +1000734out_unlock:
735 xfs_iunlock(dp, XFS_IOLOCK_SHARED);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000736 *ipp = NULL;
737 return error;
738}
739
740/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 * Allocate an inode on disk and return a copy of its in-core version.
742 * The in-core inode is locked exclusively. Set mode, nlink, and rdev
743 * appropriately within the inode. The uid and gid for the inode are
744 * set according to the contents of the given cred structure.
745 *
746 * Use xfs_dialloc() to allocate the on-disk inode. If xfs_dialloc()
Carlos Maiolinocd856db2012-10-20 11:08:19 -0300747 * has a free inode available, call xfs_iget() to obtain the in-core
748 * version of the allocated inode. Finally, fill in the inode and
749 * log its initial contents. In this case, ialloc_context would be
750 * set to NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 *
Carlos Maiolinocd856db2012-10-20 11:08:19 -0300752 * If xfs_dialloc() does not have an available inode, it will replenish
753 * its supply by doing an allocation. Since we can only do one
754 * allocation within a transaction without deadlocks, we must commit
755 * the current transaction before returning the inode itself.
756 * In this case, therefore, we will set ialloc_context and return.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 * The caller should then commit the current transaction, start a new
758 * transaction, and call xfs_ialloc() again to actually get the inode.
759 *
760 * To ensure that some other process does not grab the inode that
761 * was allocated during the first call to xfs_ialloc(), this routine
762 * also returns the [locked] bp pointing to the head of the freelist
763 * as ialloc_context. The caller should hold this buffer across
764 * the commit and pass it back into this routine on the second call.
David Chinnerb11f94d2007-07-11 11:09:33 +1000765 *
766 * If we are allocating quota inodes, we do not have a parent inode
767 * to attach to or associate with (i.e. pip == NULL) because they
768 * are not linked into the directory structure - they are attached
769 * directly to the superblock - and so have no parent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 */
Eric Sandeen0d5a75e2016-06-01 17:38:15 +1000771static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772xfs_ialloc(
773 xfs_trans_t *tp,
774 xfs_inode_t *pip,
Al Viro576b1d62011-07-26 02:50:15 -0400775 umode_t mode,
Nathan Scott31b084a2005-05-05 13:25:00 -0700776 xfs_nlink_t nlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 xfs_dev_t rdev,
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000778 prid_t prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 int okalloc,
780 xfs_buf_t **ialloc_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 xfs_inode_t **ipp)
782{
Christoph Hellwig93848a92013-04-03 16:11:17 +1100783 struct xfs_mount *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 xfs_ino_t ino;
785 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 uint flags;
787 int error;
Dave Chinnere076b0f2014-10-02 09:18:13 +1000788 struct timespec tv;
Dave Chinner39878482016-02-09 16:54:58 +1100789 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 /*
792 * Call the space management code to pick
793 * the on-disk inode to be allocated.
794 */
David Chinnerb11f94d2007-07-11 11:09:33 +1000795 error = xfs_dialloc(tp, pip ? pip->i_ino : 0, mode, okalloc,
Christoph Hellwig08358902012-07-04 10:54:47 -0400796 ialloc_context, &ino);
David Chinnerbf904242008-10-30 17:36:14 +1100797 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return error;
Christoph Hellwig08358902012-07-04 10:54:47 -0400799 if (*ialloc_context || ino == NULLFSINO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 *ipp = NULL;
801 return 0;
802 }
803 ASSERT(*ialloc_context == NULL);
804
805 /*
806 * Get the in-core inode with the lock held exclusively.
807 * This is because we're setting fields here we need
808 * to prevent others from looking at until we're done.
809 */
Christoph Hellwig93848a92013-04-03 16:11:17 +1100810 error = xfs_iget(mp, tp, ino, XFS_IGET_CREATE,
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000811 XFS_ILOCK_EXCL, &ip);
David Chinnerbf904242008-10-30 17:36:14 +1100812 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 ASSERT(ip != NULL);
Dave Chinner39878482016-02-09 16:54:58 +1100815 inode = VFS_I(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Dave Chinner263997a2014-05-20 07:46:40 +1000817 /*
818 * We always convert v1 inodes to v2 now - we only support filesystems
819 * with >= v2 inode capability, so there is no reason for ever leaving
820 * an inode in v1 format.
821 */
822 if (ip->i_d.di_version == 1)
823 ip->i_d.di_version = 2;
824
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100825 inode->i_mode = mode;
Dave Chinner54d7b5c2016-02-09 16:54:58 +1100826 set_nlink(inode, nlink);
Dwight Engen7aab1b22013-08-15 14:08:01 -0400827 ip->i_d.di_uid = xfs_kuid_to_uid(current_fsuid());
828 ip->i_d.di_gid = xfs_kgid_to_gid(current_fsgid());
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000829 xfs_set_projid(ip, prid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000831 if (pip && XFS_INHERIT_GID(pip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 ip->i_d.di_gid = pip->i_d.di_gid;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100833 if ((VFS_I(pip)->i_mode & S_ISGID) && S_ISDIR(mode))
834 inode->i_mode |= S_ISGID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836
837 /*
838 * If the group ID of the new file does not match the effective group
839 * ID or one of the supplementary group IDs, the S_ISGID bit is cleared
840 * (and only if the irix_sgid_inherit compatibility variable is set).
841 */
842 if ((irix_sgid_inherit) &&
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100843 (inode->i_mode & S_ISGID) &&
844 (!in_group_p(xfs_gid_to_kgid(ip->i_d.di_gid))))
845 inode->i_mode &= ~S_ISGID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 ip->i_d.di_size = 0;
848 ip->i_d.di_nextents = 0;
849 ASSERT(ip->i_d.di_nblocks == 0);
Christoph Hellwigdff35fd2008-08-13 16:44:15 +1000850
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700851 tv = current_time(inode);
Dave Chinner39878482016-02-09 16:54:58 +1100852 inode->i_mtime = tv;
853 inode->i_atime = tv;
854 inode->i_ctime = tv;
Christoph Hellwigdff35fd2008-08-13 16:44:15 +1000855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 ip->i_d.di_extsize = 0;
857 ip->i_d.di_dmevmask = 0;
858 ip->i_d.di_dmstate = 0;
859 ip->i_d.di_flags = 0;
Christoph Hellwig93848a92013-04-03 16:11:17 +1100860
861 if (ip->i_d.di_version == 3) {
Dave Chinner83e06f22016-02-09 16:54:58 +1100862 inode->i_version = 1;
Christoph Hellwig93848a92013-04-03 16:11:17 +1100863 ip->i_d.di_flags2 = 0;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700864 ip->i_d.di_cowextsize = 0;
Dave Chinner39878482016-02-09 16:54:58 +1100865 ip->i_d.di_crtime.t_sec = (__int32_t)tv.tv_sec;
866 ip->i_d.di_crtime.t_nsec = (__int32_t)tv.tv_nsec;
Christoph Hellwig93848a92013-04-03 16:11:17 +1100867 }
868
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 flags = XFS_ILOG_CORE;
871 switch (mode & S_IFMT) {
872 case S_IFIFO:
873 case S_IFCHR:
874 case S_IFBLK:
875 case S_IFSOCK:
876 ip->i_d.di_format = XFS_DINODE_FMT_DEV;
877 ip->i_df.if_u2.if_rdev = rdev;
878 ip->i_df.if_flags = 0;
879 flags |= XFS_ILOG_DEV;
880 break;
881 case S_IFREG:
882 case S_IFDIR:
David Chinnerb11f94d2007-07-11 11:09:33 +1000883 if (pip && (pip->i_d.di_flags & XFS_DIFLAG_ANY)) {
Dave Chinner58f88ca2016-01-04 16:44:15 +1100884 uint di_flags = 0;
Nathan Scott365ca832005-06-21 15:39:12 +1000885
Al Viroabbede12011-07-26 02:31:30 -0400886 if (S_ISDIR(mode)) {
Nathan Scott365ca832005-06-21 15:39:12 +1000887 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
888 di_flags |= XFS_DIFLAG_RTINHERIT;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100889 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
890 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
891 ip->i_d.di_extsize = pip->i_d.di_extsize;
892 }
Dave Chinner9336e3a2014-10-02 09:18:40 +1000893 if (pip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
894 di_flags |= XFS_DIFLAG_PROJINHERIT;
Al Viroabbede12011-07-26 02:31:30 -0400895 } else if (S_ISREG(mode)) {
Christoph Hellwig613d7042007-10-11 17:44:08 +1000896 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
Nathan Scott365ca832005-06-21 15:39:12 +1000897 di_flags |= XFS_DIFLAG_REALTIME;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100898 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
899 di_flags |= XFS_DIFLAG_EXTSIZE;
900 ip->i_d.di_extsize = pip->i_d.di_extsize;
901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
903 if ((pip->i_d.di_flags & XFS_DIFLAG_NOATIME) &&
904 xfs_inherit_noatime)
Nathan Scott365ca832005-06-21 15:39:12 +1000905 di_flags |= XFS_DIFLAG_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if ((pip->i_d.di_flags & XFS_DIFLAG_NODUMP) &&
907 xfs_inherit_nodump)
Nathan Scott365ca832005-06-21 15:39:12 +1000908 di_flags |= XFS_DIFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if ((pip->i_d.di_flags & XFS_DIFLAG_SYNC) &&
910 xfs_inherit_sync)
Nathan Scott365ca832005-06-21 15:39:12 +1000911 di_flags |= XFS_DIFLAG_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if ((pip->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) &&
913 xfs_inherit_nosymlinks)
Nathan Scott365ca832005-06-21 15:39:12 +1000914 di_flags |= XFS_DIFLAG_NOSYMLINKS;
Barry Naujokd3446ea2006-06-09 14:54:19 +1000915 if ((pip->i_d.di_flags & XFS_DIFLAG_NODEFRAG) &&
916 xfs_inherit_nodefrag)
917 di_flags |= XFS_DIFLAG_NODEFRAG;
David Chinner2a82b8b2007-07-11 11:09:12 +1000918 if (pip->i_d.di_flags & XFS_DIFLAG_FILESTREAM)
919 di_flags |= XFS_DIFLAG_FILESTREAM;
Dave Chinner58f88ca2016-01-04 16:44:15 +1100920
Nathan Scott365ca832005-06-21 15:39:12 +1000921 ip->i_d.di_flags |= di_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700923 if (pip &&
924 (pip->i_d.di_flags2 & XFS_DIFLAG2_ANY) &&
925 pip->i_d.di_version == 3 &&
926 ip->i_d.di_version == 3) {
Lukas Czernerf90756d72017-09-17 14:06:41 -0700927 uint64_t di_flags2 = 0;
928
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700929 if (pip->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE) {
Lukas Czernerf90756d72017-09-17 14:06:41 -0700930 di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700931 ip->i_d.di_cowextsize = pip->i_d.di_cowextsize;
932 }
Lukas Czernerf90756d72017-09-17 14:06:41 -0700933 if (pip->i_d.di_flags2 & XFS_DIFLAG2_DAX)
934 di_flags2 |= XFS_DIFLAG2_DAX;
935
936 ip->i_d.di_flags2 |= di_flags2;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 /* FALLTHROUGH */
939 case S_IFLNK:
940 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
941 ip->i_df.if_flags = XFS_IFEXTENTS;
942 ip->i_df.if_bytes = ip->i_df.if_real_bytes = 0;
943 ip->i_df.if_u1.if_extents = NULL;
944 break;
945 default:
946 ASSERT(0);
947 }
948 /*
949 * Attribute fork settings for new inode.
950 */
951 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
952 ip->i_d.di_anextents = 0;
953
954 /*
955 * Log the new values stuffed into the inode.
956 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000957 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 xfs_trans_log_inode(tp, ip, flags);
959
Dave Chinner58c90472015-02-23 22:38:08 +1100960 /* now that we have an i_mode we can setup the inode structure */
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000961 xfs_setup_inode(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 *ipp = ip;
964 return 0;
965}
966
Dave Chinnere546cb72013-08-12 20:49:47 +1000967/*
968 * Allocates a new inode from disk and return a pointer to the
969 * incore copy. This routine will internally commit the current
970 * transaction and allocate a new one if the Space Manager needed
971 * to do an allocation to replenish the inode free-list.
972 *
973 * This routine is designed to be called from xfs_create and
974 * xfs_create_dir.
975 *
976 */
977int
978xfs_dir_ialloc(
979 xfs_trans_t **tpp, /* input: current transaction;
980 output: may be a new transaction. */
981 xfs_inode_t *dp, /* directory within whose allocate
982 the inode. */
983 umode_t mode,
984 xfs_nlink_t nlink,
985 xfs_dev_t rdev,
986 prid_t prid, /* project id */
987 int okalloc, /* ok to allocate new space */
988 xfs_inode_t **ipp, /* pointer to inode; it will be
989 locked. */
990 int *committed)
991
992{
993 xfs_trans_t *tp;
Dave Chinnere546cb72013-08-12 20:49:47 +1000994 xfs_inode_t *ip;
995 xfs_buf_t *ialloc_context = NULL;
996 int code;
Dave Chinnere546cb72013-08-12 20:49:47 +1000997 void *dqinfo;
998 uint tflags;
999
1000 tp = *tpp;
1001 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
1002
1003 /*
1004 * xfs_ialloc will return a pointer to an incore inode if
1005 * the Space Manager has an available inode on the free
1006 * list. Otherwise, it will do an allocation and replenish
1007 * the freelist. Since we can only do one allocation per
1008 * transaction without deadlocks, we will need to commit the
1009 * current transaction and start a new one. We will then
1010 * need to call xfs_ialloc again to get the inode.
1011 *
1012 * If xfs_ialloc did an allocation to replenish the freelist,
1013 * it returns the bp containing the head of the freelist as
1014 * ialloc_context. We will hold a lock on it across the
1015 * transaction commit so that no other process can steal
1016 * the inode(s) that we've just allocated.
1017 */
1018 code = xfs_ialloc(tp, dp, mode, nlink, rdev, prid, okalloc,
1019 &ialloc_context, &ip);
1020
1021 /*
1022 * Return an error if we were unable to allocate a new inode.
1023 * This should only happen if we run out of space on disk or
1024 * encounter a disk error.
1025 */
1026 if (code) {
1027 *ipp = NULL;
1028 return code;
1029 }
1030 if (!ialloc_context && !ip) {
1031 *ipp = NULL;
Dave Chinner24513372014-06-25 14:58:08 +10001032 return -ENOSPC;
Dave Chinnere546cb72013-08-12 20:49:47 +10001033 }
1034
1035 /*
1036 * If the AGI buffer is non-NULL, then we were unable to get an
1037 * inode in one operation. We need to commit the current
1038 * transaction and call xfs_ialloc() again. It is guaranteed
1039 * to succeed the second time.
1040 */
1041 if (ialloc_context) {
1042 /*
1043 * Normally, xfs_trans_commit releases all the locks.
1044 * We call bhold to hang on to the ialloc_context across
1045 * the commit. Holding this buffer prevents any other
1046 * processes from doing any allocations in this
1047 * allocation group.
1048 */
1049 xfs_trans_bhold(tp, ialloc_context);
Dave Chinnere546cb72013-08-12 20:49:47 +10001050
1051 /*
1052 * We want the quota changes to be associated with the next
1053 * transaction, NOT this one. So, detach the dqinfo from this
1054 * and attach it to the next transaction.
1055 */
1056 dqinfo = NULL;
1057 tflags = 0;
1058 if (tp->t_dqinfo) {
1059 dqinfo = (void *)tp->t_dqinfo;
1060 tp->t_dqinfo = NULL;
1061 tflags = tp->t_flags & XFS_TRANS_DQ_DIRTY;
1062 tp->t_flags &= ~(XFS_TRANS_DQ_DIRTY);
1063 }
1064
Eryu Guan6e3e6d52016-04-06 09:47:21 +10001065 code = xfs_trans_roll(&tp, NULL);
Christoph Hellwig2e6db6c2015-06-04 13:47:29 +10001066 if (committed != NULL)
Dave Chinnere546cb72013-08-12 20:49:47 +10001067 *committed = 1;
Jie Liu3d3c8b52013-08-12 20:49:59 +10001068
Dave Chinnere546cb72013-08-12 20:49:47 +10001069 /*
1070 * Re-attach the quota info that we detached from prev trx.
1071 */
1072 if (dqinfo) {
1073 tp->t_dqinfo = dqinfo;
1074 tp->t_flags |= tflags;
1075 }
1076
1077 if (code) {
1078 xfs_buf_relse(ialloc_context);
Christoph Hellwig2e6db6c2015-06-04 13:47:29 +10001079 *tpp = tp;
Dave Chinnere546cb72013-08-12 20:49:47 +10001080 *ipp = NULL;
1081 return code;
1082 }
1083 xfs_trans_bjoin(tp, ialloc_context);
1084
1085 /*
1086 * Call ialloc again. Since we've locked out all
1087 * other allocations in this allocation group,
1088 * this call should always succeed.
1089 */
1090 code = xfs_ialloc(tp, dp, mode, nlink, rdev, prid,
1091 okalloc, &ialloc_context, &ip);
1092
1093 /*
1094 * If we get an error at this point, return to the caller
1095 * so that the current transaction can be aborted.
1096 */
1097 if (code) {
1098 *tpp = tp;
1099 *ipp = NULL;
1100 return code;
1101 }
1102 ASSERT(!ialloc_context && ip);
1103
1104 } else {
1105 if (committed != NULL)
1106 *committed = 0;
1107 }
1108
1109 *ipp = ip;
1110 *tpp = tp;
1111
1112 return 0;
1113}
1114
1115/*
Dave Chinner54d7b5c2016-02-09 16:54:58 +11001116 * Decrement the link count on an inode & log the change. If this causes the
1117 * link count to go to zero, move the inode to AGI unlinked list so that it can
1118 * be freed when the last active reference goes away via xfs_inactive().
Dave Chinnere546cb72013-08-12 20:49:47 +10001119 */
Eric Sandeen0d5a75e2016-06-01 17:38:15 +10001120static int /* error */
Dave Chinnere546cb72013-08-12 20:49:47 +10001121xfs_droplink(
1122 xfs_trans_t *tp,
1123 xfs_inode_t *ip)
1124{
Dave Chinnere546cb72013-08-12 20:49:47 +10001125 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1126
Dave Chinnere546cb72013-08-12 20:49:47 +10001127 drop_nlink(VFS_I(ip));
1128 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1129
Dave Chinner54d7b5c2016-02-09 16:54:58 +11001130 if (VFS_I(ip)->i_nlink)
1131 return 0;
1132
1133 return xfs_iunlink(tp, ip);
Dave Chinnere546cb72013-08-12 20:49:47 +10001134}
1135
1136/*
Dave Chinnere546cb72013-08-12 20:49:47 +10001137 * Increment the link count on an inode & log the change.
1138 */
Eric Sandeen0d5a75e2016-06-01 17:38:15 +10001139static int
Dave Chinnere546cb72013-08-12 20:49:47 +10001140xfs_bumplink(
1141 xfs_trans_t *tp,
1142 xfs_inode_t *ip)
1143{
1144 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1145
Dave Chinner263997a2014-05-20 07:46:40 +10001146 ASSERT(ip->i_d.di_version > 1);
Dave Chinnere546cb72013-08-12 20:49:47 +10001147 inc_nlink(VFS_I(ip));
Dave Chinnere546cb72013-08-12 20:49:47 +10001148 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1149 return 0;
1150}
1151
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001152int
1153xfs_create(
1154 xfs_inode_t *dp,
1155 struct xfs_name *name,
1156 umode_t mode,
1157 xfs_dev_t rdev,
1158 xfs_inode_t **ipp)
1159{
1160 int is_dir = S_ISDIR(mode);
1161 struct xfs_mount *mp = dp->i_mount;
1162 struct xfs_inode *ip = NULL;
1163 struct xfs_trans *tp = NULL;
1164 int error;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001165 struct xfs_defer_ops dfops;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001166 xfs_fsblock_t first_block;
1167 bool unlock_dp_on_error = false;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001168 prid_t prid;
1169 struct xfs_dquot *udqp = NULL;
1170 struct xfs_dquot *gdqp = NULL;
1171 struct xfs_dquot *pdqp = NULL;
Brian Foster062647a2014-11-28 14:00:16 +11001172 struct xfs_trans_res *tres;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001173 uint resblks;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001174
1175 trace_xfs_create(dp, name);
1176
1177 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10001178 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001179
Zhi Yong Wu163467d2013-12-18 08:22:39 +08001180 prid = xfs_get_initial_prid(dp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001181
1182 /*
1183 * Make sure that we have allocated dquot(s) on disk.
1184 */
Dwight Engen7aab1b22013-08-15 14:08:01 -04001185 error = xfs_qm_vop_dqalloc(dp, xfs_kuid_to_uid(current_fsuid()),
1186 xfs_kgid_to_gid(current_fsgid()), prid,
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001187 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT,
1188 &udqp, &gdqp, &pdqp);
1189 if (error)
1190 return error;
1191
1192 if (is_dir) {
1193 rdev = 0;
1194 resblks = XFS_MKDIR_SPACE_RES(mp, name->len);
Brian Foster062647a2014-11-28 14:00:16 +11001195 tres = &M_RES(mp)->tr_mkdir;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001196 } else {
1197 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
Brian Foster062647a2014-11-28 14:00:16 +11001198 tres = &M_RES(mp)->tr_create;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001199 }
1200
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001201 /*
1202 * Initially assume that the file does not exist and
1203 * reserve the resources for that case. If that is not
1204 * the case we'll drop the one we have and get a more
1205 * appropriate transaction later.
1206 */
Christoph Hellwig253f4912016-04-06 09:19:55 +10001207 error = xfs_trans_alloc(mp, tres, resblks, 0, 0, &tp);
Dave Chinner24513372014-06-25 14:58:08 +10001208 if (error == -ENOSPC) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001209 /* flush outstanding delalloc blocks and retry */
1210 xfs_flush_inodes(mp);
Christoph Hellwig253f4912016-04-06 09:19:55 +10001211 error = xfs_trans_alloc(mp, tres, resblks, 0, 0, &tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001212 }
Dave Chinner24513372014-06-25 14:58:08 +10001213 if (error == -ENOSPC) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001214 /* No space at all so try a "no-allocation" reservation */
1215 resblks = 0;
Christoph Hellwig253f4912016-04-06 09:19:55 +10001216 error = xfs_trans_alloc(mp, tres, 0, 0, 0, &tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001217 }
Christoph Hellwig4906e212015-06-04 13:47:56 +10001218 if (error)
Christoph Hellwig253f4912016-04-06 09:19:55 +10001219 goto out_release_inode;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001220
Dave Chinnerdbad7c92015-08-19 10:33:00 +10001221 xfs_ilock(dp, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL |
1222 XFS_IOLOCK_PARENT | XFS_ILOCK_PARENT);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001223 unlock_dp_on_error = true;
1224
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001225 xfs_defer_init(&dfops, &first_block);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001226
1227 /*
1228 * Reserve disk quota and the inode.
1229 */
1230 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp,
1231 pdqp, resblks, 1, 0);
1232 if (error)
1233 goto out_trans_cancel;
1234
Eric Sandeen94f3cad2014-09-09 11:57:52 +10001235 if (!resblks) {
1236 error = xfs_dir_canenter(tp, dp, name);
1237 if (error)
1238 goto out_trans_cancel;
1239 }
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001240
1241 /*
1242 * A newly created regular or special file just has one directory
1243 * entry pointing to them, but a directory also the "." entry
1244 * pointing to itself.
1245 */
1246 error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev,
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001247 prid, resblks > 0, &ip, NULL);
Jan Karad6077aa2015-07-29 11:52:08 +10001248 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10001249 goto out_trans_cancel;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001250
1251 /*
1252 * Now we join the directory inode to the transaction. We do not do it
1253 * earlier because xfs_dir_ialloc might commit the previous transaction
1254 * (and release all the locks). An error from here on will result in
1255 * the transaction cancel unlocking dp so don't do it explicitly in the
1256 * error path.
1257 */
Dave Chinnerdbad7c92015-08-19 10:33:00 +10001258 xfs_trans_ijoin(tp, dp, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001259 unlock_dp_on_error = false;
1260
1261 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001262 &first_block, &dfops, resblks ?
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001263 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
1264 if (error) {
Dave Chinner24513372014-06-25 14:58:08 +10001265 ASSERT(error != -ENOSPC);
Christoph Hellwig4906e212015-06-04 13:47:56 +10001266 goto out_trans_cancel;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001267 }
1268 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1269 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1270
1271 if (is_dir) {
1272 error = xfs_dir_init(tp, ip, dp);
1273 if (error)
1274 goto out_bmap_cancel;
1275
1276 error = xfs_bumplink(tp, dp);
1277 if (error)
1278 goto out_bmap_cancel;
1279 }
1280
1281 /*
1282 * If this is a synchronous mount, make sure that the
1283 * create transaction goes to disk before returning to
1284 * the user.
1285 */
1286 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
1287 xfs_trans_set_sync(tp);
1288
1289 /*
1290 * Attach the dquot(s) to the inodes and modify them incore.
1291 * These ids of the inode couldn't have changed since the new
1292 * inode has been locked ever since it was created.
1293 */
1294 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
1295
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001296 error = xfs_defer_finish(&tp, &dfops, NULL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001297 if (error)
1298 goto out_bmap_cancel;
1299
Christoph Hellwig70393312015-06-04 13:48:08 +10001300 error = xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001301 if (error)
1302 goto out_release_inode;
1303
1304 xfs_qm_dqrele(udqp);
1305 xfs_qm_dqrele(gdqp);
1306 xfs_qm_dqrele(pdqp);
1307
1308 *ipp = ip;
1309 return 0;
1310
1311 out_bmap_cancel:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001312 xfs_defer_cancel(&dfops);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001313 out_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001314 xfs_trans_cancel(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001315 out_release_inode:
1316 /*
Dave Chinner58c90472015-02-23 22:38:08 +11001317 * Wait until after the current transaction is aborted to finish the
1318 * setup of the inode and release the inode. This prevents recursive
1319 * transactions and deadlocks from xfs_inactive.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001320 */
Dave Chinner58c90472015-02-23 22:38:08 +11001321 if (ip) {
1322 xfs_finish_inode_setup(ip);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001323 IRELE(ip);
Dave Chinner58c90472015-02-23 22:38:08 +11001324 }
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001325
1326 xfs_qm_dqrele(udqp);
1327 xfs_qm_dqrele(gdqp);
1328 xfs_qm_dqrele(pdqp);
1329
1330 if (unlock_dp_on_error)
Dave Chinnerdbad7c92015-08-19 10:33:00 +10001331 xfs_iunlock(dp, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001332 return error;
1333}
1334
1335int
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001336xfs_create_tmpfile(
1337 struct xfs_inode *dp,
1338 struct dentry *dentry,
Brian Foster330033d2014-04-17 08:15:30 +10001339 umode_t mode,
1340 struct xfs_inode **ipp)
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001341{
1342 struct xfs_mount *mp = dp->i_mount;
1343 struct xfs_inode *ip = NULL;
1344 struct xfs_trans *tp = NULL;
1345 int error;
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001346 prid_t prid;
1347 struct xfs_dquot *udqp = NULL;
1348 struct xfs_dquot *gdqp = NULL;
1349 struct xfs_dquot *pdqp = NULL;
1350 struct xfs_trans_res *tres;
1351 uint resblks;
1352
1353 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10001354 return -EIO;
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001355
1356 prid = xfs_get_initial_prid(dp);
1357
1358 /*
1359 * Make sure that we have allocated dquot(s) on disk.
1360 */
1361 error = xfs_qm_vop_dqalloc(dp, xfs_kuid_to_uid(current_fsuid()),
1362 xfs_kgid_to_gid(current_fsgid()), prid,
1363 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT,
1364 &udqp, &gdqp, &pdqp);
1365 if (error)
1366 return error;
1367
1368 resblks = XFS_IALLOC_SPACE_RES(mp);
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001369 tres = &M_RES(mp)->tr_create_tmpfile;
Christoph Hellwig253f4912016-04-06 09:19:55 +10001370
1371 error = xfs_trans_alloc(mp, tres, resblks, 0, 0, &tp);
Dave Chinner24513372014-06-25 14:58:08 +10001372 if (error == -ENOSPC) {
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001373 /* No space at all so try a "no-allocation" reservation */
1374 resblks = 0;
Christoph Hellwig253f4912016-04-06 09:19:55 +10001375 error = xfs_trans_alloc(mp, tres, 0, 0, 0, &tp);
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001376 }
Christoph Hellwig4906e212015-06-04 13:47:56 +10001377 if (error)
Christoph Hellwig253f4912016-04-06 09:19:55 +10001378 goto out_release_inode;
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001379
1380 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp,
1381 pdqp, resblks, 1, 0);
1382 if (error)
1383 goto out_trans_cancel;
1384
1385 error = xfs_dir_ialloc(&tp, dp, mode, 1, 0,
1386 prid, resblks > 0, &ip, NULL);
Jan Karad6077aa2015-07-29 11:52:08 +10001387 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10001388 goto out_trans_cancel;
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001389
1390 if (mp->m_flags & XFS_MOUNT_WSYNC)
1391 xfs_trans_set_sync(tp);
1392
1393 /*
1394 * Attach the dquot(s) to the inodes and modify them incore.
1395 * These ids of the inode couldn't have changed since the new
1396 * inode has been locked ever since it was created.
1397 */
1398 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
1399
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001400 error = xfs_iunlink(tp, ip);
1401 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10001402 goto out_trans_cancel;
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001403
Christoph Hellwig70393312015-06-04 13:48:08 +10001404 error = xfs_trans_commit(tp);
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001405 if (error)
1406 goto out_release_inode;
1407
1408 xfs_qm_dqrele(udqp);
1409 xfs_qm_dqrele(gdqp);
1410 xfs_qm_dqrele(pdqp);
1411
Brian Foster330033d2014-04-17 08:15:30 +10001412 *ipp = ip;
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001413 return 0;
1414
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001415 out_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001416 xfs_trans_cancel(tp);
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001417 out_release_inode:
1418 /*
Dave Chinner58c90472015-02-23 22:38:08 +11001419 * Wait until after the current transaction is aborted to finish the
1420 * setup of the inode and release the inode. This prevents recursive
1421 * transactions and deadlocks from xfs_inactive.
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001422 */
Dave Chinner58c90472015-02-23 22:38:08 +11001423 if (ip) {
1424 xfs_finish_inode_setup(ip);
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001425 IRELE(ip);
Dave Chinner58c90472015-02-23 22:38:08 +11001426 }
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001427
1428 xfs_qm_dqrele(udqp);
1429 xfs_qm_dqrele(gdqp);
1430 xfs_qm_dqrele(pdqp);
1431
1432 return error;
1433}
1434
1435int
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001436xfs_link(
1437 xfs_inode_t *tdp,
1438 xfs_inode_t *sip,
1439 struct xfs_name *target_name)
1440{
1441 xfs_mount_t *mp = tdp->i_mount;
1442 xfs_trans_t *tp;
1443 int error;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001444 struct xfs_defer_ops dfops;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001445 xfs_fsblock_t first_block;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001446 int resblks;
1447
1448 trace_xfs_link(tdp, target_name);
1449
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001450 ASSERT(!S_ISDIR(VFS_I(sip)->i_mode));
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001451
1452 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10001453 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001454
1455 error = xfs_qm_dqattach(sip, 0);
1456 if (error)
1457 goto std_return;
1458
1459 error = xfs_qm_dqattach(tdp, 0);
1460 if (error)
1461 goto std_return;
1462
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001463 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
Christoph Hellwig253f4912016-04-06 09:19:55 +10001464 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_link, resblks, 0, 0, &tp);
Dave Chinner24513372014-06-25 14:58:08 +10001465 if (error == -ENOSPC) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001466 resblks = 0;
Christoph Hellwig253f4912016-04-06 09:19:55 +10001467 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_link, 0, 0, 0, &tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001468 }
Christoph Hellwig4906e212015-06-04 13:47:56 +10001469 if (error)
Christoph Hellwig253f4912016-04-06 09:19:55 +10001470 goto std_return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001471
Dave Chinnerdbad7c92015-08-19 10:33:00 +10001472 xfs_ilock(tdp, XFS_IOLOCK_EXCL | XFS_IOLOCK_PARENT);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001473 xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL);
1474
1475 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
Dave Chinnerdbad7c92015-08-19 10:33:00 +10001476 xfs_trans_ijoin(tp, tdp, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001477
1478 /*
1479 * If we are using project inheritance, we only allow hard link
1480 * creation in our tree when the project IDs are the same; else
1481 * the tree quota mechanism could be circumvented.
1482 */
1483 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
1484 (xfs_get_projid(tdp) != xfs_get_projid(sip)))) {
Dave Chinner24513372014-06-25 14:58:08 +10001485 error = -EXDEV;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001486 goto error_return;
1487 }
1488
Eric Sandeen94f3cad2014-09-09 11:57:52 +10001489 if (!resblks) {
1490 error = xfs_dir_canenter(tp, tdp, target_name);
1491 if (error)
1492 goto error_return;
1493 }
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001494
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001495 xfs_defer_init(&dfops, &first_block);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001496
Dave Chinner54d7b5c2016-02-09 16:54:58 +11001497 /*
1498 * Handle initial link state of O_TMPFILE inode
1499 */
1500 if (VFS_I(sip)->i_nlink == 0) {
Zhi Yong Wuab297432013-12-18 08:22:41 +08001501 error = xfs_iunlink_remove(tp, sip);
1502 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10001503 goto error_return;
Zhi Yong Wuab297432013-12-18 08:22:41 +08001504 }
1505
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001506 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001507 &first_block, &dfops, resblks);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001508 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10001509 goto error_return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001510 xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1511 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
1512
1513 error = xfs_bumplink(tp, sip);
1514 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10001515 goto error_return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001516
1517 /*
1518 * If this is a synchronous mount, make sure that the
1519 * link transaction goes to disk before returning to
1520 * the user.
1521 */
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001522 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001523 xfs_trans_set_sync(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001524
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001525 error = xfs_defer_finish(&tp, &dfops, NULL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001526 if (error) {
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001527 xfs_defer_cancel(&dfops);
Christoph Hellwig4906e212015-06-04 13:47:56 +10001528 goto error_return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001529 }
1530
Christoph Hellwig70393312015-06-04 13:48:08 +10001531 return xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001532
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001533 error_return:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001534 xfs_trans_cancel(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001535 std_return:
1536 return error;
1537}
1538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539/*
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001540 * Free up the underlying blocks past new_size. The new size must be smaller
1541 * than the current size. This routine can be used both for the attribute and
1542 * data fork, and does not modify the inode size, which is left to the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 *
David Chinnerf6485052008-04-17 16:50:04 +10001544 * The transaction passed to this routine must have made a permanent log
1545 * reservation of at least XFS_ITRUNCATE_LOG_RES. This routine may commit the
1546 * given transaction and start new ones, so make sure everything involved in
1547 * the transaction is tidy before calling here. Some transaction will be
1548 * returned to the caller to be committed. The incoming transaction must
1549 * already include the inode, and both inode locks must be held exclusively.
1550 * The inode must also be "held" within the transaction. On return the inode
1551 * will be "held" within the returned transaction. This routine does NOT
1552 * require any disk space to be reserved for it within the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 *
David Chinnerf6485052008-04-17 16:50:04 +10001554 * If we get an error, we must return with the inode locked and linked into the
1555 * current transaction. This keeps things simple for the higher level code,
1556 * because it always knows that the inode is locked and held in the transaction
1557 * that returns to it whether errors occur or not. We don't mark the inode
1558 * dirty on error so that transactions can be easily aborted if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 */
1560int
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001561xfs_itruncate_extents(
1562 struct xfs_trans **tpp,
1563 struct xfs_inode *ip,
1564 int whichfork,
1565 xfs_fsize_t new_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001567 struct xfs_mount *mp = ip->i_mount;
1568 struct xfs_trans *tp = *tpp;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001569 struct xfs_defer_ops dfops;
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001570 xfs_fsblock_t first_block;
1571 xfs_fileoff_t first_unmap_block;
1572 xfs_fileoff_t last_block;
1573 xfs_filblks_t unmap_len;
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001574 int error = 0;
1575 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Christoph Hellwig0b561852012-07-04 11:13:31 -04001577 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1578 ASSERT(!atomic_read(&VFS_I(ip)->i_count) ||
1579 xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00001580 ASSERT(new_size <= XFS_ISIZE(ip));
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001581 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 ASSERT(ip->i_itemp != NULL);
Christoph Hellwig898621d2010-06-24 11:36:58 +10001583 ASSERT(ip->i_itemp->ili_lock_flags == 0);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001584 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Christoph Hellwig673e8e52011-12-18 20:00:04 +00001586 trace_xfs_itruncate_extents_start(ip, new_size);
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 /*
1589 * Since it is possible for space to become allocated beyond
1590 * the end of the file (in a crash where the space is allocated
1591 * but the inode size is not yet updated), simply remove any
1592 * blocks which show up between the new EOF and the maximum
1593 * possible file size. If the first block to be removed is
1594 * beyond the maximum file size (ie it is the same as last_block),
1595 * then there is nothing to do.
1596 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001597 first_unmap_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size);
Dave Chinner32972382012-06-08 15:44:54 +10001598 last_block = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001599 if (first_unmap_block == last_block)
1600 return 0;
1601
1602 ASSERT(first_unmap_block < last_block);
1603 unmap_len = last_block - first_unmap_block + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 while (!done) {
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001605 xfs_defer_init(&dfops, &first_block);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001606 error = xfs_bunmapi(tp, ip,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001607 first_unmap_block, unmap_len,
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001608 xfs_bmapi_aflag(whichfork),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 XFS_ITRUNC_MAX_EXTENTS,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001610 &first_block, &dfops,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10001611 &done);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001612 if (error)
1613 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615 /*
1616 * Duplicate the transaction that has the permanent
1617 * reservation and commit the old transaction.
1618 */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001619 error = xfs_defer_finish(&tp, &dfops, ip);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001620 if (error)
1621 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Christoph Hellwig2e6db6c2015-06-04 13:47:29 +10001623 error = xfs_trans_roll(&tp, ip);
David Chinnerf6485052008-04-17 16:50:04 +10001624 if (error)
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001625 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 }
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001627
Darrick J. Wongaa8968f2016-10-03 09:11:38 -07001628 /* Remove all pending CoW reservations. */
1629 error = xfs_reflink_cancel_cow_blocks(ip, &tp, first_unmap_block,
Christoph Hellwig3b83a022017-03-07 16:45:58 -08001630 last_block, true);
Darrick J. Wongaa8968f2016-10-03 09:11:38 -07001631 if (error)
1632 goto out;
1633
1634 /*
Darrick J. Wong4e9de112017-09-18 09:41:16 -07001635 * Clear the reflink flag if there are no data fork blocks and
1636 * there are no extents staged in the cow fork.
Darrick J. Wongaa8968f2016-10-03 09:11:38 -07001637 */
Darrick J. Wong4e9de112017-09-18 09:41:16 -07001638 if (xfs_is_reflink_inode(ip) && ip->i_cnextents == 0) {
1639 if (ip->i_d.di_nblocks == 0)
1640 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
Darrick J. Wong83104d42016-10-03 09:11:46 -07001641 xfs_inode_clear_cowblocks_tag(ip);
1642 }
Darrick J. Wongaa8968f2016-10-03 09:11:38 -07001643
Christoph Hellwig673e8e52011-12-18 20:00:04 +00001644 /*
1645 * Always re-log the inode so that our permanent transaction can keep
1646 * on rolling it forward in the log.
1647 */
1648 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1649
1650 trace_xfs_itruncate_extents_end(ip, new_size);
1651
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001652out:
1653 *tpp = tp;
1654 return error;
1655out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 /*
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001657 * If the bunmapi call encounters an error, return to the caller where
1658 * the transaction can be properly aborted. We just need to make sure
1659 * we're not holding any resources that we were not when we came in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001661 xfs_defer_cancel(&dfops);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001662 goto out;
1663}
1664
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001665int
1666xfs_release(
1667 xfs_inode_t *ip)
1668{
1669 xfs_mount_t *mp = ip->i_mount;
1670 int error;
1671
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001672 if (!S_ISREG(VFS_I(ip)->i_mode) || (VFS_I(ip)->i_mode == 0))
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001673 return 0;
1674
1675 /* If this is a read-only mount, don't do this (would generate I/O) */
1676 if (mp->m_flags & XFS_MOUNT_RDONLY)
1677 return 0;
1678
1679 if (!XFS_FORCED_SHUTDOWN(mp)) {
1680 int truncated;
1681
1682 /*
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001683 * If we previously truncated this file and removed old data
1684 * in the process, we want to initiate "early" writeout on
1685 * the last close. This is an attempt to combat the notorious
1686 * NULL files problem which is particularly noticeable from a
1687 * truncate down, buffered (re-)write (delalloc), followed by
1688 * a crash. What we are effectively doing here is
1689 * significantly reducing the time window where we'd otherwise
1690 * be exposed to that problem.
1691 */
1692 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
1693 if (truncated) {
1694 xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE);
Dave Chinnereac152b2014-08-04 13:22:49 +10001695 if (ip->i_delayed_blks > 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001696 error = filemap_flush(VFS_I(ip)->i_mapping);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001697 if (error)
1698 return error;
1699 }
1700 }
1701 }
1702
Dave Chinner54d7b5c2016-02-09 16:54:58 +11001703 if (VFS_I(ip)->i_nlink == 0)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001704 return 0;
1705
1706 if (xfs_can_free_eofblocks(ip, false)) {
1707
1708 /*
Brian Foster798b1dc2017-01-27 23:22:55 -08001709 * Check if the inode is being opened, written and closed
1710 * frequently and we have delayed allocation blocks outstanding
1711 * (e.g. streaming writes from the NFS server), truncating the
1712 * blocks past EOF will cause fragmentation to occur.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001713 *
Brian Foster798b1dc2017-01-27 23:22:55 -08001714 * In this case don't do the truncation, but we have to be
1715 * careful how we detect this case. Blocks beyond EOF show up as
1716 * i_delayed_blks even when the inode is clean, so we need to
1717 * truncate them away first before checking for a dirty release.
1718 * Hence on the first dirty close we will still remove the
1719 * speculative allocation, but after that we will leave it in
1720 * place.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001721 */
1722 if (xfs_iflags_test(ip, XFS_IDIRTY_RELEASE))
1723 return 0;
Brian Foster798b1dc2017-01-27 23:22:55 -08001724 /*
1725 * If we can't get the iolock just skip truncating the blocks
1726 * past EOF because we could deadlock with the mmap_sem
1727 * otherwise. We'll get another chance to drop them once the
1728 * last reference to the inode is dropped, so we'll never leak
1729 * blocks permanently.
1730 */
1731 if (xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) {
1732 error = xfs_free_eofblocks(ip);
1733 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1734 if (error)
1735 return error;
1736 }
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001737
1738 /* delalloc blocks after truncation means it really is dirty */
1739 if (ip->i_delayed_blks)
1740 xfs_iflags_set(ip, XFS_IDIRTY_RELEASE);
1741 }
1742 return 0;
1743}
1744
1745/*
Brian Fosterf7be2d72013-09-20 11:06:10 -04001746 * xfs_inactive_truncate
1747 *
1748 * Called to perform a truncate when an inode becomes unlinked.
1749 */
1750STATIC int
1751xfs_inactive_truncate(
1752 struct xfs_inode *ip)
1753{
1754 struct xfs_mount *mp = ip->i_mount;
1755 struct xfs_trans *tp;
1756 int error;
1757
Christoph Hellwig253f4912016-04-06 09:19:55 +10001758 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0, &tp);
Brian Fosterf7be2d72013-09-20 11:06:10 -04001759 if (error) {
1760 ASSERT(XFS_FORCED_SHUTDOWN(mp));
Brian Fosterf7be2d72013-09-20 11:06:10 -04001761 return error;
1762 }
1763
1764 xfs_ilock(ip, XFS_ILOCK_EXCL);
1765 xfs_trans_ijoin(tp, ip, 0);
1766
1767 /*
1768 * Log the inode size first to prevent stale data exposure in the event
1769 * of a system crash before the truncate completes. See the related
Jan Kara69bca802016-05-26 14:46:43 +02001770 * comment in xfs_vn_setattr_size() for details.
Brian Fosterf7be2d72013-09-20 11:06:10 -04001771 */
1772 ip->i_d.di_size = 0;
1773 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1774
1775 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0);
1776 if (error)
1777 goto error_trans_cancel;
1778
1779 ASSERT(ip->i_d.di_nextents == 0);
1780
Christoph Hellwig70393312015-06-04 13:48:08 +10001781 error = xfs_trans_commit(tp);
Brian Fosterf7be2d72013-09-20 11:06:10 -04001782 if (error)
1783 goto error_unlock;
1784
1785 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1786 return 0;
1787
1788error_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001789 xfs_trans_cancel(tp);
Brian Fosterf7be2d72013-09-20 11:06:10 -04001790error_unlock:
1791 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1792 return error;
1793}
1794
1795/*
Brian Foster88877d22013-09-20 11:06:11 -04001796 * xfs_inactive_ifree()
1797 *
1798 * Perform the inode free when an inode is unlinked.
1799 */
1800STATIC int
1801xfs_inactive_ifree(
1802 struct xfs_inode *ip)
1803{
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001804 struct xfs_defer_ops dfops;
Brian Foster88877d22013-09-20 11:06:11 -04001805 xfs_fsblock_t first_block;
Brian Foster88877d22013-09-20 11:06:11 -04001806 struct xfs_mount *mp = ip->i_mount;
1807 struct xfs_trans *tp;
1808 int error;
1809
Brian Foster9d43b182014-04-24 16:00:52 +10001810 /*
Christoph Hellwig08a2a262017-01-25 07:49:35 -08001811 * We try to use a per-AG reservation for any block needed by the finobt
1812 * tree, but as the finobt feature predates the per-AG reservation
1813 * support a degraded file system might not have enough space for the
1814 * reservation at mount time. In that case try to dip into the reserved
1815 * pool and pray.
Brian Foster9d43b182014-04-24 16:00:52 +10001816 *
1817 * Send a warning if the reservation does happen to fail, as the inode
1818 * now remains allocated and sits on the unlinked list until the fs is
1819 * repaired.
1820 */
Christoph Hellwig08a2a262017-01-25 07:49:35 -08001821 if (unlikely(mp->m_inotbt_nores)) {
1822 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ifree,
1823 XFS_IFREE_SPACE_RES(mp), 0, XFS_TRANS_RESERVE,
1824 &tp);
1825 } else {
1826 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ifree, 0, 0, 0, &tp);
1827 }
Brian Foster88877d22013-09-20 11:06:11 -04001828 if (error) {
Dave Chinner24513372014-06-25 14:58:08 +10001829 if (error == -ENOSPC) {
Brian Foster9d43b182014-04-24 16:00:52 +10001830 xfs_warn_ratelimited(mp,
1831 "Failed to remove inode(s) from unlinked list. "
1832 "Please free space, unmount and run xfs_repair.");
1833 } else {
1834 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1835 }
Brian Foster88877d22013-09-20 11:06:11 -04001836 return error;
1837 }
1838
1839 xfs_ilock(ip, XFS_ILOCK_EXCL);
1840 xfs_trans_ijoin(tp, ip, 0);
1841
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001842 xfs_defer_init(&dfops, &first_block);
1843 error = xfs_ifree(tp, ip, &dfops);
Brian Foster88877d22013-09-20 11:06:11 -04001844 if (error) {
1845 /*
1846 * If we fail to free the inode, shut down. The cancel
1847 * might do that, we need to make sure. Otherwise the
1848 * inode might be lost for a long time or forever.
1849 */
1850 if (!XFS_FORCED_SHUTDOWN(mp)) {
1851 xfs_notice(mp, "%s: xfs_ifree returned error %d",
1852 __func__, error);
1853 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1854 }
Christoph Hellwig4906e212015-06-04 13:47:56 +10001855 xfs_trans_cancel(tp);
Brian Foster88877d22013-09-20 11:06:11 -04001856 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1857 return error;
1858 }
1859
1860 /*
1861 * Credit the quota account(s). The inode is gone.
1862 */
1863 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
1864
1865 /*
Brian Fosterd4a97a02015-08-19 10:01:40 +10001866 * Just ignore errors at this point. There is nothing we can do except
1867 * to try to keep going. Make sure it's not a silent error.
Brian Foster88877d22013-09-20 11:06:11 -04001868 */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001869 error = xfs_defer_finish(&tp, &dfops, NULL);
Brian Fosterd4a97a02015-08-19 10:01:40 +10001870 if (error) {
Darrick J. Wong310a75a2016-08-03 11:18:10 +10001871 xfs_notice(mp, "%s: xfs_defer_finish returned error %d",
Brian Foster88877d22013-09-20 11:06:11 -04001872 __func__, error);
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001873 xfs_defer_cancel(&dfops);
Brian Fosterd4a97a02015-08-19 10:01:40 +10001874 }
Christoph Hellwig70393312015-06-04 13:48:08 +10001875 error = xfs_trans_commit(tp);
Brian Foster88877d22013-09-20 11:06:11 -04001876 if (error)
1877 xfs_notice(mp, "%s: xfs_trans_commit returned error %d",
1878 __func__, error);
1879
1880 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1881 return 0;
1882}
1883
1884/*
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001885 * xfs_inactive
1886 *
1887 * This is called when the vnode reference count for the vnode
1888 * goes to zero. If the file has been unlinked, then it must
1889 * now be truncated. Also, we clear all of the read-ahead state
1890 * kept for the inode here since the file is now closed.
1891 */
Brian Foster74564fb2013-09-20 11:06:12 -04001892void
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001893xfs_inactive(
1894 xfs_inode_t *ip)
1895{
Jie Liu3d3c8b52013-08-12 20:49:59 +10001896 struct xfs_mount *mp;
Jie Liu3d3c8b52013-08-12 20:49:59 +10001897 int error;
1898 int truncate = 0;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001899
1900 /*
1901 * If the inode is already free, then there can be nothing
1902 * to clean up here.
1903 */
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001904 if (VFS_I(ip)->i_mode == 0) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001905 ASSERT(ip->i_df.if_real_bytes == 0);
1906 ASSERT(ip->i_df.if_broot_bytes == 0);
Brian Foster74564fb2013-09-20 11:06:12 -04001907 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001908 }
1909
1910 mp = ip->i_mount;
Darrick J. Wong17c12bc2016-10-03 09:11:29 -07001911 ASSERT(!xfs_iflags_test(ip, XFS_IRECOVERY));
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001912
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001913 /* If this is a read-only mount, don't do this (would generate I/O) */
1914 if (mp->m_flags & XFS_MOUNT_RDONLY)
Brian Foster74564fb2013-09-20 11:06:12 -04001915 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001916
Dave Chinner54d7b5c2016-02-09 16:54:58 +11001917 if (VFS_I(ip)->i_nlink != 0) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001918 /*
1919 * force is true because we are evicting an inode from the
1920 * cache. Post-eof blocks must be freed, lest we end up with
1921 * broken free space accounting.
Brian Foster4e276282017-04-11 10:50:05 -07001922 *
1923 * Note: don't bother with iolock here since lockdep complains
1924 * about acquiring it in reclaim context. We have the only
1925 * reference to the inode at this point anyways.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001926 */
Brian Foster4e276282017-04-11 10:50:05 -07001927 if (xfs_can_free_eofblocks(ip, true))
Brian Foster798b1dc2017-01-27 23:22:55 -08001928 xfs_free_eofblocks(ip);
Brian Foster74564fb2013-09-20 11:06:12 -04001929
1930 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001931 }
1932
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001933 if (S_ISREG(VFS_I(ip)->i_mode) &&
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001934 (ip->i_d.di_size != 0 || XFS_ISIZE(ip) != 0 ||
1935 ip->i_d.di_nextents > 0 || ip->i_delayed_blks > 0))
1936 truncate = 1;
1937
1938 error = xfs_qm_dqattach(ip, 0);
1939 if (error)
Brian Foster74564fb2013-09-20 11:06:12 -04001940 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001941
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001942 if (S_ISLNK(VFS_I(ip)->i_mode))
Brian Foster36b21dd2013-09-20 11:06:09 -04001943 error = xfs_inactive_symlink(ip);
Brian Fosterf7be2d72013-09-20 11:06:10 -04001944 else if (truncate)
1945 error = xfs_inactive_truncate(ip);
1946 if (error)
Brian Foster74564fb2013-09-20 11:06:12 -04001947 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001948
1949 /*
1950 * If there are attributes associated with the file then blow them away
1951 * now. The code calls a routine that recursively deconstructs the
Dave Chinner6dfe5a02015-05-29 07:40:08 +10001952 * attribute fork. If also blows away the in-core attribute fork.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001953 */
Dave Chinner6dfe5a02015-05-29 07:40:08 +10001954 if (XFS_IFORK_Q(ip)) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001955 error = xfs_attr_inactive(ip);
1956 if (error)
Brian Foster74564fb2013-09-20 11:06:12 -04001957 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001958 }
1959
Dave Chinner6dfe5a02015-05-29 07:40:08 +10001960 ASSERT(!ip->i_afp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001961 ASSERT(ip->i_d.di_anextents == 0);
Dave Chinner6dfe5a02015-05-29 07:40:08 +10001962 ASSERT(ip->i_d.di_forkoff == 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001963
1964 /*
1965 * Free the inode.
1966 */
Brian Foster88877d22013-09-20 11:06:11 -04001967 error = xfs_inactive_ifree(ip);
1968 if (error)
Brian Foster74564fb2013-09-20 11:06:12 -04001969 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001970
1971 /*
1972 * Release the dquots held by inode, if any.
1973 */
1974 xfs_qm_dqdetach(ip);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001975}
1976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977/*
Dave Chinner54d7b5c2016-02-09 16:54:58 +11001978 * This is called when the inode's link count goes to 0 or we are creating a
1979 * tmpfile via O_TMPFILE. In the case of a tmpfile, @ignore_linkcount will be
1980 * set to true as the link count is dropped to zero by the VFS after we've
1981 * created the file successfully, so we have to add it to the unlinked list
1982 * while the link count is non-zero.
1983 *
1984 * We place the on-disk inode on a list in the AGI. It will be pulled from this
1985 * list when the inode is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 */
Dave Chinner54d7b5c2016-02-09 16:54:58 +11001987STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988xfs_iunlink(
Dave Chinner54d7b5c2016-02-09 16:54:58 +11001989 struct xfs_trans *tp,
1990 struct xfs_inode *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991{
Dave Chinner54d7b5c2016-02-09 16:54:58 +11001992 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 xfs_agi_t *agi;
1994 xfs_dinode_t *dip;
1995 xfs_buf_t *agibp;
1996 xfs_buf_t *ibp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 xfs_agino_t agino;
1998 short bucket_index;
1999 int offset;
2000 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Dave Chinnerc19b3b052016-02-09 16:54:58 +11002002 ASSERT(VFS_I(ip)->i_mode != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 /*
2005 * Get the agi buffer first. It ensures lock ordering
2006 * on the list.
2007 */
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002008 error = xfs_read_agi(mp, tp, XFS_INO_TO_AGNO(mp, ip->i_ino), &agibp);
Vlad Apostolov859d7182007-10-11 17:44:18 +10002009 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 agi = XFS_BUF_TO_AGI(agibp);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 /*
2014 * Get the index into the agi hash table for the
2015 * list this inode will go on.
2016 */
2017 agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
2018 ASSERT(agino != 0);
2019 bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
2020 ASSERT(agi->agi_unlinked[bucket_index]);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002021 ASSERT(be32_to_cpu(agi->agi_unlinked[bucket_index]) != agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Christoph Hellwig69ef9212011-07-08 14:36:05 +02002023 if (agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 /*
2025 * There is already another inode in the bucket we need
2026 * to add ourselves to. Add us at the front of the list.
2027 * Here we put the head pointer into our next pointer,
2028 * and then we fall through to point the head at us.
2029 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04002030 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
2031 0, 0);
Vlad Apostolovc319b582007-11-23 16:27:51 +11002032 if (error)
2033 return error;
2034
Christoph Hellwig69ef9212011-07-08 14:36:05 +02002035 ASSERT(dip->di_next_unlinked == cpu_to_be32(NULLAGINO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 dip->di_next_unlinked = agi->agi_unlinked[bucket_index];
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11002037 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10002039
2040 /* need to recalc the inode CRC if appropriate */
2041 xfs_dinode_calc_crc(mp, dip);
2042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 xfs_trans_inode_buf(tp, ibp);
2044 xfs_trans_log_buf(tp, ibp, offset,
2045 (offset + sizeof(xfs_agino_t) - 1));
2046 xfs_inobp_check(mp, ibp);
2047 }
2048
2049 /*
2050 * Point the bucket head pointer at the inode being inserted.
2051 */
2052 ASSERT(agino != 0);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002053 agi->agi_unlinked[bucket_index] = cpu_to_be32(agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 offset = offsetof(xfs_agi_t, agi_unlinked) +
2055 (sizeof(xfs_agino_t) * bucket_index);
2056 xfs_trans_log_buf(tp, agibp, offset,
2057 (offset + sizeof(xfs_agino_t) - 1));
2058 return 0;
2059}
2060
2061/*
2062 * Pull the on-disk inode from the AGI unlinked list.
2063 */
2064STATIC int
2065xfs_iunlink_remove(
2066 xfs_trans_t *tp,
2067 xfs_inode_t *ip)
2068{
2069 xfs_ino_t next_ino;
2070 xfs_mount_t *mp;
2071 xfs_agi_t *agi;
2072 xfs_dinode_t *dip;
2073 xfs_buf_t *agibp;
2074 xfs_buf_t *ibp;
2075 xfs_agnumber_t agno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 xfs_agino_t agino;
2077 xfs_agino_t next_agino;
2078 xfs_buf_t *last_ibp;
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10002079 xfs_dinode_t *last_dip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 short bucket_index;
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10002081 int offset, last_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 agno = XFS_INO_TO_AGNO(mp, ip->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
2087 /*
2088 * Get the agi buffer first. It ensures lock ordering
2089 * on the list.
2090 */
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002091 error = xfs_read_agi(mp, tp, agno, &agibp);
2092 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 return error;
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 agi = XFS_BUF_TO_AGI(agibp);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 /*
2098 * Get the index into the agi hash table for the
2099 * list this inode will go on.
2100 */
2101 agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
2102 ASSERT(agino != 0);
2103 bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02002104 ASSERT(agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 ASSERT(agi->agi_unlinked[bucket_index]);
2106
Christoph Hellwig16259e72005-11-02 15:11:25 +11002107 if (be32_to_cpu(agi->agi_unlinked[bucket_index]) == agino) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 /*
Christoph Hellwig475ee412012-07-03 12:21:22 -04002109 * We're at the head of the list. Get the inode's on-disk
2110 * buffer to see if there is anyone after us on the list.
2111 * Only modify our next pointer if it is not already NULLAGINO.
2112 * This saves us the overhead of dealing with the buffer when
2113 * there is no need to change it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04002115 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
2116 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 if (error) {
Christoph Hellwig475ee412012-07-03 12:21:22 -04002118 xfs_warn(mp, "%s: xfs_imap_to_bp returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +11002119 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 return error;
2121 }
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002122 next_agino = be32_to_cpu(dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 ASSERT(next_agino != 0);
2124 if (next_agino != NULLAGINO) {
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002125 dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11002126 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10002128
2129 /* need to recalc the inode CRC if appropriate */
2130 xfs_dinode_calc_crc(mp, dip);
2131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 xfs_trans_inode_buf(tp, ibp);
2133 xfs_trans_log_buf(tp, ibp, offset,
2134 (offset + sizeof(xfs_agino_t) - 1));
2135 xfs_inobp_check(mp, ibp);
2136 } else {
2137 xfs_trans_brelse(tp, ibp);
2138 }
2139 /*
2140 * Point the bucket head pointer at the next inode.
2141 */
2142 ASSERT(next_agino != 0);
2143 ASSERT(next_agino != agino);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002144 agi->agi_unlinked[bucket_index] = cpu_to_be32(next_agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 offset = offsetof(xfs_agi_t, agi_unlinked) +
2146 (sizeof(xfs_agino_t) * bucket_index);
2147 xfs_trans_log_buf(tp, agibp, offset,
2148 (offset + sizeof(xfs_agino_t) - 1));
2149 } else {
2150 /*
2151 * We need to search the list for the inode being freed.
2152 */
Christoph Hellwig16259e72005-11-02 15:11:25 +11002153 next_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 last_ibp = NULL;
2155 while (next_agino != agino) {
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002156 struct xfs_imap imap;
2157
2158 if (last_ibp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 xfs_trans_brelse(tp, last_ibp);
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002160
2161 imap.im_blkno = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 next_ino = XFS_AGINO_TO_INO(mp, agno, next_agino);
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002163
2164 error = xfs_imap(mp, tp, next_ino, &imap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11002166 xfs_warn(mp,
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002167 "%s: xfs_imap returned error %d.",
2168 __func__, error);
2169 return error;
2170 }
2171
2172 error = xfs_imap_to_bp(mp, tp, &imap, &last_dip,
2173 &last_ibp, 0, 0);
2174 if (error) {
2175 xfs_warn(mp,
2176 "%s: xfs_imap_to_bp returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +11002177 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 return error;
2179 }
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002180
2181 last_offset = imap.im_boffset;
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002182 next_agino = be32_to_cpu(last_dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 ASSERT(next_agino != NULLAGINO);
2184 ASSERT(next_agino != 0);
2185 }
Christoph Hellwig475ee412012-07-03 12:21:22 -04002186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 /*
Christoph Hellwig475ee412012-07-03 12:21:22 -04002188 * Now last_ibp points to the buffer previous to us on the
2189 * unlinked list. Pull us from the list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04002191 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
2192 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 if (error) {
Christoph Hellwig475ee412012-07-03 12:21:22 -04002194 xfs_warn(mp, "%s: xfs_imap_to_bp(2) returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +11002195 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 return error;
2197 }
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002198 next_agino = be32_to_cpu(dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 ASSERT(next_agino != 0);
2200 ASSERT(next_agino != agino);
2201 if (next_agino != NULLAGINO) {
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002202 dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11002203 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10002205
2206 /* need to recalc the inode CRC if appropriate */
2207 xfs_dinode_calc_crc(mp, dip);
2208
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 xfs_trans_inode_buf(tp, ibp);
2210 xfs_trans_log_buf(tp, ibp, offset,
2211 (offset + sizeof(xfs_agino_t) - 1));
2212 xfs_inobp_check(mp, ibp);
2213 } else {
2214 xfs_trans_brelse(tp, ibp);
2215 }
2216 /*
2217 * Point the previous inode on the list to the next inode.
2218 */
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002219 last_dip->di_next_unlinked = cpu_to_be32(next_agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 ASSERT(next_agino != 0);
2221 offset = last_offset + offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10002222
2223 /* need to recalc the inode CRC if appropriate */
2224 xfs_dinode_calc_crc(mp, last_dip);
2225
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 xfs_trans_inode_buf(tp, last_ibp);
2227 xfs_trans_log_buf(tp, last_ibp, offset,
2228 (offset + sizeof(xfs_agino_t) - 1));
2229 xfs_inobp_check(mp, last_ibp);
2230 }
2231 return 0;
2232}
2233
Dave Chinner5b3eed72010-08-24 11:42:41 +10002234/*
Zhi Yong Wu0b8182d2013-08-12 03:14:59 +00002235 * A big issue when freeing the inode cluster is that we _cannot_ skip any
Dave Chinner5b3eed72010-08-24 11:42:41 +10002236 * inodes that are in memory - they all must be marked stale and attached to
2237 * the cluster buffer.
2238 */
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002239STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240xfs_ifree_cluster(
Brian Foster09b56602015-05-29 09:26:03 +10002241 xfs_inode_t *free_ip,
2242 xfs_trans_t *tp,
2243 struct xfs_icluster *xic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244{
2245 xfs_mount_t *mp = free_ip->i_mount;
2246 int blks_per_cluster;
Jie Liu982e9392013-12-13 15:51:49 +11002247 int inodes_per_cluster;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 int nbufs;
Dave Chinner5b257b42010-06-03 16:22:29 +10002249 int i, j;
Brian Foster3cdaa182015-06-04 13:03:34 +10002250 int ioffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 xfs_daddr_t blkno;
2252 xfs_buf_t *bp;
Dave Chinner5b257b42010-06-03 16:22:29 +10002253 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 xfs_inode_log_item_t *iip;
2255 xfs_log_item_t *lip;
Dave Chinner5017e972010-01-11 11:47:40 +00002256 struct xfs_perag *pag;
Brian Foster09b56602015-05-29 09:26:03 +10002257 xfs_ino_t inum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Brian Foster09b56602015-05-29 09:26:03 +10002259 inum = xic->first_ino;
Dave Chinner5017e972010-01-11 11:47:40 +00002260 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, inum));
Jie Liu982e9392013-12-13 15:51:49 +11002261 blks_per_cluster = xfs_icluster_size_fsb(mp);
2262 inodes_per_cluster = blks_per_cluster << mp->m_sb.sb_inopblog;
2263 nbufs = mp->m_ialloc_blks / blks_per_cluster;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Jie Liu982e9392013-12-13 15:51:49 +11002265 for (j = 0; j < nbufs; j++, inum += inodes_per_cluster) {
Brian Foster09b56602015-05-29 09:26:03 +10002266 /*
2267 * The allocation bitmap tells us which inodes of the chunk were
2268 * physically allocated. Skip the cluster if an inode falls into
2269 * a sparse region.
2270 */
Brian Foster3cdaa182015-06-04 13:03:34 +10002271 ioffset = inum - xic->first_ino;
2272 if ((xic->alloc & XFS_INOBT_MASK(ioffset)) == 0) {
2273 ASSERT(do_mod(ioffset, inodes_per_cluster) == 0);
Brian Foster09b56602015-05-29 09:26:03 +10002274 continue;
2275 }
2276
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 blkno = XFS_AGB_TO_DADDR(mp, XFS_INO_TO_AGNO(mp, inum),
2278 XFS_INO_TO_AGBNO(mp, inum));
2279
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 /*
Dave Chinner5b257b42010-06-03 16:22:29 +10002281 * We obtain and lock the backing buffer first in the process
2282 * here, as we have to ensure that any dirty inode that we
2283 * can't get the flush lock on is attached to the buffer.
2284 * If we scan the in-memory inodes first, then buffer IO can
2285 * complete before we get a lock on it, and hence we may fail
2286 * to mark all the active inodes on the buffer stale.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 */
Dave Chinner5b257b42010-06-03 16:22:29 +10002288 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno,
Dave Chinnerb6aff292012-11-02 11:38:42 +11002289 mp->m_bsize * blks_per_cluster,
2290 XBF_UNMAPPED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002292 if (!bp)
Dave Chinner24513372014-06-25 14:58:08 +10002293 return -ENOMEM;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11002294
2295 /*
2296 * This buffer may not have been correctly initialised as we
2297 * didn't read it from disk. That's not important because we are
2298 * only using to mark the buffer as stale in the log, and to
2299 * attach stale cached inodes on it. That means it will never be
2300 * dispatched for IO. If it is, we want to know about it, and we
2301 * want it to fail. We can acheive this by adding a write
2302 * verifier to the buffer.
2303 */
Dave Chinner1813dd62012-11-14 17:54:40 +11002304 bp->b_ops = &xfs_inode_buf_ops;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11002305
Dave Chinner5b257b42010-06-03 16:22:29 +10002306 /*
2307 * Walk the inodes already attached to the buffer and mark them
2308 * stale. These will all have the flush locks held, so an
Dave Chinner5b3eed72010-08-24 11:42:41 +10002309 * in-memory inode walk can't lock them. By marking them all
2310 * stale first, we will not attempt to lock them in the loop
2311 * below as the XFS_ISTALE flag will be set.
Dave Chinner5b257b42010-06-03 16:22:29 +10002312 */
Christoph Hellwigadadbee2011-07-13 13:43:49 +02002313 lip = bp->b_fspriv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 while (lip) {
2315 if (lip->li_type == XFS_LI_INODE) {
2316 iip = (xfs_inode_log_item_t *)lip;
2317 ASSERT(iip->ili_logged == 1);
Christoph Hellwigca30b2a2010-06-23 18:11:15 +10002318 lip->li_cb = xfs_istale_done;
David Chinner7b2e2a32008-10-30 17:39:12 +11002319 xfs_trans_ail_copy_lsn(mp->m_ail,
2320 &iip->ili_flush_lsn,
2321 &iip->ili_item.li_lsn);
David Chinnere5ffd2b2006-11-21 18:55:33 +11002322 xfs_iflags_set(iip->ili_inode, XFS_ISTALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 }
2324 lip = lip->li_bio_list;
2325 }
2326
Dave Chinner5b3eed72010-08-24 11:42:41 +10002327
Dave Chinner5b257b42010-06-03 16:22:29 +10002328 /*
2329 * For each inode in memory attempt to add it to the inode
2330 * buffer and set it up for being staled on buffer IO
2331 * completion. This is safe as we've locked out tail pushing
2332 * and flushing by locking the buffer.
2333 *
2334 * We have already marked every inode that was part of a
2335 * transaction stale above, which means there is no point in
2336 * even trying to lock them.
2337 */
Jie Liu982e9392013-12-13 15:51:49 +11002338 for (i = 0; i < inodes_per_cluster; i++) {
Dave Chinner5b3eed72010-08-24 11:42:41 +10002339retry:
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002340 rcu_read_lock();
Dave Chinner5b257b42010-06-03 16:22:29 +10002341 ip = radix_tree_lookup(&pag->pag_ici_root,
2342 XFS_INO_TO_AGINO(mp, (inum + i)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002344 /* Inode not in memory, nothing to do */
2345 if (!ip) {
2346 rcu_read_unlock();
Dave Chinner5b257b42010-06-03 16:22:29 +10002347 continue;
2348 }
2349
Dave Chinner5b3eed72010-08-24 11:42:41 +10002350 /*
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002351 * because this is an RCU protected lookup, we could
2352 * find a recently freed or even reallocated inode
2353 * during the lookup. We need to check under the
2354 * i_flags_lock for a valid inode here. Skip it if it
2355 * is not valid, the wrong inode or stale.
2356 */
2357 spin_lock(&ip->i_flags_lock);
2358 if (ip->i_ino != inum + i ||
2359 __xfs_iflags_test(ip, XFS_ISTALE)) {
2360 spin_unlock(&ip->i_flags_lock);
2361 rcu_read_unlock();
2362 continue;
2363 }
2364 spin_unlock(&ip->i_flags_lock);
2365
2366 /*
Dave Chinner5b3eed72010-08-24 11:42:41 +10002367 * Don't try to lock/unlock the current inode, but we
2368 * _cannot_ skip the other inodes that we did not find
2369 * in the list attached to the buffer and are not
2370 * already marked stale. If we can't lock it, back off
2371 * and retry.
2372 */
Omar Sandoval81286ad2017-09-17 14:06:58 -07002373 if (ip != free_ip) {
2374 if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
2375 rcu_read_unlock();
2376 delay(1);
2377 goto retry;
2378 }
2379
2380 /*
2381 * Check the inode number again in case we're
2382 * racing with freeing in xfs_reclaim_inode().
2383 * See the comments in that function for more
2384 * information as to why the initial check is
2385 * not sufficient.
2386 */
2387 if (ip->i_ino != inum + i) {
2388 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Darrick J. Wong1eeb1ed2017-11-14 16:34:44 -08002389 rcu_read_unlock();
Omar Sandoval81286ad2017-09-17 14:06:58 -07002390 continue;
2391 }
Dave Chinner5b257b42010-06-03 16:22:29 +10002392 }
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002393 rcu_read_unlock();
Dave Chinner5b257b42010-06-03 16:22:29 +10002394
Dave Chinner5b3eed72010-08-24 11:42:41 +10002395 xfs_iflock(ip);
Dave Chinner5b257b42010-06-03 16:22:29 +10002396 xfs_iflags_set(ip, XFS_ISTALE);
Dave Chinner5b257b42010-06-03 16:22:29 +10002397
Dave Chinner5b3eed72010-08-24 11:42:41 +10002398 /*
2399 * we don't need to attach clean inodes or those only
2400 * with unlogged changes (which we throw away, anyway).
2401 */
Dave Chinner5b257b42010-06-03 16:22:29 +10002402 iip = ip->i_itemp;
Dave Chinner5b3eed72010-08-24 11:42:41 +10002403 if (!iip || xfs_inode_clean(ip)) {
Dave Chinner5b257b42010-06-03 16:22:29 +10002404 ASSERT(ip != free_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 xfs_ifunlock(ip);
2406 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2407 continue;
2408 }
2409
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00002410 iip->ili_last_fields = iip->ili_fields;
2411 iip->ili_fields = 0;
Dave Chinnerfc0561c2015-11-03 13:14:59 +11002412 iip->ili_fsync_fields = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 iip->ili_logged = 1;
David Chinner7b2e2a32008-10-30 17:39:12 +11002414 xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
2415 &iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
Christoph Hellwigca30b2a2010-06-23 18:11:15 +10002417 xfs_buf_attach_iodone(bp, xfs_istale_done,
2418 &iip->ili_item);
Dave Chinner5b257b42010-06-03 16:22:29 +10002419
2420 if (ip != free_ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 }
2423
Dave Chinner5b3eed72010-08-24 11:42:41 +10002424 xfs_trans_stale_inode_buf(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 xfs_trans_binval(tp, bp);
2426 }
2427
Dave Chinner5017e972010-01-11 11:47:40 +00002428 xfs_perag_put(pag);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002429 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430}
2431
2432/*
2433 * This is called to return an inode to the inode free list.
2434 * The inode should already be truncated to 0 length and have
2435 * no pages associated with it. This routine also assumes that
2436 * the inode is already a part of the transaction.
2437 *
2438 * The on-disk copy of the inode will have been added to the list
2439 * of unlinked inodes in the AGI. We need to remove the inode from
2440 * that list atomically with respect to freeing it here.
2441 */
2442int
2443xfs_ifree(
2444 xfs_trans_t *tp,
2445 xfs_inode_t *ip,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002446 struct xfs_defer_ops *dfops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447{
2448 int error;
Brian Foster09b56602015-05-29 09:26:03 +10002449 struct xfs_icluster xic = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002451 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Dave Chinner54d7b5c2016-02-09 16:54:58 +11002452 ASSERT(VFS_I(ip)->i_nlink == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 ASSERT(ip->i_d.di_nextents == 0);
2454 ASSERT(ip->i_d.di_anextents == 0);
Dave Chinnerc19b3b052016-02-09 16:54:58 +11002455 ASSERT(ip->i_d.di_size == 0 || !S_ISREG(VFS_I(ip)->i_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 ASSERT(ip->i_d.di_nblocks == 0);
2457
2458 /*
2459 * Pull the on-disk inode from the AGI unlinked list.
2460 */
2461 error = xfs_iunlink_remove(tp, ip);
Dave Chinner1baaed82013-06-27 16:04:50 +10002462 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002465 error = xfs_difree(tp, ip->i_ino, dfops, &xic);
Dave Chinner1baaed82013-06-27 16:04:50 +10002466 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 return error;
Dave Chinner1baaed82013-06-27 16:04:50 +10002468
Dave Chinnerc19b3b052016-02-09 16:54:58 +11002469 VFS_I(ip)->i_mode = 0; /* mark incore inode as free */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 ip->i_d.di_flags = 0;
2471 ip->i_d.di_dmevmask = 0;
2472 ip->i_d.di_forkoff = 0; /* mark the attr fork not in use */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
2474 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
2475 /*
2476 * Bump the generation count so no one will be confused
2477 * by reincarnations of this inode.
2478 */
Dave Chinner9e9a2672016-02-09 16:54:58 +11002479 VFS_I(ip)->i_generation++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2481
Brian Foster09b56602015-05-29 09:26:03 +10002482 if (xic.deleted)
2483 error = xfs_ifree_cluster(ip, tp, &xic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002485 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486}
2487
2488/*
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002489 * This is called to unpin an inode. The caller must have the inode locked
2490 * in at least shared mode so that the buffer cannot be subsequently pinned
2491 * once someone is waiting for it to be unpinned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 */
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002493static void
Christoph Hellwigf392e632011-12-18 20:00:10 +00002494xfs_iunpin(
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002495 struct xfs_inode *ip)
David Chinnera3f74ff2008-03-06 13:43:42 +11002496{
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002497 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
David Chinnera3f74ff2008-03-06 13:43:42 +11002498
Dave Chinner4aaf15d2010-03-08 11:24:07 +11002499 trace_xfs_inode_unpin_nowait(ip, _RET_IP_);
2500
David Chinnera3f74ff2008-03-06 13:43:42 +11002501 /* Give the log a push to start the unpinning I/O */
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002502 xfs_log_force_lsn(ip->i_mount, ip->i_itemp->ili_last_lsn, 0);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002503
David Chinnera3f74ff2008-03-06 13:43:42 +11002504}
2505
Christoph Hellwigf392e632011-12-18 20:00:10 +00002506static void
2507__xfs_iunpin_wait(
2508 struct xfs_inode *ip)
2509{
2510 wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IPINNED_BIT);
2511 DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IPINNED_BIT);
2512
2513 xfs_iunpin(ip);
2514
2515 do {
2516 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
2517 if (xfs_ipincount(ip))
2518 io_schedule();
2519 } while (xfs_ipincount(ip));
2520 finish_wait(wq, &wait.wait);
2521}
2522
Dave Chinner777df5a2010-02-06 12:37:26 +11002523void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524xfs_iunpin_wait(
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002525 struct xfs_inode *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526{
Christoph Hellwigf392e632011-12-18 20:00:10 +00002527 if (xfs_ipincount(ip))
2528 __xfs_iunpin_wait(ip);
David Chinnera3f74ff2008-03-06 13:43:42 +11002529}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
Dave Chinner27320362013-10-29 22:11:44 +11002531/*
2532 * Removing an inode from the namespace involves removing the directory entry
2533 * and dropping the link count on the inode. Removing the directory entry can
2534 * result in locking an AGF (directory blocks were freed) and removing a link
2535 * count can result in placing the inode on an unlinked list which results in
2536 * locking an AGI.
2537 *
2538 * The big problem here is that we have an ordering constraint on AGF and AGI
2539 * locking - inode allocation locks the AGI, then can allocate a new extent for
2540 * new inodes, locking the AGF after the AGI. Similarly, freeing the inode
2541 * removes the inode from the unlinked list, requiring that we lock the AGI
2542 * first, and then freeing the inode can result in an inode chunk being freed
2543 * and hence freeing disk space requiring that we lock an AGF.
2544 *
2545 * Hence the ordering that is imposed by other parts of the code is AGI before
2546 * AGF. This means we cannot remove the directory entry before we drop the inode
2547 * reference count and put it on the unlinked list as this results in a lock
2548 * order of AGF then AGI, and this can deadlock against inode allocation and
2549 * freeing. Therefore we must drop the link counts before we remove the
2550 * directory entry.
2551 *
2552 * This is still safe from a transactional point of view - it is not until we
Darrick J. Wong310a75a2016-08-03 11:18:10 +10002553 * get to xfs_defer_finish() that we have the possibility of multiple
Dave Chinner27320362013-10-29 22:11:44 +11002554 * transactions in this operation. Hence as long as we remove the directory
2555 * entry and drop the link count in the first transaction of the remove
2556 * operation, there are no transactional constraints on the ordering here.
2557 */
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002558int
2559xfs_remove(
2560 xfs_inode_t *dp,
2561 struct xfs_name *name,
2562 xfs_inode_t *ip)
2563{
2564 xfs_mount_t *mp = dp->i_mount;
2565 xfs_trans_t *tp = NULL;
Dave Chinnerc19b3b052016-02-09 16:54:58 +11002566 int is_dir = S_ISDIR(VFS_I(ip)->i_mode);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002567 int error = 0;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002568 struct xfs_defer_ops dfops;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002569 xfs_fsblock_t first_block;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002570 uint resblks;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002571
2572 trace_xfs_remove(dp, name);
2573
2574 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10002575 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002576
2577 error = xfs_qm_dqattach(dp, 0);
2578 if (error)
2579 goto std_return;
2580
2581 error = xfs_qm_dqattach(ip, 0);
2582 if (error)
2583 goto std_return;
2584
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002585 /*
2586 * We try to get the real space reservation first,
2587 * allowing for directory btree deletion(s) implying
2588 * possible bmap insert(s). If we can't get the space
2589 * reservation then we use 0 instead, and avoid the bmap
2590 * btree insert(s) in the directory code by, if the bmap
2591 * insert tries to happen, instead trimming the LAST
2592 * block from the directory.
2593 */
2594 resblks = XFS_REMOVE_SPACE_RES(mp);
Christoph Hellwig253f4912016-04-06 09:19:55 +10002595 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_remove, resblks, 0, 0, &tp);
Dave Chinner24513372014-06-25 14:58:08 +10002596 if (error == -ENOSPC) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002597 resblks = 0;
Christoph Hellwig253f4912016-04-06 09:19:55 +10002598 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_remove, 0, 0, 0,
2599 &tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002600 }
2601 if (error) {
Dave Chinner24513372014-06-25 14:58:08 +10002602 ASSERT(error != -ENOSPC);
Christoph Hellwig253f4912016-04-06 09:19:55 +10002603 goto std_return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002604 }
2605
Dave Chinnerdbad7c92015-08-19 10:33:00 +10002606 xfs_ilock(dp, XFS_IOLOCK_EXCL | XFS_IOLOCK_PARENT);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002607 xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL);
2608
Dave Chinnerdbad7c92015-08-19 10:33:00 +10002609 xfs_trans_ijoin(tp, dp, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002610 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2611
2612 /*
2613 * If we're removing a directory perform some additional validation.
2614 */
2615 if (is_dir) {
Dave Chinner54d7b5c2016-02-09 16:54:58 +11002616 ASSERT(VFS_I(ip)->i_nlink >= 2);
2617 if (VFS_I(ip)->i_nlink != 2) {
Dave Chinner24513372014-06-25 14:58:08 +10002618 error = -ENOTEMPTY;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002619 goto out_trans_cancel;
2620 }
2621 if (!xfs_dir_isempty(ip)) {
Dave Chinner24513372014-06-25 14:58:08 +10002622 error = -ENOTEMPTY;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002623 goto out_trans_cancel;
2624 }
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002625
Dave Chinner27320362013-10-29 22:11:44 +11002626 /* Drop the link from ip's "..". */
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002627 error = xfs_droplink(tp, dp);
2628 if (error)
Dave Chinner27320362013-10-29 22:11:44 +11002629 goto out_trans_cancel;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002630
Dave Chinner27320362013-10-29 22:11:44 +11002631 /* Drop the "." link from ip to self. */
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002632 error = xfs_droplink(tp, ip);
2633 if (error)
Dave Chinner27320362013-10-29 22:11:44 +11002634 goto out_trans_cancel;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002635 } else {
2636 /*
2637 * When removing a non-directory we need to log the parent
2638 * inode here. For a directory this is done implicitly
2639 * by the xfs_droplink call for the ".." entry.
2640 */
2641 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2642 }
Dave Chinner27320362013-10-29 22:11:44 +11002643 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002644
Dave Chinner27320362013-10-29 22:11:44 +11002645 /* Drop the link from dp to ip. */
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002646 error = xfs_droplink(tp, ip);
2647 if (error)
Dave Chinner27320362013-10-29 22:11:44 +11002648 goto out_trans_cancel;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002649
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002650 xfs_defer_init(&dfops, &first_block);
Dave Chinner27320362013-10-29 22:11:44 +11002651 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002652 &first_block, &dfops, resblks);
Dave Chinner27320362013-10-29 22:11:44 +11002653 if (error) {
Dave Chinner24513372014-06-25 14:58:08 +10002654 ASSERT(error != -ENOENT);
Dave Chinner27320362013-10-29 22:11:44 +11002655 goto out_bmap_cancel;
2656 }
2657
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002658 /*
2659 * If this is a synchronous mount, make sure that the
2660 * remove transaction goes to disk before returning to
2661 * the user.
2662 */
2663 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
2664 xfs_trans_set_sync(tp);
2665
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002666 error = xfs_defer_finish(&tp, &dfops, NULL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002667 if (error)
2668 goto out_bmap_cancel;
2669
Christoph Hellwig70393312015-06-04 13:48:08 +10002670 error = xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002671 if (error)
2672 goto std_return;
2673
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +10002674 if (is_dir && xfs_inode_is_filestream(ip))
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002675 xfs_filestream_deassociate(ip);
2676
2677 return 0;
2678
2679 out_bmap_cancel:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002680 xfs_defer_cancel(&dfops);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002681 out_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10002682 xfs_trans_cancel(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002683 std_return:
2684 return error;
2685}
2686
Dave Chinnerf6bba202013-08-12 20:49:46 +10002687/*
2688 * Enter all inodes for a rename transaction into a sorted array.
2689 */
Dave Chinner95afcf52015-03-25 14:03:32 +11002690#define __XFS_SORT_INODES 5
Dave Chinnerf6bba202013-08-12 20:49:46 +10002691STATIC void
2692xfs_sort_for_rename(
Dave Chinner95afcf52015-03-25 14:03:32 +11002693 struct xfs_inode *dp1, /* in: old (source) directory inode */
2694 struct xfs_inode *dp2, /* in: new (target) directory inode */
2695 struct xfs_inode *ip1, /* in: inode of old entry */
2696 struct xfs_inode *ip2, /* in: inode of new entry */
2697 struct xfs_inode *wip, /* in: whiteout inode */
2698 struct xfs_inode **i_tab,/* out: sorted array of inodes */
2699 int *num_inodes) /* in/out: inodes in array */
Dave Chinnerf6bba202013-08-12 20:49:46 +10002700{
Dave Chinnerf6bba202013-08-12 20:49:46 +10002701 int i, j;
2702
Dave Chinner95afcf52015-03-25 14:03:32 +11002703 ASSERT(*num_inodes == __XFS_SORT_INODES);
2704 memset(i_tab, 0, *num_inodes * sizeof(struct xfs_inode *));
2705
Dave Chinnerf6bba202013-08-12 20:49:46 +10002706 /*
2707 * i_tab contains a list of pointers to inodes. We initialize
2708 * the table here & we'll sort it. We will then use it to
2709 * order the acquisition of the inode locks.
2710 *
2711 * Note that the table may contain duplicates. e.g., dp1 == dp2.
2712 */
Dave Chinner95afcf52015-03-25 14:03:32 +11002713 i = 0;
2714 i_tab[i++] = dp1;
2715 i_tab[i++] = dp2;
2716 i_tab[i++] = ip1;
2717 if (ip2)
2718 i_tab[i++] = ip2;
2719 if (wip)
2720 i_tab[i++] = wip;
2721 *num_inodes = i;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002722
2723 /*
2724 * Sort the elements via bubble sort. (Remember, there are at
Dave Chinner95afcf52015-03-25 14:03:32 +11002725 * most 5 elements to sort, so this is adequate.)
Dave Chinnerf6bba202013-08-12 20:49:46 +10002726 */
2727 for (i = 0; i < *num_inodes; i++) {
2728 for (j = 1; j < *num_inodes; j++) {
2729 if (i_tab[j]->i_ino < i_tab[j-1]->i_ino) {
Dave Chinner95afcf52015-03-25 14:03:32 +11002730 struct xfs_inode *temp = i_tab[j];
Dave Chinnerf6bba202013-08-12 20:49:46 +10002731 i_tab[j] = i_tab[j-1];
2732 i_tab[j-1] = temp;
2733 }
2734 }
2735 }
2736}
2737
Dave Chinner310606b2015-03-25 14:06:07 +11002738static int
2739xfs_finish_rename(
2740 struct xfs_trans *tp,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002741 struct xfs_defer_ops *dfops)
Dave Chinner310606b2015-03-25 14:06:07 +11002742{
Dave Chinner310606b2015-03-25 14:06:07 +11002743 int error;
2744
2745 /*
2746 * If this is a synchronous mount, make sure that the rename transaction
2747 * goes to disk before returning to the user.
2748 */
2749 if (tp->t_mountp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
2750 xfs_trans_set_sync(tp);
2751
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002752 error = xfs_defer_finish(&tp, dfops, NULL);
Dave Chinner310606b2015-03-25 14:06:07 +11002753 if (error) {
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002754 xfs_defer_cancel(dfops);
Christoph Hellwig4906e212015-06-04 13:47:56 +10002755 xfs_trans_cancel(tp);
Dave Chinner310606b2015-03-25 14:06:07 +11002756 return error;
2757 }
2758
Christoph Hellwig70393312015-06-04 13:48:08 +10002759 return xfs_trans_commit(tp);
Dave Chinner310606b2015-03-25 14:06:07 +11002760}
2761
Dave Chinnerf6bba202013-08-12 20:49:46 +10002762/*
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002763 * xfs_cross_rename()
2764 *
2765 * responsible for handling RENAME_EXCHANGE flag in renameat2() sytemcall
2766 */
2767STATIC int
2768xfs_cross_rename(
2769 struct xfs_trans *tp,
2770 struct xfs_inode *dp1,
2771 struct xfs_name *name1,
2772 struct xfs_inode *ip1,
2773 struct xfs_inode *dp2,
2774 struct xfs_name *name2,
2775 struct xfs_inode *ip2,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002776 struct xfs_defer_ops *dfops,
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002777 xfs_fsblock_t *first_block,
2778 int spaceres)
2779{
2780 int error = 0;
2781 int ip1_flags = 0;
2782 int ip2_flags = 0;
2783 int dp2_flags = 0;
2784
2785 /* Swap inode number for dirent in first parent */
2786 error = xfs_dir_replace(tp, dp1, name1,
2787 ip2->i_ino,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002788 first_block, dfops, spaceres);
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002789 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002790 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002791
2792 /* Swap inode number for dirent in second parent */
2793 error = xfs_dir_replace(tp, dp2, name2,
2794 ip1->i_ino,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002795 first_block, dfops, spaceres);
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002796 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002797 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002798
2799 /*
2800 * If we're renaming one or more directories across different parents,
2801 * update the respective ".." entries (and link counts) to match the new
2802 * parents.
2803 */
2804 if (dp1 != dp2) {
2805 dp2_flags = XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
2806
Dave Chinnerc19b3b052016-02-09 16:54:58 +11002807 if (S_ISDIR(VFS_I(ip2)->i_mode)) {
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002808 error = xfs_dir_replace(tp, ip2, &xfs_name_dotdot,
2809 dp1->i_ino, first_block,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002810 dfops, spaceres);
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002811 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002812 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002813
2814 /* transfer ip2 ".." reference to dp1 */
Dave Chinnerc19b3b052016-02-09 16:54:58 +11002815 if (!S_ISDIR(VFS_I(ip1)->i_mode)) {
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002816 error = xfs_droplink(tp, dp2);
2817 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002818 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002819 error = xfs_bumplink(tp, dp1);
2820 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002821 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002822 }
2823
2824 /*
2825 * Although ip1 isn't changed here, userspace needs
2826 * to be warned about the change, so that applications
2827 * relying on it (like backup ones), will properly
2828 * notify the change
2829 */
2830 ip1_flags |= XFS_ICHGTIME_CHG;
2831 ip2_flags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
2832 }
2833
Dave Chinnerc19b3b052016-02-09 16:54:58 +11002834 if (S_ISDIR(VFS_I(ip1)->i_mode)) {
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002835 error = xfs_dir_replace(tp, ip1, &xfs_name_dotdot,
2836 dp2->i_ino, first_block,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002837 dfops, spaceres);
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002838 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002839 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002840
2841 /* transfer ip1 ".." reference to dp2 */
Dave Chinnerc19b3b052016-02-09 16:54:58 +11002842 if (!S_ISDIR(VFS_I(ip2)->i_mode)) {
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002843 error = xfs_droplink(tp, dp1);
2844 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002845 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002846 error = xfs_bumplink(tp, dp2);
2847 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002848 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002849 }
2850
2851 /*
2852 * Although ip2 isn't changed here, userspace needs
2853 * to be warned about the change, so that applications
2854 * relying on it (like backup ones), will properly
2855 * notify the change
2856 */
2857 ip1_flags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
2858 ip2_flags |= XFS_ICHGTIME_CHG;
2859 }
2860 }
2861
2862 if (ip1_flags) {
2863 xfs_trans_ichgtime(tp, ip1, ip1_flags);
2864 xfs_trans_log_inode(tp, ip1, XFS_ILOG_CORE);
2865 }
2866 if (ip2_flags) {
2867 xfs_trans_ichgtime(tp, ip2, ip2_flags);
2868 xfs_trans_log_inode(tp, ip2, XFS_ILOG_CORE);
2869 }
2870 if (dp2_flags) {
2871 xfs_trans_ichgtime(tp, dp2, dp2_flags);
2872 xfs_trans_log_inode(tp, dp2, XFS_ILOG_CORE);
2873 }
2874 xfs_trans_ichgtime(tp, dp1, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2875 xfs_trans_log_inode(tp, dp1, XFS_ILOG_CORE);
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002876 return xfs_finish_rename(tp, dfops);
Dave Chinnereeacd322015-03-25 14:08:07 +11002877
2878out_trans_abort:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002879 xfs_defer_cancel(dfops);
Christoph Hellwig4906e212015-06-04 13:47:56 +10002880 xfs_trans_cancel(tp);
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002881 return error;
2882}
2883
2884/*
Dave Chinner7dcf5c32015-03-25 14:08:08 +11002885 * xfs_rename_alloc_whiteout()
2886 *
2887 * Return a referenced, unlinked, unlocked inode that that can be used as a
2888 * whiteout in a rename transaction. We use a tmpfile inode here so that if we
2889 * crash between allocating the inode and linking it into the rename transaction
2890 * recovery will free the inode and we won't leak it.
2891 */
2892static int
2893xfs_rename_alloc_whiteout(
2894 struct xfs_inode *dp,
2895 struct xfs_inode **wip)
2896{
2897 struct xfs_inode *tmpfile;
2898 int error;
2899
2900 error = xfs_create_tmpfile(dp, NULL, S_IFCHR | WHITEOUT_MODE, &tmpfile);
2901 if (error)
2902 return error;
2903
Brian Foster22419ac2015-05-29 08:14:55 +10002904 /*
2905 * Prepare the tmpfile inode as if it were created through the VFS.
2906 * Otherwise, the link increment paths will complain about nlink 0->1.
2907 * Drop the link count as done by d_tmpfile(), complete the inode setup
2908 * and flag it as linkable.
2909 */
2910 drop_nlink(VFS_I(tmpfile));
Christoph Hellwig2b3d1d42016-04-06 07:48:27 +10002911 xfs_setup_iops(tmpfile);
Dave Chinner7dcf5c32015-03-25 14:08:08 +11002912 xfs_finish_inode_setup(tmpfile);
2913 VFS_I(tmpfile)->i_state |= I_LINKABLE;
2914
2915 *wip = tmpfile;
2916 return 0;
2917}
2918
2919/*
Dave Chinnerf6bba202013-08-12 20:49:46 +10002920 * xfs_rename
2921 */
2922int
2923xfs_rename(
Dave Chinner7dcf5c32015-03-25 14:08:08 +11002924 struct xfs_inode *src_dp,
2925 struct xfs_name *src_name,
2926 struct xfs_inode *src_ip,
2927 struct xfs_inode *target_dp,
2928 struct xfs_name *target_name,
2929 struct xfs_inode *target_ip,
2930 unsigned int flags)
Dave Chinnerf6bba202013-08-12 20:49:46 +10002931{
Dave Chinner7dcf5c32015-03-25 14:08:08 +11002932 struct xfs_mount *mp = src_dp->i_mount;
2933 struct xfs_trans *tp;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002934 struct xfs_defer_ops dfops;
Dave Chinner7dcf5c32015-03-25 14:08:08 +11002935 xfs_fsblock_t first_block;
2936 struct xfs_inode *wip = NULL; /* whiteout inode */
2937 struct xfs_inode *inodes[__XFS_SORT_INODES];
2938 int num_inodes = __XFS_SORT_INODES;
Dave Chinner2b936812015-03-25 15:12:30 +11002939 bool new_parent = (src_dp != target_dp);
Dave Chinnerc19b3b052016-02-09 16:54:58 +11002940 bool src_is_directory = S_ISDIR(VFS_I(src_ip)->i_mode);
Dave Chinner7dcf5c32015-03-25 14:08:08 +11002941 int spaceres;
2942 int error;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002943
2944 trace_xfs_rename(src_dp, target_dp, src_name, target_name);
2945
Dave Chinnereeacd322015-03-25 14:08:07 +11002946 if ((flags & RENAME_EXCHANGE) && !target_ip)
2947 return -EINVAL;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002948
Dave Chinner7dcf5c32015-03-25 14:08:08 +11002949 /*
2950 * If we are doing a whiteout operation, allocate the whiteout inode
2951 * we will be placing at the target and ensure the type is set
2952 * appropriately.
2953 */
2954 if (flags & RENAME_WHITEOUT) {
2955 ASSERT(!(flags & (RENAME_NOREPLACE | RENAME_EXCHANGE)));
2956 error = xfs_rename_alloc_whiteout(target_dp, &wip);
2957 if (error)
2958 return error;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002959
Dave Chinner7dcf5c32015-03-25 14:08:08 +11002960 /* setup target dirent info as whiteout */
2961 src_name->type = XFS_DIR3_FT_CHRDEV;
2962 }
2963
2964 xfs_sort_for_rename(src_dp, target_dp, src_ip, target_ip, wip,
Dave Chinnerf6bba202013-08-12 20:49:46 +10002965 inodes, &num_inodes);
2966
Dave Chinnerf6bba202013-08-12 20:49:46 +10002967 spaceres = XFS_RENAME_SPACE_RES(mp, target_name->len);
Christoph Hellwig253f4912016-04-06 09:19:55 +10002968 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_rename, spaceres, 0, 0, &tp);
Dave Chinner24513372014-06-25 14:58:08 +10002969 if (error == -ENOSPC) {
Dave Chinnerf6bba202013-08-12 20:49:46 +10002970 spaceres = 0;
Christoph Hellwig253f4912016-04-06 09:19:55 +10002971 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_rename, 0, 0, 0,
2972 &tp);
Dave Chinnerf6bba202013-08-12 20:49:46 +10002973 }
Dave Chinner445883e2015-03-25 14:05:43 +11002974 if (error)
Christoph Hellwig253f4912016-04-06 09:19:55 +10002975 goto out_release_wip;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002976
2977 /*
2978 * Attach the dquots to the inodes
2979 */
2980 error = xfs_qm_vop_rename_dqattach(inodes);
Dave Chinner445883e2015-03-25 14:05:43 +11002981 if (error)
2982 goto out_trans_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002983
2984 /*
2985 * Lock all the participating inodes. Depending upon whether
2986 * the target_name exists in the target directory, and
2987 * whether the target directory is the same as the source
2988 * directory, we can lock from 2 to 4 inodes.
2989 */
Dave Chinnerdbad7c92015-08-19 10:33:00 +10002990 if (!new_parent)
2991 xfs_ilock(src_dp, XFS_IOLOCK_EXCL | XFS_IOLOCK_PARENT);
2992 else
2993 xfs_lock_two_inodes(src_dp, target_dp,
2994 XFS_IOLOCK_EXCL | XFS_IOLOCK_PARENT);
2995
Dave Chinnerf6bba202013-08-12 20:49:46 +10002996 xfs_lock_inodes(inodes, num_inodes, XFS_ILOCK_EXCL);
2997
2998 /*
2999 * Join all the inodes to the transaction. From this point on,
3000 * we can rely on either trans_commit or trans_cancel to unlock
3001 * them.
3002 */
Dave Chinnerdbad7c92015-08-19 10:33:00 +10003003 xfs_trans_ijoin(tp, src_dp, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
Dave Chinnerf6bba202013-08-12 20:49:46 +10003004 if (new_parent)
Dave Chinnerdbad7c92015-08-19 10:33:00 +10003005 xfs_trans_ijoin(tp, target_dp, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
Dave Chinnerf6bba202013-08-12 20:49:46 +10003006 xfs_trans_ijoin(tp, src_ip, XFS_ILOCK_EXCL);
3007 if (target_ip)
3008 xfs_trans_ijoin(tp, target_ip, XFS_ILOCK_EXCL);
Dave Chinner7dcf5c32015-03-25 14:08:08 +11003009 if (wip)
3010 xfs_trans_ijoin(tp, wip, XFS_ILOCK_EXCL);
Dave Chinnerf6bba202013-08-12 20:49:46 +10003011
3012 /*
3013 * If we are using project inheritance, we only allow renames
3014 * into our tree when the project IDs are the same; else the
3015 * tree quota mechanism would be circumvented.
3016 */
3017 if (unlikely((target_dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
3018 (xfs_get_projid(target_dp) != xfs_get_projid(src_ip)))) {
Dave Chinner24513372014-06-25 14:58:08 +10003019 error = -EXDEV;
Dave Chinner445883e2015-03-25 14:05:43 +11003020 goto out_trans_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10003021 }
3022
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10003023 xfs_defer_init(&dfops, &first_block);
Dave Chinner445883e2015-03-25 14:05:43 +11003024
Dave Chinnereeacd322015-03-25 14:08:07 +11003025 /* RENAME_EXCHANGE is unique from here on. */
3026 if (flags & RENAME_EXCHANGE)
3027 return xfs_cross_rename(tp, src_dp, src_name, src_ip,
3028 target_dp, target_name, target_ip,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10003029 &dfops, &first_block, spaceres);
Carlos Maiolinod31a1822014-12-24 08:51:42 +11003030
3031 /*
Dave Chinnerf6bba202013-08-12 20:49:46 +10003032 * Set up the target.
3033 */
3034 if (target_ip == NULL) {
3035 /*
3036 * If there's no space reservation, check the entry will
3037 * fit before actually inserting it.
3038 */
Eric Sandeen94f3cad2014-09-09 11:57:52 +10003039 if (!spaceres) {
3040 error = xfs_dir_canenter(tp, target_dp, target_name);
3041 if (error)
Dave Chinner445883e2015-03-25 14:05:43 +11003042 goto out_trans_cancel;
Eric Sandeen94f3cad2014-09-09 11:57:52 +10003043 }
Dave Chinnerf6bba202013-08-12 20:49:46 +10003044 /*
3045 * If target does not exist and the rename crosses
3046 * directories, adjust the target directory link count
3047 * to account for the ".." reference from the new entry.
3048 */
3049 error = xfs_dir_createname(tp, target_dp, target_name,
3050 src_ip->i_ino, &first_block,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10003051 &dfops, spaceres);
Dave Chinnerf6bba202013-08-12 20:49:46 +10003052 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10003053 goto out_bmap_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10003054
3055 xfs_trans_ichgtime(tp, target_dp,
3056 XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3057
3058 if (new_parent && src_is_directory) {
3059 error = xfs_bumplink(tp, target_dp);
3060 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10003061 goto out_bmap_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10003062 }
3063 } else { /* target_ip != NULL */
3064 /*
3065 * If target exists and it's a directory, check that both
3066 * target and source are directories and that target can be
3067 * destroyed, or that neither is a directory.
3068 */
Dave Chinnerc19b3b052016-02-09 16:54:58 +11003069 if (S_ISDIR(VFS_I(target_ip)->i_mode)) {
Dave Chinnerf6bba202013-08-12 20:49:46 +10003070 /*
3071 * Make sure target dir is empty.
3072 */
3073 if (!(xfs_dir_isempty(target_ip)) ||
Dave Chinner54d7b5c2016-02-09 16:54:58 +11003074 (VFS_I(target_ip)->i_nlink > 2)) {
Dave Chinner24513372014-06-25 14:58:08 +10003075 error = -EEXIST;
Dave Chinner445883e2015-03-25 14:05:43 +11003076 goto out_trans_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10003077 }
3078 }
3079
3080 /*
3081 * Link the source inode under the target name.
3082 * If the source inode is a directory and we are moving
3083 * it across directories, its ".." entry will be
3084 * inconsistent until we replace that down below.
3085 *
3086 * In case there is already an entry with the same
3087 * name at the destination directory, remove it first.
3088 */
3089 error = xfs_dir_replace(tp, target_dp, target_name,
3090 src_ip->i_ino,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10003091 &first_block, &dfops, spaceres);
Dave Chinnerf6bba202013-08-12 20:49:46 +10003092 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10003093 goto out_bmap_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10003094
3095 xfs_trans_ichgtime(tp, target_dp,
3096 XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3097
3098 /*
3099 * Decrement the link count on the target since the target
3100 * dir no longer points to it.
3101 */
3102 error = xfs_droplink(tp, target_ip);
3103 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10003104 goto out_bmap_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10003105
3106 if (src_is_directory) {
3107 /*
3108 * Drop the link from the old "." entry.
3109 */
3110 error = xfs_droplink(tp, target_ip);
3111 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10003112 goto out_bmap_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10003113 }
3114 } /* target_ip != NULL */
3115
3116 /*
3117 * Remove the source.
3118 */
3119 if (new_parent && src_is_directory) {
3120 /*
3121 * Rewrite the ".." entry to point to the new
3122 * directory.
3123 */
3124 error = xfs_dir_replace(tp, src_ip, &xfs_name_dotdot,
3125 target_dp->i_ino,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10003126 &first_block, &dfops, spaceres);
Dave Chinner24513372014-06-25 14:58:08 +10003127 ASSERT(error != -EEXIST);
Dave Chinnerf6bba202013-08-12 20:49:46 +10003128 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10003129 goto out_bmap_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10003130 }
3131
3132 /*
3133 * We always want to hit the ctime on the source inode.
3134 *
3135 * This isn't strictly required by the standards since the source
3136 * inode isn't really being changed, but old unix file systems did
3137 * it and some incremental backup programs won't work without it.
3138 */
3139 xfs_trans_ichgtime(tp, src_ip, XFS_ICHGTIME_CHG);
3140 xfs_trans_log_inode(tp, src_ip, XFS_ILOG_CORE);
3141
3142 /*
3143 * Adjust the link count on src_dp. This is necessary when
3144 * renaming a directory, either within one parent when
3145 * the target existed, or across two parent directories.
3146 */
3147 if (src_is_directory && (new_parent || target_ip != NULL)) {
3148
3149 /*
3150 * Decrement link count on src_directory since the
3151 * entry that's moved no longer points to it.
3152 */
3153 error = xfs_droplink(tp, src_dp);
3154 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10003155 goto out_bmap_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10003156 }
3157
Dave Chinner7dcf5c32015-03-25 14:08:08 +11003158 /*
3159 * For whiteouts, we only need to update the source dirent with the
3160 * inode number of the whiteout inode rather than removing it
3161 * altogether.
3162 */
3163 if (wip) {
3164 error = xfs_dir_replace(tp, src_dp, src_name, wip->i_ino,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10003165 &first_block, &dfops, spaceres);
Dave Chinner7dcf5c32015-03-25 14:08:08 +11003166 } else
3167 error = xfs_dir_removename(tp, src_dp, src_name, src_ip->i_ino,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10003168 &first_block, &dfops, spaceres);
Dave Chinnerf6bba202013-08-12 20:49:46 +10003169 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10003170 goto out_bmap_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10003171
Dave Chinner7dcf5c32015-03-25 14:08:08 +11003172 /*
3173 * For whiteouts, we need to bump the link count on the whiteout inode.
3174 * This means that failures all the way up to this point leave the inode
3175 * on the unlinked list and so cleanup is a simple matter of dropping
3176 * the remaining reference to it. If we fail here after bumping the link
3177 * count, we're shutting down the filesystem so we'll never see the
3178 * intermediate state on disk.
3179 */
3180 if (wip) {
Dave Chinner54d7b5c2016-02-09 16:54:58 +11003181 ASSERT(VFS_I(wip)->i_nlink == 0);
Dave Chinner7dcf5c32015-03-25 14:08:08 +11003182 error = xfs_bumplink(tp, wip);
3183 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10003184 goto out_bmap_cancel;
Dave Chinner7dcf5c32015-03-25 14:08:08 +11003185 error = xfs_iunlink_remove(tp, wip);
3186 if (error)
Christoph Hellwig4906e212015-06-04 13:47:56 +10003187 goto out_bmap_cancel;
Dave Chinner7dcf5c32015-03-25 14:08:08 +11003188 xfs_trans_log_inode(tp, wip, XFS_ILOG_CORE);
3189
3190 /*
3191 * Now we have a real link, clear the "I'm a tmpfile" state
3192 * flag from the inode so it doesn't accidentally get misused in
3193 * future.
3194 */
3195 VFS_I(wip)->i_state &= ~I_LINKABLE;
3196 }
Dave Chinnerf6bba202013-08-12 20:49:46 +10003197
3198 xfs_trans_ichgtime(tp, src_dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3199 xfs_trans_log_inode(tp, src_dp, XFS_ILOG_CORE);
3200 if (new_parent)
3201 xfs_trans_log_inode(tp, target_dp, XFS_ILOG_CORE);
3202
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10003203 error = xfs_finish_rename(tp, &dfops);
Dave Chinner7dcf5c32015-03-25 14:08:08 +11003204 if (wip)
3205 IRELE(wip);
3206 return error;
Dave Chinnerf6bba202013-08-12 20:49:46 +10003207
Dave Chinner445883e2015-03-25 14:05:43 +11003208out_bmap_cancel:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10003209 xfs_defer_cancel(&dfops);
Dave Chinner445883e2015-03-25 14:05:43 +11003210out_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10003211 xfs_trans_cancel(tp);
Christoph Hellwig253f4912016-04-06 09:19:55 +10003212out_release_wip:
Dave Chinner7dcf5c32015-03-25 14:08:08 +11003213 if (wip)
3214 IRELE(wip);
Dave Chinnerf6bba202013-08-12 20:49:46 +10003215 return error;
3216}
3217
David Chinnerbad55842008-03-06 13:43:49 +11003218STATIC int
3219xfs_iflush_cluster(
Dave Chinner19429362016-05-18 14:09:46 +10003220 struct xfs_inode *ip,
3221 struct xfs_buf *bp)
David Chinnerbad55842008-03-06 13:43:49 +11003222{
Dave Chinner19429362016-05-18 14:09:46 +10003223 struct xfs_mount *mp = ip->i_mount;
Dave Chinner5017e972010-01-11 11:47:40 +00003224 struct xfs_perag *pag;
David Chinnerbad55842008-03-06 13:43:49 +11003225 unsigned long first_index, mask;
David Chinnerc8f5f122008-05-20 11:30:15 +10003226 unsigned long inodes_per_cluster;
Dave Chinner19429362016-05-18 14:09:46 +10003227 int cilist_size;
3228 struct xfs_inode **cilist;
3229 struct xfs_inode *cip;
David Chinnerbad55842008-03-06 13:43:49 +11003230 int nr_found;
3231 int clcount = 0;
3232 int bufwasdelwri;
3233 int i;
3234
Dave Chinner5017e972010-01-11 11:47:40 +00003235 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
David Chinnerbad55842008-03-06 13:43:49 +11003236
Jie Liu0f49efd2013-12-13 15:51:48 +11003237 inodes_per_cluster = mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog;
Dave Chinner19429362016-05-18 14:09:46 +10003238 cilist_size = inodes_per_cluster * sizeof(xfs_inode_t *);
3239 cilist = kmem_alloc(cilist_size, KM_MAYFAIL|KM_NOFS);
3240 if (!cilist)
Dave Chinner44b56e02010-01-11 11:47:43 +00003241 goto out_put;
David Chinnerbad55842008-03-06 13:43:49 +11003242
Jie Liu0f49efd2013-12-13 15:51:48 +11003243 mask = ~(((mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog)) - 1);
David Chinnerbad55842008-03-06 13:43:49 +11003244 first_index = XFS_INO_TO_AGINO(mp, ip->i_ino) & mask;
Dave Chinner1a3e8f32010-12-17 17:29:43 +11003245 rcu_read_lock();
David Chinnerbad55842008-03-06 13:43:49 +11003246 /* really need a gang lookup range call here */
Dave Chinner19429362016-05-18 14:09:46 +10003247 nr_found = radix_tree_gang_lookup(&pag->pag_ici_root, (void**)cilist,
David Chinnerc8f5f122008-05-20 11:30:15 +10003248 first_index, inodes_per_cluster);
David Chinnerbad55842008-03-06 13:43:49 +11003249 if (nr_found == 0)
3250 goto out_free;
3251
3252 for (i = 0; i < nr_found; i++) {
Dave Chinner19429362016-05-18 14:09:46 +10003253 cip = cilist[i];
3254 if (cip == ip)
David Chinnerbad55842008-03-06 13:43:49 +11003255 continue;
Dave Chinner1a3e8f32010-12-17 17:29:43 +11003256
3257 /*
3258 * because this is an RCU protected lookup, we could find a
3259 * recently freed or even reallocated inode during the lookup.
3260 * We need to check under the i_flags_lock for a valid inode
3261 * here. Skip it if it is not valid or the wrong inode.
3262 */
Dave Chinner19429362016-05-18 14:09:46 +10003263 spin_lock(&cip->i_flags_lock);
3264 if (!cip->i_ino ||
3265 __xfs_iflags_test(cip, XFS_ISTALE)) {
3266 spin_unlock(&cip->i_flags_lock);
Dave Chinner1a3e8f32010-12-17 17:29:43 +11003267 continue;
3268 }
Dave Chinner5a90e532016-05-18 14:09:13 +10003269
3270 /*
3271 * Once we fall off the end of the cluster, no point checking
3272 * any more inodes in the list because they will also all be
3273 * outside the cluster.
3274 */
Dave Chinner19429362016-05-18 14:09:46 +10003275 if ((XFS_INO_TO_AGINO(mp, cip->i_ino) & mask) != first_index) {
3276 spin_unlock(&cip->i_flags_lock);
Dave Chinner5a90e532016-05-18 14:09:13 +10003277 break;
3278 }
Dave Chinner19429362016-05-18 14:09:46 +10003279 spin_unlock(&cip->i_flags_lock);
Dave Chinner1a3e8f32010-12-17 17:29:43 +11003280
David Chinnerbad55842008-03-06 13:43:49 +11003281 /*
3282 * Do an un-protected check to see if the inode is dirty and
3283 * is a candidate for flushing. These checks will be repeated
3284 * later after the appropriate locks are acquired.
3285 */
Dave Chinner19429362016-05-18 14:09:46 +10003286 if (xfs_inode_clean(cip) && xfs_ipincount(cip) == 0)
David Chinnerbad55842008-03-06 13:43:49 +11003287 continue;
David Chinnerbad55842008-03-06 13:43:49 +11003288
3289 /*
3290 * Try to get locks. If any are unavailable or it is pinned,
3291 * then this inode cannot be flushed and is skipped.
3292 */
3293
Dave Chinner19429362016-05-18 14:09:46 +10003294 if (!xfs_ilock_nowait(cip, XFS_ILOCK_SHARED))
David Chinnerbad55842008-03-06 13:43:49 +11003295 continue;
Dave Chinner19429362016-05-18 14:09:46 +10003296 if (!xfs_iflock_nowait(cip)) {
3297 xfs_iunlock(cip, XFS_ILOCK_SHARED);
David Chinnerbad55842008-03-06 13:43:49 +11003298 continue;
3299 }
Dave Chinner19429362016-05-18 14:09:46 +10003300 if (xfs_ipincount(cip)) {
3301 xfs_ifunlock(cip);
3302 xfs_iunlock(cip, XFS_ILOCK_SHARED);
David Chinnerbad55842008-03-06 13:43:49 +11003303 continue;
3304 }
3305
Dave Chinner8a17d7d2016-05-18 14:09:12 +10003306
3307 /*
3308 * Check the inode number again, just to be certain we are not
3309 * racing with freeing in xfs_reclaim_inode(). See the comments
3310 * in that function for more information as to why the initial
3311 * check is not sufficient.
3312 */
Dave Chinner19429362016-05-18 14:09:46 +10003313 if (!cip->i_ino) {
3314 xfs_ifunlock(cip);
3315 xfs_iunlock(cip, XFS_ILOCK_SHARED);
David Chinnerbad55842008-03-06 13:43:49 +11003316 continue;
3317 }
3318
3319 /*
3320 * arriving here means that this inode can be flushed. First
3321 * re-check that it's dirty before flushing.
3322 */
Dave Chinner19429362016-05-18 14:09:46 +10003323 if (!xfs_inode_clean(cip)) {
David Chinner33540402008-03-06 13:43:59 +11003324 int error;
Dave Chinner19429362016-05-18 14:09:46 +10003325 error = xfs_iflush_int(cip, bp);
David Chinnerbad55842008-03-06 13:43:49 +11003326 if (error) {
Dave Chinner19429362016-05-18 14:09:46 +10003327 xfs_iunlock(cip, XFS_ILOCK_SHARED);
David Chinnerbad55842008-03-06 13:43:49 +11003328 goto cluster_corrupt_out;
3329 }
3330 clcount++;
3331 } else {
Dave Chinner19429362016-05-18 14:09:46 +10003332 xfs_ifunlock(cip);
David Chinnerbad55842008-03-06 13:43:49 +11003333 }
Dave Chinner19429362016-05-18 14:09:46 +10003334 xfs_iunlock(cip, XFS_ILOCK_SHARED);
David Chinnerbad55842008-03-06 13:43:49 +11003335 }
3336
3337 if (clcount) {
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11003338 XFS_STATS_INC(mp, xs_icluster_flushcnt);
3339 XFS_STATS_ADD(mp, xs_icluster_flushinode, clcount);
David Chinnerbad55842008-03-06 13:43:49 +11003340 }
3341
3342out_free:
Dave Chinner1a3e8f32010-12-17 17:29:43 +11003343 rcu_read_unlock();
Dave Chinner19429362016-05-18 14:09:46 +10003344 kmem_free(cilist);
Dave Chinner44b56e02010-01-11 11:47:43 +00003345out_put:
3346 xfs_perag_put(pag);
David Chinnerbad55842008-03-06 13:43:49 +11003347 return 0;
3348
3349
3350cluster_corrupt_out:
3351 /*
3352 * Corruption detected in the clustering loop. Invalidate the
3353 * inode buffer and shut down the filesystem.
3354 */
Dave Chinner1a3e8f32010-12-17 17:29:43 +11003355 rcu_read_unlock();
David Chinnerbad55842008-03-06 13:43:49 +11003356 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10003357 * Clean up the buffer. If it was delwri, just release it --
David Chinnerbad55842008-03-06 13:43:49 +11003358 * brelse can handle it with no problems. If not, shut down the
3359 * filesystem before releasing the buffer.
3360 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10003361 bufwasdelwri = (bp->b_flags & _XBF_DELWRI_Q);
David Chinnerbad55842008-03-06 13:43:49 +11003362 if (bufwasdelwri)
3363 xfs_buf_relse(bp);
3364
3365 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
3366
3367 if (!bufwasdelwri) {
3368 /*
3369 * Just like incore_relse: if we have b_iodone functions,
3370 * mark the buffer as an error and call them. Otherwise
3371 * mark it as stale and brelse.
3372 */
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02003373 if (bp->b_iodone) {
Dave Chinnerb0388bf2016-02-10 15:01:11 +11003374 bp->b_flags &= ~XBF_DONE;
Christoph Hellwigc867cb62011-10-10 16:52:46 +00003375 xfs_buf_stale(bp);
Dave Chinner24513372014-06-25 14:58:08 +10003376 xfs_buf_ioerror(bp, -EIO);
Dave Chinnere8aaba92014-10-02 09:04:22 +10003377 xfs_buf_ioend(bp);
David Chinnerbad55842008-03-06 13:43:49 +11003378 } else {
Christoph Hellwigc867cb62011-10-10 16:52:46 +00003379 xfs_buf_stale(bp);
David Chinnerbad55842008-03-06 13:43:49 +11003380 xfs_buf_relse(bp);
3381 }
3382 }
3383
3384 /*
3385 * Unlocks the flush lock
3386 */
Dave Chinner19429362016-05-18 14:09:46 +10003387 xfs_iflush_abort(cip, false);
3388 kmem_free(cilist);
Dave Chinner44b56e02010-01-11 11:47:43 +00003389 xfs_perag_put(pag);
Dave Chinner24513372014-06-25 14:58:08 +10003390 return -EFSCORRUPTED;
David Chinnerbad55842008-03-06 13:43:49 +11003391}
3392
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393/*
Christoph Hellwig4c468192012-04-23 15:58:36 +10003394 * Flush dirty inode metadata into the backing buffer.
3395 *
3396 * The caller must have the inode lock and the inode flush lock held. The
3397 * inode lock will still be held upon return to the caller, and the inode
3398 * flush lock will be released after the inode has reached the disk.
3399 *
3400 * The caller must write out the buffer returned in *bpp and release it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 */
3402int
3403xfs_iflush(
Christoph Hellwig4c468192012-04-23 15:58:36 +10003404 struct xfs_inode *ip,
3405 struct xfs_buf **bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406{
Christoph Hellwig4c468192012-04-23 15:58:36 +10003407 struct xfs_mount *mp = ip->i_mount;
Dave Chinnerb1438f42016-05-18 13:53:42 +10003408 struct xfs_buf *bp = NULL;
Christoph Hellwig4c468192012-04-23 15:58:36 +10003409 struct xfs_dinode *dip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11003412 XFS_STATS_INC(mp, xs_iflush_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10003414 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Christoph Hellwig474fce02011-12-18 20:00:09 +00003415 ASSERT(xfs_isiflocked(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00003417 ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418
Christoph Hellwig4c468192012-04-23 15:58:36 +10003419 *bpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 xfs_iunpin_wait(ip);
3422
3423 /*
Dave Chinner4b6a4682010-01-11 11:45:21 +00003424 * For stale inodes we cannot rely on the backing buffer remaining
3425 * stale in cache for the remaining life of the stale inode and so
Christoph Hellwig475ee412012-07-03 12:21:22 -04003426 * xfs_imap_to_bp() below may give us a buffer that no longer contains
Dave Chinner4b6a4682010-01-11 11:45:21 +00003427 * inodes below. We have to check this after ensuring the inode is
3428 * unpinned so that it is safe to reclaim the stale inode after the
3429 * flush call.
3430 */
3431 if (xfs_iflags_test(ip, XFS_ISTALE)) {
3432 xfs_ifunlock(ip);
3433 return 0;
3434 }
3435
3436 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 * This may have been unpinned because the filesystem is shutting
3438 * down forcibly. If that's the case we must not write this inode
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10003439 * to disk, because the log record didn't make it to disk.
3440 *
3441 * We also have to remove the log item from the AIL in this case,
3442 * as we wait for an empty AIL as part of the unmount process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 */
3444 if (XFS_FORCED_SHUTDOWN(mp)) {
Dave Chinner24513372014-06-25 14:58:08 +10003445 error = -EIO;
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10003446 goto abort_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 }
3448
3449 /*
Dave Chinnerb1438f42016-05-18 13:53:42 +10003450 * Get the buffer containing the on-disk inode. We are doing a try-lock
3451 * operation here, so we may get an EAGAIN error. In that case, we
3452 * simply want to return with the inode still dirty.
3453 *
3454 * If we get any other error, we effectively have a corruption situation
3455 * and we cannot flush the inode, so we treat it the same as failing
3456 * xfs_iflush_int().
David Chinnera3f74ff2008-03-06 13:43:42 +11003457 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04003458 error = xfs_imap_to_bp(mp, NULL, &ip->i_imap, &dip, &bp, XBF_TRYLOCK,
3459 0);
Dave Chinnerb1438f42016-05-18 13:53:42 +10003460 if (error == -EAGAIN) {
David Chinnera3f74ff2008-03-06 13:43:42 +11003461 xfs_ifunlock(ip);
3462 return error;
3463 }
Dave Chinnerb1438f42016-05-18 13:53:42 +10003464 if (error)
3465 goto corrupt_out;
David Chinnera3f74ff2008-03-06 13:43:42 +11003466
3467 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 * First flush out the inode that xfs_iflush was called with.
3469 */
3470 error = xfs_iflush_int(ip, bp);
David Chinnerbad55842008-03-06 13:43:49 +11003471 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 goto corrupt_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473
3474 /*
David Chinnera3f74ff2008-03-06 13:43:42 +11003475 * If the buffer is pinned then push on the log now so we won't
3476 * get stuck waiting in the write for too long.
3477 */
Chandra Seetharaman811e64c2011-07-22 23:40:27 +00003478 if (xfs_buf_ispinned(bp))
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003479 xfs_log_force(mp, 0);
David Chinnera3f74ff2008-03-06 13:43:42 +11003480
3481 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 * inode clustering:
3483 * see if other inodes can be gathered into this write
3484 */
David Chinnerbad55842008-03-06 13:43:49 +11003485 error = xfs_iflush_cluster(ip, bp);
3486 if (error)
3487 goto cluster_corrupt_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
Christoph Hellwig4c468192012-04-23 15:58:36 +10003489 *bpp = bp;
3490 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
3492corrupt_out:
Dave Chinnerb1438f42016-05-18 13:53:42 +10003493 if (bp)
3494 xfs_buf_relse(bp);
Nathan Scott7d04a332006-06-09 14:58:38 +10003495 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496cluster_corrupt_out:
Dave Chinner24513372014-06-25 14:58:08 +10003497 error = -EFSCORRUPTED;
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10003498abort_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 /*
3500 * Unlocks the flush lock
3501 */
Dave Chinner04913fd2012-04-23 15:58:41 +10003502 xfs_iflush_abort(ip, false);
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10003503 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504}
3505
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506STATIC int
3507xfs_iflush_int(
Christoph Hellwig93848a92013-04-03 16:11:17 +11003508 struct xfs_inode *ip,
3509 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510{
Christoph Hellwig93848a92013-04-03 16:11:17 +11003511 struct xfs_inode_log_item *iip = ip->i_itemp;
3512 struct xfs_dinode *dip;
3513 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10003515 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Christoph Hellwig474fce02011-12-18 20:00:09 +00003516 ASSERT(xfs_isiflocked(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00003518 ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
Christoph Hellwig93848a92013-04-03 16:11:17 +11003519 ASSERT(iip != NULL && iip->ili_fields != 0);
Dave Chinner263997a2014-05-20 07:46:40 +10003520 ASSERT(ip->i_d.di_version > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 /* set *dip = inode's place in the buffer */
Christoph Hellwig88ee2df2015-06-22 09:44:29 +10003523 dip = xfs_buf_offset(bp, ip->i_imap.im_boffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524
Christoph Hellwig69ef9212011-07-08 14:36:05 +02003525 if (XFS_TEST_ERROR(dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 mp, XFS_ERRTAG_IFLUSH_1, XFS_RANDOM_IFLUSH_1)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003527 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3528 "%s: Bad inode %Lu magic number 0x%x, ptr 0x%p",
3529 __func__, ip->i_ino, be16_to_cpu(dip->di_magic), dip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 goto corrupt_out;
3531 }
Dave Chinnerc19b3b052016-02-09 16:54:58 +11003532 if (S_ISREG(VFS_I(ip)->i_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 if (XFS_TEST_ERROR(
3534 (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
3535 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE),
3536 mp, XFS_ERRTAG_IFLUSH_3, XFS_RANDOM_IFLUSH_3)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003537 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3538 "%s: Bad regular inode %Lu, ptr 0x%p",
3539 __func__, ip->i_ino, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 goto corrupt_out;
3541 }
Dave Chinnerc19b3b052016-02-09 16:54:58 +11003542 } else if (S_ISDIR(VFS_I(ip)->i_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 if (XFS_TEST_ERROR(
3544 (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
3545 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
3546 (ip->i_d.di_format != XFS_DINODE_FMT_LOCAL),
3547 mp, XFS_ERRTAG_IFLUSH_4, XFS_RANDOM_IFLUSH_4)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003548 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3549 "%s: Bad directory inode %Lu, ptr 0x%p",
3550 __func__, ip->i_ino, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 goto corrupt_out;
3552 }
3553 }
3554 if (XFS_TEST_ERROR(ip->i_d.di_nextents + ip->i_d.di_anextents >
3555 ip->i_d.di_nblocks, mp, XFS_ERRTAG_IFLUSH_5,
3556 XFS_RANDOM_IFLUSH_5)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003557 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3558 "%s: detected corrupt incore inode %Lu, "
3559 "total extents = %d, nblocks = %Ld, ptr 0x%p",
3560 __func__, ip->i_ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 ip->i_d.di_nextents + ip->i_d.di_anextents,
Dave Chinner6a19d932011-03-07 10:02:35 +11003562 ip->i_d.di_nblocks, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 goto corrupt_out;
3564 }
3565 if (XFS_TEST_ERROR(ip->i_d.di_forkoff > mp->m_sb.sb_inodesize,
3566 mp, XFS_ERRTAG_IFLUSH_6, XFS_RANDOM_IFLUSH_6)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003567 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3568 "%s: bad inode %Lu, forkoff 0x%x, ptr 0x%p",
3569 __func__, ip->i_ino, ip->i_d.di_forkoff, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 goto corrupt_out;
3571 }
Dave Chinnere60896d2013-07-24 15:47:30 +10003572
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 /*
Dave Chinner263997a2014-05-20 07:46:40 +10003574 * Inode item log recovery for v2 inodes are dependent on the
Dave Chinnere60896d2013-07-24 15:47:30 +10003575 * di_flushiter count for correct sequencing. We bump the flush
3576 * iteration count so we can detect flushes which postdate a log record
3577 * during recovery. This is redundant as we now log every change and
3578 * hence this can't happen but we need to still do it to ensure
3579 * backwards compatibility with old kernels that predate logging all
3580 * inode changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 */
Dave Chinnere60896d2013-07-24 15:47:30 +10003582 if (ip->i_d.di_version < 3)
3583 ip->i_d.di_flushiter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584
Darrick J. Wongca659e082017-04-03 12:22:20 -07003585 /* Check the inline directory data. */
3586 if (S_ISDIR(VFS_I(ip)->i_mode) &&
3587 ip->i_d.di_format == XFS_DINODE_FMT_LOCAL &&
3588 xfs_dir2_sf_verify(ip))
3589 goto corrupt_out;
3590
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 /*
Dave Chinner39878482016-02-09 16:54:58 +11003592 * Copy the dirty parts of the inode into the on-disk inode. We always
3593 * copy out the core of the inode, because if the inode is dirty at all
3594 * the core must be.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 */
Dave Chinner93f958f2016-02-09 16:54:58 +11003596 xfs_inode_to_disk(ip, dip, iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597
3598 /* Wrap, we never let the log put out DI_MAX_FLUSH */
3599 if (ip->i_d.di_flushiter == DI_MAX_FLUSH)
3600 ip->i_d.di_flushiter = 0;
3601
Darrick J. Wongca659e082017-04-03 12:22:20 -07003602 xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK);
3603 if (XFS_IFORK_Q(ip))
3604 xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 xfs_inobp_check(mp, bp);
3606
3607 /*
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00003608 * We've recorded everything logged in the inode, so we'd like to clear
3609 * the ili_fields bits so we don't log and flush things unnecessarily.
3610 * However, we can't stop logging all this information until the data
3611 * we've copied into the disk buffer is written to disk. If we did we
3612 * might overwrite the copy of the inode in the log with all the data
3613 * after re-logging only part of it, and in the face of a crash we
3614 * wouldn't have all the data we need to recover.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 *
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00003616 * What we do is move the bits to the ili_last_fields field. When
3617 * logging the inode, these bits are moved back to the ili_fields field.
3618 * In the xfs_iflush_done() routine we clear ili_last_fields, since we
3619 * know that the information those bits represent is permanently on
3620 * disk. As long as the flush completes before the inode is logged
3621 * again, then both ili_fields and ili_last_fields will be cleared.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 *
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00003623 * We can play with the ili_fields bits here, because the inode lock
3624 * must be held exclusively in order to set bits there and the flush
3625 * lock protects the ili_last_fields bits. Set ili_logged so the flush
3626 * done routine can tell whether or not to look in the AIL. Also, store
3627 * the current LSN of the inode so that we can tell whether the item has
3628 * moved in the AIL from xfs_iflush_done(). In order to read the lsn we
3629 * need the AIL lock, because it is a 64 bit value that cannot be read
3630 * atomically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 */
Christoph Hellwig93848a92013-04-03 16:11:17 +11003632 iip->ili_last_fields = iip->ili_fields;
3633 iip->ili_fields = 0;
Dave Chinnerfc0561c2015-11-03 13:14:59 +11003634 iip->ili_fsync_fields = 0;
Christoph Hellwig93848a92013-04-03 16:11:17 +11003635 iip->ili_logged = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636
Christoph Hellwig93848a92013-04-03 16:11:17 +11003637 xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
3638 &iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639
Christoph Hellwig93848a92013-04-03 16:11:17 +11003640 /*
3641 * Attach the function xfs_iflush_done to the inode's
3642 * buffer. This will remove the inode from the AIL
3643 * and unlock the inode's flush lock when the inode is
3644 * completely written to disk.
3645 */
3646 xfs_buf_attach_iodone(bp, xfs_iflush_done, &iip->ili_item);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647
Christoph Hellwig93848a92013-04-03 16:11:17 +11003648 /* generate the checksum. */
3649 xfs_dinode_calc_crc(mp, dip);
3650
3651 ASSERT(bp->b_fspriv != NULL);
3652 ASSERT(bp->b_iodone != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 return 0;
3654
3655corrupt_out:
Dave Chinner24513372014-06-25 14:58:08 +10003656 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657}